loki
loki

Reputation: 2311

Django internationalization on admin

I'm writing an app where the final administrator might not speak English, so it would be nice to present the admin interface in a non-English language.

I've read the i18n documentation but it doesn't mention how to change the text of the "add" buttons and titles of the pages (in the admin interface). How can I accomplish this or what docs are the ones that I need to read?

Upvotes: 0

Views: 194

Answers (1)

ilvar
ilvar

Reputation: 5841

Surely, official docs are the best docs. If you want admin site in specific language - just set proper LANGUAGE_CODE in settings.

Upvotes: 1

Related Questions