@firecms/collection_editor 3.1.0 → 3.2.0-canary.44dc65b
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 +6887 -3709
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6885 -3707
- package/dist/index.umd.js.map +1 -1
- package/dist/locales/de.d.ts +118 -0
- package/dist/locales/en.d.ts +118 -0
- package/dist/locales/es.d.ts +118 -0
- package/dist/locales/fr.d.ts +118 -0
- package/dist/locales/hi.d.ts +118 -0
- package/dist/locales/it.d.ts +118 -0
- package/dist/locales/pt.d.ts +118 -0
- package/package.json +8 -8
- package/src/locales/de.ts +123 -0
- package/src/locales/en.ts +143 -0
- package/src/locales/es.ts +123 -0
- package/src/locales/fr.ts +123 -0
- package/src/locales/hi.ts +123 -0
- package/src/locales/it.ts +123 -0
- package/src/locales/pt.ts +123 -0
- package/src/ui/EditorCollectionAction.tsx +3 -3
- package/src/ui/EditorEntityAction.tsx +3 -2
- package/src/ui/NewCollectionButton.tsx +3 -1
- package/src/ui/NewCollectionCard.tsx +7 -4
- package/src/ui/PropertyAddColumnComponent.tsx +3 -2
- package/src/ui/collection_editor/AICollectionGeneratorPopover.tsx +11 -10
- package/src/ui/collection_editor/CollectionDetailsForm.tsx +26 -24
- package/src/ui/collection_editor/CollectionEditorDialog.tsx +42 -38
- package/src/ui/collection_editor/CollectionEditorWelcomeView.tsx +19 -18
- package/src/ui/collection_editor/CollectionPropertiesEditorForm.tsx +12 -10
- package/src/ui/collection_editor/DisplaySettingsForm.tsx +19 -17
- package/src/ui/collection_editor/EntityActionsEditTab.tsx +11 -12
- package/src/ui/collection_editor/EntityActionsSelectDialog.tsx +5 -6
- package/src/ui/collection_editor/EntityCustomViewsSelectDialog.tsx +5 -5
- package/src/ui/collection_editor/EnumForm.tsx +6 -2
- package/src/ui/collection_editor/ExtendSettingsForm.tsx +8 -7
- package/src/ui/collection_editor/GeneralSettingsForm.tsx +36 -38
- package/src/ui/collection_editor/GetCodeDialog.tsx +13 -12
- package/src/ui/collection_editor/KanbanConfigSection.tsx +11 -9
- package/src/ui/collection_editor/LayoutModeSwitch.tsx +7 -4
- package/src/ui/collection_editor/PropertyEditView.tsx +74 -65
- package/src/ui/collection_editor/SubcollectionsEditTab.tsx +16 -19
- package/src/ui/collection_editor/ViewModeSwitch.tsx +8 -6
- package/src/ui/collection_editor/import/CollectionEditorImportDataPreview.tsx +6 -3
- package/src/ui/collection_editor/import/CollectionEditorImportMapping.tsx +5 -2
- package/src/ui/collection_editor/properties/BooleanPropertyField.tsx +3 -1
- package/src/ui/collection_editor/properties/CommonPropertyFields.tsx +6 -4
- package/src/ui/collection_editor/properties/DateTimePropertyField.tsx +20 -18
- package/src/ui/collection_editor/properties/EnumPropertyField.tsx +5 -4
- package/src/ui/collection_editor/properties/MapPropertyField.tsx +8 -7
- package/src/ui/collection_editor/properties/MarkdownPropertyField.tsx +22 -23
- package/src/ui/collection_editor/properties/NumberPropertyField.tsx +3 -1
- package/src/ui/collection_editor/properties/ReferencePropertyField.tsx +5 -4
- package/src/ui/collection_editor/properties/StoragePropertyField.tsx +46 -51
- package/src/ui/collection_editor/properties/StringPropertyField.tsx +3 -1
- package/src/ui/collection_editor/properties/UrlPropertyField.tsx +12 -10
- package/src/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.tsx +7 -4
- package/src/ui/collection_editor/properties/conditions/ConditionsEditor.tsx +8 -3
- package/src/ui/collection_editor/properties/validation/ArrayPropertyValidation.tsx +5 -2
- package/src/ui/collection_editor/properties/validation/GeneralPropertyValidation.tsx +7 -5
- package/src/ui/collection_editor/properties/validation/NumberPropertyValidation.tsx +10 -7
- package/src/ui/collection_editor/properties/validation/StringPropertyValidation.tsx +11 -9
- package/src/ui/collection_editor/properties/validation/ValidationPanel.tsx +4 -1
- package/src/useCollectionEditorPlugin.tsx +22 -6
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
export declare const collectionEditorTranslationsPt: {
|
|
2
|
+
file_upload_config: string;
|
|
3
|
+
file_type_images: string;
|
|
4
|
+
file_type_videos: string;
|
|
5
|
+
file_type_audio: string;
|
|
6
|
+
file_type_applications: string;
|
|
7
|
+
file_type_text: string;
|
|
8
|
+
only: string;
|
|
9
|
+
all_file_types_allowed: string;
|
|
10
|
+
allowed_file_types: string;
|
|
11
|
+
file_name_label: string;
|
|
12
|
+
storage_path_label: string;
|
|
13
|
+
storage_placeholders_description: string;
|
|
14
|
+
storage_placeholder_file: string;
|
|
15
|
+
storage_placeholder_file_name: string;
|
|
16
|
+
storage_placeholder_file_ext: string;
|
|
17
|
+
storage_placeholder_entity_id: string;
|
|
18
|
+
storage_placeholder_property_key: string;
|
|
19
|
+
storage_placeholder_path: string;
|
|
20
|
+
storage_placeholder_rand: string;
|
|
21
|
+
include_bucket_url: string;
|
|
22
|
+
include_bucket_url_description: string;
|
|
23
|
+
save_url_instead_of_path: string;
|
|
24
|
+
save_url_description: string;
|
|
25
|
+
max_size_bytes: string;
|
|
26
|
+
image_resize_configuration: string;
|
|
27
|
+
image_resize_description: string;
|
|
28
|
+
max_width_px: string;
|
|
29
|
+
max_height_px: string;
|
|
30
|
+
resize_mode: string;
|
|
31
|
+
resize_contain: string;
|
|
32
|
+
resize_contain_description: string;
|
|
33
|
+
resize_cover: string;
|
|
34
|
+
resize_cover_description: string;
|
|
35
|
+
output_format: string;
|
|
36
|
+
format_original: string;
|
|
37
|
+
format_original_description: string;
|
|
38
|
+
format_webp_description: string;
|
|
39
|
+
quality_label: string;
|
|
40
|
+
quality_hint: string;
|
|
41
|
+
preview_type: string;
|
|
42
|
+
preview_image: string;
|
|
43
|
+
preview_video: string;
|
|
44
|
+
preview_audio: string;
|
|
45
|
+
display_url: string;
|
|
46
|
+
default_value_not_set: string;
|
|
47
|
+
default_value_is: string;
|
|
48
|
+
default_value_was_cleared: string;
|
|
49
|
+
enum_missing_values: string;
|
|
50
|
+
mode_label: string;
|
|
51
|
+
date_time_mode: string;
|
|
52
|
+
date_mode: string;
|
|
53
|
+
automatic_value: string;
|
|
54
|
+
auto_on_create: string;
|
|
55
|
+
auto_on_update: string;
|
|
56
|
+
auto_none: string;
|
|
57
|
+
auto_value_description: string;
|
|
58
|
+
timezone_label: string;
|
|
59
|
+
local_timezone: string;
|
|
60
|
+
timezone_description: string;
|
|
61
|
+
target_collection: string;
|
|
62
|
+
views_group: string;
|
|
63
|
+
add_property_to: string;
|
|
64
|
+
add_first_property_to_group: string;
|
|
65
|
+
spread_children_as_columns: string;
|
|
66
|
+
spread_children_description: string;
|
|
67
|
+
paste_behavior: string;
|
|
68
|
+
strip_html_on_paste: string;
|
|
69
|
+
strip_html_description: string;
|
|
70
|
+
convert_pasted_to_markdown: string;
|
|
71
|
+
convert_pasted_description: string;
|
|
72
|
+
markdown_url_note: string;
|
|
73
|
+
hide_from_collection: string;
|
|
74
|
+
hide_from_collection_tooltip: string;
|
|
75
|
+
read_only: string;
|
|
76
|
+
read_only_tooltip: string;
|
|
77
|
+
tab_general: string;
|
|
78
|
+
tab_display: string;
|
|
79
|
+
tab_properties: string;
|
|
80
|
+
tab_extend: string;
|
|
81
|
+
unsaved_changes_in_collection: string;
|
|
82
|
+
error_persisting_collection: string;
|
|
83
|
+
details_in_console: string;
|
|
84
|
+
error_inferring_collection: string;
|
|
85
|
+
collection_deleted: string;
|
|
86
|
+
data_imported_successfully_msg: string;
|
|
87
|
+
must_specify_path: string;
|
|
88
|
+
collection_path_already_exists: string;
|
|
89
|
+
collection_path_odd_segments: string;
|
|
90
|
+
collection_uses_path_as_id: string;
|
|
91
|
+
collection_uses_this_id: string;
|
|
92
|
+
delete_stored_config: string;
|
|
93
|
+
delete_stored_config_body: string;
|
|
94
|
+
order_label: string;
|
|
95
|
+
select_property_to_edit: string;
|
|
96
|
+
add_first_property: string;
|
|
97
|
+
add_new_property: string;
|
|
98
|
+
no_permission_add_properties: string;
|
|
99
|
+
get_code_for_collection: string;
|
|
100
|
+
add_properties_from_data: string;
|
|
101
|
+
collection_name_placeholder: string;
|
|
102
|
+
created_by: string;
|
|
103
|
+
property_defined_as_builder: string;
|
|
104
|
+
extend_title: string;
|
|
105
|
+
extend_description: string;
|
|
106
|
+
collection_defined_in_code: string;
|
|
107
|
+
reset_to_code: string;
|
|
108
|
+
widget_group_text: string;
|
|
109
|
+
widget_group_boolean: string;
|
|
110
|
+
widget_group_users: string;
|
|
111
|
+
widget_group_select: string;
|
|
112
|
+
widget_group_number: string;
|
|
113
|
+
widget_group_file: string;
|
|
114
|
+
widget_group_reference: string;
|
|
115
|
+
widget_group_date: string;
|
|
116
|
+
widget_group_group: string;
|
|
117
|
+
widget_group_array: string;
|
|
118
|
+
};
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/collection_editor",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.2.0-canary.44dc65b",
|
|
5
5
|
"main": "./dist/index.umd.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"source": "src/index.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@firecms/data_export": "
|
|
11
|
-
"@firecms/data_import": "
|
|
12
|
-
"@firecms/data_import_export": "
|
|
13
|
-
"@firecms/formex": "
|
|
14
|
-
"@firecms/schema_inference": "
|
|
15
|
-
"@firecms/ui": "
|
|
10
|
+
"@firecms/data_export": "3.2.0-canary.44dc65b",
|
|
11
|
+
"@firecms/data_import": "3.2.0-canary.44dc65b",
|
|
12
|
+
"@firecms/data_import_export": "3.2.0-canary.44dc65b",
|
|
13
|
+
"@firecms/formex": "3.2.0-canary.44dc65b",
|
|
14
|
+
"@firecms/schema_inference": "3.2.0-canary.44dc65b",
|
|
15
|
+
"@firecms/ui": "3.2.0-canary.44dc65b",
|
|
16
16
|
"json5": "^2.2.3",
|
|
17
17
|
"prism-react-renderer": "^2.4.1"
|
|
18
18
|
},
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "af4cd57871ac430b4ffac0295c40b9cd3cee24ff"
|
|
73
73
|
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
export const collectionEditorTranslationsDe = {
|
|
2
|
+
file_upload_config: "Dateiupload-Konfiguration",
|
|
3
|
+
file_type_images: "Bilder",
|
|
4
|
+
file_type_videos: "Videos",
|
|
5
|
+
file_type_audio: "Audiodateien",
|
|
6
|
+
file_type_applications: "Dateien (pdf, zip, csv, excel...)",
|
|
7
|
+
file_type_text: "Textdateien",
|
|
8
|
+
only: "Nur",
|
|
9
|
+
all_file_types_allowed: "Alle Dateitypen erlaubt",
|
|
10
|
+
allowed_file_types: "Erlaubte Dateitypen",
|
|
11
|
+
file_name_label: "Dateiname",
|
|
12
|
+
storage_path_label: "Speicherpfad",
|
|
13
|
+
storage_placeholders_description: "Sie können die folgenden Platzhalter in den Werten für Dateiname und Speicherpfad verwenden:",
|
|
14
|
+
storage_placeholder_file: "{file} - Vollständiger Name der hochgeladenen Datei",
|
|
15
|
+
storage_placeholder_file_name: "{file.name} - Name der hochgeladenen Datei ohne Erweiterung",
|
|
16
|
+
storage_placeholder_file_ext: "{file.ext} - Erweiterung der hochgeladenen Datei",
|
|
17
|
+
storage_placeholder_entity_id: "{entityId} - ID der Entität",
|
|
18
|
+
storage_placeholder_property_key: "{propertyKey} - ID dieses Feldes",
|
|
19
|
+
storage_placeholder_path: "{path} - Pfad dieser Entität",
|
|
20
|
+
storage_placeholder_rand: "{rand} - Zufallswert zur Vermeidung von Namenskollisionen",
|
|
21
|
+
include_bucket_url: "Bucket-URL (gs://...) im gespeicherten Wert einschließen",
|
|
22
|
+
include_bucket_url_description: "Aktivieren Sie diese Einstellung, wenn Sie eine vollqualifizierte Speicher-URL (z. B. gs://mein-bucket/pfad/zur/datei) statt nur des Speicherpfads speichern möchten. Diese Einstellung kann nur bei der Erstellung geändert werden.",
|
|
23
|
+
save_url_instead_of_path: "URL statt Speicherpfad speichern",
|
|
24
|
+
save_url_description: "Aktivieren Sie diese Einstellung, wenn Sie bevorzugen, die Download-URL der hochgeladenen Datei statt des Speicherpfads zu speichern. Diese Einstellung kann nur bei der Erstellung geändert werden.",
|
|
25
|
+
max_size_bytes: "Maximale Größe (in Bytes)",
|
|
26
|
+
image_resize_configuration: "Bildgrößenanpassungs-Konfiguration",
|
|
27
|
+
image_resize_description: "Bilder vor dem Hochladen automatisch anpassen und optimieren (nur JPEG, PNG, WebP)",
|
|
28
|
+
max_width_px: "Maximale Breite (px)",
|
|
29
|
+
max_height_px: "Maximale Höhe (px)",
|
|
30
|
+
resize_mode: "Anpassungsmodus",
|
|
31
|
+
resize_contain: "Einpassen",
|
|
32
|
+
resize_contain_description: "Einpassen (innerhalb der Grenzen)",
|
|
33
|
+
resize_cover: "Abdecken",
|
|
34
|
+
resize_cover_description: "Abdecken (Grenzen füllen, kann zuschneiden)",
|
|
35
|
+
output_format: "Ausgabeformat",
|
|
36
|
+
format_original: "Original",
|
|
37
|
+
format_original_description: "Original (gleiches Format beibehalten)",
|
|
38
|
+
format_webp_description: "WebP (beste Komprimierung)",
|
|
39
|
+
quality_label: "Qualität (0–100)",
|
|
40
|
+
quality_hint: "Höhere Qualität = größere Datei. Empfohlen: 80–90 für Fotos, 90–100 für Grafiken",
|
|
41
|
+
preview_type: "Vorschautyp",
|
|
42
|
+
preview_image: "Bild",
|
|
43
|
+
preview_video: "Video",
|
|
44
|
+
preview_audio: "Audio",
|
|
45
|
+
display_url: "URL anzeigen",
|
|
46
|
+
default_value_not_set: "Standardwert nicht gesetzt",
|
|
47
|
+
default_value_is: "Standardwert ist {{value}}",
|
|
48
|
+
default_value_was_cleared: "Standardwert wurde gelöscht",
|
|
49
|
+
enum_missing_values: "Dieser Enum-Eigenschaft fehlen einige Werte",
|
|
50
|
+
mode_label: "Modus",
|
|
51
|
+
date_time_mode: "Datum/Uhrzeit",
|
|
52
|
+
date_mode: "Datum",
|
|
53
|
+
automatic_value: "Automatischer Wert",
|
|
54
|
+
auto_on_create: "Bei Erstellung",
|
|
55
|
+
auto_on_update: "Bei jeder Aktualisierung",
|
|
56
|
+
auto_none: "Keiner",
|
|
57
|
+
auto_value_description: "Dieses Feld automatisch beim Erstellen oder Aktualisieren der Entität aktualisieren",
|
|
58
|
+
timezone_label: "Zeitzone",
|
|
59
|
+
local_timezone: "Lokale Zeitzone",
|
|
60
|
+
timezone_description: "Zeitzone für die Anzeige und Eingabe von Daten. Werte werden immer in UTC gespeichert.",
|
|
61
|
+
target_collection: "Zielsammlung",
|
|
62
|
+
views_group: "Ansichten",
|
|
63
|
+
add_property_to: "Eigenschaft zu {{name}} hinzufügen",
|
|
64
|
+
add_first_property_to_group: "Erste Eigenschaft zu dieser Gruppe hinzufügen",
|
|
65
|
+
spread_children_as_columns: "Kinder als Spalten verteilen",
|
|
66
|
+
spread_children_description: "Setzen Sie dieses Flag auf true, wenn Sie die Kinder dieser Gruppe als einzelne Spalten anzeigen möchten. Dies funktioniert nur für Gruppen auf der obersten Ebene.",
|
|
67
|
+
paste_behavior: "Einfügeverhalten",
|
|
68
|
+
strip_html_on_paste: "HTML beim Einfügen entfernen",
|
|
69
|
+
strip_html_description: "HTML-Tags und Inline-Stile beim Einfügen von Inhalten aus externen Quellen entfernen",
|
|
70
|
+
convert_pasted_to_markdown: "Eingefügten Text in Markdown konvertieren",
|
|
71
|
+
convert_pasted_description: "Rich Text (von Google Docs, Word usw.) in sauberes Markdown-Format konvertieren",
|
|
72
|
+
markdown_url_note: "Bei Verwendung von Markdown werden die URLs der hochgeladenen Dateien immer im Textwert gespeichert (nicht der Pfad).",
|
|
73
|
+
hide_from_collection: "Aus Sammlung ausblenden",
|
|
74
|
+
hide_from_collection_tooltip: "Dieses Feld aus der Sammlungsansicht ausblenden. Es wird weiterhin in der Formularansicht sichtbar sein",
|
|
75
|
+
read_only: "Nur lesen",
|
|
76
|
+
read_only_tooltip: "Ist dieses Feld schreibgeschützt. Nur als Vorschau anzeigen",
|
|
77
|
+
tab_general: "Allgemein",
|
|
78
|
+
tab_display: "Anzeige",
|
|
79
|
+
tab_properties: "Eigenschaften",
|
|
80
|
+
tab_extend: "Erweitern",
|
|
81
|
+
unsaved_changes_in_collection: "Es gibt ungespeicherte Änderungen in dieser Sammlung",
|
|
82
|
+
error_persisting_collection: "Fehler beim Speichern der Sammlung: {{error}}",
|
|
83
|
+
details_in_console: "Details in der Konsole",
|
|
84
|
+
error_inferring_collection: "Fehler beim Ableiten der Sammlung: {{error}}",
|
|
85
|
+
collection_deleted: "Sammlung gelöscht",
|
|
86
|
+
data_imported_successfully_msg: "Daten erfolgreich importiert",
|
|
87
|
+
must_specify_path: "Sie müssen einen Pfad in der Datenbank für diese Sammlung angeben",
|
|
88
|
+
collection_path_already_exists: "Es gibt bereits eine Sammlung mit dem angegebenen Pfad. Wenn Sie mehrere Sammlungen mit demselben Datenbankpfad haben möchten, stellen Sie sicher, dass sie unterschiedliche IDs haben",
|
|
89
|
+
collection_path_odd_segments: "Sammlungspfade müssen eine ungerade Anzahl von Segmenten haben: {{path}}",
|
|
90
|
+
collection_uses_path_as_id: "Es gibt bereits eine Sammlung, die diesen Wert als Pfad verwendet",
|
|
91
|
+
collection_uses_this_id: "Es gibt bereits eine Sammlung, die diese ID verwendet",
|
|
92
|
+
delete_stored_config: "Gespeicherte Konfiguration löschen?",
|
|
93
|
+
delete_stored_config_body: "Dadurch werden keine Daten gelöscht, nur die gespeicherte Konfiguration, und der Code-Zustand wird wiederhergestellt.",
|
|
94
|
+
order_label: "Reihenfolge",
|
|
95
|
+
|
|
96
|
+
// Collection Properties Editor
|
|
97
|
+
select_property_to_edit: "Wähle eine Eigenschaft aus, um sie zu bearbeiten",
|
|
98
|
+
add_first_property: "Jetzt kannst du deine erste Eigenschaft hinzufügen",
|
|
99
|
+
add_new_property: "Neue Eigenschaft hinzufügen",
|
|
100
|
+
no_permission_add_properties: "Du hast keine Berechtigung, neue Eigenschaften hinzuzufügen",
|
|
101
|
+
get_code_for_collection: "Code für diese Sammlung abrufen",
|
|
102
|
+
add_properties_from_data: "Neue Eigenschaften basierend auf Daten hinzufügen",
|
|
103
|
+
collection_name_placeholder: "Sammlungsname",
|
|
104
|
+
created_by: "Erstellt von {{name}}",
|
|
105
|
+
property_defined_as_builder: "Diese Eigenschaft ist als Property Builder im Code definiert",
|
|
106
|
+
|
|
107
|
+
// Extend Settings
|
|
108
|
+
extend_title: "Erweitern",
|
|
109
|
+
extend_description: "Füge Untersammlungen, benutzerdefinierte Ansichten und Entitätsaktionen zu dieser Sammlung hinzu.",
|
|
110
|
+
collection_defined_in_code: "Diese Sammlung ist im Code definiert. Die in diesem Editor vorgenommenen Änderungen überschreiben die im Code definierten Eigenschaften. Du kannst die überschriebenen Werte löschen, um zum im Code definierten Zustand zurückzukehren.",
|
|
111
|
+
reset_to_code: "Auf Code zurücksetzen",
|
|
112
|
+
|
|
113
|
+
widget_group_text: "Text",
|
|
114
|
+
widget_group_boolean: "Boolean",
|
|
115
|
+
widget_group_users: "Benutzer",
|
|
116
|
+
widget_group_select: "Auswahl",
|
|
117
|
+
widget_group_number: "Zahl",
|
|
118
|
+
widget_group_file: "Datei",
|
|
119
|
+
widget_group_reference: "Referenz",
|
|
120
|
+
widget_group_date: "Datum",
|
|
121
|
+
widget_group_group: "Gruppe",
|
|
122
|
+
widget_group_array: "Array"
|
|
123
|
+
};
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
export const collectionEditorTranslationsEn = {
|
|
2
|
+
// Storage & File Upload
|
|
3
|
+
file_upload_config: "File upload config",
|
|
4
|
+
file_type_images: "Images",
|
|
5
|
+
file_type_videos: "Videos",
|
|
6
|
+
file_type_audio: "Audio files",
|
|
7
|
+
file_type_applications: "Files (pdf, zip, csv, excel...)",
|
|
8
|
+
file_type_text: "Text files",
|
|
9
|
+
only: "Only",
|
|
10
|
+
all_file_types_allowed: "All file types allowed",
|
|
11
|
+
allowed_file_types: "Allowed file types",
|
|
12
|
+
file_name_label: "File name",
|
|
13
|
+
storage_path_label: "Storage path",
|
|
14
|
+
storage_placeholders_description: "You can use the following placeholders in the file name and storage path values:",
|
|
15
|
+
storage_placeholder_file: "{file} - Full name of the uploaded file",
|
|
16
|
+
storage_placeholder_file_name: "{file.name} - Name of the uploaded file without extension",
|
|
17
|
+
storage_placeholder_file_ext: "{file.ext} - Extension of the uploaded file",
|
|
18
|
+
storage_placeholder_entity_id: "{entityId} - ID of the entity",
|
|
19
|
+
storage_placeholder_property_key: "{propertyKey} - ID of this field",
|
|
20
|
+
storage_placeholder_path: "{path} - Path of this entity",
|
|
21
|
+
storage_placeholder_rand: "{rand} - Random value used to avoid name collisions",
|
|
22
|
+
include_bucket_url: "Include bucket URL (gs://...) in saved value",
|
|
23
|
+
include_bucket_url_description: "Turn this setting on if you want to save a fully-qualified storage URL (e.g. gs://my-bucket/path/to/file) instead of just the storage path. You can only change this prop upon creation.",
|
|
24
|
+
save_url_instead_of_path: "Save URL instead of storage path",
|
|
25
|
+
save_url_description: "Turn this setting on, if you prefer to save the download URL of the uploaded file instead of the storage path. You can only change this prop upon creation.",
|
|
26
|
+
max_size_bytes: "Max size (in bytes)",
|
|
27
|
+
image_resize_configuration: "Image Resize Configuration",
|
|
28
|
+
image_resize_description: "Automatically resize and optimize images before upload (JPEG, PNG, WebP only)",
|
|
29
|
+
max_width_px: "Max width (px)",
|
|
30
|
+
max_height_px: "Max height (px)",
|
|
31
|
+
resize_mode: "Resize mode",
|
|
32
|
+
resize_contain: "Contain",
|
|
33
|
+
resize_contain_description: "Contain (fit within bounds)",
|
|
34
|
+
resize_cover: "Cover",
|
|
35
|
+
resize_cover_description: "Cover (fill bounds, may crop)",
|
|
36
|
+
output_format: "Output format",
|
|
37
|
+
format_original: "Original",
|
|
38
|
+
format_original_description: "Original (keep same format)",
|
|
39
|
+
format_webp_description: "WebP (best compression)",
|
|
40
|
+
quality_label: "Quality (0-100)",
|
|
41
|
+
quality_hint: "Higher quality = larger file size. Recommended: 80-90 for photos, 90-100 for graphics",
|
|
42
|
+
|
|
43
|
+
// URL Property
|
|
44
|
+
preview_type: "Preview type",
|
|
45
|
+
preview_image: "Image",
|
|
46
|
+
preview_video: "Video",
|
|
47
|
+
preview_audio: "Audio",
|
|
48
|
+
display_url: "Display URL",
|
|
49
|
+
|
|
50
|
+
// Boolean Property
|
|
51
|
+
default_value_not_set: "Default value not set",
|
|
52
|
+
default_value_is: "Default value is {{value}}",
|
|
53
|
+
|
|
54
|
+
// Enum Property
|
|
55
|
+
default_value_was_cleared: "Default value was cleared",
|
|
56
|
+
enum_missing_values: "This enum property is missing some values",
|
|
57
|
+
|
|
58
|
+
// DateTime Property
|
|
59
|
+
mode_label: "Mode",
|
|
60
|
+
date_time_mode: "Date/Time",
|
|
61
|
+
date_mode: "Date",
|
|
62
|
+
automatic_value: "Automatic value",
|
|
63
|
+
auto_on_create: "On create",
|
|
64
|
+
auto_on_update: "On any update",
|
|
65
|
+
auto_none: "None",
|
|
66
|
+
auto_value_description: "Update this field automatically when creating or updating the entity",
|
|
67
|
+
timezone_label: "Timezone",
|
|
68
|
+
local_timezone: "Local timezone",
|
|
69
|
+
timezone_description: "Timezone for displaying and inputting dates. Values are always stored in UTC.",
|
|
70
|
+
|
|
71
|
+
// Reference Property
|
|
72
|
+
target_collection: "Target collection",
|
|
73
|
+
views_group: "Views",
|
|
74
|
+
|
|
75
|
+
// Map Property
|
|
76
|
+
add_property_to: "Add property to {{name}}",
|
|
77
|
+
add_first_property_to_group: "Add the first property to this group",
|
|
78
|
+
spread_children_as_columns: "Spread children as columns",
|
|
79
|
+
spread_children_description: "Set this flag to true if you want to display the children of this group as individual columns. This will only work for top level groups.",
|
|
80
|
+
|
|
81
|
+
// Markdown Property
|
|
82
|
+
paste_behavior: "Paste behavior",
|
|
83
|
+
strip_html_on_paste: "Strip HTML on paste",
|
|
84
|
+
strip_html_description: "Remove HTML tags and inline styles when pasting content from external sources",
|
|
85
|
+
convert_pasted_to_markdown: "Convert pasted text to markdown",
|
|
86
|
+
convert_pasted_description: "Convert rich text (from Google Docs, Word, etc.) to clean markdown format",
|
|
87
|
+
markdown_url_note: "When using Markdown, the URL of the uploaded files are always saved in the text value (not the path).",
|
|
88
|
+
|
|
89
|
+
// Advanced Property
|
|
90
|
+
hide_from_collection: "Hide from collection",
|
|
91
|
+
hide_from_collection_tooltip: "Hide this field from the collection view. It will still be visible in the form view",
|
|
92
|
+
read_only: "Read only",
|
|
93
|
+
read_only_tooltip: "Is this a read only field. Display only as a preview",
|
|
94
|
+
|
|
95
|
+
// Dialog & Tabs
|
|
96
|
+
tab_general: "General",
|
|
97
|
+
tab_display: "Display",
|
|
98
|
+
tab_properties: "Properties",
|
|
99
|
+
tab_extend: "Extend",
|
|
100
|
+
unsaved_changes_in_collection: "There are unsaved changes in this collection",
|
|
101
|
+
error_persisting_collection: "Error persisting collection: {{error}}",
|
|
102
|
+
details_in_console: "Details in the console",
|
|
103
|
+
error_inferring_collection: "Error inferring collection: {{error}}",
|
|
104
|
+
collection_deleted: "Collection deleted",
|
|
105
|
+
data_imported_successfully_msg: "Data imported successfully",
|
|
106
|
+
must_specify_path: "You must specify a path in the database for this collection",
|
|
107
|
+
collection_path_already_exists: "There is already a collection with the specified path. If you want to have multiple collections referring to the same database path, make sure they have different ids",
|
|
108
|
+
collection_path_odd_segments: "Collection paths must have an odd number of segments: {{path}}",
|
|
109
|
+
collection_uses_path_as_id: "There is already a collection that uses this value as a path",
|
|
110
|
+
collection_uses_this_id: "There is already a collection which uses this id",
|
|
111
|
+
delete_stored_config: "Delete the stored config?",
|
|
112
|
+
delete_stored_config_body: "This will not delete any data, only the stored config, and reset to the code state.",
|
|
113
|
+
order_label: "Order",
|
|
114
|
+
|
|
115
|
+
// Collection Properties Editor
|
|
116
|
+
select_property_to_edit: "Select a property to edit it",
|
|
117
|
+
add_first_property: "Now you can add your first property",
|
|
118
|
+
add_new_property: "Add new property",
|
|
119
|
+
no_permission_add_properties: "You don't have permission to add new properties",
|
|
120
|
+
get_code_for_collection: "Get the code for this collection",
|
|
121
|
+
add_properties_from_data: "Add new properties based on data",
|
|
122
|
+
collection_name_placeholder: "Collection name",
|
|
123
|
+
created_by: "Created by {{name}}",
|
|
124
|
+
property_defined_as_builder: "This property is defined as a property builder in code",
|
|
125
|
+
|
|
126
|
+
// Extend Settings
|
|
127
|
+
extend_title: "Extend",
|
|
128
|
+
extend_description: "Add subcollections, custom views, and entity actions to this collection.",
|
|
129
|
+
collection_defined_in_code: "This collection is defined in code. The changes done in this editor will override the properties defined in code. You can delete the overridden values to revert to the state defined in code.",
|
|
130
|
+
reset_to_code: "Reset to code",
|
|
131
|
+
|
|
132
|
+
// Widget Type Groups
|
|
133
|
+
widget_group_text: "Text",
|
|
134
|
+
widget_group_boolean: "Boolean",
|
|
135
|
+
widget_group_users: "Users",
|
|
136
|
+
widget_group_select: "Select",
|
|
137
|
+
widget_group_number: "Number",
|
|
138
|
+
widget_group_file: "File",
|
|
139
|
+
widget_group_reference: "Reference",
|
|
140
|
+
widget_group_date: "Date",
|
|
141
|
+
widget_group_group: "Group",
|
|
142
|
+
widget_group_array: "Array"
|
|
143
|
+
};
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
export const collectionEditorTranslationsEs = {
|
|
2
|
+
file_upload_config: "Configuración de subida de archivos",
|
|
3
|
+
file_type_images: "Imágenes",
|
|
4
|
+
file_type_videos: "Videos",
|
|
5
|
+
file_type_audio: "Archivos de audio",
|
|
6
|
+
file_type_applications: "Archivos (pdf, zip, csv, excel...)",
|
|
7
|
+
file_type_text: "Archivos de texto",
|
|
8
|
+
only: "Solo",
|
|
9
|
+
all_file_types_allowed: "Todos los tipos de archivo permitidos",
|
|
10
|
+
allowed_file_types: "Tipos de archivo permitidos",
|
|
11
|
+
file_name_label: "Nombre del archivo",
|
|
12
|
+
storage_path_label: "Ruta de almacenamiento",
|
|
13
|
+
storage_placeholders_description: "Puedes usar los siguientes marcadores en los valores del nombre de archivo y la ruta de almacenamiento:",
|
|
14
|
+
storage_placeholder_file: "{file} - Nombre completo del archivo subido",
|
|
15
|
+
storage_placeholder_file_name: "{file.name} - Nombre del archivo subido sin extensión",
|
|
16
|
+
storage_placeholder_file_ext: "{file.ext} - Extensión del archivo subido",
|
|
17
|
+
storage_placeholder_entity_id: "{entityId} - ID de la entidad",
|
|
18
|
+
storage_placeholder_property_key: "{propertyKey} - ID de este campo",
|
|
19
|
+
storage_placeholder_path: "{path} - Ruta de esta entidad",
|
|
20
|
+
storage_placeholder_rand: "{rand} - Valor aleatorio para evitar colisiones de nombres",
|
|
21
|
+
include_bucket_url: "Incluir URL del bucket (gs://...) en el valor guardado",
|
|
22
|
+
include_bucket_url_description: "Activa esta opción si deseas guardar una URL de almacenamiento completa (ej. gs://mi-bucket/ruta/al/archivo) en lugar de solo la ruta de almacenamiento. Solo puedes cambiar esta opción al crear.",
|
|
23
|
+
save_url_instead_of_path: "Guardar URL en lugar de ruta de almacenamiento",
|
|
24
|
+
save_url_description: "Activa esta opción si prefieres guardar la URL de descarga del archivo subido en lugar de la ruta de almacenamiento. Solo puedes cambiar esta opción al crear.",
|
|
25
|
+
max_size_bytes: "Tamaño máximo (en bytes)",
|
|
26
|
+
image_resize_configuration: "Configuración de redimensionamiento de imagen",
|
|
27
|
+
image_resize_description: "Redimensionar y optimizar imágenes automáticamente antes de subirlas (solo JPEG, PNG, WebP)",
|
|
28
|
+
max_width_px: "Ancho máximo (px)",
|
|
29
|
+
max_height_px: "Alto máximo (px)",
|
|
30
|
+
resize_mode: "Modo de redimensionamiento",
|
|
31
|
+
resize_contain: "Contener",
|
|
32
|
+
resize_contain_description: "Contener (ajustar dentro de los límites)",
|
|
33
|
+
resize_cover: "Cubrir",
|
|
34
|
+
resize_cover_description: "Cubrir (rellenar límites, puede recortar)",
|
|
35
|
+
output_format: "Formato de salida",
|
|
36
|
+
format_original: "Original",
|
|
37
|
+
format_original_description: "Original (mantener mismo formato)",
|
|
38
|
+
format_webp_description: "WebP (mejor compresión)",
|
|
39
|
+
quality_label: "Calidad (0–100)",
|
|
40
|
+
quality_hint: "Mayor calidad = archivo más grande. Recomendado: 80–90 para fotos, 90–100 para gráficos",
|
|
41
|
+
preview_type: "Tipo de vista previa",
|
|
42
|
+
preview_image: "Imagen",
|
|
43
|
+
preview_video: "Video",
|
|
44
|
+
preview_audio: "Audio",
|
|
45
|
+
display_url: "Mostrar URL",
|
|
46
|
+
default_value_not_set: "Valor predeterminado no establecido",
|
|
47
|
+
default_value_is: "El valor predeterminado es {{value}}",
|
|
48
|
+
default_value_was_cleared: "El valor predeterminado fue eliminado",
|
|
49
|
+
enum_missing_values: "A esta propiedad enum le faltan algunos valores",
|
|
50
|
+
mode_label: "Modo",
|
|
51
|
+
date_time_mode: "Fecha/Hora",
|
|
52
|
+
date_mode: "Fecha",
|
|
53
|
+
automatic_value: "Valor automático",
|
|
54
|
+
auto_on_create: "Al crear",
|
|
55
|
+
auto_on_update: "En cada actualización",
|
|
56
|
+
auto_none: "Ninguno",
|
|
57
|
+
auto_value_description: "Actualizar este campo automáticamente al crear o actualizar la entidad",
|
|
58
|
+
timezone_label: "Zona horaria",
|
|
59
|
+
local_timezone: "Zona horaria local",
|
|
60
|
+
timezone_description: "Zona horaria para mostrar e ingresar fechas. Los valores se almacenan siempre en UTC.",
|
|
61
|
+
target_collection: "Colección de destino",
|
|
62
|
+
views_group: "Vistas",
|
|
63
|
+
add_property_to: "Añadir propiedad a {{name}}",
|
|
64
|
+
add_first_property_to_group: "Añade la primera propiedad a este grupo",
|
|
65
|
+
spread_children_as_columns: "Distribuir hijos como columnas",
|
|
66
|
+
spread_children_description: "Activa esta opción si deseas mostrar los hijos de este grupo como columnas individuales. Solo funciona para grupos de nivel superior.",
|
|
67
|
+
paste_behavior: "Comportamiento al pegar",
|
|
68
|
+
strip_html_on_paste: "Eliminar HTML al pegar",
|
|
69
|
+
strip_html_description: "Eliminar etiquetas HTML y estilos en línea al pegar contenido de fuentes externas",
|
|
70
|
+
convert_pasted_to_markdown: "Convertir texto pegado a markdown",
|
|
71
|
+
convert_pasted_description: "Convertir texto enriquecido (de Google Docs, Word, etc.) a formato markdown limpio",
|
|
72
|
+
markdown_url_note: "Al usar Markdown, las URLs de los archivos subidos siempre se guardan en el valor de texto (no la ruta).",
|
|
73
|
+
hide_from_collection: "Ocultar de la colección",
|
|
74
|
+
hide_from_collection_tooltip: "Ocultar este campo de la vista de colección. Seguirá visible en la vista de formulario",
|
|
75
|
+
read_only: "Solo lectura",
|
|
76
|
+
read_only_tooltip: "Es un campo de solo lectura. Mostrar solo como vista previa",
|
|
77
|
+
tab_general: "General",
|
|
78
|
+
tab_display: "Visualización",
|
|
79
|
+
tab_properties: "Propiedades",
|
|
80
|
+
tab_extend: "Extender",
|
|
81
|
+
unsaved_changes_in_collection: "Hay cambios sin guardar en esta colección",
|
|
82
|
+
error_persisting_collection: "Error al guardar la colección: {{error}}",
|
|
83
|
+
details_in_console: "Detalles en la consola",
|
|
84
|
+
error_inferring_collection: "Error al inferir la colección: {{error}}",
|
|
85
|
+
collection_deleted: "Colección eliminada",
|
|
86
|
+
data_imported_successfully_msg: "Datos importados correctamente",
|
|
87
|
+
must_specify_path: "Debes especificar una ruta en la base de datos para esta colección",
|
|
88
|
+
collection_path_already_exists: "Ya existe una colección con la ruta especificada. Si deseas tener múltiples colecciones con la misma ruta de base de datos, asegúrate de que tengan IDs diferentes",
|
|
89
|
+
collection_path_odd_segments: "Las rutas de colección deben tener un número impar de segmentos: {{path}}",
|
|
90
|
+
collection_uses_path_as_id: "Ya existe una colección que usa este valor como ruta",
|
|
91
|
+
collection_uses_this_id: "Ya existe una colección que usa este ID",
|
|
92
|
+
delete_stored_config: "¿Eliminar la configuración almacenada?",
|
|
93
|
+
delete_stored_config_body: "Esto no eliminará ningún dato, solo la configuración almacenada, y se restaurará al estado del código.",
|
|
94
|
+
order_label: "Orden",
|
|
95
|
+
|
|
96
|
+
// Collection Properties Editor
|
|
97
|
+
select_property_to_edit: "Selecciona una propiedad para editarla",
|
|
98
|
+
add_first_property: "Ahora puedes añadir tu primera propiedad",
|
|
99
|
+
add_new_property: "Añadir nueva propiedad",
|
|
100
|
+
no_permission_add_properties: "No tienes permiso para añadir nuevas propiedades",
|
|
101
|
+
get_code_for_collection: "Obtener el código de esta colección",
|
|
102
|
+
add_properties_from_data: "Añadir nuevas propiedades basadas en datos",
|
|
103
|
+
collection_name_placeholder: "Nombre de la colección",
|
|
104
|
+
created_by: "Creado por {{name}}",
|
|
105
|
+
property_defined_as_builder: "Esta propiedad está definida como un property builder en código",
|
|
106
|
+
|
|
107
|
+
// Extend Settings
|
|
108
|
+
extend_title: "Extender",
|
|
109
|
+
extend_description: "Añade subcolecciones, vistas personalizadas y acciones de entidad a esta colección.",
|
|
110
|
+
collection_defined_in_code: "Esta colección está definida en código. Los cambios realizados en este editor sobreescribirán las propiedades definidas en código. Puedes eliminar los valores sobreescritos para volver al estado definido en código.",
|
|
111
|
+
reset_to_code: "Restablecer al código",
|
|
112
|
+
|
|
113
|
+
widget_group_text: "Texto",
|
|
114
|
+
widget_group_boolean: "Booleano",
|
|
115
|
+
widget_group_users: "Usuarios",
|
|
116
|
+
widget_group_select: "Selección",
|
|
117
|
+
widget_group_number: "Número",
|
|
118
|
+
widget_group_file: "Archivo",
|
|
119
|
+
widget_group_reference: "Referencia",
|
|
120
|
+
widget_group_date: "Fecha",
|
|
121
|
+
widget_group_group: "Grupo",
|
|
122
|
+
widget_group_array: "Lista"
|
|
123
|
+
};
|