Moved to resources container

This commit is contained in:
Jose Luis Cercos Pita
2012-11-04 20:39:18 +01:00
parent 06fb5199e9
commit e3ffa6c97c
11 changed files with 2232 additions and 103 deletions

16
src/Mod/Plot/makeResources.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
## Create resources stuff for Plot module.
# Perform trnaslations
pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot.ts
lrelease resources/translations/Plot.ts
pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es-ES.ts
lrelease resources/translations/Plot_es-ES.ts
pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es.ts
lrelease resources/translations/Plot_es.ts
# Create resources
rm -f Plot_rc.py
cd resources
pyrcc4 Plot.qrc -o ../Plot_rc.py
cd ..