AI-Studio/app/MindWork AI Studio/Plugins/languages/en-us-97dfb1ba-50c4-4440-8dfa-6575daf543c8/plugin.lua

50 lines
1.1 KiB
Lua
Raw Normal View History

2025-03-22 20:12:14 +00:00
require("contentHome")
2025-03-29 17:40:17 +00:00
require("icon")
2025-03-22 20:12:14 +00:00
-- The ID for this plugin:
ID = "97dfb1ba-50c4-4440-8dfa-6575daf543c8"
2025-03-29 17:40:17 +00:00
-- The icon for the plugin:
ICON_SVG = SVG
2025-03-22 20:12:14 +00:00
-- 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:
2025-03-29 17:40:17 +00:00
DEPRECATION_MESSAGE = ""
2025-03-22 20:12:14 +00:00
-- 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 = "en-US"
2025-03-22 20:12:14 +00:00
UI_TEXT_CONTENT = {
HOME = CONTENT_HOME,
2025-03-29 17:40:17 +00:00
}