TeaWeb/shared/js/i18n/localize.ts

8 lines
215 B
TypeScript
Raw Normal View History

namespace i18n {
export function tr(message: string, key?: string) {
console.log("Translating \"%s\". Default: \"%s\"", key, message);
return message;
}
}
const tr: typeof i18n.tr = i18n.tr;