CluPilotCloud/config/countries.php

37 lines
916 B
PHP

<?php
// ISO 3166-1 alpha-2 → name, for the datacenter location picker (avoids typos).
// Curated to the regions CluPilot realistically hosts in; extend as needed.
return [
'DE' => 'Deutschland',
'AT' => 'Österreich',
'CH' => 'Schweiz',
'FI' => 'Finnland',
'SE' => 'Schweden',
'NO' => 'Norwegen',
'DK' => 'Dänemark',
'NL' => 'Niederlande',
'BE' => 'Belgien',
'LU' => 'Luxemburg',
'FR' => 'Frankreich',
'GB' => 'Vereinigtes Königreich',
'IE' => 'Irland',
'ES' => 'Spanien',
'PT' => 'Portugal',
'IT' => 'Italien',
'PL' => 'Polen',
'CZ' => 'Tschechien',
'SK' => 'Slowakei',
'HU' => 'Ungarn',
'SI' => 'Slowenien',
'HR' => 'Kroatien',
'RO' => 'Rumänien',
'BG' => 'Bulgarien',
'GR' => 'Griechenland',
'EE' => 'Estland',
'LV' => 'Lettland',
'LT' => 'Litauen',
'US' => 'USA',
'CA' => 'Kanada',
];