@payloadcms/figma 0.1.0-alpha.2 → 0.1.0-alpha.4
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/api/check-project-subdomain-availability.d.ts +12 -0
- package/dist/api/check-project-subdomain-availability.js +32 -0
- package/dist/api/control-plane-error.d.ts +6 -0
- package/dist/api/control-plane-error.js +8 -0
- package/dist/api/control-plane-fetch.d.ts +7 -0
- package/dist/api/control-plane-fetch.js +37 -0
- package/dist/api/control-plane.d.ts +1 -9
- package/dist/api/control-plane.js +2 -48
- package/dist/api/create-project.d.ts +18 -0
- package/dist/api/create-project.js +37 -0
- package/dist/api/list-project-workspaces.d.ts +8 -0
- package/dist/api/list-project-workspaces.js +28 -0
- package/dist/api/project-resource-type.d.ts +1 -0
- package/dist/api/project-resource-type.js +1 -0
- package/dist/auth/headless-oauth-flow.d.ts +23 -0
- package/dist/auth/headless-oauth-flow.js +69 -0
- package/dist/auth/oauth-flow.d.ts +2 -0
- package/dist/auth/oauth-flow.js +13 -8
- package/dist/auth/token-store.d.ts +4 -1
- package/dist/auth/token-store.js +14 -0
- package/dist/auth/types.d.ts +12 -0
- package/dist/cli.d.ts +39 -0
- package/dist/cli.js +71 -36
- package/dist/commands/bootstrap.js +2 -1
- package/dist/commands/deploy.d.ts +12 -0
- package/dist/commands/deploy.js +61 -23
- package/dist/commands/detect-project-resource-type.d.ts +3 -0
- package/dist/commands/detect-project-resource-type.js +28 -0
- package/dist/commands/init.d.ts +2 -2
- package/dist/commands/init.js +163 -78
- package/dist/commands/login.d.ts +11 -1
- package/dist/commands/login.js +66 -4
- package/dist/commands/prompt-to-create-project/format-project-subdomain.d.ts +1 -0
- package/dist/commands/prompt-to-create-project/format-project-subdomain.js +3 -0
- package/dist/commands/prompt-to-create-project/format-unavailable-subdomain-reason.d.ts +1 -0
- package/dist/commands/prompt-to-create-project/format-unavailable-subdomain-reason.js +7 -0
- package/dist/commands/prompt-to-create-project/get-default-project-name.d.ts +1 -0
- package/dist/commands/prompt-to-create-project/get-default-project-name.js +13 -0
- package/dist/commands/prompt-to-create-project/prompt-for-available-subdomain.d.ts +7 -0
- package/dist/commands/prompt-to-create-project/prompt-for-available-subdomain.js +32 -0
- package/dist/commands/prompt-to-create-project/resolve-project-region.d.ts +8 -0
- package/dist/commands/prompt-to-create-project/resolve-project-region.js +27 -0
- package/dist/commands/prompt-to-create-project/resolve-project-subdomain.d.ts +9 -0
- package/dist/commands/prompt-to-create-project/resolve-project-subdomain.js +54 -0
- package/dist/commands/prompt-to-create-project/resolve-text-input.d.ts +9 -0
- package/dist/commands/prompt-to-create-project/resolve-text-input.js +23 -0
- package/dist/commands/prompt-to-create-project/resolve-workspace-plan-key.d.ts +12 -0
- package/dist/commands/prompt-to-create-project/resolve-workspace-plan-key.js +36 -0
- package/dist/commands/prompt-to-create-project/validate-subdomain.d.ts +1 -0
- package/dist/commands/prompt-to-create-project/validate-subdomain.js +9 -0
- package/dist/commands/prompt-to-create-project.d.ts +24 -0
- package/dist/commands/prompt-to-create-project.js +69 -0
- package/dist/commands/setup-agent.d.ts +12 -0
- package/dist/commands/setup-agent.js +123 -0
- package/dist/commands/write-project-configuration.d.ts +12 -0
- package/dist/commands/write-project-configuration.js +16 -0
- package/dist/db-content-api/index.d.ts +1 -1
- package/dist/db-content-api/index.js +90 -55
- package/dist/db-content-api/utilities/data/injectGlobalType.d.ts +6 -0
- package/dist/db-content-api/utilities/data/injectGlobalType.js +11 -0
- package/dist/db-content-api/utilities/data/stringifyNumericIds.d.ts +1 -0
- package/dist/db-content-api/utilities/data/stringifyNumericIds.js +19 -0
- package/dist/db-content-api/utilities/isRecord.d.ts +9 -0
- package/dist/db-content-api/utilities/isRecord.js +19 -0
- package/dist/db-content-api/utilities/schema/getDocumentSchema.d.ts +3 -0
- package/dist/db-content-api/utilities/schema/getDocumentSchema.js +24 -0
- package/dist/db-content-api/utilities/where.js +6 -4
- package/dist/exports/client.d.ts +2 -0
- package/dist/exports/client.js +2 -0
- package/dist/lib/write-agent-config.d.ts +12 -0
- package/dist/lib/write-agent-config.js +52 -0
- package/dist/plugin/build-config.js +32 -3
- package/dist/plugin/cloud-limits/CloudLimitModal/index.d.ts +9 -0
- package/dist/plugin/cloud-limits/CloudLimitModal/index.js +78 -0
- package/dist/plugin/cloud-limits/CloudLimitModal/index.scss +51 -0
- package/dist/plugin/cloud-limits/CloudLimitProvider/index.d.ts +7 -0
- package/dist/plugin/cloud-limits/CloudLimitProvider/index.js +169 -0
- package/dist/plugin/cloud-limits/SlugRegistryContext/index.d.ts +2 -0
- package/dist/plugin/cloud-limits/SlugRegistryContext/index.js +3 -0
- package/dist/plugin/cloud-limits/SlugTracker/index.d.ts +9 -0
- package/dist/plugin/cloud-limits/SlugTracker/index.js +23 -0
- package/dist/plugin/cloud-limits/icons/ExternalLinkIcon.d.ts +2 -0
- package/dist/plugin/cloud-limits/icons/ExternalLinkIcon.js +30 -0
- package/dist/plugin/cloud-limits/shared.d.ts +10 -0
- package/dist/plugin/cloud-limits/shared.js +27 -0
- package/dist/skills/deploy-to-figma/SKILL.md +234 -0
- package/dist/skills/deploy-to-figma/references/cli-reference.md +146 -0
- package/dist/translations/ar.d.ts +12 -0
- package/dist/translations/ar.js +12 -0
- package/dist/translations/az.d.ts +12 -0
- package/dist/translations/az.js +12 -0
- package/dist/translations/bg.d.ts +12 -0
- package/dist/translations/bg.js +12 -0
- package/dist/translations/bnBd.d.ts +12 -0
- package/dist/translations/bnBd.js +12 -0
- package/dist/translations/bnIn.d.ts +12 -0
- package/dist/translations/bnIn.js +12 -0
- package/dist/translations/ca.d.ts +12 -0
- package/dist/translations/ca.js +12 -0
- package/dist/translations/cs.d.ts +12 -0
- package/dist/translations/cs.js +12 -0
- package/dist/translations/da.d.ts +12 -0
- package/dist/translations/da.js +12 -0
- package/dist/translations/de.d.ts +12 -0
- package/dist/translations/de.js +12 -0
- package/dist/translations/en.d.ts +12 -0
- package/dist/translations/en.js +12 -0
- package/dist/translations/es.d.ts +12 -0
- package/dist/translations/es.js +12 -0
- package/dist/translations/et.d.ts +12 -0
- package/dist/translations/et.js +12 -0
- package/dist/translations/fa.d.ts +12 -0
- package/dist/translations/fa.js +12 -0
- package/dist/translations/fr.d.ts +12 -0
- package/dist/translations/fr.js +12 -0
- package/dist/translations/he.d.ts +12 -0
- package/dist/translations/he.js +12 -0
- package/dist/translations/hr.d.ts +12 -0
- package/dist/translations/hr.js +12 -0
- package/dist/translations/hu.d.ts +12 -0
- package/dist/translations/hu.js +12 -0
- package/dist/translations/hy.d.ts +12 -0
- package/dist/translations/hy.js +12 -0
- package/dist/translations/id.d.ts +12 -0
- package/dist/translations/id.js +12 -0
- package/dist/translations/index.d.ts +533 -0
- package/dist/translations/index.js +90 -0
- package/dist/translations/is.d.ts +12 -0
- package/dist/translations/is.js +12 -0
- package/dist/translations/it.d.ts +12 -0
- package/dist/translations/it.js +12 -0
- package/dist/translations/ja.d.ts +12 -0
- package/dist/translations/ja.js +12 -0
- package/dist/translations/ko.d.ts +12 -0
- package/dist/translations/ko.js +12 -0
- package/dist/translations/lt.d.ts +12 -0
- package/dist/translations/lt.js +12 -0
- package/dist/translations/lv.d.ts +12 -0
- package/dist/translations/lv.js +12 -0
- package/dist/translations/my.d.ts +12 -0
- package/dist/translations/my.js +12 -0
- package/dist/translations/nb.d.ts +12 -0
- package/dist/translations/nb.js +12 -0
- package/dist/translations/nl.d.ts +12 -0
- package/dist/translations/nl.js +12 -0
- package/dist/translations/pl.d.ts +12 -0
- package/dist/translations/pl.js +12 -0
- package/dist/translations/pt.d.ts +12 -0
- package/dist/translations/pt.js +12 -0
- package/dist/translations/ro.d.ts +12 -0
- package/dist/translations/ro.js +12 -0
- package/dist/translations/rs.d.ts +12 -0
- package/dist/translations/rs.js +12 -0
- package/dist/translations/rsLatin.d.ts +12 -0
- package/dist/translations/rsLatin.js +12 -0
- package/dist/translations/ru.d.ts +12 -0
- package/dist/translations/ru.js +12 -0
- package/dist/translations/sk.d.ts +12 -0
- package/dist/translations/sk.js +12 -0
- package/dist/translations/sl.d.ts +12 -0
- package/dist/translations/sl.js +12 -0
- package/dist/translations/sv.d.ts +12 -0
- package/dist/translations/sv.js +12 -0
- package/dist/translations/ta.d.ts +12 -0
- package/dist/translations/ta.js +12 -0
- package/dist/translations/th.d.ts +12 -0
- package/dist/translations/th.js +12 -0
- package/dist/translations/tr.d.ts +12 -0
- package/dist/translations/tr.js +12 -0
- package/dist/translations/uk.d.ts +12 -0
- package/dist/translations/uk.js +12 -0
- package/dist/translations/vi.d.ts +12 -0
- package/dist/translations/vi.js +12 -0
- package/dist/translations/zh.d.ts +12 -0
- package/dist/translations/zh.js +12 -0
- package/dist/translations/zhTw.d.ts +12 -0
- package/dist/translations/zhTw.js +12 -0
- package/dist/types.d.ts +11 -0
- package/dist/utils/adapters/nextjs.d.ts +3 -3
- package/dist/utils/adapters/nextjs.js +9 -7
- package/dist/utils/adapters/nitro.d.ts +3 -3
- package/dist/utils/adapters/nitro.js +73 -77
- package/dist/utils/adapters/vite.d.ts +1 -1
- package/dist/utils/adapters/vite.js +8 -7
- package/dist/utils/assert-never.d.ts +1 -0
- package/dist/utils/assert-never.js +3 -0
- package/dist/utils/asset-collection.d.ts +2 -2
- package/dist/utils/asset-collection.js +10 -15
- package/dist/utils/build-detection.d.ts +6 -1
- package/dist/utils/build-detection.js +68 -89
- package/dist/utils/build-lambda-zip.d.ts +5 -6
- package/dist/utils/build-lambda-zip.js +31 -48
- package/dist/utils/deploy-adapter.d.ts +4 -4
- package/dist/utils/deploy-adapter.js +12 -8
- package/dist/utils/deploy-output/inspectNextjsOutput/getNextRelativeAppDir.d.ts +1 -0
- package/dist/utils/deploy-output/inspectNextjsOutput/getNextRelativeAppDir.js +15 -0
- package/dist/utils/deploy-output/inspectNextjsOutput.d.ts +12 -0
- package/dist/utils/deploy-output/inspectNextjsOutput.js +28 -0
- package/dist/utils/deploy-output/inspectNitroOutput.d.ts +9 -0
- package/dist/utils/deploy-output/inspectNitroOutput.js +13 -0
- package/dist/utils/deploy-output/isFile.d.ts +1 -0
- package/dist/utils/deploy-output/isFile.js +4 -0
- package/dist/utils/deploy-output/readJson.d.ts +1 -0
- package/dist/utils/deploy-output/readJson.js +9 -0
- package/dist/utils/deploy-output/resolveNitroOutputLayout.d.ts +8 -0
- package/dist/utils/deploy-output/resolveNitroOutputLayout.js +16 -0
- package/dist/utils/deploy-output/resolveOutputPath.d.ts +2 -0
- package/dist/utils/deploy-output/resolveOutputPath.js +9 -0
- package/dist/utils/deploy-output/resolveWithin.d.ts +1 -0
- package/dist/utils/deploy-output/resolveWithin.js +12 -0
- package/dist/utils/lambda-config.js +4 -14
- package/dist/utils/messages.js +24 -3
- package/dist/utils/payload-generate.d.ts +10 -0
- package/dist/utils/payload-generate.js +59 -0
- package/dist/utils/pnpm-builds.d.ts +14 -0
- package/dist/utils/pnpm-builds.js +125 -0
- package/package.json +6 -5
- package/dist/lib/download-skill.d.ts +0 -12
- package/dist/lib/download-skill.js +0 -77
|
@@ -0,0 +1,533 @@
|
|
|
1
|
+
import type { GenericTranslationsObject, NestedKeysStripped } from '@payloadcms/translations';
|
|
2
|
+
export declare const translations: {
|
|
3
|
+
id: {
|
|
4
|
+
figma: {
|
|
5
|
+
cloudLimitAssetStorageError: string;
|
|
6
|
+
cloudLimitDocumentCountError: string;
|
|
7
|
+
cloudLimitDocumentDataSizeError: string;
|
|
8
|
+
cloudLimitModalBody: string;
|
|
9
|
+
cloudLimitModalConfirm: string;
|
|
10
|
+
cloudLimitModalHeading: string;
|
|
11
|
+
cloudLimitModalRetry: string;
|
|
12
|
+
cloudLimitModalReviewCollection: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
ar: {
|
|
16
|
+
figma: {
|
|
17
|
+
cloudLimitAssetStorageError: string;
|
|
18
|
+
cloudLimitDocumentCountError: string;
|
|
19
|
+
cloudLimitDocumentDataSizeError: string;
|
|
20
|
+
cloudLimitModalBody: string;
|
|
21
|
+
cloudLimitModalConfirm: string;
|
|
22
|
+
cloudLimitModalHeading: string;
|
|
23
|
+
cloudLimitModalRetry: string;
|
|
24
|
+
cloudLimitModalReviewCollection: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
az: {
|
|
28
|
+
figma: {
|
|
29
|
+
cloudLimitAssetStorageError: string;
|
|
30
|
+
cloudLimitDocumentCountError: string;
|
|
31
|
+
cloudLimitDocumentDataSizeError: string;
|
|
32
|
+
cloudLimitModalBody: string;
|
|
33
|
+
cloudLimitModalConfirm: string;
|
|
34
|
+
cloudLimitModalHeading: string;
|
|
35
|
+
cloudLimitModalRetry: string;
|
|
36
|
+
cloudLimitModalReviewCollection: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
bg: {
|
|
40
|
+
figma: {
|
|
41
|
+
cloudLimitAssetStorageError: string;
|
|
42
|
+
cloudLimitDocumentCountError: string;
|
|
43
|
+
cloudLimitDocumentDataSizeError: string;
|
|
44
|
+
cloudLimitModalBody: string;
|
|
45
|
+
cloudLimitModalConfirm: string;
|
|
46
|
+
cloudLimitModalHeading: string;
|
|
47
|
+
cloudLimitModalRetry: string;
|
|
48
|
+
cloudLimitModalReviewCollection: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
'bn-BD': {
|
|
52
|
+
figma: {
|
|
53
|
+
cloudLimitAssetStorageError: string;
|
|
54
|
+
cloudLimitDocumentCountError: string;
|
|
55
|
+
cloudLimitDocumentDataSizeError: string;
|
|
56
|
+
cloudLimitModalBody: string;
|
|
57
|
+
cloudLimitModalConfirm: string;
|
|
58
|
+
cloudLimitModalHeading: string;
|
|
59
|
+
cloudLimitModalRetry: string;
|
|
60
|
+
cloudLimitModalReviewCollection: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
'bn-IN': {
|
|
64
|
+
figma: {
|
|
65
|
+
cloudLimitAssetStorageError: string;
|
|
66
|
+
cloudLimitDocumentCountError: string;
|
|
67
|
+
cloudLimitDocumentDataSizeError: string;
|
|
68
|
+
cloudLimitModalBody: string;
|
|
69
|
+
cloudLimitModalConfirm: string;
|
|
70
|
+
cloudLimitModalHeading: string;
|
|
71
|
+
cloudLimitModalRetry: string;
|
|
72
|
+
cloudLimitModalReviewCollection: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
ca: {
|
|
76
|
+
figma: {
|
|
77
|
+
cloudLimitAssetStorageError: string;
|
|
78
|
+
cloudLimitDocumentCountError: string;
|
|
79
|
+
cloudLimitDocumentDataSizeError: string;
|
|
80
|
+
cloudLimitModalBody: string;
|
|
81
|
+
cloudLimitModalConfirm: string;
|
|
82
|
+
cloudLimitModalHeading: string;
|
|
83
|
+
cloudLimitModalRetry: string;
|
|
84
|
+
cloudLimitModalReviewCollection: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
cs: {
|
|
88
|
+
figma: {
|
|
89
|
+
cloudLimitAssetStorageError: string;
|
|
90
|
+
cloudLimitDocumentCountError: string;
|
|
91
|
+
cloudLimitDocumentDataSizeError: string;
|
|
92
|
+
cloudLimitModalBody: string;
|
|
93
|
+
cloudLimitModalConfirm: string;
|
|
94
|
+
cloudLimitModalHeading: string;
|
|
95
|
+
cloudLimitModalRetry: string;
|
|
96
|
+
cloudLimitModalReviewCollection: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
da: {
|
|
100
|
+
figma: {
|
|
101
|
+
cloudLimitAssetStorageError: string;
|
|
102
|
+
cloudLimitDocumentCountError: string;
|
|
103
|
+
cloudLimitDocumentDataSizeError: string;
|
|
104
|
+
cloudLimitModalBody: string;
|
|
105
|
+
cloudLimitModalConfirm: string;
|
|
106
|
+
cloudLimitModalHeading: string;
|
|
107
|
+
cloudLimitModalRetry: string;
|
|
108
|
+
cloudLimitModalReviewCollection: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
de: {
|
|
112
|
+
figma: {
|
|
113
|
+
cloudLimitAssetStorageError: string;
|
|
114
|
+
cloudLimitDocumentCountError: string;
|
|
115
|
+
cloudLimitDocumentDataSizeError: string;
|
|
116
|
+
cloudLimitModalBody: string;
|
|
117
|
+
cloudLimitModalConfirm: string;
|
|
118
|
+
cloudLimitModalHeading: string;
|
|
119
|
+
cloudLimitModalRetry: string;
|
|
120
|
+
cloudLimitModalReviewCollection: string;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
en: {
|
|
124
|
+
figma: {
|
|
125
|
+
cloudLimitAssetStorageError: string;
|
|
126
|
+
cloudLimitDocumentCountError: string;
|
|
127
|
+
cloudLimitDocumentDataSizeError: string;
|
|
128
|
+
cloudLimitModalBody: string;
|
|
129
|
+
cloudLimitModalConfirm: string;
|
|
130
|
+
cloudLimitModalHeading: string;
|
|
131
|
+
cloudLimitModalRetry: string;
|
|
132
|
+
cloudLimitModalReviewCollection: string;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
es: {
|
|
136
|
+
figma: {
|
|
137
|
+
cloudLimitAssetStorageError: string;
|
|
138
|
+
cloudLimitDocumentCountError: string;
|
|
139
|
+
cloudLimitDocumentDataSizeError: string;
|
|
140
|
+
cloudLimitModalBody: string;
|
|
141
|
+
cloudLimitModalConfirm: string;
|
|
142
|
+
cloudLimitModalHeading: string;
|
|
143
|
+
cloudLimitModalRetry: string;
|
|
144
|
+
cloudLimitModalReviewCollection: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
et: {
|
|
148
|
+
figma: {
|
|
149
|
+
cloudLimitAssetStorageError: string;
|
|
150
|
+
cloudLimitDocumentCountError: string;
|
|
151
|
+
cloudLimitDocumentDataSizeError: string;
|
|
152
|
+
cloudLimitModalBody: string;
|
|
153
|
+
cloudLimitModalConfirm: string;
|
|
154
|
+
cloudLimitModalHeading: string;
|
|
155
|
+
cloudLimitModalRetry: string;
|
|
156
|
+
cloudLimitModalReviewCollection: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
fa: {
|
|
160
|
+
figma: {
|
|
161
|
+
cloudLimitAssetStorageError: string;
|
|
162
|
+
cloudLimitDocumentCountError: string;
|
|
163
|
+
cloudLimitDocumentDataSizeError: string;
|
|
164
|
+
cloudLimitModalBody: string;
|
|
165
|
+
cloudLimitModalConfirm: string;
|
|
166
|
+
cloudLimitModalHeading: string;
|
|
167
|
+
cloudLimitModalRetry: string;
|
|
168
|
+
cloudLimitModalReviewCollection: string;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
fr: {
|
|
172
|
+
figma: {
|
|
173
|
+
cloudLimitAssetStorageError: string;
|
|
174
|
+
cloudLimitDocumentCountError: string;
|
|
175
|
+
cloudLimitDocumentDataSizeError: string;
|
|
176
|
+
cloudLimitModalBody: string;
|
|
177
|
+
cloudLimitModalConfirm: string;
|
|
178
|
+
cloudLimitModalHeading: string;
|
|
179
|
+
cloudLimitModalRetry: string;
|
|
180
|
+
cloudLimitModalReviewCollection: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
he: {
|
|
184
|
+
figma: {
|
|
185
|
+
cloudLimitAssetStorageError: string;
|
|
186
|
+
cloudLimitDocumentCountError: string;
|
|
187
|
+
cloudLimitDocumentDataSizeError: string;
|
|
188
|
+
cloudLimitModalBody: string;
|
|
189
|
+
cloudLimitModalConfirm: string;
|
|
190
|
+
cloudLimitModalHeading: string;
|
|
191
|
+
cloudLimitModalRetry: string;
|
|
192
|
+
cloudLimitModalReviewCollection: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
hr: {
|
|
196
|
+
figma: {
|
|
197
|
+
cloudLimitAssetStorageError: string;
|
|
198
|
+
cloudLimitDocumentCountError: string;
|
|
199
|
+
cloudLimitDocumentDataSizeError: string;
|
|
200
|
+
cloudLimitModalBody: string;
|
|
201
|
+
cloudLimitModalConfirm: string;
|
|
202
|
+
cloudLimitModalHeading: string;
|
|
203
|
+
cloudLimitModalRetry: string;
|
|
204
|
+
cloudLimitModalReviewCollection: string;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
hu: {
|
|
208
|
+
figma: {
|
|
209
|
+
cloudLimitAssetStorageError: string;
|
|
210
|
+
cloudLimitDocumentCountError: string;
|
|
211
|
+
cloudLimitDocumentDataSizeError: string;
|
|
212
|
+
cloudLimitModalBody: string;
|
|
213
|
+
cloudLimitModalConfirm: string;
|
|
214
|
+
cloudLimitModalHeading: string;
|
|
215
|
+
cloudLimitModalRetry: string;
|
|
216
|
+
cloudLimitModalReviewCollection: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
hy: {
|
|
220
|
+
figma: {
|
|
221
|
+
cloudLimitAssetStorageError: string;
|
|
222
|
+
cloudLimitDocumentCountError: string;
|
|
223
|
+
cloudLimitDocumentDataSizeError: string;
|
|
224
|
+
cloudLimitModalBody: string;
|
|
225
|
+
cloudLimitModalConfirm: string;
|
|
226
|
+
cloudLimitModalHeading: string;
|
|
227
|
+
cloudLimitModalRetry: string;
|
|
228
|
+
cloudLimitModalReviewCollection: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
is: {
|
|
232
|
+
figma: {
|
|
233
|
+
cloudLimitAssetStorageError: string;
|
|
234
|
+
cloudLimitDocumentCountError: string;
|
|
235
|
+
cloudLimitDocumentDataSizeError: string;
|
|
236
|
+
cloudLimitModalBody: string;
|
|
237
|
+
cloudLimitModalConfirm: string;
|
|
238
|
+
cloudLimitModalHeading: string;
|
|
239
|
+
cloudLimitModalRetry: string;
|
|
240
|
+
cloudLimitModalReviewCollection: string;
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
it: {
|
|
244
|
+
figma: {
|
|
245
|
+
cloudLimitAssetStorageError: string;
|
|
246
|
+
cloudLimitDocumentCountError: string;
|
|
247
|
+
cloudLimitDocumentDataSizeError: string;
|
|
248
|
+
cloudLimitModalBody: string;
|
|
249
|
+
cloudLimitModalConfirm: string;
|
|
250
|
+
cloudLimitModalHeading: string;
|
|
251
|
+
cloudLimitModalRetry: string;
|
|
252
|
+
cloudLimitModalReviewCollection: string;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
ja: {
|
|
256
|
+
figma: {
|
|
257
|
+
cloudLimitAssetStorageError: string;
|
|
258
|
+
cloudLimitDocumentCountError: string;
|
|
259
|
+
cloudLimitDocumentDataSizeError: string;
|
|
260
|
+
cloudLimitModalBody: string;
|
|
261
|
+
cloudLimitModalConfirm: string;
|
|
262
|
+
cloudLimitModalHeading: string;
|
|
263
|
+
cloudLimitModalRetry: string;
|
|
264
|
+
cloudLimitModalReviewCollection: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
ko: {
|
|
268
|
+
figma: {
|
|
269
|
+
cloudLimitAssetStorageError: string;
|
|
270
|
+
cloudLimitDocumentCountError: string;
|
|
271
|
+
cloudLimitDocumentDataSizeError: string;
|
|
272
|
+
cloudLimitModalBody: string;
|
|
273
|
+
cloudLimitModalConfirm: string;
|
|
274
|
+
cloudLimitModalHeading: string;
|
|
275
|
+
cloudLimitModalRetry: string;
|
|
276
|
+
cloudLimitModalReviewCollection: string;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
lt: {
|
|
280
|
+
figma: {
|
|
281
|
+
cloudLimitAssetStorageError: string;
|
|
282
|
+
cloudLimitDocumentCountError: string;
|
|
283
|
+
cloudLimitDocumentDataSizeError: string;
|
|
284
|
+
cloudLimitModalBody: string;
|
|
285
|
+
cloudLimitModalConfirm: string;
|
|
286
|
+
cloudLimitModalHeading: string;
|
|
287
|
+
cloudLimitModalRetry: string;
|
|
288
|
+
cloudLimitModalReviewCollection: string;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
lv: {
|
|
292
|
+
figma: {
|
|
293
|
+
cloudLimitAssetStorageError: string;
|
|
294
|
+
cloudLimitDocumentCountError: string;
|
|
295
|
+
cloudLimitDocumentDataSizeError: string;
|
|
296
|
+
cloudLimitModalBody: string;
|
|
297
|
+
cloudLimitModalConfirm: string;
|
|
298
|
+
cloudLimitModalHeading: string;
|
|
299
|
+
cloudLimitModalRetry: string;
|
|
300
|
+
cloudLimitModalReviewCollection: string;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
my: {
|
|
304
|
+
figma: {
|
|
305
|
+
cloudLimitAssetStorageError: string;
|
|
306
|
+
cloudLimitDocumentCountError: string;
|
|
307
|
+
cloudLimitDocumentDataSizeError: string;
|
|
308
|
+
cloudLimitModalBody: string;
|
|
309
|
+
cloudLimitModalConfirm: string;
|
|
310
|
+
cloudLimitModalHeading: string;
|
|
311
|
+
cloudLimitModalRetry: string;
|
|
312
|
+
cloudLimitModalReviewCollection: string;
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
nb: {
|
|
316
|
+
figma: {
|
|
317
|
+
cloudLimitAssetStorageError: string;
|
|
318
|
+
cloudLimitDocumentCountError: string;
|
|
319
|
+
cloudLimitDocumentDataSizeError: string;
|
|
320
|
+
cloudLimitModalBody: string;
|
|
321
|
+
cloudLimitModalConfirm: string;
|
|
322
|
+
cloudLimitModalHeading: string;
|
|
323
|
+
cloudLimitModalRetry: string;
|
|
324
|
+
cloudLimitModalReviewCollection: string;
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
nl: {
|
|
328
|
+
figma: {
|
|
329
|
+
cloudLimitAssetStorageError: string;
|
|
330
|
+
cloudLimitDocumentCountError: string;
|
|
331
|
+
cloudLimitDocumentDataSizeError: string;
|
|
332
|
+
cloudLimitModalBody: string;
|
|
333
|
+
cloudLimitModalConfirm: string;
|
|
334
|
+
cloudLimitModalHeading: string;
|
|
335
|
+
cloudLimitModalRetry: string;
|
|
336
|
+
cloudLimitModalReviewCollection: string;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
pl: {
|
|
340
|
+
figma: {
|
|
341
|
+
cloudLimitAssetStorageError: string;
|
|
342
|
+
cloudLimitDocumentCountError: string;
|
|
343
|
+
cloudLimitDocumentDataSizeError: string;
|
|
344
|
+
cloudLimitModalBody: string;
|
|
345
|
+
cloudLimitModalConfirm: string;
|
|
346
|
+
cloudLimitModalHeading: string;
|
|
347
|
+
cloudLimitModalRetry: string;
|
|
348
|
+
cloudLimitModalReviewCollection: string;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
pt: {
|
|
352
|
+
figma: {
|
|
353
|
+
cloudLimitAssetStorageError: string;
|
|
354
|
+
cloudLimitDocumentCountError: string;
|
|
355
|
+
cloudLimitDocumentDataSizeError: string;
|
|
356
|
+
cloudLimitModalBody: string;
|
|
357
|
+
cloudLimitModalConfirm: string;
|
|
358
|
+
cloudLimitModalHeading: string;
|
|
359
|
+
cloudLimitModalRetry: string;
|
|
360
|
+
cloudLimitModalReviewCollection: string;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
ro: {
|
|
364
|
+
figma: {
|
|
365
|
+
cloudLimitAssetStorageError: string;
|
|
366
|
+
cloudLimitDocumentCountError: string;
|
|
367
|
+
cloudLimitDocumentDataSizeError: string;
|
|
368
|
+
cloudLimitModalBody: string;
|
|
369
|
+
cloudLimitModalConfirm: string;
|
|
370
|
+
cloudLimitModalHeading: string;
|
|
371
|
+
cloudLimitModalRetry: string;
|
|
372
|
+
cloudLimitModalReviewCollection: string;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
rs: {
|
|
376
|
+
figma: {
|
|
377
|
+
cloudLimitAssetStorageError: string;
|
|
378
|
+
cloudLimitDocumentCountError: string;
|
|
379
|
+
cloudLimitDocumentDataSizeError: string;
|
|
380
|
+
cloudLimitModalBody: string;
|
|
381
|
+
cloudLimitModalConfirm: string;
|
|
382
|
+
cloudLimitModalHeading: string;
|
|
383
|
+
cloudLimitModalRetry: string;
|
|
384
|
+
cloudLimitModalReviewCollection: string;
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
'rs-latin': {
|
|
388
|
+
figma: {
|
|
389
|
+
cloudLimitAssetStorageError: string;
|
|
390
|
+
cloudLimitDocumentCountError: string;
|
|
391
|
+
cloudLimitDocumentDataSizeError: string;
|
|
392
|
+
cloudLimitModalBody: string;
|
|
393
|
+
cloudLimitModalConfirm: string;
|
|
394
|
+
cloudLimitModalHeading: string;
|
|
395
|
+
cloudLimitModalRetry: string;
|
|
396
|
+
cloudLimitModalReviewCollection: string;
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
ru: {
|
|
400
|
+
figma: {
|
|
401
|
+
cloudLimitAssetStorageError: string;
|
|
402
|
+
cloudLimitDocumentCountError: string;
|
|
403
|
+
cloudLimitDocumentDataSizeError: string;
|
|
404
|
+
cloudLimitModalBody: string;
|
|
405
|
+
cloudLimitModalConfirm: string;
|
|
406
|
+
cloudLimitModalHeading: string;
|
|
407
|
+
cloudLimitModalRetry: string;
|
|
408
|
+
cloudLimitModalReviewCollection: string;
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
sk: {
|
|
412
|
+
figma: {
|
|
413
|
+
cloudLimitAssetStorageError: string;
|
|
414
|
+
cloudLimitDocumentCountError: string;
|
|
415
|
+
cloudLimitDocumentDataSizeError: string;
|
|
416
|
+
cloudLimitModalBody: string;
|
|
417
|
+
cloudLimitModalConfirm: string;
|
|
418
|
+
cloudLimitModalHeading: string;
|
|
419
|
+
cloudLimitModalRetry: string;
|
|
420
|
+
cloudLimitModalReviewCollection: string;
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
sl: {
|
|
424
|
+
figma: {
|
|
425
|
+
cloudLimitAssetStorageError: string;
|
|
426
|
+
cloudLimitDocumentCountError: string;
|
|
427
|
+
cloudLimitDocumentDataSizeError: string;
|
|
428
|
+
cloudLimitModalBody: string;
|
|
429
|
+
cloudLimitModalConfirm: string;
|
|
430
|
+
cloudLimitModalHeading: string;
|
|
431
|
+
cloudLimitModalRetry: string;
|
|
432
|
+
cloudLimitModalReviewCollection: string;
|
|
433
|
+
};
|
|
434
|
+
};
|
|
435
|
+
sv: {
|
|
436
|
+
figma: {
|
|
437
|
+
cloudLimitAssetStorageError: string;
|
|
438
|
+
cloudLimitDocumentCountError: string;
|
|
439
|
+
cloudLimitDocumentDataSizeError: string;
|
|
440
|
+
cloudLimitModalBody: string;
|
|
441
|
+
cloudLimitModalConfirm: string;
|
|
442
|
+
cloudLimitModalHeading: string;
|
|
443
|
+
cloudLimitModalRetry: string;
|
|
444
|
+
cloudLimitModalReviewCollection: string;
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
ta: {
|
|
448
|
+
figma: {
|
|
449
|
+
cloudLimitAssetStorageError: string;
|
|
450
|
+
cloudLimitDocumentCountError: string;
|
|
451
|
+
cloudLimitDocumentDataSizeError: string;
|
|
452
|
+
cloudLimitModalBody: string;
|
|
453
|
+
cloudLimitModalConfirm: string;
|
|
454
|
+
cloudLimitModalHeading: string;
|
|
455
|
+
cloudLimitModalRetry: string;
|
|
456
|
+
cloudLimitModalReviewCollection: string;
|
|
457
|
+
};
|
|
458
|
+
};
|
|
459
|
+
th: {
|
|
460
|
+
figma: {
|
|
461
|
+
cloudLimitAssetStorageError: string;
|
|
462
|
+
cloudLimitDocumentCountError: string;
|
|
463
|
+
cloudLimitDocumentDataSizeError: string;
|
|
464
|
+
cloudLimitModalBody: string;
|
|
465
|
+
cloudLimitModalConfirm: string;
|
|
466
|
+
cloudLimitModalHeading: string;
|
|
467
|
+
cloudLimitModalRetry: string;
|
|
468
|
+
cloudLimitModalReviewCollection: string;
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
tr: {
|
|
472
|
+
figma: {
|
|
473
|
+
cloudLimitAssetStorageError: string;
|
|
474
|
+
cloudLimitDocumentCountError: string;
|
|
475
|
+
cloudLimitDocumentDataSizeError: string;
|
|
476
|
+
cloudLimitModalBody: string;
|
|
477
|
+
cloudLimitModalConfirm: string;
|
|
478
|
+
cloudLimitModalHeading: string;
|
|
479
|
+
cloudLimitModalRetry: string;
|
|
480
|
+
cloudLimitModalReviewCollection: string;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
uk: {
|
|
484
|
+
figma: {
|
|
485
|
+
cloudLimitAssetStorageError: string;
|
|
486
|
+
cloudLimitDocumentCountError: string;
|
|
487
|
+
cloudLimitDocumentDataSizeError: string;
|
|
488
|
+
cloudLimitModalBody: string;
|
|
489
|
+
cloudLimitModalConfirm: string;
|
|
490
|
+
cloudLimitModalHeading: string;
|
|
491
|
+
cloudLimitModalRetry: string;
|
|
492
|
+
cloudLimitModalReviewCollection: string;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
vi: {
|
|
496
|
+
figma: {
|
|
497
|
+
cloudLimitAssetStorageError: string;
|
|
498
|
+
cloudLimitDocumentCountError: string;
|
|
499
|
+
cloudLimitDocumentDataSizeError: string;
|
|
500
|
+
cloudLimitModalBody: string;
|
|
501
|
+
cloudLimitModalConfirm: string;
|
|
502
|
+
cloudLimitModalHeading: string;
|
|
503
|
+
cloudLimitModalRetry: string;
|
|
504
|
+
cloudLimitModalReviewCollection: string;
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
zh: {
|
|
508
|
+
figma: {
|
|
509
|
+
cloudLimitAssetStorageError: string;
|
|
510
|
+
cloudLimitDocumentCountError: string;
|
|
511
|
+
cloudLimitDocumentDataSizeError: string;
|
|
512
|
+
cloudLimitModalBody: string;
|
|
513
|
+
cloudLimitModalConfirm: string;
|
|
514
|
+
cloudLimitModalHeading: string;
|
|
515
|
+
cloudLimitModalRetry: string;
|
|
516
|
+
cloudLimitModalReviewCollection: string;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
'zh-TW': {
|
|
520
|
+
figma: {
|
|
521
|
+
cloudLimitAssetStorageError: string;
|
|
522
|
+
cloudLimitDocumentCountError: string;
|
|
523
|
+
cloudLimitDocumentDataSizeError: string;
|
|
524
|
+
cloudLimitModalBody: string;
|
|
525
|
+
cloudLimitModalConfirm: string;
|
|
526
|
+
cloudLimitModalHeading: string;
|
|
527
|
+
cloudLimitModalRetry: string;
|
|
528
|
+
cloudLimitModalReviewCollection: string;
|
|
529
|
+
};
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
export type FigmaTranslations = GenericTranslationsObject;
|
|
533
|
+
export type FigmaTranslationKeys = NestedKeysStripped<FigmaTranslations>;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { arTranslations as ar } from './ar.js';
|
|
2
|
+
import { azTranslations as az } from './az.js';
|
|
3
|
+
import { bgTranslations as bg } from './bg.js';
|
|
4
|
+
import { bnBdTranslations as bnBd } from './bnBd.js';
|
|
5
|
+
import { bnInTranslations as bnIn } from './bnIn.js';
|
|
6
|
+
import { caTranslations as ca } from './ca.js';
|
|
7
|
+
import { csTranslations as cs } from './cs.js';
|
|
8
|
+
import { daTranslations as da } from './da.js';
|
|
9
|
+
import { deTranslations as de } from './de.js';
|
|
10
|
+
import { en } from './en.js';
|
|
11
|
+
import { esTranslations as es } from './es.js';
|
|
12
|
+
import { etTranslations as et } from './et.js';
|
|
13
|
+
import { faTranslations as fa } from './fa.js';
|
|
14
|
+
import { frTranslations as fr } from './fr.js';
|
|
15
|
+
import { heTranslations as he } from './he.js';
|
|
16
|
+
import { hrTranslations as hr } from './hr.js';
|
|
17
|
+
import { huTranslations as hu } from './hu.js';
|
|
18
|
+
import { hyTranslations as hy } from './hy.js';
|
|
19
|
+
import { idTranslations as id } from './id.js';
|
|
20
|
+
import { isTranslations as is } from './is.js';
|
|
21
|
+
import { itTranslations as it } from './it.js';
|
|
22
|
+
import { jaTranslations as ja } from './ja.js';
|
|
23
|
+
import { koTranslations as ko } from './ko.js';
|
|
24
|
+
import { ltTranslations as lt } from './lt.js';
|
|
25
|
+
import { lvTranslations as lv } from './lv.js';
|
|
26
|
+
import { myTranslations as my } from './my.js';
|
|
27
|
+
import { nbTranslations as nb } from './nb.js';
|
|
28
|
+
import { nlTranslations as nl } from './nl.js';
|
|
29
|
+
import { plTranslations as pl } from './pl.js';
|
|
30
|
+
import { ptTranslations as pt } from './pt.js';
|
|
31
|
+
import { roTranslations as ro } from './ro.js';
|
|
32
|
+
import { rsTranslations as rs } from './rs.js';
|
|
33
|
+
import { rsLatinTranslations as rsLatin } from './rsLatin.js';
|
|
34
|
+
import { ruTranslations as ru } from './ru.js';
|
|
35
|
+
import { skTranslations as sk } from './sk.js';
|
|
36
|
+
import { slTranslations as sl } from './sl.js';
|
|
37
|
+
import { svTranslations as sv } from './sv.js';
|
|
38
|
+
import { taTranslations as ta } from './ta.js';
|
|
39
|
+
import { thTranslations as th } from './th.js';
|
|
40
|
+
import { trTranslations as tr } from './tr.js';
|
|
41
|
+
import { ukTranslations as uk } from './uk.js';
|
|
42
|
+
import { viTranslations as vi } from './vi.js';
|
|
43
|
+
import { zhTranslations as zh } from './zh.js';
|
|
44
|
+
import { zhTwTranslations as zhTw } from './zhTw.js';
|
|
45
|
+
export const translations = {
|
|
46
|
+
id,
|
|
47
|
+
ar,
|
|
48
|
+
az,
|
|
49
|
+
bg,
|
|
50
|
+
'bn-BD': bnBd,
|
|
51
|
+
'bn-IN': bnIn,
|
|
52
|
+
ca,
|
|
53
|
+
cs,
|
|
54
|
+
da,
|
|
55
|
+
de,
|
|
56
|
+
en,
|
|
57
|
+
es,
|
|
58
|
+
et,
|
|
59
|
+
fa,
|
|
60
|
+
fr,
|
|
61
|
+
he,
|
|
62
|
+
hr,
|
|
63
|
+
hu,
|
|
64
|
+
hy,
|
|
65
|
+
is,
|
|
66
|
+
it,
|
|
67
|
+
ja,
|
|
68
|
+
ko,
|
|
69
|
+
lt,
|
|
70
|
+
lv,
|
|
71
|
+
my,
|
|
72
|
+
nb,
|
|
73
|
+
nl,
|
|
74
|
+
pl,
|
|
75
|
+
pt,
|
|
76
|
+
ro,
|
|
77
|
+
rs,
|
|
78
|
+
'rs-latin': rsLatin,
|
|
79
|
+
ru,
|
|
80
|
+
sk,
|
|
81
|
+
sl,
|
|
82
|
+
sv,
|
|
83
|
+
ta,
|
|
84
|
+
th,
|
|
85
|
+
tr,
|
|
86
|
+
uk,
|
|
87
|
+
vi,
|
|
88
|
+
zh,
|
|
89
|
+
'zh-TW': zhTw
|
|
90
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const isTranslations: {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: string;
|
|
4
|
+
cloudLimitDocumentCountError: string;
|
|
5
|
+
cloudLimitDocumentDataSizeError: string;
|
|
6
|
+
cloudLimitModalBody: string;
|
|
7
|
+
cloudLimitModalConfirm: string;
|
|
8
|
+
cloudLimitModalHeading: string;
|
|
9
|
+
cloudLimitModalRetry: string;
|
|
10
|
+
cloudLimitModalReviewCollection: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const isTranslations = {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: 'Ekki er hægt að hlaða upp. Losið um pláss til að halda áfram.',
|
|
4
|
+
cloudLimitDocumentCountError: 'Ekki var hægt að búa til skjal. Geymslutakmörkum hefur verið náð.',
|
|
5
|
+
cloudLimitDocumentDataSizeError: 'Ekki var hægt að vista skjalið, textinn er of stór.',
|
|
6
|
+
cloudLimitModalBody: 'Þú hefur náð hámarksfjölda skjala. Vinsamlegast eyttu nokkrum núverandi skjölum til að geta haldið áfram að búa til ný.',
|
|
7
|
+
cloudLimitModalConfirm: 'Fé ég skilji',
|
|
8
|
+
cloudLimitModalHeading: 'Ekki tókst að vista skjal',
|
|
9
|
+
cloudLimitModalRetry: 'Reyni',
|
|
10
|
+
cloudLimitModalReviewCollection: 'Skoðaðu {{collection}}'
|
|
11
|
+
}
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const itTranslations: {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: string;
|
|
4
|
+
cloudLimitDocumentCountError: string;
|
|
5
|
+
cloudLimitDocumentDataSizeError: string;
|
|
6
|
+
cloudLimitModalBody: string;
|
|
7
|
+
cloudLimitModalConfirm: string;
|
|
8
|
+
cloudLimitModalHeading: string;
|
|
9
|
+
cloudLimitModalRetry: string;
|
|
10
|
+
cloudLimitModalReviewCollection: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const itTranslations = {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: 'Impossibile caricare. Liberare spazio per continuare.',
|
|
4
|
+
cloudLimitDocumentCountError: 'Impossibile creare il documento. Limite di archiviazione raggiunto.',
|
|
5
|
+
cloudLimitDocumentDataSizeError: 'Impossibile salvare il documento, il testo è troppo grande.',
|
|
6
|
+
cloudLimitModalBody: 'Hai raggiunto il limite di documenti. Elimina alcuni documenti esistenti per continuare a crearne di nuovi.',
|
|
7
|
+
cloudLimitModalConfirm: 'Ricevuto',
|
|
8
|
+
cloudLimitModalHeading: 'Impossibile salvare il documento',
|
|
9
|
+
cloudLimitModalRetry: 'Riprova',
|
|
10
|
+
cloudLimitModalReviewCollection: 'Revisiona la {{collection}}'
|
|
11
|
+
}
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const jaTranslations: {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: string;
|
|
4
|
+
cloudLimitDocumentCountError: string;
|
|
5
|
+
cloudLimitDocumentDataSizeError: string;
|
|
6
|
+
cloudLimitModalBody: string;
|
|
7
|
+
cloudLimitModalConfirm: string;
|
|
8
|
+
cloudLimitModalHeading: string;
|
|
9
|
+
cloudLimitModalRetry: string;
|
|
10
|
+
cloudLimitModalReviewCollection: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const jaTranslations = {
|
|
2
|
+
figma: {
|
|
3
|
+
cloudLimitAssetStorageError: 'アップロードできません。続行するには容量を空けてください。',
|
|
4
|
+
cloudLimitDocumentCountError: 'ドキュメントを作成できません。ストレージ上限に達しています。',
|
|
5
|
+
cloudLimitDocumentDataSizeError: 'ドキュメントを保存できません。テキストが大きすぎます。',
|
|
6
|
+
cloudLimitModalBody: 'ドキュメントの上限に達しました。新規作成を続けるには、既存のドキュメントを削除してください。',
|
|
7
|
+
cloudLimitModalConfirm: '承知しました',
|
|
8
|
+
cloudLimitModalHeading: 'ドキュメントを保存できませんでした',
|
|
9
|
+
cloudLimitModalRetry: '再試行',
|
|
10
|
+
cloudLimitModalReviewCollection: '{{collection}}を確認する'
|
|
11
|
+
}
|
|
12
|
+
};
|