diff -r 59bb7c4d6172 -r 0f5e3a7fb6af buildframework/helium/tools/localisation/localisation-32.ant.xml --- a/buildframework/helium/tools/localisation/localisation-32.ant.xml Fri Feb 05 11:59:41 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,494 +0,0 @@ - - - - - S60 3.2 localisation. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unzipping ${zips.loc.dir}/delta_@{variant}_package.zip - - - - - - - - - - - - - Generating ${build.drive}\epoc32\tools\s60tools\variant_build_@{variant}${internal.variant.type}.xml - - - Building ${build.drive}\epoc32\tools\s60tools\variant_build_@{variant}${internal.variant.type}.xml - - - - - - - - Region ctool: ${ctool.region.@{variant}} (@{variant}). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Language Pack configuration for @{product.name} - - - - - - - - - - Generating ${build.drive}/epoc32/rom/config/language/system_languages.mk - - -""" Create a makefile that contains all languages. """ -import localisation -import sys -import ant - -languages = localisation.Languages(ant.get_property(r'${localisation.language.file}')) -output = open(ant.get_property(r'${build.drive}')+r'\epoc32\rom\config\language\system_languages.mk', "w+") - -output.write("############################################\n") -output.write("# DO NOT EDIT - File generated by Helium\n") -output.write("############################################\n") -output.write("system_languages\t\t\t\t=\\\n") -lids = languages.get_language_ids() -lids.sort() -lids.reverse() -while len(lids)>0: - lid = lids.pop() - endofline = "\\" - if (len(lids)==0): - endofline = "" - output.write ("%s\t\t\t\t%s %s" % (languages.get_name(lid), lid, endofline)) - output.write("\n") -output.close() - - - - - - - - - - - Cenrep generation for @{product.name} languagepack - - - - - - - - - - - - Cenrep generation for @{product.name} customer variant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - We will create zip variation for ${localisation.variation} - - - - - - - - - - Localising ${localisation.languages} - - Localising using ${localisation.tool}. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - We will create zip variation for ${localisation.variation} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -