SE to SV - Plural of "days" under EMS Status not working for Swedish #874

This commit is contained in:
proddy
2023-01-01 16:48:21 +01:00
parent 31a5868864
commit c3f88ae0c8
8 changed files with 80 additions and 81 deletions

View File

@@ -48,7 +48,7 @@ Adafruit_NeoPixel pixels(1, 7, NEO_GRB + NEO_KHZ800);
namespace emsesp {
// Languages supported. Note: the order is important and must match locale_translations.h
const char * const languages[] = {EMSESP_LOCALE_EN, EMSESP_LOCALE_DE, EMSESP_LOCALE_NL, EMSESP_LOCALE_SE, EMSESP_LOCALE_PL, EMSESP_LOCALE_NO, EMSESP_LOCALE_FR};
const char * const languages[] = {EMSESP_LOCALE_EN, EMSESP_LOCALE_DE, EMSESP_LOCALE_NL, EMSESP_LOCALE_SV, EMSESP_LOCALE_PL, EMSESP_LOCALE_NO, EMSESP_LOCALE_FR};
size_t num_languages = sizeof(languages) / sizeof(const char *);