Jump to content

[SOLVED] Percent sign position - Turkish


dirk.j.herrmann

Recommended Posts

  • 1 month later...
  • 2 months later...
  • 5 years later...

English
For 1.7.x

in "src/Adapter/Presenter/Product/ProductLazyArray.php" find this lines

$this->product['discount_percentage'] = Tools::displayNumber($presNegativeReduction) . '%';
$this->product['discount_percentage_absolute'] = Tools::displayNumber($presAbsoluteReduction) . '%';

and edit like bellow then it will change everywhere.

$this->product['discount_percentage'] = '%'.Tools::displayNumber($presNegativeReduction);
$this->product['discount_percentage_absolute'] = '%'. Tools::displayNumber($presAbsoluteReduction);

 

Türkçe

1.7.x için

"src/Adapter/Presenter/Product/ProductLazyArray.php" içinde bu satırları bulun

$this->product['discount_percentage'] = Tools::displayNumber($presNegativeReduction) . '%';
$this->product['discount_percentage_absolute'] = Tools::displayNumber($presAbsoluteReduction) . '%';

ve aşağıdaki gibi düzenleyin, sonra her yerde değişecektir.

$this->product['discount_percentage'] = '%'.Tools::displayNumber($presNegativeReduction);
$this->product['discount_percentage_absolute'] = '%'. Tools::displayNumber($presAbsoluteReduction);

 

Edited by Murat Kezli (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...