Skip to content

Update translations - #2722

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

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

Conversation

@bc-svc-local

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

Copy link
Copy Markdown
Collaborator

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_offers across 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 in en.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.

@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 e0bd956. 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 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)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e0bd956. 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 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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e0bd956. 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

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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e0bd956. 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.

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)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e0bd956. 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