@orderly.network/i18n 2.3.2 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,6 +45,7 @@
45
45
  "common.notional": "Nominal",
46
46
  "common.fee": "Comisión",
47
47
  "common.fees": "Tarifas",
48
+ "common.orderPrice": "Precio de orden",
48
49
  "common.avgPrice": "Precio promedio",
49
50
  "common.avgOpen": "Promedio de apertura",
50
51
  "common.avgClose": "Promedio de cierre",
@@ -107,6 +108,7 @@
107
108
  "markets.favorites.tabs.maxName": "El nombre de la lista no puede exceder 15 caracteres",
108
109
  "markets.favorites.tabs.delete.dialog.title": "Eliminar lista",
109
110
  "markets.favorites.tabs.delete.dialog.description": "¿Estás seguro de que deseas eliminar {{name}}?",
111
+ "markets.favorites.addFavorites": "Añadir a favoritos",
110
112
  "markets.column.market": "Mercado",
111
113
  "markets.column.24hChange": "Cambio 24h",
112
114
  "markets.column.24hVolume": "Volumen 24h",
@@ -259,6 +261,8 @@
259
261
  "positions.limitClose.description": "Aceptas cerrar {{quantity}} {{base}} posición al precio límite.",
260
262
  "positions.marketClose": "Cierre de mercado",
261
263
  "positions.marketClose.description": "Aceptas cerrar {{quantity}} {{base}} posición al precio de mercado.",
264
+ "positions.limitClose.errors.exceed.title": "Límite de cierre de posición excedido",
265
+ "positions.limitClose.errors.exceed.description": "No se puede cerrar la posición de {{quantity}} {{symbol}}. El máximo permitido por cierre es {{maxQuantity}} {{symbol}}.",
262
266
  "positions.history.status.closed": "Cerrado",
263
267
  "positions.history.status.partialClosed": "Parcialmente cerrado",
264
268
  "positions.history.type.adl": "ADL",
@@ -290,7 +294,7 @@
290
294
  "orders.status.canceled.toast.title": "Orden cancelada",
291
295
  "orders.status.rejected.toast.title": "Orden rechazada",
292
296
  "orders.status.replaced.toast.title": "Orden editada",
293
- "orders.column.orderPrice": "Precio de orden",
297
+ "orders.status.scaledSubOrderOpened.toast.title": "Orden escalonada: suborden abierta",
294
298
  "orders.column.fill&Quantity": "Ejecutada / Cantidad",
295
299
  "orders.column.triggerPrice": "Precio de disparo",
296
300
  "orders.column.orderTime": "Hora de orden",
@@ -358,6 +362,24 @@
358
362
  "orderEntry.orderType.postOnly": "Solo post",
359
363
  "orderEntry.orderType.ioc": "IOC",
360
364
  "orderEntry.orderType.fok": "FOK",
365
+ "orderEntry.orderType.scaledOrder": "Orden escalonada",
366
+ "orderEntry.upperPrice": "Precio superior",
367
+ "orderEntry.lowerPrice": "Precio inferior",
368
+ "orderEntry.skew": "Sesgo",
369
+ "orderEntry.totalOrders": "Total de órdenes",
370
+ "orderEntry.totalQuantity": "Cantidad total",
371
+ "orderEntry.quantityDistribution": "Distribución de cantidad",
372
+ "orderEntry.quantityDistribution.description": "Controla cómo se distribuye el tamaño de la orden entre los niveles de precio.",
373
+ "orderEntry.quantityDistribution.formula": "Sesgo de tamaño = (Tamaño al precio más alto) ÷ (Tamaño al precio más bajo)",
374
+ "orderEntry.distributionType.flat": "Plana",
375
+ "orderEntry.distributionType.ascending": "Ascendente",
376
+ "orderEntry.distributionType.ascending.abbr": "Asc.",
377
+ "orderEntry.distributionType.descending": "Descendente",
378
+ "orderEntry.distributionType.descending.abbr": "Desc.",
379
+ "orderEntry.distributionType.custom": "Personalizada",
380
+ "orderEntry.distributionType.flat.description": "Asignación uniforme de órdenes en el rango.",
381
+ "orderEntry.distributionType.ascending.description": "Mayor tamaño asignado a niveles de precio más altos.",
382
+ "orderEntry.distributionType.descending.description": "Mayor tamaño asignado a niveles de precio más bajos.",
361
383
  "orderEntry.bbo": "BBO",
362
384
  "orderEntry.bbo.counterparty1": "Contraparte 1",
363
385
  "orderEntry.bbo.counterparty5": "Contraparte 5",
@@ -367,6 +389,7 @@
367
389
  "orderEntry.estLiqPrice": "Precio de liquidación estimado",
368
390
  "orderEntry.disableOrderConfirm": "Deshabilitar confirmación de orden",
369
391
  "orderEntry.orderConfirm": "Confirmar orden",
392
+ "orderEntry.confirmScaledOrder": "Confirmar orden escalonada",
370
393
  "orderEntry.hidden": "Oculta",
371
394
  "orderEntry.keepVisible": "Mantener visible",
372
395
  "orderEntry.maxBuy": "Máximo compra",
@@ -391,11 +414,26 @@
391
414
  "orderEntry.slTriggerPrice.error.min": "El precio SL debe ser mayor que {{value}}",
392
415
  "orderEntry.slTriggerPrice.error.max": "El precio SL debe ser menor que {{value}}",
393
416
  "orderEntry.total.error.min": "El valor de la orden debe ser mayor o igual a {{value}} USDC",
417
+ "orderEntry.upperPrice.error.required": "El precio superior es requerido",
418
+ "orderEntry.upperPrice.error.min": "El precio superior debe ser mayor que {{value}}",
419
+ "orderEntry.upperPrice.error.max": "El precio superior debe ser menor que {{value}}",
420
+ "orderEntry.lowerPrice.error.required": "El precio inferior es requerido",
421
+ "orderEntry.lowerPrice.error.min": "El precio inferior debe ser mayor que {{value}}",
422
+ "orderEntry.lowerPrice.error.max": "El precio inferior debe ser menor que el precio superior",
423
+ "orderEntry.totalOrders.error.required": "El total de órdenes es requerido",
424
+ "orderEntry.totalOrders.error.range": "El total de órdenes debe estar entre 2 y 20",
425
+ "orderEntry.skew.error.required": "El sesgo es requerido",
426
+ "orderEntry.skew.error.min": "El sesgo debe ser mayor que {{value}}",
427
+ "orderEntry.skew.error.max": "El sesgo debe ser menor que {{value}}",
394
428
  "orderEntry.slippage": "Deslizamiento",
