Add Device Settings page

This commit is contained in:
Christian Pauly 2020-02-19 16:23:13 +01:00
commit fff216c46c
11 changed files with 310 additions and 10 deletions

View file

@ -256,6 +256,8 @@ class I18n {
String get deleteMessage => Intl.message("Delete message");
String get devices => Intl.message("Devices");
String get discardPicture => Intl.message("Discard picture");
String get displaynameHasBeenChanged =>
@ -324,6 +326,8 @@ class I18n {
String get homeserverIsNotCompatible =>
Intl.message("Homeserver is not compatible");
String get id => Intl.message("ID");
String get inviteContact => Intl.message("Invite contact");
String inviteContactToGroup(String groupName) => Intl.message(
@ -382,6 +386,8 @@ class I18n {
args: [username],
);
String get lastSeenIp => Intl.message("Last seen IP");
String get license => Intl.message("License");
String get loadingPleaseWait => Intl.message("Loading... Please wait");
@ -473,12 +479,16 @@ class I18n {
args: [username],
);
String get removeAllOtherDevices => Intl.message("Remove all other devices");
String removedBy(String username) => Intl.message(
"Removed by $username",
name: "removedBy",
args: [username],
);
String get removeDevice => Intl.message("Remove device");
String get removeExile => Intl.message("Remove exile");
String get revokeAllPermissions => Intl.message("Revoke all permissions");
@ -621,6 +631,8 @@ class I18n {
String get unmuteChat => Intl.message('Unmute chat');
String get unknownDevice => Intl.message("Unknown device");
String unknownEvent(String type) => Intl.message(
"Unknown event '$type'",
name: "unknownEvent",