Sven
Sven
ID conversion example: ``` python id = 'Meeting:' + url_id url_id = id.split(':')[1] ```
Clarified that the issue relates to API URLs, as UI URLs are prettified in #66 .
Users should be able to set language and timezone (attributes of `User`) and browser settings (`navigator.language`, `Intl.DateTimeFormat.resolvedOptions.timeZone`) should only be used as suggestions / default values.
i18n toolchain: * Server: [Tornado's built-in i18n](http://www.tornadoweb.org/en/stable/locale.html) (gettext) * Client: [i18next](http://i18next.com/) (JSON) * Translation platform: [Transifex](https://www.transifex.com/)
Draft: ```python """ 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...
Depends on #68 .
Experimental branch: https://github.com/noyainrain/meetling/tree/i18n
Thanks for your feedback! :) I find your arguments quite convincing. I played around with the proposed solution a bit, but stumbled upon another hurdle, unfortunately :/ . Geo URIs...
Fixing this bug will be simplified by first implementing #31.
Depends on noyainrain/micro#20.