mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
81 lines
1.5 KiB
PHP
81 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Localization\Subregion
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Localization\Subregion;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Country codes ISO 3166-2 list.
|
|
*
|
|
* @package phpOMS\Localization\Subregion
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
class ISO3166TwoCHNameEnum extends Enum
|
|
{
|
|
public const _AG = 'Aargau';
|
|
|
|
public const _AR = 'Appenzell Ausserrhoden';
|
|
|
|
public const _AI = 'Appenzell Innerrhoden';
|
|
|
|
public const _BL = 'Basel-Landschaft';
|
|
|
|
public const _BS = 'Basel-Stadt';
|
|
|
|
public const _BE = 'Bern, Berne';
|
|
|
|
public const _FR = 'Fribourg, Freiburg';
|
|
|
|
public const _GE = 'Genève';
|
|
|
|
public const _GL = 'Glarus';
|
|
|
|
public const _GR = 'Graubünden, Grigioni, Grischun';
|
|
|
|
public const _JU = 'Jura';
|
|
|
|
public const _LU = 'Luzern';
|
|
|
|
public const _NE = 'Neuchâtel';
|
|
|
|
public const _NW = 'Nidwalden';
|
|
|
|
public const _OW = 'Obwalden';
|
|
|
|
public const _SG = 'Sankt Gallen';
|
|
|
|
public const _SH = 'Schaffhausen';
|
|
|
|
public const _SZ = 'Schwyz';
|
|
|
|
public const _SO = 'Solothurn';
|
|
|
|
public const _TG = 'Thurgau';
|
|
|
|
public const _TI = 'Ticino';
|
|
|
|
public const _UR = 'Uri';
|
|
|
|
public const _VS = 'Valais, Wallis';
|
|
|
|
public const _VD = 'Vaud';
|
|
|
|
public const _ZG = 'Zug';
|
|
|
|
public const _ZH = 'Zürich';
|
|
}
|