Skip to content

Commit

Permalink
feature: added locale_it_IT.inc for Italian language (#109)
Browse files Browse the repository at this point in the history
* feature: added locale_it_IT.inc for Italian language

* italia locale: added accent marks to weekdays. other small inconsistencies between locales

* update locale list order

---------

Co-authored-by: Luke Marzen <98473324+lmarzen@users.noreply.github.com>
  • Loading branch information
Supergiovane and lmarzen authored Jun 29, 2024
1 parent c6cf806 commit 9d9cdf3
Show file tree
Hide file tree
Showing 5 changed files with 453 additions and 6 deletions.
1 change: 1 addition & 0 deletions platformio/include/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
// Estonian (Estonia) et_EE
// Finnish (Finland) fi_FI
// French (France) fr_FR
// Italiano (Italia) it_IT
// Dutch (Belgium) nl_BE
// Portuguese (Brazil) pt_BR
#define LOCALE en_US
Expand Down
4 changes: 2 additions & 2 deletions platformio/src/locales/locale_en_GB.inc
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ const char *TXT_WIFI_NO_CONNECTION = "No Connection";

// UNIT SYMBOLS - TEMPERATURE
const char *TXT_UNITS_TEMP_KELVIN = "K";
const char *TXT_UNITS_TEMP_CELSIUS = "\xB0""C";
const char *TXT_UNITS_TEMP_FAHRENHEIT = "\xB0""F";
const char *TXT_UNITS_TEMP_CELSIUS = "\260C";
const char *TXT_UNITS_TEMP_FAHRENHEIT = "\260F";
// UNIT SYMBOLS - WIND SPEED
const char *TXT_UNITS_SPEED_METERSPERSECOND = "m/s";
const char *TXT_UNITS_SPEED_FEETPERSECOND = "ft/s";
Expand Down
4 changes: 2 additions & 2 deletions platformio/src/locales/locale_fr_FR.inc
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ const char *TXT_WIFI_NO_CONNECTION = "Pas de Connection";

// UNIT SYMBOLS - TEMPERATURE
const char *TXT_UNITS_TEMP_KELVIN = "K";
const char *TXT_UNITS_TEMP_CELSIUS = "\260" "C";
const char *TXT_UNITS_TEMP_FAHRENHEIT = "\260" "F";
const char *TXT_UNITS_TEMP_CELSIUS = "\260C";
const char *TXT_UNITS_TEMP_FAHRENHEIT = "\260F";
// UNIT SYMBOLS - WIND SPEED
const char *TXT_UNITS_SPEED_METERSPERSECOND = "m/s";
const char *TXT_UNITS_SPEED_FEETPERSECOND = "ft/s";
Expand Down
Loading

0 comments on commit 9d9cdf3

Please sign in to comment.