/trunk/src/org/tela_botanica/client/vues/PersonneDetailVue.java |
---|
70,6 → 70,7 |
tabInfosNat.setScrollMode(Scroll.AUTO); |
tabLogos = new TabItem(mediateur.i18nC.personneLogos()); |
tabLogos.setScrollMode(Scroll.AUTO); |
tabLogos.setLayout(new FlowLayout()); |
tabPanel = new TabPanel(); |
160,11 → 161,11 |
while (itTelephones.hasNext()) { |
String key = itTelephones.next(); |
String label = mapTelephones.get(key); |
try { |
label = mediateur.i18nC.getString(label); |
} |
catch (MissingResourceException e) { |
label = key; |
} |
tplIdentite += "<b>" + label + ":</b> " + key; |