Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve plugin package localization #15142

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -376,14 +376,11 @@ function coerceLocalizations(translations: Record<string, string | LocalizeInfo>
return translations as Record<string, string>;
}

const NLS_REGEX = /^%([\w\d.-]+)%$/i;

function localizePackage(value: unknown, translations: PackageTranslation, callback: (key: string, defaultValue: string) => string): unknown {
if (typeof value === 'string') {
const match = NLS_REGEX.exec(value);
let result = value;
if (match) {
const key = match[1];
if (value.startsWith('%') && value.endsWith('%')) {
const key = value.slice(1, -1);
if (translations.translation) {
result = translations.translation[key];
} else if (translations.default) {
Expand Down
Loading