##// END OF EJS Templates
Add javascript for Object Code excanvas (flot) version herein included and use that instead of minified version....
Add javascript for Object Code excanvas (flot) version herein included and use that instead of minified version. I had a bit of trouble finding the upstream on excanvas, as the version from Google, which appears to be the original source, seems unmaintained. However, it appears the version we're carrying in Kallithea is indeed from the excanvas era of flot. $ (cd /tmp; \ svn -r 135 checkout http://flot.googlecode.com/svn/trunk/ flot ) $ cp /tmp/flot/excanvas.js rhodecode/public/js/excanvas.js I also verified the sha256sum of the min file matched ours: $ sha256sum /tmp/flot/excanvas.min.js rhodecode/public/js/excanvas.min.js 5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 /tmp/flot/excanvas.min.js 5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 rhodecode/public/js/excanvas.min.js

File last commit:

r3934:eabb273b beta
r4132:531ab818 rhodecode-2.2.5-gpl
Show More
how_to
67 lines | 1.7 KiB | text/plain | TextLexer
refreshed how_to on translations
r1225 ##########################
# to create new language #
##########################
renamed project to rhodecode
r547
Updated translations how_to
r3933 Translations are available on transifex under::
updated translations and added transifex link
r3925
https://www.transifex.com/projects/p/RhodeCode/
Updated translations how_to
r3933 Preferred method is to register on transifex and request new language translation.
refreshed how_to on translations
r1225
Updated translations how_to
r3933 manual creation of new language
+++++++++++++++++++++++++++++++
Dowload sources of RhodeCode. Run::
refreshed how_to on translations
r1225
Updated translations how_to
r3933 python setup.py develop
To prepare the enviroment
refreshed how_to on translations
r1225
Updated translations how_to
r3933 Make sure all translation strings are extracted by running::
python setup.py extract_messages
Create new language by executing following command::
python setup.py init_catalog -l <new_language_code>
This creates a new language under directory rhodecode/i18n/<new_language_code>
Be sure to update transifex mapping under .tx/config for new language
Edit the new PO file located in LC_MESSAGES directory with poedit or your
favorite PO files editor. Do translations and at the end verify the translation
file for any errors. This can be done by executing::
msgfmt -f -c rhodecode/i18n/<new_language_code>/LC_MESSAGES/<updated_file.po>
finally compile the translations::
python setup.py compile_catalog -l <new_language_code>
##########################
# to update translations #
##########################
refreshed how_to on translations
r1225
Updated translations how_to
r3933 Fetch latest version of strings for translation by running::
python setup.py extract_messages
Update PO file by doing::
fix typo
r3934 python setup.py update_catalog -l <new_language_code><- to update the translations
Updated translations how_to
r3933
Edit the new updated po file. Repeat all steps after `init_catalog` step from
new translation instructions
refreshed how_to on translations
r1225
Updated translations how_to
r3933 ########################
# testing translations #
########################
Edit test.ini file and set lang attribute to::
lang=<new_language_code>
Run RhodeCode tests by executing::
nosetests