Skip to content

Commit

Permalink
Merge branch 'feat/VCST-1993-localization' into Maria-Volkova-Tula-pa…
Browse files Browse the repository at this point in the history
…tch-2
  • Loading branch information
OlegoO authored Oct 22, 2024
2 parents 161bf8e + f75d13a commit 63a4dc0
Show file tree
Hide file tree
Showing 17 changed files with 4,456 additions and 839 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>3.856.0</VersionPrefix>
<VersionPrefix>3.857.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
<NoWarn>$(NoWarn);S3875;S4457</NoWarn>
Expand Down
29 changes: 17 additions & 12 deletions module.ignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ Azure.Messaging.EventGrid.dll
Azure.Security.KeyVault.Secrets.dll
Dapper.dll
DnsClient.dll
dotnet-swagger.dll
EntityFrameworkCore.Triggers.dll
FluentValidation.dll
Hangfire.AspNetCore.dll
Hangfire.Console.dll
Hangfire.Core.dll
Hangfire.Core.resources.dll
Hangfire.MemoryStorage.dll
Hangfire.MySql.dll
Hangfire.NetCore.dll
Expand All @@ -36,9 +34,6 @@ Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
Microsoft.AspNetCore.JsonPatch.dll
Microsoft.AspNetCore.Metadata.dll
Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
Microsoft.AspNetCore.Server.Kestrel.Https.dll
Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll
Microsoft.AspNetCore.SignalR.Client.Core.dll
Microsoft.AspNetCore.SignalR.Client.dll
Microsoft.AspNetCore.SignalR.Common.dll
Expand All @@ -50,6 +45,7 @@ Microsoft.Azure.SignalR.Common.dll
Microsoft.Azure.SignalR.dll
Microsoft.Azure.SignalR.Protocols.dll
Microsoft.Bcl.AsyncInterfaces.dll
Microsoft.Bcl.TimeProvider.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.resources.dll
Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Expand All @@ -66,20 +62,28 @@ Microsoft.EntityFrameworkCore.Design.dll
Microsoft.EntityFrameworkCore.dll
Microsoft.EntityFrameworkCore.Relational.dll
Microsoft.EntityFrameworkCore.SqlServer.dll
Microsoft.Extensions.Caching.Memory.dll
Microsoft.Extensions.AmbientMetadata.Application.dll
Microsoft.Extensions.Compliance.Abstractions.dll
Microsoft.Extensions.Configuration.AzureAppConfiguration.dll
Microsoft.Extensions.Configuration.Binder.dll
Microsoft.Extensions.DependencyInjection.Abstractions.dll
Microsoft.Extensions.DependencyInjection.dll
Microsoft.Extensions.DependencyInjection.AutoActivation.dll
Microsoft.Extensions.DependencyModel.dll
Microsoft.Extensions.DiagnosticAdapter.dll
Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll
Microsoft.Extensions.Features.dll
Microsoft.Extensions.Http.Diagnostics.dll
Microsoft.Extensions.Http.Polly.dll
Microsoft.Extensions.Http.Resilience.dll
Microsoft.Extensions.Identity.Core.dll
Microsoft.Extensions.Identity.Stores.dll
Microsoft.Extensions.Logging.Abstractions.dll
Microsoft.Extensions.Logging.AzureAppServices.dll
Microsoft.Extensions.ObjectPool.dll
Microsoft.Extensions.Options.dll
Microsoft.Extensions.PlatformAbstractions.dll
Microsoft.Extensions.Resilience.dll
Microsoft.Extensions.Telemetry.Abstractions.dll
Microsoft.Extensions.Telemetry.dll
Microsoft.Identity.Client.dll
Microsoft.Identity.Client.Extensions.Msal.dll
Microsoft.IdentityModel.Abstractions.dll
Expand All @@ -88,10 +92,12 @@ Microsoft.IdentityModel.Logging.dll
Microsoft.IdentityModel.Protocols.dll
Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
Microsoft.IdentityModel.Tokens.dll
Microsoft.IdentityModel.Validators.dll
Microsoft.IO.RecyclableMemoryStream.dll
Microsoft.Net.Http.Headers.dll
Microsoft.NET.StringTools.dll
Microsoft.OpenApi.dll
Microsoft.SqlServer.Server.dll
Microsoft.VisualStudio.Web.BrowserLink.dll
Microsoft.Win32.SystemEvents.dll
Mono.TextTemplating.dll
MySqlConnector.dll
Expand Down Expand Up @@ -124,7 +130,9 @@ package-lock.json
Pipelines.Sockets.Unofficial.dll
Polly.Core.dll
Polly.dll
Polly.Extensions.dll
Polly.Extensions.Http.dll
Polly.RateLimiting.dll
Pomelo.EntityFrameworkCore.MySql.dll
RedLockNet.Abstractions.dll
RedLockNet.SERedis.dll
Expand All @@ -139,7 +147,6 @@ Serilog.Settings.Configuration.dll
Serilog.Sinks.Console.dll
Serilog.Sinks.Debug.dll
Serilog.Sinks.File.dll
sni.dll
StackExchange.Redis.dll
Swashbuckle.AspNetCore.Annotations.dll
Swashbuckle.AspNetCore.Filters.Abstractions.dll
Expand All @@ -156,13 +163,11 @@ System.Composition.Hosting.dll
System.Composition.Runtime.dll
System.Composition.TypedParts.dll
System.Configuration.ConfigurationManager.dll
System.Data.SqlClient.dll
System.Drawing.Common.dll
System.IdentityModel.Tokens.Jwt.dll
System.IO.Abstractions.dll
System.Linq.Async.dll
System.Memory.Data.dll
System.Net.WebSockets.WebSocketProtocol.dll
System.Runtime.Caching.dll
System.Security.Cryptography.ProtectedData.dll
System.Security.Cryptography.Xml.dll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static bool IsExternalSignIn(this ClaimsPrincipal claimsPrincipal)

