01: /*
02: * MyGWT Widget Library
03: * Copyright(c) 2007, MyGWT.
04: * licensing@mygwt.net
05: *
06: * http://mygwt.net/license
07: */
08: package net.mygwt.ui.client.messages;
09:
10: import com.google.gwt.i18n.client.Messages;
11:
12: /**
13: * MyGWT messages.
14: */
15: public interface MyMessages extends Messages {
16:
17: String yes();
18:
19: String no();
20:
21: String ok();
22:
23: String cancel();
24:
25: String sortAsc();
26:
27: String sortDesc();
28:
29: String columns();
30:
31: /* Themes */
32:
33: String blueTheme();
34:
35: String grayTheme();
36:
37: /* PagingToolbar */
38:
39: String beforePage();
40:
41: String afterPage(int pages);
42:
43: String firstPage();
44:
45: String previousPage();
46:
47: String nextPage();
48:
49: String lastPage();
50:
51: String refresh();
52:
53: String displaying(int start, int end, int total);
54:
55: String emptyMsg();
56:
57: /* Fields */
58: String invalid();
59:
60: String minLength(int length);
61:
62: String maxLength(int length);
63:
64: String blank();
65:
66: /* loading panel */
67:
68: String loading();
69:
70: }
|