@abtnode/ux 1.16.25-next-bc2f4c63 → 1.16.25
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/actions.js +11 -1
- package/es/blocklet/component/add-component-core.js +5 -0
- package/es/blocklet/component/component-cell.js +2 -1
- package/es/blocklet/icons.js +3 -1
- package/es/blocklet/overview.js +13 -7
- package/es/blocklet/publish/create-release.js +150 -43
- package/es/blocklet/publish/index.js +0 -4
- package/es/blocklet/publish/project-list.js +133 -29
- package/es/blocklet/publish/release-list.js +18 -4
- package/es/blocklet/publish/resource.js +35 -32
- package/es/blocklet/router/rule-list.js +2 -1
- package/es/locales/ar.js +13 -8
- package/es/locales/de.js +13 -8
- package/es/locales/en.js +12 -7
- package/es/locales/es.js +13 -8
- package/es/locales/fr.js +13 -8
- package/es/locales/hi.js +13 -8
- package/es/locales/i18n.db +0 -0
- package/es/locales/id.js +13 -8
- package/es/locales/ja.js +13 -8
- package/es/locales/ko.js +13 -8
- package/es/locales/pt.js +13 -8
- package/es/locales/ru.js +13 -8
- package/es/locales/th.js +13 -8
- package/es/locales/vi.js +13 -8
- package/es/locales/zh-tw.js +13 -8
- package/es/locales/zh.js +17 -12
- package/es/team/members/connections.js +2 -1
- package/es/team/members/member.js +2 -1
- package/lib/blocklet/actions.js +14 -2
- package/lib/blocklet/component/add-component-core.js +1 -1
- package/lib/blocklet/component/component-cell.js +2 -1
- package/lib/blocklet/icons.js +3 -1
- package/lib/blocklet/overview.js +13 -7
- package/lib/blocklet/publish/create-release.js +154 -43
- package/lib/blocklet/publish/index.js +0 -4
- package/lib/blocklet/publish/project-list.js +133 -29
- package/lib/blocklet/publish/release-list.js +18 -4
- package/lib/blocklet/publish/resource.js +34 -31
- package/lib/blocklet/router/rule-list.js +2 -1
- package/lib/locales/ar.js +13 -8
- package/lib/locales/de.js +13 -8
- package/lib/locales/en.js +12 -7
- package/lib/locales/es.js +13 -8
- package/lib/locales/fr.js +13 -8
- package/lib/locales/hi.js +13 -8
- package/lib/locales/i18n.db +0 -0
- package/lib/locales/id.js +13 -8
- package/lib/locales/ja.js +13 -8
- package/lib/locales/ko.js +13 -8
- package/lib/locales/pt.js +13 -8
- package/lib/locales/ru.js +13 -8
- package/lib/locales/th.js +13 -8
- package/lib/locales/vi.js +13 -8
- package/lib/locales/zh-tw.js +13 -8
- package/lib/locales/zh.js +17 -12
- package/lib/team/members/connections.js +2 -1
- package/lib/team/members/member.js +2 -1
- package/package.json +16 -16
- package/es/blocklet/publish/create-project.js +0 -205
- package/lib/blocklet/publish/create-project.js +0 -215
|
@@ -11,6 +11,7 @@ import Typography from '@mui/material/Typography';
|
|
|
11
11
|
import Breadcrumbs from '@mui/material/Breadcrumbs';
|
|
12
12
|
import DownloadIcon from '@mui/icons-material/Download';
|
|
13
13
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
14
|
+
import AddIcon from '@mui/icons-material/Add';
|
|
14
15
|
import Datatable from '@arcblock/ux/lib/Datatable';
|
|
15
16
|
import { WELLKNOWN_SERVICE_PATH_PREFIX } from '@abtnode/constant';
|
|
16
17
|
import Button from '@arcblock/ux/lib/Button';
|
|
@@ -106,7 +107,15 @@ export default function ReleaseList() {
|
|
|
106
107
|
setDeleteConfirm(release);
|
|
107
108
|
};
|
|
108
109
|
if (!releases && loading) {
|
|
109
|
-
return /*#__PURE__*/_jsx(
|
|
110
|
+
return /*#__PURE__*/_jsx(Box, {
|
|
111
|
+
sx: {
|
|
112
|
+
display: 'flex',
|
|
113
|
+
justifyContent: 'center',
|
|
114
|
+
alignItems: 'center',
|
|
115
|
+
marginTop: '40px'
|
|
116
|
+
},
|
|
117
|
+
children: /*#__PURE__*/_jsx(EmptySpinner, {})
|
|
118
|
+
});
|
|
110
119
|
}
|
|
111
120
|
if (!releases) {
|
|
112
121
|
return null;
|
|
@@ -232,7 +241,7 @@ export default function ReleaseList() {
|
|
|
232
241
|
}
|
|
233
242
|
})
|
|
234
243
|
}), /*#__PURE__*/_jsx(IconButton, {
|
|
235
|
-
color: "
|
|
244
|
+
color: "primary",
|
|
236
245
|
"aria-label": "delete",
|
|
237
246
|
onClick: () => onDeleteRelease(release),
|
|
238
247
|
children: /*#__PURE__*/_jsx(DeleteIcon, {
|
|
@@ -250,9 +259,14 @@ export default function ReleaseList() {
|
|
|
250
259
|
className: "header",
|
|
251
260
|
children: [breadcrumbs, /*#__PURE__*/_jsx(Link, {
|
|
252
261
|
to: "create",
|
|
253
|
-
children: /*#__PURE__*/
|
|
262
|
+
children: /*#__PURE__*/_jsxs(Button, {
|
|
254
263
|
variant: "contained",
|
|
255
|
-
children:
|
|
264
|
+
children: [/*#__PURE__*/_jsx(AddIcon, {
|
|
265
|
+
style: {
|
|
266
|
+
fontSize: '1.3em',
|
|
267
|
+
marginRight: 4
|
|
268
|
+
}
|
|
269
|
+
}), t('blocklet.publish.createRelease')]
|
|
256
270
|
})
|
|
257
271
|
})]
|
|
258
272
|
}), /*#__PURE__*/_jsx(Datatable, {
|
|
@@ -10,7 +10,7 @@ import Toast from '@arcblock/ux/lib/Toast';
|
|
|
10
10
|
import Tree from './tree';
|
|
11
11
|
import { useNodeContext } from '../../contexts/node';
|
|
12
12
|
import { axios } from '../../util/api';
|
|
13
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
14
14
|
const fillParent = (nodes, parentId) => {
|
|
15
15
|
nodes.forEach(node => {
|
|
16
16
|
if (parentId) {
|
|
@@ -132,37 +132,40 @@ export default function Resource({
|
|
|
132
132
|
})
|
|
133
133
|
});
|
|
134
134
|
}
|
|
135
|
-
return
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
children:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
135
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
136
|
+
children: [/*#__PURE__*/_jsx(Container, {
|
|
137
|
+
className: classnames(error && 'error'),
|
|
138
|
+
children: /*#__PURE__*/_jsxs(Box, {
|
|
139
|
+
pb: 2,
|
|
140
|
+
children: [/*#__PURE__*/_jsx(Tree, {
|
|
141
|
+
data: resources,
|
|
142
|
+
value: selectedResourceIds,
|
|
143
|
+
onChange: data => {
|
|
144
|
+
setSelectedResourceIds(data);
|
|
145
|
+
},
|
|
146
|
+
disabled: loading || readonly
|
|
147
|
+
}), !readonly && warning && /*#__PURE__*/_jsx(Box, {
|
|
148
|
+
className: "footer",
|
|
149
|
+
children: /*#__PURE__*/_jsx(Button, {
|
|
150
|
+
variant: "contained",
|
|
151
|
+
disabled: loading,
|
|
152
|
+
onClick: () => _onSave(),
|
|
153
|
+
children: t('common.save')
|
|
154
|
+
})
|
|
155
|
+
})]
|
|
156
|
+
})
|
|
157
|
+
}), !!warning && /*#__PURE__*/_jsx(Box, {
|
|
158
|
+
color: "warning.main",
|
|
159
|
+
mt: 1,
|
|
160
|
+
fontSize: 14,
|
|
161
|
+
children: warning
|
|
162
|
+
}), !!error && /*#__PURE__*/_jsx(Box, {
|
|
163
|
+
color: "error.main",
|
|
164
|
+
mt: 1,
|
|
165
|
+
fontSize: 14,
|
|
166
|
+
children: error
|
|
167
|
+
})]
|
|
168
|
+
});
|
|
166
169
|
}
|
|
167
170
|
Resource.propTypes = {
|
|
168
171
|
component: PropTypes.object.isRequired,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import isUrl from 'is-url';
|
|
4
|
+
import trimEnd from 'lodash/trimEnd';
|
|
4
5
|
import useTheme from '@mui/material/styles/useTheme';
|
|
5
6
|
import Tooltip from '@mui/material/Tooltip';
|
|
6
7
|
import Box from '@mui/material/Box';
|
|
@@ -166,7 +167,7 @@ function RuleList({
|
|
|
166
167
|
fontSize: 16
|
|
167
168
|
},
|
|
168
169
|
underline: "hover",
|
|
169
|
-
children: rule.from.pathPrefix
|
|
170
|
+
children: trimEnd(rule.from.pathPrefix, '/') || '/'
|
|
170
171
|
})
|
|
171
172
|
}, rule.from.pathPrefix), /*#__PURE__*/_jsx(Box, {
|
|
172
173
|
children: hasPermission && /*#__PURE__*/_jsx("div", {
|
package/es/locales/ar.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'موارد',
|
|
656
656
|
blockletEmptyTip: 'لا توجد أي كتل هنا',
|
|
657
657
|
createBlockletTip: 'يمكنك إنشاء وحدة جديدة من خلال الموارد والمكونات والتكوين الحالي في هذا التطبيق',
|
|
658
|
-
createBlocklet: '
|
|
658
|
+
createBlocklet: 'بلوكليت جديد',
|
|
659
659
|
deleteBlockletTip: 'لا يمكن استعادة البلوكليت بعد الحذف ، يرجى التأكيد',
|
|
660
660
|
componentNotRunning: 'المكون {name} غير قيد التشغيل ، يرجى تشغيله أولاً',
|
|
661
661
|
releaseEmptyTip: 'لا توجد أي إصدارات هنا',
|
|
662
662
|
createReleaseTip: 'يمكنك إنشاء إصدار للـ بلوكليت، جنباً إلى جنب مع ملاحظات الإصدار والموارد، ليستخدمها الآخرون.',
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'إصدار جديد',
|
|
664
664
|
deleteReleaseTip: 'لا يمكن استعادة الإصدار بعد الحذف',
|
|
665
665
|
createBlockletDid: 'أنشئ من محفظة DID',
|
|
666
666
|
createReleaseSuccess: 'تم إنشاء الإصدار بنجاح',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'الوصف المطلوب للكتلة',
|
|
681
681
|
noNote: 'ملاحظة الإصدار مطلوبة'
|
|
682
682
|
},
|
|
683
|
-
packTip: 'سيتم تضمين
|
|
683
|
+
packTip: 'حالياً ، يمكن تثبيت البلوكليتس مباشرة كتطبيقات. سيتم تضمين المكونات وتكوينات التطبيق تلقائيًا في البلوكليت.',
|
|
684
684
|
resourceChangedWarning: 'لقد قمت بتعديل المورد، يرجى حفظه في الوقت المناسب',
|
|
685
|
-
installResourceTip: '
|
|
685
|
+
installResourceTip: 'رابط التثبيت:',
|
|
686
686
|
installResourceTip2: 'إذا كنت ترغب في رؤية المزيد من النصائح، يرجى زيارة',
|
|
687
687
|
installResourceHelp: 'وثيقة المساعدة',
|
|
688
688
|
componentIncluded: 'مدرج',
|
|
689
|
-
componentForceRequired: 'مجبر مطلوب'
|
|
689
|
+
componentForceRequired: 'مجبر مطلوب',
|
|
690
|
+
productListTitle: 'نشر بلوكلتس',
|
|
691
|
+
download: 'تحميل {name}',
|
|
692
|
+
delete: 'احذف {name}',
|
|
693
|
+
copyInstallUrl: 'انسخ عنوان URL للتثبيت',
|
|
694
|
+
install: 'تثبيت {name}'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: 'يجب أن يكون طول العنوان على الأقل 3 أحرف',
|
|
692
697
|
descriptionValidationError: 'يجب أن تكون طول الوصف بين 3 و 160 حرفًا'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: 'صفحة الترحيب'
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: 'ترقية خادم
|
|
798
|
+
title: 'ترقية خادم البلوكليت',
|
|
794
799
|
description: 'خلال الترقية، سيدخل خادم Blocklet الخاص بك في وضع الصيانة لبضع دقائق أثناء إكمال التحديث.',
|
|
795
800
|
dialog: "انقر فوق 'تأكيد' لتثبيت التحديث. سيدخل خادم Blocklet في وضع الصيانة حتى يتم الانتهاء من التحديث والعودة تلقائيًا إلى وضع الإنتاج.",
|
|
796
801
|
confirm: 'تطوير',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'التحقق من خادم بلوكليت الإصدار {version}',
|
|
804
809
|
rollback: 'مخدم رولباك بلوك ليت',
|
|
805
810
|
complete: 'تم ترقية النظام بنجاح!',
|
|
806
|
-
progress: 'ترقية
|
|
811
|
+
progress: 'ترقية {name}',
|
|
807
812
|
check: 'التحقق من التحديثات',
|
|
808
813
|
latest: 'أنت تستخدم أحدث إصدار.'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'تأكد من أن كل شيء على ما يرام',
|
|
819
824
|
rollback: 'قم بتنظيف الحالة القذرة',
|
|
820
825
|
complete: 'صيانة كاملة!',
|
|
821
|
-
progress: 'إعادة تشغيل
|
|
826
|
+
progress: 'إعادة تشغيل {name}'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'تمت إضافتها إلى Blocklet Launcher',
|
package/es/locales/de.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'Ressourcen',
|
|
656
656
|
blockletEmptyTip: 'Es gibt hier keine Blocklets',
|
|
657
657
|
createBlockletTip: 'Sie können über vorhandene Ressourcen, Komponenten und Konfigurationen in dieser Anwendung einen neuen Blocklet erstellen',
|
|
658
|
-
createBlocklet: '
|
|
658
|
+
createBlocklet: 'Neuer Blocklet',
|
|
659
659
|
deleteBlockletTip: 'Der Blocklet kann nach dem Löschen nicht wiederhergestellt werden, bitte bestätigen',
|
|
660
660
|
componentNotRunning: 'Komponente {name} läuft nicht, starten Sie sie bitte zuerst',
|
|
661
661
|
releaseEmptyTip: 'Hier gibt es keine Veröffentlichungen',
|
|
662
662
|
createReleaseTip: 'Du kannst eine Veröffentlichung des Blocklets erstellen, zusammen mit Versionshinweisen und Ressourcen, die andere Personen nutzen können.',
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'Neue Veröffentlichung',
|
|
664
664
|
deleteReleaseTip: 'Die Veröffentlichung kann nach Löschung nicht wiederhergestellt werden',
|
|
665
665
|
createBlockletDid: 'Erstelle aus dem DID Wallet',
|
|
666
666
|
createReleaseSuccess: 'Freigabe erfolgreich erstellt',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'Blocklet-Beschreibung ist erforderlich',
|
|
681
681
|
noNote: 'Versionshinweis wird benötigt'
|
|
682
682
|
},
|
|
683
|
-
packTip: 'Komponenten und
|
|
683
|
+
packTip: 'Derzeit können Blocklets direkt als Anwendungen installiert werden. Komponenten und Anwendungskonfigurationen werden automatisch in das Blocklet aufgenommen.',
|
|
684
684
|
resourceChangedWarning: 'Sie haben die Ressource geändert, bitte rechtzeitig speichern',
|
|
685
|
-
installResourceTip: '
|
|
685
|
+
installResourceTip: 'Installations-URL:',
|
|
686
686
|
installResourceTip2: 'Wenn du mehr Tipps sehen möchtest, besuche bitte',
|
|
687
687
|
installResourceHelp: 'Hilfe-Dokument',
|
|
688
688
|
componentIncluded: 'Eingeschlossen',
|
|
689
|
-
componentForceRequired: 'Erzwungen Erforderlich'
|
|
689
|
+
componentForceRequired: 'Erzwungen Erforderlich',
|
|
690
|
+
productListTitle: 'Veröffentliche Blocklets',
|
|
691
|
+
download: 'Download {name}',
|
|
692
|
+
delete: 'Lösche {name}',
|
|
693
|
+
copyInstallUrl: 'Kopiere Installations-URL',
|
|
694
|
+
install: 'Installiere {name}'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: 'Die Länge des Titels muss mindestens 3 Zeichen betragen',
|
|
692
697
|
descriptionValidationError: 'Die Beschreibungslänge muss zwischen 3 und 160 Zeichen liegen'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: 'Willkommen Seite'
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: 'Blocklet-Server aktualisieren
|
|
798
|
+
title: 'Blocklet-Server aktualisieren',
|
|
794
799
|
description: 'Während des Upgrades wird Ihr Blocklet Server für einige Minuten in den Wartungsmodus wechseln, während das Update abgeschlossen wird.',
|
|
795
800
|
dialog: "Klicken Sie auf 'Bestätigen', um das Update zu installieren. Der Blocklet Server wird in den Wartungsmodus wechseln, bis das Update abgeschlossen ist, und kehrt automatisch in den Produktionsmodus zurück.",
|
|
796
801
|
confirm: 'Upgrade',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'Überprüfe Blocklet Server v{version}',
|
|
804
809
|
rollback: 'Rollback Blocklet Server',
|
|
805
810
|
complete: 'Upgrade abgeschlossen!',
|
|
806
|
-
progress: '
|
|
811
|
+
progress: 'Upgrading {name}',
|
|
807
812
|
check: 'Such nach Aktualisierungen',
|
|
808
813
|
latest: 'Sie nutzen die neueste Version.'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'Stelle sicher, dass alles in Ordnung ist',
|
|
819
824
|
rollback: 'Reinige den schmutzigen Zustand',
|
|
820
825
|
complete: 'Instandhaltung komplett!',
|
|
821
|
-
progress: '
|
|
826
|
+
progress: 'Neustart {name}'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'Hinzugefügt zu Blocklet Launcher',
|
package/es/locales/en.js
CHANGED
|
@@ -642,6 +642,10 @@ export default {
|
|
|
642
642
|
isInProgress: 'Blocklet is in progress, please wait for it to finish'
|
|
643
643
|
},
|
|
644
644
|
publish: {
|
|
645
|
+
productListTitle: 'Publish Blocklets',
|
|
646
|
+
download: 'Download {name}',
|
|
647
|
+
delete: 'Delete {name}',
|
|
648
|
+
copyInstallUrl: 'Copy Install URL',
|
|
645
649
|
createResource: 'Create Resource',
|
|
646
650
|
addResource: 'Add Release',
|
|
647
651
|
productTitle: 'Product',
|
|
@@ -650,19 +654,20 @@ export default {
|
|
|
650
654
|
resourceTitle: 'Resources',
|
|
651
655
|
blockletEmptyTip: 'There aren’t any blocklets here',
|
|
652
656
|
createBlockletTip: 'You can create new blocklet through existing resources, components, and configuration in this application',
|
|
653
|
-
createBlocklet: '
|
|
657
|
+
createBlocklet: 'New blocklet',
|
|
654
658
|
deleteBlockletTip: 'The blocklet cannot be recovered after deletion, please confirm',
|
|
655
659
|
componentNotRunning: 'Component {name} is not running, please start it first',
|
|
656
660
|
releaseEmptyTip: 'There aren’t any releases here',
|
|
657
661
|
createReleaseTip: 'You can create a release of the blocklet, along with release notes and resources, for other people to use',
|
|
658
|
-
createRelease: '
|
|
662
|
+
createRelease: 'New release',
|
|
659
663
|
deleteReleaseTip: 'The release cannot be recovered after deletion',
|
|
660
664
|
createBlockletDid: 'Create from DID Wallet',
|
|
661
665
|
createReleaseSuccess: 'Release created successfully',
|
|
662
666
|
saveDraftSuccess: 'Draft saved successfully',
|
|
663
|
-
packTip: 'Components and application
|
|
667
|
+
packTip: 'Currently blocklets can be installed directly as applications. Components and application configurations will be automatically included in the Blocklet',
|
|
664
668
|
resourceChangedWarning: 'You have modified the resource, please save it in time',
|
|
665
|
-
|
|
669
|
+
install: 'Install {name}',
|
|
670
|
+
installResourceTip: 'Install Url:',
|
|
666
671
|
installResourceTip2: 'If you want to see more tips, please visit',
|
|
667
672
|
installResourceHelp: 'Help Document',
|
|
668
673
|
componentIncluded: 'Included',
|
|
@@ -783,7 +788,7 @@ export default {
|
|
|
783
788
|
switchLabel: 'Welcome Page'
|
|
784
789
|
},
|
|
785
790
|
upgrade: {
|
|
786
|
-
title: 'Upgrade Blocklet Server
|
|
791
|
+
title: 'Upgrade Blocklet Server',
|
|
787
792
|
description: 'During the upgrade, your Blocklet Server will enter maintenance mode for a few minutes while the update is completed.',
|
|
788
793
|
dialog: 'Click on "confirm" to install the update. Blocklet Server will enter maintenance mode until the update is completed and return to production mode automatically.',
|
|
789
794
|
confirm: 'Upgrade',
|
|
@@ -796,7 +801,7 @@ export default {
|
|
|
796
801
|
verifying: 'Verifying Blocklet Server v{version}',
|
|
797
802
|
rollback: 'Rollback Blocklet Server',
|
|
798
803
|
complete: 'Upgrade complete!',
|
|
799
|
-
progress: 'Upgrading
|
|
804
|
+
progress: 'Upgrading {name}',
|
|
800
805
|
check: 'Check for Updates',
|
|
801
806
|
latest: 'You are running the latest version.'
|
|
802
807
|
},
|
|
@@ -811,7 +816,7 @@ export default {
|
|
|
811
816
|
cleanup: 'Ensure everything is OK',
|
|
812
817
|
rollback: 'Cleanup the dirty state',
|
|
813
818
|
complete: 'Maintain complete!',
|
|
814
|
-
progress: 'Restarting
|
|
819
|
+
progress: 'Restarting {name}'
|
|
815
820
|
},
|
|
816
821
|
register: {
|
|
817
822
|
titleAdded: 'Added to Blocklet Launcher',
|
package/es/locales/es.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'Recursos',
|
|
656
656
|
blockletEmptyTip: 'Aquí no hay bloqueadores',
|
|
657
657
|
createBlockletTip: 'Puede crear un nuevo blocklet a través de recursos, componentes y configuración existentes en esta aplicación',
|
|
658
|
-
createBlocklet: '
|
|
658
|
+
createBlocklet: 'Nuevo bloque',
|
|
659
659
|
deleteBlockletTip: 'El blocklet no puede ser recuperado después de ser eliminado, por favor confirma',
|
|
660
660
|
componentNotRunning: 'El componente {name} no está en ejecución, por favor iniciar primero',
|
|
661
661
|
releaseEmptyTip: 'No hay lanzamientos aquí',
|
|
662
662
|
createReleaseTip: 'Puedes crear una versión de la blocklet, junto con notas de lanzamiento y recursos, para que otras personas la puedan utilizar',
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'Nuevo lanzamiento',
|
|
664
664
|
deleteReleaseTip: 'La versión no se puede recuperar después de la eliminación',
|
|
665
665
|
createBlockletDid: 'Crear desde la billetera DID',
|
|
666
666
|
createReleaseSuccess: 'Liberación creada exitosamente',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'La descripción de Blocklet es requerida',
|
|
681
681
|
noNote: 'Se requiere la Nota de Lanzamiento'
|
|
682
682
|
},
|
|
683
|
-
packTip: 'Los componentes y
|
|
683
|
+
packTip: 'Actualmente, los blocklets se pueden instalar directamente como aplicaciones. Los componentes y las configuraciones de la aplicación se incluirán automáticamente en el Blocklet',
|
|
684
684
|
resourceChangedWarning: 'Ha modificado el recurso, por favor guárdelo a tiempo',
|
|
685
|
-
installResourceTip: '
|
|
685
|
+
installResourceTip: 'URL de instalación:',
|
|
686
686
|
installResourceTip2: 'Si desea ver más consejos, visite {name}',
|
|
687
687
|
installResourceHelp: 'Ayuda Documento',
|
|
688
688
|
componentIncluded: 'Incluido',
|
|
689
|
-
componentForceRequired: 'Obligatorio Requerido'
|
|
689
|
+
componentForceRequired: 'Obligatorio Requerido',
|
|
690
|
+
productListTitle: 'Publicar Blocklets',
|
|
691
|
+
download: 'Descargar {name}',
|
|
692
|
+
delete: 'Eliminar {name}',
|
|
693
|
+
copyInstallUrl: 'Copiar URL de instalación',
|
|
694
|
+
install: 'Instalar {name}'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: 'La longitud del título debe ser de al menos 3 caracteres',
|
|
692
697
|
descriptionValidationError: 'La longitud de la descripción debe estar entre 3 y 160 caracteres'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: 'Página de bienvenida'
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: '
|
|
798
|
+
title: 'Mejorar el servidor de Blocklet',
|
|
794
799
|
description: 'Durante la actualización, tu servidor de Blocklet entrará en modo de mantenimiento durante unos minutos mientras se completa la actualización.',
|
|
795
800
|
dialog: 'Haz clic en "confirmar" para instalar la actualización. El servidor Blocklet entrará en modo de mantenimiento hasta que la actualización se complete y volverá automáticamente al modo de producción.',
|
|
796
801
|
confirm: 'Mejora',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'Verificando el servidor de Blocklet v{version}',
|
|
804
809
|
rollback: 'Revertir servidor de Blocklet',
|
|
805
810
|
complete: '¡Actualización completa!',
|
|
806
|
-
progress: '
|
|
811
|
+
progress: 'Mejorando {name}',
|
|
807
812
|
check: 'Buscar actualizaciones',
|
|
808
813
|
latest: 'Estás ejecutando la última versión.'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'Asegúrate de que todo esté bien',
|
|
819
824
|
rollback: 'Limpiar el estado sucio',
|
|
820
825
|
complete: '¡Mantenimiento completo!',
|
|
821
|
-
progress: 'Reiniciando
|
|
826
|
+
progress: 'Reiniciando {name}'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'Agregado a Blocklet Launcher',
|
package/es/locales/fr.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'Ressources',
|
|
656
656
|
blockletEmptyTip: "Il n'y a pas de blocs ici",
|
|
657
657
|
createBlockletTip: 'Vous pouvez créer un nouveau blocklet à partir des ressources, composants et configurations existants dans cette application',
|
|
658
|
-
createBlocklet: '
|
|
658
|
+
createBlocklet: 'Nouvelle blocklet',
|
|
659
659
|
deleteBlockletTip: 'Le bloclet ne peut pas être récupéré après sa suppression, veuillez confirmer',
|
|
660
660
|
componentNotRunning: "Le composant {name} ne fonctionne pas, veuillez le démarrer d'abord",
|
|
661
661
|
releaseEmptyTip: "Il n'y a aucune sortie ici",
|
|
662
662
|
createReleaseTip: "Vous pouvez créer une version du blocklet, ainsi que des notes de version et des ressources, pour que d'autres personnes puissent les utiliser.",
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'Nouvelle version',
|
|
664
664
|
deleteReleaseTip: 'La version ne peut pas être récupérée après la suppression',
|
|
665
665
|
createBlockletDid: 'Créez à partir du portefeuille DID',
|
|
666
666
|
createReleaseSuccess: 'Création de la version réussie',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'La description du Blocklet est requise',
|
|
681
681
|
noNote: 'La note de version est requise'
|
|
682
682
|
},
|
|
683
|
-
packTip: "Les composants et
|
|
683
|
+
packTip: "Actuellement, les bloclets peuvent être installés directement en tant qu'applications. Les composants et les configurations d'application seront automatiquement inclus dans le bloclet.",
|
|
684
684
|
resourceChangedWarning: "Vous avez modifié la ressource, veuillez l'enregistrer à temps",
|
|
685
|
-
installResourceTip:
|
|
685
|
+
installResourceTip: "URL d'installation:",
|
|
686
686
|
installResourceTip2: 'Si vous souhaitez voir plus de conseils, veuillez visiter',
|
|
687
687
|
installResourceHelp: "Document d'aide",
|
|
688
688
|
componentIncluded: 'Inclus',
|
|
689
|
-
componentForceRequired: 'Forcé Requis'
|
|
689
|
+
componentForceRequired: 'Forcé Requis',
|
|
690
|
+
productListTitle: 'Publier des Blocklets',
|
|
691
|
+
download: 'Télécharger {name}',
|
|
692
|
+
delete: 'Supprimez {name}',
|
|
693
|
+
copyInstallUrl: "Copier l'URL d'installation",
|
|
694
|
+
install: 'Installer {name}'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: "La longueur du titre doit être d'au moins 3 caractères",
|
|
692
697
|
descriptionValidationError: 'La longueur de la description doit être comprise entre 3 et 160 caractères'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: "Page d'accueil"
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: '
|
|
798
|
+
title: 'Mettre à niveau le serveur Blocklet',
|
|
794
799
|
description: 'Pendant la mise à niveau, votre serveur Blocklet entrera en mode maintenance pendant quelques minutes le temps de la mise à jour.',
|
|
795
800
|
dialog: "Cliquez sur 'Confirmer' pour installer la mise à jour. Le serveur Blocklet entrera en mode de maintenance jusqu'à ce que la mise à jour soit terminée et reviendra automatiquement en mode production.",
|
|
796
801
|
confirm: 'Mise à niveau',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'Vérification du serveur Blocklet v{version}',
|
|
804
809
|
rollback: 'Serveur de blocs de retour en arrière',
|
|
805
810
|
complete: 'Mise à niveau terminée !',
|
|
806
|
-
progress: 'Mise à niveau
|
|
811
|
+
progress: 'Mise à niveau de {name}',
|
|
807
812
|
check: 'Vérifier les mises à jour',
|
|
808
813
|
latest: 'Vous utilisez la dernière version.'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'Assurez-vous que tout va bien',
|
|
819
824
|
rollback: "Nettoyez l'état sale",
|
|
820
825
|
complete: 'Maintenance complète!',
|
|
821
|
-
progress: 'Redémarrage
|
|
826
|
+
progress: 'Redémarrage de {name}'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'Ajouté à Blocklet Launcher',
|
package/es/locales/hi.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'संसाधन',
|
|
656
656
|
blockletEmptyTip: 'यहाँ कोई ब्लॉकलेट नहीं हैं',
|
|
657
657
|
createBlockletTip: 'आप इस ऐप्लिकेशन में मौजूदा संसाधनों, कॉम्पोनेंट्स और कॉन्फ़िगरेशन के माध्यम से नया ब्लॉकलेट बना सकते हैं',
|
|
658
|
-
createBlocklet: 'नया ब्लॉकलेट
|
|
658
|
+
createBlocklet: 'नया ब्लॉकलेट',
|
|
659
659
|
deleteBlockletTip: 'हटाने के बाद ब्लॉकलेट को पुनर्प्राप्त नहीं किया जा सकता है, कृपया पुष्टि करें',
|
|
660
660
|
componentNotRunning: 'संघ {name} चल नहीं रहा है, कृपया पहले इसे शुरू करें',
|
|
661
661
|
releaseEmptyTip: 'यहां कोई रिलीज़ नहीं है',
|
|
662
662
|
createReleaseTip: 'आप ब्लॉकलेट का एक रिलीज़ बना सकते हैं, रिलीज़ नोट्स और संसाधनों के साथ, जिन्हें दूसरे लोगों का उपयोग कर सकते हैं।',
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'नई रिलीज़',
|
|
664
664
|
deleteReleaseTip: 'हटाने के बाद रिलीज़ को पुनर्प्राप्त नहीं किया जा सकता है',
|
|
665
665
|
createBlockletDid: 'डीआईडी वॉलेट से बनाएं',
|
|
666
666
|
createReleaseSuccess: 'सफलतापूर्वक रिलीज़ बनाया गया',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'ब्लॉकलेट विवरण आवश्यक है',
|
|
681
681
|
noNote: 'रिलीज़ नोट आवश्यक है'
|
|
682
682
|
},
|
|
683
|
-
packTip: '
|
|
683
|
+
packTip: 'वर्तमान में ब्लॉकलेट सीधे अनुप्रयोग के रूप में स्थापित किए जा सकते हैं। कंपोनेंट और अनुप्रयोग कॉन्फ़िगरेशन स्वचालित रूप से ब्लॉकलेट में शामिल किए जाएंगे।',
|
|
684
684
|
resourceChangedWarning: 'आपने संसाधन को संशोधित किया है, कृपया समय पर इसे सहेजें',
|
|
685
|
-
installResourceTip: '
|
|
685
|
+
installResourceTip: 'इंस्टॉल URL:',
|
|
686
686
|
installResourceTip2: 'अगर आप और टिप्स देखना चाहते हैं, कृपया यहाँ जाएं',
|
|
687
687
|
installResourceHelp: 'सहायता दस्तावेज़',
|
|
688
688
|
componentIncluded: 'शामिल',
|
|
689
|
-
componentForceRequired: 'मजबूरी आवश्यक'
|
|
689
|
+
componentForceRequired: 'मजबूरी आवश्यक',
|
|
690
|
+
productListTitle: 'ब्लॉकलेट प्रकाशित करें',
|
|
691
|
+
download: 'डाउनलोड {name}',
|
|
692
|
+
delete: '{नाम} को हटाएं',
|
|
693
|
+
copyInstallUrl: 'संपादित स्थापित URL की प्रतिलिपि',
|
|
694
|
+
install: '{name} स्थापित करें'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: 'शीर्षक की लंबाई कम से कम 3 अक्षर होनी चाहिए',
|
|
692
697
|
descriptionValidationError: 'विवरण की लंबाई 3 और 160 वर्णों के बीच होनी चाहिए'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: 'स्वागत पेज'
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: '
|
|
798
|
+
title: 'ब्लॉक्लेट सर्वर को अपग्रेड करें',
|
|
794
799
|
description: 'अपग्रेड के दौरान, अपडेट पूरा होने तक आपका ब्लॉकलेट सर्वर कुछ मिनटों के लिए रखरखाव मोड में जाएगा।',
|
|
795
800
|
dialog: "अपडेट स्थापित करने के लिए 'पुष्टि' पर क्लिक करें। अपडेट पूरा होने तक ब्लॉकलेट सर्वर रखरखाव मोड में जाएगा और स्वचालित रूप से प्रोडक्शन मोड में वापस लौटेगा।",
|
|
796
801
|
confirm: 'उन्नयन करें',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'Blocklet सर्वर v{version} की पुष्टि कर रहा है',
|
|
804
809
|
rollback: 'रोलबैक ब्लॉकलेट सर्वर',
|
|
805
810
|
complete: 'अपग्रेड पूर्ण हुआ!',
|
|
806
|
-
progress: '{
|
|
811
|
+
progress: '{name} को अपग्रेड करना',
|
|
807
812
|
check: 'अद्यतन की जांच करें',
|
|
808
813
|
latest: 'आप नवीनतम संस्करण चला रहे हैं।'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'सुनिश्चित करें कि सब कुछ ठीक है',
|
|
819
824
|
rollback: 'गंदे हालत को साफ़ करें',
|
|
820
825
|
complete: 'पूर्ण रखभाल!',
|
|
821
|
-
progress: '
|
|
826
|
+
progress: '{name} को फिर से शुरू कर रहा है'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'ब्लॉकलेट लॉन्चर में जोड़ दिया गया',
|
package/es/locales/i18n.db
CHANGED
|
Binary file
|
package/es/locales/id.js
CHANGED
|
@@ -655,12 +655,12 @@ export default {
|
|
|
655
655
|
resourceTitle: 'Sumber daya',
|
|
656
656
|
blockletEmptyTip: 'Tidak ada blok di sini',
|
|
657
657
|
createBlockletTip: 'Anda dapat membuat blocklet baru melalui sumber daya, komponen, dan konfigurasi yang ada dalam aplikasi ini',
|
|
658
|
-
createBlocklet: '
|
|
658
|
+
createBlocklet: 'Blok baru',
|
|
659
659
|
deleteBlockletTip: 'Blocklet tidak dapat dipulihkan setelah dihapus, harap konfirmasi',
|
|
660
660
|
componentNotRunning: 'Komponen {name} tidak sedang berjalan, harap mulai terlebih dahulu',
|
|
661
661
|
releaseEmptyTip: 'Tidak ada rilis di sini',
|
|
662
662
|
createReleaseTip: 'Anda dapat membuat rilis dari blocklet, bersama dengan catatan rilis dan sumber daya, agar orang lain dapat menggunakannya',
|
|
663
|
-
createRelease: '
|
|
663
|
+
createRelease: 'Rilis baru',
|
|
664
664
|
deleteReleaseTip: 'Rilis tidak dapat dikembalikan setelah dihapus',
|
|
665
665
|
createBlockletDid: 'Buat dari Dompet DID',
|
|
666
666
|
createReleaseSuccess: 'Rilis berhasil dibuat',
|
|
@@ -680,13 +680,18 @@ export default {
|
|
|
680
680
|
noDescription: 'Deskripsi Blocklet diperlukan',
|
|
681
681
|
noNote: 'Catatan Rilis diperlukan'
|
|
682
682
|
},
|
|
683
|
-
packTip: 'Komponen dan konfigurasi aplikasi akan secara otomatis disertakan dalam
|
|
683
|
+
packTip: 'Saat ini, blok dapat diinstal langsung sebagai aplikasi. Komponen dan konfigurasi aplikasi akan secara otomatis disertakan dalam Blocklet.',
|
|
684
684
|
resourceChangedWarning: 'Anda telah mengubah sumber daya, harap simpan tepat waktu',
|
|
685
|
-
installResourceTip: '
|
|
685
|
+
installResourceTip: 'URL Pemasangan:',
|
|
686
686
|
installResourceTip2: 'Jika Anda ingin melihat lebih banyak tips, silakan kunjungi',
|
|
687
687
|
installResourceHelp: 'Dokumen Bantuan',
|
|
688
688
|
componentIncluded: 'Termasuk',
|
|
689
|
-
componentForceRequired: 'Dipaksa Diperlukan'
|
|
689
|
+
componentForceRequired: 'Dipaksa Diperlukan',
|
|
690
|
+
productListTitle: 'Terbitkan Blocklets',
|
|
691
|
+
download: 'Unduh {name}',
|
|
692
|
+
delete: 'Hapus {name}',
|
|
693
|
+
copyInstallUrl: 'Salin URL Instalasi',
|
|
694
|
+
install: 'Pasang {name}'
|
|
690
695
|
},
|
|
691
696
|
titleValidationError: 'Panjang judul harus setidaknya 3 karakter',
|
|
692
697
|
descriptionValidationError: 'Panjang deskripsi harus antara 3 dan 160 karakter.'
|
|
@@ -790,7 +795,7 @@ export default {
|
|
|
790
795
|
switchLabel: 'Halaman Selamat Datang'
|
|
791
796
|
},
|
|
792
797
|
upgrade: {
|
|
793
|
-
title: 'Tingkatkan
|
|
798
|
+
title: 'Tingkatkan server Blocklet',
|
|
794
799
|
description: 'Selama peningkatan, server Blocklet Anda akan masuk ke mode perawatan selama beberapa menit saat pembaruan selesai.',
|
|
795
800
|
dialog: 'Klik "konfirmasi" untuk menginstal pembaruan. Blocklet Server akan masuk ke mode pemeliharaan hingga pembaruan selesai dan secara otomatis kembali ke mode produksi.',
|
|
796
801
|
confirm: 'Upgrade',
|
|
@@ -803,7 +808,7 @@ export default {
|
|
|
803
808
|
verifying: 'Memverifikasi server Blocklet v{version}',
|
|
804
809
|
rollback: 'Server Blocklet Rollback',
|
|
805
810
|
complete: 'Pembaruan selesai!',
|
|
806
|
-
progress: 'Mengupgrade
|
|
811
|
+
progress: 'Mengupgrade {name}',
|
|
807
812
|
check: 'Periksa Pembaruan',
|
|
808
813
|
latest: 'Anda menggunakan versi terbaru.'
|
|
809
814
|
},
|
|
@@ -818,7 +823,7 @@ export default {
|
|
|
818
823
|
cleanup: 'Pastikan semuanya baik-baik saja',
|
|
819
824
|
rollback: 'Bersihkan keadaan kotor',
|
|
820
825
|
complete: 'Pertahankan lengkap!',
|
|
821
|
-
progress: 'Memulai
|
|
826
|
+
progress: 'Memulai ulang {name}'
|
|
822
827
|
},
|
|
823
828
|
register: {
|
|
824
829
|
titleAdded: 'Ditambahkan ke Blocklet Launcher',
|