- Fixed counting parameters which have formats in response strings

- Almost finished porting localized string keys as methods
- Compiles
This commit is contained in:
Kwoth
2021-09-06 21:34:53 +02:00
parent 0115d35247
commit 4484732f5d
29 changed files with 94 additions and 95 deletions
+1 -1
View File
@@ -380,6 +380,6 @@ namespace NadekoBot.Extensions
public static string GetText(this IBotStrings strings, in LocStr str, ulong? guildId = null)
=> strings.GetText(str.Key, guildId);
public static string GetText(this IBotStrings strings, in LocStr str, CultureInfo culture)
=> strings.GetText(str.Key, culture, str.Parms);
=> strings.GetText(str.Key, culture, str.Params);
}
}