Merge pull request #180 from losiu97/fix/add-match-none

BUGFIX add MATCH_NONE to tag matching options
This commit is contained in:
Anton Stubenbord
2023-06-02 15:04:12 +02:00
committed by GitHub
7 changed files with 58 additions and 65 deletions

View File

@@ -19,6 +19,8 @@ String translateMatchingAlgorithmDescription(
return S.of(context)!.documentContainsAWordSimilarToThisWord;
case MatchingAlgorithm.auto:
return S.of(context)!.learnMatchingAutomatically;
case MatchingAlgorithm.none:
return S.of(context)!.disableMatching;
}
}
@@ -39,5 +41,7 @@ String translateMatchingAlgorithmName(
return S.of(context)!.fuzzy;
case MatchingAlgorithm.auto:
return S.of(context)!.auto;
case MatchingAlgorithm.none:
return S.of(context)!.none;
}
}