- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, how would i use a comma in a sentence that I would like to translate
in a csv file? For example I want to translate this sentence:
Sorry, no quotes are available for this order at this time.
My CSV file fro now looks like this: http://prntscr.com/jzxuoe
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to use in a double quote to translate your sentence.
Check reference from core code,
go to
vendor/magento/module-sales/i18n/en_US.csv
Like,
"Sorry, no quotes are available for this order.","Sorry, no quotes are available for this order."
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Use of comma in CSV translation
Hi @Jojobaa just use double quotes like "Sorry, no quotes are available for this order at this time.","Sorry, no quotes are available for this order at this time."
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to use in a double quote to translate your sentence.
Check reference from core code,
go to
vendor/magento/module-sales/i18n/en_US.csv
Like,
"Sorry, no quotes are available for this order.","Sorry, no quotes are available for this order."
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Use of comma in CSV translation
@Rakesh Jesadiya wrote:You need to use in a double quote to translate your sentence.
Check reference from core code,
go to
vendor/magento/module-sales/i18n/en_US.csvLike,
"Sorry, no quotes are available for this order.","Sorry, no quotes are available for this order."
It can be so simple. Thanks