395
429
  "orderEntry.slippage.est": "Estimar",
396
430
  "orderEntry.slippage.tips": "Su transacción se revertirá si el precio cambia desfavorablemente en más de este porcentaje.",
397
431
  "orderEntry.slippage.error.exceed": "El valor de entrada actual no puede exceder el 3%",
398
432
  "orderEntry.slippage.error.max": "El deslizamiento estimado supera su deslizamiento máximo permitido.",
433
+ "orderEntry.confirmScaledOrder.orderPrice.warning": "Esta orden se ejecutará inmediatamente según el precio actual del mercado",
434
+ "orderEntry.scaledOrder.fullySuccessful": "Orden escalonada colocada: {{total}} órdenes enviadas con éxito.",
435
+ "orderEntry.scaledOrder.partiallySuccessful": "Orden escalonada parcialmente enviada: {{successCount}} de {{total}} órdenes colocadas.",
436
+ "orderEntry.scaledOrder.allFailed": "Orden escalonada fallida. No se colocaron órdenes.",
399
437
  "leverage.maxAccountLeverage": "Apalancamiento máximo de cuenta",
400
438
  "leverage.accountLeverage": "Apalancamiento de cuenta",
401
439
  "leverage.currentLeverage": "Apalancamiento actual",
@@ -572,8 +610,8 @@
572
610
  "affiliate.referralCode.bound": "Código de referido vinculado",
573
611
  "affiliate.referralCode.notExist": "Este código de referido no existe.",
574
612
  "affiliate.process.title": "Convertirse en afiliado es fácil",
575
- "affiliate.process.step1.title": "Solicitar",
576
- "affiliate.process.step1.description": "Solicite un código de referido a través del formulario.",
613
+ "affiliate.process.step1.title": "Opera $10,000+ o solicita",
614
+ "affiliate.process.step1.description": "Gana un código de referido automáticamente ($0 de $10,000 completado), o solicita una tasa más alta a través del formulario.",
577
615
  "affiliate.process.step1.volumeEq0.title": "Obtener código de referido automático o solicitar",
578
616
  "affiliate.process.step1.volumeEq0.description": "Su código de referido estará listo para usar después de realizar su primera operación. Puede solicitar una tasa más alta a través del formulario.",
579
617
  "affiliate.process.step1.volumeGt0.title": "Operar ${{requireVolume}}+ o solicitar",
@@ -690,6 +728,9 @@
690
728
  "maintenance.dialog.description": "Lo sentimos, {{brokerName}} no está disponible temporalmente debido a una actualización programada. Se espera que el servicio vuelva para {{endDate}}.",
691
729
  "maintenance.tips.description": "{{brokerName}} no estará disponible temporalmente para una actualización programada desde {{startDate}} hasta {{endDate}}.",
692
730
  "restrictedInfo.description.default": "Estás accediendo a {{brokerName}} desde una dirección IP ({{ip}}) asociada con un país restringido.",
731
+ "restrictedInfo.accessRestricted": "Acceso Restringido",
732
+ "restrictedInfo.accessRestricted.description": "Debido a leyes y regulaciones, actualmente no operamos en los Estados Unidos. Al continuar usando nuestra plataforma, usted declara y garantiza en todo momento que no es residente de los Estados Unidos durante todo el período de uso.",
733
+ "restrictedInfo.accessRestricted.agree": "Entiendo y acepto",
693
734
  "subAccount.modal.title": "Cambiar de cuenta",
694
735
  "subAccount.modal.switch.success.description": "Cambio de cuenta exitoso",
695
736
  "subAccount.modal.mainAccount.title": "Cuenta principal",
@@ -45,6 +45,7 @@
45
45
  "common.notional": "Notionnel",
46
46
  "common.fee": "Frais",
47
47
  "common.fees": "Frais",
48
+ "common.orderPrice": "Prix de l'ordre",
48
49
  "common.avgPrice": "Prix moyen",
49
50
  "common.avgOpen": "Moy. ouverture",
50
51
  "common.avgClose": "Moy. clôture",
@@ -107,6 +108,7 @@
107
108
  "markets.favorites.tabs.maxName": "Le nom de la liste ne peut pas dépasser 15 caractères",
108
109
  "markets.favorites.tabs.delete.dialog.title": "Supprimer la liste",
109
110
  "markets.favorites.tabs.delete.dialog.description": "Êtes-vous sûr de vouloir supprimer {{name}} ?",
111
+ "markets.favorites.addFavorites": "Ajouter aux favoris",
110
112
  "markets.column.market": "Marché",
111
113
  "markets.column.24hChange": "Variation 24h",
112
114
  "markets.column.24hVolume": "Volume 24h",
@@ -259,6 +261,8 @@
259
261
  "positions.limitClose.description": "Vous acceptez de fermer {{quantity}} {{base}} position au prix limite.",
260
262
  "positions.marketClose": "Fermeture au marché",
261
263
  "positions.marketClose.description": "Vous acceptez de fermer {{quantity}} {{base}} position au prix du marché.",
264
+ "positions.limitClose.errors.exceed.title": "Limite de clôture dépassée",
265
+ "positions.limitClose.errors.exceed.description": "Impossible de clôturer la position de {{quantity}} {{symbol}}. Le maximum autorisé par clôture est de {{maxQuantity}} {{symbol}}.",
262
266
  "positions.history.status.closed": "Fermé",
263
267
  "positions.history.status.partialClosed": "Partiellement fermé",
264
268
  "positions.history.type.adl": "ADL",
@@ -290,7 +294,7 @@
290
294
  "orders.status.canceled.toast.title": "Ordre annulé",
291
295
  "orders.status.rejected.toast.title": "Ordre rejeté",
292
296
  "orders.status.replaced.toast.title": "Ordre modifié",
293
- "orders.column.orderPrice": "Prix de l'ordre",
297
+ "orders.status.scaledSubOrderOpened.toast.title": "Ordre échelonné : sous-ordre ouvert",
294
298
  "orders.column.fill&Quantity": "Exécuté / Quantité",
295
299
  "orders.column.triggerPrice": "Prix de déclenchement",
296
300
  "orders.column.orderTime": "Heure de l'ordre",
