1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-11 07:34:22 +02:00

Admin Panel: translates updates

This commit is contained in:
Awilum
2018-12-27 16:17:38 +03:00
parent 5af3ccc158
commit d650f9b85f
2 changed files with 2 additions and 7 deletions

View File

@@ -5,8 +5,7 @@ admin_create: "Create"
admin_debugging: "Debugging"
admin_description: "Description"
admin_email: "Email"
admin_flextype_admin_version: "Flextype Admin Version"
admin_flextype_core_version: "Flextype Core Version"
admin_flextype_version: "Flextype Version"
admin_information_heading: "Information"
admin_installed: "Installed"
admin_keywords: "Keywords"

View File

@@ -21,13 +21,9 @@ Themes::view('admin/views/partials/content-start')->display();
<table class="table no-margin">
<tbody>
<tr>
<td width="200"><?= __('admin_flextype_core_version') ?></td>
<td width="200"><?= __('admin_flextype_version') ?></td>
<td><?= Flextype::VERSION ?></td>
</tr>
<tr>
<td width="200"><?= __('admin_flextype_admin_version') ?></td>
<td><?= Registry::get('plugins.admin.version'); ?></td>
</tr>
<tr>
<td><?= __('admin_debugging'); ?></td>
<td><?php if (Registry::get('settings.errors.display')) echo __('admin_on'); else echo __('admin_off'); ?></td>