Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / shared / states.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 // some data used in the examples
16 Ext.namespace('Ext.example');
17
18 Ext.example.states = [
19         ['AL', 'Alabama', 'The Heart of Dixie'],
20         ['AK', 'Alaska', 'The Land of the Midnight Sun'],
21         ['AZ', 'Arizona', 'The Grand Canyon State'],
22         ['AR', 'Arkansas', 'The Natural State'],
23         ['CA', 'California', 'The Golden State'],
24         ['CO', 'Colorado', 'The Mountain State'],
25         ['CT', 'Connecticut', 'The Constitution State'],
26         ['DE', 'Delaware', 'The First State'],
27         ['DC', 'District of Columbia', "The Nation's Capital"],
28         ['FL', 'Florida', 'The Sunshine State'],
29         ['GA', 'Georgia', 'The Peach State'],
30         ['HI', 'Hawaii', 'The Aloha State'],
31         ['ID', 'Idaho', 'Famous Potatoes'],
32         ['IL', 'Illinois', 'The Prairie State'],
33         ['IN', 'Indiana', 'The Hospitality State'],
34         ['IA', 'Iowa', 'The Corn State'],
35         ['KS', 'Kansas', 'The Sunflower State'],
36         ['KY', 'Kentucky', 'The Bluegrass State'],
37         ['LA', 'Louisiana', 'The Bayou State'],
38         ['ME', 'Maine', 'The Pine Tree State'],
39         ['MD', 'Maryland', 'Chesapeake State'],
40         ['MA', 'Massachusetts', 'The Spirit of America'],
41         ['MI', 'Michigan', 'Great Lakes State'],
42         ['MN', 'Minnesota', 'North Star State'],
43         ['MS', 'Mississippi', 'Magnolia State'],
44         ['MO', 'Missouri', 'Show Me State'],
45         ['MT', 'Montana', 'Big Sky Country'],
46         ['NE', 'Nebraska', 'Beef State'],
47         ['NV', 'Nevada', 'Silver State'],
48         ['NH', 'New Hampshire', 'Granite State'],
49         ['NJ', 'New Jersey', 'Garden State'],
50         ['NM', 'New Mexico', 'Land of Enchantment'],
51         ['NY', 'New York', 'Empire State'],
52         ['NC', 'North Carolina', 'First in Freedom'],
53         ['ND', 'North Dakota', 'Peace Garden State'],
54         ['OH', 'Ohio', 'The Heart of it All'],
55         ['OK', 'Oklahoma', 'Oklahoma is OK'],
56         ['OR', 'Oregon', 'Pacific Wonderland'],
57         ['PA', 'Pennsylvania', 'Keystone State'],
58         ['RI', 'Rhode Island', 'Ocean State'],
59         ['SC', 'South Carolina', 'Nothing Could be Finer'],
60         ['SD', 'South Dakota', 'Great Faces, Great Places'],
61         ['TN', 'Tennessee', 'Volunteer State'],
62         ['TX', 'Texas', 'Lone Star State'],
63         ['UT', 'Utah', 'Salt Lake State'],
64         ['VT', 'Vermont', 'Green Mountain State'],
65         ['VA', 'Virginia', 'Mother of States'],
66         ['WA', 'Washington', 'Green Tree State'],
67         ['WV', 'West Virginia', 'Mountain State'],
68         ['WI', 'Wisconsin', "America's Dairyland"],
69         ['WY', 'Wyoming', 'Like No Place on Earth']
70     ];