@@ -358,6 +362,24 @@
358
362
  "orderEntry.orderType.postOnly": "Post only",
359
363
  "orderEntry.orderType.ioc": "IOC",
360
364
  "orderEntry.orderType.fok": "FOK",
365
+ "orderEntry.orderType.scaledOrder": "Ordre échelonné",
366
+ "orderEntry.upperPrice": "Prix supérieur",
367
+ "orderEntry.lowerPrice": "Prix inférieur",
368
+ "orderEntry.skew": "Biais",
369
+ "orderEntry.totalOrders": "Total des ordres",
370
+ "orderEntry.totalQuantity": "Quantité totale",
371
+ "orderEntry.quantityDistribution": "Distribution des quantités",
372
+ "orderEntry.quantityDistribution.description": "Contrôle la distribution de la taille des ordres entre les niveaux de prix.",
373
+ "orderEntry.quantityDistribution.formula": "Biais de taille = (Taille au prix le plus élevé) ÷ (Taille au prix le plus bas)",
374
+ "orderEntry.distributionType.flat": "Uniforme",
375
+ "orderEntry.distributionType.ascending": "Ascendant",
376
+ "orderEntry.distributionType.ascending.abbr": "Asc.",
377
+ "orderEntry.distributionType.descending": "Descendant",
378
+ "orderEntry.distributionType.descending.abbr": "Desc.",
379
+ "orderEntry.distributionType.custom": "Personnalisé",
380
+ "orderEntry.distributionType.flat.description": "Répartition uniforme des ordres sur la plage.",
381
+ "orderEntry.distributionType.ascending.description": "Plus grande taille allouée aux niveaux de prix plus élevés.",
382
+ "orderEntry.distributionType.descending.description": "Plus grande taille allouée aux niveaux de prix plus bas.",
361
383
  "orderEntry.bbo": "BBO",
362
384
  "orderEntry.bbo.counterparty1": "Contrepartie 1",
363
385
  "orderEntry.bbo.counterparty5": "Contrepartie 5",
@@ -367,6 +389,7 @@
367
389
  "orderEntry.estLiqPrice": "Prix de liq. estimé",
368
390
  "orderEntry.disableOrderConfirm": "Désactiver la confirmation d'ordre",
369
391
  "orderEntry.orderConfirm": "Confirmer l'ordre",
392
+ "orderEntry.confirmScaledOrder": "Confirmer l'ordre échelonné",
370
393
  "orderEntry.hidden": "Masqué",
371
394
  "orderEntry.keepVisible": "Garder visible",
372
395
  "orderEntry.maxBuy": "Achat max",
@@ -391,11 +414,26 @@
391
414
  "orderEntry.slTriggerPrice.error.min": "Le prix SL doit être supérieur à {{value}}",
392
415
  "orderEntry.slTriggerPrice.error.max": "Le prix SL doit être inférieur à {{value}}",
393
416
  "orderEntry.total.error.min": "La valeur de l'ordre doit être supérieure ou égale à {{value}} USDC",
417
+ "orderEntry.upperPrice.error.required": "Le prix supérieur est requis",
418
+ "orderEntry.upperPrice.error.min": "Le prix supérieur doit être supérieur à {{value}}",
419
+ "orderEntry.upperPrice.error.max": "Le prix supérieur doit être inférieur à {{value}}",
420
+ "orderEntry.lowerPrice.error.required": "Le prix inférieur est requis",
421
+ "orderEntry.lowerPrice.error.min": "Le prix inférieur doit être supérieur à {{value}}",
422
+ "orderEntry.lowerPrice.error.max": "Le prix inférieur doit être inférieur au prix supérieur",
423
+ "orderEntry.totalOrders.error.required": "Le total des ordres est requis",
424
+ "orderEntry.totalOrders.error.range": "Le total des ordres doit être entre 2 et 20",
425
+ "orderEntry.skew.error.required": "Le biais est requis",
426
+ "orderEntry.skew.error.min": "Le biais doit être supérieur à {{value}}",
427
+ "orderEntry.skew.error.max": "Le biais doit être inférieur à {{value}}",
394
428
  "orderEntry.slippage": "Glissement",
395
429
  "orderEntry.slippage.est": "Estimation",
396
430
  "orderEntry.slippage.tips": "Votre transaction sera annulée si le prix change défavorablement de plus que ce pourcentage.",
397
431
  "orderEntry.slippage.error.exceed": "La valeur saisie ne peut pas dépasser 3%",
398
432
  "orderEntry.slippage.error.max": "Le glissement estimé dépasse votre glissement maximal autorisé.",
433
+ "orderEntry.confirmScaledOrder.orderPrice.warning": "Cet ordre sera exécuté immédiatement selon le prix actuel du marché",
434
+ "orderEntry.scaledOrder.fullySuccessful": "Ordre échelonné placé : {{total}} ordres soumis avec succès.",
435
+ "orderEntry.scaledOrder.partiallySuccessful": "Ordre échelonné partiellement soumis : {{successCount}} sur {{total}} ordres placés.",
436
+ "orderEntry.scaledOrder.allFailed": "Échec de l'ordre échelonné. Aucun ordre n'a été placé.",
399
437
  "leverage.maxAccountLeverage": "Effet de levier max du compte",
400
438
  "leverage.accountLeverage": "Effet de levier du compte",
401
439
  "leverage.currentLeverage": "Effet de levier actuel",
@@ -572,8 +610,8 @@
572
610
  "affiliate.referralCode.bound": "Code de parrainage lié",
573
611
  "affiliate.referralCode.notExist": "Ce code de parrainage n'existe pas.",
574
612
  "affiliate.process.title": "Devenir affilié est facile",
575
- "affiliate.process.step1.title": "Postuler",
576
- "affiliate.process.step1.description": "Postulez pour un code de parrainage via le formulaire.",
613
+ "affiliate.process.step1.title": "Échangez $10,000+ ou postulez",
614
+ "affiliate.process.step1.description": "Gagnez automatiquement un code de parrainage ($0 sur $10,000 terminé), ou postulez pour un taux plus élevé via le formulaire.",
577
615
  "affiliate.process.step1.volumeEq0.title": "Obtenir un code de parrainage automatique ou postuler",
578
616
  "affiliate.process.step1.volumeEq0.description": "Votre code de parrainage est prêt à être utilisé après votre premier trade. Vous pouvez postuler pour un taux plus élevé via le formulaire.",
