OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 73 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
73 ilm 1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
4
 * Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
5
 *
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
9
 * language governing permissions and limitations under the License.
10
 *
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
13
 
14
 package org.openconcerto.ui;
15
 
177 ilm 16
import org.openconcerto.utils.i18n.TMPool;
17
 
18
import java.util.Locale;
19
 
73 ilm 20
public class TM extends org.openconcerto.utils.i18n.TM {
177 ilm 21
    private static final TMPool<TM> POOL = new TMPool<TM>(TM::new);
73 ilm 22
 
177 ilm 23
    static public TM getInstance() {
24
        return getInstance(getDefaultLocale());
25
    }
73 ilm 26
 
177 ilm 27
    static public TM getInstance(final Locale l) {
28
        return POOL.get(l);
73 ilm 29
    }
30
 
31
    static public final String tr(final String key, final Object... args) {
32
        return getInstance().translate(key, args);
33
    }
34
 
177 ilm 35
    private TM(final Locale l) {
36
        super(l);
73 ilm 37
    }
38
}