diff options
author | Yana Stamcheva <yana@jitsi.org> | 2008-01-30 11:14:14 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2008-01-30 11:14:14 +0000 |
commit | 63770fd8e9b3b1cc9a4776d4c987101c10eea61c (patch) | |
tree | 2549964c53fece408f0545ffe67a34a1f18e09f9 | |
parent | 2d8930efbb40195cf4ea6262fd23c0f1f7f3cde0 (diff) | |
download | jitsi-63770fd8e9b3b1cc9a4776d4c987101c10eea61c.zip jitsi-63770fd8e9b3b1cc9a4776d4c987101c10eea61c.tar.gz jitsi-63770fd8e9b3b1cc9a4776d4c987101c10eea61c.tar.bz2 |
productName property changed to applicationName - more appropriate.
4 files changed, 8 insertions, 8 deletions
diff --git a/resources/application.properties b/resources/application.properties index e357213..1435570 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 8673d69..84045d7 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 class 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 3e75d7b..e36f860 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 class AboutWindow extends JDialog implements HyperlinkListener, 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 b904db1..24d63b7 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 class WelcomeWindow extends JDialog 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)); |