Skip to content

Commit

Permalink
Add "summary" to the guild commands configuration page
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPowerGamerBR committed Nov 15, 2024
1 parent 2403032 commit 41a768e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,23 @@ class GuildCommandsView(
it.category
}

h3 {
text(i18nContext.get(I18nKeysData.Website.Dashboard.Commands.SummaryTitle))
}

ul {
for ((category, _) in groupedByCategories) {
li {
a(href = "#${category.name}") {
text(i18nContext.get(category.localizedName))
}
}
}
}

for ((category, commands) in groupedByCategories) {
div {
id = category.name
val color = getCategoryColor(category)
style =
"--loritta-blue: ${
Expand Down
3 changes: 2 additions & 1 deletion resources/languages/pt/dashboard-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ website:
- "Controle quais comandos da Loritta estão disponíveis no seu servidor!"
- "Comandos desativados que estão disponíveis pela {pocketLoritta} ainda poderão ser usados no seu servidor caso o usuário tenha ela instalada na conta, mas as respostas aparecerão de forma efêmera se ele não possuir a permissão de {useExternalApplications} no canal."
- "Se você quiser desativar outro comando que não está na lista, veja se ele está na {legacyCommandList}."
legacyCommands: "Lista de Comandos (Legado)"
legacyCommands: "Lista de Comandos (Legado)"
summaryTitle: "Sem tempo? Pule diretamente para uma categoria!"

0 comments on commit 41a768e

Please sign in to comment.