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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed

- Fix tag search

- Fix quote display in tag destination field strategy labels

## [2.14.2] - 2025-12-02

Expand Down
8 changes: 4 additions & 4 deletions inc/destinationfieldstrategy.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ enum PluginTagDestinationFieldStrategy: string
public function getLabel(): string
{
return match ($this) {
self::NO_TAGS => __s("No tags"),
self::SPECIFIC_VALUES => __s("Specific tags"),
self::SPECIFIC_ANSWERS => __s("Answers from specific questions"),
self::LAST_VALID_ANSWER => __s('Answer to last "Tag" question'),
self::NO_TAGS => __("No tags"),
self::SPECIFIC_VALUES => __("Specific tags"),
self::SPECIFIC_ANSWERS => __("Answers from specific questions"),
self::LAST_VALID_ANSWER => __('Answer to last "Tag" question'),
};
}

Expand Down