@nocobase/plugin-block-workbench 2.0.0-alpha.9 → 2.0.0-beta.2
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/dist/client/index.js +1 -1
- package/dist/client/models/ActionPanelBlockModel.d.ts +18 -0
- package/dist/client/models/actions/ActionPanelGroupAction.d.ts +11 -0
- package/dist/client/models/actions/ActionPanelScanActionModel.d.ts +14 -0
- package/dist/client/models/actions/components/qrcode-scanner/ScanBox.d.ts +12 -0
- package/dist/client/models/actions/components/qrcode-scanner/index.d.ts +7 -0
- package/dist/client/models/actions/components/qrcode-scanner/useScanner.d.ts +11 -0
- package/dist/client/models/actions/index.d.ts +10 -0
- package/dist/client/models/index.d.ts +16 -0
- package/dist/externalVersion.js +6 -4
- package/dist/locale/de-DE.json +20 -13
- package/dist/locale/en-US.json +24 -0
- package/dist/locale/es-ES.json +24 -0
- package/dist/locale/fr-FR.json +24 -0
- package/dist/locale/hu-HU.json +24 -0
- package/dist/locale/id-ID.json +24 -0
- package/dist/locale/it-IT.json +19 -12
- package/dist/locale/ja-JP.json +20 -5
- package/dist/locale/ko-KR.json +24 -0
- package/dist/locale/nl-NL.json +24 -0
- package/dist/locale/pt-BR.json +24 -0
- package/dist/locale/ru-RU.json +25 -0
- package/dist/locale/tr-TR.json +24 -0
- package/dist/locale/uk-UA.json +24 -0
- package/dist/locale/vi-VN.json +24 -0
- package/dist/locale/zh-CN.json +19 -13
- package/dist/locale/zh-TW.json +24 -0
- package/package.json +4 -2
- package/dist/client/d180e3dfa95b10ab.js +0 -10
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import { BlockModel } from '@nocobase/client';
|
|
11
|
+
export declare const WorkbenchLayout: {
|
|
12
|
+
Grid: string;
|
|
13
|
+
List: string;
|
|
14
|
+
};
|
|
15
|
+
export declare class ActionPanelBlockModel extends BlockModel {
|
|
16
|
+
renderConfigureActions(): React.JSX.Element;
|
|
17
|
+
renderComponent(): React.JSX.Element;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import { ActionGroupModel } from '@nocobase/client';
|
|
10
|
+
export declare class ActionPanelGroupActionModel extends ActionGroupModel {
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import type { ButtonProps } from 'antd/es/button';
|
|
10
|
+
import { ActionModel } from '@nocobase/client';
|
|
11
|
+
export declare class ActionPanelScanActionModel extends ActionModel {
|
|
12
|
+
onClick(event: any): void;
|
|
13
|
+
defaultProps: ButtonProps;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare function ScanBox({ style }: {
|
|
11
|
+
style: React.CSSProperties;
|
|
12
|
+
}): React.JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Html5Qrcode } from 'html5-qrcode';
|
|
2
|
+
export declare function useScanner({ onScannerSizeChanged, elementId, onScanSuccess, app: appCtx, navigate }: {
|
|
3
|
+
onScannerSizeChanged: any;
|
|
4
|
+
elementId: any;
|
|
5
|
+
onScanSuccess: any;
|
|
6
|
+
app: any;
|
|
7
|
+
navigate: any;
|
|
8
|
+
}): {
|
|
9
|
+
startScanCamera: (scanner: Html5Qrcode) => Promise<null>;
|
|
10
|
+
startScanFile: (file: File) => Promise<void>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
export * from './ActionPanelGroupAction';
|
|
10
|
+
export * from './ActionPanelScanActionModel';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import { ActionPanelBlockModel } from './ActionPanelBlockModel';
|
|
10
|
+
import * as actions from './actions';
|
|
11
|
+
declare const _default: {
|
|
12
|
+
ActionPanelGroupActionModel: typeof actions.ActionPanelGroupActionModel;
|
|
13
|
+
ActionPanelScanActionModel: typeof actions.ActionPanelScanActionModel;
|
|
14
|
+
ActionPanelBlockModel: typeof ActionPanelBlockModel;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
package/dist/externalVersion.js
CHANGED
|
@@ -11,12 +11,14 @@ module.exports = {
|
|
|
11
11
|
"@formily/react": "2.3.7",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"react-i18next": "11.18.6",
|
|
14
|
-
"@nocobase/client": "2.0.0-
|
|
14
|
+
"@nocobase/client": "2.0.0-beta.2",
|
|
15
15
|
"@emotion/css": "11.13.0",
|
|
16
16
|
"antd": "5.24.2",
|
|
17
17
|
"antd-style": "3.7.1",
|
|
18
|
-
"@nocobase/server": "2.0.0-
|
|
18
|
+
"@nocobase/server": "2.0.0-beta.2",
|
|
19
|
+
"@nocobase/flow-engine": "2.0.0-beta.2",
|
|
19
20
|
"@ant-design/icons": "5.6.1",
|
|
20
|
-
"@nocobase/plugin-mobile": "2.0.0-
|
|
21
|
-
"react-router-dom": "6.30.1"
|
|
21
|
+
"@nocobase/plugin-mobile": "2.0.0-beta.2",
|
|
22
|
+
"react-router-dom": "6.30.1",
|
|
23
|
+
"react-dom": "18.2.0"
|
|
22
24
|
};
|
package/dist/locale/de-DE.json
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Workbench": "Arbeitsbereich",
|
|
3
2
|
"Action panel": "Aktionspanel",
|
|
4
|
-
"
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Benutzerdefinierte Anfrage hinzufügen",
|
|
6
|
+
"Add popup": "Popup hinzufügen",
|
|
5
7
|
"Album": "Album",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"The image size is too large. Please compress it to below 1MB before uploading": "Die Bildgröße ist zu groß. Bitte komprimieren Sie es auf unter 1MB vor dem Hochladen.",
|
|
10
|
-
"QR code recognition failed, please scan again": "QR-Code-Erkennung fehlgeschlagen, bitte erneut scannen.",
|
|
11
|
-
"Layout": "Layout",
|
|
8
|
+
"At least 1, up to 6": "Mindestens 1, maximal 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
12
11
|
"Grid": "Raster",
|
|
12
|
+
"Items per row": "Elemente pro Zeile",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
13
15
|
"List": "Liste",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
16
|
+
"No camera device detected": "Keine Kamera erkannt",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR-Code-Erkennung fehlgeschlagen, bitte erneut scannen.",
|
|
19
|
+
"Scan QR code": "QR-Code scannen",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "Die Bildgröße ist zu groß. Bitte komprimieren Sie es auf unter 1MB vor dem Hochladen.",
|
|
22
|
+
"Unknown error": "Unbekannter Fehler",
|
|
23
|
+
"Workbench": "Arbeitsbereich",
|
|
24
|
+
"You have not granted permission to use the camera": "Sie haben keine Berechtigung zur Nutzung der Kamera erteilt"
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Műveletpanel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Egyedi kérés hozzáadása",
|
|
6
|
+
"Add popup": "Felugró ablak hozzáadása",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "Legalább 1, legfeljebb 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Rács",
|
|
12
|
+
"Items per row": "Elemek soronként",
|
|
13
|
+
"Layout": "Elrendezés",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "Lista",
|
|
16
|
+
"No camera device detected": "Nincs kameraeszköz észlelve",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR kód észlelése nem sikerült, kérjük, próbálja újra beolvasni",
|
|
19
|
+
"Scan QR code": "QR kód beolvasása",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "A kép mérete túl nagy. Kérjük, tömörítse 1MB alá a feltöltés előtt",
|
|
22
|
+
"Unknown error": "Ismeretlen hiba",
|
|
23
|
+
"You have not granted permission to use the camera": "Nem adott engedélyt a kamera használatára"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Panel aksi",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Tambah permintaan kustom",
|
|
6
|
+
"Add popup": "Tambah popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "Minimal 1, maksimal 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Kisi",
|
|
12
|
+
"Items per row": "Item per baris",
|
|
13
|
+
"Layout": "Tata Letak",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "Daftar",
|
|
16
|
+
"No camera device detected": "Tidak ada perangkat kamera yang terdeteksi",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "Pengenalan kode QR gagal, harap pindai lagi",
|
|
19
|
+
"Scan QR code": "Pindai kode QR",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "Ukuran gambar terlalu besar. Harap kompres hingga di bawah 1MB sebelum mengunggah",
|
|
22
|
+
"Unknown error": "Kesalahan tidak diketahui",
|
|
23
|
+
"You have not granted permission to use the camera": "Anda belum memberikan izin untuk menggunakan kamera"
|
|
24
|
+
}
|
package/dist/locale/it-IT.json
CHANGED
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Action panel": "Pannello azioni",
|
|
3
|
-
"
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Aggiungi richiesta personalizzata",
|
|
6
|
+
"Add popup": "Aggiungi popup",
|
|
4
7
|
"Album": "Album",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"The image size is too large. Please compress it to below 1MB before uploading": "La dimensione dell'immagine è troppo grande. Si prega di comprimerla sotto 1MB prima di caricarla.",
|
|
9
|
-
"QR code recognition failed, please scan again": "Riconoscimento del codice QR fallito, si prega di scansionare di nuovo.",
|
|
10
|
-
"Layout": "Layout",
|
|
8
|
+
"At least 1, up to 6": "Almeno 1, fino a 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
11
|
"Grid": "Griglia",
|
|
12
|
+
"Items per row": "Elementi per riga",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
12
15
|
"List": "Elenco",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
16
|
+
"No camera device detected": "Nessuna fotocamera rilevata",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "Riconoscimento del codice QR fallito, si prega di scansionare di nuovo.",
|
|
19
|
+
"Scan QR code": "Scansiona codice QR",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "La dimensione dell'immagine è troppo grande. Si prega di comprimerla sotto 1MB prima di caricarla.",
|
|
22
|
+
"Unknown error": "Errore sconosciuto",
|
|
23
|
+
"You have not granted permission to use the camera": "Non hai concesso l'autorizzazione per utilizzare la fotocamera"
|
|
24
|
+
}
|
package/dist/locale/ja-JP.json
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"Action panel": "アクションパネル",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "カスタムリクエストを追加",
|
|
6
|
+
"Add popup": "ポップアップを追加",
|
|
4
7
|
"Album": "アルバム",
|
|
8
|
+
"At least 1, up to 6": "最小1、最大6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "グリッド",
|
|
12
|
+
"Items per row": "1行あたりの表示数",
|
|
13
|
+
"Layout": "レイアウト",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "リスト",
|
|
5
16
|
"No camera device detected": "カメラデバイスが検出されませんでした",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QRコードの認識に失敗しました。再度スキャンしてください。",
|
|
19
|
+
"Scan QR code": "QRコードをスキャン",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
8
21
|
"The image size is too large. Please compress it to below 1MB before uploading": "画像サイズが大きすぎます。アップロード前に1MB以下に圧縮してください。",
|
|
9
|
-
"
|
|
22
|
+
"Unknown error": "不明なエラー",
|
|
23
|
+
"Workbench": "作業台",
|
|
24
|
+
"You have not granted permission to use the camera": "カメラの使用許可がありません"
|
|
10
25
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "작업 패널",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "사용자 지정 요청 추가",
|
|
6
|
+
"Add popup": "팝업 추가",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "행당 항목",
|
|
13
|
+
"Layout": "레이아웃",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "목록",
|
|
16
|
+
"No camera device detected": "카메라 장치가 감지되지 않았습니다",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR 코드 인식에 실패했습니다. 다시 스캔해 주세요.",
|
|
19
|
+
"Scan QR code": "QR 코드 스캔",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "이미지 크기가 너무 큽니다. 업로드하기 전에 1MB 이하로 압축해 주세요.",
|
|
22
|
+
"Unknown error": "알 수 없는 오류",
|
|
23
|
+
"You have not granted permission to use the camera": "카메라 사용 권한이 허용되지 않았습니다"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Панель действий",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Добавить пользовательский запрос",
|
|
6
|
+
"Add popup": "Добавить всплывающее окно",
|
|
7
|
+
"Album": "Альбом",
|
|
8
|
+
"At least 1, up to 6": "От 1 до 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Сетка",
|
|
12
|
+
"Items per row": "Элементов в строке",
|
|
13
|
+
"Layout": "Макет",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "Список",
|
|
16
|
+
"No camera device detected": "Устройство камеры не обнаружено",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "Распознавание QR-кода не удалось, пожалуйста, отсканируйте снова",
|
|
19
|
+
"Scan QR code": "Сканировать QR-код",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "Размер изображения слишком большой. Сожмите его до менее 1 МБ перед загрузкой",
|
|
22
|
+
"Unknown error": "Неизвестная ошибка",
|
|
23
|
+
"Workbench": "Рабочее пространство",
|
|
24
|
+
"You have not granted permission to use the camera": "Вы не предоставили разрешение на использование камеры"
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "Danh sách",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Action panel": "操作面板",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"No camera device detected": "未检测到摄像头设备",
|
|
6
|
-
"You have not granted permission to use the camera": "您未授权使用摄像头",
|
|
7
|
-
"Unknown error": "未知错误",
|
|
8
|
-
"The image size is too large. Please compress it to below 1MB before uploading": "图片尺寸过大,请压缩到1MB以下上传",
|
|
9
|
-
"QR code recognition failed, please scan again": "二维码识别失败,请重新扫描",
|
|
10
|
-
"Layout": "布局",
|
|
11
|
-
"Grid": "栅格",
|
|
12
|
-
"List": "列表",
|
|
13
|
-
"Add popup": "添加弹窗",
|
|
3
|
+
"Action panel settings": "操作面板设置",
|
|
4
|
+
"Action setting": "按钮设置",
|
|
14
5
|
"Add custom request": "添加自定义请求",
|
|
6
|
+
"Add popup": "添加弹窗",
|
|
7
|
+
"Album": "相册",
|
|
15
8
|
"At least 1, up to 6": "最多6个,最少一个",
|
|
9
|
+
"Ellipsis on text overflow": "文本超出省略",
|
|
10
|
+
"General settings": "通用设置",
|
|
11
|
+
"Grid": "栅格",
|
|
16
12
|
"Items per row": "每行显示个数",
|
|
17
|
-
"
|
|
18
|
-
|
|
13
|
+
"Layout": "布局",
|
|
14
|
+
"Link action settings": "链接按钮设置",
|
|
15
|
+
"List": "列表",
|
|
16
|
+
"No camera device detected": "未检测到摄像头设备",
|
|
17
|
+
"Popup action settings": "弹窗按钮设置",
|
|
18
|
+
"QR code recognition failed, please scan again": "二维码识别失败,请重新扫描",
|
|
19
|
+
"Scan QR code": "扫描二维码",
|
|
20
|
+
"Scan QR code action settings": "扫码按钮设置",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "图片尺寸过大,请压缩到1MB以下上传",
|
|
22
|
+
"Unknown error": "未知错误",
|
|
23
|
+
"You have not granted permission to use the camera": "您未授权使用摄像头"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Action panel": "Action panel",
|
|
3
|
+
"Action panel settings": "Action panel settings",
|
|
4
|
+
"Action setting": "Action setting",
|
|
5
|
+
"Add custom request": "Add custom request",
|
|
6
|
+
"Add popup": "Add popup",
|
|
7
|
+
"Album": "Album",
|
|
8
|
+
"At least 1, up to 6": "At least 1, up to 6",
|
|
9
|
+
"Ellipsis action title": "Ellipsis action title",
|
|
10
|
+
"General settings": "General settings",
|
|
11
|
+
"Grid": "Grid",
|
|
12
|
+
"Items per row": "Items per row",
|
|
13
|
+
"Layout": "Layout",
|
|
14
|
+
"Link action settings": "Link action settings",
|
|
15
|
+
"List": "List",
|
|
16
|
+
"No camera device detected": "No camera device detected",
|
|
17
|
+
"Popup action settings": "Popup action settings",
|
|
18
|
+
"QR code recognition failed, please scan again": "QR code recognition failed, please scan again",
|
|
19
|
+
"Scan QR code": "Scan QR code",
|
|
20
|
+
"Scan QR code action settings": "Scan QR code action settings",
|
|
21
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "The image size is too large. Please compress it to below 1MB before uploading",
|
|
22
|
+
"Unknown error": "Unknown error",
|
|
23
|
+
"You have not granted permission to use the camera": "You have not granted permission to use the camera"
|
|
24
|
+
}
|