Adds user script categories description

Implements #3311
This commit is contained in:
Simone Mainardi 2020-01-24 12:18:34 +01:00
parent 053dc55d69
commit b1b57dd64a
3 changed files with 25 additions and 1 deletions

View file

@ -75,24 +75,29 @@ local available_subdirs = {
-- User scripts category consts
user_scripts.script_categories = {
other = {
icon = "",
icon = "fas fa-scroll",
i18n_title = "user_scripts.category_other",
i18n_descr = "user_scripts.category_other_descr",
},
security = {
icon = "fas fa-shield-alt",
i18n_title = "user_scripts.category_security",
i18n_descr = "user_scripts.category_security_descr",
},
internals = {
icon = "fas fa-wrench",
i18n_title = "user_scripts.category_internals",
i18n_descr = "user_scripts.category_internals_descr",
},
network = {
icon = "fas fa-network-wired",
i18n_title = "user_scripts.category_network",
i18n_descr = "user_scripts.category_network_descr",
},
system = {
icon = "fas fa-server",
i18n_title = "user_scripts.category_system",
i18n_descr = "user_scripts.category_system_descr",
}
}