From 5871c7ebaebb0d3723b7afe1c8be7be83af7bcde Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 26 Feb 2019 10:16:56 +0100 Subject: [PATCH] Add Korean language translations Add Korean language translations (#5344) --- platformio.ini | 15 +++++++++++++++ sonoff/_changelog.ino | 1 + sonoff/my_user_config.h | 1 + 3 files changed, 17 insertions(+) diff --git a/platformio.ini b/platformio.ini index f57883985..b12b3ad00 100644 --- a/platformio.ini +++ b/platformio.ini @@ -29,6 +29,7 @@ src_dir = sonoff ;env_default = sonoff-HE ;env_default = sonoff-HU ;env_default = sonoff-IT +;env_default = sonoff-KO ;env_default = sonoff-NL ;env_default = sonoff-PL ;env_default = sonoff-PT @@ -415,6 +416,20 @@ upload_resetmethod = ${common.upload_resetmethod} upload_speed = ${common.upload_speed} extra_scripts = ${common.extra_scripts} +[env:sonoff-KO] +platform = ${common.platform} +framework = ${common.framework} +board = ${common.board} +board_build.flash_mode = ${common.board_build.flash_mode} +board_build.f_cpu = ${common.board_build.f_cpu} +build_unflags = ${common.build_unflags} +build_flags = ${common.build_flags} -DMY_LANGUAGE=ko-KO +monitor_speed = ${common.monitor_speed} +upload_port = ${common.upload_port} +upload_resetmethod = ${common.upload_resetmethod} +upload_speed = ${common.upload_speed} +extra_scripts = ${common.extra_scripts} + [env:sonoff-NL] platform = ${common.platform} framework = ${common.framework} diff --git a/sonoff/_changelog.ino b/sonoff/_changelog.ino index e9cb317c9..d3b6fa238 100644 --- a/sonoff/_changelog.ino +++ b/sonoff/_changelog.ino @@ -1,5 +1,6 @@ /* 6.4.1.19 20190222 * Add command SetOption37 for RGBCW color mapping (#5326) + * Add Korean language translations (#5344) * * 6.4.1.18 20190221 * Fix some exceptions and watchdogs due to lack of stack space - part 1 (#5215) diff --git a/sonoff/my_user_config.h b/sonoff/my_user_config.h index c4ac51eff..e8d900ebe 100644 --- a/sonoff/my_user_config.h +++ b/sonoff/my_user_config.h @@ -209,6 +209,7 @@ //#define MY_LANGUAGE he-HE // Hebrew in Israel //#define MY_LANGUAGE hu-HU // Hungarian in Hungary //#define MY_LANGUAGE it-IT // Italian in Italy +//#define MY_LANGUAGE ko-KO // Korean in Korea //#define MY_LANGUAGE nl-NL // Dutch in the Netherlands //#define MY_LANGUAGE pl-PL // Polish in Poland //#define MY_LANGUAGE pt-BR // Portuguese in Brazil