johnkors / IdentityServer3.Contrib.Localization

Localization support for IdentityServer3
MIT License
19 stars 40 forks source link

Half localization in french #31

Closed Rajivhost closed 9 years ago

Rajivhost commented 9 years ago

Hi, Apparently, french localization not completely done? image

johnkors commented 9 years ago

Yeah, there might be strings in the default views of identityserver that are not localized. For that, you would need (at least today) to implement your own views.

These are the keys of what is translated: https://github.com/IdentityServer/IdentityServer3/blob/master/source/Core/Resources/T4resx.cs

Example of text that is not covered by the localization extension of idsrv (for example using this repo/nuget). https://github.com/IdentityServer/IdentityServer3/blob/master/source/Core/Services/DefaultViewService/PageAssets/consent.html#L25

@brockallen might have some opinions if complete localization is on the roadmap.

Rajivhost commented 9 years ago

Yes, indeed some parts of page not take care on localization extension. So, apparently the only option I have is to write my own views?

johnkors commented 9 years ago

Yes, but that's pretty easy. As easy as dropping a few html files in a folder if you just need to modify to hardcoded texts within the defaults.

Rajivhost commented 9 years ago

Ok, thanks for the support.