Skip to content

Commit

Permalink
Fix #1514: Add support for more languages
Browse files Browse the repository at this point in the history
  • Loading branch information
zcgandcomp committed Dec 19, 2023
1 parent 207d0b8 commit 871348c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ public String authenticate(Map<String, Object> model, HttpServletRequest request
model.put("i18n_EN", i18nService.generateMessages(Locale.ENGLISH));
model.put("i18n_UK", i18nService.generateMessages(new Locale("uk")));
model.put("i18n_RO", i18nService.generateMessages(new Locale("ro")));
model.put("i18n_DE", i18nService.generateMessages(new Locale("de")));
model.put("i18n_FR", i18nService.generateMessages(new Locale("fr")));
model.put("i18n_ES", i18nService.generateMessages(new Locale("es")));
model.put("operationHash", operationSessionService.generateOperationHash(operationId));
model.put("showAndroidSecurityWarning", webFlowConfig.getShowAndroidSecurityWarning());
model.put("usernameMaxLength", webFlowConfig.getUsernameMaxLength());
Expand Down
22 changes: 20 additions & 2 deletions powerauth-webflow/src/main/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,31 @@ import enLocaleData from "react-intl/locale-data/en";
import csLocaleData from "react-intl/locale-data/cs";
import ukLocaleData from "react-intl/locale-data/uk";
import roLocaleData from "react-intl/locale-data/ro";
import deLocaleData from "react-intl/locale-data/de";
import frLocaleData from "react-intl/locale-data/fr";
import esLocaleData from "react-intl/locale-data/es";

// currently only EN and CS languages are supported

// currently specific languages are supported
addLocaleData([
...enLocaleData,
...csLocaleData,
...ukLocaleData,
...roLocaleData
...deLocaleData
...frLocaleData
...esLocaleData

]);
const languagesMapping = [
{"code":"en", "country" : "US"},
{"code":"cs", "country" : "CZ"},
{"code":"ro", "country" : "RO"},
{"code":"uk", "country" : "UA"}
{"code":"uk", "country" : "UA"},
{"code":"de", "country" : "DE"},
{"code":"fr", "country" : "FR"},
{"code":"es", "country" : "ES"}

];

// check if language is supported
Expand Down Expand Up @@ -93,6 +105,12 @@ if (msie && msie < 9) {
window.alert(I18N_UK.messages["browser.unsupported"]);
} else if (lang === "ro") {
window.alert(I18N_RO.messages["browser.unsupported"]);
} else if (lang === "de") {
window.alert(I18N_DE.messages["browser.unsupported"]);
} else if (lang === "fr") {
window.alert(I18N_FR.messages["browser.unsupported"]);
} else if (lang === "es") {
window.alert(I18N_ES.messages["browser.unsupported"]);
} else {
window.alert(I18N_EN.messages["browser.unsupported"]);
}
Expand Down
5 changes: 4 additions & 1 deletion powerauth-webflow/src/main/js/components/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ export class App extends React.Component {
{"code":"en", "country" : "US"},
{"code":"cs", "country" : "CZ"},
{"code":"ro", "country" : "RO"},
{"code":"uk", "country" : "UA"}
{"code":"uk", "country" : "UA"},
{"code":"de", "country" : "DE"},
{"code":"fr", "country" : "FR"},
{"code":"es", "country" : "ES"}
];
}

Expand Down

0 comments on commit 871348c

Please sign in to comment.