🌐 Add multilingual configuration and translation files

This commit is contained in:
HolgerHatGarKeineNode
2025-11-22 23:53:15 +01:00
parent ff2a5636f6
commit 8600f98312
27 changed files with 1090 additions and 384 deletions

16
config/w-countries.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
use Illuminate\Support\Carbon;
return [
'name' => 'WCountries',
'locale_key' => config('translatable.locale_key', 'locale'),
'cache' => [
'is_cached' => true,
'big_time' => Carbon::now()->addDays(120),
'small_time' => Carbon::now()->addDays(7),
'prefix' => null,
],
];