A bit more work on Ukrainian version

This commit is contained in:
Pinga 2023-11-14 12:58:39 +02:00
parent 0439463a30
commit f8306f7a68
2 changed files with 38 additions and 8 deletions

View file

@ -1,6 +1,15 @@
msgid "Dashboard" msgid "Dashboard"
msgstr "Інформаційна панель" msgstr "Інформаційна панель"
msgid "Overview"
msgstr "Огляд"
msgid "View Reports"
msgstr "Переглянути звіти"
msgid "Create new domain"
msgstr "Створіть новий домен"
msgid "Enable dark mode" msgid "Enable dark mode"
msgstr "Увімкніть темний режим" msgstr "Увімкніть темний режим"
@ -121,6 +130,15 @@ msgstr "Список реєстраторів"
msgid "Create Registrar" msgid "Create Registrar"
msgstr "Створити реєстратора" msgstr "Створити реєстратора"
msgid "List Users"
msgstr "Список користувачів"
msgid "Create User"
msgstr "Створити користувача"
msgid "Users"
msgstr "Користувачі"
msgid "Compliance" msgid "Compliance"
msgstr "Відповідність" msgstr "Відповідність"
@ -148,17 +166,26 @@ msgstr "Звіти"
msgid "System" msgid "System"
msgstr "Система" msgstr "Система"
msgid "Settings"
msgstr "Налаштування"
msgid "Activity"
msgstr "Діяльність"
msgid "Configuration" msgid "Configuration"
msgstr "Конфігурація" msgstr "Конфігурація"
msgid "User Management" msgid "User Management"
msgstr "Керування користувачами" msgstr "Керування користувачами"
msgid "EPP Log" msgid "EPP History"
msgstr "Журнал EPP" msgstr "Журнал EPP"
msgid "Audit Log" msgid "System Log"
msgstr "Журнал аудиту" msgstr "Системний журнал"
msgid "Message Queue"
msgstr "Черга повідомлень"
msgid "Backup" msgid "Backup"
msgstr "Резервна копія" msgstr "Резервна копія"
@ -172,6 +199,9 @@ msgstr "Заявки на підтримку"
msgid "Create Ticket" msgid "Create Ticket"
msgstr "Створити заявку" msgstr "Створити заявку"
msgid "Create New Ticket"
msgstr "Створити новий запит"
msgid "Documentation" msgid "Documentation"
msgstr "Документація" msgstr "Документація"

View file

@ -1,6 +1,6 @@
{% extends "layouts/app.twig" %} {% extends "layouts/app.twig" %}
{% block title %}Dashboard{% endblock %} {% block title %}{{ __('Dashboard') }}{% endblock %}
{% block content %} {% block content %}
<div class="page-wrapper"> <div class="page-wrapper">
@ -11,7 +11,7 @@
<div class="col"> <div class="col">
<!-- Page pre-title --> <!-- Page pre-title -->
<div class="page-pretitle"> <div class="page-pretitle">
Overview {{ __('Overview') }}
</div> </div>
<h2 class="page-title"> <h2 class="page-title">
{{ __('Dashboard') }} {{ __('Dashboard') }}
@ -22,14 +22,14 @@
<div class="btn-list"> <div class="btn-list">
<span class="d-none d-sm-inline"> <span class="d-none d-sm-inline">
<a href="{{route('reports')}}" class="btn btn-pink"> <a href="{{route('reports')}}" class="btn btn-pink">
View Reports {{ __('View Reports') }}
</a> </a>
</span> </span>
<a href="{{route('domaincreate')}}" class="btn btn-primary d-none d-sm-inline-block"> <a href="{{route('domaincreate')}}" class="btn btn-primary d-none d-sm-inline-block">
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg> <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg>
Create new domain {{ __('Create new domain') }}
</a> </a>
<a href="{{route('domaincreate')}}" class="btn btn-primary d-sm-none btn-icon" data-bs-toggle="modal" aria-label="Create new domain"> <a href="{{route('domaincreate')}}" class="btn btn-primary d-sm-none btn-icon" data-bs-toggle="modal" aria-label="{{ __('Create new domain') }}">
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg> <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg>
</a> </a>
</div> </div>