package com.sun.java.swing.plaf.windows.resources;
import java.util.ListResourceBundle;
public final class windows extends ListResourceBundle {
private static final Object[][] contents = {
{ "FileChooser.detailsViewActionLabelText", "Details" },
{ "FileChooser.detailsViewButtonAccessibleName", "Details" },
{ "FileChooser.detailsViewButtonToolTipText", "Details" },
{ "FileChooser.fileAttrHeaderText", "Attributes" },
{ "FileChooser.fileDateHeaderText", "Modified" },
{ "FileChooser.fileNameHeaderText", "Name" },
{ "FileChooser.fileNameLabelText", "File name:" },
{ "FileChooser.fileSizeHeaderText", "Size" },
{ "FileChooser.fileTypeHeaderText", "Type" },
{ "FileChooser.filesOfTypeLabelText", "Files of type:" },
{ "FileChooser.homeFolderAccessibleName", "Home" },
{ "FileChooser.homeFolderToolTipText", "Home" },
{ "FileChooser.listViewActionLabelText", "List" },
{ "FileChooser.listViewButtonAccessibleName", "List" },
{ "FileChooser.listViewButtonToolTipText", "List" },
{ "FileChooser.lookInLabelText", "Look in:" },
{ "FileChooser.newFolderAccessibleName", "New Folder" },
{ "FileChooser.newFolderActionLabelText", "New Folder" },
{ "FileChooser.newFolderToolTipText", "Create New Folder" },
{ "FileChooser.refreshActionLabelText", "Refresh" },
{ "FileChooser.saveInLabelText", "Save in:" },
{ "FileChooser.upFolderAccessibleName", "Up" },
{ "FileChooser.upFolderToolTipText", "Up One Level" },
{ "FileChooser.viewMenuLabelText", "View" },
};
protected final Object[][] getContents() {
return contents;
}
}
|