Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2652 → Rev 2653

/trunk/src/org/tela_botanica/client/i18n/VocabulaireMetadonnees.java
4,9 → 4,12
 
public class VocabulaireMetadonnees {
private static Dictionary traductionMetadonnees = Dictionary.getDictionary("traductionMetadonnees");
private static Dictionary traductionMetadonnees = null;
public static String getTraduction(String terme) {
traductionMetadonnees = Dictionary.getDictionary("traductionMetadonnees_"+Msg.getLangue());
String traduction = null;
terme = terme.toLowerCase();
terme = terme.replaceAll("-", "");