org.praxislive.ide.tableeditor.Bundle Maven / Gradle / Ivy
package org.praxislive.ide.tableeditor;
/** Localizable strings for {@link org.praxislive.ide.tableeditor}. */
class Bundle {
/**
* @return Files of Table
* @see TableDataObject
*/
static String LBL_Table_LOADER() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "LBL_Table_LOADER");
}
/**
* @return Contains unsaved changes. Close anyway?
* @see TableEditorTopComponent
*/
static String dialog_close_message() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "dialog.close.message");
}
/**
* @return Unsaved changes
* @see TableEditorTopComponent
*/
static String dialog_close_title() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "dialog.close.title");
}
/**
* @return Delete last table?
* @see TableEditorTopComponent
*/
static String dialog_delete_message() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "dialog.delete.message");
}
/**
* @return Confirm deletion
* @see TableEditorTopComponent
*/
static String dialog_delete_title() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "dialog.delete.title");
}
/**
* @return Columns
* @see TableEditorTopComponent
*/
static String label_columns() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "label.columns");
}
/**
* @return Rows
* @see TableEditorTopComponent
*/
static String label_rows() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "label.rows");
}
/**
* @return Table
* @see TableEditorTopComponent
*/
static String label_table() {
return org.openide.util.NbBundle.getMessage(Bundle.class, "label.table");
}
private Bundle() {}
}