Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fix `webapplication` plugin integration
- Prevent SQL error when column `name` not exist from `Item_Device`
- Prevent the tag field from appearing in the satisfaction survey.
- Fix display translations

## [2.14.3] - 2025-12-22

Expand Down
2 changes: 1 addition & 1 deletion inc/config.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
{

if (!$withtemplate && $item->getType() === 'Config') {
return self::createTabEntry(__s('Tag Management', 'tag'), 0, $item::getType(), PluginTagTag::getIcon());
return self::createTabEntry(__('Tag Management', 'tag'), 0, $item::getType(), PluginTagTag::getIcon());
}

return '';
Expand Down
4 changes: 2 additions & 2 deletions inc/profile.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class PluginTagProfile extends Profile
{
public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
{
return self::createTabEntry(__s('Tag Management', 'tag'), 0, $item::getType(), PluginTagTag::getIcon());
return self::createTabEntry(__('Tag Management', 'tag'), 0, $item::getType(), PluginTagTag::getIcon());
}

public static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0)
Expand Down Expand Up @@ -65,7 +65,7 @@ public function showForm($ID, array $options = [])
'field' => 'plugin_tag_tag',
],
];
$matrix_options['title'] = __s('Tag management', 'tag');
$matrix_options['title'] = __('Tag management', 'tag');
$profile->displayRightsChoiceMatrix($rights, $matrix_options);

if ($canedit) {
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function plugin_init_tag()
function plugin_version_tag()
{
return [
'name' => __s('Tag Management', 'tag'),
'name' => __('Tag Management', 'tag'),
'version' => PLUGIN_TAG_VERSION,
'author' => '<a href="http://www.teclib.com">Teclib\'</a> - Infotel conseil',
'homepage' => 'https://github.com/pluginsGLPI/tag',
Expand Down