HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/ReturnIndustries/return-industries.nl/app/Komma/Globalization/Culture.php
<?php


namespace App\Komma\Globalization;

/**
 * Class Culture
 *
 * @package App\Komma\Globalization
 */
abstract class Culture
{
    /** @var array Cultural data. */
    public const DATA = [
        [
            'DisplayName' => 'Dutch',
            'EnglishName' => 'Dutch', //What you speak. I speak....
            'NativeName' => 'Nederlands', //What you speak when you say it in their native language. Ik spreek....
            'ISO-639-1' => 'NL',
            'ISO-639-2' => 'NLD',
            'ISO-639-3' => 'NLD',

            'country/regions' => [
            [
                    'Name' => 'NL',                         //ISO-3166
                    'DisplayName' => 'Netherlands',         //I live in...
                    'EnglishName' => 'Netherlands',         //I live in...
                    'NativeName' => 'Nederland',
                    'IsMetric' => true,
                    'TwoLetterISORegionName' => 'NL',       //ISO-3166
                    'ThreeLetterISORegionName' => 'NLD',    //ISO-3166
                    'CurrencyEnglishName' => 'Euro',
                    'CurrencyNativeName' => 'euro',
                    'CurrencySymbol' => '€',
                    'ISOCurrencySymbol' => 'EUR',           //ISO-4217
                    'numberFormatting' => [
                        'currencyDecimalDigits' => 2,
                        'currencyDecimalSeparator' => ',',
                        'currencyGroupSeparator' => '.',
                        'currencyGroupSizes' => 3
                    ]
                  ],
            [
                    'Name' => 'BE',                         //ISO-3166
                    'DisplayName' => 'Belgium',
                    'EnglishName' => 'Belgium',
                    'NativeName' => 'België',
                    'IsMetric' => true,
                    'TwoLetterISORegionName' => 'BE',       //ISO-3166
                    'ThreeLetterISORegionName' => 'BEL',    //ISO-3166
                    'CurrencyEnglishName' => 'Euro',
                    'CurrencyNativeName' => 'euro',
                    'CurrencySymbol' => '€',
                    'ISOCurrencySymbol' => 'EUR',
                    'numberFormatting' => [
                        'currencyDecimalDigits' => 2,
                        'currencyDecimalSeparator' => ',',
                        'currencyGroupSeparator' => '.',
                        'currencyGroupSizes' => 3
                    ]
                ]
            ]
        ],
        [
            'DisplayName' => 'English',
            'EnglishName' => 'English',
            'NativeName' => 'English',
            'ISO-639-1' => 'EN',
            'ISO-639-2' => 'ENG',
            'ISO-639-3' => 'ENG',
            'country/regions' => [
            [
                    'Name' => 'GB',                         //ISO-3166
                    'DisplayName' => 'United Kingdom',
                    'EnglishName' => 'United Kingdom',
                    'NativeName' => 'United Kingdom',
                    'IsMetric' => false,
                    'TwoLetterISORegionName' => 'GB',       //ISO-3166
                    'ThreeLetterISORegionName' => 'GBR',    //ISO-3166
                    'CurrencyEnglishName' => 'Pound sterling',
                    'CurrencyNativeName' => 'Pound sterling',
                    'CurrencySymbol' => '£',
                    'ISOCurrencySymbol' => 'GBP',           //ISO-4217
                    'numberFormatting' => [
                        'currencyDecimalDigits' => 2,
                        'currencyDecimalSeparator' => '',
                        'currencyGroupSeparator' => '',
                        'currencyGroupSizes' => 3
                    ]
                ],
            [
                    'Name' => 'US',                         //ISO-3166
                    'DisplayName' => 'United states',
                    'EnglishName' => 'United states',
                    'NativeName' => 'United states',
                    'IsMetric' => false,
                    'TwoLetterISORegionName' => 'US',       //ISO-3166
                    'ThreeLetterISORegionName' => 'USA',    //ISO-3166
                    'CurrencyEnglishName' => 'Dollar',
                    'CurrencyNativeName' => 'Dollar',
                    'CurrencySymbol' => '$',
                    'ISOCurrencySymbol' => 'USD',           //ISO-4217
                    'numberFormatting' => [
                        'currencyDecimalDigits' => 2,
                        'currencyDecimalSeparator' => '.',
                        'currencyGroupSeparator' => ',',
                        'currencyGroupSizes' => 3
                    ]
                ],
            ]
        ],
        [
            'DisplayName' => 'German',
            'EnglishName' => 'German',
            'NativeName' => 'Deutsch',
            'ISO-639-1' => 'DE',
            'ISO-639-2' => 'DEU',
            'ISO-639-3' => 'DEU',
            'country/regions' => [
            [
                    'Name' => 'DE',                         //ISO-3166
                    'DisplayName' => 'Germany',
                    'EnglishName' => 'Germany',
                    'NativeName' => 'Deutschland',
                    'IsMetric' => true,
                    'TwoLetterISORegionName' => 'DE',       //ISO-3166
                    'ThreeLetterISORegionName' => 'GER',    //ISO-3166
                    'CurrencyEnglishName' => 'Euro',
                    'CurrencyNativeName' => 'euro',
                    'CurrencySymbol' => '€',
                    'ISOCurrencySymbol' => 'EUR',           //ISO-4217
                    'numberFormatting' => [
                        'currencyDecimalDigits' => 2,
                        'currencyDecimalSeparator' => '.',
                        'currencyGroupSeparator' => ',',
                        'currencyGroupSizes' => 3
                    ]
                ],
            ]
        ]
    ];
}