Browse Source

Translation fix.

pull/590/head
Sebastian 5 years ago
parent
commit
e5442871e4
  1. 8
      backend/i18n/frontend_en.json
  2. 4
      backend/i18n/frontend_it.json
  3. 4
      backend/i18n/frontend_nl.json
  4. 6
      backend/i18n/source/frontend_en.json
  5. 3
      backend/src/Squidex.Domain.Apps.Entities/Contents/BackupContents.cs

8
backend/i18n/frontend_en.json

@ -13,8 +13,8 @@
"apps.appsButtonCreate": "Apps Overview",
"apps.appsButtonFallbackTitle": "Apps Overview",
"apps.archieve": "Archive App",
"apps.archieveConfirmText": "Remove pattern",
"apps.archieveConfirmTitle": "Do you really want to archive this app?",
"apps.archieveConfirmText": "Do you really want to archive this App?",
"apps.archieveConfirmTitle": "Archive App",
"apps.archieveWarning": "Once you archive an app, there is no going back. Please be certain.",
"apps.archiveFailed": "Failed to archive app. Please reload.",
"apps.create": "Create App",
@ -36,8 +36,8 @@
"apps.image": "Image",
"apps.imageDrop": "Drop to upload",
"apps.leave": "Leave app",
"apps.leaveConfirmText": "Leave app.",
"apps.leaveConfirmTitle": "Do you really want to leave this app?",
"apps.leaveConfirmText": "Do you really want to leave this app?",
"apps.leaveConfirmTitle": "Leave app.",
"apps.leaveFailed": "Failed to leave app. Please reload.",
"apps.listPageTitle": "Apps",
"apps.loadFailed": "Failed to load apps. Please reload.",

4
backend/i18n/frontend_it.json

@ -36,8 +36,8 @@
"apps.image": "Immagine",
"apps.imageDrop": "Trascina il file per caricare",
"apps.leave": "Leave app",
"apps.leaveConfirmText": "Leave app.",
"apps.leaveConfirmTitle": "Do you really want to leave this app?",
"apps.leaveConfirmText": "Do you really want to leave this app?",
"apps.leaveConfirmTitle": "Leave app.",
"apps.leaveFailed": "Failed to leave app. Please reload.",
"apps.listPageTitle": "App",
"apps.loadFailed": "Non è stato possibile caricare le App. Per favore ricarica.",

4
backend/i18n/frontend_nl.json

@ -36,8 +36,8 @@
"apps.image": "Afbeelding",
"apps.imageDrop": "Zet neer om te uploaden",
"apps.leave": "Leave app",
"apps.leaveConfirmText": "Leave app.",
"apps.leaveConfirmTitle": "Do you really want to leave this app?",
"apps.leaveConfirmText": "Do you really want to leave this app?",
"apps.leaveConfirmTitle": "Leave app.",
"apps.leaveFailed": "Failed to leave app. Please reload.",
"apps.listPageTitle": "Apps",
"apps.loadFailed": "Laden van apps is mislukt. Laad opnieuw.",

6
backend/i18n/source/frontend_en.json

@ -13,8 +13,8 @@
"apps.appsButtonCreate": "Apps Overview",
"apps.appsButtonFallbackTitle": "Apps Overview",
"apps.archieve": "Archive App",
"apps.archieveConfirmText": "Remove pattern",
"apps.archieveConfirmTitle": "Do you really want to archive this app?",
"apps.archieveConfirmText": "Do you really want to archive this App?",
"apps.archieveConfirmTitle": "Archive App",
"apps.archieveWarning": "Once you archive an app, there is no going back. Please be certain.",
"apps.archiveFailed": "Failed to archive app. Please reload.",
"apps.create": "Create App",
@ -36,8 +36,8 @@
"apps.image": "Image",
"apps.imageDrop": "Drop to upload",
"apps.leave": "Leave app",
"apps.leaveConfirmTitle": "Leave app.",
"apps.leaveConfirmText": "Do you really want to leave this app?",
"apps.leaveConfirmTitle": "Leave app.",
"apps.leaveFailed": "Failed to leave app. Please reload.",
"apps.listPageTitle": "Apps",
"apps.loadFailed": "Failed to load apps. Please reload.",

3
backend/src/Squidex.Domain.Apps.Entities/Contents/BackupContents.cs

@ -85,7 +85,8 @@ namespace Squidex.Domain.Apps.Entities.Contents
contentIdsBySchemaId.Remove(schemaDeleted.SchemaId.Id);
break;
case ContentCreated contentCreated:
contentIdsBySchemaId.GetOrAddNew(contentCreated.SchemaId.Id).Add(@event.Headers.AggregateId());
contentIdsBySchemaId.GetOrAddNew(contentCreated.SchemaId.Id)
.Add(@event.Headers.AggregateId());
if (assetsUrlNew != null && assetsUrlOld != null)
{

Loading…
Cancel
Save