mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * firefly.php
 | |
|  * Copyright (c) 2019 james@firefly-iii.org
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as
 | |
|  * published by the Free Software Foundation, either version 3 of the
 | |
|  * License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| return [
 | |
|     '404_header'              => 'Az oldal nem található.',
 | |
|     '404_page_does_not_exist' => 'A keresett oldal nem létezik. Kérem ellenőrizze, hogy helyes URL-t írt-e be. Nincs-e elírás a URL címben?',
 | |
|     '404_send_error'          => 'Elnézését kérem, ha automatikus átirányítással érkezett erre az oldalra. A hibával kapcsolatban további információkat talál a napló fájlokban. Sokat segítene a hiba javításán, ha elküldené az adatokat.',
 | |
|     '404_github_link'         => 'Kérem nyisson egy hibajegyet <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>-on, ha biztos benne, hogy ennek az lapnak léteznie kellene.',
 | |
|     'whoops'                  => 'Hoppá',
 | |
|     'fatal_error'             => 'Súlyos hiba történt. Kérem ellenőrizze a részleteket a napló fájlokban a "storage/logs" könyvtárban vagy használja a "docker logs -f [container]" parancsot.',
 | |
|     'maintenance_mode'        => 'Firefly III karbantartás alatt.',
 | |
|     'be_right_back'           => 'Rögtön jövök!',
 | |
|     'check_back'              => 'FireFly III jelenleg karbantartás alatt. Kérem látogasson vissza később.',
 | |
|     'error_occurred'          => 'Hoppá! Hiba történt.',
 | |
|     'error_not_recoverable'   => 'Sajnos a hiba után nem sikerült visszaállni :(. A futás megszakadt. A hiba:',
 | |
|     'error'                   => 'Hiba',
 | |
|     'error_location'          => 'Hiba a <span style="font-family: monospace;">:file</span> fájl :line sorában a :code kódnál.',
 | |
|     'stacktrace'              => 'Stack trace',
 | |
|     'more_info'               => 'További információ',
 | |
|     'collect_info'            => 'További információk gyűjthetők a <code>storage/logs</code> könyvtárban lévő napló fájlokból. Vagy ha Dockert használ, akkor a <code>docker logs -f [container]</code> paranccsal.',
 | |
|     'collect_info_more'       => 'Hiba információk gyűjtéséről tovább olvashatsz az <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>-ban.',
 | |
|     'github_help'             => 'Segítség kérése GitHub-on',
 | |
|     'github_instructions'     => 'Örömmel fogadjuk ha <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>-on hibajegyet nyitsz.',
 | |
|     'use_search'              => 'Használd a keresőt!',
 | |
|     'include_info'            => 'Add hozzá a <a href=":link">debug</a> oldalon található információkat.',
 | |
|     'tell_more'               => 'Részletesebben írd le, mint hogy "azt írja hoppá, hiba történt!"',
 | |
|     'include_logs'            => 'Hiba naplók hozzáadása (lásd fentebb).',
 | |
|     'what_did_you_do'         => 'Meséld el mit csináltál.',
 | |
|     'offline_header'          => 'You are probably offline',
 | |
|     'offline_unreachable'     => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
 | |
|     'offline_github'          => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
 | |
| 
 | |
| ];
 |