This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,22 @@
<?php
return array(
'group_exists' => 'Ryhmä on jo olemassa!',
'group_not_found' => 'Ryhmää :id ei ole olemassa.',
'group_name_required' => 'Nimi on pakollinen',
'success' => array(
'create' => 'Ryhmä luotiin onnistuneesti.',
'update' => 'Ryhmä päivitettiin onnistuneesti.',
'delete' => 'Ryhmä poistettiin onnistuneesti.',
),
'delete' => array(
'confirm' => 'Oletko varma että haluat poistaa tämän ryhmän?',
'create' => 'Ryhmän luonnissa tapahtui virhe. Yritä uudelleen.',
'update' => 'Ryhmän päivityksessä tapahtui virhe. Yritä uudelleen.',
'delete' => 'Ryhmän poistossa tapahtui virhe. Yritä uudelleen.',
),
);

View File

@ -0,0 +1,9 @@
<?php
return array(
'id' => 'Tunnus',
'name' => 'Nimi',
'users' => 'Käyttäjien lkm',
);

View File

@ -0,0 +1,16 @@
<?php
return [
'about_groups_title' => 'Tietoja ryhmistä',
'about_groups' => 'Ryhmien avulla voit yhdenmukaistaa käyttöoikeudet.',
'group_management' => 'Ryhmienhallinta',
'create' => 'Luo uusi ryhmä',
'update' => 'Muokkaa ryhmää',
'group_name' => 'Ryhmän nimi',
'group_admin' => 'Ryhmän ylläpitäjä',
'allow' => 'Salli',
'deny' => 'Estä',
'permission' => 'Käyttöoikeus',
'grant' => 'Myönnä',
'no_permissions' => 'Tällä ryhmällä ei ole oikeuksia.'
];