Fix some strings

This commit is contained in:
Brendan Le Ny 2024-06-12 14:22:31 +02:00
parent 62eff08fcf
commit 000b47a581

View file

@ -62,26 +62,26 @@ public class ScimStorageProviderFactory
.name("auth-user") .name("auth-user")
.type(ProviderConfigProperty.STRING_TYPE) .type(ProviderConfigProperty.STRING_TYPE)
.label("Auth username") .label("Auth username")
.helpText("Required for basic authentification.") .helpText("Required for basic authentication.")
.add() .add()
.property() .property()
.name("auth-pass") .name("auth-pass")
.type(ProviderConfigProperty.PASSWORD) .type(ProviderConfigProperty.PASSWORD)
.label("Auth password/token") .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() .add()
.property() .property()
.name("propagation-user") .name("propagation-user")
.type(ProviderConfigProperty.BOOLEAN_TYPE) .type(ProviderConfigProperty.BOOLEAN_TYPE)
.label("Enable user propagation") .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) .defaultValue(BooleanUtils.TRUE)
.add() .add()
.property() .property()
.name("propagation-group") .name("propagation-group")
.type(ProviderConfigProperty.BOOLEAN_TYPE) .type(ProviderConfigProperty.BOOLEAN_TYPE)
.label("Enable group propagation") .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) .defaultValue(BooleanUtils.TRUE)
.add() .add()
.property() .property()
@ -93,7 +93,7 @@ public class ScimStorageProviderFactory
.name("sync-import-action") .name("sync-import-action")
.type(ProviderConfigProperty.LIST_TYPE) .type(ProviderConfigProperty.LIST_TYPE)
.label("Import action") .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") .options("NOTHING", "CREATE_LOCAL", "DELETE_REMOTE")
.defaultValue("CREATE_LOCAL") .defaultValue("CREATE_LOCAL")
.add() .add()