source of /sprout/Helpers/Locales/LocaleInfoPSE.php<?php /* * Copyright (C) 2017 Karmabunny Pty Ltd. * * This file is a part of SproutCMS. * * SproutCMS is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Foundation, either * version 2 of the License, or (at your option) any later version. * * For more information, visit <http://getsproutcms.com>. */ namespace Sprout\Helpers\Locales; /** * Locale info for Palestine; see {@see LocaleInfo} */ class LocaleInfoPSE extends LocaleInfo { protected $state_list = [ 'BTH' => 'Bethlehem', 'DEB' => 'Deir El Balah', 'GZA' => 'Gaza', 'HBN' => 'Hebron', 'JEM' => 'Jerusalem', 'JRH' => 'Jericho and Al Aghwar', 'KYS' => 'Khan Yunis', 'NBS' => 'Nablus', 'NGZ' => 'North Gaza', 'QQA' => 'Qalqilya', 'RBH' => 'Ramallah', 'RFH' => 'Rafah', 'SLT' => 'Salfit', 'TBS' => 'Tubas', 'TKM' => 'Tulkarm', ]; }
|