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}" } }