├── .gitignore ├── README.md ├── dashboard.py ├── localazy.example.json ├── locales ├── base.pot ├── de │ └── LC_MESSAGES │ │ └── base.po └── pl │ └── LC_MESSAGES │ └── base.po └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/README.md -------------------------------------------------------------------------------- /dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/dashboard.py -------------------------------------------------------------------------------- /localazy.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/localazy.example.json -------------------------------------------------------------------------------- /locales/base.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/locales/base.pot -------------------------------------------------------------------------------- /locales/de/LC_MESSAGES/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/locales/de/LC_MESSAGES/base.po -------------------------------------------------------------------------------- /locales/pl/LC_MESSAGES/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/locales/pl/LC_MESSAGES/base.po -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fischerbach/streamlit-gettext/HEAD/requirements.txt --------------------------------------------------------------------------------