Implement voice messages
This commit is contained in:
parent
42a425b407
commit
75df57c965
9 changed files with 317 additions and 4 deletions
|
|
@ -94,6 +94,8 @@ class I18n {
|
|||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String get cancel => Intl.message("Cancel");
|
||||
|
||||
String changedTheChatAvatar(String username) => Intl.message(
|
||||
"$username changed the chat avatar",
|
||||
name: "changedTheChatAvatar",
|
||||
|
|
@ -484,6 +486,8 @@ class I18n {
|
|||
|
||||
String get rejoin => Intl.message("Rejoin");
|
||||
|
||||
String get recording => Intl.message("Recording");
|
||||
|
||||
String redactedAnEvent(String username) => Intl.message(
|
||||
"$username redacted an event",
|
||||
name: "redactedAnEvent",
|
||||
|
|
@ -555,6 +559,8 @@ class I18n {
|
|||
args: [username, count],
|
||||
);
|
||||
|
||||
String get send => Intl.message("Send");
|
||||
|
||||
String get sendAMessage => Intl.message("Send a message");
|
||||
|
||||
String get sendFile => Intl.message('Send file');
|
||||
|
|
@ -714,6 +720,8 @@ class I18n {
|
|||
String get visibilityOfTheChatHistory =>
|
||||
Intl.message("Visibility of the chat history");
|
||||
|
||||
String get voiceMessage => Intl.message("Voice message");
|
||||
|
||||
String get warningEncryptionInBeta => Intl.message(
|
||||
"End to end encryption is currently in Beta! Use at your own risk!");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue