mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(toolkit): make language tag check case-insensitive (#7164)
* fix(toolkit): language tag check should be case insensitive * chore: add changeset * fix(translate): fix target language variable in prompt Co-authored-by: Gao Sun <gao@silverhand.io>
This commit is contained in:
parent
5180368b1e
commit
5da01bc47a
3 changed files with 16 additions and 5 deletions
10
.changeset/tame-snails-fold.md
Normal file
10
.changeset/tame-snails-fold.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
"@logto/language-kit": patch
|
||||
"@logto/translate": patch
|
||||
---
|
||||
|
||||
make method `isLanguageTag` case-insensitive
|
||||
|
||||
The language tags should be case insensitive. In `phrases` and `phrases-experience` packages, the language tags are all in lowercase. However, in the language kit, the language tags are in mixed cases, such as `pt-BR` and `zh-CN`.
|
||||
|
||||
Therefore, some of the i18n phrases were not translated by the translate CLI tool. The fix is to update the language kit to ignore cases in `isLanguageTag` function, so that the previously mismatched language tags can be detected and translated.
|
|
@ -4,7 +4,10 @@ import { languages } from './const.js';
|
|||
import type { LanguageTag } from './type.js';
|
||||
|
||||
export const isLanguageTag = (value: unknown): value is LanguageTag =>
|
||||
typeof value === 'string' && value in languages;
|
||||
typeof value === 'string' &&
|
||||
Object.keys(languages)
|
||||
.map((key) => key.toLowerCase())
|
||||
.includes(value.toLowerCase());
|
||||
|
||||
export const languageTagGuard: z.ZodType<LanguageTag> = z
|
||||
.any()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { languages, type LanguageTag } from '@logto/language-kit';
|
||||
import { type LanguageTag } from '@logto/language-kit';
|
||||
import { conditionalString } from '@silverhand/essentials';
|
||||
|
||||
type GetTranslationPromptProperties = {
|
||||
|
@ -22,9 +22,7 @@ export const getTranslationPromptMessages = ({
|
|||
}: GetTranslationPromptProperties) => [
|
||||
{
|
||||
role: 'assistant',
|
||||
content: `You are a assistant translator and will receive a TypeScript object. Traverse and find object values with "${untranslatedMark}" annotation on the top, then translate these values to target locale "${
|
||||
languages[targetLanguage]
|
||||
}". Remove the "${untranslatedMark}" annotations from output. Escape the single quotes (if any) in translated results by prepending a backslash. Keep the interpolation double curly brackets and their inner values intact. Make sure there is a space between the CJK and non-CJK characters. Prefer using "你" instead of "您" in Chinese. Do not include sample code snippet below in the final output. ${conditionalString(
|
||||
content: `You are a assistant translator and will receive a TypeScript object. Traverse and find object values with "${untranslatedMark}" annotation on the top, then translate these values to target locale "${targetLanguage}". Remove the "${untranslatedMark}" annotations from output. Escape the single quotes (if any) in translated results by prepending a backslash. Keep the interpolation double curly brackets and their inner values intact. Make sure there is a space between the CJK and non-CJK characters. Prefer using "你" instead of "您" in Chinese. Do not include sample code snippet below in the final output. ${conditionalString(
|
||||
extraPrompt
|
||||
)}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue