X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Fbuild%2Fcreate-weblinks-itexi.py;h=d799925909c9c4933527cafe77bfb56149977c4b;hb=6f6ea6500252a574985dd7550e7f01a84827cdd7;hp=1de4d99c3ac3a48f0226122c5b53df22205ddb37;hpb=55ac733b69643a6bc6a83b706c65cb56efd388ef;p=lilypond.git diff --git a/scripts/build/create-weblinks-itexi.py b/scripts/build/create-weblinks-itexi.py index 1de4d99c3a..d799925909 100644 --- a/scripts/build/create-weblinks-itexi.py +++ b/scripts/build/create-weblinks-itexi.py @@ -15,11 +15,12 @@ depth = "../" ### translation data -- shouldn't be here; see issue ### http://code.google.com/p/lilypond/issues/detail?id=1050 -langs = ['', 'de', 'es', 'fr', 'hu', 'it', 'ja', 'nl'] +#langs = ['', 'cs', 'de', 'es', 'fr', 'hu', 'it', 'ja', 'nl', 'zh'] +langs = ['', 'cs', 'de', 'es', 'fr', 'hu', 'it', 'ja', 'nl', 'zh'] # Get/update node translations ''' -for i in de es fr hu it ja nl; do +for i in cs de es fr hu it ja nl zh; do echo "'"$i"': {" (echo '--' ; grep -nH -B1 translationof Documentation/$i/web/* ) \ | pytt '^--\n.*@(?:unnum|sub)[^ ]* (.*)\n.*@translationof (.*)\n' "'\2': '\1',\n" \ @@ -119,22 +120,20 @@ translations = { 'Snippets': 'Kódrészletek', 'Web': 'Web', 'Changes': 'Változások', - - #TODO - 'Extending': 0, + 'Extending': 'Bővítés', 'Internals': 'Belső működés', - 'Contributor': 0, + 'Contributor': 'Közreműködés', - ' (split HTML)': 0, - ' (big HTML)': 0, + ' (split HTML)': ' (HTML oldalak)', + ' (big HTML)': ' (egy nagy HTML oldal)', - 'Regression tests for ': 0, - 'PDF of regtests for ': 0, - 'MusicXML Regression tests for ': 0, - 'PDF of MusicXML regtests for ': 0, + 'Regression tests for ': 'Regressziós tesztek - verzió: ', + 'PDF of regtests for ': 'PDF formátumban - verzió: ', + 'MusicXML Regression tests for ': 'MusicXML regressziós tesztek - verzió: ', + 'PDF of MusicXML regtests for ': 'PDF formátumban - verzió: ', - 'Doc tarball for ': 0, - ' (did not exist in 2.12)': 0, + 'Doc tarball for ': 'Tömörített csomag - verzió: ', + ' (did not exist in 2.12)': ' (nem létezett a 2.12-es verzióban)', }, 'ja': { 'Source': 'ソース', @@ -148,20 +147,21 @@ translations = { 'Changes': '変更点', #TODO - 'Extending': 0, + 'Extending': '拡張', 'Internals': '内部リファレンス', - 'Contributor': 0, + 'Contributor': '貢献者向けガイド', - ' (split HTML)': 0, - ' (big HTML)': 0, +# keep the spaces! + ' (split HTML)': ' (ページ毎に分割された HTML)', + ' (big HTML)': ' (1 つの大きな HTML)', - 'Regression tests for ': 0, - 'PDF of regtests for ': 0, - 'MusicXML Regression tests for ': 0, - 'PDF of MusicXML regtests for ': 0, + 'Regression tests for ': '回帰テスト バージョン ', + 'PDF of regtests for ': '回帰テスト (PDF 版) バージョン ', + 'MusicXML Regression tests for ': 'MusicXML 回帰テスト バージョン ', + 'PDF of MusicXML regtests for ': 'MusicXML 回帰テスト (PDF 版) バージョン ', - 'Doc tarball for ': 0, - ' (did not exist in 2.12)': 0, + 'Doc tarball for ': 'ドキュメント アーカイブ バージョン ', + ' (did not exist in 2.12)': ' (バージョン 2.12 には存在しません)', }, 'nl': { @@ -191,6 +191,33 @@ translations = { 'Doc tarball for ': 'Tarball met documentation voor ', ' (did not exist in 2.12)': ' (bestond nog niet in 2.12)', }, + 'zh': { + 'Source': '源码', + 'Learning': '学习', + 'Music glossary': '音乐术语表', + 'Essay': '文章', + 'Notation': '五线谱', + 'Usage': '使用', + 'Snippets': '片断', + 'Web': 'Web', + 'Changes': '变化', + + 'Extending': '扩展', + 'Internals': '内部', + 'Contributor': '贡献者', + +# keep the spaces! + ' (split HTML)': ' (分开的HTML', + ' (big HTML)': ' (大的HTML)', + + 'Regression tests for ': '回归测试', + 'PDF of regtests for ': '回归的PDF', + 'MusicXML Regression tests for ': 'MusicXML回归测试', + 'PDF of MusicXML regtests for ': 'MusicXML的PDF回归', + + 'Doc tarball for ': '为文档压缩包', + ' (did not exist in 2.12)': ' (在2.12中不存在)', + }, } @@ -319,8 +346,6 @@ def translateNameToUrl(manual, version): ver_minor = ver_split[0] + '.' + ver_split[1] url = depth + "doc/v" + ver_minor + "/Documentation/" - if (ver_minor == '2.13'): - return url+manual if (ver_minor == '2.12'): if (manual=='learning'): return url+'user/lilypond-learning' @@ -342,6 +367,8 @@ def translateNameToUrl(manual, version): return url+'user/lilypond/Interfaces-for-programmers.html' else: return '' + else: + return url+manual def addLang(url, lang): if lang: @@ -382,9 +409,9 @@ def make_manual_links(name, version, lang): "http://lilypond.org", mshort+getTrans(" (did not exist in 2.12)",lang)) continue - # this is stupid and I shouldn't have bothered trying - # to support the 2.12 docs and it will be deleted once - # 2.14 is out and the website won't be visible to users + # this is stupid and I shouldn't have bothered trying + # to support the 2.12 docs and it will be deleted once + # 2.14 is out and the website won't be visible to users # until 2.14 is out. -gp if (url.endswith('.html')): make_ver_link(macroLang("manual"+name+mshort+'Pdf',lang), @@ -463,8 +490,8 @@ print "@c ************************ Download source ************" # FIXME: icky hard-coding! -gp for lang in langs: print "@c *********", lang, "***" - make_download_source("downloadStableSource","v2.12",VERSION_STABLE,lang) - make_download_source("downloadDevelSource","v2.13",VERSION_DEVEL,lang) + make_download_source("downloadStableSource","v2.14",VERSION_STABLE,lang) + make_download_source("downloadDevelSource","v2.15",VERSION_DEVEL,lang) print "@c ************************ Manual links ************" for lang in langs: