Last active
December 8, 2017 14:22
-
-
Save alexandre-mbm/e743b8a5ee7b2fe933129cba0fb57572 to your computer and use it in GitHub Desktop.
Script para trabalhar tradução no Slax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
apt-get -y install git poedit udevil thunar | |
udevil mount /dev/sdb1 | |
thunar /media/sdb1-usb-Generic_Flash-Di/slax/modules/ & | |
git config --global user.name "Alexandre Magno" | |
git config --global user.email [email protected] | |
git config --global alias.tree "log --graph --decorate --pretty=oneline --abbrev-commit" | |
git clone https://github.com/alexandre-mbm/libqalculate.git | |
git clone https://github.com/alexandre-mbm/qalculate-gtk.git | |
cd qalculate-gtk/po | |
poedit pt_BR.po & | |
echo "cp pt_BR.mo /usr/share/locale/pt_BR/LC_MESSAGES/qalculate-gtk.mo" | |
echo "git commit -a -m "pt_BR changes" && git push origin master" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment