diff --git a/languages.yaml b/languages.yaml index 1a2cf410..4ca30a52 100644 --- a/languages.yaml +++ b/languages.yaml @@ -114,6 +114,22 @@ en: SWITCHING_TO: Switching to SWITCHING_TO_DESCRIPTION: By switching to a different theme, there is no guarantee that all the layout pages are supported, potentially causing errors when trying to load said pages. SWITCHING_TO_CONFIRMATION: Do you want to continue and switch to the theme + CREATE_NEW_USER: Create New User + REMOVE_USER: Remove User + ACCESS_DENIED: Access denied + ACCOUNT_NOT_ADMIN: your account does not have administrator permissions + PHP_INFO: PHP Info + INSTALLER: Installer + AVAILABLE_THEMES: Available Themes + AVAILABLE_PLUGINS: Available Plugins + INSTALLED_THEMES: Installed Themes + INSTALLED_PLUGINS: Installed Plugins + BROWSE_ERROR_LOGS: Browse Error Logs + SITE: Site + INFO: Info + SYSTEM: System + USER: User + ADD_ACCOUNT: Add Account es: ADMIN_BETA_MSG: ¡Está es una versión Beta! Utilízala bajo tu propio riesgo... @@ -251,3 +267,19 @@ it: SWITCHING_TO: Passare a SWITCHING_TO_DESCRIPTION: Cambiando il tema, non è garantito che tutti i layout di pagina siano supportati, potenzialmente causando errori quando si tenta di caricare tali pagine. SWITCHING_TO_CONFIRMATION: Vuoi continuare e passare al tema + CREATE_NEW_USER: Crea nuovo utente + REMOVE_USER: Rimuovi utente + ACCESS_DENIED: Accesso negato + ACCOUNT_NOT_ADMIN: il tuo account non ha permessi di amministratore + PHP_INFO: PHP Info + INSTALLER: Installazione + AVAILABLE_THEMES: Temi disponibili + AVAILABLE_PLUGINS: Plugin disponibili + INSTALLED_THEMES: Temi installati + INSTALLED_PLUGINS: Plugin installati + BROWSE_ERROR_LOGS: Vedi log errori + SITE: Sito + INFO: Info + SYSTEM: Sistema + USER: Utente + ADD_ACCOUNT: Aggiungi utente \ No newline at end of file diff --git a/themes/grav/templates/denied.html.twig b/themes/grav/templates/denied.html.twig index 11a67662..4f1c160f 100644 --- a/themes/grav/templates/denied.html.twig +++ b/themes/grav/templates/denied.html.twig @@ -3,12 +3,12 @@ {% block content %}

- Access denied + {{ "PLUGIN_ADMIN.ACCESS_DENIED"|tu }}

{% include 'partials/messages.html.twig' %} -

{{ admin.user.fullname }}, your account does not have administrator permissions. Logout

+

{{ admin.user.fullname }}, {{ "PLUGIN_ADMIN.ACCOUNT_NOT_ADMIN"|tu }}. {{ "PLUGIN_ADMIN.LOGOUT"|tu }}

{% endblock %} diff --git a/themes/grav/templates/info.html.twig b/themes/grav/templates/info.html.twig index 0f2c45aa..a5921845 100644 --- a/themes/grav/templates/info.html.twig +++ b/themes/grav/templates/info.html.twig @@ -4,7 +4,7 @@
Back
-

Configuration - PHP Info

+

{{ "PLUGIN_ADMIN.CONFIGURATION"|tu }} - {{ "PLUGIN_ADMIN.PHP_INFO"|tu }}

{% endblock %} {% block content_top %} diff --git a/themes/grav/templates/installer.html.twig b/themes/grav/templates/installer.html.twig index 4866ee0d..cf010bdd 100644 --- a/themes/grav/templates/installer.html.twig +++ b/themes/grav/templates/installer.html.twig @@ -1,11 +1,9 @@ {% extends 'partials/base.html.twig' %} - {% block content %} -

- Installer + {{ "PLUGIN_ADMIN.INSTALLER"|tu }}

{% include 'partials/messages.html.twig' %} diff --git a/themes/grav/templates/logs.html.twig b/themes/grav/templates/logs.html.twig index 5757ed31..aa62351d 100644 --- a/themes/grav/templates/logs.html.twig +++ b/themes/grav/templates/logs.html.twig @@ -6,7 +6,7 @@

- Browse Error Logs + {{ 'PLUGIN_ADMIN.BROWSE_ERROR_LOGS'|tu }}

diff --git a/themes/grav/templates/partials/plugins-list.html.twig b/themes/grav/templates/partials/plugins-list.html.twig index b262cc3a..e94ea9e6 100644 --- a/themes/grav/templates/partials/plugins-list.html.twig +++ b/themes/grav/templates/partials/plugins-list.html.twig @@ -1,7 +1,7 @@

- {{ installing ? "PLUGIN_ADMIN.AVAILABLE"|tu : "PLUGIN_ADMIN.INSTALLED"|tu }} {{ "PLUGIN_ADMIN.PLUGINS"|tu }} + {{ installing ? "PLUGIN_ADMIN.AVAILABLE_PLUGINS"|tu : "PLUGIN_ADMIN.INSTALLED_PLUGINS"|tu }}

diff --git a/themes/grav/templates/partials/themes-list.html.twig b/themes/grav/templates/partials/themes-list.html.twig index 0b98441b..916fde2b 100644 --- a/themes/grav/templates/partials/themes-list.html.twig +++ b/themes/grav/templates/partials/themes-list.html.twig @@ -1,7 +1,7 @@

- {{ installing ? "PLUGIN_ADMIN.AVAILABLE"|tu : "PLUGIN_ADMIN.INSTALLED"|tu }} {{ "PLUGIN_ADMIN.THEMES"|tu }} + {{ installing ? "PLUGIN_ADMIN.AVAILABLE_THEMES"|tu : "PLUGIN_ADMIN.INSTALLED_THEMES"|tu }}

diff --git a/themes/grav/templates/partials/toolbar.html.twig b/themes/grav/templates/partials/toolbar.html.twig index 34c6b4ff..d9427638 100644 --- a/themes/grav/templates/partials/toolbar.html.twig +++ b/themes/grav/templates/partials/toolbar.html.twig @@ -10,6 +10,6 @@ {% if admin.authorise %} -6Hi, {{ admin.user.fullname }} Logout +6Hi, {{ admin.user.fullname }} {{ "PLUGIN_ADMIN.LOGOUT"|tu }} {% endif %} diff --git a/themes/grav/templates/partials/users-details.html.twig b/themes/grav/templates/partials/users-details.html.twig index f648e378..d484a886 100644 --- a/themes/grav/templates/partials/users-details.html.twig +++ b/themes/grav/templates/partials/users-details.html.twig @@ -5,7 +5,7 @@ {% if user.title %}
{{ user.title }}
{% endif %}
{% else %} -

Create new user

+

{{ "PLUGIN_ADMIN.CREATE_NEW_USER"|tu }}

{% endif %} {% include 'partials/blueprints.html.twig' with { data: user, blueprints: user.blueprints } %} @@ -13,6 +13,6 @@ {% if user.exists and admin.user.username != user.username %} {% endif %} diff --git a/themes/grav/templates/plugins.html.twig b/themes/grav/templates/plugins.html.twig index b680e156..d851661f 100644 --- a/themes/grav/templates/plugins.html.twig +++ b/themes/grav/templates/plugins.html.twig @@ -25,7 +25,7 @@ {% endif %} -

Plugins

+

{{ "PLUGIN_ADMIN.PLUGINS"|tu }}

{% else %} {% if (installed) %}
diff --git a/themes/grav/templates/site.html.twig b/themes/grav/templates/site.html.twig index 9fcea1dc..ab195592 100644 --- a/themes/grav/templates/site.html.twig +++ b/themes/grav/templates/site.html.twig @@ -5,14 +5,14 @@ Back
-

Configuration - Site

+

{{ "PLUGIN_ADMIN.CONFIGURATION"|tu }} - {{ "PLUGIN_ADMIN.SITE"|tu }}

{% endblock %} {% block content_top %} {% endblock %} diff --git a/themes/grav/templates/statistics.html.twig b/themes/grav/templates/statistics.html.twig index 193af126..9261589a 100644 --- a/themes/grav/templates/statistics.html.twig +++ b/themes/grav/templates/statistics.html.twig @@ -5,7 +5,7 @@

- Statistics + {{ "PLUGIN_ADMIN.STATISTICS"|tu }}

{% include 'partials/messages.html.twig' %} diff --git a/themes/grav/templates/system.html.twig b/themes/grav/templates/system.html.twig index bb57cf24..a84b191c 100644 --- a/themes/grav/templates/system.html.twig +++ b/themes/grav/templates/system.html.twig @@ -5,14 +5,14 @@ Back
-

Configuration - System

+

{{ "PLUGIN_ADMIN.CONFIGURATION"|tu }} - {{ "PLUGIN_ADMIN.SYSTEM"|tu }}

{% endblock %} {% block content_top %} {% endblock %} diff --git a/themes/grav/templates/users.html.twig b/themes/grav/templates/users.html.twig index dca50194..06a33738 100644 --- a/themes/grav/templates/users.html.twig +++ b/themes/grav/templates/users.html.twig @@ -7,15 +7,15 @@ {% block titlebar %} {% if not admin.route %}

Users

{% else %}
Back - +
-

User: {{ user.username|e }}

+

{{ "PLUGIN_ADMIN.USER"|tu }}: {{ user.username|e }}

{% endif %} {% endblock %} @@ -26,7 +26,6 @@ {% if not admin.route %} {% include 'partials/users-list.html.twig' %} -
{% include 'partials/blueprints-new.html.twig' with { blueprints: admin.blueprints('user/account_new') } %}