Magento 2.2.8 ignores my theme's dictionaryMagento 2 CSS does not applyJavascript translation not workingalways show My Account & Wish List user logged in or notMagento 2:i18n folder to custom themeTransaction has been declined. Please try again later. - Error when invoicingPayment with REST APIMagento 2 REST API placing order with Braintree Credit Card errorMagento 2.1.4 - Error in Create Credit Memo for Braintree transactionsCheckout.com Payment Gateway error “Transaction has been declined. Please try again later.”Translation file magento 2 i18n
Russian equivalents of 能骗就骗 (if you can cheat, then cheat)
Having to constantly redo everything because I don't know how to do it
Is it OK to say "The situation is pregnant with a crisis"?
What prevents a US state from colonizing a smaller state?
Cat files in subfolders in order given by a list
Why is my 401k manager recommending me to save more?
Simplify the code
What could a Medieval society do with excess animal blood?
I agreed to cancel a long-planned vacation (with travel costs) due to project deadlines, but now the timeline has all changed again
Does a lens with a bigger max. aperture focus faster than a lens with a smaller max. aperture?
Converse of pumping lemma for regular expressions
Why doesn't SpaceX land boosters in Africa?
How to count the number of bytes in a file, grouping the same bytes?
My mom helped me cosign a car and now she wants to take it
Advantages of using bra-ket notation
Which high-degree derivatives play an essential role?
Is it advisable to inform the CEO about his brother accessing his office?
How can this fractal shape perfectly cover a certain platonic solid?
How to remove system locales
How to track mail undetectably?
What is the meaning of "it" in "as luck would have it"?
What happens if a caster is surprised while casting a spell with a long casting time?
Calculus, water poured into a cone: Why is the derivative non-linear?
A* pathfinding algorithm too slow
Magento 2.2.8 ignores my theme's dictionary
Magento 2 CSS does not applyJavascript translation not workingalways show My Account & Wish List user logged in or notMagento 2:i18n folder to custom themeTransaction has been declined. Please try again later. - Error when invoicingPayment with REST APIMagento 2 REST API placing order with Braintree Credit Card errorMagento 2.1.4 - Error in Create Credit Memo for Braintree transactionsCheckout.com Payment Gateway error “Transaction has been declined. Please try again later.”Translation file magento 2 i18n
I'm hitting my head against a wall on this one. I've gone through not only the Magento documentation regarding custom translations in themes, but also many answered questions found via Google, and nothing seems to work. I'm trying to change the default "transaction has been declined" message during checkout.
I have a theme located at app/design/frontend/Vendor/ThemeName
. Inside that theme, I have the i18n
directory, and inside of it, I have en_US.csv
.
In app/design/frontend/Vendor/ThemeName/i18n/en_US.csv
, I have the following text:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again.",module,Magento_Payment
I've also tried just this:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again."
In addition, I've even tried moving i18n
to app/code/Vendor/ThemeName/Magento_Payment
.
And, of course, I'm flushing the cache and making sure all static content gets rebuilt.
Nothing works. This is maddening, and I'm really hoping I've just missed something stupid and obvious that someone can point out to me very quickly :)
EDIT: I erroneously stated that my theme was installed in app/code
when it was in fact installed in app/design/frontend
.
magento2 magento2.2 localisation i18n translation-dictionaries
add a comment |
I'm hitting my head against a wall on this one. I've gone through not only the Magento documentation regarding custom translations in themes, but also many answered questions found via Google, and nothing seems to work. I'm trying to change the default "transaction has been declined" message during checkout.
I have a theme located at app/design/frontend/Vendor/ThemeName
. Inside that theme, I have the i18n
directory, and inside of it, I have en_US.csv
.
In app/design/frontend/Vendor/ThemeName/i18n/en_US.csv
, I have the following text:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again.",module,Magento_Payment
I've also tried just this:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again."
In addition, I've even tried moving i18n
to app/code/Vendor/ThemeName/Magento_Payment
.
And, of course, I'm flushing the cache and making sure all static content gets rebuilt.
Nothing works. This is maddening, and I'm really hoping I've just missed something stupid and obvious that someone can point out to me very quickly :)
EDIT: I erroneously stated that my theme was installed in app/code
when it was in fact installed in app/design/frontend
.
magento2 magento2.2 localisation i18n translation-dictionaries
add a comment |
I'm hitting my head against a wall on this one. I've gone through not only the Magento documentation regarding custom translations in themes, but also many answered questions found via Google, and nothing seems to work. I'm trying to change the default "transaction has been declined" message during checkout.
I have a theme located at app/design/frontend/Vendor/ThemeName
. Inside that theme, I have the i18n
directory, and inside of it, I have en_US.csv
.
In app/design/frontend/Vendor/ThemeName/i18n/en_US.csv
, I have the following text:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again.",module,Magento_Payment
I've also tried just this:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again."
In addition, I've even tried moving i18n
to app/code/Vendor/ThemeName/Magento_Payment
.
And, of course, I'm flushing the cache and making sure all static content gets rebuilt.
Nothing works. This is maddening, and I'm really hoping I've just missed something stupid and obvious that someone can point out to me very quickly :)
EDIT: I erroneously stated that my theme was installed in app/code
when it was in fact installed in app/design/frontend
.
magento2 magento2.2 localisation i18n translation-dictionaries
I'm hitting my head against a wall on this one. I've gone through not only the Magento documentation regarding custom translations in themes, but also many answered questions found via Google, and nothing seems to work. I'm trying to change the default "transaction has been declined" message during checkout.
I have a theme located at app/design/frontend/Vendor/ThemeName
. Inside that theme, I have the i18n
directory, and inside of it, I have en_US.csv
.
In app/design/frontend/Vendor/ThemeName/i18n/en_US.csv
, I have the following text:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again.",module,Magento_Payment
I've also tried just this:
"Transaction has been declined. Please try again later.","Payment was declined. Please check your details and try again."
In addition, I've even tried moving i18n
to app/code/Vendor/ThemeName/Magento_Payment
.
And, of course, I'm flushing the cache and making sure all static content gets rebuilt.
Nothing works. This is maddening, and I'm really hoping I've just missed something stupid and obvious that someone can point out to me very quickly :)
EDIT: I erroneously stated that my theme was installed in app/code
when it was in fact installed in app/design/frontend
.
magento2 magento2.2 localisation i18n translation-dictionaries
magento2 magento2.2 localisation i18n translation-dictionaries
edited Jun 24 at 0:55
Crankycyclops
asked Jun 23 at 13:00
CrankycyclopsCrankycyclops
64 bronze badges
64 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Themes manually installed (not via composer) reside under
app/design/frontend/<your_vendor_name>/<your_theme_name>.
e.g. app/design/frontend/Magento/luma
This is documented in the dev guide and can also be seen in the official Magento 2 github repository here
app/code/ is reserved for modules
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
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%2f279292%2fmagento-2-2-8-ignores-my-themes-dictionary%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Themes manually installed (not via composer) reside under
app/design/frontend/<your_vendor_name>/<your_theme_name>.
e.g. app/design/frontend/Magento/luma
This is documented in the dev guide and can also be seen in the official Magento 2 github repository here
app/code/ is reserved for modules
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
add a comment |
Themes manually installed (not via composer) reside under
app/design/frontend/<your_vendor_name>/<your_theme_name>.
e.g. app/design/frontend/Magento/luma
This is documented in the dev guide and can also be seen in the official Magento 2 github repository here
app/code/ is reserved for modules
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
add a comment |
Themes manually installed (not via composer) reside under
app/design/frontend/<your_vendor_name>/<your_theme_name>.
e.g. app/design/frontend/Magento/luma
This is documented in the dev guide and can also be seen in the official Magento 2 github repository here
app/code/ is reserved for modules
Themes manually installed (not via composer) reside under
app/design/frontend/<your_vendor_name>/<your_theme_name>.
e.g. app/design/frontend/Magento/luma
This is documented in the dev guide and can also be seen in the official Magento 2 github repository here
app/code/ is reserved for modules
answered Jun 23 at 18:26
vitoriodachefvitoriodachef
1,5484 silver badges24 bronze badges
1,5484 silver badges24 bronze badges
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
add a comment |
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
You're right, and that's actually where my theme is installed. I just wrote the wrong path in my question by mistake. Will update it now. Thank you!
– Crankycyclops
Jun 24 at 0:53
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%2f279292%2fmagento-2-2-8-ignores-my-themes-dictionary%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