SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/Helpers/Locales/LocaleInfoIDN.php

  1. <?php
  2. /*
  3.  * Copyright (C) 2017 Karmabunny Pty Ltd.
  4.  *
  5.  * This file is a part of SproutCMS.
  6.  *
  7.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation, either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * For more information, visit <http://getsproutcms.com>.
  12.  */
  13.  
  14. namespace Sprout\Helpers\Locales;
  15.  
  16.  
  17. /**
  18.  * Locale info for Indonesia; see {@see LocaleInfo}
  19.  */
  20. class LocaleInfoIDN extends LocaleInfo
  21. {
  22. protected $state_list = [
  23. 'AC' => 'Aceh',
  24. 'BA' => 'Bali',
  25. 'BB' => 'Bangka Belitung',
  26. 'BE' => 'Bengkulu',
  27. 'BT' => 'Banten',
  28. 'GO' => 'Gorontalo',
  29. 'JA' => 'Jambi',
  30. 'JB' => 'Jawa Barat',
  31. 'JI' => 'Jawa Timur',
  32. 'JK' => 'Jakarta Raya',
  33. 'JT' => 'Jawa Tengah',
  34. 'KB' => 'Kalimantan Barat',
  35. 'KI' => 'Kalimantan Timur',
  36. 'KR' => 'Kepulauan Riau',
  37. 'KS' => 'Kalimantan Selatan',
  38. 'KT' => 'Kalimantan Tengah',
  39. 'KU' => 'Kalimantan Utara',
  40. 'LA' => 'Lampung',
  41. 'MA' => 'Maluku',
  42. 'MU' => 'Maluku Utara',
  43. 'NB' => 'Nusa Tenggara Barat',
  44. 'NT' => 'Nusa Tenggara Timur',
  45. 'PA' => 'Papua',
  46. 'PB' => 'Papua Barat',
  47. 'RI' => 'Riau',
  48. 'SA' => 'Sulawesi Utara',
  49. 'SB' => 'Sumatera Barat',
  50. 'SG' => 'Sulawesi Tenggara',
  51. 'SN' => 'Sulawesi Selatan',
  52. 'SR' => 'Sulawesi Barat',
  53. 'SS' => 'Sumatera Selatan',
  54. 'ST' => 'Sulawesi Tengah',
  55. 'SU' => 'Sumatera Utara',
  56. 'YO' => 'Yogyakarta',
  57. ];
  58. }
  59.