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 applicationName=SIP Communicator
productWebSite=http://sip-communicator.org applicationWebSite=http://sip-communicator.org
fontName=Verdana fontName=Verdana
fontSize=12 fontSize=12

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

@ -22,7 +22,7 @@ public class AboutWindow extends JDialog implements HyperlinkListener,
private WindowBackground mainPanel = new WindowBackground(); private WindowBackground mainPanel = new WindowBackground();
private JLabel titleLabel = new JLabel( private JLabel titleLabel = new JLabel(
BrandingResources.getApplicationString("productName")); BrandingResources.getApplicationString("applicationName"));
private JLabel versionLabel = new JLabel(" " private JLabel versionLabel = new JLabel(" "
+ System.getProperty("sip-communicator.version")); + System.getProperty("sip-communicator.version"));
@ -46,7 +46,7 @@ public AboutWindow(Frame owner)
this.setTitle( Resources.getString("aboutWindowTitle", this.setTitle( Resources.getString("aboutWindowTitle",
new String[]{BrandingResources new String[]{BrandingResources
.getApplicationString("productName")})); .getApplicationString("applicationName")}));
this.setModal(false); this.setModal(false);

@ -12,7 +12,7 @@ public class WelcomeWindow extends JDialog
private WindowBackground mainPanel = new WindowBackground(); private WindowBackground mainPanel = new WindowBackground();
private JLabel titleLabel private JLabel titleLabel
= new JLabel(BrandingResources.getApplicationString("productName")); = new JLabel(BrandingResources.getApplicationString("applicationName"));
private JLabel versionLabel = new JLabel(" " private JLabel versionLabel = new JLabel(" "
+ System.getProperty("sip-communicator.version")); + System.getProperty("sip-communicator.version"));
@ -68,8 +68,8 @@ public WelcomeWindow()
this.rightsArea.appendToEnd(Resources.getString("welcomeMessage", this.rightsArea.appendToEnd(Resources.getString("welcomeMessage",
new String[]{ new String[]{
Constants.TEXT_COLOR, Constants.TEXT_COLOR,
BrandingResources.getApplicationString("productName"), BrandingResources.getApplicationString("applicationName"),
BrandingResources.getApplicationString("productWebSite") BrandingResources.getApplicationString("applicationWebSite")
})); }));
this.rightsArea.setPreferredSize(new Dimension(50, 50)); this.rightsArea.setPreferredSize(new Dimension(50, 50));

Loading…
Cancel
Save