Implement missing account settings
This commit is contained in:
parent
4a71884bbe
commit
3d999b6ba0
6 changed files with 106 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"@@last_modified": "2020-09-19T15:27:28.862887",
|
||||
"@@last_modified": "2020-09-21T17:49:17.725032",
|
||||
"About": "About",
|
||||
"@About": {
|
||||
"type": "text",
|
||||
|
|
@ -453,6 +453,16 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"This will deactivate your user account. This can not be undone! Are you sure?": "This will deactivate your user account. This can not be undone! Are you sure?",
|
||||
"@This will deactivate your user account. This can not be undone! Are you sure?": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Delete account": "Delete account",
|
||||
"@Delete account": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Delete message": "Delete message",
|
||||
"@Delete message": {
|
||||
"type": "text",
|
||||
|
|
@ -1006,6 +1016,11 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Password has been changed": "Password has been changed",
|
||||
"@Password has been changed": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Pick image": "Pick image",
|
||||
"@Pick image": {
|
||||
"type": "text",
|
||||
|
|
@ -1617,6 +1632,11 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Warning!": "Warning!",
|
||||
"@Warning!": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Wallpaper": "Wallpaper",
|
||||
"@Wallpaper": {
|
||||
"type": "text",
|
||||
|
|
|
|||
|
|
@ -342,6 +342,11 @@ class L10n extends MatrixLocalizations {
|
|||
|
||||
String get delete => Intl.message("Delete");
|
||||
|
||||
String get deactivateAccountWarning => Intl.message(
|
||||
'This will deactivate your user account. This can not be undone! Are you sure?');
|
||||
|
||||
String get deleteAccount => Intl.message('Delete account');
|
||||
|
||||
String get deleteMessage => Intl.message("Delete message");
|
||||
|
||||
String get deny => Intl.message("Deny");
|
||||
|
|
@ -636,6 +641,9 @@ class L10n extends MatrixLocalizations {
|
|||
|
||||
String get password => Intl.message("Password");
|
||||
|
||||
String get passwordHasBeenChanged =>
|
||||
Intl.message('Password has been changed');
|
||||
|
||||
String get pickImage => Intl.message('Pick image');
|
||||
|
||||
String get pin => Intl.message('Pin');
|
||||
|
|
@ -988,6 +996,8 @@ class L10n extends MatrixLocalizations {
|
|||
Intl.message("Waiting for partner to accept the numbers...",
|
||||
name: "waitingPartnerNumbers");
|
||||
|
||||
String get warning => Intl.message('Warning!');
|
||||
|
||||
String get wallpaper => Intl.message("Wallpaper");
|
||||
|
||||
String get warningEncryptionInBeta => Intl.message(
|
||||
|
|
|
|||
|
|
@ -239,6 +239,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("Currently active"),
|
||||
"Dark": MessageLookupByLibrary.simpleMessage("Dark"),
|
||||
"Delete": MessageLookupByLibrary.simpleMessage("Delete"),
|
||||
"Delete account":
|
||||
MessageLookupByLibrary.simpleMessage("Delete account"),
|
||||
"Delete message":
|
||||
MessageLookupByLibrary.simpleMessage("Delete message"),
|
||||
"Deny": MessageLookupByLibrary.simpleMessage("Deny"),
|
||||
|
|
@ -362,6 +364,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Participating user devices":
|
||||
MessageLookupByLibrary.simpleMessage("Participating user devices"),
|
||||
"Password": MessageLookupByLibrary.simpleMessage("Password"),
|
||||
"Password has been changed":
|
||||
MessageLookupByLibrary.simpleMessage("Password has been changed"),
|
||||
"Pick image": MessageLookupByLibrary.simpleMessage("Pick image"),
|
||||
"Pin": MessageLookupByLibrary.simpleMessage("Pin"),
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
|
||||
|
|
@ -438,6 +442,9 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"They Match": MessageLookupByLibrary.simpleMessage("They Match"),
|
||||
"This room has been archived.": MessageLookupByLibrary.simpleMessage(
|
||||
"This room has been archived."),
|
||||
"This will deactivate your user account. This can not be undone! Are you sure?":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"This will deactivate your user account. This can not be undone! Are you sure?"),
|
||||
"Thursday": MessageLookupByLibrary.simpleMessage("Thursday"),
|
||||
"Try to send again":
|
||||
MessageLookupByLibrary.simpleMessage("Try to send again"),
|
||||
|
|
@ -464,6 +471,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("Visible for everyone"),
|
||||
"Voice message": MessageLookupByLibrary.simpleMessage("Voice message"),
|
||||
"Wallpaper": MessageLookupByLibrary.simpleMessage("Wallpaper"),
|
||||
"Warning!": MessageLookupByLibrary.simpleMessage("Warning!"),
|
||||
"Wednesday": MessageLookupByLibrary.simpleMessage("Wednesday"),
|
||||
"Welcome to the cutest instant messenger in the matrix network.":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue