-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Internationalization #17
Labels
Comments
Users should be able to set language and timezone (attributes of |
i18n toolchain:
|
Draft: """
Types
-----
A *language* is expressed as simplified IETF language code in the form of `{lang}-{region}`, where
both both values consist of two characters, *lang* is lower case and *region* is upper case, e.g.
``en-US``.
"""
class Application:
"""
.. attribute:: languages
List of available languages.
Subclass API: Defaults to ['de-DE', 'en-US'].
"""
def login(self, code=None, language='en-US'):
"""
*language* is the selected language of the new user.
"""
class User:
"""
.. describe:: language
Selected language from the list of available languages.
""" |
Depends on #68 . |
Experimental branch: https://github.com/noyainrain/meetling/tree/i18n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support for internationalization, i.e. translation and formatting of times/dates, numbers, etc.
The text was updated successfully, but these errors were encountered: