Zmiana aplikacji na wersje lang

This commit is contained in:
2026-09-25 16:59:37 +02:00
parent 9d25de0d89
commit 3056eb6c3d
24 changed files with 1308 additions and 1105 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
/**
* Konfiguracja menu z upstreamu Karczmy + lista języków aplikacji.
*/
return [
'upstream_base' => 'https://www.karczmabiesiada.eu/restaurant_menu/export',
'ttl_seconds' => 1800,
'timeout_seconds' => 12,
'languages' => [
'pl' => [
'label' => 'Polski',
'flag' => '🇵🇱',
'source' => 'upstream',
],
'en' => [
'label' => 'English',
'flag' => '🇬🇧',
'source' => 'upstream',
],
'de' => [
'label' => 'Deutsch',
'flag' => '🇩🇪',
'source' => 'upstream',
],
// później: 'uk' => ['label' => 'Українська', 'flag' => '🇺🇦', 'source' => 'ai', 'from' => 'pl'],
],
];