579
617
  "affiliate.process.step1.volumeGt0.title": "Trader ${{requireVolume}}+ ou postuler",
@@ -690,6 +728,9 @@
690
728
  "maintenance.dialog.description": "Désolé, {{brokerName}} est temporairement indisponible en raison d'une mise à niveau planifiée. Le service devrait être rétabli d'ici {{endDate}}.",
691
729
  "maintenance.tips.description": "{{brokerName}} sera temporairement indisponible pour une mise à niveau planifiée du {{startDate}} au {{endDate}}.",
692
730
  "restrictedInfo.description.default": "Vous accédez à {{brokerName}} depuis une adresse IP ({{ip}}) associée à un pays restreint.",
731
+ "restrictedInfo.accessRestricted": "Accès Restreint",
732
+ "restrictedInfo.accessRestricted.description": "En raison des lois et réglementations, nous n'opérons actuellement pas aux États-Unis. En continuant à utiliser notre plateforme, vous déclarez et garantissez à tout moment que vous n'êtes pas résident des États-Unis pendant toute la durée de cette utilisation.",
733
+ "restrictedInfo.accessRestricted.agree": "Je comprends et j'accepte",
693
734
  "subAccount.modal.title": "Changer de compte",
694
735
  "subAccount.modal.switch.success.description": "Changement de compte réussi",
695
736
  "subAccount.modal.mainAccount.title": "Compte principal",
@@ -45,6 +45,7 @@
45
45
  "common.notional": "Notional",
46
46
  "common.fee": "Biaya",
47
47
  "common.fees": "Biaya",
48
+ "common.orderPrice": "Harga order",
48
49
  "common.avgPrice": "Harga rata-rata",
49
50
  "common.avgOpen": "Rata-rata buka",
50
51
  "common.avgClose": "Rata-rata tutup",
@@ -107,6 +108,7 @@
107
108
  "markets.favorites.tabs.maxName": "Nama daftar tidak boleh melebihi 15 karakter",
108
109
  "markets.favorites.tabs.delete.dialog.title": "Hapus daftar",
109
110
  "markets.favorites.tabs.delete.dialog.description": "Apakah Anda yakin ingin menghapus {{name}}?",
111
+ "markets.favorites.addFavorites": "Tambah ke favorit",
110
112
  "markets.column.market": "Pasar",
111
113
  "markets.column.24hChange": "Perubahan 24h",
112
114
  "markets.column.24hVolume": "Volume 24h",
@@ -259,6 +261,8 @@
259
261
  "positions.limitClose.description": "Anda setuju menutup posisi {{quantity}} {{base}} pada harga limit.",
260
262
  "positions.marketClose": "Tutup pasar",
261
263
  "positions.marketClose.description": "Anda setuju menutup posisi {{quantity}} {{base}} pada harga pasar.",
264
+ "positions.limitClose.errors.exceed.title": "Melebihi batas penutupan posisi",
265
+ "positions.limitClose.errors.exceed.description": "Tidak dapat menutup posisi {{quantity}} {{symbol}}. Jumlah maksimum yang diizinkan per penutupan adalah {{maxQuantity}} {{symbol}}.",
262
266
  "positions.history.status.closed": "Ditutup",
263
267
  "positions.history.status.partialClosed": "Ditutup sebagian",
264
268
  "positions.history.type.adl": "Adl",
@@ -290,7 +294,7 @@
290
294
  "orders.status.canceled.toast.title": "Pesanan dibatalkan",
291
295
  "orders.status.rejected.toast.title": "Pesanan ditolak",
292
296
  "orders.status.replaced.toast.title": "Pesanan diedit",
293
- "orders.column.orderPrice": "Harga pesanan",
297
+ "orders.status.scaledSubOrderOpened.toast.title": "Order berskala: sub-order dibuka",
294
298
  "orders.column.fill&Quantity": "Terisi / Jumlah",
295
299
  "orders.column.triggerPrice": "Harga trigger",
296
300
  "orders.column.orderTime": "Waktu pesanan",
@@ -358,6 +362,24 @@
358
362
  "orderEntry.orderType.postOnly": "Post only",
359
363
  "orderEntry.orderType.ioc": "IOC",
360
364
  "orderEntry.orderType.fok": "FOK",
365
+ "orderEntry.orderType.scaledOrder": "Order berskala",
366
+ "orderEntry.upperPrice": "Harga tertinggi",
367
+ "orderEntry.lowerPrice": "Harga terendah",
368
+ "orderEntry.skew": "Kemiringan",
369
+ "orderEntry.totalOrders": "Total order",
370
+ "orderEntry.totalQuantity": "Jumlah total",
371
+ "orderEntry.quantityDistribution": "Distribusi jumlah",
372
+ "orderEntry.quantityDistribution.description": "Mengontrol distribusi ukuran order di antara level harga.",
373
+ "orderEntry.quantityDistribution.formula": "Kemiringan Ukuran = (Ukuran pada harga tertinggi) ÷ (Ukuran pada harga terendah)",
374
+ "orderEntry.distributionType.flat": "Rata",
375
+ "orderEntry.distributionType.ascending": "Menaik",
376
+ "orderEntry.distributionType.ascending.abbr": "Naik",
377
+ "orderEntry.distributionType.descending": "Menurun",
378
+ "orderEntry.distributionType.descending.abbr": "Turun",
379
+ "orderEntry.distributionType.custom": "Kustom",
380
+ "orderEntry.distributionType.flat.description": "Alokasi order merata di seluruh rentang.",
381
+ "orderEntry.distributionType.ascending.description": "Ukuran lebih besar dialokasikan ke level harga lebih tinggi.",
382
+ "orderEntry.distributionType.descending.description": "Ukuran lebih besar dialokasikan ke level harga lebih rendah.",
361
383
  "orderEntry.bbo": "BBO",
362
384
  "orderEntry.bbo.counterparty1": "Counterparty 1",
363
385
  "orderEntry.bbo.counterparty5": "Counterparty 5",
@@ -367,6 +389,7 @@
367
389
  "orderEntry.estLiqPrice": "Perkiraan harga lik.",
368
390
  "orderEntry.disableOrderConfirm": "Nonaktifkan konfirmasi pesanan",
369
391
  "orderEntry.orderConfirm": "Konfirmasi pesanan",
392
+ "orderEntry.confirmScaledOrder": "Konfirmasi order berskala",
370
393
  "orderEntry.hidden": "Tersembunyi",
