22 lines
952 B
PHP
22 lines
952 B
PHP
<?php
|
|
|
|
/**
|
|
* Greek translations for Lunar\Models\Country::name, keyed by the exact
|
|
* English spelling Lunar's own installer seeds (`lunar:import:address-data`
|
|
* fetches http://data.lunarphp.io/countries+states.json — see
|
|
* vendor/lunarphp/core/src/Console/Commands/Import/AddressData.php).
|
|
* `Country`/`State` have no i18n support of their own (plain string
|
|
* columns, no translatable trait) — this is a plain Laravel lang file, not
|
|
* Modules\Core\Localization's DB-backed TranslationService, since these
|
|
* names are fixed reference data seeded once, not editable UI copy (see
|
|
* docs/localization.md). A consuming app's storefront looks this up
|
|
* itself, e.g. __('core::countries.'.$country->name) — core has no
|
|
* storefront UI of its own to wire this into (see docs/lunar.md).
|
|
*
|
|
* Only Greece is covered — this store operates within Greece; add further
|
|
* countries here as needed.
|
|
*/
|
|
return [
|
|
'Greece' => 'Ελλάδα',
|
|
];
|