Line 11... |
Line 11... |
11 |
import com.extjs.gxt.ui.client.store.ListStore;
|
11 |
import com.extjs.gxt.ui.client.store.ListStore;
|
Line 12... |
Line 12... |
12 |
|
12 |
|
Line 13... |
Line 13... |
13 |
public class OntologiesLocales {
|
13 |
public class OntologiesLocales {
|
- |
|
14 |
|
Line 14... |
Line 15... |
14 |
|
15 |
public static Map<String,String[]> listeOuiNonPeutEtre;
|
15 |
public static Map<String,String[]> listeOuiNonPeutEtre;
|
16 |
public static Map<String,String[]> listeBonMauvaisEtat;
|
16 |
|
17 |
|
17 |
// TODO: mapper ça vers l'i18n
|
18 |
// TODO: mapper ça vers l'i18n
|
18 |
public static Map<String, String[]> getListeOuiNonPeutEtre() {
|
19 |
public static Map<String, String[]> getListeOuiNonPeutEtre() {
|
19 |
if(listeOuiNonPeutEtre == null) {
|
20 |
if(listeOuiNonPeutEtre == null) {
|
20 |
Constantes i18n = Mediateur.i18nC;
|
21 |
Constantes i18n = Mediateur.i18nC;
|
21 |
listeOuiNonPeutEtre = new HashMap<String, String[]>();
|
22 |
listeOuiNonPeutEtre = new HashMap<String, String[]>();
|
22 |
listeOuiNonPeutEtre.put("",new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.neSaitPas()), "0"});
|
23 |
listeOuiNonPeutEtre.put("ne sait pas",new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.neSaitPas()), "0"});
|
23 |
listeOuiNonPeutEtre.put("oui", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.oui()), "1"});
|
24 |
listeOuiNonPeutEtre.put("oui", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.oui()), "1"});
|
Line 24... |
Line 25... |
24 |
listeOuiNonPeutEtre.put("non", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.non()), "2"});
|
25 |
listeOuiNonPeutEtre.put("non", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.non()), "2"});
|
25 |
listeOuiNonPeutEtre.put("peut-etre", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.peutEtre()), "3"});
|
26 |
listeOuiNonPeutEtre.put("peut-être", new String[] {UtilString.mettrePremiereLettreEnMajuscule(i18n.peutEtre()), "3"});
|
Line -... |
Line 27... |
- |
|
27 |
}
|
- |
|
28 |
|
- |
|
29 |
return listeOuiNonPeutEtre;
|
- |
|
30 |
}
|
- |
|
31 |
|
- |
|
32 |
// TODO: mapper ça vers l'i18n
|
- |
|
33 |
public static Map<String, String[]> getListeBonMauvaisEtat() {
|
- |
|
34 |
if(listeBonMauvaisEtat == null) {
|
- |
|
35 |
Constantes i18n = Mediateur.i18nC;
|
- |
|
36 |
listeBonMauvaisEtat = new HashMap<String, String[]>();
|
- |
|
37 |
listeBonMauvaisEtat.put("très mauvais état",new String[] {UtilString.mettrePremiereLettreEnMajuscule("très mauvais état"), "1"});
|
- |
|
38 |
listeBonMauvaisEtat.put("mauvais état", new String[] {UtilString.mettrePremiereLettreEnMajuscule("mauvais état"), "2"});
|
- |
|
39 |
listeBonMauvaisEtat.put("état moyen", new String[] {UtilString.mettrePremiereLettreEnMajuscule("état moyen"), "3"});
|
- |
|
40 |
listeBonMauvaisEtat.put("bon état", new String[] {UtilString.mettrePremiereLettreEnMajuscule("bon état"), "4"});
|
- |
|
41 |
listeBonMauvaisEtat.put("très bon état", new String[] {UtilString.mettrePremiereLettreEnMajuscule("très bon état"), "5"});
|
26 |
}
|
42 |
}
|
27 |
|
43 |
|
28 |
return listeOuiNonPeutEtre;
|
44 |
return listeBonMauvaisEtat;
|
29 |
}
|
45 |
}
|
30 |
|
46 |
|