371
394
  "orderEntry.keepVisible": "Tetap terlihat",
372
395
  "orderEntry.maxBuy": "Maksimum beli",
@@ -391,11 +414,26 @@
391
414
  "orderEntry.slTriggerPrice.error.min": "Harga SL harus lebih besar dari {{value}}",
392
415
  "orderEntry.slTriggerPrice.error.max": "Harga SL harus kurang dari {{value}}",
393
416
  "orderEntry.total.error.min": "Nilai pesanan harus lebih besar atau sama dengan {{value}} USDC",
417
+ "orderEntry.upperPrice.error.required": "Harga tertinggi wajib diisi",
418
+ "orderEntry.upperPrice.error.min": "Harga tertinggi harus lebih besar dari {{value}}",
419
+ "orderEntry.upperPrice.error.max": "Harga tertinggi harus lebih kecil dari {{value}}",
420
+ "orderEntry.lowerPrice.error.required": "Harga terendah wajib diisi",
421
+ "orderEntry.lowerPrice.error.min": "Harga terendah harus lebih besar dari {{value}}",
422
+ "orderEntry.lowerPrice.error.max": "Harga terendah harus lebih kecil dari harga tertinggi",
423
+ "orderEntry.totalOrders.error.required": "Total order wajib diisi",
424
+ "orderEntry.totalOrders.error.range": "Total order harus antara 2 sampai 20",
425
+ "orderEntry.skew.error.required": "Kemiringan wajib diisi",
426
+ "orderEntry.skew.error.min": "Kemiringan harus lebih besar dari {{value}}",
427
+ "orderEntry.skew.error.max": "Kemiringan harus lebih kecil dari {{value}}",
394
428
  "orderEntry.slippage": "Slippage",
395
429
  "orderEntry.slippage.est": "Perkiraan",
396
430
  "orderEntry.slippage.tips": "Transaksi Anda akan dibatalkan jika harga berubah secara tidak menguntungkan lebih dari persentase ini.",
397
431
  "orderEntry.slippage.error.exceed": "Nilai input saat ini tidak boleh melebihi 3%",
398
432
  "orderEntry.slippage.error.max": "Slippage yang diperkirakan melebihi slippage maksimum yang diizinkan.",
433
+ "orderEntry.confirmScaledOrder.orderPrice.warning": "Order ini akan dieksekusi segera berdasarkan harga pasar saat ini",
434
+ "orderEntry.scaledOrder.fullySuccessful": "Order berskala ditempatkan: {{total}} order berhasil dikirim.",
435
+ "orderEntry.scaledOrder.partiallySuccessful": "Order berskala sebagian terkirim: {{successCount}} dari {{total}} order ditempatkan.",
436
+ "orderEntry.scaledOrder.allFailed": "Order berskala gagal. Tidak ada order yang ditempatkan.",
399
437
  "leverage.maxAccountLeverage": "Leverage akun maksimum",
400
438
  "leverage.accountLeverage": "Leverage akun",
401
439
  "leverage.currentLeverage": "Leverage saat ini",
@@ -572,8 +610,8 @@
572
610
  "affiliate.referralCode.bound": "Kode referral terikat",
573
611
  "affiliate.referralCode.notExist": "Kode referral ini tidak ada.",
574
612
  "affiliate.process.title": "Menjadi afiliasi itu mudah",
575
- "affiliate.process.step1.title": "Daftar",
576
- "affiliate.process.step1.description": "Daftar untuk kode referral melalui formulir.",
613
+ "affiliate.process.step1.title": "Trading $10,000+ atau daftar",
614
+ "affiliate.process.step1.description": "Dapatkan kode referral secara otomatis ($0 dari $10,000 selesai), atau daftar untuk tarif lebih tinggi melalui formulir.",
577
615
  "affiliate.process.step1.volumeEq0.title": "Dapatkan kode referral otomatis atau daftar",
578
616
  "affiliate.process.step1.volumeEq0.description": "Kode referral Anda siap digunakan setelah melakukan trade pertama. Anda dapat mendaftar untuk tingkat yang lebih tinggi melalui formulir.",
579
617
  "affiliate.process.step1.volumeGt0.title": "Trade ${{requireVolume}}+ atau daftar",
@@ -690,6 +728,9 @@
690
728
  "maintenance.dialog.description": "Maaf, {{brokerName}} sementara tidak tersedia karena peningkatan terjadwal. Layanan diharapkan kembali pada {{endDate}}.",
691
729
  "maintenance.tips.description": "{{brokerName}} akan sementara tidak tersedia untuk peningkatan terjadwal dari {{startDate}} hingga {{endDate}}.",
692
730
  "restrictedInfo.description.default": "Anda mengakses {{brokerName}} dari alamat IP ({{ip}}) yang terkait dengan negara terbatas.",
731
+ "restrictedInfo.accessRestricted": "Akses Dibatasi",
732
+ "restrictedInfo.accessRestricted.description": "Karena hukum dan peraturan, saat ini kami tidak beroperasi di Amerika Serikat. Dengan melanjutkan penggunaan platform kami, Anda menyatakan dan menjamin setiap saat bahwa Anda bukan penduduk Amerika Serikat selama periode penggunaan tersebut.",
733
+ "restrictedInfo.accessRestricted.agree": "Saya mengerti dan setuju",
693
734
  "subAccount.modal.title": "Ganti akun",
694
735
  "subAccount.modal.switch.success.description": "Berhasil beralih akun",
695
736
  "subAccount.modal.mainAccount.title": "Akun utama",
@@ -45,6 +45,7 @@
45
45
  "common.notional": "Nozionale",
46
46
  "common.fee": "Commissione",
47
47
  "common.fees": "Commissioni",
48
+ "common.orderPrice": "Prezzo dell'ordine",
48
49
  "common.avgPrice": "Prezzo medio",
49
50
  "common.avgOpen": "Apertura media",
50
51
  "common.avgClose": "Chiusura media",
@@ -107,6 +108,7 @@
107
108
  "markets.favorites.tabs.maxName": "Il nome della lista non può superare i 15 caratteri",
108
109
  "markets.favorites.tabs.delete.dialog.title": "Elimina lista",
109
110
  "markets.favorites.tabs.delete.dialog.description": "Sei sicuro di voler eliminare {{name}}?",
111
+ "markets.favorites.addFavorites": "Aggiungi ai preferiti",
110
112
  "markets.column.market": "Mercato",
111
113
  "markets.column.24hChange": "Variazione 24h",
