Fixed minor internationalizable string error in admin templates.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<li><a href="{url path='/admin/home'}">{intl l="Home"}</a></li>
|
||||
<li><a href="{url path='/admin/configuration'}">{intl l="Configuration"}</a></li>
|
||||
<li><a href="{url path='/admin/configuration/templates'}">{intl l="Templates"}</a></li>
|
||||
<li>{intl l='Editing template "%name"' name="{$NAME}"}</li>
|
||||
<li>{intl l='Editing template "%name"' name=$NAME}</li>
|
||||
</ul>
|
||||
|
||||
<div class="row">
|
||||
@@ -24,7 +24,7 @@
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-12 title title-without-tabs">
|
||||
{intl l="Edit template $NAME"}
|
||||
{intl l='Edit template "%name"' name=$NAME}
|
||||
</div>
|
||||
|
||||
<div class="form-container">
|
||||
@@ -52,7 +52,7 @@
|
||||
|
||||
{form_field form=$form field='name'}
|
||||
<div class="form-group {if $error}has-error{/if}">
|
||||
<label for="{$label_attr.for}" class="control-label">{intl l="{$label}"} : </label>
|
||||
<label for="{$label_attr.for}" class="control-label">{$label} : </label>
|
||||
<input type="text" id="{$label_attr.for}" required="required" name="{$name}" value="{$value}" title="{intl l='Template name'}" placeholder="{intl l='Template name'}" class="form-control">
|
||||
</div>
|
||||
{/form_field}
|
||||
@@ -97,7 +97,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-error">
|
||||
{intl l="Sorry, template ID=$template_id was not found."}
|
||||
{intl l="Sorry, template ID=%id was not found." id=$template_id}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user