added languages in progress to the list too

This commit is contained in:
Kwoth
2017-03-01 01:48:29 +01:00
parent 172d401da7
commit b588edeeee
7 changed files with 8496 additions and 15 deletions

View File

@@ -21,8 +21,11 @@ namespace NadekoBot.Modules.Administration
{"en-US", "English, United States"},
{"fr-FR", "French, France"},
{"ru-RU", "Russian, Russia"},
{"de-DE", "German, Germany"}
//{"sr-cyrl-rs", "Serbian, Cyrillic" }
{"de-DE", "German, Germany"},
{"nl-NL", "Dutch, Netherlands"},
{"ja-JP", "Japanese, Japan"},
{"pt-BR", "Portuguese, Brazil"},
{"sr-cyrl-rs", "Serbian, Serbia - Cyrillic"}
}.ToImmutableDictionary();
[NadekoCommand, Usage, Description, Aliases]

View File

@@ -110,7 +110,7 @@ namespace NadekoBot.Modules.Gambling
{
var toWin = (int)Math.Round(amount * NadekoBot.BotConfig.BetflipMultiplier);
str = Context.User.Mention + " " + GetText("flip_guess", toWin + CurrencySign);
await CurrencyHandler.AddCurrencyAsync(Context.User, GetText("betflip_gamble"), toWin, false).ConfigureAwait(false);
await CurrencyHandler.AddCurrencyAsync(Context.User, "Betflip Gamble", toWin, false).ConfigureAwait(false);
}
else
{