112
114
  "markets.column.24hVolume": "Volume 24h",
@@ -259,6 +261,8 @@
259
261
  "positions.limitClose.description": "Accetti di chiudere la posizione {{quantity}} {{base}} al prezzo limite.",
260
262
  "positions.marketClose": "Chiusura mercato",
261
263
  "positions.marketClose.description": "Accetti di chiudere la posizione {{quantity}} {{base}} al prezzo di mercato.",
264
+ "positions.limitClose.errors.exceed.title": "Limite di chiusura posizione superato",
265
+ "positions.limitClose.errors.exceed.description": "Impossibile chiudere la posizione di {{quantity}} {{symbol}}. Il massimo consentito per chiusura è {{maxQuantity}} {{symbol}}.",
262
266
  "positions.history.status.closed": "Chiuso",
263
267
  "positions.history.status.partialClosed": "Parzialmente chiuso",
264
268
  "positions.history.type.adl": "Adl",
@@ -290,7 +294,7 @@
290
294
  "orders.status.canceled.toast.title": "Ordine annullato",
291
295
  "orders.status.rejected.toast.title": "Ordine rifiutato",
292
296
  "orders.status.replaced.toast.title": "Ordine modificato",
293
- "orders.column.orderPrice": "Prezzo ordine",
297
+ "orders.status.scaledSubOrderOpened.toast.title": "Ordine scalato: sotto-ordine aperto",
294
298
  "orders.column.fill&Quantity": "Eseguito / Quantità",
295
299
  "orders.column.triggerPrice": "Prezzo trigger",
296
300
  "orders.column.orderTime": "Ora ordine",
@@ -358,6 +362,24 @@
358
362
  "orderEntry.orderType.postOnly": "Solo post",
359
363
  "orderEntry.orderType.ioc": "IOC",
360
364
  "orderEntry.orderType.fok": "FOK",
365
+ "orderEntry.orderType.scaledOrder": "Ordine scalato",
366
+ "orderEntry.upperPrice": "Prezzo superiore",
367
+ "orderEntry.lowerPrice": "Prezzo inferiore",
368
+ "orderEntry.skew": "Inclinazione",
369
+ "orderEntry.totalOrders": "Totale ordini",
370
+ "orderEntry.totalQuantity": "Quantità totale",
371
+ "orderEntry.quantityDistribution": "Distribuzione della quantità",
372
+ "orderEntry.quantityDistribution.description": "Controlla la distribuzione della dimensione dell'ordine tra i livelli di prezzo.",
373
+ "orderEntry.quantityDistribution.formula": "Asimmetria dimensione = (Dimensione al prezzo più alto) ÷ (Dimensione al prezzo più basso)",
374
+ "orderEntry.distributionType.flat": "Uniforme",
375
+ "orderEntry.distributionType.ascending": "Crescente",
376
+ "orderEntry.distributionType.ascending.abbr": "Cresc.",
377
+ "orderEntry.distributionType.descending": "Decrescente",
378
+ "orderEntry.distributionType.descending.abbr": "Decr.",
379
+ "orderEntry.distributionType.custom": "Personalizzato",
380
+ "orderEntry.distributionType.flat.description": "Allocazione uniforme degli ordini nell'intervallo.",
381
+ "orderEntry.distributionType.ascending.description": "Dimensione maggiore allocata ai livelli di prezzo più alti.",
382
+ "orderEntry.distributionType.descending.description": "Dimensione maggiore allocata ai livelli di prezzo più bassi.",
361
383
  "orderEntry.bbo": "BBO",
362
384
  "orderEntry.bbo.counterparty1": "Controparte 1",
363
385
  "orderEntry.bbo.counterparty5": "Controparte 5",
@@ -367,6 +389,7 @@
367
389
  "orderEntry.estLiqPrice": "Prezzo liq. stimato",
368
390
  "orderEntry.disableOrderConfirm": "Disabilita conferma ordine",
369
391
  "orderEntry.orderConfirm": "Conferma ordine",
392
+ "orderEntry.confirmScaledOrder": "Conferma ordine scalato",
370
393
  "orderEntry.hidden": "Nascosto",
371
394
  "orderEntry.keepVisible": "Mantieni visibile",
372
395
  "orderEntry.maxBuy": "Acquisto massimo",
@@ -391,11 +414,26 @@
391
414
  "orderEntry.slTriggerPrice.error.min": "Il prezzo SL deve essere maggiore di {{value}}",
392
415
  "orderEntry.slTriggerPrice.error.max": "Il prezzo SL deve essere minore di {{value}}",
393
416
  "orderEntry.total.error.min": "Il valore dell'ordine deve essere maggiore o uguale a {{value}} USDC",
417
+ "orderEntry.upperPrice.error.required": "Il prezzo superiore è obbligatorio",
418
+ "orderEntry.upperPrice.error.min": "Il prezzo superiore deve essere maggiore di {{value}}",
419
+ "orderEntry.upperPrice.error.max": "Il prezzo superiore deve essere minore di {{value}}",
420
+ "orderEntry.lowerPrice.error.required": "Il prezzo inferiore è obbligatorio",
421
+ "orderEntry.lowerPrice.error.min": "Il prezzo inferiore deve essere maggiore di {{value}}",
422
+ "orderEntry.lowerPrice.error.max": "Il prezzo inferiore deve essere minore del prezzo superiore",
423
+ "orderEntry.totalOrders.error.required": "Il totale degli ordini è obbligatorio",
424
+ "orderEntry.totalOrders.error.range": "Il totale degli ordini deve essere tra 2 e 20",
425
+ "orderEntry.skew.error.required": "L'inclinazione è obbligatoria",
426
+ "orderEntry.skew.error.min": "L'asimmetria deve essere maggiore di {{value}}",
427
+ "orderEntry.skew.error.max": "L'asimmetria deve essere minore di {{value}}",
394
428
  "orderEntry.slippage": "Slippage",
395
429
  "orderEntry.slippage.est": "Stima",
396
430
  "orderEntry.slippage.tips": "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente di oltre questa percentuale.",
397
431
  "orderEntry.slippage.error.exceed": "Il valore inserito non può superare il 3%",
398
432
  "orderEntry.slippage.error.max": "Lo slippage stimato supera lo slippage massimo consentito.",
