add file size limit parameter

This commit is contained in:
Salvatore Giordano
2021-07-21 16:49:40 +02:00
parent 5097e4844b
commit f1df4389b5
7 changed files with 40 additions and 27 deletions
@@ -115,14 +115,14 @@ class StreamChatLocalizationsEn extends GlobalStreamChatLocalizations {
String get instantCommandsLabel => 'Instant Commands';
@override
String get fileTooLargeAfterCompressionError =>
String fileTooLargeAfterCompressionError(double limitInMB) =>
'The file is too large to upload. '
'The file size limit is 20MB. '
'The file size limit is $limitInMB MB. '
'We tried compressing it, but it was not enough.';
@override
String get fileTooLargeError =>
'The file is too large to upload. The file size limit is 20MB.';
String fileTooLargeError(double limitInMB) =>
'The file is too large to upload. The file size limit is $limitInMB MB.';
@override
String emojiMatchingQueryText(String query) => 'Emoji matching "$query"';
@@ -117,14 +117,14 @@ class StreamChatLocalizationsFr extends GlobalStreamChatLocalizations {
String get instantCommandsLabel => 'Commandes instantanées';
@override
String get fileTooLargeAfterCompressionError =>
String fileTooLargeAfterCompressionError(double limitInMB) =>
'Le fichier est trop volumineux pour être téléchargé. '
'La taille maximale des fichiers est de 20 Mo. '
'La taille maximale des fichiers est de $limitInMB Mo. '
"Nous avons essayé de le compresser, mais ce n'était pas suffisant.";
@override
String get fileTooLargeError =>
'Le fichier est trop volumineux pour être téléchargé. La taille limite du fichier est de 20 Mo.';
String fileTooLargeError(double limitInMB) =>
'Le fichier est trop volumineux pour être téléchargé. La taille limite du fichier est de $limitInMB Mo.';
@override
String emojiMatchingQueryText(String query) =>
@@ -115,14 +115,14 @@ class StreamChatLocalizationsHi extends GlobalStreamChatLocalizations {
String get instantCommandsLabel => 'तत्काल आदेश';
@override
String get fileTooLargeAfterCompressionError =>
String fileTooLargeAfterCompressionError(double limitInMB) =>
'फ़ाइल अपलोड करने के लिए बहुत बड़ी है। '
'फ़ाइल आकार सीमा 20MB है। '
'फ़ाइल आकार सीमा $limitInMB MB है। '
'हमने इसे कंप्रेस करने की कोशिश की, लेकिन यह काफी नहीं था।';
@override
String get fileTooLargeError =>
'फ़ाइल अपलोड करने के लिए बहुत बड़ी है। फ़ाइल आकार सीमा 20MB है।';
String fileTooLargeError(double limitInMB) =>
'फ़ाइल अपलोड करने के लिए बहुत बड़ी है। फ़ाइल आकार सीमा $limitInMB MB है।';
@override
String emojiMatchingQueryText(String query) => '"$query" से मिलते हुए इमोजी';
@@ -117,14 +117,14 @@ class StreamChatLocalizationsIt extends GlobalStreamChatLocalizations {
String get instantCommandsLabel => 'Commandi istantanei';
@override
String get fileTooLargeAfterCompressionError =>
String fileTooLargeAfterCompressionError(double limitInMB) =>
'Il file è troppo grande per essere caricato. '
'Il file eccede il limite di 20MB. '
'Il file eccede il limite di $limitInMB MB. '
'Abbiamo provato a comprimerlo, ma non è stato abbastanza.';
@override
String get fileTooLargeError =>
'Il file è troppo grande per essere caricato. Il limite è di 20MB.';
String fileTooLargeError(double limitInMB) => '''
Il file è troppo grande per essere caricato. Il limite è di $limitInMB MB.''';
@override
String emojiMatchingQueryText(String query) => 'Emoji per "$query"';