@open-mercato/core 0.4.5-develop-754ef4d2f0 → 0.4.5-develop-5191db4ef3
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/modules/auth/components/AclEditor.js +4 -2
- package/dist/modules/auth/components/AclEditor.js.map +2 -2
- package/dist/modules/auth/frontend/reset.js +3 -3
- package/dist/modules/auth/frontend/reset.js.map +2 -2
- package/dist/modules/dashboards/components/WidgetVisibilityEditor.js +35 -6
- package/dist/modules/dashboards/components/WidgetVisibilityEditor.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js +6 -6
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js.map +2 -2
- package/package.json +2 -2
- package/src/modules/attachments/i18n/de.json +4 -0
- package/src/modules/attachments/i18n/en.json +4 -0
- package/src/modules/attachments/i18n/es.json +4 -0
- package/src/modules/attachments/i18n/pl.json +4 -0
- package/src/modules/auth/components/AclEditor.tsx +4 -2
- package/src/modules/auth/frontend/reset.tsx +3 -3
- package/src/modules/auth/i18n/de.json +5 -0
- package/src/modules/auth/i18n/en.json +5 -0
- package/src/modules/auth/i18n/es.json +5 -0
- package/src/modules/auth/i18n/pl.json +5 -0
- package/src/modules/catalog/i18n/de.json +21 -0
- package/src/modules/catalog/i18n/en.json +21 -0
- package/src/modules/catalog/i18n/es.json +21 -0
- package/src/modules/catalog/i18n/pl.json +21 -0
- package/src/modules/currencies/i18n/de.json +6 -0
- package/src/modules/currencies/i18n/en.json +6 -0
- package/src/modules/currencies/i18n/es.json +6 -0
- package/src/modules/currencies/i18n/pl.json +6 -0
- package/src/modules/customers/i18n/de.json +22 -1
- package/src/modules/customers/i18n/en.json +21 -0
- package/src/modules/customers/i18n/es.json +21 -0
- package/src/modules/customers/i18n/pl.json +21 -0
- package/src/modules/dashboards/components/WidgetVisibilityEditor.tsx +41 -5
- package/src/modules/dashboards/i18n/de.json +5 -1
- package/src/modules/dashboards/i18n/en.json +5 -1
- package/src/modules/dashboards/i18n/es.json +5 -1
- package/src/modules/dashboards/i18n/pl.json +5 -1
- package/src/modules/dictionaries/i18n/de.json +14 -1
- package/src/modules/dictionaries/i18n/en.json +14 -1
- package/src/modules/dictionaries/i18n/es.json +14 -1
- package/src/modules/dictionaries/i18n/pl.json +14 -1
- package/src/modules/feature_toggles/i18n/de.json +3 -0
- package/src/modules/feature_toggles/i18n/en.json +3 -0
- package/src/modules/feature_toggles/i18n/es.json +3 -0
- package/src/modules/feature_toggles/i18n/pl.json +3 -0
- package/src/modules/query_index/i18n/es.json +2 -2
- package/src/modules/resources/i18n/de.json +57 -0
- package/src/modules/resources/i18n/en.json +57 -0
- package/src/modules/resources/i18n/es.json +57 -0
- package/src/modules/resources/i18n/pl.json +57 -0
- package/src/modules/sales/i18n/de.json +23 -0
- package/src/modules/sales/i18n/en.json +23 -0
- package/src/modules/sales/i18n/es.json +23 -0
- package/src/modules/sales/i18n/pl.json +23 -0
- package/src/modules/staff/i18n/de.json +14 -0
- package/src/modules/staff/i18n/en.json +14 -0
- package/src/modules/staff/i18n/es.json +14 -0
- package/src/modules/staff/i18n/pl.json +14 -0
- package/src/modules/workflows/backend/definitions/visual-editor/page.tsx +6 -6
- package/src/modules/workflows/i18n/de.json +41 -0
- package/src/modules/workflows/i18n/en.json +41 -0
- package/src/modules/workflows/i18n/es.json +41 -0
- package/src/modules/workflows/i18n/pl.json +41 -0
|
@@ -50,8 +50,44 @@ export type WidgetVisibilityEditorHandle = {
|
|
|
50
50
|
|
|
51
51
|
const EMPTY: string[] = []
|
|
52
52
|
|
|
53
|
+
function resolveWidgetText(
|
|
54
|
+
t: (key: string, fallback: string) => string,
|
|
55
|
+
id: string,
|
|
56
|
+
field: 'title' | 'description',
|
|
57
|
+
fallback: string,
|
|
58
|
+
): string {
|
|
59
|
+
const key1 = `${id}.${field}`
|
|
60
|
+
const result1 = t(key1, '')
|
|
61
|
+
if (result1 && result1 !== key1) return result1
|
|
62
|
+
|
|
63
|
+
const key2 = `dashboard.widgets.${id}.${field}`
|
|
64
|
+
const result2 = t(key2, '')
|
|
65
|
+
if (result2 && result2 !== key2) return result2
|
|
66
|
+
|
|
67
|
+
const dotIndex = id.lastIndexOf('.')
|
|
68
|
+
if (dotIndex > 0) {
|
|
69
|
+
const prefix = id.slice(0, dotIndex)
|
|
70
|
+
const lastPart = id.slice(dotIndex + 1)
|
|
71
|
+
const key3 = `${prefix}.widgets.${lastPart}.${field}`
|
|
72
|
+
const result3 = t(key3, '')
|
|
73
|
+
if (result3 && result3 !== key3) return result3
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return fallback
|
|
77
|
+
}
|
|
78
|
+
|
|
53
79
|
export const WidgetVisibilityEditor = React.forwardRef<WidgetVisibilityEditorHandle, WidgetVisibilityEditorProps>(function WidgetVisibilityEditor(props, ref) {
|
|
54
80
|
const t = useT()
|
|
81
|
+
|
|
82
|
+
const resolveTitle = React.useCallback(
|
|
83
|
+
(widget: WidgetCatalogItem) => resolveWidgetText(t, widget.id, 'title', widget.title),
|
|
84
|
+
[t],
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
const resolveDescription = React.useCallback(
|
|
88
|
+
(widget: WidgetCatalogItem) => resolveWidgetText(t, widget.id, 'description', widget.description || ''),
|
|
89
|
+
[t],
|
|
90
|
+
)
|
|
55
91
|
const { kind, targetId, tenantId, organizationId } = props
|
|
56
92
|
const [catalog, setCatalog] = React.useState<WidgetCatalogItem[]>([])
|
|
57
93
|
const [loading, setLoading] = React.useState(true)
|
|
@@ -282,8 +318,8 @@ export const WidgetVisibilityEditor = React.forwardRef<WidgetVisibilityEditorHan
|
|
|
282
318
|
onChange={() => toggle(widget.id)}
|
|
283
319
|
/>
|
|
284
320
|
<div>
|
|
285
|
-
<div className="text-sm font-medium leading-none">{widget
|
|
286
|
-
{widget.description ? <div className="mt-1 text-xs text-muted-foreground">{widget
|
|
321
|
+
<div className="text-sm font-medium leading-none">{resolveTitle(widget)}</div>
|
|
322
|
+
{widget.description ? <div className="mt-1 text-xs text-muted-foreground">{resolveDescription(widget)}</div> : null}
|
|
287
323
|
</div>
|
|
288
324
|
</label>
|
|
289
325
|
))}
|
|
@@ -292,16 +328,16 @@ export const WidgetVisibilityEditor = React.forwardRef<WidgetVisibilityEditorHan
|
|
|
292
328
|
|
|
293
329
|
{kind === 'user' && effective.length > 0 && (
|
|
294
330
|
<div className="rounded-md border bg-muted/30 px-3 py-2 text-xs text-muted-foreground">
|
|
295
|
-
Effective widgets: {effective.map((id) => catalog.find((
|
|
331
|
+
{t('dashboards.widgets.effective', 'Effective widgets:')} {effective.map((id) => { const meta = catalog.find((m) => m.id === id); return meta ? resolveTitle(meta) : id }).join(', ')}
|
|
296
332
|
</div>
|
|
297
333
|
)}
|
|
298
334
|
|
|
299
335
|
<div className="flex items-center gap-2">
|
|
300
336
|
<Button type="button" onClick={save} disabled={saving || !dirty}>
|
|
301
|
-
{saving ? 'Saving…' : 'Save widgets'}
|
|
337
|
+
{saving ? t('dashboards.widgets.saving', 'Saving…') : t('dashboards.widgets.save', 'Save widgets')}
|
|
302
338
|
</Button>
|
|
303
339
|
<Button type="button" variant="ghost" onClick={resetSelections} disabled={!dirty}>
|
|
304
|
-
Reset
|
|
340
|
+
{t('dashboards.widgets.reset', 'Reset')}
|
|
305
341
|
</Button>
|
|
306
342
|
</div>
|
|
307
343
|
</div>
|
|
@@ -102,5 +102,9 @@
|
|
|
102
102
|
"dashboards.widgets.loading": "Widget-Optionen werden geladen…",
|
|
103
103
|
"dashboards.widgets.mode.hint": "Dieser Benutzer erbt derzeit Widgets von seinen Rollen. Wechseln Sie zu \"Überschreiben\", um anzupassen.",
|
|
104
104
|
"dashboards.widgets.mode.inherit": "Von Rollen übernehmen",
|
|
105
|
-
"dashboards.widgets.mode.override": "Für diesen Benutzer überschreiben"
|
|
105
|
+
"dashboards.widgets.mode.override": "Für diesen Benutzer überschreiben",
|
|
106
|
+
"dashboards.widgets.effective": "Aktive Widgets:",
|
|
107
|
+
"dashboards.widgets.reset": "Zurücksetzen",
|
|
108
|
+
"dashboards.widgets.save": "Widgets speichern",
|
|
109
|
+
"dashboards.widgets.saving": "Speichern…"
|
|
106
110
|
}
|
|
@@ -102,5 +102,9 @@
|
|
|
102
102
|
"dashboards.widgets.loading": "Loading widget options…",
|
|
103
103
|
"dashboards.widgets.mode.hint": "This user currently inherits widgets from their assigned roles. Switch to override to customize.",
|
|
104
104
|
"dashboards.widgets.mode.inherit": "Inherit from roles",
|
|
105
|
-
"dashboards.widgets.mode.override": "Override for this user"
|
|
105
|
+
"dashboards.widgets.mode.override": "Override for this user",
|
|
106
|
+
"dashboards.widgets.effective": "Effective widgets:",
|
|
107
|
+
"dashboards.widgets.reset": "Reset",
|
|
108
|
+
"dashboards.widgets.save": "Save widgets",
|
|
109
|
+
"dashboards.widgets.saving": "Saving…"
|
|
106
110
|
}
|
|
@@ -102,5 +102,9 @@
|
|
|
102
102
|
"dashboards.widgets.loading": "Cargando opciones de widgets…",
|
|
103
103
|
"dashboards.widgets.mode.hint": "Este usuario hereda los widgets de sus roles asignados. Cambia a sobrescribir para personalizar.",
|
|
104
104
|
"dashboards.widgets.mode.inherit": "Heredar de los roles",
|
|
105
|
-
"dashboards.widgets.mode.override": "Sobrescribir para este usuario"
|
|
105
|
+
"dashboards.widgets.mode.override": "Sobrescribir para este usuario",
|
|
106
|
+
"dashboards.widgets.effective": "Widgets efectivos:",
|
|
107
|
+
"dashboards.widgets.reset": "Restablecer",
|
|
108
|
+
"dashboards.widgets.save": "Guardar widgets",
|
|
109
|
+
"dashboards.widgets.saving": "Guardando…"
|
|
106
110
|
}
|
|
@@ -102,5 +102,9 @@
|
|
|
102
102
|
"dashboards.widgets.loading": "Ładowanie opcji widżetów…",
|
|
103
103
|
"dashboards.widgets.mode.hint": "Ten użytkownik dziedziczy widżety z przypisanych ról. Wybierz nadpisanie, aby je dostosować.",
|
|
104
104
|
"dashboards.widgets.mode.inherit": "Dziedzicz po rolach",
|
|
105
|
-
"dashboards.widgets.mode.override": "Nadpisz dla tego użytkownika"
|
|
105
|
+
"dashboards.widgets.mode.override": "Nadpisz dla tego użytkownika",
|
|
106
|
+
"dashboards.widgets.effective": "Aktywne widżety:",
|
|
107
|
+
"dashboards.widgets.reset": "Resetuj",
|
|
108
|
+
"dashboards.widgets.save": "Zapisz widżety",
|
|
109
|
+
"dashboards.widgets.saving": "Zapisywanie…"
|
|
106
110
|
}
|
|
@@ -91,10 +91,23 @@
|
|
|
91
91
|
"dictionaries.entries.update": "Wörterbucheintrag aktualisieren",
|
|
92
92
|
"dictionaries.errors.currency_protected": "Das Währungswörterbuch ist erforderlich und kann nicht geändert oder gelöscht werden.",
|
|
93
93
|
"dictionaries.errors.duplicate": "Ein Wörterbuch mit diesem Schlüssel existiert bereits",
|
|
94
|
+
"dictionaries.errors.entry_create_failed": "Wörterbucheintrag konnte nicht erstellt werden.",
|
|
94
95
|
"dictionaries.errors.entry_duplicate": "Ein Eintrag mit diesem Wert existiert bereits",
|
|
95
96
|
"dictionaries.errors.entry_not_found": "Wörterbucheintrag nicht gefunden",
|
|
96
97
|
"dictionaries.errors.entry_required": "Wert ist erforderlich",
|
|
98
|
+
"dictionaries.errors.entry_update_failed": "Wörterbucheintrag konnte nicht aktualisiert werden.",
|
|
97
99
|
"dictionaries.errors.not_found": "Wörterbuch nicht gefunden",
|
|
98
100
|
"dictionaries.errors.organization_required": "Organisationskontext ist erforderlich",
|
|
99
|
-
"dictionaries.errors.unauthorized": "Nicht autorisiert"
|
|
101
|
+
"dictionaries.errors.unauthorized": "Nicht autorisiert",
|
|
102
|
+
"dictionaries.form.colorClear": "Farbe entfernen",
|
|
103
|
+
"dictionaries.form.colorHelp": "Hervorhebungsfarbe für diesen Eintrag wählen.",
|
|
104
|
+
"dictionaries.form.colorLabel": "Farbe",
|
|
105
|
+
"dictionaries.form.iconClearLabel": "Symbol entfernen",
|
|
106
|
+
"dictionaries.form.iconLabel": "Symbol",
|
|
107
|
+
"dictionaries.form.iconPickerTriggerLabel": "Symbole durchsuchen",
|
|
108
|
+
"dictionaries.form.iconPlaceholder": "Emoji oder Symbolname eingeben",
|
|
109
|
+
"dictionaries.form.iconSearchEmptyLabel": "Keine Symbole entsprechen Ihrer Suche",
|
|
110
|
+
"dictionaries.form.iconSearchPlaceholder": "Symbole oder Emojis suchen…",
|
|
111
|
+
"dictionaries.form.iconSuggestionsLabel": "Vorschläge",
|
|
112
|
+
"dictionaries.form.previewEmptyLabel": "Keine Darstellung ausgewählt"
|
|
100
113
|
}
|
|
@@ -91,10 +91,23 @@
|
|
|
91
91
|
"dictionaries.entries.update": "Update dictionary entry",
|
|
92
92
|
"dictionaries.errors.currency_protected": "The currency dictionary is required and cannot be modified or deleted.",
|
|
93
93
|
"dictionaries.errors.duplicate": "A dictionary with this key already exists",
|
|
94
|
+
"dictionaries.errors.entry_create_failed": "Failed to create dictionary entry.",
|
|
94
95
|
"dictionaries.errors.entry_duplicate": "An entry with this value already exists",
|
|
95
96
|
"dictionaries.errors.entry_not_found": "Dictionary entry not found",
|
|
96
97
|
"dictionaries.errors.entry_required": "Value is required",
|
|
98
|
+
"dictionaries.errors.entry_update_failed": "Failed to update dictionary entry.",
|
|
97
99
|
"dictionaries.errors.not_found": "Dictionary not found",
|
|
98
100
|
"dictionaries.errors.organization_required": "Organization context is required",
|
|
99
|
-
"dictionaries.errors.unauthorized": "Unauthorized"
|
|
101
|
+
"dictionaries.errors.unauthorized": "Unauthorized",
|
|
102
|
+
"dictionaries.form.colorClear": "Clear color",
|
|
103
|
+
"dictionaries.form.colorHelp": "Pick a highlight color for this entry.",
|
|
104
|
+
"dictionaries.form.colorLabel": "Color",
|
|
105
|
+
"dictionaries.form.iconClearLabel": "Clear icon",
|
|
106
|
+
"dictionaries.form.iconLabel": "Icon",
|
|
107
|
+
"dictionaries.form.iconPickerTriggerLabel": "Browse icons",
|
|
108
|
+
"dictionaries.form.iconPlaceholder": "Type an emoji or icon name",
|
|
109
|
+
"dictionaries.form.iconSearchEmptyLabel": "No icons match your search",
|
|
110
|
+
"dictionaries.form.iconSearchPlaceholder": "Search icons or emojis…",
|
|
111
|
+
"dictionaries.form.iconSuggestionsLabel": "Suggestions",
|
|
112
|
+
"dictionaries.form.previewEmptyLabel": "No appearance selected"
|
|
100
113
|
}
|
|
@@ -91,10 +91,23 @@
|
|
|
91
91
|
"dictionaries.entries.update": "Actualizar entrada de diccionario",
|
|
92
92
|
"dictionaries.errors.currency_protected": "El diccionario de monedas es obligatorio y no puede modificarse ni eliminarse.",
|
|
93
93
|
"dictionaries.errors.duplicate": "Ya existe un diccionario con esta clave",
|
|
94
|
+
"dictionaries.errors.entry_create_failed": "Error al crear la entrada de diccionario.",
|
|
94
95
|
"dictionaries.errors.entry_duplicate": "Ya existe una entrada con este valor",
|
|
95
96
|
"dictionaries.errors.entry_not_found": "Entrada de diccionario no encontrada",
|
|
96
97
|
"dictionaries.errors.entry_required": "El valor es obligatorio",
|
|
98
|
+
"dictionaries.errors.entry_update_failed": "Error al actualizar la entrada de diccionario.",
|
|
97
99
|
"dictionaries.errors.not_found": "Diccionario no encontrado",
|
|
98
100
|
"dictionaries.errors.organization_required": "Se requiere un contexto de organización",
|
|
99
|
-
"dictionaries.errors.unauthorized": "No autorizado"
|
|
101
|
+
"dictionaries.errors.unauthorized": "No autorizado",
|
|
102
|
+
"dictionaries.form.colorClear": "Limpiar color",
|
|
103
|
+
"dictionaries.form.colorHelp": "Seleccione un color de resaltado para esta entrada.",
|
|
104
|
+
"dictionaries.form.colorLabel": "Color",
|
|
105
|
+
"dictionaries.form.iconClearLabel": "Limpiar icono",
|
|
106
|
+
"dictionaries.form.iconLabel": "Icono",
|
|
107
|
+
"dictionaries.form.iconPickerTriggerLabel": "Explorar iconos",
|
|
108
|
+
"dictionaries.form.iconPlaceholder": "Escriba un emoji o nombre de icono",
|
|
109
|
+
"dictionaries.form.iconSearchEmptyLabel": "Ningún icono coincide con su búsqueda",
|
|
110
|
+
"dictionaries.form.iconSearchPlaceholder": "Buscar iconos o emojis…",
|
|
111
|
+
"dictionaries.form.iconSuggestionsLabel": "Sugerencias",
|
|
112
|
+
"dictionaries.form.previewEmptyLabel": "No se ha seleccionado apariencia"
|
|
100
113
|
}
|
|
@@ -91,10 +91,23 @@
|
|
|
91
91
|
"dictionaries.entries.update": "Zaktualizuj wpis słownika",
|
|
92
92
|
"dictionaries.errors.currency_protected": "Słownik walut jest wymagany i nie może być modyfikowany ani usuwany.",
|
|
93
93
|
"dictionaries.errors.duplicate": "Słownik o tym kluczu już istnieje",
|
|
94
|
+
"dictionaries.errors.entry_create_failed": "Nie udało się utworzyć wpisu słownikowego.",
|
|
94
95
|
"dictionaries.errors.entry_duplicate": "Wpis o tej wartości już istnieje",
|
|
95
96
|
"dictionaries.errors.entry_not_found": "Nie znaleziono wpisu słownika",
|
|
96
97
|
"dictionaries.errors.entry_required": "Wartość jest wymagana",
|
|
98
|
+
"dictionaries.errors.entry_update_failed": "Nie udało się zaktualizować wpisu słownikowego.",
|
|
97
99
|
"dictionaries.errors.not_found": "Nie znaleziono słownika",
|
|
98
100
|
"dictionaries.errors.organization_required": "Wymagany jest kontekst organizacji",
|
|
99
|
-
"dictionaries.errors.unauthorized": "Brak autoryzacji"
|
|
101
|
+
"dictionaries.errors.unauthorized": "Brak autoryzacji",
|
|
102
|
+
"dictionaries.form.colorClear": "Wyczyść kolor",
|
|
103
|
+
"dictionaries.form.colorHelp": "Wybierz kolor wyróżnienia dla tego wpisu.",
|
|
104
|
+
"dictionaries.form.colorLabel": "Kolor",
|
|
105
|
+
"dictionaries.form.iconClearLabel": "Wyczyść ikonę",
|
|
106
|
+
"dictionaries.form.iconLabel": "Ikona",
|
|
107
|
+
"dictionaries.form.iconPickerTriggerLabel": "Przeglądaj ikony",
|
|
108
|
+
"dictionaries.form.iconPlaceholder": "Wpisz emoji lub nazwę ikony",
|
|
109
|
+
"dictionaries.form.iconSearchEmptyLabel": "Żadne ikony nie pasują do wyszukiwania",
|
|
110
|
+
"dictionaries.form.iconSearchPlaceholder": "Szukaj ikon lub emoji…",
|
|
111
|
+
"dictionaries.form.iconSuggestionsLabel": "Sugestie",
|
|
112
|
+
"dictionaries.form.previewEmptyLabel": "Nie wybrano wyglądu"
|
|
100
113
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"feature_toggles.detail.fields.failMode": "Fehlermodus",
|
|
12
12
|
"feature_toggles.detail.fields.identifier": "Kennung",
|
|
13
13
|
"feature_toggles.detail.fields.name": "Name",
|
|
14
|
+
"feature_toggles.form.action.save": "Speichern",
|
|
14
15
|
"feature_toggles.form.errors.load": "Feature-Schalter-Überschreibungen konnten nicht geladen werden",
|
|
15
16
|
"feature_toggles.form.fields.category.label": "Kategorie",
|
|
16
17
|
"feature_toggles.form.fields.defaultState.disabled": "Deaktiviert",
|
|
@@ -30,6 +31,8 @@
|
|
|
30
31
|
"feature_toggles.form.groups.basic": "Grundinformationen",
|
|
31
32
|
"feature_toggles.form.groups.defaultValue": "Standardwert",
|
|
32
33
|
"feature_toggles.form.groups.type": "Typkonfiguration",
|
|
34
|
+
"feature_toggles.form.loading": "Wird geladen…",
|
|
35
|
+
"feature_toggles.form.title.edit": "Feature-Toggle bearbeiten",
|
|
33
36
|
"feature_toggles.global.help.title": "Feature-Schalter",
|
|
34
37
|
"feature_toggles.list.confirmDelete": "Feature-Schalter \"{identifier}\" löschen?",
|
|
35
38
|
"feature_toggles.list.error.load": "Feature-Schalter konnten nicht geladen werden",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"feature_toggles.detail.fields.failMode": "Fail Mode",
|
|
12
12
|
"feature_toggles.detail.fields.identifier": "Identifier",
|
|
13
13
|
"feature_toggles.detail.fields.name": "Name",
|
|
14
|
+
"feature_toggles.form.action.save": "Save",
|
|
14
15
|
"feature_toggles.form.errors.load": "Failed to load feature toggle overrides",
|
|
15
16
|
"feature_toggles.form.fields.category.label": "Category",
|
|
16
17
|
"feature_toggles.form.fields.defaultState.disabled": "Disabled",
|
|
@@ -30,6 +31,8 @@
|
|
|
30
31
|
"feature_toggles.form.groups.basic": "Basic Information",
|
|
31
32
|
"feature_toggles.form.groups.defaultValue": "Default Value",
|
|
32
33
|
"feature_toggles.form.groups.type": "Type Configuration",
|
|
34
|
+
"feature_toggles.form.loading": "Loading…",
|
|
35
|
+
"feature_toggles.form.title.edit": "Edit Feature Toggle",
|
|
33
36
|
"feature_toggles.global.help.title": "Feature Toggles",
|
|
34
37
|
"feature_toggles.list.confirmDelete": "Delete feature toggle \"{identifier}\"?",
|
|
35
38
|
"feature_toggles.list.error.load": "Failed to load feature toggles",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"feature_toggles.detail.fields.failMode": "Modo de Fallo",
|
|
12
12
|
"feature_toggles.detail.fields.identifier": "Identificador",
|
|
13
13
|
"feature_toggles.detail.fields.name": "Nombre",
|
|
14
|
+
"feature_toggles.form.action.save": "Guardar",
|
|
14
15
|
"feature_toggles.form.errors.load": "Error al cargar las anulaciones de interruptores de funciones",
|
|
15
16
|
"feature_toggles.form.fields.category.label": "Categoría",
|
|
16
17
|
"feature_toggles.form.fields.defaultState.disabled": "Deshabilitado",
|
|
@@ -30,6 +31,8 @@
|
|
|
30
31
|
"feature_toggles.form.groups.basic": "Información Básica",
|
|
31
32
|
"feature_toggles.form.groups.defaultValue": "Valor Predeterminado",
|
|
32
33
|
"feature_toggles.form.groups.type": "Configuración de Tipo",
|
|
34
|
+
"feature_toggles.form.loading": "Cargando…",
|
|
35
|
+
"feature_toggles.form.title.edit": "Editar alternancia de característica",
|
|
33
36
|
"feature_toggles.global.help.title": "Interruptores de Funciones",
|
|
34
37
|
"feature_toggles.list.confirmDelete": "¿Eliminar interruptor de función \"{identifier}\"?",
|
|
35
38
|
"feature_toggles.list.error.load": "Error al cargar los interruptores de funciones",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"feature_toggles.detail.fields.failMode": "Tryb Awaryjny",
|
|
12
12
|
"feature_toggles.detail.fields.identifier": "Identyfikator",
|
|
13
13
|
"feature_toggles.detail.fields.name": "Nazwa",
|
|
14
|
+
"feature_toggles.form.action.save": "Zapisz",
|
|
14
15
|
"feature_toggles.form.errors.load": "Nie udało się załadować nadpisań przełącznika funkcji",
|
|
15
16
|
"feature_toggles.form.fields.category.label": "Kategoria",
|
|
16
17
|
"feature_toggles.form.fields.defaultState.disabled": "Wyłączony",
|
|
@@ -30,6 +31,8 @@
|
|
|
30
31
|
"feature_toggles.form.groups.basic": "Informacje podstawowe",
|
|
31
32
|
"feature_toggles.form.groups.defaultValue": "Wartość domyślna",
|
|
32
33
|
"feature_toggles.form.groups.type": "Konfiguracja typu",
|
|
34
|
+
"feature_toggles.form.loading": "Ładowanie…",
|
|
35
|
+
"feature_toggles.form.title.edit": "Edytuj przełącznik funkcji",
|
|
33
36
|
"feature_toggles.global.help.title": "Przełączniki funkcji",
|
|
34
37
|
"feature_toggles.list.confirmDelete": "Usunąć przełącznik funkcji \"{identifier}\"?",
|
|
35
38
|
"feature_toggles.list.error.load": "Nie udało się załadować przełączników funkcji",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"query_index.table.columns.label": "Etiqueta",
|
|
21
21
|
"query_index.table.columns.records": "Registros",
|
|
22
22
|
"query_index.table.columns.status": "Estado",
|
|
23
|
-
"query_index.table.columns.vector": "
|
|
23
|
+
"query_index.table.columns.vector": "Vectorial",
|
|
24
24
|
"query_index.table.confirm.fulltextPurge": "¿Eliminar el índice de texto completo de esta entidad? Esta acción no se puede deshacer.",
|
|
25
25
|
"query_index.table.confirm.vectorPurge": "¿Eliminar los embeddings vectoriales de esta entidad? Esta acción no se puede deshacer.",
|
|
26
26
|
"query_index.table.errors.actionFailed": "No se pudo ejecutar {{action}}.",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"query_index.table.status.scope.stalled": "Detenido",
|
|
59
59
|
"query_index.table.status.scopeLabel": "Ámbito",
|
|
60
60
|
"query_index.table.status.stalled": "Detenido",
|
|
61
|
-
"query_index.table.status.vectorLabel": "
|
|
61
|
+
"query_index.table.status.vectorLabel": "Vectorial",
|
|
62
62
|
"query_index.table.status.vectorValue": "{{count}} / {{total}}",
|
|
63
63
|
"query_index.table.status.withProgress": "{{status}} ({{progress}})"
|
|
64
64
|
}
|
|
@@ -76,6 +76,12 @@
|
|
|
76
76
|
"resources.audit.availabilityRuleSets.create": "Verfügbarkeitszeitplan erstellen",
|
|
77
77
|
"resources.audit.availabilityRuleSets.delete": "Verfügbarkeitszeitplan löschen",
|
|
78
78
|
"resources.audit.availabilityRuleSets.update": "Verfügbarkeitszeitplan aktualisieren",
|
|
79
|
+
"resources.audit.resourceActivities.create": "Ressourcenaktivität erstellen",
|
|
80
|
+
"resources.audit.resourceActivities.delete": "Ressourcenaktivität löschen",
|
|
81
|
+
"resources.audit.resourceActivities.update": "Ressourcenaktivität aktualisieren",
|
|
82
|
+
"resources.audit.resourceComments.create": "Ressourcenkommentar erstellen",
|
|
83
|
+
"resources.audit.resourceComments.delete": "Ressourcenkommentar löschen",
|
|
84
|
+
"resources.audit.resourceComments.update": "Ressourcenkommentar aktualisieren",
|
|
79
85
|
"resources.audit.resourceTags.assign": "Ressourcen-Tag zuweisen",
|
|
80
86
|
"resources.audit.resourceTags.create": "Ressourcen-Tag erstellen",
|
|
81
87
|
"resources.audit.resourceTags.delete": "Ressourcen-Tag löschen",
|
|
@@ -349,6 +355,7 @@
|
|
|
349
355
|
"resources.resources.detail.activities.update": "Aktivität aktualisieren (Cmd/Ctrl + Enter)",
|
|
350
356
|
"resources.resources.detail.activities.updateSuccess": "Aktivität aktualisiert.",
|
|
351
357
|
"resources.resources.detail.back": "Zurück zu Ressourcen",
|
|
358
|
+
"resources.resources.detail.formTitle": "Ressourceneinstellungen",
|
|
352
359
|
"resources.resources.detail.inline.cancel": "Stornieren",
|
|
353
360
|
"resources.resources.detail.inline.clear": "Klar",
|
|
354
361
|
"resources.resources.detail.inline.emailChecking": "Suche nach übereinstimmenden Datensätzen...",
|
|
@@ -435,13 +442,63 @@
|
|
|
435
442
|
"resources.resources.detail.tabs.notes": "Notizen",
|
|
436
443
|
"resources.resources.detail.untitled": "Unbenannte Ressource",
|
|
437
444
|
"resources.resources.flash.createdAvailability": "Gespeichert. Du kannst jetzt die Verfügbarkeit festlegen.",
|
|
445
|
+
"resources.resources.form.actions.create": "Erstellen",
|
|
446
|
+
"resources.resources.form.appearance.colorClear": "Farbe entfernen",
|
|
447
|
+
"resources.resources.form.appearance.colorHelp": "Wählen Sie eine Farbe für diese Ressource.",
|
|
448
|
+
"resources.resources.form.appearance.colorLabel": "Farbe",
|
|
449
|
+
"resources.resources.form.appearance.iconClear": "Symbol entfernen",
|
|
450
|
+
"resources.resources.form.appearance.iconLabel": "Symbol",
|
|
451
|
+
"resources.resources.form.appearance.iconPicker": "Symbole durchsuchen",
|
|
452
|
+
"resources.resources.form.appearance.iconPlaceholder": "Emoji oder Symbolname eingeben",
|
|
453
|
+
"resources.resources.form.appearance.iconSearch": "Symbole oder Emojis suchen…",
|
|
454
|
+
"resources.resources.form.appearance.iconSearchEmpty": "Keine Symbole entsprechen Ihrer Suche",
|
|
455
|
+
"resources.resources.form.appearance.iconSuggestions": "Vorschläge",
|
|
456
|
+
"resources.resources.form.appearance.label": "Darstellung",
|
|
457
|
+
"resources.resources.form.appearance.previewEmpty": "Keine Darstellung ausgewählt",
|
|
458
|
+
"resources.resources.form.createTitle": "Ressource erstellen",
|
|
459
|
+
"resources.resources.form.editTitle": "Ressource bearbeiten",
|
|
460
|
+
"resources.resources.form.errors.create": "Ressource konnte nicht erstellt werden.",
|
|
461
|
+
"resources.resources.form.errors.delete": "Ressource konnte nicht gelöscht werden.",
|
|
462
|
+
"resources.resources.form.errors.load": "Ressource konnte nicht geladen werden.",
|
|
463
|
+
"resources.resources.form.errors.nameRequired": "Ressourcenname ist erforderlich.",
|
|
464
|
+
"resources.resources.form.errors.notFound": "Ressource nicht gefunden.",
|
|
465
|
+
"resources.resources.form.errors.update": "Ressource konnte nicht aktualisiert werden.",
|
|
466
|
+
"resources.resources.form.fields.active": "Aktiv",
|
|
467
|
+
"resources.resources.form.fields.capacity": "Kapazität",
|
|
438
468
|
"resources.resources.form.fields.capacity.help": "Hängt von der Ressource ab und kann Plätze, Einheiten, Menge oder eine andere Kapazitätsart bedeuten.",
|
|
439
469
|
"resources.resources.form.fields.capacityUnit": "Kapazitätseinheit",
|
|
440
470
|
"resources.resources.form.fields.capacityUnit.missing": "Das Kapazitätseinheiten-Wörterbuch ist nicht konfiguriert.",
|
|
471
|
+
"resources.resources.form.fields.description": "Beschreibung",
|
|
472
|
+
"resources.resources.form.fields.name": "Name",
|
|
473
|
+
"resources.resources.form.fields.type": "Ressourcentyp",
|
|
441
474
|
"resources.resources.form.fields.type.add": "Ressourcentyp hinzufügen",
|
|
442
475
|
"resources.resources.form.fields.type.manage": "Ressourcentypen verwalten",
|
|
476
|
+
"resources.resources.form.flash.deleted": "Ressource gelöscht.",
|
|
477
|
+
"resources.resources.form.flash.updated": "Ressource aktualisiert.",
|
|
478
|
+
"resources.resources.form.loading": "Ressource wird geladen…",
|
|
479
|
+
"resources.resources.list.actions.create": "Erstellen",
|
|
480
|
+
"resources.resources.list.columns.active": "Aktiv",
|
|
481
|
+
"resources.resources.list.columns.appearance": "Darstellung",
|
|
482
|
+
"resources.resources.list.columns.capacity": "Kapazität",
|
|
483
|
+
"resources.resources.list.columns.capacity.empty": "Nicht festgelegt",
|
|
484
|
+
"resources.resources.list.columns.name": "Name",
|
|
485
|
+
"resources.resources.list.columns.tags": "Tags",
|
|
486
|
+
"resources.resources.list.columns.tags.empty": "Keine Tags",
|
|
487
|
+
"resources.resources.list.columns.type": "Type",
|
|
488
|
+
"resources.resources.list.columns.type.empty": "Kein Typ",
|
|
489
|
+
"resources.resources.list.confirmDelete": "Diese Ressource löschen? Kann nicht rückgängig gemacht werden.",
|
|
490
|
+
"resources.resources.list.error.delete": "Ressource konnte nicht gelöscht werden.",
|
|
491
|
+
"resources.resources.list.error.load": "Ressourcen konnten nicht geladen werden.",
|
|
443
492
|
"resources.resources.list.filters.resourceType": "Ressourcentyp",
|
|
444
493
|
"resources.resources.list.filters.tags": "Schlagworte",
|
|
494
|
+
"resources.resources.list.flash.deleted": "Ressource gelöscht.",
|
|
495
|
+
"resources.resources.list.group.unassigned": "Nicht zugewiesen",
|
|
496
|
+
"resources.resources.list.group.unknown": "Unbekannt",
|
|
497
|
+
"resources.resources.page.title": "Ressourcen",
|
|
498
|
+
"resources.resources.schedule.actions.details": "Details anzeigen",
|
|
499
|
+
"resources.resources.tabs.availability": "Verfügbarkeit",
|
|
500
|
+
"resources.resources.tabs.details": "Details",
|
|
501
|
+
"resources.resources.tabs.label": "Ressourcenbereiche",
|
|
445
502
|
"resources.resources.tags.cancelShortcut": "Abbrechen (Esc)",
|
|
446
503
|
"resources.resources.tags.createError": "Tag konnte nicht erstellt werden.",
|
|
447
504
|
"resources.resources.tags.errors.invalid": "Ungültige Tag-Daten",
|
|
@@ -76,6 +76,12 @@
|
|
|
76
76
|
"resources.audit.availabilityRuleSets.create": "Create availability schedule",
|
|
77
77
|
"resources.audit.availabilityRuleSets.delete": "Delete availability schedule",
|
|
78
78
|
"resources.audit.availabilityRuleSets.update": "Update availability schedule",
|
|
79
|
+
"resources.audit.resourceActivities.create": "Create resource activity",
|
|
80
|
+
"resources.audit.resourceActivities.delete": "Delete resource activity",
|
|
81
|
+
"resources.audit.resourceActivities.update": "Update resource activity",
|
|
82
|
+
"resources.audit.resourceComments.create": "Create resource comment",
|
|
83
|
+
"resources.audit.resourceComments.delete": "Delete resource comment",
|
|
84
|
+
"resources.audit.resourceComments.update": "Update resource comment",
|
|
79
85
|
"resources.audit.resourceTags.assign": "Assign resource tag",
|
|
80
86
|
"resources.audit.resourceTags.create": "Create resource tag",
|
|
81
87
|
"resources.audit.resourceTags.delete": "Delete resource tag",
|
|
@@ -349,6 +355,7 @@
|
|
|
349
355
|
"resources.resources.detail.activities.update": "Update activity (Cmd/Ctrl + Enter)",
|
|
350
356
|
"resources.resources.detail.activities.updateSuccess": "Activity updated.",
|
|
351
357
|
"resources.resources.detail.back": "Back to resources",
|
|
358
|
+
"resources.resources.detail.formTitle": "Resource settings",
|
|
352
359
|
"resources.resources.detail.inline.cancel": "Cancel",
|
|
353
360
|
"resources.resources.detail.inline.clear": "Clear",
|
|
354
361
|
"resources.resources.detail.inline.emailChecking": "Checking for matching records...",
|
|
@@ -435,13 +442,63 @@
|
|
|
435
442
|
"resources.resources.detail.tabs.notes": "Notes",
|
|
436
443
|
"resources.resources.detail.untitled": "Unnamed resource",
|
|
437
444
|
"resources.resources.flash.createdAvailability": "Saved. You can now set availability.",
|
|
445
|
+
"resources.resources.form.actions.create": "Create",
|
|
446
|
+
"resources.resources.form.appearance.colorClear": "Clear color",
|
|
447
|
+
"resources.resources.form.appearance.colorHelp": "Pick a color for this resource.",
|
|
448
|
+
"resources.resources.form.appearance.colorLabel": "Color",
|
|
449
|
+
"resources.resources.form.appearance.iconClear": "Clear icon",
|
|
450
|
+
"resources.resources.form.appearance.iconLabel": "Icon",
|
|
451
|
+
"resources.resources.form.appearance.iconPicker": "Browse icons",
|
|
452
|
+
"resources.resources.form.appearance.iconPlaceholder": "Type an emoji or icon name",
|
|
453
|
+
"resources.resources.form.appearance.iconSearch": "Search icons or emojis…",
|
|
454
|
+
"resources.resources.form.appearance.iconSearchEmpty": "No icons match your search",
|
|
455
|
+
"resources.resources.form.appearance.iconSuggestions": "Suggestions",
|
|
456
|
+
"resources.resources.form.appearance.label": "Appearance",
|
|
457
|
+
"resources.resources.form.appearance.previewEmpty": "No appearance selected",
|
|
458
|
+
"resources.resources.form.createTitle": "Create resource",
|
|
459
|
+
"resources.resources.form.editTitle": "Edit resource",
|
|
460
|
+
"resources.resources.form.errors.create": "Failed to create resource.",
|
|
461
|
+
"resources.resources.form.errors.delete": "Failed to delete resource.",
|
|
462
|
+
"resources.resources.form.errors.load": "Failed to load resource.",
|
|
463
|
+
"resources.resources.form.errors.nameRequired": "Resource name is required.",
|
|
464
|
+
"resources.resources.form.errors.notFound": "Resource not found.",
|
|
465
|
+
"resources.resources.form.errors.update": "Failed to update resource.",
|
|
466
|
+
"resources.resources.form.fields.active": "Active",
|
|
467
|
+
"resources.resources.form.fields.capacity": "Capacity",
|
|
438
468
|
"resources.resources.form.fields.capacity.help": "Depends on the resource and can mean spots, units, quantity, or another type of capacity.",
|
|
439
469
|
"resources.resources.form.fields.capacityUnit": "Capacity unit",
|
|
440
470
|
"resources.resources.form.fields.capacityUnit.missing": "Capacity unit dictionary is not configured.",
|
|
471
|
+
"resources.resources.form.fields.description": "Description",
|
|
472
|
+
"resources.resources.form.fields.name": "Name",
|
|
473
|
+
"resources.resources.form.fields.type": "Resource type",
|
|
441
474
|
"resources.resources.form.fields.type.add": "Add resource type",
|
|
442
475
|
"resources.resources.form.fields.type.manage": "Manage resource types",
|
|
476
|
+
"resources.resources.form.flash.deleted": "Resource deleted.",
|
|
477
|
+
"resources.resources.form.flash.updated": "Resource updated.",
|
|
478
|
+
"resources.resources.form.loading": "Loading resource…",
|
|
479
|
+
"resources.resources.list.actions.create": "Create",
|
|
480
|
+
"resources.resources.list.columns.active": "Active",
|
|
481
|
+
"resources.resources.list.columns.appearance": "Appearance",
|
|
482
|
+
"resources.resources.list.columns.capacity": "Capacity",
|
|
483
|
+
"resources.resources.list.columns.capacity.empty": "Not set",
|
|
484
|
+
"resources.resources.list.columns.name": "Name",
|
|
485
|
+
"resources.resources.list.columns.tags": "Tags",
|
|
486
|
+
"resources.resources.list.columns.tags.empty": "No tags",
|
|
487
|
+
"resources.resources.list.columns.type": "Type",
|
|
488
|
+
"resources.resources.list.columns.type.empty": "No type",
|
|
489
|
+
"resources.resources.list.confirmDelete": "Delete this resource? This action cannot be undone.",
|
|
490
|
+
"resources.resources.list.error.delete": "Failed to delete resource.",
|
|
491
|
+
"resources.resources.list.error.load": "Failed to load resources.",
|
|
443
492
|
"resources.resources.list.filters.resourceType": "Resource type",
|
|
444
493
|
"resources.resources.list.filters.tags": "Tags",
|
|
494
|
+
"resources.resources.list.flash.deleted": "Resource deleted.",
|
|
495
|
+
"resources.resources.list.group.unassigned": "Unassigned",
|
|
496
|
+
"resources.resources.list.group.unknown": "Unknown",
|
|
497
|
+
"resources.resources.page.title": "Resources",
|
|
498
|
+
"resources.resources.schedule.actions.details": "View details",
|
|
499
|
+
"resources.resources.tabs.availability": "Availability",
|
|
500
|
+
"resources.resources.tabs.details": "Details",
|
|
501
|
+
"resources.resources.tabs.label": "Resource sections",
|
|
445
502
|
"resources.resources.tags.cancelShortcut": "Cancel (Esc)",
|
|
446
503
|
"resources.resources.tags.createError": "Failed to create tag.",
|
|
447
504
|
"resources.resources.tags.errors.invalid": "Invalid tag payload",
|
|
@@ -76,6 +76,12 @@
|
|
|
76
76
|
"resources.audit.availabilityRuleSets.create": "Crear horario de disponibilidad",
|
|
77
77
|
"resources.audit.availabilityRuleSets.delete": "Eliminar horario de disponibilidad",
|
|
78
78
|
"resources.audit.availabilityRuleSets.update": "Actualizar horario de disponibilidad",
|
|
79
|
+
"resources.audit.resourceActivities.create": "Crear actividad de recurso",
|
|
80
|
+
"resources.audit.resourceActivities.delete": "Eliminar actividad de recurso",
|
|
81
|
+
"resources.audit.resourceActivities.update": "Actualizar actividad de recurso",
|
|
82
|
+
"resources.audit.resourceComments.create": "Crear comentario de recurso",
|
|
83
|
+
"resources.audit.resourceComments.delete": "Eliminar comentario de recurso",
|
|
84
|
+
"resources.audit.resourceComments.update": "Actualizar comentario de recurso",
|
|
79
85
|
"resources.audit.resourceTags.assign": "Asignar etiqueta de recurso",
|
|
80
86
|
"resources.audit.resourceTags.create": "Crear etiqueta de recurso",
|
|
81
87
|
"resources.audit.resourceTags.delete": "Eliminar etiqueta de recurso",
|
|
@@ -349,6 +355,7 @@
|
|
|
349
355
|
"resources.resources.detail.activities.update": "Actualizar actividad (Cmd/Ctrl + Enter)",
|
|
350
356
|
"resources.resources.detail.activities.updateSuccess": "Actividad actualizada.",
|
|
351
357
|
"resources.resources.detail.back": "Volver a recursos",
|
|
358
|
+
"resources.resources.detail.formTitle": "Configuración de recurso",
|
|
352
359
|
"resources.resources.detail.inline.cancel": "Cancelar",
|
|
353
360
|
"resources.resources.detail.inline.clear": "Claro",
|
|
354
361
|
"resources.resources.detail.inline.emailChecking": "Comprobando registros coincidentes...",
|
|
@@ -435,13 +442,63 @@
|
|
|
435
442
|
"resources.resources.detail.tabs.notes": "Notas",
|
|
436
443
|
"resources.resources.detail.untitled": "Recurso sin nombre",
|
|
437
444
|
"resources.resources.flash.createdAvailability": "Guardado. Ahora puedes establecer la disponibilidad.",
|
|
445
|
+
"resources.resources.form.actions.create": "Crear",
|
|
446
|
+
"resources.resources.form.appearance.colorClear": "Limpiar color",
|
|
447
|
+
"resources.resources.form.appearance.colorHelp": "Seleccione un color para este recurso.",
|
|
448
|
+
"resources.resources.form.appearance.colorLabel": "Color",
|
|
449
|
+
"resources.resources.form.appearance.iconClear": "Limpiar icono",
|
|
450
|
+
"resources.resources.form.appearance.iconLabel": "Icono",
|
|
451
|
+
"resources.resources.form.appearance.iconPicker": "Explorar iconos",
|
|
452
|
+
"resources.resources.form.appearance.iconPlaceholder": "Escriba un emoji o nombre de icono",
|
|
453
|
+
"resources.resources.form.appearance.iconSearch": "Buscar iconos o emojis…",
|
|
454
|
+
"resources.resources.form.appearance.iconSearchEmpty": "Ningún icono coincide con su búsqueda",
|
|
455
|
+
"resources.resources.form.appearance.iconSuggestions": "Sugerencias",
|
|
456
|
+
"resources.resources.form.appearance.label": "Apariencia",
|
|
457
|
+
"resources.resources.form.appearance.previewEmpty": "No se ha seleccionado apariencia",
|
|
458
|
+
"resources.resources.form.createTitle": "Crear recurso",
|
|
459
|
+
"resources.resources.form.editTitle": "Editar recurso",
|
|
460
|
+
"resources.resources.form.errors.create": "Error al crear el recurso.",
|
|
461
|
+
"resources.resources.form.errors.delete": "Error al eliminar el recurso.",
|
|
462
|
+
"resources.resources.form.errors.load": "Error al cargar el recurso.",
|
|
463
|
+
"resources.resources.form.errors.nameRequired": "El nombre del recurso es obligatorio.",
|
|
464
|
+
"resources.resources.form.errors.notFound": "Recurso no encontrado.",
|
|
465
|
+
"resources.resources.form.errors.update": "Error al actualizar el recurso.",
|
|
466
|
+
"resources.resources.form.fields.active": "Activo",
|
|
467
|
+
"resources.resources.form.fields.capacity": "Capacidad",
|
|
438
468
|
"resources.resources.form.fields.capacity.help": "Depende del recurso y puede significar plazas, unidades, cantidad u otro tipo de capacidad.",
|
|
439
469
|
"resources.resources.form.fields.capacityUnit": "Unidad de capacidad",
|
|
440
470
|
"resources.resources.form.fields.capacityUnit.missing": "El diccionario de unidades de capacidad no está configurado.",
|
|
471
|
+
"resources.resources.form.fields.description": "Descripción",
|
|
472
|
+
"resources.resources.form.fields.name": "Nombre",
|
|
473
|
+
"resources.resources.form.fields.type": "Tipo de recurso",
|
|
441
474
|
"resources.resources.form.fields.type.add": "Agregar tipo de recurso",
|
|
442
475
|
"resources.resources.form.fields.type.manage": "Administrar tipos de recurso",
|
|
476
|
+
"resources.resources.form.flash.deleted": "Recurso eliminado.",
|
|
477
|
+
"resources.resources.form.flash.updated": "Recurso actualizado.",
|
|
478
|
+
"resources.resources.form.loading": "Cargando recurso…",
|
|
479
|
+
"resources.resources.list.actions.create": "Crear",
|
|
480
|
+
"resources.resources.list.columns.active": "Activo",
|
|
481
|
+
"resources.resources.list.columns.appearance": "Apariencia",
|
|
482
|
+
"resources.resources.list.columns.capacity": "Capacidad",
|
|
483
|
+
"resources.resources.list.columns.capacity.empty": "No establecido",
|
|
484
|
+
"resources.resources.list.columns.name": "Nombre",
|
|
485
|
+
"resources.resources.list.columns.tags": "Tags",
|
|
486
|
+
"resources.resources.list.columns.tags.empty": "Sin etiquetas",
|
|
487
|
+
"resources.resources.list.columns.type": "Type",
|
|
488
|
+
"resources.resources.list.columns.type.empty": "Sin tipo",
|
|
489
|
+
"resources.resources.list.confirmDelete": "¿Eliminar este recurso? Esta acción no se puede deshacer.",
|
|
490
|
+
"resources.resources.list.error.delete": "Error al eliminar el recurso.",
|
|
491
|
+
"resources.resources.list.error.load": "Error al cargar los recursos.",
|
|
443
492
|
"resources.resources.list.filters.resourceType": "Tipo de recurso",
|
|
444
493
|
"resources.resources.list.filters.tags": "Etiquetas",
|
|
494
|
+
"resources.resources.list.flash.deleted": "Recurso eliminado.",
|
|
495
|
+
"resources.resources.list.group.unassigned": "Sin asignar",
|
|
496
|
+
"resources.resources.list.group.unknown": "Desconocido",
|
|
497
|
+
"resources.resources.page.title": "Recursos",
|
|
498
|
+
"resources.resources.schedule.actions.details": "Ver detalles",
|
|
499
|
+
"resources.resources.tabs.availability": "Disponibilidad",
|
|
500
|
+
"resources.resources.tabs.details": "Detalles",
|
|
501
|
+
"resources.resources.tabs.label": "Secciones de recurso",
|
|
445
502
|
"resources.resources.tags.cancelShortcut": "Cancelar (Esc)",
|
|
446
503
|
"resources.resources.tags.createError": "No se pudo crear la etiqueta.",
|
|
447
504
|
"resources.resources.tags.errors.invalid": "Datos de etiqueta inválidos",
|