Skip to content

Commit a223a2c

Browse files
authored
Merge pull request #126 from PrestaShop/dev
Release 5.0.2
2 parents 0c8d6fa + 503aa1c commit a223a2c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<module>
33
<name>ps_linklist</name>
44
<displayName><![CDATA[Link List]]></displayName>
5-
<version><![CDATA[5.0.1]]></version>
5+
<version><![CDATA[5.0.2]]></version>
66
<description><![CDATA[Adds a block with several links.]]></description>
77
<author><![CDATA[PrestaShop]]></author>
88
<tab><![CDATA[front_office_features]]></tab>

ps_linklist.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ public function __construct()
7171
{
7272
$this->name = 'ps_linklist';
7373
$this->author = 'PrestaShop';
74-
$this->version = '5.0.1';
74+
$this->version = '5.0.2';
7575
$this->need_instance = 0;
7676
$this->tab = 'front_office_features';
7777

7878
$tabNames = [];
7979
foreach (Language::getLanguages(true) as $lang) {
80-
$tabNames[$lang['locale']] = $this->trans('Link Widget', [], 'Modules.Linklist.Admin', $lang['locale']);
80+
$tabNames[$lang['locale']] = $this->trans('Link List', [], 'Modules.Linklist.Admin', $lang['locale']);
8181
}
8282
$this->tabs = [
8383
[
@@ -86,7 +86,7 @@ public function __construct()
8686
'visible' => true,
8787
'name' => $tabNames,
8888
'parent_class_name' => 'AdminParentThemes',
89-
'wording' => 'Link Widget',
89+
'wording' => 'Link List',
9090
'wording_domain' => 'Modules.Linklist.Admin',
9191
],
9292
];

0 commit comments

Comments
 (0)