@abtnode/ux 1.16.28 → 1.16.29-beta-e04c6f40
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/lib/blocklet/add-cert.js +2 -2
- package/lib/blocklet/component/add-component/add-component-core.js +2 -2
- package/lib/blocklet/component/did-space/connect-to.js +2 -2
- package/lib/blocklet/install-from-url.js +2 -2
- package/lib/blocklet/migration.js +2 -2
- package/lib/blocklet/notification/push-kit.js +17 -3
- package/lib/blocklet/publish/create-release/blocklets.js +1 -1
- package/lib/blocklet/publish/create-release/branding.js +2 -1
- package/lib/blocklet/publish/create-release/connect-store-button.js +99 -23
- package/lib/blocklet/publish/create-release/connect-store-list.js +37 -29
- package/lib/blocklet/publish/create-release/index.js +5 -2
- package/lib/blocklet/publish/release-list.js +2 -1
- package/lib/blocklet/storage/connect-to.js +2 -2
- package/lib/blocklet/transfer-owner.js +2 -2
- package/lib/hooks/use-navigation.js +31 -2
- package/lib/invitation/invitation-receive.js +46 -25
- package/lib/invitation/invitation.js +4 -4
- package/lib/locales/ar.js +15 -4
- package/lib/locales/de.js +15 -4
- package/lib/locales/en.js +14 -3
- package/lib/locales/es.js +15 -4
- package/lib/locales/fr.js +15 -4
- package/lib/locales/hi.js +15 -4
- package/lib/locales/i18n.db +0 -0
- package/lib/locales/id.js +15 -4
- package/lib/locales/ja.js +15 -4
- package/lib/locales/ko.js +15 -4
- package/lib/locales/pt.js +15 -4
- package/lib/locales/ru.js +15 -4
- package/lib/locales/th.js +15 -4
- package/lib/locales/vi.js +15 -4
- package/lib/locales/zh-tw.js +15 -4
- package/lib/locales/zh.js +15 -4
- package/lib/store/add.js +31 -13
- package/lib/store/connect-actions.js +18 -18
- package/lib/store/item.js +30 -5
- package/lib/team/members/index.js +33 -1
- package/lib/team/members/invite-member.js +99 -67
- package/lib/team/members/issue-passport.js +2 -2
- package/lib/team/members/transfer-node.js +5 -5
- package/lib/team/passports/mutate-role.js +2 -2
- package/lib/util/index.js +1 -1
- package/lib/util/sdk.js +3 -0
- package/package.json +8 -7
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { useCallback } from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
3
2
|
import styled from '@emotion/styled';
|
|
4
3
|
import { useLocaleContext } from '@arcblock/ux/lib/Locale/context';
|
|
5
4
|
import DidButton from '@arcblock/did-connect/lib/Button';
|
|
6
5
|
import { AUTH_SERVICE_PREFIX, API_DID_PREFIX } from '@arcblock/did-connect/lib/constant';
|
|
7
6
|
import { joinURL } from 'ufo';
|
|
7
|
+
import { useMemoizedFn, useMount, useReactive } from 'ahooks';
|
|
8
8
|
import { formatDateTime } from '../util';
|
|
9
9
|
import usePassportId from '../hooks/use-passport-id';
|
|
10
10
|
import { useSessionContext } from '../contexts/session';
|
|
11
|
+
import blockletSdk from '../util/sdk';
|
|
11
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
13
|
function InvitationReceive({
|
|
13
14
|
invitation,
|
|
@@ -30,28 +31,47 @@ function InvitationReceive({
|
|
|
30
31
|
if (typeof window !== 'undefined') {
|
|
31
32
|
componentId = window?.blocklet?.componentId;
|
|
32
33
|
}
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
34
|
+
const currentState = useReactive({
|
|
35
|
+
loading: false,
|
|
36
|
+
extraParams: {
|
|
37
|
+
// 生成 passport 信息需要 baseUrl 字段
|
|
38
|
+
baseUrl: window.location.origin,
|
|
39
|
+
componentId,
|
|
40
|
+
sourceAppPid: invitation?.sourceAppPid || null
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
useMount(async () => {
|
|
44
|
+
const passportId = getPassportId();
|
|
45
|
+
if (passportId) {
|
|
46
|
+
currentState.extraParams.passportId = passportId;
|
|
47
|
+
}
|
|
48
|
+
if (action === 'invite') {
|
|
49
|
+
currentState.extraParams.inviteId = invitation.inviteId;
|
|
50
|
+
} else if (action === 'issue-passport') {
|
|
51
|
+
currentState.extraParams.id = invitation.inviteId;
|
|
52
|
+
}
|
|
53
|
+
if (inService && invitation?.receiver?.did) {
|
|
54
|
+
currentState.loading = true;
|
|
55
|
+
try {
|
|
56
|
+
const publicInfo = await blockletSdk.user.getUserPublicInfo({
|
|
57
|
+
did: invitation.receiver.did
|
|
58
|
+
});
|
|
59
|
+
if (publicInfo?.sourceAppPid) {
|
|
60
|
+
currentState.extraParams.sourceAppPid = publicInfo.sourceAppPid;
|
|
61
|
+
}
|
|
62
|
+
} finally {
|
|
63
|
+
currentState.loading = false;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
const onClose = useMemoizedFn(() => {
|
|
48
68
|
connectApi.close();
|
|
49
|
-
}
|
|
50
|
-
const onSuccess =
|
|
69
|
+
});
|
|
70
|
+
const onSuccess = useMemoizedFn((...args) => {
|
|
51
71
|
connectApi.close();
|
|
52
72
|
onLogin(...args);
|
|
53
|
-
}
|
|
54
|
-
const onClickReceive =
|
|
73
|
+
});
|
|
74
|
+
const onClickReceive = useMemoizedFn(() => {
|
|
55
75
|
if (typeof onReceive === 'function') {
|
|
56
76
|
onReceive();
|
|
57
77
|
return;
|
|
@@ -62,10 +82,11 @@ function InvitationReceive({
|
|
|
62
82
|
className: 'connect',
|
|
63
83
|
forceConnected: invitation?.receiver?.did || false,
|
|
64
84
|
autoConnect: false,
|
|
85
|
+
disableSwitchApp: true,
|
|
65
86
|
locale,
|
|
66
87
|
extraParams: {
|
|
67
88
|
provider: 'wallet',
|
|
68
|
-
...extraParams
|
|
89
|
+
...currentState.extraParams
|
|
69
90
|
},
|
|
70
91
|
baseUrl: window.location.origin,
|
|
71
92
|
prefix: joinURL(window.location.origin, AUTH_SERVICE_PREFIX, API_DID_PREFIX),
|
|
@@ -86,8 +107,9 @@ function InvitationReceive({
|
|
|
86
107
|
className: 'connect',
|
|
87
108
|
forceConnected: invitation?.receiver?.did || false,
|
|
88
109
|
autoConnect: false,
|
|
110
|
+
disableSwitchApp: true,
|
|
89
111
|
locale,
|
|
90
|
-
extraParams,
|
|
112
|
+
extraParams: currentState.extraParams,
|
|
91
113
|
messages: {
|
|
92
114
|
title: t('receive.dialog.title'),
|
|
93
115
|
scan: t('receive.dialog.scan'),
|
|
@@ -98,11 +120,10 @@ function InvitationReceive({
|
|
|
98
120
|
onClose
|
|
99
121
|
});
|
|
100
122
|
}
|
|
101
|
-
|
|
102
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
103
|
-
}, [connectApi.openPopup]);
|
|
123
|
+
});
|
|
104
124
|
return /*#__PURE__*/_jsxs(Root, {
|
|
105
125
|
children: [/*#__PURE__*/_jsx(DidButton, {
|
|
126
|
+
loading: currentState.loading,
|
|
106
127
|
size: "large",
|
|
107
128
|
variant: "contained",
|
|
108
129
|
className: "invite-receive__button",
|
|
@@ -34,8 +34,8 @@ function Invitation({
|
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
36
|
const isSuccess = status === 'success' || state?.data?.status === 'success';
|
|
37
|
-
const
|
|
38
|
-
const
|
|
37
|
+
const SectionHeader = isSuccess ? InvitationSuccess : InvitationUser;
|
|
38
|
+
const SectionFooter = isSuccess ? InvitationLogin : InvitationReceive;
|
|
39
39
|
return /*#__PURE__*/_jsx(Root, {
|
|
40
40
|
className: "page-invite__wrapper",
|
|
41
41
|
children: state?.data ? /*#__PURE__*/_jsxs(_Fragment, {
|
|
@@ -43,14 +43,14 @@ function Invitation({
|
|
|
43
43
|
invitation: state.data
|
|
44
44
|
}), /*#__PURE__*/_jsxs(Box, {
|
|
45
45
|
className: "page-invite__card",
|
|
46
|
-
children: [/*#__PURE__*/_jsx(
|
|
46
|
+
children: [/*#__PURE__*/_jsx(SectionHeader, {
|
|
47
47
|
invitation: state.data
|
|
48
48
|
}), /*#__PURE__*/_jsx(InvitationPassport, {
|
|
49
49
|
invitation: state.data,
|
|
50
50
|
action: action,
|
|
51
51
|
createPassportSvg: createPassportSvg,
|
|
52
52
|
passportColor: passportColor
|
|
53
|
-
}), /*#__PURE__*/_jsx(
|
|
53
|
+
}), /*#__PURE__*/_jsx(SectionFooter, {
|
|
54
54
|
invitation: state.data,
|
|
55
55
|
action: action,
|
|
56
56
|
onLogin: onLoginSuccess,
|
package/lib/locales/ar.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'استوديو',
|
|
357
357
|
visitStore: 'زيارة المتجر',
|
|
358
358
|
reconnect: 'إعادة الاتصال',
|
|
359
|
-
change: 'تغيير'
|
|
359
|
+
change: 'تغيير',
|
|
360
|
+
disconnect: 'توقف',
|
|
361
|
+
sourceApp: 'ينتمي إلى التطبيق'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'خارجي',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'حاليًا ، كما هو الحال بوصفه كتلة مورد ، لا يمكن تثبيته مباشرة من المتجر.',
|
|
729
731
|
whyCantSeeInStore: 'لماذا لا أستطيع رؤية هذا البلوكليت في المتجر؟',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'تم إخفاء Blockletات الموارد من صفحة قائمة المتجر افتراضيًا',
|
|
731
733
|
tenantScope: 'مستأجر',
|
|
732
734
|
blockletStudio: 'استوديو بلوكليت',
|
|
733
735
|
allComponentsNotRunning: 'لا يعمل بلوكلتس، يرجى تشغيله أولاً',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'العلامة التجارية',
|
|
745
747
|
brandingHelp: 'سيتم عرض مزيد من المعلومات حول البلوكلت في المتجر',
|
|
746
748
|
resourceSelect: 'اختر موردًا من Blocklets',
|
|
747
|
-
resourceUpload: '
|
|
749
|
+
resourceUpload: 'تحميل المورد من القرص الخاص بك (الفهرس.html مطلوب في الأرشيف)',
|
|
750
|
+
deleteStoreTip: 'هل أنت متأكد أنك تريد إزالة {name} من قائمة متجر الاتصال؟',
|
|
751
|
+
disconnectStoreTip: 'سيتم حذف بلوكليت من المخزن بعد الفصل. هل أنت متأكد من أنك تريد الفصل؟'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'يجب أن يكون طول العنوان على الأقل 3 أحرف',
|
|
750
754
|
descriptionValidationError: 'يجب أن تكون طول الوصف بين 3 و 160 حرفًا'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'هل ترغب في مسح كل التنقل المخصص؟',
|
|
1613
1617
|
restConfirmDesc: 'بعد التصفية، سيتم استعادة التنقل إلى تكوين Blocklet الافتراضي الأصلي.',
|
|
1614
1618
|
resetSuccessful: 'إعادة التعيين ناجحة'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'وصول',
|
|
1621
|
+
members: 'أعضاء',
|
|
1622
|
+
passport: 'جواز سفر',
|
|
1623
|
+
analytics: 'التحليلات',
|
|
1624
|
+
dashboard: 'لوحة القيادة',
|
|
1625
|
+
studio: 'استوديو',
|
|
1626
|
+
blockletService: 'خدمة بلوكليت'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/de.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'Studio',
|
|
357
357
|
visitStore: 'Besuche den Laden',
|
|
358
358
|
reconnect: 'Verbinden wiederherstellen',
|
|
359
|
-
change: 'Ändern'
|
|
359
|
+
change: 'Ändern',
|
|
360
|
+
disconnect: 'Verbindung trennen',
|
|
361
|
+
sourceApp: 'Zur App gehörend'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'Extern',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'Zurzeit kann es als Ressourcen-Blocklet nicht direkt aus dem Store installiert werden.',
|
|
729
731
|
whyCantSeeInStore: 'Warum kann ich dieses Blocklet nicht im Store sehen?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'Ressourcen-Blocklets sind standardmäßig auf der Store-Listenseite ausgeblendet',
|
|
731
733
|
tenantScope: 'Mieter',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'Blocklets läuft nicht, bitte starten Sie es zuerst',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'Branding',
|
|
745
747
|
brandingHelp: 'Weitere Informationen über den Blocklet werden im Store angezeigt',
|
|
746
748
|
resourceSelect: 'Wählen Sie eine Ressource aus Blocklets',
|
|
747
|
-
resourceUpload: '
|
|
749
|
+
resourceUpload: 'Ressource von Ihrer Festplatte hochladen (index.html ist im Archiv erforderlich)',
|
|
750
|
+
deleteStoreTip: 'Möchten Sie {name} wirklich aus der Verbindungsliste des Stores entfernen?',
|
|
751
|
+
disconnectStoreTip: 'Das Blocklet wird nach dem Trennen aus dem Store entfernt. Möchten Sie wirklich trennen?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'Die Länge des Titels muss mindestens 3 Zeichen betragen',
|
|
750
754
|
descriptionValidationError: 'Die Beschreibungslänge muss zwischen 3 und 160 Zeichen liegen'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'Möchten Sie alle benutzerdefinierten Navigationseinstellungen löschen?',
|
|
1613
1617
|
restConfirmDesc: 'Nach dem Löschen wird die Navigation auf die ursprüngliche Standardkonfiguration von Blocklet zurückgesetzt.',
|
|
1614
1618
|
resetSuccessful: 'Reset erfolgreich'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'Zugriff',
|
|
1621
|
+
members: 'Mitglieder',
|
|
1622
|
+
passport: 'Pass',
|
|
1623
|
+
analytics: 'Analytics',
|
|
1624
|
+
dashboard: 'Dashboard',
|
|
1625
|
+
studio: 'Studio',
|
|
1626
|
+
blockletService: 'Blocklet Dienst'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/en.js
CHANGED
|
@@ -259,6 +259,7 @@ export default {
|
|
|
259
259
|
protocol: 'Protocol',
|
|
260
260
|
purchase: 'Purchase',
|
|
261
261
|
reconnect: 'Reconnect',
|
|
262
|
+
disconnect: 'Disconnect',
|
|
262
263
|
readMore: 'More',
|
|
263
264
|
redirect: 'Redirect',
|
|
264
265
|
redirectCode: 'Redirect Code',
|
|
@@ -348,7 +349,8 @@ export default {
|
|
|
348
349
|
endTime: 'End time',
|
|
349
350
|
selected: 'Selected',
|
|
350
351
|
timeoutError: 'Timeout error',
|
|
351
|
-
tags: 'Tags'
|
|
352
|
+
tags: 'Tags',
|
|
353
|
+
sourceApp: 'Belong to App'
|
|
352
354
|
},
|
|
353
355
|
blocklet: {
|
|
354
356
|
external: 'External',
|
|
@@ -660,6 +662,7 @@ export default {
|
|
|
660
662
|
branding: 'Branding',
|
|
661
663
|
brandingHelp: 'More information about the blocklet will be displayed in the Store',
|
|
662
664
|
download: 'Download {name}',
|
|
665
|
+
deleteStoreTip: 'Are you sure you want to remove {name} from the connect Store list?',
|
|
663
666
|
delete: 'Delete {name}',
|
|
664
667
|
copyInstallUrl: 'Copy Install URL',
|
|
665
668
|
createResource: 'Create Resource',
|
|
@@ -676,6 +679,7 @@ export default {
|
|
|
676
679
|
createBlockletTip: 'You can create new blocklet through existing resources, components, and configuration in this application',
|
|
677
680
|
createBlocklet: 'New blocklet',
|
|
678
681
|
reconnectStoreTip: 'After reconnecting, a new developer will be bound. Are you sure you want to reconnect?',
|
|
682
|
+
disconnectStoreTip: 'After disconnecting, the blocklet will be removed from the store. Are you sure you want to disconnect?',
|
|
679
683
|
componentNotRunning: 'Blocklet {name} is not running, please start it first',
|
|
680
684
|
allComponentsNotRunning: 'Blocklets is not running, please start it first',
|
|
681
685
|
releaseEmptyTip: "There aren't any releases here",
|
|
@@ -689,8 +693,8 @@ export default {
|
|
|
689
693
|
saveDraftSuccess: 'Draft saved successfully',
|
|
690
694
|
packTip: 'Currently blocklets can be installed directly as applications. Components and application configurations will be automatically included in the Blocklet',
|
|
691
695
|
resourceTip: 'Currently, as a Resource Blocklet, it cannot be directly installed from the Store.',
|
|
692
|
-
whyCantSeeInStore:
|
|
693
|
-
whyCantSeeResourceBlockletInStore:
|
|
696
|
+
whyCantSeeInStore: 'You need to publish the blocklet on connected store before you can see it in the store listing page',
|
|
697
|
+
whyCantSeeResourceBlockletInStore: 'Resource Blocklet are hidden from the store listing page by default',
|
|
694
698
|
resourceChangedWarning: 'You have modified the resource, please save it in time',
|
|
695
699
|
install: 'Install {name}',
|
|
696
700
|
installResourceTip: 'Install Url:',
|
|
@@ -1564,6 +1568,13 @@ export default {
|
|
|
1564
1568
|
},
|
|
1565
1569
|
navigation: {
|
|
1566
1570
|
navigation: 'Navigation',
|
|
1571
|
+
access: 'Access',
|
|
1572
|
+
members: 'Members',
|
|
1573
|
+
passport: 'Passport',
|
|
1574
|
+
analytics: 'Analytics',
|
|
1575
|
+
dashboard: 'Dashboard',
|
|
1576
|
+
studio: 'Studio',
|
|
1577
|
+
blockletService: 'Blocklet Service',
|
|
1567
1578
|
actionFailed: 'Action Failed',
|
|
1568
1579
|
form: {
|
|
1569
1580
|
title: 'Title',
|
package/lib/locales/es.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'Estudio',
|
|
357
357
|
visitStore: 'Visitar tienda',
|
|
358
358
|
reconnect: 'Reconecta',
|
|
359
|
-
change: 'Cambiar'
|
|
359
|
+
change: 'Cambiar',
|
|
360
|
+
disconnect: 'Desconectar',
|
|
361
|
+
sourceApp: 'Pertenece a la aplicación'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'Externo',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'Actualmente, como un Bloque de Recursos, no se puede instalar directamente desde la Tienda.',
|
|
729
731
|
whyCantSeeInStore: '¿Por qué no puedo ver este blocklet en la Tienda?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'Los Blocklets de recurso están ocultos de la página de listado de la tienda de forma predeterminada',
|
|
731
733
|
tenantScope: 'Inquilino',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'Blocklets no está ejecutándose, por favor inícialo primero',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'Branding',
|
|
745
747
|
brandingHelp: 'Se mostrará más información sobre el blocklet en la tienda',
|
|
746
748
|
resourceSelect: 'Seleccionar recurso de blocklets',
|
|
747
|
-
resourceUpload: 'Cargar
|
|
749
|
+
resourceUpload: 'Cargar recurso desde tu disco (index.html es requerido en el archivo)',
|
|
750
|
+
deleteStoreTip: '¿Estás seguro de que quieres eliminar a {name} de la lista de la tienda Connect?',
|
|
751
|
+
disconnectStoreTip: 'Después de la desconexión, se eliminará el blocklet de la tienda. ¿Seguro que desea desconectar?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'La longitud del título debe ser de al menos 3 caracteres',
|
|
750
754
|
descriptionValidationError: 'La longitud de la descripción debe estar entre 3 y 160 caracteres'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: '¿Deseas borrar todas las navegaciones personalizadas?',
|
|
1613
1617
|
restConfirmDesc: 'Después de borrar, la navegación se restablecerá a la configuración predeterminada original de Blocklet',
|
|
1614
1618
|
resetSuccessful: 'Restablecimiento exitoso'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'Acceso',
|
|
1621
|
+
members: 'Miembros',
|
|
1622
|
+
passport: 'Pasaporte',
|
|
1623
|
+
analytics: 'Analítica',
|
|
1624
|
+
dashboard: 'Tablero',
|
|
1625
|
+
studio: 'Estudio',
|
|
1626
|
+
blockletService: 'Servicio de Blocklet'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/fr.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'Studio',
|
|
357
357
|
visitStore: 'Visiter le magasin',
|
|
358
358
|
reconnect: 'Reconnecter',
|
|
359
|
-
change: 'Changer'
|
|
359
|
+
change: 'Changer',
|
|
360
|
+
disconnect: 'Déconnecter',
|
|
361
|
+
sourceApp: "Appartient à l'application"
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'Externe',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'Actuellement, en tant que bloc de ressources, il ne peut pas être installé directement depuis le Store.',
|
|
729
731
|
whyCantSeeInStore: 'Pourquoi je ne peux pas voir ce blocklet dans le Store?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'Les Blocklets de ressources sont masqués par défaut de la page de liste du magasin',
|
|
731
733
|
tenantScope: 'Locataire',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: "Blocklets ne fonctionne pas, veuillez le démarrer d'abord",
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'Branding',
|
|
745
747
|
brandingHelp: "Plus d'informations sur le blocklet seront affichées dans le magasin",
|
|
746
748
|
resourceSelect: 'Sélectionnez une ressource des blocklets',
|
|
747
|
-
resourceUpload:
|
|
749
|
+
resourceUpload: "Téléchargez la ressource depuis votre disque (index.html est requis dans l'archive)",
|
|
750
|
+
deleteStoreTip: 'Êtes-vous sûr de vouloir supprimer {name} de la liste du magasin Connect?',
|
|
751
|
+
disconnectStoreTip: 'Le bloclet sera supprimé du store après sa déconnexion. Êtes-vous sûr de vouloir le déconnecter ?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: "La longueur du titre doit être d'au moins 3 caractères",
|
|
750
754
|
descriptionValidationError: 'La longueur de la description doit être comprise entre 3 et 160 caractères'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'Voulez-vous effacer toute la navigation personnalisée ?',
|
|
1613
1617
|
restConfirmDesc: 'Après un nettoyage, la navigation sera restaurée à la configuration par défaut originale de Blocklet.',
|
|
1614
1618
|
resetSuccessful: 'Réinitialisation réussie'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'Accès',
|
|
1621
|
+
members: 'Membres',
|
|
1622
|
+
passport: 'Passeport',
|
|
1623
|
+
analytics: 'Analytique',
|
|
1624
|
+
dashboard: 'Tableau de bord',
|
|
1625
|
+
studio: 'Studio',
|
|
1626
|
+
blockletService: 'Service Blocklet'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/hi.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'स्टूडियो',
|
|
357
357
|
visitStore: 'स्टोर को देखें',
|
|
358
358
|
reconnect: 'पुनः कनेक्ट करें',
|
|
359
|
-
change: 'परिवर्तन'
|
|
359
|
+
change: 'परिवर्तन',
|
|
360
|
+
disconnect: 'डिस्कनेक्ट करें',
|
|
361
|
+
sourceApp: 'ऐप से संबद्ध'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'बाहरी',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'वर्तमान में, रिसोर्स ब्लॉकलेट के रूप में, यह स्टोर से सीधे स्थापित नहीं किया जा सकता है।',
|
|
729
731
|
whyCantSeeInStore: 'क्यों मुझे स्टोर में इस ब्लॉकलेट को नहीं देख सकता?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'संसाधन ब्लॉकलेट डिफ़ॉल्ट रूप से स्टोर लिस्टिंग पेज से छुपे हुए हैं',
|
|
731
733
|
tenantScope: 'किरायेदार',
|
|
732
734
|
blockletStudio: 'ब्लॉकलेट स्टूडियो',
|
|
733
735
|
allComponentsNotRunning: 'ब्लॉकलेट्स चल नहीं रहा है, कृपया पहले इसे शुरू करें',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'ब्रांडिंग',
|
|
745
747
|
brandingHelp: 'स्टोर में ब्लॉकलेट के बारे में अधिक जानकारी दी जाएगी',
|
|
746
748
|
resourceSelect: 'ब्लॉकलेट से संसाधन का चयन करें',
|
|
747
|
-
resourceUpload: '
|
|
749
|
+
resourceUpload: 'अपनी डिस्क से संसाधन अपलोड करें (संग्रह में index.html आवश्यक है)',
|
|
750
|
+
deleteStoreTip: 'क्या आप वाकई {name} को कनेक्ट स्टोर से हटाना चाहते हैं?',
|
|
751
|
+
disconnectStoreTip: 'ब्लॉकलेट को डिस्कनेक्ट करने के बाद उसे स्टोर से हटा दिया जाएगा। क्या आप वाकई में उसे डिस्कनेक्ट करना चाहते हैं?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'शीर्षक की लंबाई कम से कम 3 अक्षर होनी चाहिए',
|
|
750
754
|
descriptionValidationError: 'विवरण की लंबाई 3 और 160 वर्णों के बीच होनी चाहिए'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'क्या आप सभी कस्टम नेविगेशन को हटाना चाहते हैं?',
|
|
1613
1617
|
restConfirmDesc: 'हटाने के बाद, नेविगेशन ब्लॉकलेट की मूल डिफ़ॉल्ट समाकृति में पुनर्स्थापित होगी।',
|
|
1614
1618
|
resetSuccessful: 'रीसेट सफल'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'पहुंच',
|
|
1621
|
+
members: 'सदस्य',
|
|
1622
|
+
passport: 'पासपोर्ट',
|
|
1623
|
+
analytics: 'विश्लेषण',
|
|
1624
|
+
dashboard: 'डैशबोर्ड',
|
|
1625
|
+
studio: 'स्टूडियो',
|
|
1626
|
+
blockletService: 'ब्लॉकलेट सेवा'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/i18n.db
CHANGED
|
Binary file
|
package/lib/locales/id.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'Studio',
|
|
357
357
|
visitStore: 'Kunjungi Toko',
|
|
358
358
|
reconnect: 'Menghubungkan kembali',
|
|
359
|
-
change: 'Perubahan'
|
|
359
|
+
change: 'Perubahan',
|
|
360
|
+
disconnect: 'Putuskan Sambungan',
|
|
361
|
+
sourceApp: 'Milik aplikasi'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'Eksternal',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'Saat ini, sebagai Blok Sumber Daya, tidak dapat diinstal langsung dari Toko.',
|
|
729
731
|
whyCantSeeInStore: 'Mengapa saya tidak dapat melihat blok ini di Toko?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'Resource Blocklet disembunyikan dari halaman daftar toko secara default',
|
|
731
733
|
tenantScope: 'Penyewa',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'Blocklets tidak sedang berjalan, harap mulai terlebih dahulu',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'Branding',
|
|
745
747
|
brandingHelp: 'Informasi lebih lanjut tentang blocklet akan ditampilkan di Toko',
|
|
746
748
|
resourceSelect: 'Pilih sumber dari blocklets',
|
|
747
|
-
resourceUpload: 'Unggah sumber daya dari disk Anda'
|
|
749
|
+
resourceUpload: 'Unggah sumber daya dari disk Anda (index.html diperlukan dalam arsip)',
|
|
750
|
+
deleteStoreTip: 'Apakah Anda yakin ingin menghapus {name} dari daftar Toko Koneksi?',
|
|
751
|
+
disconnectStoreTip: 'Setelah terputus, blocklet akan dihapus dari toko. Apa Anda yakin untuk memutuskan?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'Panjang judul harus setidaknya 3 karakter',
|
|
750
754
|
descriptionValidationError: 'Panjang deskripsi harus antara 3 dan 160 karakter.'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'Apakah Anda ingin menghapus semua navigasi kustom?',
|
|
1613
1617
|
restConfirmDesc: 'Setelah membersihkan, navigasi akan dikembalikan ke konfigurasi default asli Blocklet',
|
|
1614
1618
|
resetSuccessful: 'Reset berhasil'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'Akses',
|
|
1621
|
+
members: 'Anggota',
|
|
1622
|
+
passport: 'Paspor',
|
|
1623
|
+
analytics: 'Analitik',
|
|
1624
|
+
dashboard: 'Dasbor',
|
|
1625
|
+
studio: 'Studio',
|
|
1626
|
+
blockletService: 'Layanan Blocklet'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/ja.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'スタジオ',
|
|
357
357
|
visitStore: '店を訪れる',
|
|
358
358
|
reconnect: '再接続する',
|
|
359
|
-
change: '変更'
|
|
359
|
+
change: '変更',
|
|
360
|
+
disconnect: '接続を切る',
|
|
361
|
+
sourceApp: 'このアプリに所属'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: '外部',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: '現在、リソースブロックレットとしては、ストアから直接インストールすることはできません。',
|
|
729
731
|
whyCantSeeInStore: 'なぜこのブロックレットをストアで見ることができないのですか?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'リソースBlockletはデフォルトでストアリストページから非表示になっています',
|
|
731
733
|
tenantScope: 'テナント',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'Blockletsは動作していません、まず起動してください',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'ブランディング',
|
|
745
747
|
brandingHelp: 'ストアにブロックレットの詳細情報が表示されます',
|
|
746
748
|
resourceSelect: 'ブロックレットからリソースを選択する',
|
|
747
|
-
resourceUpload: '
|
|
749
|
+
resourceUpload: 'ディスクからリソースをアップロードします(アーカイブにindex.htmlが必要です)',
|
|
750
|
+
deleteStoreTip: '{name}を接続ストアリストから削除してもよろしいですか?',
|
|
751
|
+
disconnectStoreTip: 'ブロックレットの接続を解除すると、ブロックレットはストアから削除されます。接続を解除してもよろしいですか?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'タイトルの長さは最低3文字以上である必要があります',
|
|
750
754
|
descriptionValidationError: '説明の長さは3から160文字の間でなければなりません'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'すべてのカスタムナビゲーションをクリアしますか?',
|
|
1613
1617
|
restConfirmDesc: 'クリア後、ナビゲーションはBlockletの元のデフォルト設定に復元されます',
|
|
1614
1618
|
resetSuccessful: 'リセット成功'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'アクセス',
|
|
1621
|
+
members: 'メンバー',
|
|
1622
|
+
passport: 'パスポート',
|
|
1623
|
+
analytics: 'アナリティクス',
|
|
1624
|
+
dashboard: 'ダッシュボード',
|
|
1625
|
+
studio: 'スタジオ',
|
|
1626
|
+
blockletService: 'Blockletサービス'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/ko.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: '스튜디오',
|
|
357
357
|
visitStore: '가게 방문하기',
|
|
358
358
|
reconnect: '재연결',
|
|
359
|
-
change: '변경'
|
|
359
|
+
change: '변경',
|
|
360
|
+
disconnect: '연결 끊기',
|
|
361
|
+
sourceApp: '앱에 속함'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: '외부의',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: '현재, 리소스 블록릿으로서, 직접 상점에서 설치할 수 없습니다.',
|
|
729
731
|
whyCantSeeInStore: '왜 스토어에서 이 블록렛을 볼 수 없는 거죠?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: '리소스 블록릿은 기본적으로 상점 목록 페이지에서 숨겨져 있습니다',
|
|
731
733
|
tenantScope: '임차인',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'Blocklets가 실행되고 있지 않습니다. 먼저 시작해주세요.',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: '브랜딩',
|
|
745
747
|
brandingHelp: '블록릿에 대한 자세한 정보가 스토어에 표시됩니다',
|
|
746
748
|
resourceSelect: '블록릿에서 리소스 선택',
|
|
747
|
-
resourceUpload: '디스크에서
|
|
749
|
+
resourceUpload: '디스크에서 리소스를 업로드하세요 (아카이브에 index.html이 필요합니다)',
|
|
750
|
+
deleteStoreTip: '{name}을(를) 연결 스토어 목록에서 제거하시겠습니까?',
|
|
751
|
+
disconnectStoreTip: '연결이 끊어지면 Blocklet이 스토어에서 제거됩니다. 연결을 끊으시겠습니까?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: '제목 길이는 최소 3자 이상이어야 합니다',
|
|
750
754
|
descriptionValidationError: '설명 길이는 3에서 160자 사이여야 합니다'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: '모든 사용자 지정 내비게이션을 지우시겠습니까?',
|
|
1613
1617
|
restConfirmDesc: '클리어 후에는 내비게이션이 Blocklet의 원래 기본 설정으로 복원됩니다',
|
|
1614
1618
|
resetSuccessful: '초기화 성공'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: '접속',
|
|
1621
|
+
members: '구성원',
|
|
1622
|
+
passport: '여권',
|
|
1623
|
+
analytics: '분석',
|
|
1624
|
+
dashboard: '대시 보드',
|
|
1625
|
+
studio: '스튜디오',
|
|
1626
|
+
blockletService: '블록렛 서비스'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|
package/lib/locales/pt.js
CHANGED
|
@@ -356,7 +356,9 @@ export default {
|
|
|
356
356
|
blockletStudio: 'Estúdio',
|
|
357
357
|
visitStore: 'Visite a loja',
|
|
358
358
|
reconnect: 'Reconectar',
|
|
359
|
-
change: 'Mudança'
|
|
359
|
+
change: 'Mudança',
|
|
360
|
+
disconnect: 'Desconectar',
|
|
361
|
+
sourceApp: 'Pertence ao app'
|
|
360
362
|
},
|
|
361
363
|
blocklet: {
|
|
362
364
|
external: 'Externo',
|
|
@@ -727,7 +729,7 @@ export default {
|
|
|
727
729
|
},
|
|
728
730
|
resourceTip: 'Atualmente, como um Bloquete de Recursos, ele não pode ser instalado diretamente da Loja.',
|
|
729
731
|
whyCantSeeInStore: 'Por que não consigo ver este bloco na loja?',
|
|
730
|
-
whyCantSeeResourceBlockletInStore: '
|
|
732
|
+
whyCantSeeResourceBlockletInStore: 'Os Blocos de Recursos estão ocultos da página de listagem da loja por padrão',
|
|
731
733
|
tenantScope: 'Inquilino',
|
|
732
734
|
blockletStudio: 'Blocklet Studio',
|
|
733
735
|
allComponentsNotRunning: 'O Blocklets não está em execução, por favor, inicie-o primeiro',
|
|
@@ -744,7 +746,9 @@ export default {
|
|
|
744
746
|
branding: 'Marca',
|
|
745
747
|
brandingHelp: 'Mais informações sobre o blocklet serão exibidas na Loja',
|
|
746
748
|
resourceSelect: 'Selecionar recurso dos blocos',
|
|
747
|
-
resourceUpload: 'Carregar
|
|
749
|
+
resourceUpload: 'Carregar recurso do seu disco (index.html é necessário no arquivo)',
|
|
750
|
+
deleteStoreTip: 'Tem certeza de que deseja remover {name} da lista da Loja de Conexão?',
|
|
751
|
+
disconnectStoreTip: 'Após desconectado, o Blocklet será removido da loja. Você tem certeza que deseja desconectar?'
|
|
748
752
|
},
|
|
749
753
|
titleValidationError: 'O comprimento do título deve ter pelo menos 3 caracteres',
|
|
750
754
|
descriptionValidationError: 'O comprimento da descrição deve estar entre 3 e 160 caracteres.'
|
|
@@ -1612,7 +1616,14 @@ export default {
|
|
|
1612
1616
|
restConfirmTitle: 'Você quer limpar todas as navegações personalizadas?',
|
|
1613
1617
|
restConfirmDesc: 'Após a limpeza, a navegação será restaurada para a configuração padrão original do Blocklet',
|
|
1614
1618
|
resetSuccessful: 'Reinício bem-sucedido'
|
|
1615
|
-
}
|
|
1619
|
+
},
|
|
1620
|
+
access: 'Acesso',
|
|
1621
|
+
members: 'Membros',
|
|
1622
|
+
passport: 'Passaporte',
|
|
1623
|
+
analytics: 'Análise',
|
|
1624
|
+
dashboard: 'Painel',
|
|
1625
|
+
studio: 'Estúdio',
|
|
1626
|
+
blockletService: 'Serviço de Bloco'
|
|
1616
1627
|
},
|
|
1617
1628
|
storage: {
|
|
1618
1629
|
spaces: {
|