Why does only one locale appear in Partner Center even though my extension package includes multiple languages? #492
-
|
Sometimes only one locale appears in the Store Listings tab in Partner Center, even though my extension package contains multiple language folders under |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This issue typically occurs when the extension’s When message references are missing, Partner Center assumes the extension supports only one default locale and ignores the others. To ensure that all supported locales are detected: Update your Include a Make sure your The message references are the i18n See also:
|
Beta Was this translation helpful? Give feedback.
This issue typically occurs when the extension’s
manifest.jsonuses hardcoded strings instead of i18n message references. Partner Center detects supported languages based on the message references used in the manifest—not just the presence of language folders.When message references are missing, Partner Center assumes the extension supports only one default locale and ignores the others.
To ensure that all supported locales are detected:
Update your
manifest.jsonfile by replacing thenameanddescriptionfields with i18n placeholders:Include a
default_localein your ma…