-
Notifications
You must be signed in to change notification settings - Fork 52
11 Localization
Currently, adfsfma supports 11 languages, English (default), French, Spanish, Italian, German, Dutch, Polish, Portuguese, Swedish, Romanian, Russian for the Web part, management console and PowerShell.
ADFS is an identification platform, so code must be as reliable as possible. Rely on external resources not mastered is not recommended.
We want to be able to integrate the interface elements into resources
compiled into signed statellite assemblies,
in order to avoid any custom code insertion in the pages. changing the labels is not a problem,
but injecting javascript into resources is also possible.
We therefore encourage you to collaborate and send us your translations, which we will integrate without problems.
List of Languages Integration in adfsmfa.
Not supported languages where translated with "Microsoft Cognitives Services" translator (so, it's not perfect ! )
Country | Culture | LCID | Support |
---|---|---|---|
English | en | 1033 | Supported |
French | fr | 1036 | Supported |
Italian | it | 1040 | Pull Request/Supported |
Spanish | es | 1034 | Pull Request only |
German | de | 1031 | Pull Request only |
Dutch | nl | 1043 | Pull Request only |
Portuguese | pt | 2070 | Pull Request only |
Swedish | sv | 1053 | Pull Request only |
Romanian | ro | 1048 | Pull Request only |
Polish | pl | 1045 | Pull Request only |
Russian | ru | 1049 | Pull Request only |
All Others ADFS languages | Not Provided at this time, Pull Request only |
List of Languages supported by ADFS
LCID | Country | Status | LCID | Country | Status |
---|---|---|---|---|---|
1025 | ar | 1026 | bg | ||
5146 | bs | 1029 | cs | ||
1030 | da | 1031 | de | * | |
1032 | el | 2057 | en-GB | ||
1033 | en-US | ** | 1034 | es | * |
2058 | es-MX | 1061 | et | ||
1035 | fi | 3084 | fr-CA | ||
1036 | fr-FR | ** | 1037 | he | |
1050 | hr | 1038 | hu | ||
1040 | it | ** | 1041 | ja | |
1042 | ko | 1063 | lt | ||
1062 | lv | 1043 | nl | * | |
1044 | no | 1045 | pl | * | |
2070 | pt | * | 1046 | pt-BR | |
1048 | ro | * | 1049 | ru | * |
1051 | sk | 1060 | sl | ||
2074 | sr-Latn-RS | 1053 | sv | * | |
1054 | th | 1055 | tr | ||
1058 | uk | 4100 | zh-HANS | ||
1028 | zh-HANT |
(**) Supported languages
(*) Pull Requests only
However, if you want to test changes or new languages without having to recompile the project, you can do it by providing translated resources (interface elements and mail templates). Please follow the following.
Localizing MFA Web parts For security reasons, and to avoid unsafe code execution. The translation of the resources must be done by recompiling the code of the adfsmfa solution with Visual Studio and signing the code with your own key.
Remember that this is an open-source project. If you think you have a better translation and that it can be shared with everyone. you must post a pull-request at https://github.com/neos-sdi/adfsmfa/pulls. If these proposals are integrated, they will be maintained in the future.
You can also offer translations for unsupported languages by sending a Pull Request with modified resources files.
If you do not want or can not recompile the solution, we'll give you a simpler alternative that does not require software development skills. We think that this is not the best solution, but it can allow you to precisely test the interface you want to offer. Later, you will need to be able to upgrade your translations or to propose them to the community in order to integrate your work into the project.
Editing resource-based translations is only available for the Web Interface part. The console and PowerShell do not allow resource-based translation.
How to do ?
-
1- Retrieve the complete code of the solution (version 2.3 or upper)
-
2- unpack the source code on your workstation (no development tool required).
-
3- On your adfs server move to C:\Program Files\MFA\ResourceSet
-
4- Copy ResGen.exe on your Workstation
-
5- On Workstation
-
6- Move to the directory ..\Manage_Resources
-
7- Paste the Resgen.exe
-
8- Execute: 0-import_resources.cmd
-
9- Execute: 1-edit_resources.cmd
-
10- Move to the directory .. \Manage_Resources\Sources
-
11- With a text editor of your choice (Notepad, TextPad, VS, but not MSWord) modify the labels present in the different .resx files.
-
12- Execute: 2-Build_resources.cmd (ES or FR or Other) you can add more languages if you want
-
13- Get the .resources files corresponding to the .resx files you have modified
-
14- Copy the .resources files on the different ADFS servers in C:\Program Files\MFA\ResourceSet
-
15- Restart the ADFS services (net stop adfssrv and net start adfssrv)
-
16- Done!