1. The translation is not working
if i use the translatable code below:
i18n::enable();
global $allowed_i18n;
$allowed_i18n = array('et' => "et_EE", 'ru' => "ru_RU");
Object::add_extension('SiteTree', 'Translatable');
Translatable::set_default_locale('et_EE');
i18n::set_locale('et_EE');
Payment::set_site_currency("EEK"); // change this to the relevant currency code
Currency::setCurrencySymbol(' '); // change this to the relevant symbol
Order::set_modifiers(array('TaxModifier'));
TaxModifier::set_for_country("EE", 0.200, "KM", "inclusive");
2. The currency symbol in checkoutpage in amount is always $
also if i use the code:
Currency::setCurrencySymbol(' ');
The et_EE.php is included in ecommerce code originaly.
How to fix those two problems