Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2629 → Rev 2630

/trunk/src/org/tela_botanica/client/vues/observation/MotsClesObsVue.java
1,5 → 1,6
package org.tela_botanica.client.vues.observation;
 
import org.tela_botanica.client.i18n.Msg;
import org.tela_botanica.client.interfaces.Filtrable;
import org.tela_botanica.client.interfaces.Rafraichissable;
import org.tela_botanica.client.observation.ObservationMediateur;
56,10 → 57,10
super();
oMediateur = om;
 
Label labelRecherche = new Label("Mots clés :");
Label labelRecherche = new Label(Msg.Get("mots-cles") + " :");
champRecherche = new TextField();
ok = new Button("Rechercher");
afficherNuage = new Button("Voir les mots clés");
ok = new Button(Msg.get("rechercher"));
afficherNuage = new Button(Msg.get("voir-mots-cles"));
 
add(labelRecherche);
add(champRecherche);