2023-08-10 15:29:25 +02:00
|
|
|
<?php
|
2023-08-14 15:10:34 +02:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2023 Roland Rusch, easy-smart solution GmbH <roland.rusch@easy-smart.ch>
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
2023-08-10 15:29:25 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Xentral\Components\I18n\Iso639;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Names for the iso639 list.
|
|
|
|
*
|
|
|
|
* @see \Xentral\Components\I18n\Iso639
|
|
|
|
* @author Roland Rusch, easy-smart solution GmbH <roland.rusch@easy-smart.ch>
|
|
|
|
*/
|
|
|
|
abstract class Name/* extends Ruga_Enum */
|
|
|
|
{
|
|
|
|
/** Englisch */
|
|
|
|
const ENG = 'NAME_eng';
|
|
|
|
/** Französisch */
|
|
|
|
const FRA = 'NAME_fra';
|
|
|
|
/** Deutsch */
|
|
|
|
const DEU = 'NAME_deu';
|
|
|
|
|
|
|
|
|
|
|
|
protected static $fullnameMap = [
|
|
|
|
self::ENG => 'Englische Bezeichnung',
|
|
|
|
self::FRA => 'Französische Bezeichnung',
|
|
|
|
self::DEU => 'Deutsche Bezeichnung',
|
|
|
|
];
|
|
|
|
}
|