%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/customLocale/ |
Upload File : |
{**
* plugins/generic/customLocale/locale.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.
*
* List of component locales to edit for a particular locale
*
*}
{strip}
{translate|assign:"pageTitleTranslated" key="plugins.generic.customLocale.locale" locale=$locale}
{include file="common/header.tpl"}
{/strip}
<p>{translate key="plugins.generic.customLocale.localeDescription"}</p>
<div id="localeFiles">
<h3>{translate key="plugins.generic.customLocale.localeFiles"}</h3>
<table class="listing" width="100%">
<tr><td colspan="2" class="headseparator"> </td></tr>
<tr class="heading" valign="bottom">
<td width="85%">{translate key="plugins.generic.customLocale.file.filename"}</td>
<td width="15%">{translate key="common.action"}</td>
</tr>
<tr><td colspan="2" class="headseparator"> </td></tr>
{iterate from=localeFiles item=filename}
{assign var=filenameEscaped value=$filename|escape:"url"|escape:"url"}
{if file_exists($filename)}
{assign var=fileExists value=1}
{else}
{assign var=fileExists value=0}
{/if}
<tr valign="top">
<td>
{if $fileExists}
{$filename|escape}
{/if}
</td>
<td>
{if $fileExists}
<a href="{plugin_url path="editLocaleFile" key=$locale file=$filenameEscaped}" class="action">{translate key="common.edit"}</a>
{/if}
</td>
</tr>
<tr>
<td colspan="2" class="{if $localeFiles->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $localeFiles->wasEmpty()}
<tr>
<td colspan="2" class="nodata">{translate key="common.none"}</td>
</tr>
<tr>
<td colspan="2" class="endseparator"> </td>
</tr>
{else}
<tr>
<td align="left">{page_info iterator=$localeFiles}</td>
<td align="right">{page_links anchor="localeFiles" name="localeFiles" iterator=$localeFiles}</td>
</tr>
{/if}
</table>
</div>
{include file="common/footer.tpl"}