433
+ "orderEntry.confirmScaledOrder.orderPrice.warning": "Questo ordine sarà eseguito immediatamente in base al prezzo di mercato attuale",
434
+ "orderEntry.scaledOrder.fullySuccessful": "Ordine scalato piazzato: {{total}} ordini inviati con successo.",
435
+ "orderEntry.scaledOrder.partiallySuccessful": "Ordine scalato parzialmente inviato: {{successCount}} di {{total}} ordini piazzati.",
436
+ "orderEntry.scaledOrder.allFailed": "Ordine scalato fallito. Nessun ordine è stato piazzato.",
399
437
  "leverage.maxAccountLeverage": "Leva massima account",
400
438
  "leverage.accountLeverage": "Leva account",
401
439
  "leverage.currentLeverage": "Leva attuale",
@@ -572,8 +610,8 @@
572
610
  "affiliate.referralCode.bound": "Codice referral collegato",
573
611
  "affiliate.referralCode.notExist": "Questo codice referral non esiste.",
574
612
  "affiliate.process.title": "Diventare un affiliato è facile",
575
- "affiliate.process.step1.title": "Candidati",
576
- "affiliate.process.step1.description": "Candidati per un codice referral tramite il modulo.",
613
+ "affiliate.process.step1.title": "Trading $10,000+ o candidati",
614
+ "affiliate.process.step1.description": "Guadagna automaticamente un codice di referral ($0 di $10,000 completato), o candidati per una tariffa più alta tramite il modulo.",
577
615
  "affiliate.process.step1.volumeEq0.title": "Ottieni un codice referral automatico o candidati",
578
616
  "affiliate.process.step1.volumeEq0.description": "Il tuo codice referral sarà pronto all'uso dopo il tuo primo trade. Puoi candidarti per una tariffa più alta tramite il modulo.",
579
617
  "affiliate.process.step1.volumeGt0.title": "Trading ${{requireVolume}}+ o candidati",
@@ -690,6 +728,9 @@
690
728
  "maintenance.dialog.description": "Ci dispiace, {{brokerName}} è temporaneamente non disponibile a causa di un aggiornamento programmato. Il servizio dovrebbe tornare disponibile entro {{endDate}}.",
691
729
  "maintenance.tips.description": "{{brokerName}} sarà temporaneamente non disponibile per un aggiornamento programmato da {{startDate}} a {{endDate}}.",
692
730
  "restrictedInfo.description.default": "Stai accedendo a {{brokerName}} da un indirizzo IP ({{ip}}) associato a un paese con restrizioni.",
731
+ "restrictedInfo.accessRestricted": "Accesso Limitato",
732
+ "restrictedInfo.accessRestricted.description": "A causa di leggi e regolamenti, attualmente non operiamo negli Stati Uniti. Continuando a utilizzare la nostra piattaforma, dichiari e garantisci in ogni momento di non essere residente negli Stati Uniti durante tutto il periodo di utilizzo.",
733
+ "restrictedInfo.accessRestricted.agree": "Ho capito e accetto",
693
734
  "subAccount.modal.title": "Cambia account",
694
735
  "subAccount.modal.switch.success.description": "Cambio account completato con successo",
695
736
  "subAccount.modal.mainAccount.title": "Account principale",
@@ -45,6 +45,7 @@
45
45
  "common.notional": "名目",
46
46
  "common.fee": "手数料",
47
47
  "common.fees": "手数料",
48
+ "common.orderPrice": "注文価格",
48
49
  "common.avgPrice": "平均価格",
49
50
  "common.avgOpen": "平均オープン",
50
51
  "common.avgClose": "平均クローズ",
@@ -107,6 +108,7 @@
107
108
  "markets.favorites.tabs.maxName": "リスト名は15文字を超えることはできません",
108
109
  "markets.favorites.tabs.delete.dialog.title": "リストを削除",
109
110
  "markets.favorites.tabs.delete.dialog.description": "{{name}}を削除してもよろしいですか?",
111
+ "markets.favorites.addFavorites": "お気に入りに追加",
110
112
  "markets.column.market": "市場",
111
113
  "markets.column.24hChange": "24時間の変化",
112
114
  "markets.column.24hVolume": "24時間のボリューム",
@@ -259,6 +261,8 @@
259
261
  "positions.limitClose.description": "{{quantity}} {{base}} ポジションをリミット価格でクローズすることに同意します。",
260
262
  "positions.marketClose": "マーケットクローズ",
261
263
  "positions.marketClose.description": "{{quantity}} {{base}} ポジションをマーケット価格でクローズすることに同意します。",
264
+ "positions.limitClose.errors.exceed.title": "決済数量制限超過",
265
+ "positions.limitClose.errors.exceed.description": "{{quantity}} {{symbol}}のポジションを決済できません。1回の決済上限は{{maxQuantity}} {{symbol}}です。",
262
266
  "positions.history.status.closed": "クローズ済み",
263
267
  "positions.history.status.partialClosed": "一部クローズ済み",
264
268
  "positions.history.type.adl": "ADL",
@@ -290,7 +294,7 @@
290
294
  "orders.status.canceled.toast.title": "注文キャンセル",
291
295
  "orders.status.rejected.toast.title": "注文拒否",
292
296
  "orders.status.replaced.toast.title": "注文編集",
293
- "orders.column.orderPrice": "注文価格",
297
+ "orders.status.scaledSubOrderOpened.toast.title": "スケール注文:サブオーダーが開始されました",
294
298
  "orders.column.fill&Quantity": "約定 / 数量",
295
299
  "orders.column.triggerPrice": "トリガー価格",
296
300
  "orders.column.orderTime": "注文時間",
@@ -358,6 +362,24 @@
358
362
  "orderEntry.orderType.postOnly": "ポストのみ",
359
363
  "orderEntry.orderType.ioc": "IOC",
360
364
  "orderEntry.orderType.fok": "FOK",
