Location: A review of cardiac cellular electrophysiology models @ a80b964384c0 / dojo-presentation / js / dojo / dijit / demos / i18n / languages.sh

Author:
David Nickerson <nickerso@users.sourceforge.net>
Date:
2010-05-04 12:37:19+12:00
Desc:
adding initial version of SED-ML L1V1 file reproducing what is in graphs/BR-INa-variants.xml
Permanent Source URI:
https://models.cellml.org/workspace/a1/rawfile/a80b964384c0c7683d7c5d07b73a5af7a973d46c/dojo-presentation/js/dojo/dijit/demos/i18n/languages.sh

# Script to generate langues.json, list of languages and countries that use each language
# Steps to use:
#   1. cd util/buildscripts/cldr/ldml
#   2. unzip main.zip (alternately download from http://www.unicode.org/cldr)
#   3. cd main
#   4. run this script from there

echo "["
for lang in $(ls [a-z][a-z].xml |sed s/.xml//)
do
	echo '{ key: "language:'${lang}'", type: "language", iso: "'${lang}'",'

	# countries that use this language
	echo 'countries: ['
	ls ${lang}_[A-Z][A-Z].xml | sed -e 's/^.*_/{_reference: "/' -e 's/.xml/"},/'
	echo '],'

	# name of this language (in this language)
	grep '<language type="'${lang}'"[ >]' ${lang}.xml |head -1 |sed -e 's/.*<language type=".."[^>]*>/name: "/' -e 's/<\/language>/",/'

	# names of other languages (in this language)
	grep '<language type="..">' ${lang}.xml |sed -e 's/.*<language type=//' -e 's/<\/language>/",/' -e 's/>/: "/' -e 's/-->//'
	echo '},'
done
echo "]"