Source code: com/xpn/xwiki/i18n/i18n.java
1 /**
2 * ===================================================================
3 *
4 * Copyright (c) 2003 Ludovic Dubost, All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details, published at
15 * http://www.gnu.org/copyleft/lesser.html or in lesser.txt in the
16 * root folder of this distribution.
17 *
18 * User: ludovic
19 * Date: 14 avr. 2004
20 * Time: 18:47:50
21 */
22
23 package com.xpn.xwiki.i18n;
24
25 public class i18n {
26 public static final int TRANSLATION_CONTENT = 1;
27 public static final int TRANSLATION_OBJECTS = 2;
28 public static final int TRANSLATION_CLASS = 4;
29 public static final int TRANSLATION_ALL = 0x11111111;
30
31 public static final String LANGUAGE_DEFAULT = "";
32 public static final String LANGUAGE_FRENCH = "fr";
33 public static final String LANGUAGE_ENGLISH = "en";
34 public static final String LANGUAGE_GERMAN = "de";
35 public static final String LANGUAGE_SPANISH = "es";
36 public static final String LANGUAGE_ITALIAN = "it";
37
38 }