mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 13:42:30 -05:00
1646441f4a
also made the naming convention consistent (dashes not underscore)
15 lines
227 B
Bash
15 lines
227 B
Bash
#!/bin/bash
|
|
|
|
# script for syncing translations from transifex and comitting the changes.
|
|
|
|
git checkout master
|
|
|
|
npm run pull:editor
|
|
|
|
npm run test
|
|
|
|
git add .
|
|
|
|
git commit -m "pull new editor translations from Transifex"
|
|
|
|
git push
|