Updating country name in magento 2Magento 2.2.4 Change Country NamesCountry Name Correction - Magento 2.0.1Magento 2: Cacheable false for specific block not workingHow to get Country ID from Country Name in Magento1.9.2.4?How to Get country name from country code in Magento 2?Where magento2.x stores country full name list for default store?Magento 2 import products with imagesMagento 2 - Move Product Details Tab AccordionMagento 2.2.4 Change Country NamesCannot change customer's countryMagento 2 - Get country name from country code
SOQL query causes internal Salesforce error
Alignment of six matrices
Giving feedback to someone without sounding prejudiced
Can I say "fingers" when referring to toes?
How to preserve electronics (computers, iPads and phones) for hundreds of years
Can you identify this lizard-like creature I observed in the UK?
Personal or impersonal in a technical resume
Air travel with refrigerated insulin
Are Captain Marvel's powers affected by Thanos breaking the Tesseract and claiming the stone?
In One Punch Man, is King actually weak?
Sound waves in different octaves
Grepping string, but include all non-blank lines following each grep match
Should I warn a new PhD Student?
"Oh no!" in Latin
How much do grades matter for a future academia position?
How do I fix the group tension caused by my character stealing and possibly killing without provocation?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Mimic lecturing on blackboard, facing audience
Language involving irrational number is not a CFL
Why would five hundred and five be same as one?
Isometric embedding of a genus g surface
Sigmoid with a slope but no asymptotes?
How were servants to the Kaiser of Imperial Germany treated and where may I find more information on them
Identifying "long and narrow" polygons in with PostGIS
Updating country name in magento 2
Magento 2.2.4 Change Country NamesCountry Name Correction - Magento 2.0.1Magento 2: Cacheable false for specific block not workingHow to get Country ID from Country Name in Magento1.9.2.4?How to Get country name from country code in Magento 2?Where magento2.x stores country full name list for default store?Magento 2 import products with imagesMagento 2 - Move Product Details Tab AccordionMagento 2.2.4 Change Country NamesCannot change customer's countryMagento 2 - Get country name from country code
I need to change the name of country in magento store e.g. United Kingdom
needs to be changed to Great Britain
. How can I achieve this?
I tried looking at the following tables directory_country_region
, directory_country_region_name
, directory_country
but country full names are not stored here.
I also tried using locale files to see if it updates, but no luck there as well.
Is there any way I can achieve this?
magento2 country-regions directory
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I need to change the name of country in magento store e.g. United Kingdom
needs to be changed to Great Britain
. How can I achieve this?
I tried looking at the following tables directory_country_region
, directory_country_region_name
, directory_country
but country full names are not stored here.
I also tried using locale files to see if it updates, but no luck there as well.
Is there any way I can achieve this?
magento2 country-regions directory
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33
add a comment |
I need to change the name of country in magento store e.g. United Kingdom
needs to be changed to Great Britain
. How can I achieve this?
I tried looking at the following tables directory_country_region
, directory_country_region_name
, directory_country
but country full names are not stored here.
I also tried using locale files to see if it updates, but no luck there as well.
Is there any way I can achieve this?
magento2 country-regions directory
I need to change the name of country in magento store e.g. United Kingdom
needs to be changed to Great Britain
. How can I achieve this?
I tried looking at the following tables directory_country_region
, directory_country_region_name
, directory_country
but country full names are not stored here.
I also tried using locale files to see if it updates, but no luck there as well.
Is there any way I can achieve this?
magento2 country-regions directory
magento2 country-regions directory
edited Apr 25 '18 at 11:43
Prateek
asked Apr 25 '18 at 8:45
PrateekPrateek
3517
3517
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33
add a comment |
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33
add a comment |
2 Answers
2
active
oldest
votes
The easiest way for changing the label is by translation.
You need to just make i18N folder in your app/code/namespace/modulename/i18n and just create one CSV file en_US.csv and give translation script over there.
See Example : en_US.csv
"United Kingdom","Great Britain"
No need to do anything for the small change.
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
add a comment |
I don't know where exactly you'd want to change the country name, but the country names in Magento come from the Zend framework.
In Zend they are stored in locale file, for example in
/vendor/magento/zendframework1/library/Zend/Locale/Data/en_GB.xml
<territories>
<territory type="GB">United Kingdom</territory>
<territory type="GB" alt="short">UK</territory>
<territory type="GS">South Georgia and the South Sandwich Islands</territory>
<territory type="HM">Heard Island and McDonald Islands</territory>
<territory type="UM">U.S. Minor Outlying Islands</territory>
<territory type="US">United States</territory>
<territory type="US" alt="short">US</territory>
<territory type="VC">Saint Vincent and the Grenadines</territory>
</territories>
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. deletevar/cache
or clear Redis as it's not stored in one of the usual caches.
– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f223609%2fupdating-country-name-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The easiest way for changing the label is by translation.
You need to just make i18N folder in your app/code/namespace/modulename/i18n and just create one CSV file en_US.csv and give translation script over there.
See Example : en_US.csv
"United Kingdom","Great Britain"
No need to do anything for the small change.
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
add a comment |
The easiest way for changing the label is by translation.
You need to just make i18N folder in your app/code/namespace/modulename/i18n and just create one CSV file en_US.csv and give translation script over there.
See Example : en_US.csv
"United Kingdom","Great Britain"
No need to do anything for the small change.
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
add a comment |
The easiest way for changing the label is by translation.
You need to just make i18N folder in your app/code/namespace/modulename/i18n and just create one CSV file en_US.csv and give translation script over there.
See Example : en_US.csv
"United Kingdom","Great Britain"
No need to do anything for the small change.
The easiest way for changing the label is by translation.
You need to just make i18N folder in your app/code/namespace/modulename/i18n and just create one CSV file en_US.csv and give translation script over there.
See Example : en_US.csv
"United Kingdom","Great Britain"
No need to do anything for the small change.
answered Apr 25 '18 at 17:15
Manish GoswamiManish Goswami
538315
538315
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
add a comment |
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
That did not work, I guess because country is fetched from product attributes and translation is not applied there. But I also need the product searched by country name so just changing the locale won't cut it. I need to change the country name from source.
– Prateek
Apr 27 '18 at 3:05
add a comment |
I don't know where exactly you'd want to change the country name, but the country names in Magento come from the Zend framework.
In Zend they are stored in locale file, for example in
/vendor/magento/zendframework1/library/Zend/Locale/Data/en_GB.xml
<territories>
<territory type="GB">United Kingdom</territory>
<territory type="GB" alt="short">UK</territory>
<territory type="GS">South Georgia and the South Sandwich Islands</territory>
<territory type="HM">Heard Island and McDonald Islands</territory>
<territory type="UM">U.S. Minor Outlying Islands</territory>
<territory type="US">United States</territory>
<territory type="US" alt="short">US</territory>
<territory type="VC">Saint Vincent and the Grenadines</territory>
</territories>
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. deletevar/cache
or clear Redis as it's not stored in one of the usual caches.
– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
add a comment |
I don't know where exactly you'd want to change the country name, but the country names in Magento come from the Zend framework.
In Zend they are stored in locale file, for example in
/vendor/magento/zendframework1/library/Zend/Locale/Data/en_GB.xml
<territories>
<territory type="GB">United Kingdom</territory>
<territory type="GB" alt="short">UK</territory>
<territory type="GS">South Georgia and the South Sandwich Islands</territory>
<territory type="HM">Heard Island and McDonald Islands</territory>
<territory type="UM">U.S. Minor Outlying Islands</territory>
<territory type="US">United States</territory>
<territory type="US" alt="short">US</territory>
<territory type="VC">Saint Vincent and the Grenadines</territory>
</territories>
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. deletevar/cache
or clear Redis as it's not stored in one of the usual caches.
– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
add a comment |
I don't know where exactly you'd want to change the country name, but the country names in Magento come from the Zend framework.
In Zend they are stored in locale file, for example in
/vendor/magento/zendframework1/library/Zend/Locale/Data/en_GB.xml
<territories>
<territory type="GB">United Kingdom</territory>
<territory type="GB" alt="short">UK</territory>
<territory type="GS">South Georgia and the South Sandwich Islands</territory>
<territory type="HM">Heard Island and McDonald Islands</territory>
<territory type="UM">U.S. Minor Outlying Islands</territory>
<territory type="US">United States</territory>
<territory type="US" alt="short">US</territory>
<territory type="VC">Saint Vincent and the Grenadines</territory>
</territories>
I don't know where exactly you'd want to change the country name, but the country names in Magento come from the Zend framework.
In Zend they are stored in locale file, for example in
/vendor/magento/zendframework1/library/Zend/Locale/Data/en_GB.xml
<territories>
<territory type="GB">United Kingdom</territory>
<territory type="GB" alt="short">UK</territory>
<territory type="GS">South Georgia and the South Sandwich Islands</territory>
<territory type="HM">Heard Island and McDonald Islands</territory>
<territory type="UM">U.S. Minor Outlying Islands</territory>
<territory type="US">United States</territory>
<territory type="US" alt="short">US</territory>
<territory type="VC">Saint Vincent and the Grenadines</territory>
</territories>
edited Apr 25 '18 at 17:25
Abhishek Panchal
3,5973929
3,5973929
answered Apr 25 '18 at 8:56
NielsNiels
1,173922
1,173922
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. deletevar/cache
or clear Redis as it's not stored in one of the usual caches.
– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
add a comment |
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. deletevar/cache
or clear Redis as it's not stored in one of the usual caches.
– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
Although it is not recommended to change files in the vendor folder, I still tried it, in en.xml and en_GB.xml, cleared my cache, but that did not work either. I'm still getting United Kingdom.
– Prateek
Apr 25 '18 at 9:14
1
1
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. delete
var/cache
or clear Redis as it's not stored in one of the usual caches.– Andreas von Studnitz
Apr 25 '18 at 13:13
@Prateek which locale are you using? Maybe you have to edit the en_US.xml. Don't forget to clear all the cache, i.e. delete
var/cache
or clear Redis as it's not stored in one of the usual caches.– Andreas von Studnitz
Apr 25 '18 at 13:13
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
@AndreasvonStudnitz I have en_GB as my locale, I did clear var/cache too but no use
– Prateek
Apr 27 '18 at 3:01
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f223609%2fupdating-country-name-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I have added the answer !
– Manish Goswami
Apr 25 '18 at 17:16
@prateek did you solve this issue, if yes please update the answer
– Rajeev Singh
Jan 21 at 15:33