In contrast to English there are two different "versions" of how you can speak with others in German. You can use the formal, more impersonal "Sie" or the informal, more personal "du".
So, while you just say "Can you help me?" in English, you could say
- Können Sie mir helfen? (formal, when you don't really know the person)
- Kannst du mir helfen? (informal, when you know the person already)
in German.
My problem now is that for my Django application I would like to use the second version ("du") because it just suits much better for my web application. Thing is that Django (what I know?) just supports the formal version and now I have inconsistencies in the web application. Sometimes, there you can read "du" and sometimes "Sie" (from the default Django translations).
Of course, I could remove my manually added sentences with "du", but I do not like it because the web page will be for people who know each other.
My two questions:
- Is there a way to let Django use the informal translation that I perhaps have missed?
- In case Django does not provide this feature, is there a way to let Django support it (I would be happy to provide/change the translations). Or do you know some other solution?