Overview
| Comment: | [build][fr] revert string format for Python | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | fr | build | FixWebext | 
| Files: | files | file ages | folders | 
| SHA3-256: | 47b9222f8ad68af060951bd840cce081 | 
| User & Date: | olr on 2017-10-28 07:06:23 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2017-10-28 | ||
| 07:11 | [fx] menu close button: size doesn’t look good on Firefox check-in: 1617b4806b user: olr tags: fx, FixWebext | |
| 07:06 | [build][fr] revert string format for Python check-in: 47b9222f8a user: olr tags: fr, build, FixWebext | |
| 06:57 | [fx] fix menu button size check-in: 625b15ea09 user: olr tags: fx, FixWebext | |
Changes
Modified gc_lang/fr/build.py from [b7f960ec85] to [e6bfac7235].
| ︙ | ︙ | |||
| 26 27 28 29 30 31 32 | 
        os.system("web-ext build")
def _createOptionsForWebExtension (dVars):
    sHTML = ""
    sLang = dVars['sDefaultUILang']
    for sSection, lOpt in dVars['lStructOpt']:
 | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 
        os.system("web-ext build")
def _createOptionsForWebExtension (dVars):
    sHTML = ""
    sLang = dVars['sDefaultUILang']
    for sSection, lOpt in dVars['lStructOpt']:
        sHTML += f'\n<div id="subsection_{sSection}" class="opt_subsection">\n  <h2 data-l10n-id="option_{sSection}">{dVars["dOptLabel"][sLang][sSection][0]}</h2>\n'
        for lLineOpt in lOpt:
            for sOpt in lLineOpt:
                sHTML += f'  <p><input type="checkbox" id="option_{sOpt}" class="gc_option" data-option="{sOpt}"/><label id="option_label_{sOpt}" for="option_{sOpt}" data-l10n-id="option_{sOpt}">{dVars["dOptLabel"][sLang][sOpt][0]}</label></p>\n'
        sHTML += '</div>\n'
    return sHTML
def createFirefoxExtension (sLang, dVars):
    "create extension for Firefox"
    print("Building extension for Firefox")
 | 
| ︙ | ︙ |