
Dépôt officiel du code source de l'ERP OpenConcerto

svn://code.openconcerto.org/openconcerto
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
74 |
ilm |
1 |
package org.openconcerto.modules.extensionbuilder.translation;
|
|
|
2 |
|
|
|
3 |
public class Translation {
|
|
|
4 |
private String locale;
|
|
|
5 |
|
|
|
6 |
public Translation(String lang) {
|
|
|
7 |
this.locale = lang;
|
|
|
8 |
}
|
|
|
9 |
|
|
|
10 |
public String getLocale() {
|
|
|
11 |
return this.locale;
|
|
|
12 |
}
|
|
|
13 |
}
|