diff options
| author | Di Peng | 2011-07-29 14:22:37 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-08-14 23:44:20 -0700 |
| commit | 966cbd4cf8d795b1706ff400f604c6002d7e81f9 (patch) | |
| tree | 3ca9c42d7bad4f151c72d39f3ef9b053de6cc861 /i18n/generate.sh | |
| parent | 8534b7c7c0aa352eb0f17dbe8b22ba34f995654d (diff) | |
| download | angular.js-966cbd4cf8d795b1706ff400f604c6002d7e81f9.tar.bz2 | |
feat(i18n): collect and convert locale info from closure
- add i18n/closure directory with closure i18n files and
update-closure.sh script to update them
- generate.sh script runs node.js scripts that extract localization
rules from the closure library, transform them to a more suitable
format and dumps them into i18n/locale directory as angular's $locale
services
- update Rakefile to copy i18n files to build/ and pkg/ dirs
- copy i18n stuff during rake build
- e2e tests for several locales
Diffstat (limited to 'i18n/generate.sh')
| -rwxr-xr-x | i18n/generate.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/i18n/generate.sh b/i18n/generate.sh new file mode 100755 index 00000000..0ef78967 --- /dev/null +++ b/i18n/generate.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +BASE_DIR=`dirname $0` +cd $BASE_DIR + + +/usr/bin/env jasmine-node spec/ --noColor | grep -v '/lib/jasmine' && node src/closureSlurper.js |
