Remove unrelated changes

This commit is contained in:
Neeraj Gupta 2023-04-29 17:02:52 +05:30
parent 69ce3dca24
commit e7a0a88d1b
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
4 changed files with 0 additions and 22 deletions

View file

@ -1,7 +0,0 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#0C227B",
"titleBar.activeBackground": "#1130AC",
"titleBar.activeForeground": "#FCFDFF"
}
}

View file

@ -166,9 +166,6 @@ class MessageLookup extends MessageLookupByLibrary {
static String m36(storageAmountInGB) =>
"They also get ${storageAmountInGB} GB";
static String m58(nameValue, ageValue) =>
"This is my name: ${nameValue}, my age is ${ageValue}";
static String m37(email) => "This is ${email}\'s Verification ID";
static String m38(email) => "Verify ${email}";
@ -1108,7 +1105,6 @@ class MessageLookup extends MessageLookupByLibrary {
"This email is already in use"),
"thisImageHasNoExifData":
MessageLookupByLibrary.simpleMessage("This image has no exif data"),
"thisIsMyName": m58,
"thisIsPersonVerificationId": m37,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"This is your Verification ID"),

View file

@ -2199,16 +2199,6 @@ class S {
);
}
/// `This is my name: {nameValue}, my age is {ageValue}`
String thisIsMyName(Object nameValue, Object ageValue) {
return Intl.message(
'This is my name: $nameValue, my age is $ageValue',
name: 'thisIsMyName',
desc: '',
args: [nameValue, ageValue],
);
}
/// `FAQ`
String get faq {
return Intl.message(

View file

@ -297,7 +297,6 @@
}
}
},
"thisIsMyName" : "This is my name: {nameValue}, my age is {ageValue}",
"faq": "FAQ",
"oopsSomethingWentWrong": "Oops, something went wrong",
"peopleUsingYourCode": "People using your code",