SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/Helpers/Locales/LocaleInfoNOR.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 Norway; see {@see LocaleInfo}
  19.  */
  20. class LocaleInfoNOR extends LocaleInfo
  21. {
  22. protected $state_list = [
  23. 'Østfold',
  24. 'Akershus',
  25. 'Oslo',
  26. 'Hedmark',
  27. 'Oppland',
  28. 'Buskerud',
  29. 'Vestfold',
  30. 'Telemark',
  31. 'Aust-Agder',
  32. 'Vest-Agder',
  33. 'Rogaland',
  34. 'Hordaland',
  35. 'Sogn og Fjordane',
  36. 'Møre og Romsdal',
  37. 'Sør-Trøndelag',
  38. 'Nord-Trøndelag',
  39. 'Nordland',
  40. 'Troms',
  41. 'Finnmark',
  42. 'Svalbard',
  43. 'Jan Mayen',
  44. ];
  45. }
  46.