@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.umd.js
CHANGED
|
@@ -826,8 +826,13 @@
|
|
|
826
826
|
...a,
|
|
827
827
|
...b
|
|
828
828
|
}), {});
|
|
829
|
+
const {
|
|
830
|
+
properties: overrideProps,
|
|
831
|
+
...restOverrides
|
|
832
|
+
} = collectionOverride ?? {};
|
|
829
833
|
return {
|
|
830
834
|
...collection,
|
|
835
|
+
...restOverrides,
|
|
831
836
|
properties: cleanedProperties,
|
|
832
837
|
originalCollection: collection
|
|
833
838
|
};
|
|
@@ -12330,7 +12335,7 @@
|
|
|
12330
12335
|
newValue.splice(fromIndex, 1);
|
|
12331
12336
|
newValue.splice(toIndex, 0, item);
|
|
12332
12337
|
setInternalValue(newValue);
|
|
12333
|
-
const fieldValue = newValue.filter(_temp3$4).map(_temp4$
|
|
12338
|
+
const fieldValue = newValue.filter(_temp3$4).map(_temp4$4);
|
|
12334
12339
|
onChange(fieldValue);
|
|
12335
12340
|
};
|
|
12336
12341
|
$[0] = multipleFilesSupported;
|
|
@@ -12524,7 +12529,7 @@
|
|
|
12524
12529
|
function _temp5$2(v_0) {
|
|
12525
12530
|
return !!v_0.storagePathOrDownloadUrl;
|
|
12526
12531
|
}
|
|
12527
|
-
function _temp4$
|
|
12532
|
+
function _temp4$4(e_0) {
|
|
12528
12533
|
return e_0.storagePathOrDownloadUrl;
|
|
12529
12534
|
}
|
|
12530
12535
|
function _temp3$4(e) {
|
|
@@ -18759,7 +18764,7 @@
|
|
|
18759
18764
|
let t11;
|
|
18760
18765
|
if ($[40] !== dataType || $[41] !== enumValues || $[42] !== internalValue || $[43] !== isNullOperation || $[44] !== multiple || $[45] !== name || $[46] !== operation || $[47] !== updateFilter) {
|
|
18761
18766
|
t11 = enumValues && multiple && /* @__PURE__ */ jsxRuntime.jsx(ui.MultiSelect, { size: "medium", position: "item-aligned", value: Array.isArray(internalValue) ? internalValue.map(_temp3$3) : [], disabled: isNullOperation, onValueChange: (value_2) => {
|
|
18762
|
-
updateFilter(operation, dataType === "number" ? value_2.map(_temp4$
|
|
18767
|
+
updateFilter(operation, dataType === "number" ? value_2.map(_temp4$3) : value_2);
|
|
18763
18768
|
}, multiple, endAdornment: internalValue && /* @__PURE__ */ jsxRuntime.jsx(ui.IconButton, { className: "absolute right-2 top-3", onClick: (e_2) => updateFilter(operation, void 0), children: /* @__PURE__ */ jsxRuntime.jsx(ui.CloseIcon, {}) }), children: enumValues.map((enumConfig_0) => /* @__PURE__ */ jsxRuntime.jsx(ui.MultiSelectItem, { value: String(enumConfig_0.id), children: /* @__PURE__ */ jsxRuntime.jsx(EnumValuesChip, { enumKey: String(enumConfig_0.id), enumValues, size: "small" }) }, `select_value_${name}_${enumConfig_0.id}`)) });
|
|
18764
18769
|
$[40] = dataType;
|
|
18765
18770
|
$[41] = enumValues;
|
|
@@ -18801,7 +18806,7 @@
|
|
|
18801
18806
|
}
|
|
18802
18807
|
return t13;
|
|
18803
18808
|
}
|
|
18804
|
-
function _temp4$
|
|
18809
|
+
function _temp4$3(v) {
|
|
18805
18810
|
return parseInt(v);
|
|
18806
18811
|
}
|
|
18807
18812
|
function _temp3$3(e_1) {
|
|
@@ -20892,7 +20897,7 @@
|
|
|
20892
20897
|
return t5;
|
|
20893
20898
|
}
|
|
20894
20899
|
function NavigationCardBinding(t0) {
|
|
20895
|
-
const $ = reactCompilerRuntime.c(
|
|
20900
|
+
const $ = reactCompilerRuntime.c(38);
|
|
20896
20901
|
const {
|
|
20897
20902
|
path,
|
|
20898
20903
|
collection,
|
|
@@ -20905,6 +20910,9 @@
|
|
|
20905
20910
|
shrink
|
|
20906
20911
|
} = t0;
|
|
20907
20912
|
const userConfigurationPersistence = useUserConfigurationPersistence();
|
|
20913
|
+
const {
|
|
20914
|
+
t
|
|
20915
|
+
} = useTranslation();
|
|
20908
20916
|
const t1 = collection ?? view;
|
|
20909
20917
|
let t2;
|
|
20910
20918
|
if ($[0] !== t1) {
|
|
@@ -20977,51 +20985,61 @@
|
|
|
20977
20985
|
t5 = $[13];
|
|
20978
20986
|
}
|
|
20979
20987
|
const actions = t5;
|
|
20988
|
+
let t6;
|
|
20989
|
+
if ($[18] !== name || $[19] !== t) {
|
|
20990
|
+
t6 = t(name);
|
|
20991
|
+
$[18] = name;
|
|
20992
|
+
$[19] = t;
|
|
20993
|
+
$[20] = t6;
|
|
20994
|
+
} else {
|
|
20995
|
+
t6 = $[20];
|
|
20996
|
+
}
|
|
20997
|
+
const translatedName = t6;
|
|
20980
20998
|
if (type === "admin") {
|
|
20981
|
-
let
|
|
20982
|
-
if ($[
|
|
20983
|
-
|
|
20984
|
-
$[
|
|
20985
|
-
$[
|
|
20986
|
-
$[
|
|
20987
|
-
$[
|
|
20999
|
+
let t72;
|
|
21000
|
+
if ($[21] !== collectionIcon || $[22] !== translatedName || $[23] !== url) {
|
|
21001
|
+
t72 = /* @__PURE__ */ jsxRuntime.jsx(SmallNavigationCard, { icon: collectionIcon, name: translatedName, url });
|
|
21002
|
+
$[21] = collectionIcon;
|
|
21003
|
+
$[22] = translatedName;
|
|
21004
|
+
$[23] = url;
|
|
21005
|
+
$[24] = t72;
|
|
20988
21006
|
} else {
|
|
20989
|
-
|
|
21007
|
+
t72 = $[24];
|
|
20990
21008
|
}
|
|
20991
|
-
return
|
|
21009
|
+
return t72;
|
|
20992
21010
|
}
|
|
20993
|
-
let
|
|
20994
|
-
if ($[
|
|
20995
|
-
|
|
21011
|
+
let t7;
|
|
21012
|
+
if ($[25] !== navigate || $[26] !== onClick || $[27] !== path || $[28] !== url || $[29] !== userConfigurationPersistence) {
|
|
21013
|
+
t7 = () => {
|
|
20996
21014
|
onClick?.();
|
|
20997
21015
|
navigate(url);
|
|
20998
21016
|
if (userConfigurationPersistence) {
|
|
20999
21017
|
userConfigurationPersistence.setRecentlyVisitedPaths([path, ...(userConfigurationPersistence.recentlyVisitedPaths ?? []).filter((p_0) => p_0 !== path)]);
|
|
21000
21018
|
}
|
|
21001
21019
|
};
|
|
21002
|
-
$[
|
|
21003
|
-
$[
|
|
21004
|
-
$[
|
|
21005
|
-
$[
|
|
21006
|
-
$[
|
|
21007
|
-
$[
|
|
21020
|
+
$[25] = navigate;
|
|
21021
|
+
$[26] = onClick;
|
|
21022
|
+
$[27] = path;
|
|
21023
|
+
$[28] = url;
|
|
21024
|
+
$[29] = userConfigurationPersistence;
|
|
21025
|
+
$[30] = t7;
|
|
21008
21026
|
} else {
|
|
21009
|
-
|
|
21027
|
+
t7 = $[30];
|
|
21010
21028
|
}
|
|
21011
|
-
let
|
|
21012
|
-
if ($[
|
|
21013
|
-
|
|
21014
|
-
$[
|
|
21015
|
-
$[
|
|
21016
|
-
$[
|
|
21017
|
-
$[
|
|
21018
|
-
$[
|
|
21019
|
-
$[
|
|
21020
|
-
$[
|
|
21029
|
+
let t8;
|
|
21030
|
+
if ($[31] !== actions || $[32] !== collectionIcon || $[33] !== description || $[34] !== shrink || $[35] !== t7 || $[36] !== translatedName) {
|
|
21031
|
+
t8 = /* @__PURE__ */ jsxRuntime.jsx(NavigationCard, { icon: collectionIcon, name: translatedName, description, actions, onClick: t7, shrink });
|
|
21032
|
+
$[31] = actions;
|
|
21033
|
+
$[32] = collectionIcon;
|
|
21034
|
+
$[33] = description;
|
|
21035
|
+
$[34] = shrink;
|
|
21036
|
+
$[35] = t7;
|
|
21037
|
+
$[36] = translatedName;
|
|
21038
|
+
$[37] = t8;
|
|
21021
21039
|
} else {
|
|
21022
|
-
|
|
21040
|
+
t8 = $[37];
|
|
21023
21041
|
}
|
|
21024
|
-
return
|
|
21042
|
+
return t8;
|
|
21025
21043
|
}
|
|
21026
21044
|
const animateLayoutChanges = (args) => sortable.defaultAnimateLayoutChanges({
|
|
21027
21045
|
...args,
|
|
@@ -25500,7 +25518,12 @@
|
|
|
25500
25518
|
const scrollRestoration = useScrollRestoration();
|
|
25501
25519
|
const collection = React.useMemo(() => {
|
|
25502
25520
|
const userOverride = userConfigPersistence?.getCollectionConfig(fullPath);
|
|
25503
|
-
|
|
25521
|
+
if (!userOverride) return collectionProp;
|
|
25522
|
+
const {
|
|
25523
|
+
properties,
|
|
25524
|
+
...rest
|
|
25525
|
+
} = userOverride;
|
|
25526
|
+
return mergeDeep(collectionProp, rest);
|
|
25504
25527
|
}, [collectionProp, fullPath, userConfigPersistence?.getCollectionConfig]);
|
|
25505
25528
|
const openEntityMode = collection?.openEntityMode ?? DEFAULT_ENTITY_OPEN_MODE;
|
|
25506
25529
|
const collectionRef = React.useRef(collection);
|
|
@@ -25754,11 +25777,12 @@
|
|
|
25754
25777
|
collection,
|
|
25755
25778
|
path: fullPath,
|
|
25756
25779
|
propertyConfigs: customizationController.propertyConfigs,
|
|
25757
|
-
authController
|
|
25758
|
-
|
|
25780
|
+
authController,
|
|
25781
|
+
userConfigPersistence
|
|
25782
|
+
}), [collection, fullPath, userConfigPersistence]);
|
|
25759
25783
|
const hasEnumProperty = React.useMemo(() => {
|
|
25760
|
-
const
|
|
25761
|
-
return Object.values(
|
|
25784
|
+
const properties_0 = resolvedCollection.properties;
|
|
25785
|
+
return Object.values(properties_0).some((prop) => prop && prop.dataType === "string" && prop.enumValues);
|
|
25762
25786
|
}, [resolvedCollection.properties]);
|
|
25763
25787
|
const enabledViews = React.useMemo(() => {
|
|
25764
25788
|
const configured = collection.enabledViews ?? ["table", "cards", "kanban"];
|
|
@@ -25769,8 +25793,8 @@
|
|
|
25769
25793
|
}, [collection.enabledViews, hasEnumProperty]);
|
|
25770
25794
|
const kanbanPropertyOptions = React.useMemo(() => {
|
|
25771
25795
|
const options = [];
|
|
25772
|
-
const
|
|
25773
|
-
for (const [key_0, property_0] of Object.entries(
|
|
25796
|
+
const properties_1 = resolvedCollection.properties;
|
|
25797
|
+
for (const [key_0, property_0] of Object.entries(properties_1)) {
|
|
25774
25798
|
const prop_0 = property_0;
|
|
25775
25799
|
if (prop_0 && prop_0.dataType === "string" && prop_0.enumValues) {
|
|
25776
25800
|
options.push({
|
|
@@ -28073,7 +28097,14 @@
|
|
|
28073
28097
|
if (!collections_0) return void 0;
|
|
28074
28098
|
const baseCollection = getCollectionByPathOrId(removeInitialAndTrailingSlashes(idOrPath), collections_0);
|
|
28075
28099
|
const userOverride = includeUserOverride ? userConfigPersistence?.getCollectionConfig(idOrPath) : void 0;
|
|
28076
|
-
|
|
28100
|
+
let overriddenCollection = baseCollection;
|
|
28101
|
+
if (baseCollection && userOverride) {
|
|
28102
|
+
const {
|
|
28103
|
+
properties,
|
|
28104
|
+
...rest
|
|
28105
|
+
} = userOverride;
|
|
28106
|
+
overriddenCollection = mergeDeep(baseCollection, rest);
|
|
28107
|
+
}
|
|
28077
28108
|
let result = overriddenCollection;
|
|
28078
28109
|
if (overriddenCollection) {
|
|
28079
28110
|
const subcollections = overriddenCollection.subcollections;
|
|
@@ -30014,7 +30045,7 @@
|
|
|
30014
30045
|
replace: true,
|
|
30015
30046
|
state: {
|
|
30016
30047
|
base_location: baseLocation,
|
|
30017
|
-
panels: updatedPanels.map(_temp4$
|
|
30048
|
+
panels: updatedPanels.map(_temp4$2)
|
|
30018
30049
|
}
|
|
30019
30050
|
});
|
|
30020
30051
|
}
|
|
@@ -30112,7 +30143,7 @@
|
|
|
30112
30143
|
function _temp5$1(p_3) {
|
|
30113
30144
|
return p_3.key;
|
|
30114
30145
|
}
|
|
30115
|
-
function _temp4$
|
|
30146
|
+
function _temp4$2(p_2) {
|
|
30116
30147
|
return p_2.key;
|
|
30117
30148
|
}
|
|
30118
30149
|
function _temp3$2(p_1) {
|
|
@@ -32258,7 +32289,7 @@
|
|
|
32258
32289
|
const otherChildren = t3;
|
|
32259
32290
|
const includeDrawer = drawerChildren.length > 0;
|
|
32260
32291
|
const largeLayout = useLargeLayout();
|
|
32261
|
-
const [drawerOpen, setDrawerOpen] = React.useState(
|
|
32292
|
+
const [drawerOpen, setDrawerOpen] = React.useState(_temp4$1);
|
|
32262
32293
|
const [onHover, setOnHover] = React.useState(false);
|
|
32263
32294
|
let t4;
|
|
32264
32295
|
if ($[6] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
@@ -32280,6 +32311,10 @@
|
|
|
32280
32311
|
if ($[8] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
32281
32312
|
t6 = () => {
|
|
32282
32313
|
setDrawerOpen(true);
|
|
32314
|
+
try {
|
|
32315
|
+
localStorage.setItem("firecms_drawer_open", "true");
|
|
32316
|
+
} catch {
|
|
32317
|
+
}
|
|
32283
32318
|
};
|
|
32284
32319
|
$[8] = t6;
|
|
32285
32320
|
} else {
|
|
@@ -32290,6 +32325,10 @@
|
|
|
32290
32325
|
if ($[9] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
|
|
32291
32326
|
t7 = () => {
|
|
32292
32327
|
setDrawerOpen(false);
|
|
32328
|
+
try {
|
|
32329
|
+
localStorage.setItem("firecms_drawer_open", "false");
|
|
32330
|
+
} catch {
|
|
32331
|
+
}
|
|
32293
32332
|
};
|
|
32294
32333
|
$[9] = t7;
|
|
32295
32334
|
} else {
|
|
@@ -32642,6 +32681,13 @@
|
|
|
32642
32681
|
function _temp3$1(child_1) {
|
|
32643
32682
|
return child_1.type.componentType !== "Drawer" && child_1.type.componentType !== "AppBar";
|
|
32644
32683
|
}
|
|
32684
|
+
function _temp4$1() {
|
|
32685
|
+
try {
|
|
32686
|
+
return localStorage.getItem("firecms_drawer_open") === "true";
|
|
32687
|
+
} catch {
|
|
32688
|
+
return false;
|
|
32689
|
+
}
|
|
32690
|
+
}
|
|
32645
32691
|
const en = {
|
|
32646
32692
|
// ─── Form actions ────────────────────────────────────────────
|
|
32647
32693
|
save: "Save",
|
|
@@ -33117,10 +33163,18 @@
|
|
|
33117
33163
|
auto_setup_collections_button: "Automatically set up collections",
|
|
33118
33164
|
auto_setup_collections_title: "Automatically set up collections?",
|
|
33119
33165
|
auto_setup_collections_desc: "This will automatically create collection configs for collections that are <b>NOT</b> already mapped",
|
|
33120
|
-
|
|
33166
|
+
setting_up_collections: "Setting up collections",
|
|
33167
|
+
setting_up_collection: "Setting up {{name}}",
|
|
33121
33168
|
no_collections_found_to_setup: "No collections found to setup.",
|
|
33122
33169
|
collections_have_been_setup: "Collections have been automatically setup.",
|
|
33123
33170
|
error_setting_up_collections: "Error automatically setting up collections",
|
|
33171
|
+
setup_collections_title: "Set up collections",
|
|
33172
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
33173
|
+
select_all: "Select all",
|
|
33174
|
+
deselect_all: "Deselect all",
|
|
33175
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
33176
|
+
collection_setup_success: "{{name}} has been set up",
|
|
33177
|
+
go_to_collection: "Go to collection",
|
|
33124
33178
|
// --- Home Suggestions ---
|
|
33125
33179
|
add_your: "Add your",
|
|
33126
33180
|
database_collections: "database collections",
|
|
@@ -33788,10 +33842,18 @@
|
|
|
33788
33842
|
auto_setup_collections_button: "Configurar colecciones automáticamente",
|
|
33789
33843
|
auto_setup_collections_title: "¿Configurar colecciones automáticamente?",
|
|
33790
33844
|
auto_setup_collections_desc: "Esto creará automáticamente la configuración de las colecciones que <b>NO</b> estén mapeadas",
|
|
33791
|
-
|
|
33845
|
+
setting_up_collections: "Configurando colecciones",
|
|
33846
|
+
setting_up_collection: "Configurando {{name}}",
|
|
33792
33847
|
no_collections_found_to_setup: "No se encontraron colecciones para configurar",
|
|
33793
33848
|
collections_have_been_setup: "¡Tus colecciones han sido configuradas!",
|
|
33794
33849
|
error_setting_up_collections: "Error al configurar colecciones",
|
|
33850
|
+
setup_collections_title: "Set up collections",
|
|
33851
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
33852
|
+
select_all: "Select all",
|
|
33853
|
+
deselect_all: "Deselect all",
|
|
33854
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
33855
|
+
collection_setup_success: "{{name}} has been set up",
|
|
33856
|
+
go_to_collection: "Go to collection",
|
|
33795
33857
|
// --- Home Suggestions ---
|
|
33796
33858
|
add_your: "Añade tus",
|
|
33797
33859
|
database_collections: "colecciones de base de datos",
|
|
@@ -34459,10 +34521,18 @@
|
|
|
34459
34521
|
auto_setup_collections_button: "Sammlungen automatisch einrichten",
|
|
34460
34522
|
auto_setup_collections_title: "Sammlungen automatisch einrichten?",
|
|
34461
34523
|
auto_setup_collections_desc: "Dadurch werden automatisch Sammlungskonfigurationen für Sammlungen erstellt, die noch <b>NICHT</b> zugeordnet sind.",
|
|
34462
|
-
|
|
34524
|
+
setting_up_collections: "Sammlungen werden eingerichtet",
|
|
34525
|
+
setting_up_collection: "{{name}} wird eingerichtet",
|
|
34463
34526
|
no_collections_found_to_setup: "Keine einzurichtenden Sammlungen gefunden",
|
|
34464
34527
|
collections_have_been_setup: "Sammlungen wurden automatisch eingerichtet",
|
|
34465
34528
|
error_setting_up_collections: "Fehler beim automatischen Einrichten der Sammlungen",
|
|
34529
|
+
setup_collections_title: "Set up collections",
|
|
34530
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
34531
|
+
select_all: "Select all",
|
|
34532
|
+
deselect_all: "Deselect all",
|
|
34533
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
34534
|
+
collection_setup_success: "{{name}} has been set up",
|
|
34535
|
+
go_to_collection: "Go to collection",
|
|
34466
34536
|
add_your: "Fügen Sie Ihre",
|
|
34467
34537
|
database_collections: "Datenbanksammlungen",
|
|
34468
34538
|
to_firecms: "zu FireCMS hinzu",
|
|
@@ -35128,10 +35198,18 @@
|
|
|
35128
35198
|
auto_setup_collections_button: "Configurer les collections automatiquement",
|
|
35129
35199
|
auto_setup_collections_title: "Configurer les collections automatiquement ?",
|
|
35130
35200
|
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",
|
|
35131
|
-
|
|
35201
|
+
setting_up_collections: "Configuration des collections",
|
|
35202
|
+
setting_up_collection: "Configuration de {{name}}",
|
|
35132
35203
|
no_collections_found_to_setup: "Aucune collection à configurer trouvée",
|
|
35133
35204
|
collections_have_been_setup: "Les collections ont été configurées",
|
|
35134
35205
|
error_setting_up_collections: "Erreur lors de la configuration des collections",
|
|
35206
|
+
setup_collections_title: "Set up collections",
|
|
35207
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
35208
|
+
select_all: "Select all",
|
|
35209
|
+
deselect_all: "Deselect all",
|
|
35210
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
35211
|
+
collection_setup_success: "{{name}} has been set up",
|
|
35212
|
+
go_to_collection: "Go to collection",
|
|
35135
35213
|
add_your: "Ajoutez vos",
|
|
35136
35214
|
database_collections: "collections de base de données",
|
|
35137
35215
|
to_firecms: "à FireCMS",
|
|
@@ -35797,10 +35875,18 @@
|
|
|
35797
35875
|
auto_setup_collections_button: "Configura le collezioni automaticamente",
|
|
35798
35876
|
auto_setup_collections_title: "Configurazione automatica delle collezioni",
|
|
35799
35877
|
auto_setup_collections_desc: "Configura le collezioni automaticamente in base ai dati Firestore esistenti. Lascia che FireCMS configuri il CMS perfetto per te.",
|
|
35800
|
-
|
|
35878
|
+
setting_up_collections: "Configurazione delle collezioni",
|
|
35879
|
+
setting_up_collection: "Configurazione di {{name}}",
|
|
35801
35880
|
no_collections_found_to_setup: "Nessuna collezione trovata da configurare",
|
|
35802
35881
|
collections_have_been_setup: "Le collezioni sono state configurate",
|
|
35803
35882
|
error_setting_up_collections: "Errore durante la configurazione delle collezioni",
|
|
35883
|
+
setup_collections_title: "Set up collections",
|
|
35884
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
35885
|
+
select_all: "Select all",
|
|
35886
|
+
deselect_all: "Deselect all",
|
|
35887
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
35888
|
+
collection_setup_success: "{{name}} has been set up",
|
|
35889
|
+
go_to_collection: "Go to collection",
|
|
35804
35890
|
add_your: "Aggiungi le tue",
|
|
35805
35891
|
database_collections: "collezioni del database",
|
|
35806
35892
|
to_firecms: "a FireCMS",
|
|
@@ -36466,10 +36552,18 @@
|
|
|
36466
36552
|
auto_setup_collections_button: "संग्रहों को स्वचालित रूप से सेट करें",
|
|
36467
36553
|
auto_setup_collections_title: "संग्रहों की स्वचालित सेटअप",
|
|
36468
36554
|
auto_setup_collections_desc: "अपने मौजूदा Firestore डेटा के आधार पर संग्रहों को स्वचालित रूप से सेट करें। FireCMS को आपके लिए परफेक्ट CMS कॉन्फ़िगर करने दें।",
|
|
36469
|
-
|
|
36555
|
+
setting_up_collections: "संग्रह सेट किए जा रहे हैं",
|
|
36556
|
+
setting_up_collection: "{{name}} सेट किया जा रहा है",
|
|
36470
36557
|
no_collections_found_to_setup: "सेट करने के लिए कोई संग्रह नहीं मिला",
|
|
36471
36558
|
collections_have_been_setup: "संग्रहों को सेट कर दिया गया है",
|
|
36472
36559
|
error_setting_up_collections: "संग्रह सेट करने में त्रुटि",
|
|
36560
|
+
setup_collections_title: "Set up collections",
|
|
36561
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
36562
|
+
select_all: "Select all",
|
|
36563
|
+
deselect_all: "Deselect all",
|
|
36564
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
36565
|
+
collection_setup_success: "{{name}} has been set up",
|
|
36566
|
+
go_to_collection: "Go to collection",
|
|
36473
36567
|
add_your: "अपने",
|
|
36474
36568
|
database_collections: "डेटाबेस संग्रह",
|
|
36475
36569
|
to_firecms: "को FireCMS में जोड़ें",
|
|
@@ -37135,10 +37229,18 @@
|
|
|
37135
37229
|
auto_setup_collections_button: "Configurar coleções automaticamente",
|
|
37136
37230
|
auto_setup_collections_title: "Configurar coleções automaticamente?",
|
|
37137
37231
|
auto_setup_collections_desc: "Isto criará automaticamente configurações de coleção para coleções que <b>NÃO</b> estão já mapeadas",
|
|
37138
|
-
|
|
37232
|
+
setting_up_collections: "Configurando coleções",
|
|
37233
|
+
setting_up_collection: "Configurando {{name}}",
|
|
37139
37234
|
no_collections_found_to_setup: "Nenhuma coleção encontrada para configurar.",
|
|
37140
37235
|
collections_have_been_setup: "As coleções foram configuradas automaticamente.",
|
|
37141
37236
|
error_setting_up_collections: "Erro ao configurar coleções automaticamente",
|
|
37237
|
+
setup_collections_title: "Set up collections",
|
|
37238
|
+
setup_collections_select_desc: "Select which collections to automatically set up:",
|
|
37239
|
+
select_all: "Select all",
|
|
37240
|
+
deselect_all: "Deselect all",
|
|
37241
|
+
setup_collections_confirm: "Set up ({{count}})",
|
|
37242
|
+
collection_setup_success: "{{name}} has been set up",
|
|
37243
|
+
go_to_collection: "Go to collection",
|
|
37142
37244
|
// --- Home Suggestions ---
|
|
37143
37245
|
add_your: "Adicione as suas",
|
|
37144
37246
|
database_collections: "coleções da base de dados",
|