.translangs title is now a response string

This commit is contained in:
Kwoth
2023-01-20 06:51:29 +01:00
parent e52bf798cf
commit 992aa781fa
2 changed files with 3 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ public partial class Searches
var langs = _service.GetLanguages().ToList();
var eb = _eb.Create()
.WithTitle($"Supported {prefix}translate Languages")
.WithTitle(GetText(strs.supported_languages))
.WithOkColor();
foreach (var chunk in langs.Chunk(15))

View File

@@ -1056,5 +1056,6 @@
"sticker_error": "You must either send a sticker along with this command, or upload a 300x300 .png or .apng image.",
"sticker_missing_name": "Please specify a name for the sticker.",
"thread_deleted": "Thread Deleted",
"thread_created": "Thread Created"
"thread_created": "Thread Created",
"supported_languages": "Supported Languages"
}