Files @ 923037eb67d4
Branch filter:

Location: kallithea/kallithea/templates/admin/settings/settings_vcs.html

Thomas De Schampheleire
spelling: fix various typos

This commit fixes various typos or basic English grammar mistakes found by
reviewing the kallithea.pot file.

Full correction of sentences that are not very well formulated, like missing
articles, is out of scope for this commit. Likewise for inconsistent
capitalization of strings like 'Repository group'/'Repository Group'.
${h.form(url('admin_settings'), method='post')}
    <div class="form">
        <div class="fields">
            <div class="field">
                <div class="label label-checkbox">
                    <label>${_('Web')}:</label>
                </div>
                <div class="checkboxes">
                    <div class="checkbox">
                        ${h.checkbox('web_push_ssl', 'True')}
                        <label for="web_push_ssl">${_('Require SSL for vcs operations')}</label>
                    </div>
                    <span class="help-block">${_('Activate to require SSL both pushing and pulling. If SSL certificate is missing, it will return an HTTP Error 406: Not Acceptable.')}</span>
                </div>
             </div>

             <div class="field">
                <div class="label label-checkbox">
                    <label>${_('Hooks')}:</label>
                </div>
                <div class="checkboxes">
                    <div class="checkbox">
                        ${h.checkbox('hooks_changegroup_repo_size','True')}
                        <label for="hooks_changegroup_repo_size">${_('Show repository size after push')}</label>
                    </div>
                    <div class="checkbox">
                        ${h.checkbox('hooks_changegroup_push_logger','True')}
                        <label for="hooks_changegroup_push_logger">${_('Log user push commands')}</label>
                    </div>
                    <div class="checkbox">
                        ${h.checkbox('hooks_outgoing_pull_logger','True')}
                        <label for="hooks_outgoing_pull_logger">${_('Log user pull commands')}</label>
                    </div>
                    <div class="checkbox">
                        ${h.checkbox('hooks_changegroup_update','True')}
                        <label for="hooks_changegroup_update">${_('Update repository after push (hg update)')}</label>
                    </div>
                </div>
             </div>
             <div class="field">
                <div class="label label-checkbox">
                    <label>${_('Mercurial extensions')}:</label>
                </div>
                <div class="checkboxes">
                    <div class="checkbox">
                        ${h.checkbox('extensions_largefiles','True')}
                        <label for="extensions_largefiles">${_('Enable largefiles extension')}</label>
                    </div>
                    <div class="checkbox">
                        ${h.checkbox('extensions_hgsubversion','True')}
                        <label for="extensions_hgsubversion">${_('Enable hgsubversion extension')}</label>
                    </div>
                    <span class="help-block">${_('Requires hgsubversion library to be installed. Enables cloning of remote Subversion repositories while converting them to Mercurial.')}</span>
                    ##<div class="checkbox">
                    ##    ${h.checkbox('extensions_hggit','True')}
                    ##    <label for="extensions_hggit">${_('Enable hg-git extension')}</label>
                    ##</div>
                    ##<span class="help-block">${_('Requires hg-git library to be installed. Enables cloning of remote Git repositories while converting them to Mercurial.')}</span>
                </div>
            </div>
            %if c.visual.allow_repo_location_change:
            <div class="field">
                <div class="label">
                    <label for="paths_root_path">${_('Location of repositories')}:</label>
                </div>
                <div class="input">
                    ${h.text('paths_root_path',size=60,readonly="readonly", class_="disabled")}
                    <span id="path_unlock" class="tooltip" style="cursor: pointer"
                            title="${h.tooltip(_('Click to unlock. You must restart Kallithea in order to make this setting take effect.'))}">
                        <div class="btn btn-small"><i id="path_unlock_icon" class="icon-lock"></i></div>
                    </span>
                    <span class="help-block">${_('Filesystem location where repositories are stored. After changing this value, a restart and rescan of the repository folder are both required.')}</span>
                </div>
            </div>
            %else:
            ## form still requires this but we cannot internally change it anyway
            ${h.hidden('paths_root_path',size=30,readonly="readonly", class_="disabled")}
            %endif
            <div class="buttons">
                ${h.submit('save',_('Save Settings'),class_="btn")}
                ${h.reset('reset',_('Reset'),class_="btn")}
           </div>
        </div>
    </div>
    ${h.end_form()}

    <script type="text/javascript">
        $(document).ready(function(){
            $('#path_unlock').on('click', function(e){
                $('#path_unlock_icon').removeClass('icon-lock');
                $('#path_unlock_icon').addClass('icon-lock-open-alt');
                $('#paths_root_path').removeAttr('readonly');
                $('#paths_root_path').removeClass('disabled');
            })
        })
    </script>