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.
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."
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."
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."
@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