mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-25 22:39:22 +00:00
11 lines
246 B
Dart
11 lines
246 B
Dart
|
/// Internationalization utilities
|
||
|
///
|
||
|
/// @author Pierre HUBERT
|
||
|
|
||
|
/// Translate a string
|
||
|
///
|
||
|
/// Translate a given [string] into the current language, if available
|
||
|
String tr(String string) {
|
||
|
//TODO : create translation system
|
||
|
return string;
|
||
|
}
|