home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 768 b | 29 lines |
- package symantec.itools.db.resources;
-
- import java.util.ListResourceBundle;
-
- public class ResBundle extends ListResourceBundle {
- public Object[][] getContents() {
- return contents;
- }
- static final Object[][] contents = {
- // TableView
- {"Append", "Append"},
- {"Delete", "Delete"},
- {"Insert", "Insert"},
- {"Goto", "Goto >>>"},
- {"Save", "Save"},
- {"Restart", "Restart"},
- {"Undo", "Undo"},
- {"Undelete", "Undelete"},
- // End TableView
-
- // LogonDialog
- {"Cancel", "Cancel"},
- {"UserName", "User Name:"},
- {"Password", "Password:"},
- {"DataSourceName", "DataSource Name:"},
- {"Title", "Untitled"},
- // End LogonDialog
- };
- }