From 000b47a58188fe0da3218eed86d00de6e945acf7 Mon Sep 17 00:00:00 2001 From: Brendan Le Ny Date: Wed, 12 Jun 2024 14:22:31 +0200 Subject: [PATCH] Fix some strings --- .../libre/scim/storage/ScimStorageProviderFactory.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/sh/libre/scim/storage/ScimStorageProviderFactory.java b/src/main/java/sh/libre/scim/storage/ScimStorageProviderFactory.java index 7b6336d9ae..f8df06125d 100644 --- a/src/main/java/sh/libre/scim/storage/ScimStorageProviderFactory.java +++ b/src/main/java/sh/libre/scim/storage/ScimStorageProviderFactory.java @@ -62,26 +62,26 @@ public class ScimStorageProviderFactory .name("auth-user") .type(ProviderConfigProperty.STRING_TYPE) .label("Auth username") - .helpText("Required for basic authentification.") + .helpText("Required for basic authentication.") .add() .property() .name("auth-pass") .type(ProviderConfigProperty.PASSWORD) .label("Auth password/token") - .helpText("Password or token required for basic or bearer authentification.") + .helpText("Password or token required for basic or bearer authentication.") .add() .property() .name("propagation-user") .type(ProviderConfigProperty.BOOLEAN_TYPE) .label("Enable user propagation") - .helpText("Should operation on users be propagated to this provider ?") + .helpText("Should operation on users be propagated to this provider?") .defaultValue(BooleanUtils.TRUE) .add() .property() .name("propagation-group") .type(ProviderConfigProperty.BOOLEAN_TYPE) .label("Enable group propagation") - .helpText("Should operation on groups be propagated to this provider ?") + .helpText("Should operation on groups be propagated to this provider?") .defaultValue(BooleanUtils.TRUE) .add() .property() @@ -93,7 +93,7 @@ public class ScimStorageProviderFactory .name("sync-import-action") .type(ProviderConfigProperty.LIST_TYPE) .label("Import action") - .helpText("What to do when the user don\'t exists in Keycloak.") + .helpText("What to do when the user doesn't exists in Keycloak.") .options("NOTHING", "CREATE_LOCAL", "DELETE_REMOTE") .defaultValue("CREATE_LOCAL") .add()