diff --git a/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurable.java b/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurable.java index 7e5fd2bc54ff..1e18431d0d03 100644 --- a/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurable.java +++ b/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurable.java @@ -114,6 +114,7 @@ public class AppletConfigurable extends SettingsEditor impl myModuleSelector = new ConfigurationModuleSelector(project, getModuleComponent()); myTablePlace.setLayout(new BorderLayout()); myTable = new TableView(myParameters); + myTable.getEmptyText().setText(ExecutionBundle.message("no.parameters")); myTablePlace.add(ScrollPaneFactory.createScrollPane(myTable), BorderLayout.CENTER); myAppletRadioButtonGroup.add(myMainClass); myAppletRadioButtonGroup.add(myURL); diff --git a/platform/lang-impl/src/com/intellij/diagnostic/logging/LogConfigurationPanel.java b/platform/lang-impl/src/com/intellij/diagnostic/logging/LogConfigurationPanel.java index a925e78ed8a2..62c419487c1b 100644 --- a/platform/lang-impl/src/com/intellij/diagnostic/logging/LogConfigurationPanel.java +++ b/platform/lang-impl/src/com/intellij/diagnostic/logging/LogConfigurationPanel.java @@ -67,6 +67,8 @@ public class LogConfigurationPanel extends Setti public LogConfigurationPanel() { myModel = new ListTableModel(IS_SHOW, FILE, IS_SKIP_CONTENT); myFilesTable = new TableView(myModel); + myFilesTable.getEmptyText().setText(DiagnosticBundle.message("log.monitor.no.files")); + final JTableHeader tableHeader = myFilesTable.getTableHeader(); final FontMetrics fontMetrics = tableHeader.getFontMetrics(tableHeader.getFont()); diff --git a/platform/platform-resources-en/src/messages/DiagnosticBundle.properties b/platform/platform-resources-en/src/messages/DiagnosticBundle.properties index 9faa77a370c0..f1dccd23dc6e 100644 --- a/platform/platform-resources-en/src/messages/DiagnosticBundle.properties +++ b/platform/platform-resources-en/src/messages/DiagnosticBundle.properties @@ -46,6 +46,7 @@ error.notification.tooltip=IDE internal error occured.
Click to s error.notification.empty.text=No new IDE fatal errors error.monitor.too.many.errors=Too many IDE fatal errors. Monitoring stoppped. error.report.title=Error Report +log.monitor.no.files=No log files attached log.monitor.remove.button=&Remove log.monitor.add.button=A&dd log.monitor.group=Log Files To Be Shown In Console: diff --git a/platform/platform-resources-en/src/messages/ExecutionBundle.properties b/platform/platform-resources-en/src/messages/ExecutionBundle.properties index d1165eb41d07..baf953ec4dc5 100644 --- a/platform/platform-resources-en/src/messages/ExecutionBundle.properties +++ b/platform/platform-resources-en/src/messages/ExecutionBundle.properties @@ -52,6 +52,8 @@ add.new.run.configuration.action.name=Add New ''{0}'' Configuration remove.run.configuration.action.name=Remove Configuration +no.parameters=No parameters + run.configuration.edit.default.configuration.settings.button=Edit De&faults default.settings.editor.dialog.title=Default Settings clear.all.from.console.action.name=Clear All