~ubuntu-branches/ubuntu/natty/icedtea-web/natty-proposed

« back to all changes in this revision

Viewing changes to netx/net/sourceforge/jnlp/security/MoreInfoPane.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-11-24 13:23:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101124132328-2xb9z39vxga63vr9
Tags: 1.0~20101124-0ubuntu1
* Update to hg 20101124.
* Fix xulrunner dependencies for natty.
* Build-depend on pkg-config and libgtk2.0-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
package net.sourceforge.jnlp.security;
39
39
 
 
40
import static net.sourceforge.jnlp.runtime.Translator.R;
 
41
 
40
42
import java.awt.BorderLayout;
41
43
import java.awt.Dimension;
42
44
import java.awt.GridLayout;
88
90
                }
89
91
 
90
92
                JPanel buttonsPanel = new JPanel(new BorderLayout());
91
 
                JButton certDetails = new JButton("Certificate Details");
 
93
                JButton certDetails = new JButton(R("SCertificateDetails"));
92
94
                certDetails.addActionListener(new CertInfoButtonListener());
93
 
                JButton close = new JButton("Close");
 
95
                JButton close = new JButton(R("ButClose"));
94
96
                close.addActionListener(createSetValueListener(parent, 0));
95
97
        buttonsPanel.add(certDetails, BorderLayout.WEST);
96
98
        buttonsPanel.add(close, BorderLayout.EAST);