i18n-prod.ts 254 B

1234567
  1. import type { DevLocale, MessageKey } from './type';
  2. export function t(key: MessageKey, substitutions?: string | string[]) {
  3. return chrome.i18n.getMessage(key, substitutions);
  4. }
  5. t.devLocale = '' as DevLocale; // for type consistency with i18n-dev.ts