Skip to content

Commit

Permalink
Merge pull request #8 from PrestaShopCorp/fix/l-implementation
Browse files Browse the repository at this point in the history
fix: l() implementation
  • Loading branch information
jokesterfr authored Aug 13, 2024
2 parents eeccf7c + fd1021f commit 2a731b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ps_accounts.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public function __construct()

parent::__construct();

$this->displayName = $this->l('PS Accounts Mock', [], 'Modules.Mymodule.Admin');
$this->description = $this->l('Mocking', [], 'Modules.Mymodule.Admin');
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?', [], 'Modules.Mymodule.Admin');
$this->displayName = $this->l('PS Accounts Mock');
$this->description = $this->l('Mocking');
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?');

require_once __DIR__ . '/vendor/autoload.php';

Expand Down

0 comments on commit 2a731b6

Please sign in to comment.