mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 16:19:46 +00:00
Some checks failed
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, deb) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
64 lines
1.4 KiB
Lua
64 lines
1.4 KiB
Lua
require("contentHome")
|
|
require("icon")
|
|
|
|
-- The ID for this plugin:
|
|
ID = "43065dbc-78d0-45b7-92be-f14c2926e2dc"
|
|
|
|
-- The icon for the plugin:
|
|
ICON_SVG = SVG
|
|
|
|
-- The name of the plugin:
|
|
NAME = "MindWork AI Studio - German / Deutsch"
|
|
|
|
-- The description of the plugin:
|
|
DESCRIPTION = "Dieses Plugin bietet deutsche Sprachunterstützung für MindWork AI Studio."
|
|
|
|
-- The version of the plugin:
|
|
VERSION = "1.0.0"
|
|
|
|
-- The type of the plugin:
|
|
TYPE = "LANGUAGE"
|
|
|
|
-- The authors of the plugin:
|
|
AUTHORS = {"MindWork AI Community"}
|
|
|
|
-- The support contact for the plugin:
|
|
SUPPORT_CONTACT = "MindWork AI Community"
|
|
|
|
-- The source URL for the plugin:
|
|
SOURCE_URL = "https://github.com/MindWorkAI/AI-Studio"
|
|
|
|
-- The categories for the plugin:
|
|
CATEGORIES = { "CORE" }
|
|
|
|
-- The target groups for the plugin:
|
|
TARGET_GROUPS = { "EVERYONE" }
|
|
|
|
-- The flag for whether the plugin is maintained:
|
|
IS_MAINTAINED = true
|
|
|
|
-- When the plugin is deprecated, this message will be shown to users:
|
|
DEPRECATION_MESSAGE = ""
|
|
|
|
-- The IETF BCP 47 tag for the language. It's the ISO 639 language
|
|
-- code followed by the ISO 3166-1 country code:
|
|
IETF_TAG = "de-DE"
|
|
|
|
-- The language name in the user's language:
|
|
LANG_NAME = "Deutsch (Deutschland)"
|
|
|
|
UI_TEXT_CONTENT = {
|
|
HOME = CONTENT_HOME,
|
|
AISTUDIO = {
|
|
PAGES = {
|
|
HOME = {
|
|
T2331588413 = "Lass uns anfangen",
|
|
},
|
|
|
|
CHAT = {
|
|
T3718856736 = "Vorläufiger Chat",
|
|
}
|
|
},
|
|
}
|
|
}
|