add ticket type model + crud ( bérlet típus)

This commit is contained in:
2015-09-22 11:59:58 +02:00
parent ab885b13e9
commit db8fca5630
9 changed files with 242 additions and 106 deletions

View File

@@ -17,18 +17,18 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Aktív' => '',
'Are you sure you want to delete this item?' => '',
'Delete' => '',
'Felhasználók' => '',
'Inaktív' => '',
'Jelszó' => '',
'Jelszó és jelszó újra nem egyezik!' => '',
'Jelszó újra' => '',
'Keresés' => '',
'Mentés' => '',
'Update' => '',
'Update {modelClass}: ' => '',
'Users' => '',
'Új felhasználó' => '',
'Aktív' => 'Aktív',
'Are you sure you want to delete this item?' => 'Biztosan törölni szeretné ezt az element?',
'Delete' => 'Törlés',
'Felhasználók' => 'Felhasználók',
'Inaktív' => 'Inaktív',
'Jelszó' => 'Jelszó',
'Jelszó és jelszó újra nem egyezik!' => 'Jelszó és jelszó újra nem egyezik!',
'Jelszó újra' => 'Jelszó újra',
'Keresés' => 'Keresés',
'Mentés' => 'Mentés',
'Update' => 'Update',
'Update {modelClass}: ' => '{modelClass} módosítása: ',
'Users' => 'Felhasználók',
'Új felhasználó' => 'Új felhasználó',
];

View File

@@ -17,5 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Create' => 'Mentés',
'No' => 'Nem',
'Yes' => 'Igen',
];

View File

@@ -18,11 +18,9 @@
*/
return [
'Active' => 'Aktív',
'Are you sure you want to delete this item?' => 'Biztosan törölni szeretné a termék kategóriát?',
'Create' => 'Mentés',
'Create Product Category' => 'Új termék kategória',
'Created At' => 'Létrehozás ideje',
'Delete' => 'Törlés',
'Id Product Category' => 'Azonosító',
'Inactive' => 'Inaktív',
'Name' => 'Név',

View File

@@ -0,0 +1,48 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Update ticket type:' => 'Bérlet módosítása: ',
'Active' => 'Aktív',
'Create' => 'Mentés',
'Create Ticket Type' => 'Új bérlet típus',
'Created At' => 'Létrehozás ideje',
'Day' => 'Nap',
'Flag Student' => 'Diák',
'Id Account' => 'Kassza',
'Id Ticket Type' => 'Bérlet típus',
'Inactive' => 'Inaktív',
'Invalid account (inactive)!' => 'Érvénytelen kassza (inaktív)!',
'Invalid account!' => 'Érvénytelen kassza!',
'Max Usage Count' => 'Akalmak',
'Month' => 'Hónap',
'Name' => 'Név',
'Normal' => 'Normál',
'Price Brutto' => 'Bruttó ár',
'Reference month' => 'Tárgyhónap',
'Reset' => 'Reset',
'Search' => 'Keresés',
'Status' => 'Státusz',
'Student' => 'Diák',
'Ticket Types' => 'Bérlet típusok',
'Time Unit Count' => 'Idő egység mennyiség',
'Time Unit Type' => 'Idő egység típus',
'Type' => 'Típus',
'Update' => 'Módosítás',
'Updated At' => 'Módosítás ideje',
];