diff --git a/portctl/panel.luau b/portctl/panel.luau index 3aad2ab..2087f77 100644 --- a/portctl/panel.luau +++ b/portctl/panel.luau @@ -277,7 +277,7 @@ local function catSection(catName, ports) fill = "surface_container/0.4", }, { ui.glyph({ name = meta.icon, size = 12, color = meta.color }), - ui.label({ text = noctalia.tr("categories." .. catName), fontSize = 11, fontWeight = "bold", color = meta.color }), + ui.label({ text = noctalia.tr("categories." .. catName:lower()), fontSize = 11, fontWeight = "bold", color = meta.color }), ui.label({ text = tostring(#ports), fontSize = 10, color = meta.color .. "/0.6" }), })) diff --git a/portctl/plugin.toml b/portctl/plugin.toml index abaa635..a89e4bf 100644 --- a/portctl/plugin.toml +++ b/portctl/plugin.toml @@ -2,7 +2,7 @@ id = "rxtsel/portctl" name = "Portctl" -version = "0.2.0" +version = "0.2.1" plugin_api = 3 author = "Cristhian Melo" license = "MIT" diff --git a/portctl/translations/en.json b/portctl/translations/en.json index 9c3084f..516ac41 100644 --- a/portctl/translations/en.json +++ b/portctl/translations/en.json @@ -13,12 +13,12 @@ "pid_copied": "Copied PID {pid}" }, "categories": { - "Development": "Development", - "Databases": "Databases", - "Containers": "Containers", - "Servers": "Servers", - "Cloud": "Cloud", - "Other": "Other" + "development": "Development", + "databases": "Databases", + "containers": "Containers", + "servers": "Servers", + "cloud": "Cloud", + "other": "Other" }, "service": { "terminated": "Process {pid} terminated",