Translation Entry

Translation key-value entry with namespace, locale, and placeholders.

Report an issue
i18n

Install

$ npx shadcn@latest add @open-types/translation-entry

Source

export interface TranslationEntry {
  key: string;
  value: string;
  namespace?: string;
  locale?: string;
  description?: string;
  placeholders?: string[];
}
export interface TranslationEntry {
  key: string;
  value: string;
  namespace?: string;
  locale?: string;
  description?: string;
  placeholders?: string[];
}