add link to settings page

This commit is contained in:
zpxiaomi
2023-05-01 18:51:44 +02:00
parent b0cd8579f1
commit 2dc87f1c4f
6 changed files with 7 additions and 6 deletions

View File

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

View File

@@ -5,7 +5,7 @@ const en: LocaleType = {
WIP: "Coming Soon...",
Error: {
Unauthorized:
"Unauthorized access, please enter access code in settings page.",
"Unauthorized access, please enter access code in [settings page](/#/settings).",
},
ChatItem: {
ChatItemCount: (count: number) => `${count} messages`,

View File

@@ -5,7 +5,7 @@ const es: LocaleType = {
WIP: "En construcción...",
Error: {
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 de configuración](/#/settings).",
},
ChatItem: {
ChatItemCount: (count: number) => `${count} mensajes`,

View File

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

View File

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

View File

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