Skip to content

Instantly share code, notes, and snippets.

@alexandre-mbm
Last active December 8, 2017 14:22
Show Gist options
  • Save alexandre-mbm/e743b8a5ee7b2fe933129cba0fb57572 to your computer and use it in GitHub Desktop.
Save alexandre-mbm/e743b8a5ee7b2fe933129cba0fb57572 to your computer and use it in GitHub Desktop.
Script para trabalhar tradução no Slax
#!/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 alexandre.mbm@gmail.com
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