1
0

New language constants, hopefully caught all i18n's. Please check.

This commit is contained in:
Garvin Hicking
2014-03-05 13:22:50 +01:00
parent 703d9f2ce0
commit 94c3a75a96
84 changed files with 2882 additions and 92 deletions

View File

@@ -7,7 +7,7 @@
{if $adminAction == 'editConfiguration'}
<section id="template_options">
<h2>Design options ({$cur_template})</h2> {* i18n *}
<h2>{$CONST.STYLE_OPTIONS} ({$cur_template})</h2>
{if $has_config}
{if $adminAction == 'configure'}
<span class="msg_success"><span class="icon-ok-circled"></span> {$CONST.DONE}: {$save_time}</span>
@@ -26,7 +26,7 @@
{else}
<section id="template_select">
{assign var="cur_tpl" value=$templates[$cur_template]}
<h2>Current Design</h2> {* i18n *}
<h2>{$CONST.CURRENT_TEMPLATE}</h2>
<article class="clearfix current_template">
<h3>{$cur_tpl.info.name}</h3>
@@ -48,19 +48,19 @@
<dd>{$cur_tpl.info.author}</dd>
<dt class="template_date">{$CONST.LAST_UPDATED}:</dt>
<dd>{$cur_tpl.info.date}</dd>
<dt class="template_admin">Has admin design:</dt> {* i18n *}
<dt class="template_admin">{$CONST.CUSTOM_ADMIN_INTERFACE}:</dt>
<dd>{$cur_tpl.info.custom_admin_interface}</dd>
</dl>
</footer>
</div>
</div>
<button class="template_show_info button_link" type="button" data-href="#template_info_cur" title="Show template info"><span class="icon-info-circled"></span><span class="visuallyhidden"> Show template info</span></button> {* i18n *}
<button class="template_show_info button_link" type="button" data-href="#template_info_cur" title="{$CONST.TEMPLATE_INFO}"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.TEMPLATE_INFO}</span></button>
<a class="button_link" href="?serendipity[adminModule]=templates&amp;serendipity[adminAction]=editConfiguration" title="{$CONST.CONFIGURATION}">{$CONST.CONFIGURATION}</a>
</article>
<h2>Available Designs</h2> {* i18n *}
<h2>{$CONST.AVAILABLE_TEMPLATES}</h2>
<ul class="plainList clearfix">
{foreach $templates as $template=>$info}
@@ -85,14 +85,14 @@
<dd>{$info.info.author}</dd>
<dt class="template_date">{$CONST.LAST_UPDATED}:</dt>
<dd>{$info.info.date}</dd>
<dt class="template_admin">Has admin design:</dt> {* i18n *}
<dt class="template_admin">{$CONST.CUSTOM_ADMIN_INTERFACE}</dt>
<dd>{if $info.info.custom_admin_interface} {$info.info.custom_admin_interface} {else} {$CONST.NO} {/if}</dd>
</dl>
</footer>
</div>
</div>
<button class="template_show_info button_link" type="button" data-href="#template_info_{$info@key}" title="Show template info"><span class="icon-info-circled"></span><span class="visuallyhidden"> Show template info</span></button> {* i18n *}
<button class="template_show_info button_link" type="button" data-href="#template_info_{$info@key}" title="{$CONST.TEMPLATE_INFO}"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.TEMPLATE_INFO}</span></button>
{if !$info.unmetRequirements}
<a class="button_link" href="?serendipity[adminModule]=templates&amp;serendipity[adminAction]=install&amp;serendipity[theme]={$template}{$info.info.customURI}" title="{$CONST.SET_AS_TEMPLATE}">{$CONST.INSTALL}</a>