Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/denver-code/tastybites


https://github.com/denver-code/tastybites

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# Using PyBabel

### To get all strings for translation:
```bash
pybabel extract -F babel.cfg -o ./messages.pot .

```

### To run the po file (first time):
```bash
pybabel init -i ./messages.pot -d ./translations -l en

```

### There is a po file for the update:

```bash
pybabel update -i ./messages.pot -d ./translations

```

### To compile a po file for mo:

```bash
pybabel compile -f -d ./translations

```