blob: 2c31d9ba3c11ba415b3a21609f06c3dc4fd2dd3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{if $gBitSystem->isFeatureActive( 'i18n_interactive_translation' ) && $gBitUser->hasPermission( 'p_languages_edit' )}
<div class="translation box">
<h3>{tr}Translation Links{/tr}</h3>
{foreach from=$gBitTranslationHash item=hash key=key}
{if $gBitSystem->isFeatureActive( 'i18n_interactive_bittranslation' )}
<a href="https://www.bitweaver.org/languages/master_strings.php?source_hash={$hash}">{$key}</a> •
{else}
<a href="{$smarty.const.LANGUAGES_PKG_URL}master_strings.php?source_hash={$hash}">{$key}</a> •
{/if}
{foreachelse}
{tr}Please reload this page to see the translation links{/tr}
{/foreach}
</div>
{/if}
|