auto-translate-json-library
Version:
Automatically translates JSON language files to other languages using Google Translate,AWS,Azure,DeepL,OpenAI or local OpenAI compatible server
13 lines (12 loc) • 433 B
TypeScript
export declare class Util {
private static _startDelimiter;
private static _endDelimiter;
private static pattern;
static set startDelimiter(value: string);
static set endDelimiter(value: string);
static replaceArgumentsWithNumbers(args: RegExpMatchArray | null, result: string): string;
static replaceContextVariables(text: string): {
args: RegExpMatchArray | null;
text: string;
};
}