mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Inrole string fix
This commit is contained in:
@@ -122,9 +122,9 @@ namespace NadekoBot.Modules.Utility
|
||||
|
||||
if (pageUsers.Count == 0)
|
||||
return _eb.Create().WithOkColor().WithDescription(GetText(strs.no_user_on_this_page));
|
||||
|
||||
|
||||
return _eb.Create().WithOkColor()
|
||||
.WithTitle(GetText(strs.inrole_list(Format.Bold(role?.Name ?? "No Role") + $" - {roleUsers.Length}")))
|
||||
.WithTitle(GetText(strs.inrole_list(Format.Bold(role?.Name ?? "No Role"), roleUsers.Length)))
|
||||
.WithDescription(string.Join("\n", pageUsers));
|
||||
}, roleUsers.Length, 20).ConfigureAwait(false);
|
||||
}
|
||||
|
@@ -556,7 +556,7 @@
|
||||
"error": "Error",
|
||||
"features": "Features",
|
||||
"index_out_of_range": "Index out of range.",
|
||||
"inrole_list": "List of users in {0} role",
|
||||
"inrole_list": "List of users in {0} role ({1})",
|
||||
"joined_discord": "Joined Discord",
|
||||
"joined_server": "Joined server",
|
||||
"listservers": "ID: {0}\nMembers: {1}\nOwner ID: {2}",
|
||||
|
Reference in New Issue
Block a user