In order to use the Korean Language on your Magento 2 store, it is time to start with Magento 2 Korean Language Pack in the set of informative documentations by Mageplaza. Magento 2 Korean Language Package is published by Magento 2 Translation Project at Crowdin, so all phrases will be replaced by the Korean language according to the contribution to that project. Please following up the guides in this post to convert the language with ease!
Other language packages are available at language packs page
Below are two active buttons which are required operations before installing the language package. Let’s hit them to download and contribute Magento 2 Korean Language Pack immediately!
Help the Magento Community by traslating contribute this project.
Install the Korean language pack via composer is really easier.
Install Korean pack:
composer require mageplaza/magento-2-korean-language-pack:dev-master
php bin/magento setup:static-content:deploy ko_KR
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
You may get this message:
=> Go to Access Keys page and Create A New Access Key
.
Or use these keys:
Public Key: c7af1bfc9352e9c986637eec85ed53af
Private Key: 17e1b72ea5f0b23e9dbfb1f68dc12b53
Update Korean pack:
composer update mageplaza/magento-2-korean-language-pack:dev-master
php bin/magento setup:static-content:deploy ko_KR
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
Install the Korean language pack via command line.
Download the language file to your installation root directory. Now run the following command:
wget https://github.com/mageplaza/magento-2-korean-language-pack/raw/master/ko_KR.csv
php bin/magento i18n:pack -m replace ko_KR.csv ko_KR
php bin/magento setup:static-content:deploy ko_KR
php bin/magento cache:flush
As a result, a directory langpack will be created that contains proper structure of language files for your installation. Copy it over to your Magento installation and the translations should be visible.
Note: additional directory i18n contains strings for which the module could not be found in your installation. This file can be skipped.
Now time to activate the language pack for your Magento 2 store. From Magento 2 admin panel, navigate to Stores > Configuration > General > Locale Options
Select
Korean (South Korea)
and click Save Configuration
It comes to the end of tutorial: Magento 2 Korean Language Pack.