[icedtea-web] RFC: move a missed string to Messages.properties

Deepak Bhole dbhole at redhat.com
Tue Nov 23 13:05:57 PST 2010


* Omair Majid <omajid at redhat.com> [2010-11-23 15:26]:
> Hi,
> 
> The attached patch adds a missed string that should have been
> internationalized.
> 
> Any comments?
> 
> Cheers,
> Omair

I like reviewing these small patches :)

OK for HEAD!

Cheers,
Deepak

> diff -r dd77da50a226 netx/net/sourceforge/jnlp/resources/Messages.properties
> --- a/netx/net/sourceforge/jnlp/resources/Messages.properties	Tue Nov 23 10:05:06 2010 -0500
> +++ b/netx/net/sourceforge/jnlp/resources/Messages.properties	Tue Nov 23 15:16:06 2010 -0500
> @@ -214,6 +214,7 @@
>  
>  # Certificate Viewer
>  CVCertificateViewer=Certificates
> +CVCertificateType=Certificate Type
>  CVDetails=Details
>  CVExport=Export
>  CVImport=Import
> diff -r dd77da50a226 netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java
> --- a/netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java	Tue Nov 23 10:05:06 2010 -0500
> +++ b/netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java	Tue Nov 23 15:16:06 2010 -0500
> @@ -157,7 +157,7 @@
>                  JPanel certificateTypePanel = new JPanel(new BorderLayout());
>                  certificateTypePanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
>  
> -                JLabel certificateTypeLabel = new JLabel("Certificate Type:");
> +                JLabel certificateTypeLabel = new JLabel(R("CVCertificateType"));
>  
>                  certificateTypeCombo = new JComboBox(certificateTypes);
>                  certificateTypeCombo.addActionListener(new CertificateTypeListener());




More information about the distro-pkg-dev mailing list