private JPanel createPreferencesPanel() {
JPanel preferencesPanel = new JPanel(new BorderLayout(12, 12));
- JPanel fileOptionsPanel = new JPanel(new GridBagLayout());
- preferencesPanel.add(fileOptionsPanel, BorderLayout.CENTER);
+ JPanel tempDirectoryPanel = new JPanel(new GridBagLayout());
+ preferencesPanel.add(tempDirectoryPanel, BorderLayout.CENTER);
- final JLabel fileOptionsLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.preferences.file-options") + "</b></html>");
- fileOptionsPanel.add(fileOptionsLabel, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
+ final JLabel tempDirectoryLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.preferences.temp-directory") + "</b></html>");
+ tempDirectoryPanel.add(tempDirectoryLabel, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
I18nContainer.getInstance().registerRunnable(new Runnable() {
*/
@Override
public void run() {
- fileOptionsLabel.setText("<html><b>" + I18n.getMessage("jsite.preferences.file-options") + "</b></html>");
+ tempDirectoryLabel.setText("<html><b>" + I18n.getMessage("jsite.preferences.temp-directory") + "</b></html>");
}
});
jsite.preferences.heading=Preferences
jsite.preferences.description=Use this page to manage some global settings.
-jsite.preferences.file-options=File Options
+jsite.preferences.temp-directory=Temporary Directory
jsite.insert.heading=Project insert
jsite.insert.description=Please wait while the project is being inserted.