Skip to content

Commit

Permalink
fix des accents... en les supprimant
Browse files Browse the repository at this point in the history
  • Loading branch information
pyricau committed Apr 19, 2011
1 parent b3647c3 commit a22c651
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ private void registrationDialog(final GwtTrainingSession trainingSession) {
dialogBox.setGlassEnabled(true);
dialogBox.setAnimationEnabled(true);

dialogBox.setText("Inscription à la formation GWT du " + trainingSession.getPrettyName());
dialogBox.setText("Inscription pour la formation GWT du " + trainingSession.getPrettyName());

Label label = new Label("Un petit message ?");
Label label = new Label("Ajoutez un message si vous le souhaitez, puis cliquez sur \"Je m'inscris !\"");

final RichTextArea richTextArea = new RichTextArea();

final RichTextToolbar toolBar = new RichTextToolbar(richTextArea);
richTextArea.setWidth("100%");

Button registerButton = new Button("Je viens !");
Button registerButton = new Button("Je m'inscris !");
registerButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
dialogBox.hide();
Expand Down Expand Up @@ -105,9 +105,9 @@ private void showErrorDialog() {

dialogBox.setText("Erreur inconnue");

Label label = new Label("WTF ?? Visiblement, un ptit problème... contactez pyricau@excilys.com et lâchez-vous, ça bug!");
Label label = new Label("WTF ?? Visiblement, ya une erreur... contactez pyricau@excilys.com!");

Button button = new Button("Fermer cette boîte d'erreur débile");
Button button = new Button("Fermer");
button.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
dialogBox.hide();
Expand All @@ -127,9 +127,9 @@ private void showRegisteredDialog() {
dialogBox.setGlassEnabled(true);
dialogBox.setAnimationEnabled(true);

dialogBox.setText("Inscription enregistrée!");
dialogBox.setText("Inscription OK!");

Label label = new Label("Un mail de confirmation de la demande d'inscription a été envoyé.");
Label label = new Label("Envoi OK du mail de demande d'inscription.");

Button button = new Button("J'ai fini, je vais voir mes mails");
button.addClickHandler(new ClickHandler() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
<br />
<em>"Pierre qui roule a bu trop de mousse."</em>
<strong>Pierre Merienne</strong>
.
</p>
</g:HTMLPanel>
</g:stack>
Expand All @@ -114,7 +113,6 @@
<br />
<em>"GWT, c'est plus mieux, parce que c'est moins pire."</em>
<strong>Pierre-Yves Ricau</strong>
.
</p>
</g:HTMLPanel>
</g:stack>
Expand All @@ -140,7 +138,6 @@
<br />
<em>"JSF, j'aime pas trop beaucoup ça..."</em>
<strong>Mathieu Boniface</strong>
.
</p>
</g:HTMLPanel>
</g:stack>
Expand Down

0 comments on commit a22c651

Please sign in to comment.