From 52aa78acab3b26a3369fbc5079a552e2ebcd0804 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sat, 2 Jan 2021 00:10:22 +0100 Subject: [PATCH] fix some messages --- src-ui/messages.xlf | 4 ++-- src-ui/src/app/data/matching-model.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 76c4a4fb9..a0c94de3e 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1673,8 +1673,8 @@ 16 - - Auto: Learn matching automatically. + + Auto: Learn matching automatically src/app/data/matching-model.ts 17 diff --git a/src-ui/src/app/data/matching-model.ts b/src-ui/src/app/data/matching-model.ts index 5d8695d6b..49cb5cad4 100644 --- a/src-ui/src/app/data/matching-model.ts +++ b/src-ui/src/app/data/matching-model.ts @@ -14,7 +14,7 @@ export const MATCHING_ALGORITHMS = [ {id: MATCH_LITERAL, shortName: $localize`Exact match`, name: $localize`Exact: Document contains this string`}, {id: MATCH_REGEX, shortName: $localize`Regular expression`, name: $localize`Regular expression: Document matches this regular expression`}, {id: MATCH_FUZZY, shortName: $localize`Fuzzy word`, name: $localize`Fuzzy: Document contains a word similar to this word`}, - {id: MATCH_AUTO, shortName: $localize`Automatic`, name: $localize`Auto: Learn matching automatically.`}, + {id: MATCH_AUTO, shortName: $localize`Automatic`, name: $localize`Auto: Learn matching automatically`}, ] export interface MatchingModel extends ObjectWithId {