diff --git a/resources/application.properties b/resources/application.properties index e357213bb..143557005 100644 --- a/resources/application.properties +++ b/resources/application.properties @@ -1,4 +1,4 @@ -productName=SIP Communicator -productWebSite=http://sip-communicator.org +applicationName=SIP Communicator +applicationWebSite=http://sip-communicator.org fontName=Verdana fontSize=12 \ No newline at end of file diff --git a/src/net/java/sip/communicator/impl/gui/main/MainFrame.java b/src/net/java/sip/communicator/impl/gui/main/MainFrame.java index 8673d6974..84045d726 100755 --- a/src/net/java/sip/communicator/impl/gui/main/MainFrame.java +++ b/src/net/java/sip/communicator/impl/gui/main/MainFrame.java @@ -104,7 +104,7 @@ public MainFrame() this.setInitialBounds(); - this.setTitle(ApplicationProperties.getProperty("productName")); + this.setTitle(ApplicationProperties.getProperty("applicationName")); this.init(); diff --git a/src/net/java/sip/communicator/plugin/branding/AboutWindow.java b/src/net/java/sip/communicator/plugin/branding/AboutWindow.java index 3e75d7b70..e36f86097 100644 --- a/src/net/java/sip/communicator/plugin/branding/AboutWindow.java +++ b/src/net/java/sip/communicator/plugin/branding/AboutWindow.java @@ -22,7 +22,7 @@ public class AboutWindow extends JDialog implements HyperlinkListener, private WindowBackground mainPanel = new WindowBackground(); private JLabel titleLabel = new JLabel( - BrandingResources.getApplicationString("productName")); + BrandingResources.getApplicationString("applicationName")); private JLabel versionLabel = new JLabel(" " + System.getProperty("sip-communicator.version")); @@ -46,7 +46,7 @@ public AboutWindow(Frame owner) this.setTitle( Resources.getString("aboutWindowTitle", new String[]{BrandingResources - .getApplicationString("productName")})); + .getApplicationString("applicationName")})); this.setModal(false); diff --git a/src/net/java/sip/communicator/plugin/branding/WelcomeWindow.java b/src/net/java/sip/communicator/plugin/branding/WelcomeWindow.java index b904db1ff..24d63b786 100644 --- a/src/net/java/sip/communicator/plugin/branding/WelcomeWindow.java +++ b/src/net/java/sip/communicator/plugin/branding/WelcomeWindow.java @@ -12,7 +12,7 @@ public class WelcomeWindow extends JDialog private WindowBackground mainPanel = new WindowBackground(); private JLabel titleLabel - = new JLabel(BrandingResources.getApplicationString("productName")); + = new JLabel(BrandingResources.getApplicationString("applicationName")); private JLabel versionLabel = new JLabel(" " + System.getProperty("sip-communicator.version")); @@ -68,8 +68,8 @@ public WelcomeWindow() this.rightsArea.appendToEnd(Resources.getString("welcomeMessage", new String[]{ Constants.TEXT_COLOR, - BrandingResources.getApplicationString("productName"), - BrandingResources.getApplicationString("productWebSite") + BrandingResources.getApplicationString("applicationName"), + BrandingResources.getApplicationString("applicationWebSite") })); this.rightsArea.setPreferredSize(new Dimension(50, 50));