Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
src/renderer/src/locales/zh.json
Outdated
| "foundVideos": "在播放列表中找到 {{count}} 个视频", | ||
| "groupActive": "{{count}} 个活跃", | ||
| "groupErrors": "{{count}} 失败", | ||
| "groupSummary": "{{已完成}} / {{总计}}已完成", |
There was a problem hiding this comment.
Preserve i18n placeholders while translating
Several of the new locale files translate the variable names inside {{…}}. For example, this entry now uses {{已完成}} and {{总计}} instead of {{completed}} and {{total}}. i18next interpolates only the original keys provided by the code, so these strings will render the raw placeholder text and never show the actual counts when the affected locale is active. Keep the placeholder identifiers identical to the English source and translate only the surrounding words.
Useful? React with 👍 / 👎.
No description provided.