i18n-ai-translate
Version:
Use LLMs to translate your i18n JSON to any language.
12 lines • 590 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class ChatInterface {
invalidTranslationMessage() {
return "The provided translation is incorrect. Re-attempt the translation and conform to the same rules as the original prompt.";
}
invalidStylingMessage() {
return "The provided translation was correct, but the styling was not maintained. Re-attempt the translation and ensure that the output text maintains the same style as the original prompt.";
}
}
exports.default = ChatInterface;
//# sourceMappingURL=chat_interface.js.map
;