1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-19 23:22:39 +00:00
comunicmobile/lib/utils/intl_utils.dart

11 lines
246 B
Dart
Raw Normal View History

2019-04-21 11:44:07 +02:00
/// 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;
}