productName property changed to applicationName - more appropriate.

cusax-fix
Yana Stamcheva 18 years ago
parent 2d8930efbb
commit 63770fd8e9

@ -1,4 +1,4 @@
productName=SIP Communicator
productWebSite=http://sip-communicator.org
applicationName=SIP Communicator
applicationWebSite=http://sip-communicator.org
fontName=Verdana
fontSize=12

@ -104,7 +104,7 @@ public MainFrame()
this.setInitialBounds();
this.setTitle(ApplicationProperties.getProperty("productName"));
this.setTitle(ApplicationProperties.getProperty("applicationName"));
this.init();

@ -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);

@ -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));

Loading…
Cancel
Save