[mob] Extract strings

This commit is contained in:
Neeraj Gupta
2025-01-09 15:27:59 +05:30
parent 0a6121e1fa
commit 54be847f80
4 changed files with 14 additions and 2 deletions

View File

@@ -1377,6 +1377,7 @@ class MessageLookup extends MessageLookupByLibrary {
"privateSharing": "privateSharing":
MessageLookupByLibrary.simpleMessage("Private sharing"), MessageLookupByLibrary.simpleMessage("Private sharing"),
"proceed": MessageLookupByLibrary.simpleMessage("Proceed"), "proceed": MessageLookupByLibrary.simpleMessage("Proceed"),
"processed": MessageLookupByLibrary.simpleMessage("Processed"),
"processingImport": m54, "processingImport": m54,
"publicLinkCreated": "publicLinkCreated":
MessageLookupByLibrary.simpleMessage("Public link created"), MessageLookupByLibrary.simpleMessage("Public link created"),

View File

@@ -10007,6 +10007,16 @@ class S {
); );
} }
/// `Processed`
String get processed {
return Intl.message(
'Processed',
name: 'processed',
desc: '',
args: [],
);
}
/// `Remove` /// `Remove`
String get resetPerson { String get resetPerson {
return Intl.message( return Intl.message(

View File

@@ -1380,6 +1380,7 @@
"extraPhotosFound": "Extra photos found", "extraPhotosFound": "Extra photos found",
"configuration": "Configuration", "configuration": "Configuration",
"localIndexing": "Local indexing", "localIndexing": "Local indexing",
"processed": "Processed",
"resetPerson": "Remove", "resetPerson": "Remove",
"areYouSureYouWantToResetThisPerson": "Are you sure you want to reset this person?", "areYouSureYouWantToResetThisPerson": "Are you sure you want to reset this person?",
"allPersonGroupingWillReset": "All groupings for this person will be reset, and you will lose all suggestions made for this person", "allPersonGroupingWillReset": "All groupings for this person will be reset, and you will lose all suggestions made for this person",

View File

@@ -480,8 +480,8 @@ class MLStatusWidgetState extends State<MLStatusWidget> {
return Column( return Column(
children: [ children: [
MenuItemWidget( MenuItemWidget(
captionedTextWidget: const CaptionedTextWidget( captionedTextWidget: CaptionedTextWidget(
title: 'Processed', title: S.of(context).processed,
), ),
trailingWidget: Text( trailingWidget: Text(
total < 1 total < 1