add message localizations
This commit is contained in:
@@ -311,6 +311,9 @@ abstract class Translations {
|
||||
/// The label for "Reply to message"
|
||||
String get replyToMessageLabel;
|
||||
|
||||
/// The label for "View library"
|
||||
String get viewLibrary;
|
||||
|
||||
/// Label for "Attachment limit exceeded:
|
||||
/// it's not possible to add more than $limit attachments"
|
||||
String attachmentLimitExceedError(int limit);
|
||||
@@ -682,6 +685,9 @@ class DefaultTranslations implements Translations {
|
||||
@override
|
||||
String get slowModeOnLabel => 'Slow mode ON';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'View library';
|
||||
|
||||
@override
|
||||
String attachmentLimitExceedError(int limit) => """
|
||||
Attachment limit exceeded: it's not possible to add more than $limit attachments""";
|
||||
|
||||
@@ -392,6 +392,9 @@ class NnStreamChatLocalizations extends GlobalStreamChatLocalizations {
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Slow mode ON';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'View library';
|
||||
}
|
||||
|
||||
void main() async {
|
||||
|
||||
@@ -368,4 +368,7 @@ class StreamChatLocalizationsEn extends GlobalStreamChatLocalizations {
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Slow mode ON';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'View library';
|
||||
}
|
||||
|
||||
@@ -372,6 +372,9 @@ class StreamChatLocalizationsEs extends GlobalStreamChatLocalizations {
|
||||
No es posible añadir más de $limit archivos adjuntos
|
||||
''';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'Ver Librería';
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Modo lento activado';
|
||||
}
|
||||
|
||||
@@ -371,6 +371,9 @@ class StreamChatLocalizationsFr extends GlobalStreamChatLocalizations {
|
||||
Limite de pièces jointes dépassée : il n'est pas possible d'ajouter plus de $limit pièces jointes
|
||||
''';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'Voir la bibliothèque';
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Mode lent activé';
|
||||
}
|
||||
|
||||
@@ -366,6 +366,9 @@ class StreamChatLocalizationsHi extends GlobalStreamChatLocalizations {
|
||||
अटैचमेंट लिमिट: $limit अटैचमेंट से अधिक जोड़ना संभव नहीं है
|
||||
''';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'पुस्तकालय देखिये';
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'स्लो मोड चालू';
|
||||
}
|
||||
|
||||
@@ -368,6 +368,9 @@ Il file è troppo grande per essere caricato. Il limite è di $limitInMB MB.''';
|
||||
Attenzione: il limite massimo di $limit file è stato superato.
|
||||
''';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'Vedi la biblioteca';
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Slowmode attiva';
|
||||
}
|
||||
|
||||
@@ -350,6 +350,9 @@ class StreamChatLocalizationsJa extends GlobalStreamChatLocalizations {
|
||||
@override
|
||||
String get slowModeOnLabel => 'スローモードオン';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'ライブラリを表示';
|
||||
|
||||
@override
|
||||
String attachmentLimitExceedError(int limit) => '''
|
||||
添付ファイルの制限を超えました:$limit個のファイル以上を添付することはできません
|
||||
|
||||
@@ -352,6 +352,9 @@ class StreamChatLocalizationsKo extends GlobalStreamChatLocalizations {
|
||||
String get slowModeOnLabel => '슬로모드 켜짐';
|
||||
|
||||
@override
|
||||
@override
|
||||
String get viewLibrary => '라이브러리 보기';
|
||||
|
||||
String attachmentLimitExceedError(int limit) =>
|
||||
'첨부 파일 제한 초과: $limit 이상의 첨부 파일을 추가할 수 없습니다';
|
||||
}
|
||||
|
||||
@@ -371,4 +371,7 @@ Não é possível adicionar mais de $limit arquivos de uma vez
|
||||
|
||||
@override
|
||||
String get slowModeOnLabel => 'Modo lento ativado';
|
||||
|
||||
@override
|
||||
String get viewLibrary => 'Ver biblioteca';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user