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

« back to all changes in this revision

Viewing changes to netx/net/sourceforge/jnlp/runtime/Translator.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:
 
1
// Copyright (C) 2010 Red Hat, Inc.
 
2
//
 
3
// This library is free software; you can redistribute it and/or
 
4
// modify it under the terms of the GNU Lesser General Public
 
5
// License as published by the Free Software Foundation; either
 
6
// version 2.1 of the License, or (at your option) any later version.
 
7
//
 
8
// This library is distributed in the hope that it will be useful,
 
9
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
// Lesser General Public License for more details.
 
12
//
 
13
// You should have received a copy of the GNU Lesser General Public
 
14
// License along with this library; if not, write to the Free Software
 
15
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
16
 
 
17
package net.sourceforge.jnlp.runtime;
 
18
 
 
19
/**
 
20
 * Utility class to provide simple methods to help localize messages
 
21
 */
 
22
public class Translator {
 
23
 
 
24
    /**
 
25
     * @return the localized string for the message
 
26
     */
 
27
    public static String R(String message, Object... params) {
 
28
        return JNLPRuntime.getMessage(message, params);
 
29
    }
 
30
 
 
31
    /**
 
32
     * Return a translated (localized) version of the message
 
33
     * @param message the message to translate
 
34
     * @return a string representing the localized message
 
35
     */
 
36
    public static String R(String message) {
 
37
        return JNLPRuntime.getMessage(message);
 
38
    }
 
39
 
 
40
}