From 43a88ab83c108efbdcaa95e8209f346461206d3f Mon Sep 17 00:00:00 2001 From: Abubakar115e <113997856+Abubakar115e@users.noreply.github.com> Date: Sun, 6 Oct 2024 08:54:33 +0200 Subject: [PATCH] Everythings works for Danish now --- src/i18n/lang/da.ts | 17 ++++++++++++++++ src/public/_locales/da/messages.json | 29 ++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 src/i18n/lang/da.ts create mode 100644 src/public/_locales/da/messages.json diff --git a/src/i18n/lang/da.ts b/src/i18n/lang/da.ts new file mode 100644 index 0000000..83caf80 --- /dev/null +++ b/src/i18n/lang/da.ts @@ -0,0 +1,17 @@ +import option from "@/assets/locale/da/option.json"; +import playground from "@/assets/locale/da/playground.json"; +import common from "@/assets/locale/da/common.json"; +import sidepanel from "@/assets/locale/da/sidepanel.json"; +import settings from "@/assets/locale/da/settings.json"; +import knowledge from "@/assets/locale/da/knowledge.json"; +import chrome from "@/assets/locale/da/chrome.json"; + +export const da = { + option, + playground, + common, + sidepanel, + settings, + knowledge, + chrome +} \ No newline at end of file diff --git a/src/public/_locales/da/messages.json b/src/public/_locales/da/messages.json new file mode 100644 index 0000000..b0b239d --- /dev/null +++ b/src/public/_locales/da/messages.json @@ -0,0 +1,29 @@ +{ + "extName": { + "message": "Page Assist - En Web UI for at køre AI modeller lokalt" + }, + "extDescription": { + "message": "Brug dine lokalt kørende AI-modeller til at hjælpe dig med at surfe på nettet." + }, + "openSidePanelToChat": { + "message": "Åben Copilot for at Chatte" + }, + "openOptionToChat": { + "message": "Åben Web UI for at Chatte" + }, + "contextSummarize": { + "message": "Opsummer" + }, + "contextExplain": { + "message": "Forklar" + }, + "contextRephrase": { + "message": "Omskriv" + }, + "contextTranslate" :{ + "message": "Oversæt" + }, + "contextCustom": { + "message": "Tilpasset" + } +} \ No newline at end of file