locale: add link to authentication page in i18n

This commit is contained in:
Levi Borodenko 2023-08-01 16:17:26 +02:00
parent 6137d551fe
commit d975daf3f0
No known key found for this signature in database
GPG Key ID: D5362139196D89DA
10 changed files with 12 additions and 10 deletions

View File

@ -5,7 +5,7 @@ const cs: PartialLocaleType = {
WIP: "V přípravě...", WIP: "V přípravě...",
Error: { Error: {
Unauthorized: Unauthorized:
"Neoprávněný přístup, zadejte přístupový kód na stránce nastavení.", "Neoprávněný přístup, zadejte přístupový kód na [stránce](/#/auth) nastavení.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} zpráv`, ChatItemCount: (count: number) => `${count} zpráv`,

View File

@ -5,7 +5,7 @@ const de: PartialLocaleType = {
WIP: "In Bearbeitung...", WIP: "In Bearbeitung...",
Error: { Error: {
Unauthorized: Unauthorized:
"Unbefugter Zugriff, bitte geben Sie den Zugangscode auf der Einstellungsseite ein.", "Unbefugter Zugriff, bitte geben Sie den Zugangscode auf der [Einstellungsseite](/#/auth) ein.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} Nachrichten`, ChatItemCount: (count: number) => `${count} Nachrichten`,

View File

@ -5,7 +5,7 @@ const es: PartialLocaleType = {
WIP: "En construcción...", WIP: "En construcción...",
Error: { Error: {
Unauthorized: Unauthorized:
"Acceso no autorizado, por favor ingrese el código de acceso en la página de configuración.", "Acceso no autorizado, por favor ingrese el código de acceso en la [página](/#/auth) de configuración.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} mensajes`, ChatItemCount: (count: number) => `${count} mensajes`,

View File

@ -5,7 +5,7 @@ const fr: PartialLocaleType = {
WIP: "Prochainement...", WIP: "Prochainement...",
Error: { Error: {
Unauthorized: Unauthorized:
"Accès non autorisé, veuillez saisir le code d'accès dans la page des paramètres.", "Accès non autorisé, veuillez saisir le code d'accès dans la [page](/#/auth) des paramètres.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} messages en total`, ChatItemCount: (count: number) => `${count} messages en total`,

View File

@ -5,7 +5,7 @@ const it: PartialLocaleType = {
WIP: "Work in progress...", WIP: "Work in progress...",
Error: { Error: {
Unauthorized: Unauthorized:
"Accesso non autorizzato, inserire il codice di accesso nella pagina delle impostazioni.", "Accesso non autorizzato, inserire il codice di accesso nella [pagina](/#/auth) delle impostazioni.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} messaggi`, ChatItemCount: (count: number) => `${count} messaggi`,

View File

@ -5,7 +5,8 @@ import type { PartialLocaleType } from "./index";
const ko: PartialLocaleType = { const ko: PartialLocaleType = {
WIP: "곧 출시 예정...", WIP: "곧 출시 예정...",
Error: { Error: {
Unauthorized: "권한이 없습니다. 설정 페이지에서 액세스 코드를 입력하세요.", Unauthorized:
"권한이 없습니다. 설정 페이지에서 액세스 코드를 [입력하세요](/#/auth).",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count}개의 메시지`, ChatItemCount: (count: number) => `${count}개의 메시지`,

View File

@ -4,7 +4,8 @@ import type { PartialLocaleType } from "./index";
const no: PartialLocaleType = { const no: PartialLocaleType = {
WIP: "Arbeid pågår ...", WIP: "Arbeid pågår ...",
Error: { Error: {
Unauthorized: "Du har ikke tilgang. Vennlig oppgi tildelt adgangskode.", Unauthorized:
"Du har ikke tilgang. [Vennlig oppgi tildelt adgangskode](/#/auth).",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} meldinger`, ChatItemCount: (count: number) => `${count} meldinger`,

View File

@ -5,7 +5,7 @@ const ru: PartialLocaleType = {
WIP: "Скоро...", WIP: "Скоро...",
Error: { Error: {
Unauthorized: Unauthorized:
"Несанкционированный доступ. Пожалуйста, введите код доступа на странице настроек.", "Несанкционированный доступ. Пожалуйста, введите код доступа на [странице](/#/auth) настроек.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} сообщений`, ChatItemCount: (count: number) => `${count} сообщений`,

View File

@ -5,7 +5,7 @@ const tr: PartialLocaleType = {
WIP: "Çalışma devam ediyor...", WIP: "Çalışma devam ediyor...",
Error: { Error: {
Unauthorized: Unauthorized:
"Yetkisiz erişim, lütfen erişim kodunu ayarlar sayfasından giriniz.", "Yetkisiz erişim, lütfen erişim kodunu ayarlar [sayfasından](/#/auth) giriniz.",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} mesaj`, ChatItemCount: (count: number) => `${count} mesaj`,

View File

@ -4,7 +4,7 @@ import type { PartialLocaleType } from "./index";
const tw: PartialLocaleType = { const tw: PartialLocaleType = {
WIP: "該功能仍在開發中……", WIP: "該功能仍在開發中……",
Error: { Error: {
Unauthorized: "目前您的狀態是未授權,請前往設定頁面輸入授權碼。", Unauthorized: "目前您的狀態是未授權,請前往[設定頁面](/#/auth)輸入授權碼。",
}, },
ChatItem: { ChatItem: {
ChatItemCount: (count: number) => `${count} 條對話`, ChatItemCount: (count: number) => `${count} 條對話`,