This commit is contained in:
Thorsten Sommer 2025-03-20 16:20:11 +01:00
parent cc26926ab4
commit 8a4031ed76
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
3 changed files with 8 additions and 3 deletions

View File

@ -28,6 +28,6 @@ CATEGORIES = { "CORE" }
-- The target groups for the plugin: -- The target groups for the plugin:
TARGET_GROUPS = { "EVERYONE" } TARGET_GROUPS = { "EVERYONE" }
TEXT = { CONTENT = {
Home_LetsGetStarted = "Lass uns anfangen", Home_LetsGetStarted = "Lass uns anfangen",
} }

View File

@ -0,0 +1,3 @@
CONTENT_HOME = {
LetsGetStarted = "Let's get started",
}

View File

@ -1,3 +1,5 @@
require("contentHome")
-- The ID for this plugin: -- The ID for this plugin:
ID = "97dfb1ba-50c4-4440-8dfa-6575daf543c8" ID = "97dfb1ba-50c4-4440-8dfa-6575daf543c8"
@ -28,6 +30,6 @@ CATEGORIES = { "CORE" }
-- The target groups for the plugin: -- The target groups for the plugin:
TARGET_GROUPS = { "EVERYONE" } TARGET_GROUPS = { "EVERYONE" }
TEXT = { CONTENT = {
Home_LetsGetStarted = "Let's get started", HOME = CONTENT_HOME,
} }