Subversion Repositories eFlore/Applications.del

Rev

Rev 926 | Rev 962 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 926 Rev 961
Line 1... Line 1...
1
package org.tela_botanica.del.client.i18n;
1
package org.tela_botanica.del.client.i18n;
Line 2... Line 2...
2
 
2
 
3
/**
3
/**
4
 * Interface to represent the constants contained in resource bundle:
4
 * Interface to represent the constants contained in resource bundle:
5
 * 	'D:/dev/svn/del/src/org/tela_botanica/del/client/i18n/Vocabulary.properties'.
5
 * 	'/home/aurelien/web/del/src/org/tela_botanica/del/client/i18n/Vocabulary.properties'.
6
 */
6
 */
Line 7... Line 7...
7
public interface Vocabulary extends com.google.gwt.i18n.client.Constants {
7
public interface Vocabulary extends com.google.gwt.i18n.client.Constants {
8
  
8
  
Line 230... Line 230...
230
  @DefaultStringValue("Courriel")
230
  @DefaultStringValue("Courriel")
231
  @Key("courriel")
231
  @Key("courriel")
232
  String courriel();
232
  String courriel();
Line 233... Line 233...
233
 
233
 
234
  /**
234
  /**
235
   * Translated "Date".
235
   * Translated "Date (jj/mm/aaaa)".
236
   * 
236
   * 
237
   * @return translated "Date"
237
   * @return translated "Date (jj/mm/aaaa)"
238
   */
238
   */
239
  @DefaultStringValue("Date")
239
  @DefaultStringValue("Date (jj/mm/aaaa)")
240
  @Key("date")
240
  @Key("date")
Line 241... Line 241...
241
  String date();
241
  String date();
242
 
242