Skip to content

Commit ebdef86

Browse files
authored
fix(forms): Fix quote display in tag destination field strategy labels (#319)
1 parent b63afc1 commit ebdef86

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111

1212
- Fix tag search
13-
13+
- Fix quote display in tag destination field strategy labels
1414

1515
## [2.14.2] - 2025-12-02
1616

inc/destinationfieldstrategy.class.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ enum PluginTagDestinationFieldStrategy: string
4040
public function getLabel(): string
4141
{
4242
return match ($this) {
43-
self::NO_TAGS => __s("No tags"),
44-
self::SPECIFIC_VALUES => __s("Specific tags"),
45-
self::SPECIFIC_ANSWERS => __s("Answers from specific questions"),
46-
self::LAST_VALID_ANSWER => __s('Answer to last "Tag" question'),
43+
self::NO_TAGS => __("No tags"),
44+
self::SPECIFIC_VALUES => __("Specific tags"),
45+
self::SPECIFIC_ANSWERS => __("Answers from specific questions"),
46+
self::LAST_VALID_ANSWER => __('Answer to last "Tag" question'),
4747
};
4848
}
4949

0 commit comments

Comments
 (0)