#!/usr/bin/python # Copyright 2008 Google Inc. All rights reserved. """This script generates an rc file and header (setup_strings.{rc,h}) to be included in setup.exe. The rc file includes translations for strings pulled from generated_resource.grd and the localized .xtb files. The header file includes IDs for each string, but also has values to allow getting a string based on a language offset. For example, the header file looks like this: #define IDS_L10N_OFFSET_AR 0 #define IDS_L10N_OFFSET_BG 1 #define IDS_L10N_OFFSET_CA 2 ... #define IDS_L10N_OFFSET_ZH_TW 41 #define IDS_MY_STRING_AR 1600 #define IDS_MY_STRING_BG 1601 ... #define IDS_MY_STRING_BASE IDS_MY_STRING_AR This allows us to lookup an an ID for a string by adding IDS_MY_STRING_BASE and IDS_L10N_OFFSET_* for the language we are interested in. """ import glob import os import sys from xml.dom import minidom from google import path_utils import FP # The IDs of strings we want to import from generated_resources.grd and include # in setup.exe's resources. kStringIds = [ 'IDS_PRODUCT_NAME', 'IDS_UNINSTALL_CHROME', 'IDS_ABOUT_VERSION_COMPANY_NAME', ] # The ID of the first resource string. kFirstResourceID = 1600 class TranslationStruct: """A helper struct that holds information about a single translation.""" def __init__(self, resource_id_str, language, translation): self.resource_id_str = resource_id_str self.language = language self.translation = translation def __cmp__(self, other): """Allow TranslationStructs to be sorted by id.""" return cmp(self.resource_id_str, other.resource_id_str) def CollectTranslatedStrings(): """Collects all the translations for all the strings specified by kStringIds. Returns a list of tuples of (string_id, language, translated string). The list is sorted by language codes.""" kGeneratedResourcesPath = os.path.join(path_utils.ScriptDir(), '..', '..', '..', 'app/google_chrome_strings.grd') kTranslationDirectory = os.path.join(path_utils.ScriptDir(), '..', '..', '..', 'app', 'resources') kTranslationFiles = glob.glob(os.path.join(kTranslationDirectory, 'google_chrome_strings*.xtb')) # Get the strings out of generated_resources.grd. dom = minidom.parse(kGeneratedResourcesPath) # message_nodes is a list of message dom nodes corresponding to the string # ids we care about. We want to make sure that this list is in the same # order as kStringIds so we can associate them together. message_nodes = [] all_message_nodes = dom.getElementsByTagName('message') for string_id in kStringIds: message_nodes.append([x for x in all_message_nodes if x.getAttribute('name') == string_id][0]) message_texts = [node.firstChild.nodeValue.strip() for node in message_nodes] # The fingerprint of the string is the message ID in the translation files # (xtb files). translation_ids = [str(FP.FingerPrint(text)) for text in message_texts] # Manually put _EN_US in the list of translated strings because it doesn't # have a .xtb file. translated_strings = [] for string_id, message_text in zip(kStringIds, message_texts): translated_strings.append(TranslationStruct(string_id + '_EN_US', 'EN_US', message_text)) # Gather the translated strings from the .xtb files. If an .xtb file doesn't # have the string we want, use the en-US string. for xtb_filename in kTranslationFiles: dom = minidom.parse(xtb_filename) language = dom.documentElement.getAttribute('lang') language = language.replace('-', '_').upper() translation_nodes = {} for translation_node in dom.getElementsByTagName('translation'): translation_id = translation_node.getAttribute('id') if translation_id in translation_ids: translation_nodes[translation_id] = (translation_node.firstChild .nodeValue .strip()) for i, string_id in enumerate(kStringIds): translated_string = translation_nodes.get(translation_ids[i], message_texts[i]) translated_strings.append(TranslationStruct(string_id + '_' + language, language, translated_string)) translated_strings.sort() return translated_strings def WriteRCFile(translated_strings, out_filename): """Writes a resource (rc) file with all the language strings provided in |translated_strings|.""" kHeaderText = ( u'#include "%s.h"\n\n' u'STRINGTABLE\n' u'BEGIN\n' ) % os.path.basename(out_filename) kFooterText = ( u'END\n' ) lines = [kHeaderText] for translation_struct in translated_strings: lines.append(u' %s "%s"\n' % (translation_struct.resource_id_str, translation_struct.translation)) lines.append(kFooterText) outfile = open(out_filename + '.rc', 'wb') outfile.write(''.join(lines).encode('utf-16')) outfile.close() def WriteHeaderFile(translated_strings, out_filename): """Writes a .h file with resource ids. This file can be included by the executable to refer to identifiers.""" lines = [] # Write the values for how the languages ids are offset. seen_languages = set() offset_id = 0 for translation_struct in translated_strings: lang = translation_struct.language if lang not in seen_languages: seen_languages.add(lang) lines.append(u'#define IDS_L10N_OFFSET_%s %s' % (lang, offset_id)) offset_id += 1 else: break # Write the resource ids themselves. resource_id = kFirstResourceID for translation_struct in translated_strings: lines.append(u'#define %s %s' % (translation_struct.resource_id_str, resource_id)) resource_id += 1 # Write out base ID values. for string_id in kStringIds: lines.append(u'#define %s_BASE %s_%s' % (string_id, string_id, translated_strings[0].language)) outfile = open(out_filename + '.h', 'wb') outfile.write('\n'.join(lines)) outfile.write('\n') # .rc files must end in a new line outfile.close() def main(argv): translated_strings = CollectTranslatedStrings() kFilebase = os.path.join(argv[1], 'installer_util_strings') WriteRCFile(translated_strings, kFilebase) WriteHeaderFile(translated_strings, kFilebase) if '__main__' == __name__: if len(sys.argv) < 2: print 'Usage:\n %s ' % sys.argv[0] sys.exit(1) main(sys.argv)