@abtnode/ux 1.16.26-beta-351de484 → 1.16.26-beta-63f52a83
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.
- package/es/blocklet/app-avatar.js +7 -19
- package/es/blocklet/authentication/index.js +1 -3
- package/es/blocklet/authentication/oauth/apple.js +39 -15
- package/es/blocklet/authentication/oauth/auth0.js +18 -12
- package/es/blocklet/authentication/oauth/github.js +10 -9
- package/es/blocklet/authentication/oauth/google.js +10 -9
- package/es/blocklet/component/component-cell.js +201 -359
- package/es/blocklet/component/component-info-dialog.js +257 -0
- package/es/blocklet/component/index.js +14 -12
- package/es/blocklet/component/store-blocklet-list.js +3 -0
- package/es/blocklet/publish/connect-store-list.js +33 -4
- package/es/blocklet/publish/create-release.js +9 -4
- package/es/blocklet/status.js +13 -7
- package/es/locales/ar.js +19 -12
- package/es/locales/de.js +19 -12
- package/es/locales/en.js +18 -11
- package/es/locales/es.js +20 -13
- package/es/locales/fr.js +19 -12
- package/es/locales/hi.js +19 -12
- package/es/locales/i18n.db +0 -0
- package/es/locales/id.js +19 -12
- package/es/locales/ja.js +19 -12
- package/es/locales/ko.js +19 -12
- package/es/locales/pt.js +19 -12
- package/es/locales/ru.js +19 -12
- package/es/locales/th.js +19 -12
- package/es/locales/vi.js +19 -12
- package/es/locales/zh-tw.js +28 -21
- package/es/locales/zh.js +27 -20
- package/lib/blocklet/app-avatar.js +7 -20
- package/lib/blocklet/authentication/index.js +1 -3
- package/lib/blocklet/authentication/oauth/apple.js +51 -28
- package/lib/blocklet/authentication/oauth/auth0.js +18 -16
- package/lib/blocklet/authentication/oauth/github.js +10 -13
- package/lib/blocklet/authentication/oauth/google.js +10 -13
- package/lib/blocklet/component/component-cell.js +209 -370
- package/lib/blocklet/component/component-info-dialog.js +253 -0
- package/lib/blocklet/component/index.js +14 -12
- package/lib/blocklet/component/store-blocklet-list.js +3 -0
- package/lib/blocklet/publish/connect-store-list.js +32 -3
- package/lib/blocklet/publish/create-release.js +9 -4
- package/lib/blocklet/status.js +14 -8
- package/lib/locales/ar.js +19 -12
- package/lib/locales/de.js +19 -12
- package/lib/locales/en.js +18 -11
- package/lib/locales/es.js +20 -13
- package/lib/locales/fr.js +19 -12
- package/lib/locales/hi.js +19 -12
- package/lib/locales/i18n.db +0 -0
- package/lib/locales/id.js +19 -12
- package/lib/locales/ja.js +19 -12
- package/lib/locales/ko.js +19 -12
- package/lib/locales/pt.js +19 -12
- package/lib/locales/ru.js +19 -12
- package/lib/locales/th.js +19 -12
- package/lib/locales/vi.js +19 -12
- package/lib/locales/zh-tw.js +28 -21
- package/lib/locales/zh.js +27 -20
- package/package.json +17 -17
package/es/locales/en.js
CHANGED
|
@@ -543,7 +543,8 @@ export default {
|
|
|
543
543
|
corrupted: 'Corrupted',
|
|
544
544
|
purchasing: 'Waiting for purchase',
|
|
545
545
|
purchased: 'Purchased',
|
|
546
|
-
verifying: 'Verifying purchase'
|
|
546
|
+
verifying: 'Verifying purchase',
|
|
547
|
+
resource: 'Resource'
|
|
547
548
|
},
|
|
548
549
|
list: {
|
|
549
550
|
download: 'Download',
|
|
@@ -671,6 +672,9 @@ export default {
|
|
|
671
672
|
createReleaseSuccess: 'Release created successfully',
|
|
672
673
|
saveDraftSuccess: 'Draft saved successfully',
|
|
673
674
|
packTip: 'Currently blocklets can be installed directly as applications. Components and application configurations will be automatically included in the Blocklet',
|
|
675
|
+
resourceTip: 'Currently, as a Resource Blocklet, it cannot be directly installed from the Store.',
|
|
676
|
+
whyCantSeeInStore: "Why can't I see this blocklet in the Store?",
|
|
677
|
+
whyCantSeeResourceBlockletInStore: "Why can't I see this Resource Blocklet in the Store?",
|
|
674
678
|
resourceChangedWarning: 'You have modified the resource, please save it in time',
|
|
675
679
|
install: 'Install {name}',
|
|
676
680
|
installResourceTip: 'Install Url:',
|
|
@@ -1678,33 +1682,36 @@ export default {
|
|
|
1678
1682
|
domain: 'Domain',
|
|
1679
1683
|
domainDescription: "Auth0's domain is required",
|
|
1680
1684
|
clientId: 'Client ID',
|
|
1681
|
-
|
|
1682
|
-
clientSecret: 'Client Secret'
|
|
1685
|
+
clientIdDescription: 'Auth0 OAuth application client ID is required',
|
|
1686
|
+
clientSecret: 'Client Secret',
|
|
1687
|
+
clientSecretDescription: 'Auth0 OAuth application Client Secret is required'
|
|
1683
1688
|
},
|
|
1684
1689
|
github: {
|
|
1685
1690
|
enable: 'Enable Github login',
|
|
1686
1691
|
clientId: 'Client ID',
|
|
1687
|
-
|
|
1692
|
+
clientIdDescription: 'Github OAuth application Client ID is required',
|
|
1688
1693
|
clientSecret: 'Client Secret',
|
|
1689
|
-
|
|
1694
|
+
clientSecretDescription: 'Github OAuth application Client Secret is required'
|
|
1690
1695
|
},
|
|
1691
1696
|
google: {
|
|
1692
1697
|
enable: 'Enable Google login',
|
|
1693
1698
|
clientId: 'Client ID',
|
|
1694
|
-
|
|
1699
|
+
clientIdDescription: 'Google OAuth application Client ID is required',
|
|
1695
1700
|
clientSecret: 'Client Secret',
|
|
1696
|
-
|
|
1701
|
+
clientSecretDescription: 'Google OAuth application Client Secret is required'
|
|
1697
1702
|
},
|
|
1698
1703
|
apple: {
|
|
1699
1704
|
enable: 'Enable Apple login',
|
|
1700
1705
|
teamId: 'Team ID',
|
|
1701
|
-
|
|
1706
|
+
teamIdDescription: 'Apple OAuth application Team ID is required',
|
|
1702
1707
|
serviceId: 'Service ID',
|
|
1703
|
-
|
|
1708
|
+
serviceIdDescription: 'Apple OAuth application Service ID is required',
|
|
1704
1709
|
keyId: 'Key ID',
|
|
1705
|
-
|
|
1710
|
+
keyIdDescription: 'Apple OAuth application Key ID is required',
|
|
1706
1711
|
authKey: 'Auth Key',
|
|
1707
|
-
|
|
1712
|
+
authKeyDescription: 'Apple OAuth application Auth Key is required',
|
|
1713
|
+
bundleId: 'Bundle ID',
|
|
1714
|
+
bundleIdDescription: 'Apple OAuth application Bundle ID is required'
|
|
1708
1715
|
},
|
|
1709
1716
|
comingSoon: 'More login methods are under construction',
|
|
1710
1717
|
moreLogin: 'More Login',
|
package/es/locales/es.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: 'Corrompido',
|
|
550
550
|
purchasing: 'Esperando la compra',
|
|
551
551
|
purchased: 'Comprado',
|
|
552
|
-
verifying: 'Verificando compra'
|
|
552
|
+
verifying: 'Verificando compra',
|
|
553
|
+
resource: 'Recurso'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'Descargar',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: 'Ya no podrás publicar nuevas versiones del Blocklet eliminado, lo que significa que el Blocklet ya no se actualizará en la tienda.',
|
|
713
714
|
tip3: 'Borrar el Bloque no afectará su versión actualmente publicada en la Tienda.',
|
|
714
715
|
description: 'Después de eliminar el Blocklet, te encontrarás con los siguientes problemas, ¿estás seguro de que quieres eliminarlo?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: 'Actualmente, como un Bloque de Recursos, no se puede instalar directamente desde la Tienda.',
|
|
718
|
+
whyCantSeeInStore: '¿Por qué no puedo ver este blocklet en la Tienda?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: '¿Por qué no puedo ver este Recurso Blocklet en la Tienda?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: 'La longitud del título debe ser de al menos 3 caracteres',
|
|
718
722
|
descriptionValidationError: 'La longitud de la descripción debe estar entre 3 y 160 caracteres'
|
|
@@ -794,7 +798,7 @@ export default {
|
|
|
794
798
|
name: 'Nombre de tu servidor',
|
|
795
799
|
nameRequired: 'Se requiere una descripción del servidor',
|
|
796
800
|
namePlaceholder: 'Nombre del servidor',
|
|
797
|
-
description: '
|
|
801
|
+
description: 'Description tu servidor',
|
|
798
802
|
descriptionHolder: 'Descripción del servidor',
|
|
799
803
|
descriptionRequired: 'Se requiere una descripción del servidor',
|
|
800
804
|
domain: 'Tu nombre de dominio del servidor',
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'Dominio',
|
|
1689
1693
|
domainDescription: 'Se requiere el dominio de Auth0',
|
|
1690
1694
|
clientId: 'ID de cliente',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'Clave secreta de cliente'
|
|
1695
|
+
clientIdDescription: 'Se requiere el clientId de Auth0',
|
|
1696
|
+
clientSecret: 'Clave secreta de cliente',
|
|
1697
|
+
clientSecretDescription: 'Se requiere el secreto de cliente de la aplicación Auth0 OAuth'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: 'Más métodos de inicio de sesión están en construcción',
|
|
1695
1700
|
moreLogin: 'Inicio de sesión',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Habilitar inicio de sesión de GitHub',
|
|
1700
1705
|
clientId: 'Id. de cliente',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'Se requiere clientId de la aplicación OAuth de Github',
|
|
1702
1707
|
clientSecret: 'Cliente Secreto',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'La información clientSecret de la aplicación de Github OAuth es obligatoria'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'Habilitar inicio de sesión de Google',
|
|
1707
1712
|
clientId: 'ID de Cliente',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'Se requiere el clientId de la aplicación de Google OAuth',
|
|
1709
1714
|
clientSecret: 'secreto del cliente',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'La clave secreta del cliente de la aplicación OAuth de Google es obligatoria'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Habilitar inicio de sesión con Apple',
|
|
1714
1719
|
teamId: 'Identificación del equipo',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'Se requiere el Id del equipo para la aplicación OAuth de Apple',
|
|
1716
1721
|
serviceId: 'ID de Servicio',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'Se requiere el ID del servicio de la aplicación Apple OAuth',
|
|
1718
1723
|
keyId: 'ID de la clave',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'Se requiere la identificación de clave de aplicación OAuth de Apple',
|
|
1720
1725
|
authKey: 'Clave de Autenticación',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Se requiere la clave de autenticación de la aplicación OAuth de Apple',
|
|
1727
|
+
bundleId: 'Bundle ID',
|
|
1728
|
+
bundleIdDescription: 'Se requiere el ID del paquete de la aplicación OAuth de Apple'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: 'Ingreso de Tercera Parte'
|
|
1724
1731
|
},
|
package/es/locales/fr.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: 'Corrompu',
|
|
550
550
|
purchasing: "En attente d'achat",
|
|
551
551
|
purchased: 'Acheté',
|
|
552
|
-
verifying: "Vérification de l'achat"
|
|
552
|
+
verifying: "Vérification de l'achat",
|
|
553
|
+
resource: 'Ressource'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'Télécharger',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: 'Vous ne pourrez plus publier de nouvelles versions du bloc supprimé, ce qui signifie que le bloc ne sera plus mis à jour dans le Store.',
|
|
713
714
|
tip3: "La suppression du Blocklet n'affectera pas sa version actuellement publiée dans le Store.",
|
|
714
715
|
description: 'Après avoir supprimé le Blocklet, vous rencontrerez les problèmes suivants. Êtes-vous sûr de vouloir le supprimer ?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: 'Actuellement, en tant que bloc de ressources, il ne peut pas être installé directement depuis le Store.',
|
|
718
|
+
whyCantSeeInStore: 'Pourquoi je ne peux pas voir ce blocklet dans le Store?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: 'Pourquoi je ne peux pas voir ce Blocklet de ressources dans le magasin ?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: "La longueur du titre doit être d'au moins 3 caractères",
|
|
718
722
|
descriptionValidationError: 'La longueur de la description doit être comprise entre 3 et 160 caractères'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'Domaine',
|
|
1689
1693
|
domainDescription: "Le domaine d'Auth0 est requis",
|
|
1690
1694
|
clientId: 'Identifiant client',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'Secret du client'
|
|
1695
|
+
clientIdDescription: "Le clientId d'Auth0 est requis",
|
|
1696
|
+
clientSecret: 'Secret du client',
|
|
1697
|
+
clientSecretDescription: "Le secret client de l'application Auth0 OAuth est requis"
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: 'Plus de méthodes de connexion sont en cours de construction.',
|
|
1695
1700
|
moreLogin: 'Plus de connexion',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Activer la connexion Github',
|
|
1700
1705
|
clientId: 'Identifiant client',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: "L'application Github OAuth nécessite un clientId",
|
|
1702
1707
|
clientSecret: 'Secret client',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: "L'application Github OAuth nécessite un clientSecret"
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'Activer la connexion Google',
|
|
1707
1712
|
clientId: 'Identifiant client',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: "L'identifiant de l'application Google OAuth est nécessaire",
|
|
1709
1714
|
clientSecret: 'Client secret',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: "L'application Google OAuth nécessite un clientSecret"
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Activer la connexion Apple',
|
|
1714
1719
|
teamId: "Identifiant d'équipe",
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: "Un identifiant d'équipe est nécessaire pour l'application Apple OAuth",
|
|
1716
1721
|
serviceId: 'Identifiant de service',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: "Un identifiant de service est nécessaire pour l'application Apple OAuth",
|
|
1718
1723
|
keyId: 'Clé ID',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: "Une clé d'application OAuth Apple est requise",
|
|
1720
1725
|
authKey: 'Clé Auth',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: "Clé d'authentification pour l'application Apple OAuth requise",
|
|
1727
|
+
bundleId: 'Bundle ID',
|
|
1728
|
+
bundleIdDescription: "L'ID de bundle de l'application Apple OAuth est requis"
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: 'Connexion tierce partie'
|
|
1724
1731
|
},
|
package/es/locales/hi.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: 'भ्रष्ट',
|
|
550
550
|
purchasing: 'खरीदारी की प्रतीक्षा कर रहा हूँ',
|
|
551
551
|
purchased: 'ख़रीदा हुआ',
|
|
552
|
-
verifying: 'खरीद सत्यापित करें'
|
|
552
|
+
verifying: 'खरीद सत्यापित करें',
|
|
553
|
+
resource: 'संसाधन'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'डाउनलोड करें',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: 'आप अब नष्ट किए गए ब्लॉकलेट को नई संस्करणों को प्रकाशित करने के लिए उपयोग नहीं कर पाएंगे, जिसका मतलब है कि स्टोर में ब्लॉकलेट अब अद्यतित नहीं होगा।',
|
|
713
714
|
tip3: 'ब्लॉकलेट को हटाने से स्टोर में वर्तमान में प्रकाशित संस्करण पर कोई प्रभाव नहीं पड़ेगा।',
|
|
714
715
|
description: 'ब्लॉकलेट को हटाने के बाद, आप निम्नलिखित समस्याओं का सामना करेंगे, क्या आप वाकई इसे हटाना चाहते हैं?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: 'वर्तमान में, रिसोर्स ब्लॉकलेट के रूप में, यह स्टोर से सीधे स्थापित नहीं किया जा सकता है।',
|
|
718
|
+
whyCantSeeInStore: 'क्यों मुझे स्टोर में इस ब्लॉकलेट को नहीं देख सकता?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: 'क्यों मुझे दुकान में इस संसाधन ब्लॉकलेट को नहीं देख सकता हूँ?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: 'शीर्षक की लंबाई कम से कम 3 अक्षर होनी चाहिए',
|
|
718
722
|
descriptionValidationError: 'विवरण की लंबाई 3 और 160 वर्णों के बीच होनी चाहिए'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'डोमेन',
|
|
1689
1693
|
domainDescription: 'Auth0 के डोमेन की आवश्यकता है',
|
|
1690
1694
|
clientId: 'क्लाइंट आईडी',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'क्लाइंट सीक्रेट'
|
|
1695
|
+
clientIdDescription: 'Auth0 की clientId की आवश्यकता है',
|
|
1696
|
+
clientSecret: 'क्लाइंट सीक्रेट',
|
|
1697
|
+
clientSecretDescription: 'Auth0 OAuth ऍप्लिकेशन क्लाइंट सीक्रेट आवश्यक है'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: 'और लॉगिन विधियाँ निर्माणाधीन हैं।',
|
|
1695
1700
|
moreLogin: 'लॉगिन को अधिक करें',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'एनएबल गिटहब लॉगिन',
|
|
1700
1705
|
clientId: 'क्लायंट आईडी',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'गिटहब ओएचएच एप्लिकेशन के लिए क्लायंट आईडी आवश्यक है',
|
|
1702
1707
|
clientSecret: 'क्लायंट सिक्रेट',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'गिटहब ओएचएच एप्लिकेशन के लिए क्लाइंट सिक्रेट आवश्यक है'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'गूगल लॉगिन सक्रिय करें',
|
|
1707
1712
|
clientId: 'क्लायंट आईडी',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'गूगल ओएचएच ऐप्लिकेशन के लिए क्लायंट आईडी आवश्यक है',
|
|
1709
1714
|
clientSecret: 'ग्राहक गुप्त',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'गूगल ओएचएच एप्लिकेशन के लिए clientSecret आवश्यक है'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Apple लॉगिन सक्षम करें',
|
|
1714
1719
|
teamId: 'टीम आईडी',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'एप्पल ओएचएटी (OAuth) अनुप्रयोग के लिए टीम आईडी आवश्यक है',
|
|
1716
1721
|
serviceId: 'सेवा आईडी',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'एप्पल ओएचएट अनुप्रयोग के लिए सेवा आईडी आवश्यक है',
|
|
1718
1723
|
keyId: 'की आईडी',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'एप्पल ओएचएट के लिए अनुप्रयोग की की-ID आवश्यक है',
|
|
1720
1725
|
authKey: 'ऑथ की',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Apple OAuth एप्लीकेशन ऑथ कुंजी आवश्यक है',
|
|
1727
|
+
bundleId: 'बंडल ID',
|
|
1728
|
+
bundleIdDescription: 'एप्पल OAuth एप्लिकेशन बंडल ID आवश्यक है'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: 'ट्हर्ड पार्टी लॉगिन'
|
|
1724
1731
|
},
|
package/es/locales/i18n.db
CHANGED
|
Binary file
|
package/es/locales/id.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: 'Rusak',
|
|
550
550
|
purchasing: 'Menunggu pembelian',
|
|
551
551
|
purchased: 'Dibeli',
|
|
552
|
-
verifying: 'Memverifikasi pembelian'
|
|
552
|
+
verifying: 'Memverifikasi pembelian',
|
|
553
|
+
resource: 'Sumber daya'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'Unduh',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: 'Anda tidak akan lagi dapat menerbitkan versi baru ke Blocklet yang dihapus, yang berarti bahwa Blocklet tidak akan diperbarui lagi di Toko.',
|
|
713
714
|
tip3: 'Menghapus Blocklet tidak akan mempengaruhi versi yang saat ini dipublikasikan di Toko.',
|
|
714
715
|
description: 'Setelah menghapus Blocklet, Anda akan menghadapi masalah berikut, apakah Anda yakin ingin menghapusnya?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: 'Saat ini, sebagai Blok Sumber Daya, tidak dapat diinstal langsung dari Toko.',
|
|
718
|
+
whyCantSeeInStore: 'Mengapa saya tidak dapat melihat blok ini di Toko?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: 'Mengapa saya tidak bisa melihat Resource Blocklet ini di Toko?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: 'Panjang judul harus setidaknya 3 karakter',
|
|
718
722
|
descriptionValidationError: 'Panjang deskripsi harus antara 3 dan 160 karakter.'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'Domain',
|
|
1689
1693
|
domainDescription: 'Domain Auth0 diperlukan',
|
|
1690
1694
|
clientId: 'ID klien',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'Rahasia klien'
|
|
1695
|
+
clientIdDescription: 'Auth0 clientId diperlukan',
|
|
1696
|
+
clientSecret: 'Rahasia klien',
|
|
1697
|
+
clientSecretDescription: 'Rahasia Klien aplikasi OAuth Auth0 diperlukan'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: 'Metode login lebih banyak sedang dalam konstruksi',
|
|
1695
1700
|
moreLogin: 'Masuk lebih lanjut',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Aktifkan login Github',
|
|
1700
1705
|
clientId: 'ID Klien',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'Kode klien aplikasi OAuth Github diperlukan',
|
|
1702
1707
|
clientSecret: 'Rahasia Klien',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'ClientSecret aplikasi Github OAuth diperlukan'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'Aktifkan masuk Google',
|
|
1707
1712
|
clientId: 'ID Klien',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'Kode klien aplikasi Google OAuth diperlukan',
|
|
1709
1714
|
clientSecret: 'Rahasia Klien',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'clientSecret aplikasi OAuth Google diperlukan'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Aktifkan login Apple',
|
|
1714
1719
|
teamId: 'ID Tim',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'ID Tim Aplikasi OAuth Apple diperlukan',
|
|
1716
1721
|
serviceId: 'ID layanan',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'ID Service aplikasi OAuth Apple diperlukan.',
|
|
1718
1723
|
keyId: 'ID kunci',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'ID aplikasi Apple OAuth diperlukan',
|
|
1720
1725
|
authKey: 'Kunci Auth',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Kunci Otentikasi Aplikasi OAuth Apple diperlukan',
|
|
1727
|
+
bundleId: 'Bundle ID',
|
|
1728
|
+
bundleIdDescription: 'Bundle ID aplikasi Apple OAuth diperlukan'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: 'Login Pihak Ketiga'
|
|
1724
1731
|
},
|
package/es/locales/ja.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: '破損した',
|
|
550
550
|
purchasing: '購入を待っています',
|
|
551
551
|
purchased: '購入されました',
|
|
552
|
-
verifying: '購入を確認する'
|
|
552
|
+
verifying: '購入を確認する',
|
|
553
|
+
resource: 'リソース'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'ダウンロード',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: '削除されたBlockletに新しいバージョンを公開することはできなくなりますので、Blockletはもはやストアで更新されません。',
|
|
713
714
|
tip3: 'ブロックを削除しても、ストアで現在公開されているバージョンには影響しません。',
|
|
714
715
|
description: 'ブロックレットを削除すると、次の問題が発生します。本当に削除しますか?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: '現在、リソースブロックレットとしては、ストアから直接インストールすることはできません。',
|
|
718
|
+
whyCantSeeInStore: 'なぜこのブロックレットをストアで見ることができないのですか?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: 'なぜ私はこのリソースブロックレットをストアで見ることができないのですか?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: 'タイトルの長さは最低3文字以上である必要があります',
|
|
718
722
|
descriptionValidationError: '説明の長さは3から160文字の間でなければなりません'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'ドメイン',
|
|
1689
1693
|
domainDescription: 'Auth0のドメインが必要です',
|
|
1690
1694
|
clientId: 'クライアントID',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'クライアントシークレット'
|
|
1695
|
+
clientIdDescription: 'Auth0 のクライアントIDが必要です',
|
|
1696
|
+
clientSecret: 'クライアントシークレット',
|
|
1697
|
+
clientSecretDescription: 'Auth0 OAuth アプリケーションのクライアントシークレットが必要です'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: '他のログイン方法が準備中です',
|
|
1695
1700
|
moreLogin: 'ログイン',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Github ログインを有効にする',
|
|
1700
1705
|
clientId: 'クライアント ID',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'Github OAuth アプリケーションのクライアント ID が必要です',
|
|
1702
1707
|
clientSecret: 'クライアントシークレット',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'Github OAuth アプリケーションの clientSecret 情報は必須です'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'Googleログインを有効にする',
|
|
1707
1712
|
clientId: 'クライアントID',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'Google OAuthアプリケーションのクライアントIDが必要です',
|
|
1709
1714
|
clientSecret: 'クライアントシークレット',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'Google OAuth アプリケーションの clientSecret が必要です'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Appleログインを有効にする',
|
|
1714
1719
|
teamId: 'チーム ID',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'Apple OAuth アプリケーションのチーム ID が必要です',
|
|
1716
1721
|
serviceId: 'サービスID',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'Apple OAuth アプリケーションサービス ID が必要です',
|
|
1718
1723
|
keyId: 'キー ID',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'Apple OAuth アプリケーションのキー ID が必要です',
|
|
1720
1725
|
authKey: '認証キー',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Apple OAuthアプリケーションの認証キーが必要です',
|
|
1727
|
+
bundleId: 'バンドル ID',
|
|
1728
|
+
bundleIdDescription: 'Apple OAuth アプリケーションバンドル ID は必須です'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: '第三者ログイン'
|
|
1724
1731
|
},
|
package/es/locales/ko.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: '손상된',
|
|
550
550
|
purchasing: '구매를 기다리는 중',
|
|
551
551
|
purchased: '구매한',
|
|
552
|
-
verifying: '구매 확인 중'
|
|
552
|
+
verifying: '구매 확인 중',
|
|
553
|
+
resource: '자원'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: '다운로드',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: '삭제된 블록릿에 새로운 버전을 게시할 수 없으므로, 블록릿은 더 이상 스토어에서 업데이트되지 않습니다.',
|
|
713
714
|
tip3: '블록을 삭제하더라도 스토어에서 현재 공개된 버전에는 영향을 주지 않습니다.',
|
|
714
715
|
description: 'Blocklet을 삭제한 후 다음과 같은 문제가 발생합니다. 삭제하시겠습니까?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: '현재, 리소스 블록릿으로서, 직접 상점에서 설치할 수 없습니다.',
|
|
718
|
+
whyCantSeeInStore: '왜 스토어에서 이 블록렛을 볼 수 없는 거죠?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: '왜 이 리소스 블록릿을 상점에서 볼 수 없는 것인가요?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: '제목 길이는 최소 3자 이상이어야 합니다',
|
|
718
722
|
descriptionValidationError: '설명 길이는 3에서 160자 사이여야 합니다'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: '도메인',
|
|
1689
1693
|
domainDescription: 'Auth0 도메인이 필요합니다',
|
|
1690
1694
|
clientId: '고객 ID',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: '클라이언트 시크릿'
|
|
1695
|
+
clientIdDescription: 'Auth0의 클라이언트 ID가 필요합니다',
|
|
1696
|
+
clientSecret: '클라이언트 시크릿',
|
|
1697
|
+
clientSecretDescription: 'Auth0 OAuth 애플리케이션 클라이언트 비밀이 필요합니다'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: '더 많은 로그인 방법이 구축 중입니다',
|
|
1695
1700
|
moreLogin: '로그인',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Github 로그인 활성화',
|
|
1700
1705
|
clientId: '클라이언트 ID',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'Github OAuth 응용 프로그램 클라이언트 ID가 필요합니다',
|
|
1702
1707
|
clientSecret: '클라이언트 시크릿',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'Github OAuth 애플리케이션 clientSecret 정보가 필요합니다'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: '구글 로그인 활성화',
|
|
1707
1712
|
clientId: '고객 ID',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'Google OAuth 애플리케이션 클라이언트 ID가 필요합니다',
|
|
1709
1714
|
clientSecret: '클라이언트 암호',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'Google OAuth 애플리케이션 clientSecret이 필수입니다'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Apple 로그인 활성화',
|
|
1714
1719
|
teamId: '팀 ID',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'Apple OAuth 애플리케이션 팀 ID가 필요합니다',
|
|
1716
1721
|
serviceId: '서비스 ID',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'Apple OAuth 애플리케이션 서비스 ID가 필요합니다',
|
|
1718
1723
|
keyId: '키 ID',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'Apple OAuth 애플리케이션 키 ID가 필요합니다',
|
|
1720
1725
|
authKey: '인증 키',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Apple OAuth 애플리케이션 인증 키가 필요합니다',
|
|
1727
|
+
bundleId: '번들 ID',
|
|
1728
|
+
bundleIdDescription: 'Apple OAuth 애플리케이션 번들 ID 필수'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: '제 3자 로그인'
|
|
1724
1731
|
},
|
package/es/locales/pt.js
CHANGED
|
@@ -549,7 +549,8 @@ export default {
|
|
|
549
549
|
corrupted: 'Corrompido',
|
|
550
550
|
purchasing: 'Aguardando a compra',
|
|
551
551
|
purchased: 'Comprado',
|
|
552
|
-
verifying: 'Verificando compra'
|
|
552
|
+
verifying: 'Verificando compra',
|
|
553
|
+
resource: 'Recurso'
|
|
553
554
|
},
|
|
554
555
|
list: {
|
|
555
556
|
download: 'Baixar',
|
|
@@ -712,7 +713,10 @@ export default {
|
|
|
712
713
|
tip2: 'Você não poderá mais publicar novas versões para o Blocklet excluído, o que significa que o Blocklet não será mais atualizado na Loja.',
|
|
713
714
|
tip3: 'Excluir o Bloco não afetará sua versão atualmente publicada na Loja.',
|
|
714
715
|
description: 'Após excluir o Blocklet, você enfrentará os seguintes problemas, você tem certeza de que deseja excluí-lo?'
|
|
715
|
-
}
|
|
716
|
+
},
|
|
717
|
+
resourceTip: 'Atualmente, como um Bloquete de Recursos, ele não pode ser instalado diretamente da Loja.',
|
|
718
|
+
whyCantSeeInStore: 'Por que não consigo ver este bloco na loja?',
|
|
719
|
+
whyCantSeeResourceBlockletInStore: 'Por que não consigo ver este Resource Blocklet na Loja?'
|
|
716
720
|
},
|
|
717
721
|
titleValidationError: 'O comprimento do título deve ter pelo menos 3 caracteres',
|
|
718
722
|
descriptionValidationError: 'O comprimento da descrição deve estar entre 3 e 160 caracteres.'
|
|
@@ -1688,8 +1692,9 @@ export default {
|
|
|
1688
1692
|
domain: 'Domínio',
|
|
1689
1693
|
domainDescription: 'O domínio do Auth0 é obrigatório',
|
|
1690
1694
|
clientId: 'ID do cliente',
|
|
1691
|
-
|
|
1692
|
-
clientSecret: 'Segredo do cliente'
|
|
1695
|
+
clientIdDescription: 'O clientId do Auth0 é obrigatório',
|
|
1696
|
+
clientSecret: 'Segredo do cliente',
|
|
1697
|
+
clientSecretDescription: 'Client Secret do aplicativo OAuth do Auth0 é obrigatório'
|
|
1693
1698
|
},
|
|
1694
1699
|
comingSoon: 'Mais métodos de login estão em construção',
|
|
1695
1700
|
moreLogin: 'Mais Entrar',
|
|
@@ -1698,27 +1703,29 @@ export default {
|
|
|
1698
1703
|
github: {
|
|
1699
1704
|
enable: 'Ativar login do Github',
|
|
1700
1705
|
clientId: 'ID do Cliente',
|
|
1701
|
-
|
|
1706
|
+
clientIdDescription: 'O clientId da aplicação OAuth do Github é necessário',
|
|
1702
1707
|
clientSecret: 'Segredo do Cliente',
|
|
1703
|
-
|
|
1708
|
+
clientSecretDescription: 'O segredo do cliente de aplicativo OAuth Github é necessário'
|
|
1704
1709
|
},
|
|
1705
1710
|
google: {
|
|
1706
1711
|
enable: 'Ativar login do Google',
|
|
1707
1712
|
clientId: 'ID do Cliente',
|
|
1708
|
-
|
|
1713
|
+
clientIdDescription: 'O clientId do aplicativo Google OAuth é necessário',
|
|
1709
1714
|
clientSecret: 'Segredo do Cliente',
|
|
1710
|
-
|
|
1715
|
+
clientSecretDescription: 'O clientSecret do aplicativo OAuth do Google é necessário'
|
|
1711
1716
|
},
|
|
1712
1717
|
apple: {
|
|
1713
1718
|
enable: 'Ativar login Apple',
|
|
1714
1719
|
teamId: 'ID da Equipe',
|
|
1715
|
-
|
|
1720
|
+
teamIdDescription: 'O ID da equipe do aplicativo OAuth da Apple é necessário',
|
|
1716
1721
|
serviceId: 'ID do serviço',
|
|
1717
|
-
|
|
1722
|
+
serviceIdDescription: 'O ID do serviço do aplicativo Apple OAuth é necessário.',
|
|
1718
1723
|
keyId: 'Identificação da chave',
|
|
1719
|
-
|
|
1724
|
+
keyIdDescription: 'É necessário o ID do aplicativo Apple OAuth',
|
|
1720
1725
|
authKey: 'Chave Auth',
|
|
1721
|
-
|
|
1726
|
+
authKeyDescription: 'Chave de Autorização do Aplicativo Apple OAuth necessária',
|
|
1727
|
+
bundleId: 'Bundle ID',
|
|
1728
|
+
bundleIdDescription: 'O Bundle ID do aplicativo do Apple OAuth é obrigatório'
|
|
1722
1729
|
},
|
|
1723
1730
|
oauth: 'Terceiros de login'
|
|
1724
1731
|
},
|