14
edits
Changes
From Gramps
→How to install the animal translation file
<code>
cd {your home[myhome/your path}mypath/]gramps2
./autogen.sh
make
</code>
*All OK? Now to apply the hack - download '''[[Image:gramps_animal_2_2_6.po.gz ]]''' and unzip it in the '''gramps2/po ''' directory
<code>
cp gramps_animal_2_2_6.po.gz {your home[myhome/your pathmypath/}]gramps2/po cd {your home[myhome/your pathmypath/}]gramps2/po
gzip -d gramps_animal_2_2_6.po.gz
</code>
*Now you have to use a locale that you wouldn't usually use. For instance, if your locale is en_GB, use en_US. create a symbolic link to '''gramps_animal_2_2_6.po ''' in the '''po ''' directory. The '''en_US ''' locale is an example in '''all''' the command lines below. In the '''po''' directorydo:
<code>
</code>
*And make sure the '''po/Makefile ''' picks up the special locale that you chose:
<code>
perl -n -i -e 'if(/^ALL_LINGUAS/){chop; print "$_ en_US\n"}else{print $_}' Makefile
</code>
*The '''gramps2/Makefile ''' also needs to be modified to add the previously unused locale:
<code>
</code>
*To run GRAMPS with the new locale applied , all that is required now is:
<code>