Fix: add misisng keys for l10n

This commit is contained in:
Neeraj Gupta 2023-07-07 10:48:59 +05:30
parent eb5364cb04
commit 6eb4665430
3 changed files with 40 additions and 31 deletions

View file

@ -827,9 +827,13 @@ class MessageLookup extends MessageLookupByLibrary {
"noExifData": MessageLookupByLibrary.simpleMessage("No EXIF data"),
"noHiddenPhotosOrVideos":
MessageLookupByLibrary.simpleMessage("No hidden photos or videos"),
"noImagesWithLocation":
MessageLookupByLibrary.simpleMessage("No images with location"),
"noPhotosAreBeingBackedUpRightNow":
MessageLookupByLibrary.simpleMessage(
"No photos are being backed up right now"),
"noPhotosFoundHere":
MessageLookupByLibrary.simpleMessage("No photos found here"),
"noRecoveryKey":
MessageLookupByLibrary.simpleMessage("No recovery key?"),
"noRecoveryKeyNoDecryption": MessageLookupByLibrary.simpleMessage(
@ -1358,6 +1362,8 @@ class MessageLookup extends MessageLookupByLibrary {
"You\'ve no duplicate files that can be cleared"),
"youveNoFilesInThisAlbumThatCanBeDeleted":
MessageLookupByLibrary.simpleMessage(
"You\'ve no files in this album that can be deleted")
"You\'ve no files in this album that can be deleted"),
"zoomOutToSeePhotos":
MessageLookupByLibrary.simpleMessage("Zoom out to see photos")
};
}

View file

@ -7365,36 +7365,6 @@ class S {
);
}
/// `Unpin album`
String get unpinAlbum {
return Intl.message(
'Unpin album',
name: 'unpinAlbum',
desc: '',
args: [],
);
}
/// `Pin album`
String get pinAlbum {
return Intl.message(
'Pin album',
name: 'pinAlbum',
desc: '',
args: [],
);
}
/// `No images with location`
String get noImagesWithLocation {
return Intl.message(
'No images with location',
name: 'noImagesWithLocation',
desc: '',
args: [],
);
}
/// `No photos found here`
String get noPhotosFoundHere {
return Intl.message(
@ -7414,6 +7384,36 @@ class S {
args: [],
);
}
/// `No images with location`
String get noImagesWithLocation {
return Intl.message(
'No images with location',
name: 'noImagesWithLocation',
desc: '',
args: [],
);
}
/// `Unpin album`
String get unpinAlbum {
return Intl.message(
'Unpin album',
name: 'unpinAlbum',
desc: '',
args: [],
);
}
/// `Pin album`
String get pinAlbum {
return Intl.message(
'Pin album',
name: 'pinAlbum',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {

View file

@ -1079,6 +1079,9 @@
"maps": "Maps",
"enableMaps": "Enable Maps",
"enableMapsDesc": "This will show your photos on a world map.\n\nThis map is hosted by Open Street Map, and the exact locations of your photos are never shared.\n\nYou can disable this feature anytime from Settings.",
"noPhotosFoundHere": "No photos found here",
"zoomOutToSeePhotos": "Zoom out to see photos",
"noImagesWithLocation": "No images with location",
"unpinAlbum": "Unpin album",
"pinAlbum": "Pin album"
}