KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Lang_en_US


1 import java.util.ListResourceBundle JavaDoc;
2
3 /** English US varient language bundle.*/
4 public final class Lang_en_US extends ListResourceBundle JavaDoc {
5      
6     public Object JavaDoc[][] getContents() {
7         return contents;
8     }
9     
10     private static final Object JavaDoc[][] contents = {
11         {"language_code","en_US"}, // name of language in this bundle in ISO format
12
{"base_language_code","en"}, // base name of language in this bundle in ISO format
13
{"form_city","City:"}, // the user's city.
14
{"form_state","State:"}, // the user's state.
15
{"form_zip","Zip Code:"}, // the user's ZIP code.
16
{"opt_text_colour","Text Color"},
17         {"opt_text_colour_tt","The color of the text in messages and chats"},
18         {"opt_background_colour_tt","The color of the background in messages and chats"}
19         // END OF MATERIAL TO LOCALISE
20
};
21  }
Popular Tags