public static string GetAuthenticationMethod(this ClaimsPrincipal claimsPrincipal)
{
return claimsPrincipal?.GetClaim(ClaimTypes.AuthenticationMethod);
return claimsPrincipal?.FindFirstValue(ClaimTypes.AuthenticationMethod);
}

public static ClaimsPrincipal SetAuthenticationMethod(this ClaimsPrincipal claimsPrincipal, string value, IList<string> destinations)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.IdentityModel.Validators" Version="8.1.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.8.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,121 +5,147 @@
"activate": "Aktivieren",
"assign": "Zuweisen",
"cancel": "Abbrechen",
"clear": " Löschen",
"clear-all": "Alle löschen",
"clear": "Löschen",
"clear-all": "Alles löschen",
"clone": "Klonen",
"close": "Schließen",
"confirm": "Bestätigen",
"copy-link": "Link kopieren",
"copy": "Kopieren",
"create": "Erstellen",
"cut": "Ausschneiden",
"delete": "Löschen",
"add-all": "Alle hinzufügen",
"remove-all": "Alle löschen",
"download": "Herunterladen",
"edit": "Bearbeiten",
"export": "Exportieren",
"generate": "Generieren",
"import": "Importieren",
"import-sample-data": "Beispieldaten importieren",
"install": "Installieren",
"manage": "Verwalten",
"more": "Mehr",
"no": "Nein",
"new-folder": "Neuer Ordner",
"new-license": "Lizenz erneuern",
"ok": "Ok",
"ok": "OK",
"paste": "Einfügen",
"pick-selected": "Abholung ausgewählt",
"pick-selected": "Ausgewählte auswählen",
"preview": "Vorschau",
"open-browser": "In Browser öffnen",
"open-browser": "Im Browser öffnen",
"redo": "Wiederholen",
"refresh": "Aktualisieren",
"remove": "Entfernen",
"reset": "Zurücksetzen",
"restart": "Neu starten",
"restart": "Neustart",
"save": "Speichern",
"send": "Senden",
"select-all": "Alle auswählen",
"set-to-default": "Auf Standard setzen",
"start-export": "Export starten",
"settings": "Einstellungen",
"sign-out": "Abmelden",
"undo": "Rückgängig machen",
"undo": "Rückgängig",
"uninstall": "Deinstallieren",
"unselect-all": "Markierung aufheben",
"unselect-all": "Alle abwählen",
"update": "Aktualisieren",
"upload": "Hochladen",
"yes": "Ja",
"add-new-property": "Neue Eigenschaft",
"manage-type-properties": "Typen verwalten",
"add-new-property": "Neue Eigenschaft hinzufügen",
"manage-type-properties": "Eigenschaftstypen",
"manage-profile": "Profil verwalten",
"minimize": "Minimieren",
"maximize": "Maximieren",
"stop-sending": "Senden",
"stop-sending": "Senden stoppen",
"set-active": "Aktiv setzen",
"reject-user": "Benutzer ablehnen",
"change-password": "Passwort ändern",
"unlock-account": "Konto entsperren",
"lock-account": "Konto sperren",
"today": "Heute",
"see-details": "Siehe Einzelheiten",
"dismiss": "Weggetreten"
"time": "Zeit",
"now": "Jetzt",
"date": "Datum",
"see-details": "Details anzeigen",
"dismiss": "Verwerfen",
"hide-empty-property-values": "Leere Werte ausblenden",
"show-empty-property-values": "Leere Werte anzeigen",
"titles": {
"refresh": "Aktualisieren",
"new-folder": "Neuer Ordner",
"upload": "Hochladen"
}
},
"list": {
"no-data": "Keine Daten",
"count": "Anzahl"
"count": "Anzahl",
"loading": "Wird geladen...",
"item-not-found": "Fehler: Nicht gefunden"
},
"placeholders": {
"n-a": "N/A",
"no-file": "Datei wählen",
"search-keyword": "Durchsuchen..."
"n-a": "N/V",
"no-file": "Datei auswählen",
"search-keyword": "Suchbegriff eingeben...",
"select-value": "Wert auswählen",
"select-values": "Werte auswählen"
},
"dialogs": {
"delete": {
"title": "Bestätigung löschen",
"message": "Möchten Sie die ausgewählten Einträge löschen?"
"title": "Löschbestätigung",
"message": "Sind Sie sicher, dass Sie die ausgewählten Einträge löschen möchten?"
}
},
"properties": {
"short-text": {
"title": "Kurztext",
"description": "Texte kürzer als 1024 Zeichen."
"title": "Kurzer Text",
"description": "Textwerte unter 1024 Zeichen"
},
"long-text": {
"title": "Langer Text",
"description": "Text ohne Längenbeschränkung."
"description": "Unbegrenzter Text ohne Größenbeschränkung"
},
"integer": {
"title": "Ganzzahl",
"description": "Ganzzahl."
"description": "Ganze Zahl"
},
"decimal": {
"title": "Anzahl",
"description": "Zahl mit ."
"title": "Dezimalzahl",
"description": "Dezimalzahl mit einer Genauigkeit von 18 und einer Skalierung von 4"
},
"date-time": {
"title": "Datum und Uhrzeit",
"description": "Datum auswählen."
"description": "Datum auswählen"
},
"boolean": {
"title": "boolean",
"description": "Ja oder Nein"
"title": "Boolesch",
"description": "Schaltertyp"
},
"html": {
"title": "HTML",
"description": "HTML-Markup."
"description": "HTML-Markup"
},
"undefined": {
"title": "Nicht definiert"
"title": "Undefiniert"
},
"image": {
"title": "Bild",
"description": "Bildtyp"
}
},
"genericValueInput": {
"placeholders": {
"short-text": "Kurztext eingeben",
"short-text": "Kurzen Text eingeben",
"secure-string": "Geheimen Text eingeben",
"url": " URL eingeben",
"email": "E-Mail eingeben",
"url": "URL eingeben",
"long-text": "Langen Text eingeben",
"integer": "Ganzzahl eingeben",
"integer": "Ganze Zahl eingeben",
"number": "Dezimalzahl eingeben",
"date-time": "Datum auswählen",
"short-text-multivalue": "Wert hinzufügen",
"integer-multivalue": "Integer hinzufügen",
"number-multivalue": "Dezimal hinzufügen",
"integer-multivalue": "Ganzzahl hinzufügen",
"number-multivalue": "Dezimalzahl hinzufügen",
"short-text-dictionary": "Wert auswählen",
"short-text-dictionary-multivalue": "Wert auswählen",
"short-text-multilang": "Wert eingeben",
Expand All @@ -128,12 +154,35 @@
"short-text-dictionary-multilang": "Wert auswählen",
"short-text-dictionary-multivalue-multilang": "Wert auswählen",
"long-text-dictionary-multivalue-multilang": "Wert auswählen"
},
"short-text-input": {
"placeholder": "Wert eingeben",
"required": "Erforderlich",
"maxLength": "Dieses Feld darf nicht mehr als {{number}} Zeichen enthalten"
}
},
"short-text-input": {
"placeholder": "Wert eingeben",
"required": "Dieses Feld ist erforderlich",
"maxLength": "Dieses Feld darf nicht mehr als {{number}} Zeichen enthalten"
},
"validators": {
"uriWithoutQuery": {
"error": "Ungültiges URI-Format. Stellen Sie sicher, dass die URI keine Abfrageparameter enthält"
}
},
"errors": {
"generic-error": "Fehler",
"400": "Ungültige Anfrage",
"401": "Nicht autorisiert",
"403": "Verboten",
"404": "Nicht gefunden",
"405": "Methode nicht erlaubt",
"406": "Nicht akzeptabel",
"407": "Proxy-Authentifizierung erforderlich",
"408": "Zeitüberschreitung der Anfrage",
"409": "Konflikt",
"429": "Zu viele Anfragen",
"500": "Interner Serverfehler",
"501": "Nicht implementiert",
"502": "Schlechtes Gateway",
"503": "Dienst nicht verfügbar",
"504": "Gateway-Zeitüberschreitung"
}
}
}
}
Loading

0 comments on commit 63a4dc0

Please sign in to comment.