From e9d898f99bf248c35ee0ea8ca3f91343a120abcf Mon Sep 17 00:00:00 2001 From: Yocraft-2000 <304616174+Yocraft-2000@users.noreply.github.com> Date: Sat, 18 Jul 2026 12:27:36 +0200 Subject: [PATCH] fix: cleaner translation --- web-launcher/launcher.luau | 2 +- web-launcher/plugin.toml | 2 +- web-launcher/translations/en.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web-launcher/launcher.luau b/web-launcher/launcher.luau index 40fcf73..d3da581 100644 --- a/web-launcher/launcher.luau +++ b/web-launcher/launcher.luau @@ -117,7 +117,7 @@ function onActivate(id) if noctalia.getConfig("notify") then noctalia.notify( noctalia.tr("notify.title"), - noctalia.tr("notify.message") .. " " .. id + noctalia.tr("notify.message", { name = id }) ) end end diff --git a/web-launcher/plugin.toml b/web-launcher/plugin.toml index bb4ad2e..706ab8d 100644 --- a/web-launcher/plugin.toml +++ b/web-launcher/plugin.toml @@ -1,6 +1,6 @@ id = "yocraft/web-launcher" name = "Web Launcher" -version = "1.2.3" +version = "1.2.5" plugin_api = 3 author = "yocraft" license = "MIT" diff --git a/web-launcher/translations/en.json b/web-launcher/translations/en.json index 109c415..c3ce951 100644 --- a/web-launcher/translations/en.json +++ b/web-launcher/translations/en.json @@ -18,6 +18,6 @@ }, "notify": { "title": "Websites", - "message": "Opening" + "message": "Opening {name}" } }