ClickHouse/website/templates/docs/machine-translated.html

12 lines
915 B
HTML
Raw Normal View History

{% if page.meta.machine_translated %}
<div class="alert alert-primary" role="alert">
<p class="display-5 mb-2">{{ _('Help wanted!') }}</p>
<p class="lead">{{ _('The following content of this documentation page has been machine-translated. But unlike other websites, it is not done on the fly. This translated text lives on GitHub repository alongside main ClickHouse codebase and waits for fellow native speakers to make it more human-readable.') }} <a href="{{ page.abs_url.replace('/' + language + '/', '/en/') }}" class="alert-link">{{ _('You can also use the original English version as a reference.') }}</a></p>
<p class="lead">
<a class="btn btn-lg btn-primary text-white" href="{{ page.edit_url }}" target="_blank" rel="external nofollow noreferrer">
{{ _('Help ClickHouse documentation by editing this page') }}
</a>
</p>
</div>
{% endif %}