Update translations - #2730
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 5 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 dcc4527. 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 keywords
High Severity
Several more_offers messages use non-ICU plural categories such as ein, ét, una, une, and ett instead of one. Those selectors never match, so the singular branch is skipped and count 1 always falls through to other. The same pattern appears in da, de, es and regional es-*, fr, no, and sv.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit dcc4527. 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 MessageFormat: it uses an ideographic comma after plural and drops the required category structure. Formatting this string fails or shows a broken message in the featured promotions callout.
Reviewed by Cursor Bugbot for commit dcc4527. 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.
Wrong Spanish 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.” Shoppers see the wrong meaning on the promotions callout. The same wording is in the other regional es-* files except es.json.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit dcc4527. 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 offers left untranslated
Medium Severity
French more_offers was previously plus d'offres but is now English (more offer / more offers). French shoppers get English copy on the featured promotions callout.
Reviewed by Cursor Bugbot for commit dcc4527. Configure here.
| "input_placeholder": "Szukaj w sklepie" | ||
| "input_label_semantic": "Szukaj na stronie", | ||
| "input_placeholder": "Szukaj w sklepie", | ||
| "input_placeholder_semantic": "Describe what you're looking for" |
There was a problem hiding this comment.
Untranslated search placeholder text
Low Severity
New input_placeholder_semantic entries in Polish and Portuguese still use the English source Describe what you're looking for, while nearby search strings in those files are localized. Semantic search will show English placeholder text in those locales.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit dcc4527. Configure here.


This pull request was created automatically. Please check new translations, approve and deliver them.
Note
Low Risk
Locale-only string updates with no logic or security changes. Some ICU plural forms look invalid and could fall back or render poorly.
Overview
Adds semantic quick-search strings (
input_label_semantic,input_placeholder_semantic) and convertsfeatured_promotions.more_offersto an ICU{count, plural, …}message across non-English locales.Review quality: several locales keep English (
pl,pt,pt-BR,frmore_offers), use non-standard plural keys (ét,ein,una,ett), or have broken syntax (ja.json). Latin American Spanish maps “more offers” to “más posibilidades.”Reviewed by Cursor Bugbot for commit dcc4527. Bugbot is set up for automated code reviews on this repo. Configure here.