3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-05 19:49:32 +01:00

Plugin/Wordle: add missing Italian words and vowel; fix German translation

This commit is contained in:
Pragmatic Software 2024-09-22 17:05:46 -07:00
parent 635f2c5a00
commit fcaa2d3044
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
3 changed files with 2298 additions and 4 deletions

File diff suppressed because it is too large Load Diff

View File

@ -88,7 +88,7 @@ my %wordlists = (
},
german => {
name => 'German',
prompt => 'Erraten Sie das Deutsches Wort!',
prompt => 'Errate das deutsche Wort!',
wlist => '/wordle/german',
accents => 'äöüß',
},
@ -96,7 +96,7 @@ my %wordlists = (
name => 'Italian',
prompt => 'Indovina la parola italiana!',
wlist => '/wordle/italian',
accents => 'èéìòù',
accents => 'àèéìòù',
},
polish => {
name => 'Polish',

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4788,
BUILD_DATE => "2024-09-19",
BUILD_REVISION => 4789,
BUILD_DATE => "2024-09-22",
};
sub initialize {}