Clarify admin section

This commit is contained in:
Victor Dubiniuk 2014-06-13 16:19:09 +03:00
parent 0fcdb8007b
commit 7e88c47ab3

View File

@ -1,19 +1,20 @@
<?php $isLocal = $_['converter']=='local' ?> <?php $isLocal = $_['converter']=='local' ?>
<div class="section" id="documents"> <div class="section" id="documents">
<h2><?php p($l->t('Documents')) ?></h2> <h2><?php p($l->t('Documents')) ?></h2>
<p><?php p($l->t('MS Word support (requires openOffice/libreOffice)')) ?></p>
<p> <p>
<input type="radio" name="docs_converter" value="local" id="docs_converter_local" <input type="radio" name="docs_converter" value="local" id="docs_converter_local"
<?php print_unescaped($isLocal ? 'checked="checked"' : '') ?> <?php print_unescaped($isLocal ? 'checked="checked"' : '') ?>
/> />
<label for="docs_converter_local"><?php p($l->t('Local')) ?></label><br> <label for="docs_converter_local"><?php p($l->t('Local')) ?></label><br>
<em><?php p($l->t('openOffice/libreOffice is installed on this server')) ?></em> <em><?php p($l->t('openOffice/libreOffice is installed on this server. Path to binary is provided via preview_libreoffice_path in config.php')) ?></em>
</p> </p>
<p> <p>
<input type="radio" name="docs_converter" value="external" id="docs_converter_external" <input type="radio" name="docs_converter" value="external" id="docs_converter_external"
<?php print_unescaped(!$isLocal ? 'checked="checked"' : '') ?> <?php print_unescaped(!$isLocal ? 'checked="checked"' : '') ?>
/> />
<label for="docs_converter_external"><?php p($l->t('External')) ?></label><br> <label for="docs_converter_external"><?php p($l->t('External')) ?></label><br>
<em><?php p($l->t('openOffice/libreOffice is installed on another server')) ?></em> <em><?php p($l->t('openOffice/libreOffice is installed on external server running a format filter server')) ?></em>
</p> </p>
<div id="docs_extra" <?php print_unescaped($isLocal ? 'style="display:none"' : '') ?>> <div id="docs_extra" <?php print_unescaped($isLocal ? 'style="display:none"' : '') ?>>
<input type="text" name="docs_url" id="docs_url" <input type="text" name="docs_url" id="docs_url"