Skip to content

Commit 68e8e53

Browse files
Update translations before release of v2025.1 (#1257)
1 parent 779e86e commit 68e8e53

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1159
-733
lines changed

src/components/analytics/metrics-table.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ export default {
233233
"num_forms_with_geospatial": "Anzahl Formulare mit Geodata",
234234
"num_forms_with_encryption": "Anzahl Formulare mit Verschlüsselung",
235235
"num_forms_with_audits": "Anzahl Formulare mit Audits",
236+
"num_forms_webforms_enabled": "Anzahl der Formulare mit aktivierten Web-Formularen",
236237
"num_reused_form_ids": "Anzahl wiederverwendeter Formular-IDs",
237238
"num_open_forms": "Anzahl offener Formulare",
238239
"num_closing_forms": "Anzahl schliessender Formulare",
@@ -275,8 +276,14 @@ export default {
275276
"avg_entity_submission_delay": "Durchschnitt Objektübermittlung-Verarbeitungsverzögerung",
276277
"uses_external_blob_store": "Der Server verwendet externen S3-kompatiblen Speicher",
277278
"num_offline_entity_submissions_force_processed": "Anzahl der zwangsverarbeiteten Offline-Entity-Einsendungen",
279+
"max_entity_branch_delay": "Maximale Zeit für die Verarbeitung der Offline-Aktualisierungskette für Entitäten",
280+
"num_xml_only_form_defs": "Anzahl der Formulardefinitionen ohne zugehöriges XLSFormular",
278281
"num_blob_files": "Anzahl der Binärdateien",
279-
"num_entity_creates_sub": "Anzahl der erstellten Entitäten über Übermittlungen"
282+
"num_blob_files_on_s3": "Anzahl der derzeit in einem S3-kompatiblen Speicher gespeicherten Binärdateien",
283+
"num_reset_failed_to_pending_count": "Anzahl der Fälle, in denen der Benutzer einen fehlgeschlagenen Upload auf einen S3-kompatiblen Speicher zurückgesetzt hat",
284+
"num_entity_creates_sub": "Anzahl der erstellten Entitäten über Übermittlungen",
285+
"num_entity_creates_api": "Anzahl der über API erstellten Entitäten",
286+
"num_entity_creates_bulk": "Anzahl der Entitäten, die über Massen-Upload erstellt wurden"
280287
}
281288
},
282289
"es": {
@@ -303,6 +310,7 @@ export default {
303310
"num_forms_with_geospatial": "Número de formularios con geodatos",
304311
"num_forms_with_encryption": "Número de formularios con cifrado",
305312
"num_forms_with_audits": "Número de formularios con auditorías",
313+
"num_forms_webforms_enabled": "Número de formularios con formularios web activados",
306314
"num_reused_form_ids": "Número de ID de formulario reutilizados",
307315
"num_open_forms": "Número de formularios abiertos",
308316
"num_closing_forms": "Número de formularios de cierre",
@@ -379,6 +387,7 @@ export default {
379387
"num_forms_with_geospatial": "Nombre de formulaires avec données géographiques",
380388
"num_forms_with_encryption": "Nombre de formulaires avec chiffrement",
381389
"num_forms_with_audits": "Nombre de formulaires avec audits",
390+
"num_forms_webforms_enabled": "Nombre de Formulaires ayant Web Forms activé",
382391
"num_reused_form_ids": "Nombre d'ID de formulaires réutilisés",
383392
"num_open_forms": "Nombre de formulaires ouverts",
384393
"num_closing_forms": "Nombre de formulaires en cours de fermeture",
@@ -479,6 +488,7 @@ export default {
479488
"num_forms_with_geospatial": "Numero di formulari con geodati",
480489
"num_forms_with_encryption": "Numero di formulari con crittografia abilitata",
481490
"num_forms_with_audits": "Numero di formulari con audit",
491+
"num_forms_webforms_enabled": "Numero di formulari con i Formulari Web abilitati",
482492
"num_reused_form_ids": "Numero di ID formulario riutilizzati",
483493
"num_open_forms": "Numero di formulari aperti",
484494
"num_closing_forms": "Numero di formulari in fase di chiusura",

src/components/audit/filters.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,17 @@ export default {
5656
<!-- Autogenerated by destructure.js -->
5757
<i18n>
5858
{
59+
"de": {
60+
"noLogDateSelected": "(keine)"
61+
},
62+
"es": {
63+
"noLogDateSelected": "(ninguno)"
64+
},
5965
"fr": {
6066
"noLogDateSelected": "(Aucune)"
67+
},
68+
"it": {
69+
"noLogDateSelected": "(nessuno)"
6170
}
6271
}
6372
</i18n>

src/components/dataset/entities.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ export default {
212212
<i18n>
213213
{
214214
"de": {
215+
"upload": "Entitäten hochladen",
215216
"alert": {
216217
"upload": "Erfolgreich! Ihre Entitäten wurden hochgeladen."
217218
},
@@ -222,6 +223,7 @@ export default {
222223
"analyzeDisabledDeletedData": "Der OData-Zugriff ist für gelöschte Entitäten nicht verfügbar"
223224
},
224225
"es": {
226+
"upload": "Subir entidades",
225227
"alert": {
226228
"upload": "¡Éxito! Tus entidades han sido cargadas."
227229
},
@@ -243,6 +245,7 @@ export default {
243245
"analyzeDisabledDeletedData": "L'accès OData n'est pas disponible pour les entités supprimées"
244246
},
245247
"it": {
248+
"upload": "Caricare Entità",
246249
"alert": {
247250
"upload": "L'operazione è riuscita con successo! Le tue Entità sono state caricate."
248251
},

src/components/dataset/pending-submissions.vue

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,12 @@ const convert = ref(null);
131131
"userAction": "Sie legen fest, dass die Erstellung von Entitäten erfolgt, wenn die Übermittlungen erstmals von Central empfangen werden."
132132
},
133133
"dontConvert": {
134-
"label": "Ich verstehe und das ist für mich kein Problem."
134+
"label": "Ich verstehe und das ist für mich kein Problem.",
135+
"description": "Ändern Sie die Einstellung und tun Sie nichts mit den ausstehenden Übermittlungen."
136+
},
137+
"convert": {
138+
"label": "Konvertieren Sie alle ausstehenden Übermittlungen, die Entitäten erstellen.",
139+
"description": "Ändern Sie die Einstellung und erstellen Sie Entitäten aus allen Übermittlungen, die eine Entitätserstellung anzeigen und nicht genehmigt oder abgelehnt wurden."
135140
}
136141
},
137142
"es": {
@@ -140,7 +145,11 @@ const convert = ref(null);
140145
"changeSetting": "Cambiar ajustes"
141146
},
142147
"explanation": {
143-
"userAction": "Está configurando la creación de la Entidad para que ocurra cuando Central recibe los Envíos por primera vez."
148+
"userAction": "Está configurando la creación de la Entidad para que ocurra cuando Central recibe los Envíos por primera vez.",
149+
"implication": {
150+
"full": "Actualmente tiene {records} ni Aprobado ni Rechazado. | Actualmente tiene {records} ni Aprobados ni Rechazados. | Actualmente tiene {records} ni Aprobados ni Rechazados.",
151+
"records": "{count} registro pendiente | {count} registros pendientes | {count} registros pendientes"
152+
}
144153
},
145154
"dontConvert": {
146155
"label": "Lo entiendo y esto no es un problema para mí.",
@@ -180,7 +189,7 @@ const convert = ref(null);
180189
"explanation": {
181190
"userAction": "Stai impostando la creazione dell'Entità in modo che avvenga quando gli invii vengono ricevuti per la prima volta da Central.",
182191
"implication": {
183-
"full": "Al momento non avete segnato {records} né Approvato né Rifiutato. | Al momento non avete segnato {records} né Approvati né Rifiutati. | Al momento non avete segnato {records}né Approvati né Rifiutati.",
192+
"full": "Al momento non avete segnato {records} né Approvato né Rifiutato. | Al momento non avete segnato {records} né Approvati né Rifiutati. | Al momento non avete segnato {records} né Approvati né Rifiutati.",
184193
"records": "{count} registrazione in sospeso | {count} registrazioni in sospeso | {count} registrazioni in sospeso"
185194
}
186195
},

src/components/dataset/show.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ export default {
177177
"es": {
178178
"back": "Back to Project Entities",
179179
"infoNav": {
180-
"connectedForms": "Actualizar por {count}formulario | Actualizar por {count}formularios | Actualizar por {count}formularios",
181-
"linkedForms": "Utilizado en {count}formulario | Utilizado en {count}formularios | Utilizado en{count}formularios"
180+
"connectedForms": "Actualizar por {count} formulario | Actualizar por {count} formularios | Actualizar por {count} formularios",
181+
"linkedForms": "Utilizado en {count} formulario | Utilizado en {count} formularios | Utilizado en {count} formularios"
182182
}
183183
},
184184
"fr": {
@@ -191,8 +191,8 @@ export default {
191191
"it": {
192192
"back": "Torna alle Entità del progetto",
193193
"infoNav": {
194-
"connectedForms": "Aggiornato da{count} Formulario | Aggiornato da {count}Formulari | Aggiornato da {count}Formulari",
195-
"linkedForms": "Usato da{count} Formulario | Usato da {count}Formulari | Usato da {count}Formulari"
194+
"connectedForms": "Aggiornato da {count} Formulario | Aggiornato da {count} Formulari | Aggiornato da {count} Formulari",
195+
"linkedForms": "Usato da {count} Formulario | Usato da {count} Formulari | Usato da {count} Formulari"
196196
}
197197
},
198198
"pt": {

src/components/download.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ onMounted(() => { link.value.click(); });
9797
"body": "{filename}はすぐにダウンロードされます。ダウンロードが始めると、このページから移動しても構いません。"
9898
},
9999
"pt": {
100-
"body": "O arquivo {filename}será baixado em breve. Assim que o download começar, você poderá sair dessa página."
100+
"body": "O arquivo {filename} será baixado em breve. Assim que o download começar, você poderá sair dessa página."
101101
},
102102
"sw": {
103103
"body": "{filename} itaanza kupakuliwa hivi karibuni. Mara tu upakuaji unapoanza, unaweza kuondoka kwenye ukurasa huu"

src/components/entity/download-button.vue

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,28 @@ const downloadFiltered = computed(() => (odataEntities.dataExists
105105
<!-- Autogenerated by destructure.js -->
106106
<i18n>
107107
{
108+
"de": {
109+
"action": {
110+
"download": {
111+
"unfiltered": "{count} Entität herunterladen | Alle {count} Entitäten herunterladen",
112+
"filtered": {
113+
"withCount": "{count} Entität herunterladen, die dem Filter entsprechen | {count} Entitäten herunterladen, die dem Filter entsprechen",
114+
"withoutCount": "Alle Entitäten herunterladen, die dem Filter entsprechen"
115+
}
116+
}
117+
}
118+
},
119+
"es": {
120+
"action": {
121+
"download": {
122+
"unfiltered": "Descargar {count} Entidad | Descargar todas las {count} Entidades | Descargar todas las {count} Entidades",
123+
"filtered": {
124+
"withCount": "Descargar {count} Entidad que coincide con el filtro | Descargar {count} entidades que coincidan con el filtro | Descargar {count} entidades que coincidan con el filtro",
125+
"withoutCount": "Descargar todas las entidades que coincidan con el filtro"
126+
}
127+
}
128+
}
129+
},
108130
"fr": {
109131
"action": {
110132
"download": {
@@ -115,6 +137,17 @@ const downloadFiltered = computed(() => (odataEntities.dataExists
115137
}
116138
}
117139
}
140+
},
141+
"it": {
142+
"action": {
143+
"download": {
144+
"unfiltered": "Scarica {count} entità | Scarica tutte le {count} entità | Scarica tutte le {count} entità",
145+
"filtered": {
146+
"withCount": "Scaricare la {count} Entità che corrisponde al filtro | Scaricare le {count} Entità che corrispondono al filtro | Scaricare le {count} Entità che corrispondono al filtro",
147+
"withoutCount": "Scaricare tutte le Entità che corrispondono al filtro"
148+
}
149+
}
150+
}
118151
}
119152
}
120153
</i18n>

src/components/entity/feed-entry.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,8 @@ const showBranchData = () => {
420420
"api": "Datos actualizados por {name}"
421421
},
422422
"update_resolve": "Advertencia de conflicto resuelto por {name}",
423-
"delete": "Entidad {label} eliminada por {name}"
423+
"delete": "Entidad {label} eliminada por {name}",
424+
"restore": "Entidad {label} restablecida por {name}"
424425
}
425426
},
426427
"offlineUpdate": "Actualización offline"

src/components/entity/filters/conflict.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ const placeholder = (counts) => {
125125
"all": "Alle",
126126
"none": "Keine"
127127
}
128-
}
128+
},
129+
"allSelectedConflictSelected": "(Alle)"
129130
},
130131
"es": {
131132
"conflict": {
@@ -141,7 +142,8 @@ const placeholder = (counts) => {
141142
"all": "Todos",
142143
"none": "Ninguno"
143144
}
144-
}
145+
},
146+
"allSelectedConflictSelected": "(Todos)"
145147
},
146148
"fr": {
147149
"conflict": {
@@ -158,7 +160,7 @@ const placeholder = (counts) => {
158160
"none": "Aucun"
159161
}
160162
},
161-
"noSelectedConflictSelected": "(aucun)"
163+
"allSelectedConflictSelected": "(Tous)"
162164
},
163165
"it": {
164166
"conflict": {
@@ -174,7 +176,8 @@ const placeholder = (counts) => {
174176
"all": "Tutto",
175177
"none": "Nessuno/a"
176178
}
177-
}
179+
},
180+
"allSelectedConflictSelected": "(Tutto)"
178181
},
179182
"pt": {
180183
"conflict": {

src/components/entity/list.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,11 +509,18 @@ export default {
509509
"de": {
510510
"noEntities": "Es gibt keine Entitäten zum Anzeigen.",
511511
"noMatching": "Es gibt keine passenden Entitäten.",
512+
"allDeleted": "Alle Entitäten werden gelöscht.",
513+
"allDeletedOnPage": "Alle Entitäten auf der Seite wurden gelöscht.",
512514
"alert": {
513515
"delete": "Die Entität \"{label}“ wurde gelöscht."
514516
},
515517
"filterDisabledMessage": "Filterung ist für gelöschte Entitäten nicht verfügbar",
516-
"downloadDisabled": "Der Download ist für gelöschte Entitäten nicht verfügbar"
518+
"downloadDisabled": "Der Download ist für gelöschte Entitäten nicht verfügbar",
519+
"deletedEntity": {
520+
"emptyTable": "Es gibt keine gelöschten Entitäten.",
521+
"allRestored": "Alle gelöschten Entitäten werden wiederhergestellt.",
522+
"allRestoredOnPage": "Alle Entitäten auf der Seite wurden wiederhergestellt."
523+
}
517524
},
518525
"es": {
519526
"noEntities": "No hay Entidades para mostrar.",

0 commit comments

Comments
 (0)