fix(localization): fix fileTooLargeAfterCompressionError, fileTooLargeError

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-07-22 20:16:36 +05:30
committed by xsahil03x
parent 937f55e67b
commit 36a13e8a2b
2 changed files with 4 additions and 4 deletions
@@ -54,8 +54,8 @@ void main() {
expect(translations.searchGifLabel, isNotNull);
expect(translations.writeAMessageLabel, isNotNull);
expect(translations.instantCommandsLabel, isNotNull);
expect(translations.fileTooLargeAfterCompressionError, isNotNull);
expect(translations.fileTooLargeError, isNotNull);
expect(translations.fileTooLargeAfterCompressionError(33), isNotNull);
expect(translations.fileTooLargeError(33), isNotNull);
expect(translations.emojiMatchingQueryText('sahil'), isNotNull);
expect(translations.addAFileLabel, isNotNull);
expect(translations.photoFromCameraLabel, isNotNull);
@@ -61,8 +61,8 @@ void main() {
expect(localizations.searchGifLabel, isNotNull);
expect(localizations.writeAMessageLabel, isNotNull);
expect(localizations.instantCommandsLabel, isNotNull);
expect(localizations.fileTooLargeAfterCompressionError, isNotNull);
expect(localizations.fileTooLargeError, isNotNull);
expect(localizations.fileTooLargeAfterCompressionError(33), isNotNull);
expect(localizations.fileTooLargeError(33), isNotNull);
expect(localizations.emojiMatchingQueryText('sahil'), isNotNull);
expect(localizations.addAFileLabel, isNotNull);
expect(localizations.photoFromCameraLabel, isNotNull);