app/api/i18n.v2/model/Translation.ts
import { LanguageISO6391 } from 'shared/types/commonTypes';
type ContextType = 'Entity' | 'Relationship Type' | 'Uwazi UI' | 'Thesaurus';
export type TranslationContext = {
type: ContextType;
label: string;
id: string;
};
export class Translation {
readonly key: string;
readonly value: string;
readonly language: LanguageISO6391;
readonly context: TranslationContext;
constructor(key: string, value: string, language: LanguageISO6391, context: TranslationContext) {
if (typeof context.id !== 'string') {
throw new Error(`context.id is of type "${typeof context.id}", should be a string`);
}
this.key = key;
this.value = value;
this.language = language;
this.context = context;
}
}