-
Notifications
You must be signed in to change notification settings - Fork 1
New Crowdin updates #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
195a343
9a3c748
13a7983
b914eed
cc2d2b2
bbabe2a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ msgstr "" | |||||
| "Language: es\n" | ||||||
| "Project-Id-Version: intercambiovaca\n" | ||||||
| "Report-Msgid-Bugs-To: \n" | ||||||
| "PO-Revision-Date: 2025-11-03 18:57\n" | ||||||
| "PO-Revision-Date: 2025-11-04 13:58\n" | ||||||
| "Last-Translator: \n" | ||||||
| "Language-Team: Spanish\n" | ||||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|
|
@@ -859,6 +859,10 @@ msgstr "En CoW Swap, puede establecer órdenes de límite para los balances que | |||||
| msgid "1 Day" | ||||||
| msgstr "1 día" | ||||||
|
|
||||||
| #: apps/cowswap-frontend/src/modules/ordersTable/pure/OrderFillsAt/index.tsx | ||||||
| msgid "Smart contract" | ||||||
| msgstr "" | ||||||
|
||||||
| msgstr "" | |
| msgstr "Contrato inteligente" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ msgstr "" | |||||
| "Language: ru\n" | ||||||
| "Project-Id-Version: intercambiovaca\n" | ||||||
| "Report-Msgid-Bugs-To: \n" | ||||||
| "PO-Revision-Date: 2025-11-03 18:57\n" | ||||||
| "PO-Revision-Date: 2025-11-04 13:58\n" | ||||||
| "Last-Translator: \n" | ||||||
| "Language-Team: Russian\n" | ||||||
| "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" | ||||||
|
|
@@ -859,6 +859,10 @@ msgstr "В CoW Swap, вы можете установить лимит орде | |||||
| msgid "1 Day" | ||||||
| msgstr "1 день" | ||||||
|
|
||||||
| #: apps/cowswap-frontend/src/modules/ordersTable/pure/OrderFillsAt/index.tsx | ||||||
| msgid "Smart contract" | ||||||
| msgstr "" | ||||||
|
||||||
| msgstr "" | |
| msgstr "Смарт-контракт" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The en-US locale is restoring the 'Safe' translation as active while ru-RU and es-ES are marking it as obsolete. Based on the code at line 78 of OrderFillsAt/index.tsx (
const walletType = isSafeWallet ? 'Safe' : t'Smart contract'), the 'Safe' string is hardcoded and not translated, so only 'Smart contract' should have a translation entry. The 'Safe' entry should remain obsolete in all locale files for consistency.