Skip to content

Update translations - #2718

Open
bc-svc-local wants to merge 1 commit into
masterfrom
LOCAL-1444-deliver-translations-2026-08-03-09-32-42
Open

Update translations#2718
bc-svc-local wants to merge 1 commit into
masterfrom
LOCAL-1444-deliver-translations-2026-08-03-09-32-42

Conversation

@bc-svc-local

@bc-svc-local bc-svc-local commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

This pull request was created automatically. Please check new translations, approve and deliver them.


Note

Low Risk
Locale JSON only; no application logic. Wrong or malformed ICU strings could show broken UI text for featured promotion callouts in affected languages.

Overview
Updates products.featured_promotions.more_offers in 18 locale files from fixed phrases to ICU {count, plural, …} strings so the featured promotion “more offers” callout can vary with the number of additional promotions.

Locales differ in wording (e.g. German weiteres Angebot vs weitere Angebote, Spanish oferta más vs más ofertas, Dutch Nog {count} …). Some entries still look worth a quick review: fr.json uses English “more offer/offers”, ja.json has a likely broken plural pattern, and several Spanish regional files use the same string for singular and plural (más posibilidades).

Reviewed by Cursor Bugbot for commit fae1367. Bugbot is set up for automated code reviews on this repo. Configure here.

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 4 potential issues.

Fix All in Cursor

❌ 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 fae1367. Configure here.

Comment thread lang/de.json
"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}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid ICU plural keywords

Medium Severity

Several locales use translated plural categories (ein, una, une, ét, ett) in more_offers instead of ICU keywords like one. Elsewhere in these files, plurals correctly use one/other. The singular branch never matches, so count 1 (two promotions) always falls through to other.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fae1367. Configure here.

Comment thread lang/ja.json
"card_default_image_alt": "画像は近日公開予定",
"featured_promotions": {
"more_offers": "その他のオファー"
"more_offers": "{count, plural、オファーが他} other { 件}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Broken Japanese plural syntax

High Severity

The new more_offers value in ja.json is not valid ICU MessageFormat. It uses an ideographic comma, drops the plural categories, and has malformed braces, so formatting can fail or show a broken string instead of the previous working Japanese text.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fae1367. Configure here.

Comment thread lang/fr.json
"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}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

French string left in English

Medium Severity

more_offers in fr.json previously said plus d'offres, but the update uses English more offer / more offers. French storefronts will show English copy for this featured-promotions label.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fae1367. Configure here.

Comment thread lang/es-419.json
"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}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong Spanish offers translation

Medium Severity

Latin American Spanish locales changed más ofertas to más posibilidades, which means “more possibilities,” not “more offers.” es.json still uses oferta/ofertas, so these variants now show the wrong meaning in promotion callouts.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fae1367. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants