diff --git a/views/commands.ejs b/views/commands.ejs index 5104e67d..f10f7204 100644 --- a/views/commands.ejs +++ b/views/commands.ejs @@ -60,8 +60,8 @@
-

<%= category.category %>

- <%= category.subTitle %> +

<%= req.locales?.commands?.categories?.[category.categoryId]?.category || category.category %>

+ <%= req.locales?.commands?.categories?.[category.categoryId]?.subTitle || category.subTitle %>
@@ -98,21 +98,21 @@ <% } %>
-
<%= item.commandName %>
+
<%= req.locales?.commands?.categories?.[category.categoryId]?.commands?.[item.commandName]?.commandName || item.commandName %>
-

<%= item.commandUsage %>

+

<%= req.locales?.commands?.categories?.[category.categoryId]?.commands?.[item.commandName]?.commandUsage || item.commandUsage %>

<% if(!category.hideDescription) { %> -

<%= item.commandDescription %>

+

<%= req.locales?.commands?.categories?.[category.categoryId]?.commands?.[item.commandName]?.commandDescription || item.commandDescription %>

<% } %> <% if(!category.hideAlias) { %> - <%= item.commandAlias %> + <%= req.locales?.commands?.categories?.[category.categoryId]?.commands?.[item.commandName]?.commandAlias || item.commandAlias %> <% } %>