Translation Entry
Translation key-value entry with namespace, locale, and placeholders.
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[];
}