Skip to content

Commit

Permalink
Typo in locales
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Nov 16, 2023
1 parent 27767ed commit 2f9249e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion myconext-gui/src/locale/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ I18n.translations.en = {
studentRole: "Student",
preferInstitution: "Prefer institution",
preferredInstitutionConfirmation: "Do you want to use the information received from {{name}} to be the default information to share with services?",
preferred: "{{name}] is now your preferred source of information",
preferred: "{{name}} is now your preferred source of information",
expired: "Expired",
newInstitution: "Your identity has been verified",
newInstitutionInfo: "We have replaced the following information with the verified data from your institution:",
Expand Down
2 changes: 1 addition & 1 deletion myconext-gui/src/locale/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ I18n.translations.nl = {
studentRole: "Student",
preferInstitution: "Voorkeursinstelling",
preferredInstitutionConfirmation: "Wil je de informatie die we van {{name}} ontvangen, gebruiken als standaardinformatie om met diensten te delen?",
preferred: "{{name}] is nu de bron van je persoonsinformatie",
preferred: "{{name}} is nu de bron van je persoonsinformatie",
expired: "Verlopen",
newInstitution: "Je identiteit is geverifïeerd",
newInstitutionInfo: "We hebben de volgende informatie overschreven met de geverifïeerde gegevens:",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ protected void configure(HttpSecurity http) throws Exception {
.authorizeRequests()
.antMatchers("/**").hasRole("GUEST");

if (environment.acceptsProfiles(Profiles.of("test", "dev"))) {
if (environment.acceptsProfiles(Profiles.of("test", "test2", "dev"))) {
//we can't use @Profile, because we need to add it before the real filter
http.addFilterBefore(new MockShibbolethFilter(), ShibbolethPreAuthenticatedProcessingFilter.class);
}
Expand Down

0 comments on commit 2f9249e

Please sign in to comment.