Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denver-code/tastybites
https://github.com/denver-code/tastybites
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/denver-code/tastybites
- Owner: denver-code
- Created: 2024-05-20T10:11:56.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-22T18:56:30.000Z (9 months ago)
- Last Synced: 2024-05-22T19:59:34.748Z (9 months ago)
- Language: HTML
- Homepage: https://tastybites-phi.vercel.app
- Size: 52.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```