diff --git a/package.json b/package.json index 4b8ae49a5..778676dc4 100644 --- a/package.json +++ b/package.json @@ -18,4 +18,4 @@ }, "private": true, "packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39" -} +} \ No newline at end of file diff --git a/packages/client/components/app/interface/settings/InstallInstructions.tsx b/packages/client/components/app/interface/settings/InstallInstructions.tsx new file mode 100644 index 000000000..0e7846d90 --- /dev/null +++ b/packages/client/components/app/interface/settings/InstallInstructions.tsx @@ -0,0 +1,140 @@ +import { Trans, useLingui } from "@lingui-solid/solid/macro"; + +import { Button, Column, iconSize } from "@revolt/ui"; +import MdIosShare from "@material-design-icons/svg/outlined/ios_share.svg?component-solid"; +import MdRefresh from "@material-design-icons/svg/outlined/refresh.svg?component-solid"; +import { styled } from "styled-system/jsx"; +import { css } from "styled-system/css"; +import { useState } from "@revolt/state"; +import { createEffect, createMemo, createSignal, Show } from "solid-js"; + +const Container = styled("div", { + base: { + minWidth: 0, + + padding: "15px 0px", + color: "var(--md-sys-color-on-surface)", + fill: "var(--md-sys-color-on-surface)", + }, +}); + +const SuperSectionHeading = styled("h1", { + base: { + fontSize: "22px", + paddingTop: "1.2em", + paddingBottom: "0.5em", + } +}); + +const SectionHeading = styled("h2", { + base: { + fontSize: "18px", + paddingTop: "1.2em", + paddingBottom: "0.5em", + } +}); + +const Steps = styled("ol", { + base: { + listStyleType: "decimal", + listStylePosition: "inside", + } +}); + +/** + * Installation Instructions Page + */ +export default function InstallInstructions() { + const state = useState(); + const { t } = useLingui(); + + const [pwaPrompt,] = state.pwaPrompt; + const [pwaInstalled,] = state.pwaInstalled; + + const [promptResult, setPromptResult] = createSignal<"accepted" | "dismissed">(); + createEffect(() => { + pwaPrompt()?.userChoice?.then(choice => setPromptResult(choice.outcome)); + }); + + return ( + + + You've successfully installed Stoat! + + + + Installing Stoat only takes a few taps. We'll guide you through it. + + + + + Easy Install + + + pwaPrompt()!.prompt()} + > + Install + + + + Installing... + + + + Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below. + + + location.reload()} + > + + + + + + + Manual Install + + + + Android + + + + Open this page in Google Chrome + + + Click on the ⋮ button + + + Tap "Install app" or "Add to home screen" + + + Follow the prompts + + + + + iOS / iPadOS + + + + Open this page in Safari + + + Click on the button + + + Tap "Add to Home Screen" + + + Follow the prompts + + + + + ); +} diff --git a/packages/client/components/app/interface/settings/UserSettings.tsx b/packages/client/components/app/interface/settings/UserSettings.tsx index ff8ae7fba..8ac055018 100644 --- a/packages/client/components/app/interface/settings/UserSettings.tsx +++ b/packages/client/components/app/interface/settings/UserSettings.tsx @@ -22,6 +22,7 @@ import MdScience from "@material-design-icons/svg/outlined/science.svg?component import MdSmartToy from "@material-design-icons/svg/outlined/smart_toy.svg?component-solid"; import MdVerifiedUser from "@material-design-icons/svg/outlined/verified_user.svg?component-solid"; import MdWorkspacePremium from "@material-design-icons/svg/outlined/workspace_premium.svg?component-solid"; +import MdInstallMobile from "@material-design-icons/svg/outlined/install_mobile.svg?component-solid"; import pkg from "../../../../../../package.json"; @@ -38,6 +39,8 @@ import { MyBots, ViewBot } from "./user/bots"; import { EditProfile } from "./user/profile"; import { EditSubscription } from "./user/subscriptions"; import { VoiceSettings } from "./user/voice/VoiceSettings"; +import InstallInstructions from "./InstallInstructions"; +import { useState } from "@revolt/state"; const Config: SettingsConfiguration<{ server: Server }> = { /** @@ -93,6 +96,8 @@ const Config: SettingsConfiguration<{ server: Server }> = { return ; case "voice": return ; + case "install": + return ; default: return null; } @@ -107,6 +112,8 @@ const Config: SettingsConfiguration<{ server: Server }> = { list() { const { pop } = useModals(); const { logout } = useClientLifecycle(); + const state = useState(); + const [pwaInstalled,] = state.pwaInstalled; return { context: null!, @@ -169,6 +176,12 @@ const Config: SettingsConfiguration<{ server: Server }> = { { title: "Stoat", entries: [ + { + id: "install", + icon: , + title: Install, + hidden: (!state.isMobile && import.meta.env.PROD) || state.isPWA || pwaInstalled(), + }, { id: "bots", icon: , diff --git a/packages/client/components/client/index.tsx b/packages/client/components/client/index.tsx index 47741e438..507a78474 100644 --- a/packages/client/components/client/index.tsx +++ b/packages/client/components/client/index.tsx @@ -26,29 +26,33 @@ const clientContext = createContext(null! as ClientController); * Mount the modal controller */ export function ClientContext(props: { state: State; children: JSXElement }) { - const { openModal } = useModals(); + const { openModal, isOpen } = useModals(); // eslint-disable-next-line solid/reactivity const controller = new ClientController(props.state); onCleanup(() => controller.dispose()); createEffect(() => { - const lastIndex = props.state.settings.getValue("changelog:last_index"); - if (controller.lifecycle.state() === LifecycleState.Ready) return; - - if ( - lastIndex !== CHANGELOG_MODAL_CONST.index && - new Date() < CHANGELOG_MODAL_CONST.until - ) { - openModal({ - type: "changelog", - initial: CHANGELOG_MODAL_CONST.index, - }); - - props.state.settings.setValue( - "changelog:last_index", - CHANGELOG_MODAL_CONST.index, - ); + const cycleState = controller.lifecycle.state(); + + //Show Changelog modal + if (cycleState !== LifecycleState.Ready) { + const lastIndex = props.state.settings.getValue("changelog:last_index"); + + if ( + lastIndex !== CHANGELOG_MODAL_CONST.index && + new Date() < CHANGELOG_MODAL_CONST.until + ) { + openModal({ + type: "changelog", + initial: CHANGELOG_MODAL_CONST.index, + }); + + props.state.settings.setValue( + "changelog:last_index", + CHANGELOG_MODAL_CONST.index, + ); + } } }); diff --git a/packages/client/components/i18n/catalogs/ar/messages.po b/packages/client/components/i18n/catalogs/ar/messages.po index 1ecb9b807..8df06c5b2 100644 --- a/packages/client/components/i18n/catalogs/ar/messages.po +++ b/packages/client/components/i18n/catalogs/ar/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "تعيين الرتب" msgid "Authenticator App" msgstr "تطبيق المصادقة الثنائية" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "الصورة الرمزية" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "امسح الحالة" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "تم إنجازه" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "مركز" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "الداعي" msgid "Invites" msgstr "الدعوات" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "تسجيل الدخول" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "إدارة السيرفر" msgid "Manage Webhooks" msgstr "إدارة ربط الخدمات" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "افتح الإعدادات" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/as/messages.po b/packages/client/components/i18n/catalogs/as/messages.po index a8ecf0b7e..6e025fcea 100644 --- a/packages/client/components/i18n/catalogs/as/messages.po +++ b/packages/client/components/i18n/catalogs/as/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "প্ৰমাণীকৰণ এপ্প" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "ষ্টেটাছ আঁতৰাওক" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "ফোকাচ" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "লগইন" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "ছেটিংছ খোলক" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/az/messages.po b/packages/client/components/i18n/catalogs/az/messages.po index b41849e3f..a91545952 100644 --- a/packages/client/components/i18n/catalogs/az/messages.po +++ b/packages/client/components/i18n/catalogs/az/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Authenticator tətbiqi" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Profil" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Statusu sil" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Diqqət" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Dəvət Edən" msgid "Invites" msgstr "Dəvətlər" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Daxil ol" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Serveri idarə edin" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Parametrləri aç" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/be/messages.po b/packages/client/components/i18n/catalogs/be/messages.po index dd4a9dbaa..8392a8536 100644 --- a/packages/client/components/i18n/catalogs/be/messages.po +++ b/packages/client/components/i18n/catalogs/be/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Прызначэнне роляў" msgid "Authenticator App" msgstr "Праграма для праверкі сапраўднасці" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Аватар" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Ачысціць статус" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Гатова" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Сфакусіраваны" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Запрашаючы" msgid "Invites" msgstr "Запрашэнні" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Увайсці" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Кіраванне серверам" msgid "Manage Webhooks" msgstr "Кіраванне вэбхукамі" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Адкрыйце налады" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/bg/messages.po b/packages/client/components/i18n/catalogs/bg/messages.po index 7c4ba40cb..460f53e0a 100644 --- a/packages/client/components/i18n/catalogs/bg/messages.po +++ b/packages/client/components/i18n/catalogs/bg/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Присвояване Роли" msgid "Authenticator App" msgstr "Приложение за удостоверяване" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Аватар" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Изчистване на статуса" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Готово" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Фокус" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Поканващ" msgid "Invites" msgstr "Покани" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Вход" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Управление на сървъра" msgid "Manage Webhooks" msgstr "Управлявайте Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Отворете настройките" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/bn/messages.po b/packages/client/components/i18n/catalogs/bn/messages.po index b85947eb0..117bd9f8f 100644 --- a/packages/client/components/i18n/catalogs/bn/messages.po +++ b/packages/client/components/i18n/catalogs/bn/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "রোলগুলো যোগ করুন" msgid "Authenticator App" msgstr "অথেনটিকেটর অ্যাপ" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "প্রোফাইলের ছবি" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "স্ট্যাটাস মুছুন" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "হয়ে গেছে" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "ফোকাস" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "আমন্ত্রক" msgid "Invites" msgstr "আমন্ত্রণগুলো" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "লগইন করুন" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "সার্ভার পরিচালনা করুন" msgid "Manage Webhooks" msgstr "ওয়েবহুক (Webhook) পরিচালনা করুন" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "সেটিংস খুলুন" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/bottom/messages.po b/packages/client/components/i18n/catalogs/bottom/messages.po index f05287c27..340cabb50 100644 --- a/packages/client/components/i18n/catalogs/bottom/messages.po +++ b/packages/client/components/i18n/catalogs/bottom/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖 msgid "Authenticator App" msgstr "💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "💖✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖, msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "💖✨✨👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖 msgid "Invites" msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖 msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉 msgid "Manage Webhooks" msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "💖✨✨🥺,,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/br/messages.po b/packages/client/components/i18n/catalogs/br/messages.po index 7b0012c3a..c920a4feb 100644 --- a/packages/client/components/i18n/catalogs/br/messages.po +++ b/packages/client/components/i18n/catalogs/br/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Reiñ Perzhioù" msgid "Authenticator App" msgstr "aplikadenn aotentikadur" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Skeudenn ar Profil" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Lemel ar statud" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Graet" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Dizourennet" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Pediñ" msgid "Invites" msgstr "Pedadennoù" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Kevreañ" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Merañ ar Servijer" msgid "Manage Webhooks" msgstr "Merañ ar Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Digeriñ an arventennoù" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ca/messages.po b/packages/client/components/i18n/catalogs/ca/messages.po index c63942ead..61e8790a2 100644 --- a/packages/client/components/i18n/catalogs/ca/messages.po +++ b/packages/client/components/i18n/catalogs/ca/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assignar Rols" msgid "Authenticator App" msgstr "App d'Autentificació" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Borrar 'estatus' personalitzat" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Fet" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Concentrat" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Membre que l'ha convidat" msgid "Invites" msgstr "Invitacions" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Inicia sessió" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Administrar servidor" msgid "Manage Webhooks" msgstr "Gestionar Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Obre la configuració" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ceb/messages.po b/packages/client/components/i18n/catalogs/ceb/messages.po index f0c0a67e1..d35a37a6c 100644 --- a/packages/client/components/i18n/catalogs/ceb/messages.po +++ b/packages/client/components/i18n/catalogs/ceb/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "App Panghimatuod" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Naka-focus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Log in" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Abriha ang mga setting" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ckb/messages.po b/packages/client/components/i18n/catalogs/ckb/messages.po index 28e50d74a..10b7036c6 100644 --- a/packages/client/components/i18n/catalogs/ckb/messages.po +++ b/packages/client/components/i18n/catalogs/ckb/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "ڕۆڵەکان دیاری بکە" msgid "Authenticator App" msgstr "ئەپی ڕەسەنایەتی" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "ئاڤاتار" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "سڕینەوەی دۆخ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "تەواو" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "جەخت" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "بانگهێشتکەر" msgid "Invites" msgstr "بانگهێشتەکان" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "چوونەژوورەوە" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "بەڕێوەبردنی سێرڤەر" msgid "Manage Webhooks" msgstr "بەڕێوەبردنی وێبهووک" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "کردنەوەی ڕێکخستنەکان" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/cs/messages.po b/packages/client/components/i18n/catalogs/cs/messages.po index 561582c9a..a26d7c8c7 100644 --- a/packages/client/components/i18n/catalogs/cs/messages.po +++ b/packages/client/components/i18n/catalogs/cs/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Přidělit role" msgid "Authenticator App" msgstr "Ověřovací aplikace" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Vymazat status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Hotovo" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Soustředěný" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Tvůrce pozvánky" msgid "Invites" msgstr "Pozvánky" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Přihlásit se" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Správa serveru" msgid "Manage Webhooks" msgstr "Spravovat webhooky" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Otevřít nastavení" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/da/messages.po b/packages/client/components/i18n/catalogs/da/messages.po index 1c5ea42ef..be355dabc 100644 --- a/packages/client/components/i18n/catalogs/da/messages.po +++ b/packages/client/components/i18n/catalogs/da/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Tildel roller" msgid "Authenticator App" msgstr "Godkendelsesapp" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Ryd status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Færdig" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitere" msgid "Invites" msgstr "Invitationer" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Log ind" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Administrer server" msgid "Manage Webhooks" msgstr "Administrer webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Åbn indstillinger" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/de/messages.po b/packages/client/components/i18n/catalogs/de/messages.po index 331b9c20b..d94760036 100644 --- a/packages/client/components/i18n/catalogs/de/messages.po +++ b/packages/client/components/i18n/catalogs/de/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Rollen zuweisen" msgid "Authenticator App" msgstr "Authentifizierungs-App" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Profilbild" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Status entfernen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Erledigt" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Konzentriert" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Einladender" msgid "Invites" msgstr "Einladungen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Login" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Server verwalten" msgid "Manage Webhooks" msgstr "Webhooks verwalten" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Einstellungen öffnen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/dev/messages.po b/packages/client/components/i18n/catalogs/dev/messages.po index 8fc496fac..e3a4ac4c1 100644 --- a/packages/client/components/i18n/catalogs/dev/messages.po +++ b/packages/client/components/i18n/catalogs/dev/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/el/messages.po b/packages/client/components/i18n/catalogs/el/messages.po index d51c87681..fdbb2318e 100644 --- a/packages/client/components/i18n/catalogs/el/messages.po +++ b/packages/client/components/i18n/catalogs/el/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Ανάθεση Ρόλων" msgid "Authenticator App" msgstr "Εφαρμογή Επαληθευτή" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Καθαρισμός κατάστασης" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Έγινε" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Αφοσιωμένος" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Προσκλητής" msgid "Invites" msgstr "Προσκλήσεις" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Σύνδεση" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Διαχείριση Server" msgid "Manage Webhooks" msgstr "Διαχείριση Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Άνοιγμα ρυθμίσεων" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/en-US/messages.po b/packages/client/components/i18n/catalogs/en-US/messages.po index 776df8152..9b3ccbb70 100644 --- a/packages/client/components/i18n/catalogs/en-US/messages.po +++ b/packages/client/components/i18n/catalogs/en-US/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/en/messages.po b/packages/client/components/i18n/catalogs/en/messages.po index 8d6fe91ed..4ea7005e8 100644 --- a/packages/client/components/i18n/catalogs/en/messages.po +++ b/packages/client/components/i18n/catalogs/en/messages.po @@ -355,6 +355,10 @@ msgstr "An error occurred." msgid "An internal error occurred. ({0})" msgstr "An internal error occurred. ({0})" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "Android" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assign Roles" msgid "Authenticator App" msgstr "Authenticator App" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "Automatic Gain Control" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "Choose username" msgid "Clear status" msgstr "Clear status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "Click on the <0/> button" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "Click on the ⋮ button" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "Click on the items below to learn more about different changes!" @@ -1116,6 +1132,10 @@ msgstr "Done" msgid "Drugs or illegal goods" msgstr "Drugs or illegal goods" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "Easy Install" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "Find your com<0/>munity,<1/>connect with the world." msgid "Focus" msgstr "Focus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "Follow the prompts" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "Image by @fakurian" msgid "Impersonation" msgstr "Impersonation" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "Install" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "Installing Stoat only takes a few taps. We'll guide you through it." + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "Installing..." + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "Instead of closing, Stoat will hide in your tray." @@ -1497,6 +1535,10 @@ msgstr "Inviter" msgid "Invites" msgstr "Invites" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "iOS / iPadOS" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "irrelevant joke badge 1" @@ -1656,6 +1698,14 @@ msgstr "Login" msgid "Logs you out of all sessions except this device." msgstr "Logs you out of all sessions except this device." +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "Looks like you declined the installation... You can refresh the page if you'd like to try again." + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "Malware or phishing" @@ -1692,6 +1742,10 @@ msgstr "Manage Server" msgid "Manage Webhooks" msgstr "Manage Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "Manual Install" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "Mark as mature" @@ -2018,6 +2072,14 @@ msgstr "Open server settings" msgid "Open settings" msgstr "Open settings" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "Open this page in Google Chrome" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "Open this page in Safari" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "Other" @@ -2656,6 +2718,14 @@ msgstr "System" msgid "System message channels" msgstr "System message channels" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "Tap \"Add to Home Screen\"" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "Tap \"Install app\" or \"Add to home screen\"" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "Tell us what's wrong with this message" @@ -3206,6 +3276,10 @@ msgstr "You've reached your personal bot limit." msgid "You've sent too many friend requests, the maximum is {0}" msgstr "You've sent too many friend requests, the maximum is {0}" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "You've successfully installed Stoat!" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." diff --git a/packages/client/components/i18n/catalogs/enchantment/messages.po b/packages/client/components/i18n/catalogs/enchantment/messages.po index 0fbd81b77..7dce2d5c4 100644 --- a/packages/client/components/i18n/catalogs/enchantment/messages.po +++ b/packages/client/components/i18n/catalogs/enchantment/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "ᔑᓭᓭ╎⊣リ ∷𝙹ꖎᒷᓭ" msgid "Authenticator App" msgstr "ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "ᔑ⍊ᔑℸᔑ∷" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "ᓵꖎᒷᔑ∷ ᓭℸᔑℸ⚍ᓭ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "↸𝙹リᒷ" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "⎓𝙹ᓵ⚍ᓭ" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "╎リ⍊╎ℸᒷ∷" msgid "Invites" msgstr "╎リ⍊╎ℸᒷᓭ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "ꖎ𝙹⊣╎リ" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "ᒲᔑリᔑ⊣ᒷ ᓭᒷ∷⍊ᒷ∷" msgid "Manage Webhooks" msgstr "ᒲᔑリᔑ⊣ᒷ ∴ᒷʖ⍑𝙹𝙹ꖌᓭ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "𝙹!¡ᒷリ ᓭᒷℸℸ╎リ⊣ᓭ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/eo/messages.po b/packages/client/components/i18n/catalogs/eo/messages.po index e77a62497..6c5058a47 100644 --- a/packages/client/components/i18n/catalogs/eo/messages.po +++ b/packages/client/components/i18n/catalogs/eo/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Atribui rolojn" msgid "Authenticator App" msgstr "Aŭtentiga apo" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Uzantobildo" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Forigi statotekston" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Farite" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Koncentriĝanta" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitanto" msgid "Invites" msgstr "Invitoj" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Ensaluti" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Mastrumi servilon" msgid "Manage Webhooks" msgstr "Mastrumi rethokojn" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Malfermi agordojn" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/es-419/messages.po b/packages/client/components/i18n/catalogs/es-419/messages.po index 1bbc4fad8..e348052bf 100644 --- a/packages/client/components/i18n/catalogs/es-419/messages.po +++ b/packages/client/components/i18n/catalogs/es-419/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/es/messages.po b/packages/client/components/i18n/catalogs/es/messages.po index b9f2823d9..2b73df84e 100644 --- a/packages/client/components/i18n/catalogs/es/messages.po +++ b/packages/client/components/i18n/catalogs/es/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Asignar roles" msgid "Authenticator App" msgstr "Aplicación de autenticación" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Borrar estado personalizado" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Hecho" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Concentrado" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitador" msgid "Invites" msgstr "Invitaciones" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Iniciar sesión" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Administrar servidor" msgid "Manage Webhooks" msgstr "Administrar Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Abrir ajustes" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/et/messages.po b/packages/client/components/i18n/catalogs/et/messages.po index 687650482..e0932e8e3 100644 --- a/packages/client/components/i18n/catalogs/et/messages.po +++ b/packages/client/components/i18n/catalogs/et/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Rollide määramine" msgid "Authenticator App" msgstr "Autentimise rakendus" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Eemalda staatus" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Valmis" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fookus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Kutsuja" msgid "Invites" msgstr "Kutsed" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Logi sisse" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Halda serverit" msgid "Manage Webhooks" msgstr "Veebikonksude haldamine" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Ava sätted" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/fa/messages.po b/packages/client/components/i18n/catalogs/fa/messages.po index 5aa472afd..4509d7d3b 100644 --- a/packages/client/components/i18n/catalogs/fa/messages.po +++ b/packages/client/components/i18n/catalogs/fa/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "نقش ها را اختصاص دهید" msgid "Authenticator App" msgstr "برنامه احراز هویت" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "آواتار" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "حذف وضعیت" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "انجام شده" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "تمرکز" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "دعوت کننده" msgid "Invites" msgstr "دعوت ها" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "ورود" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "مدیریت سرور" msgid "Manage Webhooks" msgstr "مدیریت وب هوک ها" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "تنظیمات را باز کنید" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/fi/messages.po b/packages/client/components/i18n/catalogs/fi/messages.po index 56fc292ea..58e7aed79 100644 --- a/packages/client/components/i18n/catalogs/fi/messages.po +++ b/packages/client/components/i18n/catalogs/fi/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Aseta rooleja" msgid "Authenticator App" msgstr "Valtuutussovellus" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Kuva" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Tyhjennä tila" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Valmis" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Keskity" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Kutsuja" msgid "Invites" msgstr "Kutsut" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Kirjaudu sisään" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Hallitse Palvelinta" msgid "Manage Webhooks" msgstr "Hallinnoi webhookeja" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Avaa asetukset" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/fil/messages.po b/packages/client/components/i18n/catalogs/fil/messages.po index b25c33782..7b2d1d571 100644 --- a/packages/client/components/i18n/catalogs/fil/messages.po +++ b/packages/client/components/i18n/catalogs/fil/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Magtalaga ng mga Role" msgid "Authenticator App" msgstr "Taga-authenticate na app" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Tanggalin ang estado" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Tapos na" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Nakatutok" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Ang nag-imbita" msgid "Invites" msgstr "Mga Imbitasyon" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Mag-login" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Makapagmanage sa server" msgid "Manage Webhooks" msgstr "Pamahalaan ang mga webhook" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Buksan ang mga opsyon" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/fr/messages.po b/packages/client/components/i18n/catalogs/fr/messages.po index 2d62f983f..315e93704 100644 --- a/packages/client/components/i18n/catalogs/fr/messages.po +++ b/packages/client/components/i18n/catalogs/fr/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assigner des rôles" msgid "Authenticator App" msgstr "Application d'authentification" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Supprimer le statut" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Terminé" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Concentré" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Membre ayant invité" msgid "Invites" msgstr "Invitations" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Connexion" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Gérer le serveur" msgid "Manage Webhooks" msgstr "Gérer les webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Ouvrir les paramètres" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ga/messages.po b/packages/client/components/i18n/catalogs/ga/messages.po index ee5a18adb..7fd91a1ad 100644 --- a/packages/client/components/i18n/catalogs/ga/messages.po +++ b/packages/client/components/i18n/catalogs/ga/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Fíordheimhnitheoir App" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Scrios stádais" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fócas" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Cuireadh" msgid "Invites" msgstr "Cuireadh" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Logáil isteach" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Bainistigh Freastalaí" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Oscail rogha" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/hi/messages.po b/packages/client/components/i18n/catalogs/hi/messages.po index 3220ad522..7d7b015e4 100644 --- a/packages/client/components/i18n/catalogs/hi/messages.po +++ b/packages/client/components/i18n/catalogs/hi/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "भूमिकाएँ असाइन करें" msgid "Authenticator App" msgstr "ऑथेंटिकटर ऍप" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "अवतार" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "स्पष्ट स्थिति" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "समाज-सम्मत" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "संकेन्द्रित" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "निमंत्रणदाता" msgid "Invites" msgstr "आमंत्रण" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "लॉग इन करें" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "सर्वर प्रबंधित करें" msgid "Manage Webhooks" msgstr "Webhooks प्रबंधित करें" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "समायोजन" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/hr/messages.po b/packages/client/components/i18n/catalogs/hr/messages.po index dd4277984..8176a7e4e 100644 --- a/packages/client/components/i18n/catalogs/hr/messages.po +++ b/packages/client/components/i18n/catalogs/hr/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Dodijeli uloge" msgid "Authenticator App" msgstr "Aplikacija za autentifikaciju" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Slika profila" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Ukloni status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Gotovo" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Pozivatelj" msgid "Invites" msgstr "Pozivnice" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Prijavi se" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Upravljanje poslužiteljem" msgid "Manage Webhooks" msgstr "Kontroliraj Webhook-ove" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Otvori podešavanja" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/hu/messages.po b/packages/client/components/i18n/catalogs/hu/messages.po index 2a302dc67..f6762e998 100644 --- a/packages/client/components/i18n/catalogs/hu/messages.po +++ b/packages/client/components/i18n/catalogs/hu/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Titulusok hozzárendelése" msgid "Authenticator App" msgstr "Hitelesítést végző app" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Profilkép" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Törlés" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Rendben van!" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Koncentál" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Meghívó" msgid "Invites" msgstr "Meghívók" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Bejelentkezés" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Kezelhetik a szervert" msgid "Manage Webhooks" msgstr "Kezelhetnek Webhookokat" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Beállítások megnyitása" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/hy/messages.po b/packages/client/components/i18n/catalogs/hy/messages.po index e96bfb264..b007914db 100644 --- a/packages/client/components/i18n/catalogs/hy/messages.po +++ b/packages/client/components/i18n/catalogs/hy/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Դերեր նշանակել" msgid "Authenticator App" msgstr "Authenticator հավելված" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Անձնանշան" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Մաքրել կարգավիճակը" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "կատարած" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Կենտրոնանալ" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Հրավիրող" msgid "Invites" msgstr "Հրավիրում է" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Մուտք գործել" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Կառավարեք սերվերը" msgid "Manage Webhooks" msgstr "Կառավարեք Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Բացեք կարգավորումները" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/id/messages.po b/packages/client/components/i18n/catalogs/id/messages.po index ad4c9faca..e0862a68b 100644 --- a/packages/client/components/i18n/catalogs/id/messages.po +++ b/packages/client/components/i18n/catalogs/id/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Berikan Peran" msgid "Authenticator App" msgstr "Aplikasi Autentikasi" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Hapus status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Selesai" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Pengundang" msgid "Invites" msgstr "Undangan" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Masuk" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Kelola Server" msgid "Manage Webhooks" msgstr "Atur Webhook" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Buka pengaturan" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/is/messages.po b/packages/client/components/i18n/catalogs/is/messages.po index ff4174e31..b2047d403 100644 --- a/packages/client/components/i18n/catalogs/is/messages.po +++ b/packages/client/components/i18n/catalogs/is/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Auðkennisapp" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Skrá inn" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Opna stillingar" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/it/messages.po b/packages/client/components/i18n/catalogs/it/messages.po index 74434d3da..f9aba8e21 100644 --- a/packages/client/components/i18n/catalogs/it/messages.po +++ b/packages/client/components/i18n/catalogs/it/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assegnare ruoli" msgid "Authenticator App" msgstr "Applicazione di autenticazione" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Cancella stato" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Fatto" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Concentrazione" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitante" msgid "Invites" msgstr "Inviti" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Accedi" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Gestire il server" msgid "Manage Webhooks" msgstr "Modificare webhook" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Apri le impostazioni" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ja/messages.po b/packages/client/components/i18n/catalogs/ja/messages.po index 799ba62f9..9fa81afc6 100644 --- a/packages/client/components/i18n/catalogs/ja/messages.po +++ b/packages/client/components/i18n/catalogs/ja/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "ロールを付与する" msgid "Authenticator App" msgstr "二段階認証アプリ" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "アバター" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "ステータスのクリア" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "完了" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "集中" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "招待者" msgid "Invites" msgstr "招待" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "ログイン" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "サーバーの管理" msgid "Manage Webhooks" msgstr "Webhookの管理" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "設定を開く" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ko/messages.po b/packages/client/components/i18n/catalogs/ko/messages.po index 94b153401..e345ad0e1 100644 --- a/packages/client/components/i18n/catalogs/ko/messages.po +++ b/packages/client/components/i18n/catalogs/ko/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "역할 부여 하기" msgid "Authenticator App" msgstr "인증 앱" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "아바타" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "상태 삭제" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "완료" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "집중 중" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "초대자" msgid "Invites" msgstr "초대" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "로그인" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "서버 관리" msgid "Manage Webhooks" msgstr "웹훅 관리" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "설정 열기" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/lb/messages.po b/packages/client/components/i18n/catalogs/lb/messages.po index c250e91f3..9b6906a56 100644 --- a/packages/client/components/i18n/catalogs/lb/messages.po +++ b/packages/client/components/i18n/catalogs/lb/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Authentifizéierungsapp" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Inviter" msgid "Invites" msgstr "Invitatiounen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Login" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/leet/messages.po b/packages/client/components/i18n/catalogs/leet/messages.po index 93dc6b51d..61fc122f4 100644 --- a/packages/client/components/i18n/catalogs/leet/messages.po +++ b/packages/client/components/i18n/catalogs/leet/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "45516N 20L35" msgid "Authenticator App" msgstr "4U7H3N71C4702 4PP" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "4V4742" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "CL342 5747U5" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "D0N3" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "F0CU5" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "1NV1732" msgid "Invites" msgstr "1NV1735" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "L061N" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "M4N463 532V32" msgid "Manage Webhooks" msgstr "M4N463 W38H00K5" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "0P3N 53771N65" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/lt/messages.po b/packages/client/components/i18n/catalogs/lt/messages.po index cd006f6a4..280cd9386 100644 --- a/packages/client/components/i18n/catalogs/lt/messages.po +++ b/packages/client/components/i18n/catalogs/lt/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Priskirti vaidmenis" msgid "Authenticator App" msgstr "Autentifikavimo programėlė" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avataras" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Valyti būseną" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Baigta" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Susikaupęs" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Kviečiantysis" msgid "Invites" msgstr "Kvietimai" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Prisijungti" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Tvarkyti serverį" msgid "Manage Webhooks" msgstr "Tvarkyti Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Atidarykite nustatymus" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/lv/messages.po b/packages/client/components/i18n/catalogs/lv/messages.po index 3f49bd3a3..5a7b2d0ac 100644 --- a/packages/client/components/i18n/catalogs/lv/messages.po +++ b/packages/client/components/i18n/catalogs/lv/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Piešķirt lomas" msgid "Authenticator App" msgstr "Autentifikācijas lietotne" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatārs" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Notīrīt statusu" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Gatavs" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokusēt" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Ielūguma sūtītājs" msgid "Invites" msgstr "Uzaicinājumi" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Pieteikties" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Pārvaldīt serveri" msgid "Manage Webhooks" msgstr "Pārvaldīt Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Atvērt iestatījumus" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/mk/messages.po b/packages/client/components/i18n/catalogs/mk/messages.po index c544b02ef..ad03499e7 100644 --- a/packages/client/components/i18n/catalogs/mk/messages.po +++ b/packages/client/components/i18n/catalogs/mk/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Логирај Се" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Отвори поставки" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ms/messages.po b/packages/client/components/i18n/catalogs/ms/messages.po index 4cc218dd2..957cfe7ac 100644 --- a/packages/client/components/i18n/catalogs/ms/messages.po +++ b/packages/client/components/i18n/catalogs/ms/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Berikan Peranan" msgid "Authenticator App" msgstr "Aplikasi pengesah" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Kosongkan status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Selesai" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Penjemput" msgid "Invites" msgstr "Jemputan" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Log masuk" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Urus Server" msgid "Manage Webhooks" msgstr "Urus Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Buka Tetapan" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/nb-NO/messages.po b/packages/client/components/i18n/catalogs/nb-NO/messages.po index 27d20f706..766de5b2f 100644 --- a/packages/client/components/i18n/catalogs/nb-NO/messages.po +++ b/packages/client/components/i18n/catalogs/nb-NO/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/nl/messages.po b/packages/client/components/i18n/catalogs/nl/messages.po index b6c0c7cf3..5bfda7843 100644 --- a/packages/client/components/i18n/catalogs/nl/messages.po +++ b/packages/client/components/i18n/catalogs/nl/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Rollen Toewijzen" msgid "Authenticator App" msgstr "Authenticatie-app" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Profielfoto" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Status wissen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Klaar" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Focus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Uitnodiger" msgid "Invites" msgstr "Uitnodigingen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Inloggen" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Beheer Server" msgid "Manage Webhooks" msgstr "Webhooks Beheren" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Instellingen openen" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/owo/messages.po b/packages/client/components/i18n/catalogs/owo/messages.po index a3f4beab5..9353041eb 100644 --- a/packages/client/components/i18n/catalogs/owo/messages.po +++ b/packages/client/components/i18n/catalogs/owo/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assign Wowes" msgid "Authenticator App" msgstr "Auwthenticatow App" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Awatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Bye staytus :((" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "I'm downe" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fowocus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitr" msgid "Invites" msgstr "Invyites" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Lwogin" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Manyage sewvew" msgid "Manage Webhooks" msgstr "Manyage Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Owopen Swettings" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/piglatin/messages.po b/packages/client/components/i18n/catalogs/piglatin/messages.po index fcc1835e5..670e659ec 100644 --- a/packages/client/components/i18n/catalogs/piglatin/messages.po +++ b/packages/client/components/i18n/catalogs/piglatin/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Assignway Olesray" msgid "Authenticator App" msgstr "Authenticatorway Appway" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avataryay" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Earclay atusstay" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Oneday" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Ocusfay" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Inviteryay" msgid "Invites" msgstr "Invitesyay" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Oginlay" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Anagemay Erversay" msgid "Manage Webhooks" msgstr "Anagemay Ebhooksway" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Openyay ettingssay" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/pl/messages.po b/packages/client/components/i18n/catalogs/pl/messages.po index 64ad3a3f8..ac24c2097 100644 --- a/packages/client/components/i18n/catalogs/pl/messages.po +++ b/packages/client/components/i18n/catalogs/pl/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Przypisywanie ról" msgid "Authenticator App" msgstr "Aplikacja uwierzytelniająca" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Awatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Usuń status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Gotowe" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Skupienie" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Zapraszający" msgid "Invites" msgstr "Zaproszenia" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Zaloguj się" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Zarządzanie serwerem" msgid "Manage Webhooks" msgstr "Zarządzanie webhookami" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Otwórz ustawienia" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/pr/messages.po b/packages/client/components/i18n/catalogs/pr/messages.po index a8d539280..7864717ef 100644 --- a/packages/client/components/i18n/catalogs/pr/messages.po +++ b/packages/client/components/i18n/catalogs/pr/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Authenticatarr App" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Clear ye status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Spyglassin'" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Summoner" msgid "Invites" msgstr "Summonings" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Login" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Captain the Ship" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Open Settins" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/pt-BR/messages.po b/packages/client/components/i18n/catalogs/pt-BR/messages.po index f6f96d7df..ab399a26c 100644 --- a/packages/client/components/i18n/catalogs/pt-BR/messages.po +++ b/packages/client/components/i18n/catalogs/pt-BR/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/pt-PT/messages.po b/packages/client/components/i18n/catalogs/pt-PT/messages.po index 657e5941a..f7d338862 100644 --- a/packages/client/components/i18n/catalogs/pt-PT/messages.po +++ b/packages/client/components/i18n/catalogs/pt-PT/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ro/messages.po b/packages/client/components/i18n/catalogs/ro/messages.po index 03e556916..af1cbcc7c 100644 --- a/packages/client/components/i18n/catalogs/ro/messages.po +++ b/packages/client/components/i18n/catalogs/ro/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Atribuire roluri" msgid "Authenticator App" msgstr "Aplicație de autentificare" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Șterge status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Efectuat" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Concentrat" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Invitator" msgid "Invites" msgstr "Invitații" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Autentificare" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Gestionează serverul" msgid "Manage Webhooks" msgstr "Modifică webhook-uri" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Deschide setările" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ru/messages.po b/packages/client/components/i18n/catalogs/ru/messages.po index 06f1c34cf..ca0215b54 100644 --- a/packages/client/components/i18n/catalogs/ru/messages.po +++ b/packages/client/components/i18n/catalogs/ru/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Назначать роли" msgid "Authenticator App" msgstr "Приложение для аутентификации" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Аватар" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Очистить статус" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Готово" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Сосредоточен" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Пригласил" msgid "Invites" msgstr "Приглашения" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Войти" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Управлять сервером" msgid "Manage Webhooks" msgstr "Управлять вебхуками" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Открыть настройки" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/si/messages.po b/packages/client/components/i18n/catalogs/si/messages.po index df5d9e6fb..903ac0fa6 100644 --- a/packages/client/components/i18n/catalogs/si/messages.po +++ b/packages/client/components/i18n/catalogs/si/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "භූමිකාවන් පවරන්න" msgid "Authenticator App" msgstr "සත්යාපන යෙදුම" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "ප්රතිරූපය" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "තත්වය මකන්න" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "අහවරයි" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "අවධානය යොමු කරන්" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "ඇරයුම්කරු" msgid "Invites" msgstr "ඇරයුම්" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "පිවිසෙන්න" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "සේවාදායකය කළමණාකරනය" msgid "Manage Webhooks" msgstr "Webhooks කළමනාකරණය කරන්න" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "සැකසුම් අරින්න" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/sk/messages.po b/packages/client/components/i18n/catalogs/sk/messages.po index a5a9ae096..90430f6e4 100644 --- a/packages/client/components/i18n/catalogs/sk/messages.po +++ b/packages/client/components/i18n/catalogs/sk/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Priradiť roly" msgid "Authenticator App" msgstr "Overovacia aplikácia" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Vymazať status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Hotovo" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Sústredenie" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Pozývateľ" msgid "Invites" msgstr "Pozvánky" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Prihlásiť sa" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Spravovať Server" msgid "Manage Webhooks" msgstr "Spravujte Webhooky" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Otvoriť nastavenia" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/sl/messages.po b/packages/client/components/i18n/catalogs/sl/messages.po index c2e30a8e8..436586017 100644 --- a/packages/client/components/i18n/catalogs/sl/messages.po +++ b/packages/client/components/i18n/catalogs/sl/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Dodeljevanje Vlog" msgid "Authenticator App" msgstr "Aplikacija Authenticator" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Odstrani status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Končano" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Ustvarjalec Povabila" msgid "Invites" msgstr "Povabila" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Prijava" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Upravljanje strežnika" msgid "Manage Webhooks" msgstr "Urejanje Spletnih Trnkov" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Odpri nastavitve" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/sq/messages.po b/packages/client/components/i18n/catalogs/sq/messages.po index 9b4859b45..b8f584ebd 100644 --- a/packages/client/components/i18n/catalogs/sq/messages.po +++ b/packages/client/components/i18n/catalogs/sq/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Cakto role" msgid "Authenticator App" msgstr "Aplikacioni i identifikimit" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Imazhi i profilit" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Statusi i personalizuar" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "U krye" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "I fokusuar" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Hyr" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Menaxho serverin" msgid "Manage Webhooks" msgstr "Menaxho Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Hap opsionet" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/sr/messages.po b/packages/client/components/i18n/catalogs/sr/messages.po index 8283c96cc..c1a5684f0 100644 --- a/packages/client/components/i18n/catalogs/sr/messages.po +++ b/packages/client/components/i18n/catalogs/sr/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Додели улоге" msgid "Authenticator App" msgstr "Апликација за аутентификацију" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Профилна Слика" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Очисти статус" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Готово" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Фокус" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Позивник" msgid "Invites" msgstr "Позиви" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Пријавите се" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Управљање Сервером" msgid "Manage Webhooks" msgstr "Управљај вебхуковима" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Отвори подешавања" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/sv/messages.po b/packages/client/components/i18n/catalogs/sv/messages.po index 2dc185f35..30fb39ab0 100644 --- a/packages/client/components/i18n/catalogs/sv/messages.po +++ b/packages/client/components/i18n/catalogs/sv/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Tilldela Roller" msgid "Authenticator App" msgstr "Autentiseringsapp" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Avatar" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Rensa status" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Klart" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Fokus" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Inbjudare" msgid "Invites" msgstr "Inbjudningar" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Logga in" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Hantera Server" msgid "Manage Webhooks" msgstr "Hantera Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Öppna inställningar" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ta/messages.po b/packages/client/components/i18n/catalogs/ta/messages.po index 423b4535a..0204bd6d1 100644 --- a/packages/client/components/i18n/catalogs/ta/messages.po +++ b/packages/client/components/i18n/catalogs/ta/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "அழைப்பாளர்" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "உள்நுழைய" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "அமைப்புகளைத் திறக்கவும்" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/th/messages.po b/packages/client/components/i18n/catalogs/th/messages.po index e6551af3a..75e77290d 100644 --- a/packages/client/components/i18n/catalogs/th/messages.po +++ b/packages/client/components/i18n/catalogs/th/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "ตั้งบทบาท" msgid "Authenticator App" msgstr "แอพยืนยันตัวตน" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "รูปโปรไฟล์" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "ล้างสถานะ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "เรียบร้อย" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "โฟกัส" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "ผู้เชิญ" msgid "Invites" msgstr "คำเชิญ" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "เข้าสู่ระบบ" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "จัดการเซิร์ฟเวอร์" msgid "Manage Webhooks" msgstr "จัดการเว็บฮุก" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "เปิดการตั้งค่า" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/tokipona/messages.po b/packages/client/components/i18n/catalogs/tokipona/messages.po index ad3c5c86d..3f117f525 100644 --- a/packages/client/components/i18n/catalogs/tokipona/messages.po +++ b/packages/client/components/i18n/catalogs/tokipona/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "lipu open" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "sitelen jan" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "o weka e toki lili" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "kute" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "jan pali pi nimi ni" msgid "Invites" msgstr "nimi pi kama jan" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "o kama sijelo" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "o open e nasin" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/tr/messages.po b/packages/client/components/i18n/catalogs/tr/messages.po index bc8d91dd9..f7d953888 100644 --- a/packages/client/components/i18n/catalogs/tr/messages.po +++ b/packages/client/components/i18n/catalogs/tr/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Rolleri Ata" msgid "Authenticator App" msgstr "Kimlik Doğrulama Uygulaması" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Profil Resmi" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Özel durumu temizle" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Bitti" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Odaklanmış" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Davet Eden" msgid "Invites" msgstr "Davetler" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Giriş Yap" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Sunucuyu Yönet" msgid "Manage Webhooks" msgstr "Webhookları Yönet" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Ayarları aç" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/uk/messages.po b/packages/client/components/i18n/catalogs/uk/messages.po index 9b79eab56..11a7745e1 100644 --- a/packages/client/components/i18n/catalogs/uk/messages.po +++ b/packages/client/components/i18n/catalogs/uk/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Призначення ролей" msgid "Authenticator App" msgstr "Застосунок для аутентифікації" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Аватар" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Очистити статус" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Готово" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Зосереджений" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Запросив" msgid "Invites" msgstr "Запрошення" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Увійти" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Керування сервером" msgid "Manage Webhooks" msgstr "Керування вебхуками" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Відкрити налаштування" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/ur/messages.po b/packages/client/components/i18n/catalogs/ur/messages.po index ff4d7f3b8..b696d5c39 100644 --- a/packages/client/components/i18n/catalogs/ur/messages.po +++ b/packages/client/components/i18n/catalogs/ur/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "تصدیق کنندہ ایپ" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "فوکس" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "لاگ ان کریں" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "ترتیبات کھولیں۔" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/vec/messages.po b/packages/client/components/i18n/catalogs/vec/messages.po index 15cb7d503..dfb9c38da 100644 --- a/packages/client/components/i18n/catalogs/vec/messages.po +++ b/packages/client/components/i18n/catalogs/vec/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "" msgid "Authenticator App" msgstr "Aplicasion d'Autenticasion" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Metìo a fogo" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Asede" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "Aministrar Webhooks" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Vardar inpostasioni" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/vi/messages.po b/packages/client/components/i18n/catalogs/vi/messages.po index 124bc8775..2d6290010 100644 --- a/packages/client/components/i18n/catalogs/vi/messages.po +++ b/packages/client/components/i18n/catalogs/vi/messages.po @@ -355,6 +355,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -390,6 +394,10 @@ msgstr "Thêm Vai Trò" msgid "Authenticator App" msgstr "Ứng Dụng Xác Thực" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "Ảnh đại diện" @@ -628,6 +636,14 @@ msgstr "" msgid "Clear status" msgstr "Xóa trạng thái" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1116,6 +1132,10 @@ msgstr "Đã xong" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1296,6 +1316,11 @@ msgstr "" msgid "Focus" msgstr "Tập trung" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1460,6 +1485,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1497,6 +1535,10 @@ msgstr "Người Mời" msgid "Invites" msgstr "Lời Mời" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1656,6 +1698,14 @@ msgstr "Đăng Nhập" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1692,6 +1742,10 @@ msgstr "Quản Lí Máy Chủ" msgid "Manage Webhooks" msgstr "Điều Hành Webhook" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -2018,6 +2072,14 @@ msgstr "" msgid "Open settings" msgstr "Mở cài đặt" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2656,6 +2718,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3206,6 +3276,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/zh-Hans/messages.po b/packages/client/components/i18n/catalogs/zh-Hans/messages.po index 18de75a58..5e03c1f9d 100644 --- a/packages/client/components/i18n/catalogs/zh-Hans/messages.po +++ b/packages/client/components/i18n/catalogs/zh-Hans/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/i18n/catalogs/zh-Hant/messages.po b/packages/client/components/i18n/catalogs/zh-Hant/messages.po index 8b068e1c7..a35c373d1 100644 --- a/packages/client/components/i18n/catalogs/zh-Hant/messages.po +++ b/packages/client/components/i18n/catalogs/zh-Hant/messages.po @@ -351,6 +351,10 @@ msgstr "" msgid "An internal error occurred. ({0})" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Android" +msgstr "" + #: components/app/interface/settings/UserSettings.tsx #: components/app/interface/settings/user/Sync.tsx msgid "Appearance" @@ -382,6 +386,10 @@ msgstr "" msgid "Authenticator App" msgstr "" +#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx +msgid "Automatic Gain Control" +msgstr "" + #: components/app/interface/settings/user/profile/UserProfileEditor.tsx msgid "Avatar" msgstr "" @@ -620,6 +628,14 @@ msgstr "" msgid "Clear status" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the <0/> button" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Click on the ⋮ button" +msgstr "" + #: components/modal/modals/PolicyChange.tsx msgid "Click on the items below to learn more about different changes!" msgstr "" @@ -1100,6 +1116,10 @@ msgstr "" msgid "Drugs or illegal goods" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Easy Install" +msgstr "" + #. placeholder {0}: props.member.displayName #: components/modal/modals/UserProfileRoles.tsx msgid "Edit {0}'s roles" @@ -1280,6 +1300,11 @@ msgstr "" msgid "Focus" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Follow the prompts" +msgstr "" + #: components/app/menus/ServerContextMenu.tsx #: components/app/menus/shared/NotificationContextMenu.tsx msgid "For 1 hour" @@ -1439,6 +1464,19 @@ msgstr "" msgid "Impersonation" msgstr "" +#: components/app/interface/settings/UserSettings.tsx +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Install" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing Stoat only takes a few taps. We'll guide you through it." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Installing..." +msgstr "" + #: components/app/interface/settings/user/Native.tsx msgid "Instead of closing, Stoat will hide in your tray." msgstr "" @@ -1476,6 +1514,10 @@ msgstr "" msgid "Invites" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "iOS / iPadOS" +msgstr "" + #: components/ui/components/features/profiles/ProfileBadges.tsx msgid "irrelevant joke badge 1" msgstr "" @@ -1631,6 +1673,14 @@ msgstr "" msgid "Logs you out of all sessions except this device." msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below." +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +#~ msgid "Looks like you declined the installation... You can refresh the page if you'd like to try again." +#~ msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Malware or phishing" msgstr "" @@ -1667,6 +1717,10 @@ msgstr "" msgid "Manage Webhooks" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Manual Install" +msgstr "" + #: components/modal/modals/ChannelToggleMature.tsx msgid "Mark as mature" msgstr "" @@ -1993,6 +2047,14 @@ msgstr "" msgid "Open settings" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Google Chrome" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Open this page in Safari" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Other" msgstr "" @@ -2615,6 +2677,14 @@ msgstr "" msgid "System message channels" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Add to Home Screen\"" +msgstr "" + +#: components/app/interface/settings/InstallInstructions.tsx +msgid "Tap \"Install app\" or \"Add to home screen\"" +msgstr "" + #: components/modal/modals/ReportContent.tsx msgid "Tell us what's wrong with this message" msgstr "" @@ -3152,6 +3222,10 @@ msgstr "" msgid "You've sent too many friend requests, the maximum is {0}" msgstr "" +#: components/app/interface/settings/InstallInstructions.tsx +msgid "You've successfully installed Stoat!" +msgstr "" + #: components/app/interface/settings/user/Account.tsx msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support." msgstr "" diff --git a/packages/client/components/state/index.tsx b/packages/client/components/state/index.tsx index bfdbb55db..03e5340a2 100644 --- a/packages/client/components/state/index.tsx +++ b/packages/client/components/state/index.tsx @@ -1,6 +1,8 @@ import { + Accessor, JSX, Show, + Signal, createContext, createSignal, onMount, @@ -11,6 +13,7 @@ import { SetStoreFunction, createStore } from "solid-js/store"; import equal from "fast-deep-equal"; import localforage from "localforage"; +import { isMobileBrowser } from "@livekit/components-core"; import { AbstractStore, Store } from "./stores"; import { Auth } from "./stores/Auth"; import { Draft } from "./stores/Draft"; @@ -47,6 +50,11 @@ export class State { private setStore: SetStoreFunction; private writeQueue: Record; + isMobile: boolean; + isPWA: boolean = false; + pwaPrompt = createSignal<(BeforeInstallPromptEvent)>(); + pwaInstalled = createSignal(false); + // define all stores auth = new Auth(this); draft = new Draft(this); @@ -99,6 +107,7 @@ export class State { this.store = store as never; this.setStore = setStore; this.writeQueue = {}; + this.isMobile = isMobileBrowser(); } /** diff --git a/packages/client/dev-dist/registerSW.js b/packages/client/dev-dist/registerSW.js new file mode 100644 index 000000000..1d5625f45 --- /dev/null +++ b/packages/client/dev-dist/registerSW.js @@ -0,0 +1 @@ +if('serviceWorker' in navigator) navigator.serviceWorker.register('/dev-sw.js?dev-sw', { scope: '/', type: 'classic' }) \ No newline at end of file diff --git a/packages/client/src/index.tsx b/packages/client/src/index.tsx index 23a11e744..75a11e96f 100644 --- a/packages/client/src/index.tsx +++ b/packages/client/src/index.tsx @@ -3,7 +3,7 @@ */ import "./sentry"; -import { JSX, onMount } from "solid-js"; +import { createSignal, JSX, onMount, Setter } from "solid-js"; import { render } from "solid-js/web"; import { attachDevtoolsOverlay } from "@solid-devtools/overlay"; @@ -108,8 +108,33 @@ function BotRedirect() { return ; } +function isRunningAsPWA() { + // Apparently used on iOS/iPadOS + if ((window.navigator as any)['standalone']) { + return true; + } + + // Most reliable way of detecting if we're running in a PWA + const standalone = window.matchMedia('(display-mode: standalone)').matches; + + return standalone; +} + +let setPWAPrompt: Setter; +let pwaPrompt: BeforeInstallPromptEvent | undefined; +addEventListener("beforeinstallprompt", (e: BeforeInstallPromptEvent) => (pwaPrompt = e, setPWAPrompt?.(e))); + +let setPWAInstalled: Setter; +let pwaInstalled = false; +addEventListener("appinstalled", () => (pwaInstalled = true, setPWAInstalled?.(true))); + function MountContext(props: { children?: JSX.Element }) { const state = useState(); + state.isPWA = isRunningAsPWA(); + [, setPWAPrompt] = state.pwaPrompt; + setPWAPrompt(pwaPrompt); + [, setPWAInstalled] = state.pwaInstalled; + setPWAInstalled(pwaInstalled); /** * Tanstack Query client diff --git a/packages/client/src/pwa.d.ts b/packages/client/src/pwa.d.ts new file mode 100644 index 000000000..a6c8e23aa --- /dev/null +++ b/packages/client/src/pwa.d.ts @@ -0,0 +1,9 @@ +interface BeforeInstallPromptEvent extends Event { + readonly platforms: Array; + readonly userChoice: Promise<{ outcome: 'accepted' | 'dismissed'; platform: string }>; + prompt(): Promise; +} + +interface WindowEventMap { + 'beforeinstallprompt': BeforeInstallPromptEvent; +} \ No newline at end of file diff --git a/packages/client/src/serviceWorkerInterface.ts b/packages/client/src/serviceWorkerInterface.ts index 430a44d91..bbd09cba3 100644 --- a/packages/client/src/serviceWorkerInterface.ts +++ b/packages/client/src/serviceWorkerInterface.ts @@ -15,11 +15,25 @@ if (import.meta.env.PROD) { console.info("Ready to work offline =)"); // toast to users }, - onRegistered(r) { - // registration = r; + onRegisteredSW(swUrl, r) { + r && setInterval(async () => { + if (r.installing || !navigator) + return - // Check for updates every hour - setInterval(() => r!.update(), 36e5); + if (('connection' in navigator) && !navigator.onLine) + return + + const resp = await fetch(swUrl, { + cache: 'no-store', + headers: { + 'cache': 'no-store', + 'cache-control': 'no-cache', + }, + }) + + if (resp?.status === 200) + await r.update() + }, 36e5) }, }); }
+ Installing Stoat only takes a few taps. We'll guide you through it. +
+ Looks like you declined the installation... You can refresh the page if you'd like to try again, or try the manual instructions below. +
+ location.reload()} + > + + +