mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 08:59:47 +00:00
41 lines
967 B
Lua
41 lines
967 B
Lua
|
require("contentHome")
|
||
|
|
||
|
-- The ID for this plugin:
|
||
|
ID = "97dfb1ba-50c4-4440-8dfa-6575daf543c8"
|
||
|
|
||
|
-- The name of the plugin:
|
||
|
NAME = "MindWork AI Studio - US English"
|
||
|
|
||
|
-- The description of the plugin:
|
||
|
DESCRIPTION = "This plugin provides US English language support for 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 = nil
|
||
|
|
||
|
UI_TEXT_CONTENT = {
|
||
|
HOME = CONTENT_HOME,
|
||
|
}
|