Update strings
This commit is contained in:
parent
15905a99f1
commit
d1423ac600
3 changed files with 4 additions and 3 deletions
2
lib/generated/intl/messages_en.dart
generated
2
lib/generated/intl/messages_en.dart
generated
|
@ -69,7 +69,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Please drop an email to ${supportEmail} from your registered email address";
|
||||
|
||||
static String m16(count, storageSaved) =>
|
||||
"Your have cleaned up ${Intl.plural(count, one: '${count} duplicate file', other: '${count} duplicate files')}, saving (${storageSaved}!)";
|
||||
"You have cleaned up ${Intl.plural(count, one: '${count} duplicate file', other: '${count} duplicate files')}, saving (${storageSaved}!)";
|
||||
|
||||
static String m17(count, formattedSize) =>
|
||||
"${count} files, ${formattedSize} each";
|
||||
|
|
1
lib/generated/intl/messages_zh.dart
generated
1
lib/generated/intl/messages_zh.dart
generated
|
@ -704,6 +704,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("正在加载 EXIF 数据..."),
|
||||
"loadingGallery": MessageLookupByLibrary.simpleMessage("正在加载图库..."),
|
||||
"loadingMessage": MessageLookupByLibrary.simpleMessage("正在加载您的照片..."),
|
||||
"loadingModel": MessageLookupByLibrary.simpleMessage("正在下载模型..."),
|
||||
"localGallery": MessageLookupByLibrary.simpleMessage("本地相册"),
|
||||
"location": MessageLookupByLibrary.simpleMessage("地理位置"),
|
||||
"locationName": MessageLookupByLibrary.simpleMessage("地点名称"),
|
||||
|
|
4
lib/generated/l10n.dart
generated
4
lib/generated/l10n.dart
generated
|
@ -3533,10 +3533,10 @@ class S {
|
|||
);
|
||||
}
|
||||
|
||||
/// `Your have cleaned up {count, plural, one{{count} duplicate file} other{{count} duplicate files}}, saving ({storageSaved}!)`
|
||||
/// `You have cleaned up {count, plural, one{{count} duplicate file} other{{count} duplicate files}}, saving ({storageSaved}!)`
|
||||
String duplicateFileCountWithStorageSaved(int count, String storageSaved) {
|
||||
return Intl.message(
|
||||
'Your have cleaned up ${Intl.plural(count, one: '$count duplicate file', other: '$count duplicate files')}, saving ($storageSaved!)',
|
||||
'You have cleaned up ${Intl.plural(count, one: '$count duplicate file', other: '$count duplicate files')}, saving ($storageSaved!)',
|
||||
name: 'duplicateFileCountWithStorageSaved',
|
||||
desc:
|
||||
'The text to display when the user has successfully cleaned up duplicate files',
|
||||
|
|
Loading…
Add table
Reference in a new issue