RED-4979
This commit is contained in:
parent
bf4b0390d3
commit
720d9d5687
@ -13,4 +13,5 @@ export const defaultColorsTranslations: { readonly [key in DefaultColorType]?: s
|
||||
hintColor: _('default-colors-screen.types.hintColor'),
|
||||
redactionColor: _('default-colors-screen.types.redactionColor'),
|
||||
skippedColor: _('default-colors-screen.types.skippedColor'),
|
||||
appliedRedactionColor: _('default-colors-screen.types.appliedRedactionColor'),
|
||||
} as const;
|
||||
|
||||
@ -634,6 +634,7 @@
|
||||
},
|
||||
"types": {
|
||||
"analysisColor": "Analyse",
|
||||
"appliedRedactionColor": "Applied Redaction",
|
||||
"dictionaryRequestColor": "Wörterbuch",
|
||||
"hintColor": "",
|
||||
"ignoredHintColor": "Ignorierter Hinweis",
|
||||
|
||||
@ -634,6 +634,7 @@
|
||||
},
|
||||
"types": {
|
||||
"analysisColor": "Analysis",
|
||||
"appliedRedactionColor": "Applied Redaction",
|
||||
"dictionaryRequestColor": "Dictionary Request",
|
||||
"hintColor": "Hint",
|
||||
"ignoredHintColor": "Ignored Hint",
|
||||
|
||||
@ -634,6 +634,7 @@
|
||||
},
|
||||
"types": {
|
||||
"analysisColor": "Analyse",
|
||||
"appliedRedactionColor": "Applied Redaction",
|
||||
"dictionaryRequestColor": "Wörterbuch",
|
||||
"hintColor": "",
|
||||
"ignoredHintColor": "Ignorierter Hinweis",
|
||||
|
||||
@ -634,6 +634,7 @@
|
||||
},
|
||||
"types": {
|
||||
"analysisColor": "Analysis",
|
||||
"appliedRedactionColor": "Applied Redaction",
|
||||
"dictionaryRequestColor": "Dictionary Request",
|
||||
"hintColor": "Hint",
|
||||
"ignoredHintColor": "Ignored Hint",
|
||||
|
||||
@ -10,6 +10,7 @@ export const DefaultColorTypes = [
|
||||
'redactionColor',
|
||||
'ignoredHintColor',
|
||||
'skippedColor',
|
||||
'appliedRedactionColor',
|
||||
] as const;
|
||||
|
||||
export type DefaultColorType = typeof DefaultColorTypes[number];
|
||||
|
||||
@ -14,6 +14,7 @@ export class DefaultColors extends Entity<IDefaultColors> implements IDefaultCol
|
||||
readonly redactionColor: string;
|
||||
readonly ignoredHintColor: string;
|
||||
readonly skippedColor: string;
|
||||
readonly appliedRedactionColor: string;
|
||||
|
||||
readonly routerLink = '';
|
||||
|
||||
@ -31,6 +32,7 @@ export class DefaultColors extends Entity<IDefaultColors> implements IDefaultCol
|
||||
this.redactionColor = entity.redactionColor;
|
||||
this.ignoredHintColor = entity.ignoredHintColor;
|
||||
this.skippedColor = entity.skippedColor;
|
||||
this.appliedRedactionColor = entity.appliedRedactionColor;
|
||||
}
|
||||
|
||||
get id(): string {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user