fix(store,l10n): localize canonical category labels + store segment
The grouped store showed the hub's English category labels verbatim (Documents, Data & Formats) even in German. Map the canonical slug to DE/EN via l10n (storeCat*), and localize the Modules/Studio segment (storeSegment*). Falls back to the hub label for an unknown slug. Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
4b30589962
commit
0fda2600ad
6 changed files with 191 additions and 7 deletions
|
|
@ -833,6 +833,39 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
@override
|
||||
String get storeCategoryOrchestrator => 'Orchestration';
|
||||
|
||||
@override
|
||||
String get storeCatDocuments => 'Documents';
|
||||
|
||||
@override
|
||||
String get storeCatTextLanguage => 'Text & Language';
|
||||
|
||||
@override
|
||||
String get storeCatData => 'Data & Formats';
|
||||
|
||||
@override
|
||||
String get storeCatAiLlm => 'AI & LLM';
|
||||
|
||||
@override
|
||||
String get storeCatWebApi => 'Web & APIs';
|
||||
|
||||
@override
|
||||
String get storeCatAnalysisDomain => 'Analysis & Domain';
|
||||
|
||||
@override
|
||||
String get storeCatStudioThemes => 'Studio & Themes';
|
||||
|
||||
@override
|
||||
String get storeCatExamplesDev => 'Examples & Dev';
|
||||
|
||||
@override
|
||||
String get storeCatOther => 'Other';
|
||||
|
||||
@override
|
||||
String get storeSegmentModules => 'Modules';
|
||||
|
||||
@override
|
||||
String get storeSegmentStudio => 'Studio & Themes';
|
||||
|
||||
@override
|
||||
String storeNResults(int n) {
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue