@firecms/core 3.3.0-canary.ae3fdc5 → 3.3.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/dist/index.es.js +156 -54
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +156 -54
- package/dist/index.umd.js.map +1 -1
- package/dist/types/translations.d.ts +9 -1
- package/package.json +3 -3
- package/src/app/Scaffold.tsx +13 -1
- package/src/components/EntityCollectionView/EntityCollectionView.tsx +5 -2
- package/src/components/HomePage/NavigationCardBinding.tsx +6 -3
- package/src/core/DefaultDrawer.tsx +1 -1
- package/src/hooks/useBuildNavigationController.tsx +5 -1
- package/src/locales/de.ts +9 -1
- package/src/locales/en.ts +9 -1
- package/src/locales/es.ts +9 -1
- package/src/locales/fr.ts +9 -1
- package/src/locales/hi.ts +9 -1
- package/src/locales/it.ts +9 -1
- package/src/locales/pt.ts +9 -1
- package/src/types/translations.ts +9 -1
- package/src/util/resolutions.ts +3 -0
package/dist/index.es.js
CHANGED
|
@@ -849,8 +849,13 @@ const resolveCollection = ({
|
|
|
849
849
|
...a,
|
|
850
850
|
...b
|
|
851
851
|
}), {});
|
|
852
|
+
const {
|
|
853
|
+
properties: overrideProps,
|
|
854
|
+
...restOverrides
|
|
855
|
+
} = collectionOverride ?? {};
|
|
852
856
|
return {
|
|
853
857
|
...collection,
|
|
858
|
+
...restOverrides,
|
|
854
859
|
properties: cleanedProperties,
|
|
855
860
|
originalCollection: collection
|
|
856
861
|
};
|
|
@@ -12353,7 +12358,7 @@ function StorageUpload(t0) {
|
|
|
12353
12358
|
newValue.splice(fromIndex, 1);
|
|
12354
12359
|
newValue.splice(toIndex, 0, item);
|
|
12355
12360
|
setInternalValue(newValue);
|
|
12356
|
-
const fieldValue = newValue.filter(_temp3$4).map(_temp4$
|
|
12361
|
+
const fieldValue = newValue.filter(_temp3$4).map(_temp4$4);
|
|
12357
12362
|
onChange(fieldValue);
|
|
12358
12363
|
};
|
|
12359
12364
|
$[0] = multipleFilesSupported;
|
|
@@ -12547,7 +12552,7 @@ function _temp6$2(v_1) {
|
|
|
12547
12552
|
function _temp5$2(v_0) {
|
|
12548
12553
|
return !!v_0.storagePathOrDownloadUrl;
|
|
12549
12554
|
}
|
|
12550
|
-
function _temp4$
|
|
12555
|
+
function _temp4$4(e_0) {
|
|
12551
12556
|
return e_0.storagePathOrDownloadUrl;
|
|
12552
12557
|
}
|
|
12553
12558
|
function _temp3$4(e) {
|
|
@@ -18782,7 +18787,7 @@ function StringNumberFilterField(t0) {
|
|
|
18782
18787
|
let t11;
|
|
18783
18788
|
if ($[40] !== dataType || $[41] !== enumValues || $[42] !== internalValue || $[43] !== isNullOperation || $[44] !== multiple || $[45] !== name || $[46] !== operation || $[47] !== updateFilter) {
|
|
18784
18789
|
t11 = enumValues && multiple && /* @__PURE__ */ jsx(MultiSelect, { size: "medium", position: "item-aligned", value: Array.isArray(internalValue) ? internalValue.map(_temp3$3) : [], disabled: isNullOperation, onValueChange: (value_2) => {
|
|
18785
|
-
updateFilter(operation, dataType === "number" ? value_2.map(_temp4$
|
|
18790
|
+
updateFilter(operation, dataType === "number" ? value_2.map(_temp4$3) : value_2);
|
|
18786
18791
|
}, multiple, endAdornment: internalValue && /* @__PURE__ */ jsx(IconButton, { className: "absolute right-2 top-3", onClick: (e_2) => updateFilter(operation, void 0), children: /* @__PURE__ */ jsx(CloseIcon, {}) }), children: enumValues.map((enumConfig_0) => /* @__PURE__ */ jsx(MultiSelectItem, { value: String(enumConfig_0.id), children: /* @__PURE__ */ jsx(EnumValuesChip, { enumKey: String(enumConfig_0.id), enumValues, size: "small" }) }, `select_value_${name}_${enumConfig_0.id}`)) });
|
|
18787
18792
|
$[40] = dataType;
|
|
18788
18793
|
$[41] = enumValues;
|
|
@@ -18824,7 +18829,7 @@ function StringNumberFilterField(t0) {
|
|
|
18824
18829
|
}
|
|
18825
18830
|
return t13;
|
|
18826
18831
|
}
|
|
18827
|
-
function _temp4$
|
|
18832
|
+
function _temp4$3(v) {
|
|
18828
18833
|
return parseInt(v);
|
|
18829
18834
|
}
|
|
18830
18835
|
function _temp3$3(e_1) {
|
|
@@ -20915,7 +20920,7 @@ function SmallNavigationCard(t0) {
|
|
|
20915
20920
|
return t5;
|
|
20916
20921
|
}
|
|
20917
20922
|
function NavigationCardBinding(t0) {
|
|
20918
|
-
const $ = c(
|
|
20923
|
+
const $ = c(38);
|
|
20919
20924
|
const {
|
|
20920
20925
|
path,
|
|
20921
20926
|
collection,
|
|
@@ -20928,6 +20933,9 @@ function NavigationCardBinding(t0) {
|
|
|
20928
20933
|
shrink
|
|
20929
20934
|
} = t0;
|
|
20930
20935
|
const userConfigurationPersistence = useUserConfigurationPersistence();
|
|
20936
|
+
const {
|
|
20937
|
+
t
|
|
20938
|
+
} = useTranslation();
|
|
20931
20939
|
const t1 = collection ?? view;
|
|
20932
20940
|
let t2;
|
|
20933
20941
|
if ($[0] !== t1) {
|
|
@@ -21000,51 +21008,61 @@ function NavigationCardBinding(t0) {
|
|
|
21000
21008
|
t5 = $[13];
|
|
21001
21009
|
}
|
|
21002
21010
|
const actions = t5;
|
|
21011
|
+
let t6;
|
|
21012
|
+
if ($[18] !== name || $[19] !== t) {
|
|
21013
|
+
t6 = t(name);
|
|
21014
|
+
$[18] = name;
|
|
21015
|
+
$[19] = t;
|
|
21016
|
+
$[20] = t6;
|
|
21017
|
+
} else {
|
|
21018
|
+
t6 = $[20];
|
|
21019
|
+
}
|
|
21020
|
+
const translatedName = t6;
|
|
21003
21021
|
if (type === "admin") {
|
|
21004
|
-
let
|
|
21005
|
-
if ($[
|
|
21006
|
-
|
|
21007
|
-
$[
|
|
21008
|
-
$[
|
|
21009
|
-
$[
|
|
21010
|
-
$[
|
|
21022
|
+
let t72;
|
|
21023
|
+
if ($[21] !== collectionIcon || $[22] !== translatedName || $[23] !== url) {
|
|
21024
|
+
t72 = /* @__PURE__ */ jsx(SmallNavigationCard, { icon: collectionIcon, name: translatedName, url });
|
|
21025
|
+
$[21] = collectionIcon;
|
|
21026
|
+
$[22] = translatedName;
|
|
21027
|
+
$[23] = url;
|
|
21028
|
+
$[24] = t72;
|
|
21011
21029
|
} else {
|
|
21012
|
-
|
|
21030
|
+
t72 = $[24];
|
|
21013
21031
|
}
|
|
21014
|
-
return
|
|
21032
|
+
return t72;
|
|
21015
21033
|
}
|
|
21016
|
-
let
|
|
21017
|
-
if ($[
|
|
21018
|
-
|
|
21034
|
+
let t7;
|
|
21035
|
+
if ($[25] !== navigate || $[26] !== onClick || $[27] !== path || $[28] !== url || $[29] !== userConfigurationPersistence) {
|
|
21036
|
+
t7 = () => {
|
|
21019
21037
|
onClick?.();
|
|
21020
21038
|
navigate(url);
|
|
21021
21039
|
if (userConfigurationPersistence) {
|
|
21022
21040
|
userConfigurationPersistence.setRecentlyVisitedPaths([path, ...(userConfigurationPersistence.recentlyVisitedPaths ?? []).filter((p_0) => p_0 !== path)]);
|
|
21023
21041
|
}
|
|
21024
21042
|
};
|
|
21025
|
-
$[
|
|
21026
|
-
$[
|
|
21027
|
-
$[
|
|
21028
|
-
$[
|
|
21029
|
-
$[
|
|
21030
|
-
$[
|
|
21043
|
+
$[25] = navigate;
|
|
21044
|
+
$[26] = onClick;
|
|
21045
|
+
$[27] = path;
|
|
21046
|
+
$[28] = url;
|
|
21047
|
+
$[29] = userConfigurationPersistence;
|
|
21048
|
+
$[30] = t7;
|
|
21031
21049
|
} else {
|
|
21032
|
-
|
|
21050
|
+
t7 = $[30];
|
|
21033
21051
|
}
|
|
21034
|
-
let
|
|
21035
|
-
if ($[
|
|
21036
|
-
|
|
21037
|
-
$[
|
|
21038
|
-
$[
|
|
21039
|
-
$[
|
|
21040
|
-
$[
|
|
21041
|
-
$[
|
|
21042
|
-
$[
|
|
21043
|
-
$[
|
|
21052
|
+
let t8;
|
|
21053
|
+
if ($[31] !== actions || $[32] !== collectionIcon || $[33] !== description || $[34] !== shrink || $[35] !== t7 || $[36] !== translatedName) {
|
|
21054
|
+
t8 = /* @__PURE__ */ jsx(NavigationCard, { icon: collectionIcon, name: translatedName, description, actions, onClick: t7, shrink });
|
|
21055
|
+
$[31] = actions;
|
|
21056
|
+
$[32] = collectionIcon;
|
|
21057
|
+
$[33] = description;
|
|
21058
|
+
$[34] = shrink;
|
|
21059
|
+
$[35] = t7;
|
|
21060
|
+
$[36] = translatedName;
|
|
21061
|
+
$[37] = t8;
|
|
21044
21062
|
} else {
|
|
21045
|
-
|
|
21063
|
+
t8 = $[37];
|
|
21046
21064
|
}
|
|
21047
|
-
return
|
|
21065
|
+
return t8;
|
|
21048
21066
|
}
|
|
21049
21067
|
const animateLayoutChanges = (args) => defaultAnimateLayoutChanges({
|
|
21050
21068
|
...args,
|
|
@@ -25523,7 +25541,12 @@ const EntityCollectionView$1 = React__default.memo(function EntityCollectionView
|
|
|
25523
25541
|
const scrollRestoration = useScrollRestoration();
|
|
25524
25542
|
const collection = useMemo(() => {
|
|
25525
25543
|
const userOverride = userConfigPersistence?.getCollectionConfig(fullPath);
|
|
25526
|
-
|
|
25544
|
+
if (!userOverride) return collectionProp;
|
|
25545
|
+
const {
|
|
25546
|
+
properties,
|
|
25547
|
+
...rest
|
|
25548
|
+
} = userOverride;
|
|
25549
|
+
return mergeDeep(collectionProp, rest);
|
|
25527
25550
|
}, [collectionProp, fullPath, userConfigPersistence?.getCollectionConfig]);
|
|
25528
25551
|
const openEntityMode = collection?.openEntityMode ?? DEFAULT_ENTITY_OPEN_MODE;
|
|
25529
25552
|
const collectionRef = React__default.useRef(collection);
|
|
@@ -25777,11 +25800,12 @@ const EntityCollectionView$1 = React__default.memo(function EntityCollectionView
|
|
|
25777
25800
|
collection,
|
|
25778
25801
|
path: fullPath,
|
|
25779
25802
|
propertyConfigs: customizationController.propertyConfigs,
|
|
25780
|
-
authController
|
|
25781
|
-
|
|
25803
|
+
authController,
|
|
25804
|
+
userConfigPersistence
|
|
25805
|
+
}), [collection, fullPath, userConfigPersistence]);
|
|
25782
25806
|
const hasEnumProperty = useMemo(() => {
|
|
25783
|
-
const
|
|
25784
|
-
return Object.values(
|
|
25807
|
+
const properties_0 = resolvedCollection.properties;
|
|
25808
|
+
return Object.values(properties_0).some((prop) => prop && prop.dataType === "string" && prop.enumValues);
|
|
25785
25809
|
}, [resolvedCollection.properties]);
|
|
25786
25810
|
const enabledViews = useMemo(() => {
|
|
25787
25811
|
const configured = collection.enabledViews ?? ["table", "cards", "kanban"];
|
|
@@ -25792,8 +25816,8 @@ const EntityCollectionView$1 = React__default.memo(function EntityCollectionView
|
|
|
25792
25816
|
}, [collection.enabledViews, hasEnumProperty]);
|
|
25793
25817
|
const kanbanPropertyOptions = useMemo(() => {
|
|
25794
25818
|
const options = [];
|
|
25795
|
-
const
|
|
25796
|
-
for (const [key_0, property_0] of Object.entries(
|
|
25819
|
+
const properties_1 = resolvedCollection.properties;
|
|
25820
|
+
for (const [key_0, property_0] of Object.entries(properties_1)) {
|
|
25797
25821
|
const prop_0 = property_0;
|
|
25798
25822
|
if (prop_0 && prop_0.dataType === "string" && prop_0.enumValues) {
|
|
25799
25823
|
options.push({
|
|
@@ -28096,7 +28120,14 @@ function useBuildNavigationController(props) {
|
|
|
28096
28120
|
if (!collections_0) return void 0;
|
|
28097
28121
|
const baseCollection = getCollectionByPathOrId(removeInitialAndTrailingSlashes(idOrPath), collections_0);
|
|
28098
28122
|
const userOverride = includeUserOverride ? userConfigPersistence?.getCollectionConfig(idOrPath) : void 0;
|
|
28099
|
-
|
|
28123
|
+
let overriddenCollection = baseCollection;
|
|
28124
|
+
if (baseCollection && userOverride) {
|
|
28125
|
+
const {
|
|
28126
|
+
properties,
|
|
28127
|
+
...rest
|
|
28128
|
+
} = userOverride;
|
|
28129
|
+
overriddenCollection = mergeDeep(baseCollection, rest);
|
|
28130
|
+
}
|
|
28100
28131
|
let result = overriddenCollection;
|
|
28101
28132
|
if (overriddenCollection) {
|
|
28102
28133
|
const subcollections = overriddenCollection.subcollections;
|
|
@@ -30037,7 +30068,7 @@ function useBuildSideDialogsController() {
|
|
|
30037
30068
|
replace: true,
|
|
30038
30069
|
state: {
|
|
30039
30070
|
base_location: baseLocation,
|
|
30040
|
-
panels: updatedPanels.map(_temp4$
|
|
30071
|
+
panels: updatedPanels.map(_temp4$2)
|
|
30041
30072
|
}
|
|
30042
30073
|
});
|
|
30043
30074
|
}
|
|
@@ -30135,7 +30166,7 @@ function _temp6$1(p_4) {
|
|
|
30135
30166
|
function _temp5$1(p_3) {
|
|
30136
30167
|
return p_3.key;
|
|
30137
30168
|
}
|
|
30138
|
-
function _temp4$
|
|
30169
|
+
function _temp4$2(p_2) {
|
|
30139
30170
|
return p_2.key;
|
|
30140
30171
|
}
|
|
30141
30172
|
function _temp3$2(p_1) {
|
|
@@ -32281,7 +32312,7 @@ const Scaffold = React__default.memo(function Scaffold2(props) {
|
|
|
32281
32312
|
const otherChildren = t3;
|
|
32282
32313
|
const includeDrawer = drawerChildren.length > 0;
|
|
32283
32314
|
const largeLayout = useLargeLayout();
|
|
32284
|
-
const [drawerOpen, setDrawerOpen] = React__default.useState(
|
|
32315
|
+
const [drawerOpen, setDrawerOpen] = React__default.useState(_temp4$1);
|
|
32285
32316
|
const [onHover, setOnHover] = React__default.useState(false);
|
|
32286
32317
|
let t4;
|
|
32287
32318
|
if ($[6] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
@@ -32303,6 +32334,10 @@ const Scaffold = React__default.memo(function Scaffold2(props) {
|
|
|
32303
32334
|
if ($[8] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
32304
32335
|
t6 = () => {
|
|
32305
32336
|
setDrawerOpen(true);
|
|
32337
|
+
try {
|
|
32338
|
+
localStorage.setItem("firecms_drawer_open", "true");
|
|
32339
|
+
} catch {
|
|
32340
|
+
}
|
|
32306
32341
|
};
|
|
32307
32342
|
$[8] = t6;
|
|
32308
32343
|
} else {
|
|
@@ -32313,6 +32348,10 @@ const Scaffold = React__default.memo(function Scaffold2(props) {
|
|
|
32313
32348
|
if ($[9] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
32314
32349
|
t7 = () => {
|
|
32315
32350
|
setDrawerOpen(false);
|
|
32351
|
+
try {
|
|
32352
|
+
localStorage.setItem("firecms_drawer_open", "false");
|
|
32353
|
+
} catch {
|
|
32354
|
+
}
|
|
32316
32355
|
};
|
|
32317
32356
|
$[9] = t7;
|
|
32318
32357
|
} else {
|
|
@@ -32665,6 +32704,13 @@ function _temp2$1(child_0) {
|
|
|
32665
32704
|
function _temp3$1(child_1) {
|
|
32666
32705
|
return child_1.type.componentType !== "Drawer" && child_1.type.componentType !== "AppBar";
|
|
32667
32706
|
}
|
|
32707
|
+
function _temp4$1() {
|
|
32708
|
+
try {
|
|
32709
|
+
return localStorage.getItem("firecms_drawer_open") === "true";
|
|
32710
|
+
} catch {
|
|
32711
|
+
return false;
|
|
32712
|
+
}
|
|
32713
|
+
}
|
|
32668
32714
|
const en = {
|
|
32669
32715
|
// ─── Form actions ────────────────────────────────────────────
|
|
32670
32716
|
save: "Save",
|
|
@@ -33140,10 +33186,18 @@ const en = {
|
|
|
33140
33186
|
auto_setup_collections_button: "Automatically set up collections",
|
|
33141
33187
|
auto_setup_collections_title: "Automatically set up collections?",
|
|
33142
33188
|
auto_setup_collections_desc: "This will automatically create collection configs for collections that are <b>NOT</b> already mapped",
|
|
33143
|
-
|
|
33189
|
+
setting_up_collections: "Setting up collections",
|
|
33190
|
+
setting_up_collection: "Setting up {{name}}",
|
|
33144
33191
|
no_collections_found_to_setup: "No collections found to setup.",
|
|
33145
33192
|
collections_have_been_setup: "Collections have been automatically setup.",
|
|
33146
33193
|
error_setting_up_collections: "Error automatically setting up collections",
|
|
33194
|
+
setup_collections_title: "Set up collections",
|
|
33195
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
33196
|
+
select_all: "Select all",
|
|
33197
|
+
deselect_all: "Deselect all",
|
|
33198
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
33199
|
+
collection_setup_success: "{{name}} has been set up",
|
|
33200
|
+
go_to_collection: "Go to collection",
|
|
33147
33201
|
// --- Home Suggestions ---
|
|
33148
33202
|
add_your: "Add your",
|
|
33149
33203
|
database_collections: "database collections",
|
|
@@ -33811,10 +33865,18 @@ const es = {
|
|
|
33811
33865
|
auto_setup_collections_button: "Configurar colecciones automáticamente",
|
|
33812
33866
|
auto_setup_collections_title: "¿Configurar colecciones automáticamente?",
|
|
33813
33867
|
auto_setup_collections_desc: "Esto creará automáticamente la configuración de las colecciones que <b>NO</b> estén mapeadas",
|
|
33814
|
-
|
|
33868
|
+
setting_up_collections: "Configurando colecciones",
|
|
33869
|
+
setting_up_collection: "Configurando {{name}}",
|
|
33815
33870
|
no_collections_found_to_setup: "No se encontraron colecciones para configurar",
|
|
33816
33871
|
collections_have_been_setup: "¡Tus colecciones han sido configuradas!",
|
|
33817
33872
|
error_setting_up_collections: "Error al configurar colecciones",
|
|
33873
|
+
setup_collections_title: "Set up collections",
|
|
33874
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
33875
|
+
select_all: "Select all",
|
|
33876
|
+
deselect_all: "Deselect all",
|
|
33877
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
33878
|
+
collection_setup_success: "{{name}} has been set up",
|
|
33879
|
+
go_to_collection: "Go to collection",
|
|
33818
33880
|
// --- Home Suggestions ---
|
|
33819
33881
|
add_your: "Añade tus",
|
|
33820
33882
|
database_collections: "colecciones de base de datos",
|
|
@@ -34482,10 +34544,18 @@ const de = {
|
|
|
34482
34544
|
auto_setup_collections_button: "Sammlungen automatisch einrichten",
|
|
34483
34545
|
auto_setup_collections_title: "Sammlungen automatisch einrichten?",
|
|
34484
34546
|
auto_setup_collections_desc: "Dadurch werden automatisch Sammlungskonfigurationen für Sammlungen erstellt, die noch <b>NICHT</b> zugeordnet sind.",
|
|
34485
|
-
|
|
34547
|
+
setting_up_collections: "Sammlungen werden eingerichtet",
|
|
34548
|
+
setting_up_collection: "{{name}} wird eingerichtet",
|
|
34486
34549
|
no_collections_found_to_setup: "Keine einzurichtenden Sammlungen gefunden",
|
|
34487
34550
|
collections_have_been_setup: "Sammlungen wurden automatisch eingerichtet",
|
|
34488
34551
|
error_setting_up_collections: "Fehler beim automatischen Einrichten der Sammlungen",
|
|
34552
|
+
setup_collections_title: "Set up collections",
|
|
34553
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
34554
|
+
select_all: "Select all",
|
|
34555
|
+
deselect_all: "Deselect all",
|
|
34556
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
34557
|
+
collection_setup_success: "{{name}} has been set up",
|
|
34558
|
+
go_to_collection: "Go to collection",
|
|
34489
34559
|
add_your: "Fügen Sie Ihre",
|
|
34490
34560
|
database_collections: "Datenbanksammlungen",
|
|
34491
34561
|
to_firecms: "zu FireCMS hinzu",
|
|
@@ -35151,10 +35221,18 @@ const fr = {
|
|
|
35151
35221
|
auto_setup_collections_button: "Configurer les collections automatiquement",
|
|
35152
35222
|
auto_setup_collections_title: "Configurer les collections automatiquement ?",
|
|
35153
35223
|
auto_setup_collections_desc: "Cela créera automatiquement des configurations de collection pour les collections qui ne sont <b>PAS</b> déjà mappées",
|
|
35154
|
-
|
|
35224
|
+
setting_up_collections: "Configuration des collections",
|
|
35225
|
+
setting_up_collection: "Configuration de {{name}}",
|
|
35155
35226
|
no_collections_found_to_setup: "Aucune collection à configurer trouvée",
|
|
35156
35227
|
collections_have_been_setup: "Les collections ont été configurées",
|
|
35157
35228
|
error_setting_up_collections: "Erreur lors de la configuration des collections",
|
|
35229
|
+
setup_collections_title: "Set up collections",
|
|
35230
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
35231
|
+
select_all: "Select all",
|
|
35232
|
+
deselect_all: "Deselect all",
|
|
35233
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
35234
|
+
collection_setup_success: "{{name}} has been set up",
|
|
35235
|
+
go_to_collection: "Go to collection",
|
|
35158
35236
|
add_your: "Ajoutez vos",
|
|
35159
35237
|
database_collections: "collections de base de données",
|
|
35160
35238
|
to_firecms: "à FireCMS",
|
|
@@ -35820,10 +35898,18 @@ const it = {
|
|
|
35820
35898
|
auto_setup_collections_button: "Configura le collezioni automaticamente",
|
|
35821
35899
|
auto_setup_collections_title: "Configurazione automatica delle collezioni",
|
|
35822
35900
|
auto_setup_collections_desc: "Configura le collezioni automaticamente in base ai dati Firestore esistenti. Lascia che FireCMS configuri il CMS perfetto per te.",
|
|
35823
|
-
|
|
35901
|
+
setting_up_collections: "Configurazione delle collezioni",
|
|
35902
|
+
setting_up_collection: "Configurazione di {{name}}",
|
|
35824
35903
|
no_collections_found_to_setup: "Nessuna collezione trovata da configurare",
|
|
35825
35904
|
collections_have_been_setup: "Le collezioni sono state configurate",
|
|
35826
35905
|
error_setting_up_collections: "Errore durante la configurazione delle collezioni",
|
|
35906
|
+
setup_collections_title: "Set up collections",
|
|
35907
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
35908
|
+
select_all: "Select all",
|
|
35909
|
+
deselect_all: "Deselect all",
|
|
35910
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
35911
|
+
collection_setup_success: "{{name}} has been set up",
|
|
35912
|
+
go_to_collection: "Go to collection",
|
|
35827
35913
|
add_your: "Aggiungi le tue",
|
|
35828
35914
|
database_collections: "collezioni del database",
|
|
35829
35915
|
to_firecms: "a FireCMS",
|
|
@@ -36489,10 +36575,18 @@ const hi = {
|
|
|
36489
36575
|
auto_setup_collections_button: "संग्रहों को स्वचालित रूप से सेट करें",
|
|
36490
36576
|
auto_setup_collections_title: "संग्रहों की स्वचालित सेटअप",
|
|
36491
36577
|
auto_setup_collections_desc: "अपने मौजूदा Firestore डेटा के आधार पर संग्रहों को स्वचालित रूप से सेट करें। FireCMS को आपके लिए परफेक्ट CMS कॉन्फ़िगर करने दें।",
|
|
36492
|
-
|
|
36578
|
+
setting_up_collections: "संग्रह सेट किए जा रहे हैं",
|
|
36579
|
+
setting_up_collection: "{{name}} सेट किया जा रहा है",
|
|
36493
36580
|
no_collections_found_to_setup: "सेट करने के लिए कोई संग्रह नहीं मिला",
|
|
36494
36581
|
collections_have_been_setup: "संग्रहों को सेट कर दिया गया है",
|
|
36495
36582
|
error_setting_up_collections: "संग्रह सेट करने में त्रुटि",
|
|
36583
|
+
setup_collections_title: "Set up collections",
|
|
36584
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
36585
|
+
select_all: "Select all",
|
|
36586
|
+
deselect_all: "Deselect all",
|
|
36587
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
36588
|
+
collection_setup_success: "{{name}} has been set up",
|
|
36589
|
+
go_to_collection: "Go to collection",
|
|
36496
36590
|
add_your: "अपने",
|
|
36497
36591
|
database_collections: "डेटाबेस संग्रह",
|
|
36498
36592
|
to_firecms: "को FireCMS में जोड़ें",
|
|
@@ -37158,10 +37252,18 @@ const pt = {
|
|
|
37158
37252
|
auto_setup_collections_button: "Configurar coleções automaticamente",
|
|
37159
37253
|
auto_setup_collections_title: "Configurar coleções automaticamente?",
|
|
37160
37254
|
auto_setup_collections_desc: "Isto criará automaticamente configurações de coleção para coleções que <b>NÃO</b> estão já mapeadas",
|
|
37161
|
-
|
|
37255
|
+
setting_up_collections: "Configurando coleções",
|
|
37256
|
+
setting_up_collection: "Configurando {{name}}",
|
|
37162
37257
|
no_collections_found_to_setup: "Nenhuma coleção encontrada para configurar.",
|
|
37163
37258
|
collections_have_been_setup: "As coleções foram configuradas automaticamente.",
|
|
37164
37259
|
error_setting_up_collections: "Erro ao configurar coleções automaticamente",
|
|
37260
|
+
setup_collections_title: "Set up collections",
|
|
37261
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
37262
|
+
select_all: "Select all",
|
|
37263
|
+
deselect_all: "Deselect all",
|
|
37264
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
37265
|
+
collection_setup_success: "{{name}} has been set up",
|
|
37266
|
+
go_to_collection: "Go to collection",
|
|
37165
37267
|
// --- Home Suggestions ---
|
|
37166
37268
|
add_your: "Adicione as suas",
|
|
37167
37269
|
database_collections: "coleções da base de dados",
|