-
-
Notifications
You must be signed in to change notification settings - Fork 839
feature add hu translation #1114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
+102
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
locale/hu/auth.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| <?php | ||
|
|
||
| return [ | ||
|
|
||
| /* | ||
| |-------------------------------------------------------------------------- | ||
| | Authentication Language Lines | ||
| |-------------------------------------------------------------------------- | ||
| | | ||
| | The following language lines are used during authentication for various | ||
| | messages that we need to display to the user. You are free to modify | ||
| | these language lines according to your application's requirements. | ||
| | | ||
| */ | ||
|
|
||
| 'failed' => 'Ezek a hitelesítő adatok nem egyeznek a nyilvántartásunkkal.', | ||
| 'throttle' => 'Túl sok bejelentkezési kísérlet. Kérjük, próbálkozzon újra :seconds másodperc múlva.', | ||
|
|
||
| 'full_name' => 'Teljes név', | ||
| 'email' => 'Email', | ||
| 'password' => 'Jelszó', | ||
| 'confirm_password' => 'Jelszó megerősítése', | ||
| 'remember_me' => 'Emlékezz rám', | ||
| 'sign_in' => 'Bejelentkezés', | ||
| 'sign_out' => 'Kijelentkezés', | ||
| 'register' => 'Regisztráció', | ||
|
|
||
| 'login' => [ | ||
| 'title' => 'Jelentkezzen be a munkamenet indításához', | ||
| 'forgot_password' => 'Elfelejtettem a jelszavam', | ||
| ], | ||
|
|
||
| 'registration' => [ | ||
| 'title' => 'Új tagság regisztrálása', | ||
| 'i_agree' => 'Elfogadom', | ||
| 'terms' => 'a feltételeket', | ||
| 'have_membership' => 'Már van tagságom', | ||
| ], | ||
|
|
||
| 'forgot_password' => [ | ||
| 'title' => 'Elfelejtetted a jelszavad? Itt könnyen kérhetsz új jelszót.', | ||
| 'send_pwd_reset' => 'Jelszó-visszaállító link küldése', | ||
| ], | ||
|
|
||
| 'reset_password' => [ | ||
| 'title' => 'Csak egy lépés választ el az új jelszótól, állítsd vissza most.', | ||
| 'reset_pwd_btn' => 'Jelszó visszaállítása', | ||
| ], | ||
|
|
||
| 'confirm_passwords' => [ | ||
| 'title' => 'Kérjük, erősítse meg a jelszavát a folytatáshoz.', | ||
| 'forgot_your_password' => 'Elfelejtette a jelszavát?', | ||
| ], | ||
|
|
||
| 'verify_email' => [ | ||
| 'title' => 'Erősítse meg az email címét', | ||
| 'success' => 'Új megerősítő linket küldtünk az email címére', | ||
| 'notice' => 'A folytatás előtt kérjük, ellenőrizze emailjeit a megerősítő linkért. Ha nem kapta meg az emailt,', | ||
| 'another_req' => 'kattintson ide egy új kéréséhez', | ||
| ], | ||
|
|
||
| 'emails' => [ | ||
| 'password' => [ | ||
| 'reset_link' => 'Kattintson ide a jelszó visszaállításához', | ||
| ], | ||
| ], | ||
| ]; |
24 changes: 24 additions & 0 deletions
locale/hu/crud.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| <?php | ||
|
|
||
| return [ | ||
|
|
||
| 'add_new' => 'Új hozzáadása', | ||
| 'cancel' => 'Mégse', | ||
| 'create' => 'Létrehozás', | ||
| 'edit' => 'Szerkesztés', | ||
| 'save' => 'Mentés', | ||
| 'delete' => 'Törlés', | ||
| 'detail' => 'Részletek', | ||
| 'back' => 'Vissza', | ||
| 'search' => 'Keresés', | ||
| 'export' => 'Exportálás', | ||
| 'print' => 'Nyomtatás', | ||
| 'reset' => 'Visszaállítás', | ||
| 'reload' => 'Újratöltés', | ||
| 'action' => 'Művelet', | ||
| 'id' => 'Azonosító', | ||
| 'created_at' => 'Létrehozva', | ||
| 'updated_at' => 'Frissítve', | ||
| 'deleted_at' => 'Törölve', | ||
| 'are_you_sure' => 'Biztos benne?', | ||
| ]; |
11 changes: 11 additions & 0 deletions
locale/hu/messages.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?php | ||
|
|
||
| return [ | ||
|
|
||
| 'retrieved' => ':model sikeresen lekérve.', | ||
| 'saved' => ':model sikeresen elmentve.', | ||
| 'updated' => ':model sikeresen frissítve.', | ||
| 'deleted' => ':model sikeresen törölve.', | ||
| 'not_found' => ':model nem található.', | ||
|
|
||
| ]; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.