kataluszek Merchant Da Germany Membro dal apr 2016 kataluszek 9 nov 2017 20:03 It is not a printable.order.copy.inc.php I can not find it :(
tim Founder Da Sweden Membro dal mag 2013 tim 9 nov 2017 22:52 The email text is a translation. Just search for the words in it. We are talking 2.x yes?
kataluszek Merchant Da Germany Membro dal apr 2016 kataluszek 10 nov 2017 16:33 I tried with Thank you for your purchase! And: Another translations are also not available. F.E. "Stock Status" or "Delivery Status" from product site. Yes - 2.0.2
tim Founder Da Sweden Membro dal mag 2013 tim 10 nov 2017 19:54 Works for me. http://demo.litecart.net/admin/?app=translations&doc=search&query=Thank+you+for+your+purchase What is your database charset and collation for the lc_translations mysql table?
kataluszek Merchant Da Germany Membro dal apr 2016 kataluszek 10 nov 2017 20:20 Charset - UTF-8 Unicode (utf8) Collation - utf8_unicode_ci
kataluszek Merchant Da Germany Membro dal apr 2016 kataluszek 10 nov 2017 20:48 I checked file includes/controllers/ctr_order.inc.php This message looks like hardcoded? $message = "Thank you for your purchase!\r\n\r\n" . "Your order #%order_id has successfully been created with a total of %payment_due for the following ordered items:\r\n\r\n" . "%order_items\r\n\r\n" . "A printable order copy is available here:\r\n" . "%order_copy_url\r\n\r\n" . "Regards,\r\n" . "%store_name\r\n" . "%store_url\r\n";
tim Founder Da Sweden Membro dal mag 2013 tim 11 nov 2017 02:15 This is not a hardcoded translation. It is the injection. language::translate('email_order_confirmation', $message, $language_code) $message = "Thank you for your purchase!\r\n\r\n" . "Your order #%order_id has successfully been created with a total of %payment_due for the following ordered items:\r\n\r\n" . "%order_items\r\n\r\n" . "A printable order copy is available here:\r\n" . "%order_copy_url\r\n\r\n" . "Regards,\r\n" . "%store_name\r\n" . "%store_url\r\n"; $message = strtr(language::translate('email_order_confirmation', $message, $language_code), $aliases); The problem this gives is that it needs to be run initially for the translation to be stored in the database. The scanner does not recognize the format.
user6079 Developer Da Spain Membro dal nov 2018 user6079 1 dic 2018 15:20 Hello, kataluszek, Search for the term email_order_confirmation in Translations -> Search translations Best regards, Gabriel