Update translations - #2722
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 4 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit e0bd956. Configure here.
| "card_default_image_alt": "Bild in Kürze verfügbar", | ||
| "featured_promotions": { | ||
| "more_offers": "weitere Angebote" | ||
| "more_offers": "{count, plural, ein {weiteres Angebot} other {weitere Angebote}}" |
There was a problem hiding this comment.
Invalid ICU plural category keys
Medium Severity
Several more_offers strings use translated plural selectors such as ein, ét, una, une, and ett. ICU requires English category keywords like one and other, which the rest of these locale files already use. Invalid selectors can break formatting or skip the singular branch for count of 1.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit e0bd956. Configure here.
| "card_default_image_alt": "画像は近日公開予定", | ||
| "featured_promotions": { | ||
| "more_offers": "その他のオファー" | ||
| "more_offers": "{count, plural、オファーが他} other { 件}}" |
There was a problem hiding this comment.
Broken Japanese plural syntax
High Severity
The Japanese more_offers value is not valid ICU syntax. It uses an ideographic comma and a mangled plural structure, so the message is unlikely to parse and the featured-promotions “more offers” label can fail to render for Japanese storefronts.
Reviewed by Cursor Bugbot for commit e0bd956. Configure here.
| "card_default_image_alt": "Image disponible bientôt", | ||
| "featured_promotions": { | ||
| "more_offers": "plus d'offres" | ||
| "more_offers": "{count, plural, une {more offer} other {more offers}}" |
There was a problem hiding this comment.
French string left in English
Medium Severity
The French more_offers update replaces the previous French copy with English more offer / more offers. French shoppers would see English text in the featured promotions callout where a localized string existed before.
Reviewed by Cursor Bugbot for commit e0bd956. Configure here.
| "card_default_image_alt": "La imagen estará disponible próximamente", | ||
| "featured_promotions": { | ||
| "more_offers": "más ofertas" | ||
| "more_offers": "{count, plural, una {más posibilidades} other {más posibilidades}}" |
There was a problem hiding this comment.
Spanish mistranslates offers wording
Medium Severity
Latin American Spanish locales changed more_offers from más ofertas to más posibilidades, which means “more possibilities” rather than “more offers.” That alters the featured promotions label meaning across those storefronts.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit e0bd956. Configure here.


This pull request was created automatically. Please check new translations, approve and deliver them.
Note
Low Risk
Locale-only string changes for a single UI label; no application logic. Risk is mainly incorrect or malformed ICU strings showing wrong text in the storefront.
Overview
Updates
products.featured_promotions.more_offersacross locale JSON files from fixed phrases to ICU plural strings that accept a{count}variable, so the “more offers” line on featured promotion callouts can differ for one vs. many additional promotions (aligned with the English pattern inen.json).Locales get language-specific singular/plural forms where translators provided them (e.g. German weiteres Angebot / weitere Angebote, Dutch Nog … aanbieding / aanbiedingen, Spanish oferta más / más ofertas). Reviewers should spot-check French (strings still read as English “more offer/offers”) and Japanese (plural syntax in the diff looks broken).
Reviewed by Cursor Bugbot for commit e0bd956. Bugbot is set up for automated code reviews on this repo. Configure here.