@tinloof/medusa-sanity-sync 0.1.0
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/.medusa/server/src/admin/index.js +1521 -0
- package/.medusa/server/src/admin/index.mjs +1520 -0
- package/.medusa/server/src/api/admin/sanity/documents/[id]/route.d.ts +3 -0
- package/.medusa/server/src/api/admin/sanity/documents/[id]/route.d.ts.map +1 -0
- package/.medusa/server/src/api/admin/sanity/documents/[id]/route.js +12 -0
- package/.medusa/server/src/api/admin/sanity/entities/[entityType]/[id]/sync/route.d.ts +7 -0
- package/.medusa/server/src/api/admin/sanity/entities/[entityType]/[id]/sync/route.d.ts.map +1 -0
- package/.medusa/server/src/api/admin/sanity/entities/[entityType]/[id]/sync/route.js +23 -0
- package/.medusa/server/src/api/admin/sanity/syncs/route.d.ts +14 -0
- package/.medusa/server/src/api/admin/sanity/syncs/route.d.ts.map +1 -0
- package/.medusa/server/src/api/admin/sanity/syncs/route.js +60 -0
- package/.medusa/server/src/core/default-entities.d.ts +35 -0
- package/.medusa/server/src/core/default-entities.d.ts.map +1 -0
- package/.medusa/server/src/core/default-entities.js +67 -0
- package/.medusa/server/src/core/entity-registry.d.ts +15 -0
- package/.medusa/server/src/core/entity-registry.d.ts.map +1 -0
- package/.medusa/server/src/core/entity-registry.js +35 -0
- package/.medusa/server/src/core/index.d.ts +4 -0
- package/.medusa/server/src/core/index.d.ts.map +1 -0
- package/.medusa/server/src/core/index.js +17 -0
- package/.medusa/server/src/core/transformer.d.ts +49 -0
- package/.medusa/server/src/core/transformer.d.ts.map +1 -0
- package/.medusa/server/src/core/transformer.js +76 -0
- package/.medusa/server/src/event-batcher/event-batcher.d.ts +29 -0
- package/.medusa/server/src/event-batcher/event-batcher.d.ts.map +1 -0
- package/.medusa/server/src/event-batcher/event-batcher.js +93 -0
- package/.medusa/server/src/event-batcher/event-buffer.d.ts +35 -0
- package/.medusa/server/src/event-batcher/event-buffer.d.ts.map +1 -0
- package/.medusa/server/src/event-batcher/event-buffer.js +127 -0
- package/.medusa/server/src/event-batcher/index.d.ts +4 -0
- package/.medusa/server/src/event-batcher/index.d.ts.map +1 -0
- package/.medusa/server/src/event-batcher/index.js +8 -0
- package/.medusa/server/src/event-batcher/types.d.ts +50 -0
- package/.medusa/server/src/event-batcher/types.d.ts.map +1 -0
- package/.medusa/server/src/event-batcher/types.js +3 -0
- package/.medusa/server/src/index.d.ts +40 -0
- package/.medusa/server/src/index.d.ts.map +1 -0
- package/.medusa/server/src/index.js +62 -0
- package/.medusa/server/src/modules/sanity/index.d.ts +8 -0
- package/.medusa/server/src/modules/sanity/index.d.ts.map +1 -0
- package/.medusa/server/src/modules/sanity/index.js +15 -0
- package/.medusa/server/src/modules/sanity/service.d.ts +115 -0
- package/.medusa/server/src/modules/sanity/service.d.ts.map +1 -0
- package/.medusa/server/src/modules/sanity/service.js +301 -0
- package/.medusa/server/src/subscribers/factory.d.ts +43 -0
- package/.medusa/server/src/subscribers/factory.d.ts.map +1 -0
- package/.medusa/server/src/subscribers/factory.js +68 -0
- package/.medusa/server/src/subscribers/index.d.ts +9 -0
- package/.medusa/server/src/subscribers/index.d.ts.map +1 -0
- package/.medusa/server/src/subscribers/index.js +13 -0
- package/.medusa/server/src/subscribers/sanity-sync.d.ts +10 -0
- package/.medusa/server/src/subscribers/sanity-sync.d.ts.map +1 -0
- package/.medusa/server/src/subscribers/sanity-sync.js +81 -0
- package/.medusa/server/src/types/index.d.ts +189 -0
- package/.medusa/server/src/types/index.d.ts.map +1 -0
- package/.medusa/server/src/types/index.js +3 -0
- package/.medusa/server/src/workflows/index.d.ts +2 -0
- package/.medusa/server/src/workflows/index.d.ts.map +1 -0
- package/.medusa/server/src/workflows/index.js +6 -0
- package/.medusa/server/src/workflows/sanity-sync-products/index.d.ts +6 -0
- package/.medusa/server/src/workflows/sanity-sync-products/index.d.ts.map +1 -0
- package/.medusa/server/src/workflows/sanity-sync-products/index.js +16 -0
- package/.medusa/server/src/workflows/sanity-sync-products/steps/sync.d.ts +4 -0
- package/.medusa/server/src/workflows/sanity-sync-products/steps/sync.d.ts.map +1 -0
- package/.medusa/server/src/workflows/sanity-sync-products/steps/sync.js +90 -0
- package/README.md +459 -0
- package/package.json +120 -0
|
@@ -0,0 +1,1521 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const adminSdk = require("@medusajs/admin-sdk");
|
|
4
|
+
const icons = require("@medusajs/icons");
|
|
5
|
+
const ui = require("@medusajs/ui");
|
|
6
|
+
const react = require("react");
|
|
7
|
+
const reactI18next = require("react-i18next");
|
|
8
|
+
const reactQuery = require("@tanstack/react-query");
|
|
9
|
+
const Medusa = require("@medusajs/js-sdk");
|
|
10
|
+
const _interopDefault = (e) => e && e.__esModule ? e : { default: e };
|
|
11
|
+
const Medusa__default = /* @__PURE__ */ _interopDefault(Medusa);
|
|
12
|
+
const sdk = new Medusa__default.default({
|
|
13
|
+
baseUrl: "/",
|
|
14
|
+
debug: false,
|
|
15
|
+
auth: {
|
|
16
|
+
type: "session"
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const sanityQueryKeys = {
|
|
20
|
+
document: (id2) => ["sanity_document", id2],
|
|
21
|
+
syncs: () => ["sanity_syncs"]
|
|
22
|
+
};
|
|
23
|
+
const useTriggerEntitySync = (entityType, id2, options) => {
|
|
24
|
+
const queryClient = reactQuery.useQueryClient();
|
|
25
|
+
return reactQuery.useMutation({
|
|
26
|
+
mutationFn: () => sdk.client.fetch(`/admin/sanity/entities/${entityType}/${id2}/sync`, {
|
|
27
|
+
method: "post"
|
|
28
|
+
}),
|
|
29
|
+
onSuccess: (data, variables, context) => {
|
|
30
|
+
queryClient.invalidateQueries({
|
|
31
|
+
queryKey: sanityQueryKeys.document(id2)
|
|
32
|
+
});
|
|
33
|
+
queryClient.invalidateQueries({
|
|
34
|
+
queryKey: sanityQueryKeys.syncs()
|
|
35
|
+
});
|
|
36
|
+
},
|
|
37
|
+
...options
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
const useSanityDocument = (id2, query, options) => {
|
|
41
|
+
const { data, ...rest } = reactQuery.useQuery({
|
|
42
|
+
queryFn: () => sdk.client.fetch(`/admin/sanity/documents/${id2}`, {
|
|
43
|
+
query
|
|
44
|
+
}),
|
|
45
|
+
queryKey: sanityQueryKeys.document(id2),
|
|
46
|
+
// Refetch on window focus to keep data fresh
|
|
47
|
+
refetchOnWindowFocus: true,
|
|
48
|
+
...options
|
|
49
|
+
});
|
|
50
|
+
return { ...data, ...rest };
|
|
51
|
+
};
|
|
52
|
+
const useTriggerSanitySync = (options) => {
|
|
53
|
+
const queryClient = reactQuery.useQueryClient();
|
|
54
|
+
return reactQuery.useMutation({
|
|
55
|
+
mutationFn: () => sdk.client.fetch("/admin/sanity/syncs", {
|
|
56
|
+
method: "post"
|
|
57
|
+
}),
|
|
58
|
+
onSuccess: (data, variables, context) => {
|
|
59
|
+
queryClient.invalidateQueries({
|
|
60
|
+
queryKey: ["sanity_document"]
|
|
61
|
+
});
|
|
62
|
+
queryClient.invalidateQueries({
|
|
63
|
+
queryKey: sanityQueryKeys.syncs()
|
|
64
|
+
});
|
|
65
|
+
},
|
|
66
|
+
...options
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
const useSanitySyncs = (query, options) => {
|
|
70
|
+
const { data, ...rest } = reactQuery.useQuery({
|
|
71
|
+
queryFn: () => sdk.client.fetch("/admin/sanity/syncs", {
|
|
72
|
+
query
|
|
73
|
+
}),
|
|
74
|
+
queryKey: sanityQueryKeys.syncs(),
|
|
75
|
+
...options
|
|
76
|
+
});
|
|
77
|
+
return { ...data, ...rest };
|
|
78
|
+
};
|
|
79
|
+
function SyncWidget({ data, entityType, compareField }) {
|
|
80
|
+
const { t } = reactI18next.useTranslation();
|
|
81
|
+
const { mutateAsync, isPending } = useTriggerEntitySync(entityType, data.id);
|
|
82
|
+
const { sanity_document, isLoading, refetch, isFetching } = useSanityDocument(
|
|
83
|
+
data.id
|
|
84
|
+
);
|
|
85
|
+
const [showCodeBlock, setShowCodeBlock] = react.useState(false);
|
|
86
|
+
const handleSync = async () => {
|
|
87
|
+
try {
|
|
88
|
+
await mutateAsync(void 0);
|
|
89
|
+
ui.toast.success(t("sanitySync.notifications.syncTriggered"));
|
|
90
|
+
await refetch();
|
|
91
|
+
} catch (err) {
|
|
92
|
+
ui.toast.error(
|
|
93
|
+
t("sanitySync.notifications.syncError", {
|
|
94
|
+
message: err.message
|
|
95
|
+
})
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
const isUpdating = isPending || isFetching;
|
|
100
|
+
const fieldToCompare = compareField || (data.title ? "title" : "name");
|
|
101
|
+
const medusaValue = data[fieldToCompare];
|
|
102
|
+
const sanityValue = sanity_document == null ? void 0 : sanity_document[fieldToCompare];
|
|
103
|
+
const isSynced = sanityValue === medusaValue;
|
|
104
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(ui.Container, { children: [
|
|
105
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-center justify-between", children: [
|
|
106
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
107
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { children: t("sanitySync.widget.title") }),
|
|
108
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { children: isLoading ? t("sanitySync.status.loading") : isSynced ? /* @__PURE__ */ jsxRuntime.jsx(ui.StatusBadge, { color: "green", children: t("sanitySync.status.synced") }) : /* @__PURE__ */ jsxRuntime.jsx(ui.StatusBadge, { color: "red", children: t("sanitySync.status.notSynced") }) })
|
|
109
|
+
] }),
|
|
110
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex gap-2", children: [
|
|
111
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
112
|
+
ui.Button,
|
|
113
|
+
{
|
|
114
|
+
disabled: isUpdating,
|
|
115
|
+
onClick: () => refetch(),
|
|
116
|
+
size: "small",
|
|
117
|
+
variant: "secondary",
|
|
118
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(icons.ArrowPathMini, {})
|
|
119
|
+
}
|
|
120
|
+
),
|
|
121
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
122
|
+
ui.Button,
|
|
123
|
+
{
|
|
124
|
+
disabled: isUpdating,
|
|
125
|
+
onClick: handleSync,
|
|
126
|
+
size: "small",
|
|
127
|
+
variant: "secondary",
|
|
128
|
+
children: t("sanitySync.actions.sync")
|
|
129
|
+
}
|
|
130
|
+
)
|
|
131
|
+
] })
|
|
132
|
+
] }),
|
|
133
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-6", children: [
|
|
134
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-4 flex gap-4", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
135
|
+
ui.Button,
|
|
136
|
+
{
|
|
137
|
+
onClick: () => setShowCodeBlock(!showCodeBlock),
|
|
138
|
+
size: "small",
|
|
139
|
+
variant: "secondary",
|
|
140
|
+
children: showCodeBlock ? t("sanitySync.actions.hideDocument") : t("sanitySync.actions.showDocument")
|
|
141
|
+
}
|
|
142
|
+
) }),
|
|
143
|
+
!isLoading && showCodeBlock && /* @__PURE__ */ jsxRuntime.jsx(
|
|
144
|
+
ui.CodeBlock,
|
|
145
|
+
{
|
|
146
|
+
className: "dark",
|
|
147
|
+
snippets: [
|
|
148
|
+
{
|
|
149
|
+
language: "json",
|
|
150
|
+
label: t("sanitySync.document.label"),
|
|
151
|
+
code: JSON.stringify(sanity_document ?? {}, null, 2)
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(ui.CodeBlock.Body, {})
|
|
155
|
+
},
|
|
156
|
+
sanity_document == null ? void 0 : sanity_document._rev
|
|
157
|
+
)
|
|
158
|
+
] })
|
|
159
|
+
] });
|
|
160
|
+
}
|
|
161
|
+
const CategoryWidget = ({ data }) => /* @__PURE__ */ jsxRuntime.jsx(SyncWidget, { compareField: "name", data, entityType: "product_category" });
|
|
162
|
+
adminSdk.defineWidgetConfig({
|
|
163
|
+
zone: "product_category.details.after"
|
|
164
|
+
});
|
|
165
|
+
const CollectionWidget = ({ data }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
166
|
+
SyncWidget,
|
|
167
|
+
{
|
|
168
|
+
compareField: "title",
|
|
169
|
+
data,
|
|
170
|
+
entityType: "product_collection"
|
|
171
|
+
}
|
|
172
|
+
);
|
|
173
|
+
adminSdk.defineWidgetConfig({
|
|
174
|
+
zone: "product_collection.details.after"
|
|
175
|
+
});
|
|
176
|
+
const ProductWidget = ({ data }) => /* @__PURE__ */ jsxRuntime.jsx(SyncWidget, { compareField: "title", data, entityType: "product" });
|
|
177
|
+
adminSdk.defineWidgetConfig({
|
|
178
|
+
zone: "product.details.after"
|
|
179
|
+
});
|
|
180
|
+
const SanityRoute = () => {
|
|
181
|
+
const { t } = reactI18next.useTranslation();
|
|
182
|
+
const { mutateAsync, isPending } = useTriggerSanitySync();
|
|
183
|
+
const { workflow_executions, refetch, isFetching } = useSanitySyncs();
|
|
184
|
+
const handleSync = async () => {
|
|
185
|
+
try {
|
|
186
|
+
await mutateAsync();
|
|
187
|
+
ui.toast.success(t("sanitySync.notifications.syncTriggered"));
|
|
188
|
+
refetch();
|
|
189
|
+
} catch (err) {
|
|
190
|
+
ui.toast.error(
|
|
191
|
+
t("sanitySync.notifications.syncError", {
|
|
192
|
+
message: err.message
|
|
193
|
+
})
|
|
194
|
+
);
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
const getBadgeColor = (state) => {
|
|
198
|
+
switch (state) {
|
|
199
|
+
case "invoking":
|
|
200
|
+
return "blue";
|
|
201
|
+
case "done":
|
|
202
|
+
return "green";
|
|
203
|
+
case "failed":
|
|
204
|
+
return "red";
|
|
205
|
+
case "reverted":
|
|
206
|
+
return "orange";
|
|
207
|
+
default:
|
|
208
|
+
return "grey";
|
|
209
|
+
}
|
|
210
|
+
};
|
|
211
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
212
|
+
/* @__PURE__ */ jsxRuntime.jsxs(ui.Container, { className: "flex flex-col overflow-hidden p-0", children: [
|
|
213
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-between p-6", children: [
|
|
214
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { className: "h1-core font-medium font-sans", children: t("sanitySync.title") }),
|
|
215
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex gap-2", children: [
|
|
216
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
217
|
+
ui.Button,
|
|
218
|
+
{
|
|
219
|
+
disabled: isFetching,
|
|
220
|
+
onClick: () => refetch(),
|
|
221
|
+
size: "small",
|
|
222
|
+
variant: "secondary",
|
|
223
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(icons.ArrowPathMini, {})
|
|
224
|
+
}
|
|
225
|
+
),
|
|
226
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
227
|
+
ui.Button,
|
|
228
|
+
{
|
|
229
|
+
disabled: isPending,
|
|
230
|
+
onClick: handleSync,
|
|
231
|
+
size: "small",
|
|
232
|
+
variant: "secondary",
|
|
233
|
+
children: t("sanitySync.actions.triggerSync")
|
|
234
|
+
}
|
|
235
|
+
)
|
|
236
|
+
] })
|
|
237
|
+
] }),
|
|
238
|
+
/* @__PURE__ */ jsxRuntime.jsxs(ui.Table, { children: [
|
|
239
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Header, { children: /* @__PURE__ */ jsxRuntime.jsxs(ui.Table.Row, { children: [
|
|
240
|
+
/* @__PURE__ */ jsxRuntime.jsx(HeaderCell, { children: t("sanitySync.table.headers.syncId") }),
|
|
241
|
+
/* @__PURE__ */ jsxRuntime.jsx(HeaderCell, { children: t("sanitySync.table.headers.status") }),
|
|
242
|
+
/* @__PURE__ */ jsxRuntime.jsx(HeaderCell, { children: t("sanitySync.table.headers.createdAt") }),
|
|
243
|
+
/* @__PURE__ */ jsxRuntime.jsx(HeaderCell, { children: t("sanitySync.table.headers.updatedAt") })
|
|
244
|
+
] }) }),
|
|
245
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Body, { children: (workflow_executions || []).map((execution) => /* @__PURE__ */ jsxRuntime.jsxs(ui.Table.Row, { children: [
|
|
246
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Cell, { children: execution.id }),
|
|
247
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Cell, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
248
|
+
ui.Badge,
|
|
249
|
+
{
|
|
250
|
+
color: getBadgeColor(execution.state),
|
|
251
|
+
rounded: "full",
|
|
252
|
+
size: "2xsmall",
|
|
253
|
+
children: t(`sanitySync.status.${execution.state}`)
|
|
254
|
+
}
|
|
255
|
+
) }),
|
|
256
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Cell, { children: execution.created_at }),
|
|
257
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Table.Cell, { children: execution.updated_at })
|
|
258
|
+
] }, execution.id)) })
|
|
259
|
+
] })
|
|
260
|
+
] }),
|
|
261
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Toaster, {})
|
|
262
|
+
] });
|
|
263
|
+
};
|
|
264
|
+
function HeaderCell({ children }) {
|
|
265
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ui.Table.HeaderCell, { children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-full w-full items-center", children }) });
|
|
266
|
+
}
|
|
267
|
+
const config = adminSdk.defineRouteConfig({
|
|
268
|
+
label: "Sanity",
|
|
269
|
+
// @ts-expect-error
|
|
270
|
+
icon: icons.Sanity
|
|
271
|
+
});
|
|
272
|
+
const sanitySync$t = {
|
|
273
|
+
title: "مزامنات Sanity",
|
|
274
|
+
status: {
|
|
275
|
+
synced: "تمت المزامنة",
|
|
276
|
+
notSynced: "غير متزامن",
|
|
277
|
+
loading: "جارٍ التحميل...",
|
|
278
|
+
invoking: "جارٍ التنفيذ",
|
|
279
|
+
done: "تم",
|
|
280
|
+
failed: "فشل",
|
|
281
|
+
reverted: "تم التراجع"
|
|
282
|
+
},
|
|
283
|
+
actions: {
|
|
284
|
+
sync: "مزامنة",
|
|
285
|
+
triggerSync: "تشغيل المزامنة",
|
|
286
|
+
hideDocument: "إخفاء وثيقة Sanity",
|
|
287
|
+
showDocument: "عرض وثيقة Sanity"
|
|
288
|
+
},
|
|
289
|
+
table: {
|
|
290
|
+
headers: {
|
|
291
|
+
syncId: "معرف المزامنة",
|
|
292
|
+
status: "الحالة",
|
|
293
|
+
createdAt: "تاريخ الإنشاء",
|
|
294
|
+
updatedAt: "تاريخ التحديث"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
widget: {
|
|
298
|
+
title: "حالة Sanity"
|
|
299
|
+
},
|
|
300
|
+
document: {
|
|
301
|
+
label: "وثيقة Sanity"
|
|
302
|
+
},
|
|
303
|
+
notifications: {
|
|
304
|
+
syncTriggered: "تم تشغيل المزامنة.",
|
|
305
|
+
syncError: "تعذر تشغيل المزامنة: {{message}}"
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
const ar = {
|
|
309
|
+
sanitySync: sanitySync$t
|
|
310
|
+
};
|
|
311
|
+
const sanitySync$s = {
|
|
312
|
+
title: "Синхронизации със Sanity",
|
|
313
|
+
status: {
|
|
314
|
+
synced: "Синхронизирано",
|
|
315
|
+
notSynced: "Не е синхронизирано",
|
|
316
|
+
loading: "Зареждане...",
|
|
317
|
+
invoking: "В процес",
|
|
318
|
+
done: "Готово",
|
|
319
|
+
failed: "Неуспешно",
|
|
320
|
+
reverted: "Отменено"
|
|
321
|
+
},
|
|
322
|
+
actions: {
|
|
323
|
+
sync: "Синхронизиране",
|
|
324
|
+
triggerSync: "Задействане на синхронизация",
|
|
325
|
+
hideDocument: "Скриване на Sanity документ",
|
|
326
|
+
showDocument: "Показване на Sanity документ"
|
|
327
|
+
},
|
|
328
|
+
table: {
|
|
329
|
+
headers: {
|
|
330
|
+
syncId: "ID на синхронизация",
|
|
331
|
+
status: "Статус",
|
|
332
|
+
createdAt: "Създадено на",
|
|
333
|
+
updatedAt: "Обновено на"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
widget: {
|
|
337
|
+
title: "Статус на Sanity"
|
|
338
|
+
},
|
|
339
|
+
document: {
|
|
340
|
+
label: "Sanity документ"
|
|
341
|
+
},
|
|
342
|
+
notifications: {
|
|
343
|
+
syncTriggered: "Синхронизацията е задействана.",
|
|
344
|
+
syncError: "Неуспешно задействане на синхронизация: {{message}}"
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
const bg = {
|
|
348
|
+
sanitySync: sanitySync$s
|
|
349
|
+
};
|
|
350
|
+
const sanitySync$r = {
|
|
351
|
+
title: "Sanity Sinkronizacije",
|
|
352
|
+
status: {
|
|
353
|
+
synced: "Sinkronizirano",
|
|
354
|
+
notSynced: "Nije sinkronizirano",
|
|
355
|
+
loading: "Učitavanje...",
|
|
356
|
+
invoking: "U toku",
|
|
357
|
+
done: "Završeno",
|
|
358
|
+
failed: "Nije uspjelo",
|
|
359
|
+
reverted: "Poništeno"
|
|
360
|
+
},
|
|
361
|
+
actions: {
|
|
362
|
+
sync: "Sinkronizuj",
|
|
363
|
+
triggerSync: "Pokreni sinkronizaciju",
|
|
364
|
+
hideDocument: "Sakrij Sanity dokument",
|
|
365
|
+
showDocument: "Prikaži Sanity dokument"
|
|
366
|
+
},
|
|
367
|
+
table: {
|
|
368
|
+
headers: {
|
|
369
|
+
syncId: "ID sinkronizacije",
|
|
370
|
+
status: "Status",
|
|
371
|
+
createdAt: "Kreirano",
|
|
372
|
+
updatedAt: "Ažurirano"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
widget: {
|
|
376
|
+
title: "Sanity Status"
|
|
377
|
+
},
|
|
378
|
+
document: {
|
|
379
|
+
label: "Sanity dokument"
|
|
380
|
+
},
|
|
381
|
+
notifications: {
|
|
382
|
+
syncTriggered: "Sinkronizacija pokrenuta.",
|
|
383
|
+
syncError: "Neuspjelo pokretanje sinkronizacije: {{message}}"
|
|
384
|
+
}
|
|
385
|
+
};
|
|
386
|
+
const bs = {
|
|
387
|
+
sanitySync: sanitySync$r
|
|
388
|
+
};
|
|
389
|
+
const sanitySync$q = {
|
|
390
|
+
title: "Synchronizace Sanity",
|
|
391
|
+
status: {
|
|
392
|
+
synced: "Synchronizováno",
|
|
393
|
+
notSynced: "Nesynchronizováno",
|
|
394
|
+
loading: "Načítání...",
|
|
395
|
+
invoking: "Probíhá",
|
|
396
|
+
done: "Hotovo",
|
|
397
|
+
failed: "Selhalo",
|
|
398
|
+
reverted: "Vráceno"
|
|
399
|
+
},
|
|
400
|
+
actions: {
|
|
401
|
+
sync: "Synchronizovat",
|
|
402
|
+
triggerSync: "Spustit synchronizaci",
|
|
403
|
+
hideDocument: "Skrýt Sanity dokument",
|
|
404
|
+
showDocument: "Zobrazit Sanity dokument"
|
|
405
|
+
},
|
|
406
|
+
table: {
|
|
407
|
+
headers: {
|
|
408
|
+
syncId: "ID synchronizace",
|
|
409
|
+
status: "Stav",
|
|
410
|
+
createdAt: "Vytvořeno",
|
|
411
|
+
updatedAt: "Aktualizováno"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
widget: {
|
|
415
|
+
title: "Stav Sanity"
|
|
416
|
+
},
|
|
417
|
+
document: {
|
|
418
|
+
label: "Sanity dokument"
|
|
419
|
+
},
|
|
420
|
+
notifications: {
|
|
421
|
+
syncTriggered: "Synchronizace byla spuštěna.",
|
|
422
|
+
syncError: "Nepodařilo se spustit synchronizaci: {{message}}"
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
const cs = {
|
|
426
|
+
sanitySync: sanitySync$q
|
|
427
|
+
};
|
|
428
|
+
const sanitySync$p = {
|
|
429
|
+
title: "Sanity-Synchronisationen",
|
|
430
|
+
status: {
|
|
431
|
+
synced: "Synchronisiert",
|
|
432
|
+
notSynced: "Nicht synchronisiert",
|
|
433
|
+
loading: "Laden...",
|
|
434
|
+
invoking: "In Bearbeitung",
|
|
435
|
+
done: "Abgeschlossen",
|
|
436
|
+
failed: "Fehlgeschlagen",
|
|
437
|
+
reverted: "Abgebrochen"
|
|
438
|
+
},
|
|
439
|
+
actions: {
|
|
440
|
+
sync: "Synchronisieren",
|
|
441
|
+
triggerSync: "Synchronisation Auslösen",
|
|
442
|
+
hideDocument: "Sanity-Dokument Ausblenden",
|
|
443
|
+
showDocument: "Sanity-Dokument Anzeigen"
|
|
444
|
+
},
|
|
445
|
+
table: {
|
|
446
|
+
headers: {
|
|
447
|
+
syncId: "Synchronisations-ID",
|
|
448
|
+
status: "Status",
|
|
449
|
+
createdAt: "Erstellt Am",
|
|
450
|
+
updatedAt: "Aktualisiert Am"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
widget: {
|
|
454
|
+
title: "Sanity-Status"
|
|
455
|
+
},
|
|
456
|
+
document: {
|
|
457
|
+
label: "Sanity-Dokument"
|
|
458
|
+
},
|
|
459
|
+
notifications: {
|
|
460
|
+
syncTriggered: "Synchronisation ausgelöst.",
|
|
461
|
+
syncError: "Synchronisation konnte nicht ausgelöst werden: {{message}}"
|
|
462
|
+
}
|
|
463
|
+
};
|
|
464
|
+
const de = {
|
|
465
|
+
sanitySync: sanitySync$p
|
|
466
|
+
};
|
|
467
|
+
const sanitySync$o = {
|
|
468
|
+
title: "Συγχρονισμοί Sanity",
|
|
469
|
+
status: {
|
|
470
|
+
synced: "Συγχρονίστηκε",
|
|
471
|
+
notSynced: "Μη συγχρονισμένο",
|
|
472
|
+
loading: "Φόρτωση...",
|
|
473
|
+
invoking: "Σε εξέλιξη",
|
|
474
|
+
done: "Ολοκληρώθηκε",
|
|
475
|
+
failed: "Απέτυχε",
|
|
476
|
+
reverted: "Ακυρώθηκε"
|
|
477
|
+
},
|
|
478
|
+
actions: {
|
|
479
|
+
sync: "Συγχρονισμός",
|
|
480
|
+
triggerSync: "Έναρξη συγχρονισμού",
|
|
481
|
+
hideDocument: "Απόκρυψη εγγράφου Sanity",
|
|
482
|
+
showDocument: "Εμφάνιση εγγράφου Sanity"
|
|
483
|
+
},
|
|
484
|
+
table: {
|
|
485
|
+
headers: {
|
|
486
|
+
syncId: "ID Συγχρονισμού",
|
|
487
|
+
status: "Κατάσταση",
|
|
488
|
+
createdAt: "Δημιουργήθηκε στις",
|
|
489
|
+
updatedAt: "Ενημερώθηκε στις"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
widget: {
|
|
493
|
+
title: "Κατάσταση Sanity"
|
|
494
|
+
},
|
|
495
|
+
document: {
|
|
496
|
+
label: "Έγγραφο Sanity"
|
|
497
|
+
},
|
|
498
|
+
notifications: {
|
|
499
|
+
syncTriggered: "Ο συγχρονισμός ξεκίνησε.",
|
|
500
|
+
syncError: "Αδυναμία έναρξης συγχρονισμού: {{message}}"
|
|
501
|
+
}
|
|
502
|
+
};
|
|
503
|
+
const el = {
|
|
504
|
+
sanitySync: sanitySync$o
|
|
505
|
+
};
|
|
506
|
+
const sanitySync$n = {
|
|
507
|
+
title: "Sanity Syncs",
|
|
508
|
+
status: {
|
|
509
|
+
synced: "Synced",
|
|
510
|
+
notSynced: "Not Synced",
|
|
511
|
+
loading: "Loading...",
|
|
512
|
+
invoking: "Invoking",
|
|
513
|
+
done: "Done",
|
|
514
|
+
failed: "Failed",
|
|
515
|
+
reverted: "Reverted"
|
|
516
|
+
},
|
|
517
|
+
actions: {
|
|
518
|
+
sync: "Sync",
|
|
519
|
+
triggerSync: "Trigger Sync",
|
|
520
|
+
hideDocument: "Hide Sanity Document",
|
|
521
|
+
showDocument: "Show Sanity Document"
|
|
522
|
+
},
|
|
523
|
+
table: {
|
|
524
|
+
headers: {
|
|
525
|
+
syncId: "Sync ID",
|
|
526
|
+
status: "Status",
|
|
527
|
+
createdAt: "Created At",
|
|
528
|
+
updatedAt: "Updated At"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
widget: {
|
|
532
|
+
title: "Sanity Status"
|
|
533
|
+
},
|
|
534
|
+
document: {
|
|
535
|
+
label: "Sanity Document"
|
|
536
|
+
},
|
|
537
|
+
notifications: {
|
|
538
|
+
syncTriggered: "Sync triggered.",
|
|
539
|
+
syncError: "Couldn't trigger sync: {{message}}"
|
|
540
|
+
}
|
|
541
|
+
};
|
|
542
|
+
const en = {
|
|
543
|
+
sanitySync: sanitySync$n
|
|
544
|
+
};
|
|
545
|
+
const sanitySync$m = {
|
|
546
|
+
title: "Sincronizaciones de Sanity",
|
|
547
|
+
status: {
|
|
548
|
+
synced: "Sincronizado",
|
|
549
|
+
notSynced: "No sincronizado",
|
|
550
|
+
loading: "Cargando...",
|
|
551
|
+
invoking: "En curso",
|
|
552
|
+
done: "Completado",
|
|
553
|
+
failed: "Fallido",
|
|
554
|
+
reverted: "Revertido"
|
|
555
|
+
},
|
|
556
|
+
actions: {
|
|
557
|
+
sync: "Sincronizar",
|
|
558
|
+
triggerSync: "Iniciar Sincronización",
|
|
559
|
+
hideDocument: "Ocultar Documento de Sanity",
|
|
560
|
+
showDocument: "Mostrar Documento de Sanity"
|
|
561
|
+
},
|
|
562
|
+
table: {
|
|
563
|
+
headers: {
|
|
564
|
+
syncId: "ID de Sincronización",
|
|
565
|
+
status: "Estado",
|
|
566
|
+
createdAt: "Creado En",
|
|
567
|
+
updatedAt: "Actualizado En"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
widget: {
|
|
571
|
+
title: "Estado de Sanity"
|
|
572
|
+
},
|
|
573
|
+
document: {
|
|
574
|
+
label: "Documento de Sanity"
|
|
575
|
+
},
|
|
576
|
+
notifications: {
|
|
577
|
+
syncTriggered: "Sincronización iniciada.",
|
|
578
|
+
syncError: "No se pudo iniciar la sincronización: {{message}}"
|
|
579
|
+
}
|
|
580
|
+
};
|
|
581
|
+
const es = {
|
|
582
|
+
sanitySync: sanitySync$m
|
|
583
|
+
};
|
|
584
|
+
const sanitySync$l = {
|
|
585
|
+
title: "مزامنههای Sanity",
|
|
586
|
+
status: {
|
|
587
|
+
synced: "همگامسازی شده",
|
|
588
|
+
notSynced: "همگامسازی نشده",
|
|
589
|
+
loading: "در حال بارگذاری...",
|
|
590
|
+
invoking: "در حال اجرا",
|
|
591
|
+
done: "انجام شد",
|
|
592
|
+
failed: "ناموفق",
|
|
593
|
+
reverted: "برگشت داده شده"
|
|
594
|
+
},
|
|
595
|
+
actions: {
|
|
596
|
+
sync: "همگامسازی",
|
|
597
|
+
triggerSync: "اجرای همگامسازی",
|
|
598
|
+
hideDocument: "مخفی کردن سند Sanity",
|
|
599
|
+
showDocument: "نمایش سند Sanity"
|
|
600
|
+
},
|
|
601
|
+
table: {
|
|
602
|
+
headers: {
|
|
603
|
+
syncId: "شناسه همگامسازی",
|
|
604
|
+
status: "وضعیت",
|
|
605
|
+
createdAt: "ایجاد شده در",
|
|
606
|
+
updatedAt: "بروزرسانی شده در"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
widget: {
|
|
610
|
+
title: "وضعیت Sanity"
|
|
611
|
+
},
|
|
612
|
+
document: {
|
|
613
|
+
label: "سند Sanity"
|
|
614
|
+
},
|
|
615
|
+
notifications: {
|
|
616
|
+
syncTriggered: "همگامسازی شروع شد.",
|
|
617
|
+
syncError: "خطا در شروع همگامسازی: {{message}}"
|
|
618
|
+
}
|
|
619
|
+
};
|
|
620
|
+
const fa = {
|
|
621
|
+
sanitySync: sanitySync$l
|
|
622
|
+
};
|
|
623
|
+
const sanitySync$k = {
|
|
624
|
+
title: "Synchronisations Sanity",
|
|
625
|
+
status: {
|
|
626
|
+
synced: "Synchronisé",
|
|
627
|
+
notSynced: "Non synchronisé",
|
|
628
|
+
loading: "Chargement...",
|
|
629
|
+
invoking: "En cours",
|
|
630
|
+
done: "Terminé",
|
|
631
|
+
failed: "Échoué",
|
|
632
|
+
reverted: "Annulé"
|
|
633
|
+
},
|
|
634
|
+
actions: {
|
|
635
|
+
sync: "Synchroniser",
|
|
636
|
+
triggerSync: "Déclencher la Synchronisation",
|
|
637
|
+
hideDocument: "Masquer le Document Sanity",
|
|
638
|
+
showDocument: "Afficher le Document Sanity"
|
|
639
|
+
},
|
|
640
|
+
table: {
|
|
641
|
+
headers: {
|
|
642
|
+
syncId: "ID de Synchronisation",
|
|
643
|
+
status: "Statut",
|
|
644
|
+
createdAt: "Créé Le",
|
|
645
|
+
updatedAt: "Mis à Jour Le"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
widget: {
|
|
649
|
+
title: "Statut Sanity"
|
|
650
|
+
},
|
|
651
|
+
document: {
|
|
652
|
+
label: "Document Sanity"
|
|
653
|
+
},
|
|
654
|
+
notifications: {
|
|
655
|
+
syncTriggered: "Synchronisation déclenchée.",
|
|
656
|
+
syncError: "Impossible de déclencher la synchronisation: {{message}}"
|
|
657
|
+
}
|
|
658
|
+
};
|
|
659
|
+
const fr = {
|
|
660
|
+
sanitySync: sanitySync$k
|
|
661
|
+
};
|
|
662
|
+
const sanitySync$j = {
|
|
663
|
+
title: "סנכרוני Sanity",
|
|
664
|
+
status: {
|
|
665
|
+
synced: "מסונכרן",
|
|
666
|
+
notSynced: "לא מסונכרן",
|
|
667
|
+
loading: "טוען...",
|
|
668
|
+
invoking: "בביצוע",
|
|
669
|
+
done: "בוצע",
|
|
670
|
+
failed: "נכשל",
|
|
671
|
+
reverted: "בוטל"
|
|
672
|
+
},
|
|
673
|
+
actions: {
|
|
674
|
+
sync: "סנכרן",
|
|
675
|
+
triggerSync: "הפעל סנכרון",
|
|
676
|
+
hideDocument: "הסתר מסמך Sanity",
|
|
677
|
+
showDocument: "הצג מסמך Sanity"
|
|
678
|
+
},
|
|
679
|
+
table: {
|
|
680
|
+
headers: {
|
|
681
|
+
syncId: "מזהה סנכרון",
|
|
682
|
+
status: "סטטוס",
|
|
683
|
+
createdAt: "נוצר ב-",
|
|
684
|
+
updatedAt: "עודכן ב-"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
widget: {
|
|
688
|
+
title: "סטטוס Sanity"
|
|
689
|
+
},
|
|
690
|
+
document: {
|
|
691
|
+
label: "מסמך Sanity"
|
|
692
|
+
},
|
|
693
|
+
notifications: {
|
|
694
|
+
syncTriggered: "הסנכרון הופעל.",
|
|
695
|
+
syncError: "לא ניתן היה להפעיל סנכרון: {{message}}"
|
|
696
|
+
}
|
|
697
|
+
};
|
|
698
|
+
const he = {
|
|
699
|
+
sanitySync: sanitySync$j
|
|
700
|
+
};
|
|
701
|
+
const sanitySync$i = {
|
|
702
|
+
title: "Sanity Szinkronizálások",
|
|
703
|
+
status: {
|
|
704
|
+
synced: "Szinkronizálva",
|
|
705
|
+
notSynced: "Nincs szinkronizálva",
|
|
706
|
+
loading: "Betöltés...",
|
|
707
|
+
invoking: "Folyamatban",
|
|
708
|
+
done: "Kész",
|
|
709
|
+
failed: "Sikertelen",
|
|
710
|
+
reverted: "Visszaállítva"
|
|
711
|
+
},
|
|
712
|
+
actions: {
|
|
713
|
+
sync: "Szinkronizálás",
|
|
714
|
+
triggerSync: "Szinkronizálás indítása",
|
|
715
|
+
hideDocument: "Sanity dokumentum elrejtése",
|
|
716
|
+
showDocument: "Sanity dokumentum megjelenítése"
|
|
717
|
+
},
|
|
718
|
+
table: {
|
|
719
|
+
headers: {
|
|
720
|
+
syncId: "Szinkronizálási azonosító",
|
|
721
|
+
status: "Állapot",
|
|
722
|
+
createdAt: "Létrehozva",
|
|
723
|
+
updatedAt: "Frissítve"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
widget: {
|
|
727
|
+
title: "Sanity Állapot"
|
|
728
|
+
},
|
|
729
|
+
document: {
|
|
730
|
+
label: "Sanity dokumentum"
|
|
731
|
+
},
|
|
732
|
+
notifications: {
|
|
733
|
+
syncTriggered: "Szinkronizálás elindítva.",
|
|
734
|
+
syncError: "Nem sikerült elindítani a szinkronizálást: {{message}}"
|
|
735
|
+
}
|
|
736
|
+
};
|
|
737
|
+
const hu = {
|
|
738
|
+
sanitySync: sanitySync$i
|
|
739
|
+
};
|
|
740
|
+
const sanitySync$h = {
|
|
741
|
+
title: "Sinkronisasi Sanity",
|
|
742
|
+
status: {
|
|
743
|
+
synced: "Tersinkronisasi",
|
|
744
|
+
notSynced: "Tidak Tersinkronisasi",
|
|
745
|
+
loading: "Memuat...",
|
|
746
|
+
invoking: "Sedang Proses",
|
|
747
|
+
done: "Selesai",
|
|
748
|
+
failed: "Gagal",
|
|
749
|
+
reverted: "Dibatalkan"
|
|
750
|
+
},
|
|
751
|
+
actions: {
|
|
752
|
+
sync: "Sinkronisasi",
|
|
753
|
+
triggerSync: "Mulai Sinkronisasi",
|
|
754
|
+
hideDocument: "Sembunyikan Dokumen Sanity",
|
|
755
|
+
showDocument: "Tampilkan Dokumen Sanity"
|
|
756
|
+
},
|
|
757
|
+
table: {
|
|
758
|
+
headers: {
|
|
759
|
+
syncId: "ID Sinkronisasi",
|
|
760
|
+
status: "Status",
|
|
761
|
+
createdAt: "Dibuat Pada",
|
|
762
|
+
updatedAt: "Diperbarui Pada"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
widget: {
|
|
766
|
+
title: "Status Sanity"
|
|
767
|
+
},
|
|
768
|
+
document: {
|
|
769
|
+
label: "Dokumen Sanity"
|
|
770
|
+
},
|
|
771
|
+
notifications: {
|
|
772
|
+
syncTriggered: "Sinkronisasi dimulai.",
|
|
773
|
+
syncError: "Gagal memulai sinkronisasi: {{message}}"
|
|
774
|
+
}
|
|
775
|
+
};
|
|
776
|
+
const id = {
|
|
777
|
+
sanitySync: sanitySync$h
|
|
778
|
+
};
|
|
779
|
+
const sanitySync$g = {
|
|
780
|
+
title: "Sincronizzazioni Sanity",
|
|
781
|
+
status: {
|
|
782
|
+
synced: "Sincronizzato",
|
|
783
|
+
notSynced: "Non sincronizzato",
|
|
784
|
+
loading: "Caricamento...",
|
|
785
|
+
invoking: "In corso",
|
|
786
|
+
done: "Completato",
|
|
787
|
+
failed: "Fallito",
|
|
788
|
+
reverted: "Ripristinato"
|
|
789
|
+
},
|
|
790
|
+
actions: {
|
|
791
|
+
sync: "Sincronizza",
|
|
792
|
+
triggerSync: "Avvia Sincronizzazione",
|
|
793
|
+
hideDocument: "Nascondi Documento Sanity",
|
|
794
|
+
showDocument: "Mostra Documento Sanity"
|
|
795
|
+
},
|
|
796
|
+
table: {
|
|
797
|
+
headers: {
|
|
798
|
+
syncId: "ID Sincronizzazione",
|
|
799
|
+
status: "Stato",
|
|
800
|
+
createdAt: "Creato Il",
|
|
801
|
+
updatedAt: "Aggiornato Il"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
widget: {
|
|
805
|
+
title: "Stato Sanity"
|
|
806
|
+
},
|
|
807
|
+
document: {
|
|
808
|
+
label: "Documento Sanity"
|
|
809
|
+
},
|
|
810
|
+
notifications: {
|
|
811
|
+
syncTriggered: "Sincronizzazione avviata.",
|
|
812
|
+
syncError: "Impossibile avviare la sincronizzazione: {{message}}"
|
|
813
|
+
}
|
|
814
|
+
};
|
|
815
|
+
const it = {
|
|
816
|
+
sanitySync: sanitySync$g
|
|
817
|
+
};
|
|
818
|
+
const sanitySync$f = {
|
|
819
|
+
title: "Sanity 同期",
|
|
820
|
+
status: {
|
|
821
|
+
synced: "同期済み",
|
|
822
|
+
notSynced: "未同期",
|
|
823
|
+
loading: "読み込み中...",
|
|
824
|
+
invoking: "呼び出し中",
|
|
825
|
+
done: "完了",
|
|
826
|
+
failed: "失敗",
|
|
827
|
+
reverted: "取り消し済み"
|
|
828
|
+
},
|
|
829
|
+
actions: {
|
|
830
|
+
sync: "同期",
|
|
831
|
+
triggerSync: "同期を開始",
|
|
832
|
+
hideDocument: "Sanity ドキュメントを非表示",
|
|
833
|
+
showDocument: "Sanity ドキュメントを表示"
|
|
834
|
+
},
|
|
835
|
+
table: {
|
|
836
|
+
headers: {
|
|
837
|
+
syncId: "同期 ID",
|
|
838
|
+
status: "ステータス",
|
|
839
|
+
createdAt: "作成日時",
|
|
840
|
+
updatedAt: "更新日時"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
widget: {
|
|
844
|
+
title: "Sanity ステータス"
|
|
845
|
+
},
|
|
846
|
+
document: {
|
|
847
|
+
label: "Sanity ドキュメント"
|
|
848
|
+
},
|
|
849
|
+
notifications: {
|
|
850
|
+
syncTriggered: "同期が開始されました。",
|
|
851
|
+
syncError: "同期を開始できませんでした: {{message}}"
|
|
852
|
+
}
|
|
853
|
+
};
|
|
854
|
+
const ja = {
|
|
855
|
+
sanitySync: sanitySync$f
|
|
856
|
+
};
|
|
857
|
+
const sanitySync$e = {
|
|
858
|
+
title: "Sanity 동기화",
|
|
859
|
+
status: {
|
|
860
|
+
synced: "동기화됨",
|
|
861
|
+
notSynced: "동기화되지 않음",
|
|
862
|
+
loading: "로딩 중...",
|
|
863
|
+
invoking: "호출 중",
|
|
864
|
+
done: "완료",
|
|
865
|
+
failed: "실패",
|
|
866
|
+
reverted: "되돌림"
|
|
867
|
+
},
|
|
868
|
+
actions: {
|
|
869
|
+
sync: "동기화",
|
|
870
|
+
triggerSync: "동기화 시작",
|
|
871
|
+
hideDocument: "Sanity 문서 숨기기",
|
|
872
|
+
showDocument: "Sanity 문서 표시"
|
|
873
|
+
},
|
|
874
|
+
table: {
|
|
875
|
+
headers: {
|
|
876
|
+
syncId: "동기화 ID",
|
|
877
|
+
status: "상태",
|
|
878
|
+
createdAt: "생성 시간",
|
|
879
|
+
updatedAt: "업데이트 시간"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
widget: {
|
|
883
|
+
title: "Sanity 상태"
|
|
884
|
+
},
|
|
885
|
+
document: {
|
|
886
|
+
label: "Sanity 문서"
|
|
887
|
+
},
|
|
888
|
+
notifications: {
|
|
889
|
+
syncTriggered: "동기화가 시작되었습니다.",
|
|
890
|
+
syncError: "동기화를 시작할 수 없습니다: {{message}}"
|
|
891
|
+
}
|
|
892
|
+
};
|
|
893
|
+
const ko = {
|
|
894
|
+
sanitySync: sanitySync$e
|
|
895
|
+
};
|
|
896
|
+
const sanitySync$d = {
|
|
897
|
+
title: "Sanity Sinchronizavimas",
|
|
898
|
+
status: {
|
|
899
|
+
synced: "Sinchronizuota",
|
|
900
|
+
notSynced: "Nesinchronizuota",
|
|
901
|
+
loading: "Kraunama...",
|
|
902
|
+
invoking: "Vykdoma",
|
|
903
|
+
done: "Baigta",
|
|
904
|
+
failed: "Nepavyko",
|
|
905
|
+
reverted: "Atšaukta"
|
|
906
|
+
},
|
|
907
|
+
actions: {
|
|
908
|
+
sync: "Sinchronizuoti",
|
|
909
|
+
triggerSync: "Pradėti sinchronizavimą",
|
|
910
|
+
hideDocument: "Slėpti Sanity dokumentą",
|
|
911
|
+
showDocument: "Rodyti Sanity dokumentą"
|
|
912
|
+
},
|
|
913
|
+
table: {
|
|
914
|
+
headers: {
|
|
915
|
+
syncId: "Sinchronizavimo ID",
|
|
916
|
+
status: "Būsena",
|
|
917
|
+
createdAt: "Sukurta",
|
|
918
|
+
updatedAt: "Atnaujinta"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
widget: {
|
|
922
|
+
title: "Sanity būsena"
|
|
923
|
+
},
|
|
924
|
+
document: {
|
|
925
|
+
label: "Sanity dokumentas"
|
|
926
|
+
},
|
|
927
|
+
notifications: {
|
|
928
|
+
syncTriggered: "Sinchronizavimas pradėtas.",
|
|
929
|
+
syncError: "Nepavyko pradėti sinchronizavimo: {{message}}"
|
|
930
|
+
}
|
|
931
|
+
};
|
|
932
|
+
const lt = {
|
|
933
|
+
sanitySync: sanitySync$d
|
|
934
|
+
};
|
|
935
|
+
const sanitySync$c = {
|
|
936
|
+
title: "Sanity Синхронизации",
|
|
937
|
+
status: {
|
|
938
|
+
synced: "Синхронизирано",
|
|
939
|
+
notSynced: "Не е синхронизирано",
|
|
940
|
+
loading: "Се вчитува...",
|
|
941
|
+
invoking: "Во тек",
|
|
942
|
+
done: "Завршено",
|
|
943
|
+
failed: "Неуспешно",
|
|
944
|
+
reverted: "Поништено"
|
|
945
|
+
},
|
|
946
|
+
actions: {
|
|
947
|
+
sync: "Синхронизирај",
|
|
948
|
+
triggerSync: "Покрени синхронизација",
|
|
949
|
+
hideDocument: "Скриј Sanity документ",
|
|
950
|
+
showDocument: "Прикажи Sanity документ"
|
|
951
|
+
},
|
|
952
|
+
table: {
|
|
953
|
+
headers: {
|
|
954
|
+
syncId: "ID на синхронизација",
|
|
955
|
+
status: "Статус",
|
|
956
|
+
createdAt: "Креирано на",
|
|
957
|
+
updatedAt: "Ажурирано на"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
widget: {
|
|
961
|
+
title: "Sanity Статус"
|
|
962
|
+
},
|
|
963
|
+
document: {
|
|
964
|
+
label: "Sanity документ"
|
|
965
|
+
},
|
|
966
|
+
notifications: {
|
|
967
|
+
syncTriggered: "Синхронизацијата е покрената.",
|
|
968
|
+
syncError: "Неуспешно покренување на синхронизација: {{message}}"
|
|
969
|
+
}
|
|
970
|
+
};
|
|
971
|
+
const mk = {
|
|
972
|
+
sanitySync: sanitySync$c
|
|
973
|
+
};
|
|
974
|
+
const sanitySync$b = {
|
|
975
|
+
title: "Sanity Синхрончлол",
|
|
976
|
+
status: {
|
|
977
|
+
synced: "Синхрончлогдсон",
|
|
978
|
+
notSynced: "Синхрончлогдоогүй",
|
|
979
|
+
loading: "Уншиж байна...",
|
|
980
|
+
invoking: "Ажиллаж байна",
|
|
981
|
+
done: "Дууссан",
|
|
982
|
+
failed: "Амжилтгүй",
|
|
983
|
+
reverted: "Буцаагдсан"
|
|
984
|
+
},
|
|
985
|
+
actions: {
|
|
986
|
+
sync: "Синхрончлох",
|
|
987
|
+
triggerSync: "Синхрончлол эхлүүлэх",
|
|
988
|
+
hideDocument: "Sanity баримтыг нуух",
|
|
989
|
+
showDocument: "Sanity баримтыг харуулах"
|
|
990
|
+
},
|
|
991
|
+
table: {
|
|
992
|
+
headers: {
|
|
993
|
+
syncId: "Синхрончлолын ID",
|
|
994
|
+
status: "Төлөв",
|
|
995
|
+
createdAt: "Үүсгэсэн огноо",
|
|
996
|
+
updatedAt: "Шинэчилсэн огноо"
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
widget: {
|
|
1000
|
+
title: "Sanity Төлөв"
|
|
1001
|
+
},
|
|
1002
|
+
document: {
|
|
1003
|
+
label: "Sanity баримт"
|
|
1004
|
+
},
|
|
1005
|
+
notifications: {
|
|
1006
|
+
syncTriggered: "Синхрончлол эхэллээ.",
|
|
1007
|
+
syncError: "Синхрончлол эхлүүлэхэд алдаа гарлаа: {{message}}"
|
|
1008
|
+
}
|
|
1009
|
+
};
|
|
1010
|
+
const mn = {
|
|
1011
|
+
sanitySync: sanitySync$b
|
|
1012
|
+
};
|
|
1013
|
+
const sanitySync$a = {
|
|
1014
|
+
title: "Sanity Synchronisaties",
|
|
1015
|
+
status: {
|
|
1016
|
+
synced: "Gesynchroniseerd",
|
|
1017
|
+
notSynced: "Niet gesynchroniseerd",
|
|
1018
|
+
loading: "Laden...",
|
|
1019
|
+
invoking: "In uitvoering",
|
|
1020
|
+
done: "Voltooid",
|
|
1021
|
+
failed: "Mislukt",
|
|
1022
|
+
reverted: "Teruggedraaid"
|
|
1023
|
+
},
|
|
1024
|
+
actions: {
|
|
1025
|
+
sync: "Synchroniseren",
|
|
1026
|
+
triggerSync: "Synchronisatie starten",
|
|
1027
|
+
hideDocument: "Sanity document verbergen",
|
|
1028
|
+
showDocument: "Sanity document tonen"
|
|
1029
|
+
},
|
|
1030
|
+
table: {
|
|
1031
|
+
headers: {
|
|
1032
|
+
syncId: "Synchronisatie ID",
|
|
1033
|
+
status: "Status",
|
|
1034
|
+
createdAt: "Gemaakt op",
|
|
1035
|
+
updatedAt: "Bijgewerkt op"
|
|
1036
|
+
}
|
|
1037
|
+
},
|
|
1038
|
+
widget: {
|
|
1039
|
+
title: "Sanity Status"
|
|
1040
|
+
},
|
|
1041
|
+
document: {
|
|
1042
|
+
label: "Sanity Document"
|
|
1043
|
+
},
|
|
1044
|
+
notifications: {
|
|
1045
|
+
syncTriggered: "Synchronisatie gestart.",
|
|
1046
|
+
syncError: "Synchronisatie kon niet worden gestart: {{message}}"
|
|
1047
|
+
}
|
|
1048
|
+
};
|
|
1049
|
+
const nl = {
|
|
1050
|
+
sanitySync: sanitySync$a
|
|
1051
|
+
};
|
|
1052
|
+
const sanitySync$9 = {
|
|
1053
|
+
title: "Synchronizacje Sanity",
|
|
1054
|
+
status: {
|
|
1055
|
+
synced: "Zsynchronizowano",
|
|
1056
|
+
notSynced: "Nie zsynchronizowano",
|
|
1057
|
+
loading: "Ładowanie...",
|
|
1058
|
+
invoking: "W toku",
|
|
1059
|
+
done: "Zakończono",
|
|
1060
|
+
failed: "Niepowodzenie",
|
|
1061
|
+
reverted: "Cofnięto"
|
|
1062
|
+
},
|
|
1063
|
+
actions: {
|
|
1064
|
+
sync: "Synchronizuj",
|
|
1065
|
+
triggerSync: "Uruchom synchronizację",
|
|
1066
|
+
hideDocument: "Ukryj dokument Sanity",
|
|
1067
|
+
showDocument: "Pokaż dokument Sanity"
|
|
1068
|
+
},
|
|
1069
|
+
table: {
|
|
1070
|
+
headers: {
|
|
1071
|
+
syncId: "ID synchronizacji",
|
|
1072
|
+
status: "Status",
|
|
1073
|
+
createdAt: "Utworzono",
|
|
1074
|
+
updatedAt: "Zaktualizowano"
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
widget: {
|
|
1078
|
+
title: "Status Sanity"
|
|
1079
|
+
},
|
|
1080
|
+
document: {
|
|
1081
|
+
label: "Dokument Sanity"
|
|
1082
|
+
},
|
|
1083
|
+
notifications: {
|
|
1084
|
+
syncTriggered: "Synchronizacja została uruchomiona.",
|
|
1085
|
+
syncError: "Nie udało się uruchomić synchronizacji: {{message}}"
|
|
1086
|
+
}
|
|
1087
|
+
};
|
|
1088
|
+
const pl = {
|
|
1089
|
+
sanitySync: sanitySync$9
|
|
1090
|
+
};
|
|
1091
|
+
const sanitySync$8 = {
|
|
1092
|
+
title: "Sincronizações Sanity",
|
|
1093
|
+
status: {
|
|
1094
|
+
synced: "Sincronizado",
|
|
1095
|
+
notSynced: "Não sincronizado",
|
|
1096
|
+
loading: "Carregando...",
|
|
1097
|
+
invoking: "Em curso",
|
|
1098
|
+
done: "Concluído",
|
|
1099
|
+
failed: "Falhou",
|
|
1100
|
+
reverted: "Revertido"
|
|
1101
|
+
},
|
|
1102
|
+
actions: {
|
|
1103
|
+
sync: "Sincronizar",
|
|
1104
|
+
triggerSync: "Iniciar Sincronização",
|
|
1105
|
+
hideDocument: "Ocultar Documento Sanity",
|
|
1106
|
+
showDocument: "Mostrar Documento Sanity"
|
|
1107
|
+
},
|
|
1108
|
+
table: {
|
|
1109
|
+
headers: {
|
|
1110
|
+
syncId: "ID da Sincronização",
|
|
1111
|
+
status: "Status",
|
|
1112
|
+
createdAt: "Criado Em",
|
|
1113
|
+
updatedAt: "Atualizado Em"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
widget: {
|
|
1117
|
+
title: "Status do Sanity"
|
|
1118
|
+
},
|
|
1119
|
+
document: {
|
|
1120
|
+
label: "Documento Sanity"
|
|
1121
|
+
},
|
|
1122
|
+
notifications: {
|
|
1123
|
+
syncTriggered: "Sincronização iniciada.",
|
|
1124
|
+
syncError: "Não foi possível iniciar a sincronização: {{message}}"
|
|
1125
|
+
}
|
|
1126
|
+
};
|
|
1127
|
+
const ptBR = {
|
|
1128
|
+
sanitySync: sanitySync$8
|
|
1129
|
+
};
|
|
1130
|
+
const sanitySync$7 = {
|
|
1131
|
+
title: "Sincronizações Sanity",
|
|
1132
|
+
status: {
|
|
1133
|
+
synced: "Sincronizado",
|
|
1134
|
+
notSynced: "Não sincronizado",
|
|
1135
|
+
loading: "A carregar...",
|
|
1136
|
+
invoking: "Em curso",
|
|
1137
|
+
done: "Concluído",
|
|
1138
|
+
failed: "Falhou",
|
|
1139
|
+
reverted: "Revertido"
|
|
1140
|
+
},
|
|
1141
|
+
actions: {
|
|
1142
|
+
sync: "Sincronizar",
|
|
1143
|
+
triggerSync: "Iniciar sincronização",
|
|
1144
|
+
hideDocument: "Ocultar documento Sanity",
|
|
1145
|
+
showDocument: "Mostrar documento Sanity"
|
|
1146
|
+
},
|
|
1147
|
+
table: {
|
|
1148
|
+
headers: {
|
|
1149
|
+
syncId: "ID da sincronização",
|
|
1150
|
+
status: "Estado",
|
|
1151
|
+
createdAt: "Criado em",
|
|
1152
|
+
updatedAt: "Atualizado em"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
widget: {
|
|
1156
|
+
title: "Estado do Sanity"
|
|
1157
|
+
},
|
|
1158
|
+
document: {
|
|
1159
|
+
label: "Documento Sanity"
|
|
1160
|
+
},
|
|
1161
|
+
notifications: {
|
|
1162
|
+
syncTriggered: "Sincronização iniciada.",
|
|
1163
|
+
syncError: "Não foi possível iniciar a sincronização: {{message}}"
|
|
1164
|
+
}
|
|
1165
|
+
};
|
|
1166
|
+
const ptPT = {
|
|
1167
|
+
sanitySync: sanitySync$7
|
|
1168
|
+
};
|
|
1169
|
+
const sanitySync$6 = {
|
|
1170
|
+
title: "Sincronizări Sanity",
|
|
1171
|
+
status: {
|
|
1172
|
+
synced: "Sincronizat",
|
|
1173
|
+
notSynced: "Nesincronizat",
|
|
1174
|
+
loading: "Se încarcă...",
|
|
1175
|
+
invoking: "În curs",
|
|
1176
|
+
done: "Finalizat",
|
|
1177
|
+
failed: "Eșuat",
|
|
1178
|
+
reverted: "Anulat"
|
|
1179
|
+
},
|
|
1180
|
+
actions: {
|
|
1181
|
+
sync: "Sincronizare",
|
|
1182
|
+
triggerSync: "Lansează sincronizarea",
|
|
1183
|
+
hideDocument: "Ascunde documentul Sanity",
|
|
1184
|
+
showDocument: "Afișează documentul Sanity"
|
|
1185
|
+
},
|
|
1186
|
+
table: {
|
|
1187
|
+
headers: {
|
|
1188
|
+
syncId: "ID Sincronizare",
|
|
1189
|
+
status: "Status",
|
|
1190
|
+
createdAt: "Creat la",
|
|
1191
|
+
updatedAt: "Actualizat la"
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
widget: {
|
|
1195
|
+
title: "Status Sanity"
|
|
1196
|
+
},
|
|
1197
|
+
document: {
|
|
1198
|
+
label: "Document Sanity"
|
|
1199
|
+
},
|
|
1200
|
+
notifications: {
|
|
1201
|
+
syncTriggered: "Sincronizarea a fost lansată.",
|
|
1202
|
+
syncError: "Nu s-a putut lansa sincronizarea: {{message}}"
|
|
1203
|
+
}
|
|
1204
|
+
};
|
|
1205
|
+
const ro = {
|
|
1206
|
+
sanitySync: sanitySync$6
|
|
1207
|
+
};
|
|
1208
|
+
const sanitySync$5 = {
|
|
1209
|
+
title: "Синхронизации Sanity",
|
|
1210
|
+
status: {
|
|
1211
|
+
synced: "Синхронизировано",
|
|
1212
|
+
notSynced: "Не синхронизировано",
|
|
1213
|
+
loading: "Загрузка...",
|
|
1214
|
+
invoking: "В процессе",
|
|
1215
|
+
done: "Завершено",
|
|
1216
|
+
failed: "Ошибка",
|
|
1217
|
+
reverted: "Отменено"
|
|
1218
|
+
},
|
|
1219
|
+
actions: {
|
|
1220
|
+
sync: "Синхронизировать",
|
|
1221
|
+
triggerSync: "Запустить синхронизацию",
|
|
1222
|
+
hideDocument: "Скрыть документ Sanity",
|
|
1223
|
+
showDocument: "Показать документ Sanity"
|
|
1224
|
+
},
|
|
1225
|
+
table: {
|
|
1226
|
+
headers: {
|
|
1227
|
+
syncId: "ID синхронизации",
|
|
1228
|
+
status: "Статус",
|
|
1229
|
+
createdAt: "Создано",
|
|
1230
|
+
updatedAt: "Обновлено"
|
|
1231
|
+
}
|
|
1232
|
+
},
|
|
1233
|
+
widget: {
|
|
1234
|
+
title: "Статус Sanity"
|
|
1235
|
+
},
|
|
1236
|
+
document: {
|
|
1237
|
+
label: "Документ Sanity"
|
|
1238
|
+
},
|
|
1239
|
+
notifications: {
|
|
1240
|
+
syncTriggered: "Синхронизация запущена.",
|
|
1241
|
+
syncError: "Не удалось запустить синхронизацию: {{message}}"
|
|
1242
|
+
}
|
|
1243
|
+
};
|
|
1244
|
+
const ru = {
|
|
1245
|
+
sanitySync: sanitySync$5
|
|
1246
|
+
};
|
|
1247
|
+
const sanitySync$4 = {
|
|
1248
|
+
title: "การซิงค์ Sanity",
|
|
1249
|
+
status: {
|
|
1250
|
+
synced: "ซิงค์แล้ว",
|
|
1251
|
+
notSynced: "ยังไม่ได้ซิงค์",
|
|
1252
|
+
loading: "กำลังโหลด...",
|
|
1253
|
+
invoking: "กำลังดำเนินการ",
|
|
1254
|
+
done: "เสร็จสิ้น",
|
|
1255
|
+
failed: "ล้มเหลว",
|
|
1256
|
+
reverted: "คืนค่า"
|
|
1257
|
+
},
|
|
1258
|
+
actions: {
|
|
1259
|
+
sync: "ซิงค์",
|
|
1260
|
+
triggerSync: "เริ่มการซิงค์",
|
|
1261
|
+
hideDocument: "ซ่อนเอกสาร Sanity",
|
|
1262
|
+
showDocument: "แสดงเอกสาร Sanity"
|
|
1263
|
+
},
|
|
1264
|
+
table: {
|
|
1265
|
+
headers: {
|
|
1266
|
+
syncId: "รหัสการซิงค์",
|
|
1267
|
+
status: "สถานะ",
|
|
1268
|
+
createdAt: "สร้างเมื่อ",
|
|
1269
|
+
updatedAt: "อัปเดตเมื่อ"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
widget: {
|
|
1273
|
+
title: "สถานะ Sanity"
|
|
1274
|
+
},
|
|
1275
|
+
document: {
|
|
1276
|
+
label: "เอกสาร Sanity"
|
|
1277
|
+
},
|
|
1278
|
+
notifications: {
|
|
1279
|
+
syncTriggered: "เริ่มการซิงค์แล้ว",
|
|
1280
|
+
syncError: "ไม่สามารถเริ่มการซิงค์ได้: {{message}}"
|
|
1281
|
+
}
|
|
1282
|
+
};
|
|
1283
|
+
const th = {
|
|
1284
|
+
sanitySync: sanitySync$4
|
|
1285
|
+
};
|
|
1286
|
+
const sanitySync$3 = {
|
|
1287
|
+
title: "Sanity Senkronizasyonları",
|
|
1288
|
+
status: {
|
|
1289
|
+
synced: "Senkronize edildi",
|
|
1290
|
+
notSynced: "Senkronize edilmedi",
|
|
1291
|
+
loading: "Yükleniyor...",
|
|
1292
|
+
invoking: "İşleniyor",
|
|
1293
|
+
done: "Tamamlandı",
|
|
1294
|
+
failed: "Başarısız",
|
|
1295
|
+
reverted: "Geri alındı"
|
|
1296
|
+
},
|
|
1297
|
+
actions: {
|
|
1298
|
+
sync: "Senkronize et",
|
|
1299
|
+
triggerSync: "Senkronizasyonu başlat",
|
|
1300
|
+
hideDocument: "Sanity dokümanını gizle",
|
|
1301
|
+
showDocument: "Sanity dokümanını göster"
|
|
1302
|
+
},
|
|
1303
|
+
table: {
|
|
1304
|
+
headers: {
|
|
1305
|
+
syncId: "Senkronizasyon ID",
|
|
1306
|
+
status: "Durum",
|
|
1307
|
+
createdAt: "Oluşturulma",
|
|
1308
|
+
updatedAt: "Güncellenme"
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
widget: {
|
|
1312
|
+
title: "Sanity Durumu"
|
|
1313
|
+
},
|
|
1314
|
+
document: {
|
|
1315
|
+
label: "Sanity Dokümanı"
|
|
1316
|
+
},
|
|
1317
|
+
notifications: {
|
|
1318
|
+
syncTriggered: "Senkronizasyon başlatıldı.",
|
|
1319
|
+
syncError: "Senkronizasyon başlatılamadı: {{message}}"
|
|
1320
|
+
}
|
|
1321
|
+
};
|
|
1322
|
+
const tr = {
|
|
1323
|
+
sanitySync: sanitySync$3
|
|
1324
|
+
};
|
|
1325
|
+
const sanitySync$2 = {
|
|
1326
|
+
title: "Синхронізації Sanity",
|
|
1327
|
+
status: {
|
|
1328
|
+
synced: "Синхронізовано",
|
|
1329
|
+
notSynced: "Не синхронізовано",
|
|
1330
|
+
loading: "Завантаження...",
|
|
1331
|
+
invoking: "Виконується",
|
|
1332
|
+
done: "Завершено",
|
|
1333
|
+
failed: "Помилка",
|
|
1334
|
+
reverted: "Скасовано"
|
|
1335
|
+
},
|
|
1336
|
+
actions: {
|
|
1337
|
+
sync: "Синхронізувати",
|
|
1338
|
+
triggerSync: "Запустити синхронізацію",
|
|
1339
|
+
hideDocument: "Приховати документ Sanity",
|
|
1340
|
+
showDocument: "Показати документ Sanity"
|
|
1341
|
+
},
|
|
1342
|
+
table: {
|
|
1343
|
+
headers: {
|
|
1344
|
+
syncId: "ID синхронізації",
|
|
1345
|
+
status: "Статус",
|
|
1346
|
+
createdAt: "Створено",
|
|
1347
|
+
updatedAt: "Оновлено"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
widget: {
|
|
1351
|
+
title: "Статус Sanity"
|
|
1352
|
+
},
|
|
1353
|
+
document: {
|
|
1354
|
+
label: "Документ Sanity"
|
|
1355
|
+
},
|
|
1356
|
+
notifications: {
|
|
1357
|
+
syncTriggered: "Синхронізацію запущено.",
|
|
1358
|
+
syncError: "Не вдалося запустити синхронізацію: {{message}}"
|
|
1359
|
+
}
|
|
1360
|
+
};
|
|
1361
|
+
const uk = {
|
|
1362
|
+
sanitySync: sanitySync$2
|
|
1363
|
+
};
|
|
1364
|
+
const sanitySync$1 = {
|
|
1365
|
+
title: "Đồng bộ hóa Sanity",
|
|
1366
|
+
status: {
|
|
1367
|
+
synced: "Đã đồng bộ",
|
|
1368
|
+
notSynced: "Chưa đồng bộ",
|
|
1369
|
+
loading: "Đang tải...",
|
|
1370
|
+
invoking: "Đang xử lý",
|
|
1371
|
+
done: "Hoàn thành",
|
|
1372
|
+
failed: "Thất bại",
|
|
1373
|
+
reverted: "Đã hoàn tác"
|
|
1374
|
+
},
|
|
1375
|
+
actions: {
|
|
1376
|
+
sync: "Đồng bộ hóa",
|
|
1377
|
+
triggerSync: "Bắt đầu đồng bộ",
|
|
1378
|
+
hideDocument: "Ẩn tài liệu Sanity",
|
|
1379
|
+
showDocument: "Hiện tài liệu Sanity"
|
|
1380
|
+
},
|
|
1381
|
+
table: {
|
|
1382
|
+
headers: {
|
|
1383
|
+
syncId: "ID đồng bộ",
|
|
1384
|
+
status: "Trạng thái",
|
|
1385
|
+
createdAt: "Ngày tạo",
|
|
1386
|
+
updatedAt: "Ngày cập nhật"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
widget: {
|
|
1390
|
+
title: "Trạng thái Sanity"
|
|
1391
|
+
},
|
|
1392
|
+
document: {
|
|
1393
|
+
label: "Tài liệu Sanity"
|
|
1394
|
+
},
|
|
1395
|
+
notifications: {
|
|
1396
|
+
syncTriggered: "Đã bắt đầu đồng bộ hóa.",
|
|
1397
|
+
syncError: "Không thể bắt đầu đồng bộ hóa: {{message}}"
|
|
1398
|
+
}
|
|
1399
|
+
};
|
|
1400
|
+
const vi = {
|
|
1401
|
+
sanitySync: sanitySync$1
|
|
1402
|
+
};
|
|
1403
|
+
const sanitySync = {
|
|
1404
|
+
title: "Sanity 同步",
|
|
1405
|
+
status: {
|
|
1406
|
+
synced: "已同步",
|
|
1407
|
+
notSynced: "未同步",
|
|
1408
|
+
loading: "加载中...",
|
|
1409
|
+
invoking: "调用中",
|
|
1410
|
+
done: "完成",
|
|
1411
|
+
failed: "失败",
|
|
1412
|
+
reverted: "已撤消"
|
|
1413
|
+
},
|
|
1414
|
+
actions: {
|
|
1415
|
+
sync: "同步",
|
|
1416
|
+
triggerSync: "触发同步",
|
|
1417
|
+
hideDocument: "隐藏 Sanity 文档",
|
|
1418
|
+
showDocument: "显示 Sanity 文档"
|
|
1419
|
+
},
|
|
1420
|
+
table: {
|
|
1421
|
+
headers: {
|
|
1422
|
+
syncId: "同步 ID",
|
|
1423
|
+
status: "状态",
|
|
1424
|
+
createdAt: "创建时间",
|
|
1425
|
+
updatedAt: "更新时间"
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1428
|
+
widget: {
|
|
1429
|
+
title: "Sanity 状态"
|
|
1430
|
+
},
|
|
1431
|
+
document: {
|
|
1432
|
+
label: "Sanity 文档"
|
|
1433
|
+
},
|
|
1434
|
+
notifications: {
|
|
1435
|
+
syncTriggered: "同步已触发。",
|
|
1436
|
+
syncError: "无法触发同步:{{message}}"
|
|
1437
|
+
}
|
|
1438
|
+
};
|
|
1439
|
+
const zhCN = {
|
|
1440
|
+
sanitySync
|
|
1441
|
+
};
|
|
1442
|
+
const i18nTranslations0 = {
|
|
1443
|
+
bs: { translation: bs },
|
|
1444
|
+
bg: { translation: bg },
|
|
1445
|
+
en: { translation: en },
|
|
1446
|
+
es: { translation: es },
|
|
1447
|
+
el: { translation: el },
|
|
1448
|
+
de: { translation: de },
|
|
1449
|
+
fr: { translation: fr },
|
|
1450
|
+
he: { translation: he },
|
|
1451
|
+
hu: { translation: hu },
|
|
1452
|
+
it: { translation: it },
|
|
1453
|
+
ja: { translation: ja },
|
|
1454
|
+
pl: { translation: pl },
|
|
1455
|
+
ptBR: { translation: ptBR },
|
|
1456
|
+
ptPT: { translation: ptPT },
|
|
1457
|
+
tr: { translation: tr },
|
|
1458
|
+
th: { translation: th },
|
|
1459
|
+
uk: { translation: uk },
|
|
1460
|
+
ro: { translation: ro },
|
|
1461
|
+
mk: { translation: mk },
|
|
1462
|
+
mn: { translation: mn },
|
|
1463
|
+
ar: { translation: ar },
|
|
1464
|
+
zhCN: { translation: zhCN },
|
|
1465
|
+
fa: { translation: fa },
|
|
1466
|
+
cs: { translation: cs },
|
|
1467
|
+
ru: { translation: ru },
|
|
1468
|
+
lt: { translation: lt },
|
|
1469
|
+
vi: { translation: vi },
|
|
1470
|
+
id: { translation: id },
|
|
1471
|
+
ko: { translation: ko },
|
|
1472
|
+
nl: { translation: nl }
|
|
1473
|
+
};
|
|
1474
|
+
const widgetModule = { widgets: [
|
|
1475
|
+
{
|
|
1476
|
+
Component: CategoryWidget,
|
|
1477
|
+
zone: ["product_category.details.after"]
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
Component: CollectionWidget,
|
|
1481
|
+
zone: ["product_collection.details.after"]
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
Component: ProductWidget,
|
|
1485
|
+
zone: ["product.details.after"]
|
|
1486
|
+
}
|
|
1487
|
+
] };
|
|
1488
|
+
const routeModule = {
|
|
1489
|
+
routes: [
|
|
1490
|
+
{
|
|
1491
|
+
Component: SanityRoute,
|
|
1492
|
+
path: "/sanity"
|
|
1493
|
+
}
|
|
1494
|
+
]
|
|
1495
|
+
};
|
|
1496
|
+
const menuItemModule = {
|
|
1497
|
+
menuItems: [
|
|
1498
|
+
{
|
|
1499
|
+
label: config.label,
|
|
1500
|
+
icon: config.icon,
|
|
1501
|
+
path: "/sanity",
|
|
1502
|
+
nested: void 0,
|
|
1503
|
+
rank: void 0,
|
|
1504
|
+
translationNs: void 0
|
|
1505
|
+
}
|
|
1506
|
+
]
|
|
1507
|
+
};
|
|
1508
|
+
const formModule = { customFields: {} };
|
|
1509
|
+
const displayModule = {
|
|
1510
|
+
displays: {}
|
|
1511
|
+
};
|
|
1512
|
+
const i18nModule = { resources: i18nTranslations0 };
|
|
1513
|
+
const plugin = {
|
|
1514
|
+
widgetModule,
|
|
1515
|
+
routeModule,
|
|
1516
|
+
menuItemModule,
|
|
1517
|
+
formModule,
|
|
1518
|
+
displayModule,
|
|
1519
|
+
i18nModule
|
|
1520
|
+
};
|
|
1521
|
+
module.exports = plugin;
|