365
+ "orderEntry.orderType.scaledOrder": "スケール注文",
366
+ "orderEntry.upperPrice": "上限価格",
367
+ "orderEntry.lowerPrice": "下限価格",
368
+ "orderEntry.skew": "歪度",
369
+ "orderEntry.totalOrders": "注文総数",
370
+ "orderEntry.totalQuantity": "合計数量",
371
+ "orderEntry.quantityDistribution": "数量分布",
372
+ "orderEntry.quantityDistribution.description": "価格レベル間での注文サイズの分布を制御します。",
373
+ "orderEntry.quantityDistribution.formula": "サイズ偏差 = (最高価格のサイズ) ÷ (最低価格のサイズ)",
374
+ "orderEntry.distributionType.flat": "均等",
375
+ "orderEntry.distributionType.ascending": "上昇",
376
+ "orderEntry.distributionType.ascending.abbr": "上昇",
377
+ "orderEntry.distributionType.descending": "下降",
378
+ "orderEntry.distributionType.descending.abbr": "下降",
379
+ "orderEntry.distributionType.custom": "カスタム",
380
+ "orderEntry.distributionType.flat.description": "価格範囲内で均一な注文配分。",
381
+ "orderEntry.distributionType.ascending.description": "より高い価格レベルにより多くのサイズを配分。",
382
+ "orderEntry.distributionType.descending.description": "より低い価格レベルにより多くのサイズを配分。",
361
383
  "orderEntry.bbo": "BBO",
362
384
  "orderEntry.bbo.counterparty1": "カウンターパーティ1",
363
385
  "orderEntry.bbo.counterparty5": "カウンターパーティ5",
@@ -367,6 +389,7 @@
367
389
  "orderEntry.estLiqPrice": "推定清算価格",
368
390
  "orderEntry.disableOrderConfirm": "注文確認を無効化",
369
391
  "orderEntry.orderConfirm": "注文確認",
392
+ "orderEntry.confirmScaledOrder": "スケール注文の確認",
370
393
  "orderEntry.hidden": "非表示",
371
394
  "orderEntry.keepVisible": "表示を維持",
372
395
  "orderEntry.maxBuy": "最大購入",
@@ -391,11 +414,26 @@
391
414
  "orderEntry.slTriggerPrice.error.min": "SL価格は{{value}}より大きい必要があります",
392
415
  "orderEntry.slTriggerPrice.error.max": "SL価格は{{value}}未満である必要があります",
393
416
  "orderEntry.total.error.min": "注文価値は{{value}} USDC以上である必要があります",
417
+ "orderEntry.upperPrice.error.required": "上限価格を入力してください",
418
+ "orderEntry.upperPrice.error.min": "上限価格は{{value}}より大きい必要があります",
419
+ "orderEntry.upperPrice.error.max": "上限価格は{{value}}より小さい必要があります",
420
+ "orderEntry.lowerPrice.error.required": "下限価格を入力してください",
421
+ "orderEntry.lowerPrice.error.min": "下限価格は{{value}}より大きい必要があります",
422
+ "orderEntry.lowerPrice.error.max": "下限価格は上限価格より小さい必要があります",
423
+ "orderEntry.totalOrders.error.required": "注文総数を入力してください",
424
+ "orderEntry.totalOrders.error.range": "注文総数は2から20の間である必要があります",
425
+ "orderEntry.skew.error.required": "歪度を入力してください",
426
+ "orderEntry.skew.error.min": "偏差は {{value}} より大きくなければなりません",
427
+ "orderEntry.skew.error.max": "偏差は {{value}} より小さくなければなりません",
394
428
  "orderEntry.slippage": "スリッページ",
395
429
  "orderEntry.slippage.est": "推定",
396
430
  "orderEntry.slippage.tips": "価格がこの割合を超えて不利に変動した場合、取引は元に戻されます。",
397
431
  "orderEntry.slippage.error.exceed": "現在の入力値は3%を超えることはできません",
398
432
  "orderEntry.slippage.error.max": "推定スリッページが許容最大スリッページを超えています。",
433
+ "orderEntry.confirmScaledOrder.orderPrice.warning": "現在の市場価格に基づいて、この注文は即時に約定されます",
434
+ "orderEntry.scaledOrder.fullySuccessful": "スケール注文が完了:{{total}}件の注文がすべて正常に送信されました。",
435
+ "orderEntry.scaledOrder.partiallySuccessful": "スケール注文が一部完了:{{total}}件中{{successCount}}件の注文が送信されました。",
436
+ "orderEntry.scaledOrder.allFailed": "スケール注文が失敗しました。注文は送信されませんでした。",
399
437
  "leverage.maxAccountLeverage": "最大アカウントレバレッジ",
400
438
  "leverage.accountLeverage": "アカウントレバレッジ",
401
439
  "leverage.currentLeverage": "現在のレバレッジ",
@@ -572,8 +610,8 @@
572
610
  "affiliate.referralCode.bound": "紹介コードをバインドしました",
573
611
  "affiliate.referralCode.notExist": "この紹介コードは存在しません。",
574
612
  "affiliate.process.title": "アフィリエイトになるのは簡単です",
575
- "affiliate.process.step1.title": "申し込む",
576
- "affiliate.process.step1.description": "フォームから紹介コードを申請します。",
613
+ "affiliate.process.step1.title": "$10,000+ 取引または申請",
614
+ "affiliate.process.step1.description": "自動的に紹介コードを獲得($10,000 のうち $0 完了)、またはフォームでより高いレートを申請。",
577
615
  "affiliate.process.step1.volumeEq0.title": "自動紹介コードを取得するか申請する",
578
616
  "affiliate.process.step1.volumeEq0.description": "最初の取引完了後、紹介コードが使用可能になります。フォームからより高いレートを申請できます。",
579
617
  "affiliate.process.step1.volumeGt0.title": "${{requireVolume}}+取引するか申請する",
@@ -690,6 +728,9 @@
690
728
  "maintenance.dialog.description": "申し訳ありませんが、{{brokerName}}は予定されたアップグレードのため一時的に利用できません。サービスは{{endDate}}までに復旧する予定です。",
691
729
  "maintenance.tips.description": "{{brokerName}}は{{startDate}}から{{endDate}}までの予定されたアップグレードのため一時的に利用できません。",
692
730
  "restrictedInfo.description.default": "制限された国に関連付けられたIPアドレス({{ip}})から{{brokerName}}にアクセスしています。",
731
+ "restrictedInfo.accessRestricted": "アクセス制限",
732
+ "restrictedInfo.accessRestricted.description": "法律および規制により、現在アメリカ合衆国では事業を展開しておりません。当プラットフォームの利用を継続することにより、利用期間中を通じてアメリカ合衆国の居住者ではないことを表明し保証するものとします。",
733
+ "restrictedInfo.accessRestricted.agree": "理解し同意します",
693
734
  "subAccount.modal.title": "アカウントを切り替える",
694
735
  "subAccount.modal.switch.success.description": "アカウントの切り替えが完了しました",
695
736
  "subAccount.modal.mainAccount.title": "メインアカウント",