states.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // some data used in the examples
  2. Ext.namespace('Ext.example');
  3. Ext.example.states = [
  4. ['AL', 'Alabama', 'The Heart of Dixie'],
  5. ['AK', 'Alaska', 'The Land of the Midnight Sun'],
  6. ['AZ', 'Arizona', 'The Grand Canyon State'],
  7. ['AR', 'Arkansas', 'The Natural State'],
  8. ['CA', 'California', 'The Golden State'],
  9. ['CO', 'Colorado', 'The Mountain State'],
  10. ['CT', 'Connecticut', 'The Constitution State'],
  11. ['DE', 'Delaware', 'The First State'],
  12. ['DC', 'District of Columbia', "The Nation's Capital"],
  13. ['FL', 'Florida', 'The Sunshine State'],
  14. ['GA', 'Georgia', 'The Peach State'],
  15. ['HI', 'Hawaii', 'The Aloha State'],
  16. ['ID', 'Idaho', 'Famous Potatoes'],
  17. ['IL', 'Illinois', 'The Prairie State'],
  18. ['IN', 'Indiana', 'The Hospitality State'],
  19. ['IA', 'Iowa', 'The Corn State'],
  20. ['KS', 'Kansas', 'The Sunflower State'],
  21. ['KY', 'Kentucky', 'The Bluegrass State'],
  22. ['LA', 'Louisiana', 'The Bayou State'],
  23. ['ME', 'Maine', 'The Pine Tree State'],
  24. ['MD', 'Maryland', 'Chesapeake State'],
  25. ['MA', 'Massachusetts', 'The Spirit of America'],
  26. ['MI', 'Michigan', 'Great Lakes State'],
  27. ['MN', 'Minnesota', 'North Star State'],
  28. ['MS', 'Mississippi', 'Magnolia State'],
  29. ['MO', 'Missouri', 'Show Me State'],
  30. ['MT', 'Montana', 'Big Sky Country'],
  31. ['NE', 'Nebraska', 'Beef State'],
  32. ['NV', 'Nevada', 'Silver State'],
  33. ['NH', 'New Hampshire', 'Granite State'],
  34. ['NJ', 'New Jersey', 'Garden State'],
  35. ['NM', 'New Mexico', 'Land of Enchantment'],
  36. ['NY', 'New York', 'Empire State'],
  37. ['NC', 'North Carolina', 'First in Freedom'],
  38. ['ND', 'North Dakota', 'Peace Garden State'],
  39. ['OH', 'Ohio', 'The Heart of it All'],
  40. ['OK', 'Oklahoma', 'Oklahoma is OK'],
  41. ['OR', 'Oregon', 'Pacific Wonderland'],
  42. ['PA', 'Pennsylvania', 'Keystone State'],
  43. ['RI', 'Rhode Island', 'Ocean State'],
  44. ['SC', 'South Carolina', 'Nothing Could be Finer'],
  45. ['SD', 'South Dakota', 'Great Faces, Great Places'],
  46. ['TN', 'Tennessee', 'Volunteer State'],
  47. ['TX', 'Texas', 'Lone Star State'],
  48. ['UT', 'Utah', 'Salt Lake State'],
  49. ['VT', 'Vermont', 'Green Mountain State'],
  50. ['VA', 'Virginia', 'Mother of States'],
  51. ['WA', 'Washington', 'Green Tree State'],
  52. ['WV', 'West Virginia', 'Mountain State'],
  53. ['WI', 'Wisconsin', "America's Dairyland"],
  54. ['WY', 'Wyoming', 'Like No Place on Earth']
  55. ];