Refactoring l10n
This commit is contained in:
parent
5f7148cc3c
commit
6f1ed6120f
42 changed files with 287 additions and 287 deletions
1308
lib/l10n/intl_de.arb
Normal file
1308
lib/l10n/intl_de.arb
Normal file
File diff suppressed because it is too large
Load diff
1313
lib/l10n/intl_messages.arb
Normal file
1313
lib/l10n/intl_messages.arb
Normal file
File diff suppressed because it is too large
Load diff
794
lib/l10n/l10n.dart
Normal file
794
lib/l10n/l10n.dart
Normal file
|
|
@ -0,0 +1,794 @@
|
|||
import 'package:famedlysdk/famedlysdk.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'messages_all.dart';
|
||||
|
||||
class AppLocalizationsDelegate extends LocalizationsDelegate<L10n> {
|
||||
const AppLocalizationsDelegate();
|
||||
|
||||
@override
|
||||
bool isSupported(Locale locale) {
|
||||
return ['en', 'de'].contains(locale.languageCode);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<L10n> load(Locale locale) {
|
||||
return L10n.load(locale);
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldReload(LocalizationsDelegate<L10n> old) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
class L10n extends MatrixLocalizations {
|
||||
L10n(this.localeName);
|
||||
|
||||
static Future<L10n> load(Locale locale) {
|
||||
final String name =
|
||||
locale.countryCode == null ? locale.languageCode : locale.toString();
|
||||
final String localeName = Intl.canonicalizedLocale(name);
|
||||
|
||||
return initializeMessages(localeName).then((bool _) {
|
||||
Intl.defaultLocale = localeName;
|
||||
return L10n(localeName);
|
||||
});
|
||||
}
|
||||
|
||||
static L10n of(BuildContext context) {
|
||||
return Localizations.of<L10n>(context, L10n);
|
||||
}
|
||||
|
||||
final String localeName;
|
||||
|
||||
/* <=============> Translations <=============> */
|
||||
|
||||
String get about => Intl.message("About");
|
||||
|
||||
String acceptedTheInvitation(String username) => Intl.message(
|
||||
"$username accepted the invitation",
|
||||
name: "acceptedTheInvitation",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get account => Intl.message("Account");
|
||||
|
||||
String get accountInformations => Intl.message("Account informations");
|
||||
|
||||
String activatedEndToEndEncryption(String username) => Intl.message(
|
||||
"$username activated end to end encryption",
|
||||
name: "activatedEndToEndEncryption",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get addGroupDescription => Intl.message("Add a group description");
|
||||
|
||||
String get admin => Intl.message("Admin");
|
||||
|
||||
String get alias => Intl.message("alias");
|
||||
|
||||
String get alreadyHaveAnAccount => Intl.message("Already have an account?");
|
||||
|
||||
String get anyoneCanJoin => Intl.message("Anyone can join");
|
||||
|
||||
String get archive => Intl.message("Archive");
|
||||
|
||||
String get archivedRoom => Intl.message("Archived Room");
|
||||
|
||||
String get areGuestsAllowedToJoin =>
|
||||
Intl.message("Are guest users allowed to join");
|
||||
|
||||
String get areYouSure => Intl.message("Are you sure?");
|
||||
|
||||
String get authentication => Intl.message("Authentication");
|
||||
|
||||
String get avatarHasBeenChanged => Intl.message("Avatar has been changed");
|
||||
|
||||
String get banFromChat => Intl.message("Ban from chat");
|
||||
|
||||
String get banned => Intl.message("Banned");
|
||||
|
||||
String bannedUser(String username, String targetName) => Intl.message(
|
||||
"$username banned $targetName",
|
||||
name: "bannedUser",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String byDefaultYouWillBeConnectedTo(String homeserver) => Intl.message(
|
||||
'By default you will be connected to $homeserver',
|
||||
name: 'byDefaultYouWillBeConnectedTo',
|
||||
args: [homeserver],
|
||||
);
|
||||
|
||||
String get cancel => Intl.message("Cancel");
|
||||
|
||||
String changedTheChatAvatar(String username) => Intl.message(
|
||||
"$username changed the chat avatar",
|
||||
name: "changedTheChatAvatar",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheChatNameTo(String username, String chatname) => Intl.message(
|
||||
"$username changed the chat name to: '$chatname'",
|
||||
name: "changedTheChatNameTo",
|
||||
args: [username, chatname],
|
||||
);
|
||||
|
||||
String changedTheChatDescriptionTo(String username, String description) =>
|
||||
Intl.message(
|
||||
"$username changed the chat description to: '$description'",
|
||||
name: "changedTheChatDescriptionTo",
|
||||
args: [username, description],
|
||||
);
|
||||
|
||||
String changedTheChatPermissions(String username) => Intl.message(
|
||||
"$username changed the chat permissions",
|
||||
name: "changedTheChatPermissions",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheDisplaynameTo(String username, String displayname) =>
|
||||
Intl.message(
|
||||
"$username changed the displayname to: $displayname",
|
||||
name: "changedTheDisplaynameTo",
|
||||
args: [username, displayname],
|
||||
);
|
||||
|
||||
String get changeTheHomeserver => Intl.message('Change the homeserver');
|
||||
|
||||
String changedTheGuestAccessRules(String username) => Intl.message(
|
||||
"$username changed the guest access rules",
|
||||
name: "changedTheGuestAccessRules",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheGuestAccessRulesTo(String username, String rules) =>
|
||||
Intl.message(
|
||||
"$username changed the guest access rules to: $rules",
|
||||
name: "changedTheGuestAccessRulesTo",
|
||||
args: [username, rules],
|
||||
);
|
||||
|
||||
String changedTheHistoryVisibility(String username) => Intl.message(
|
||||
"$username changed the history visibility",
|
||||
name: "changedTheHistoryVisibility",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheHistoryVisibilityTo(String username, String rules) =>
|
||||
Intl.message(
|
||||
"$username changed the history visibility to: $rules",
|
||||
name: "changedTheHistoryVisibilityTo",
|
||||
args: [username, rules],
|
||||
);
|
||||
|
||||
String changedTheJoinRules(String username) => Intl.message(
|
||||
"$username changed the join rules",
|
||||
name: "changedTheJoinRules",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheJoinRulesTo(String username, String joinRules) =>
|
||||
Intl.message(
|
||||
"$username changed the join rules to: $joinRules",
|
||||
name: "changedTheJoinRulesTo",
|
||||
args: [username, joinRules],
|
||||
);
|
||||
|
||||
String changedTheProfileAvatar(String username) => Intl.message(
|
||||
"$username changed the profile avatar",
|
||||
name: "changedTheProfileAvatar",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheRoomAliases(String username) => Intl.message(
|
||||
"$username changed the room aliases",
|
||||
name: "changedTheRoomAliases",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String changedTheRoomInvitationLink(String username) => Intl.message(
|
||||
"$username changed the invitation link",
|
||||
name: "changedTheRoomInvitationLink",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get changelog => Intl.message("Changelog");
|
||||
|
||||
String get changeTheNameOfTheGroup =>
|
||||
Intl.message("Change the name of the group");
|
||||
|
||||
String get changeWallpaper => Intl.message("Change wallpaper");
|
||||
|
||||
String get changeTheServer => Intl.message("Change the server");
|
||||
|
||||
String get channelCorruptedDecryptError =>
|
||||
Intl.message("The encryption has been corrupted");
|
||||
|
||||
String get chatDetails => Intl.message('Chat details');
|
||||
|
||||
String get chooseAStrongPassword => Intl.message("Choose a strong password");
|
||||
|
||||
String get chooseAUsername => Intl.message("Choose a username");
|
||||
|
||||
String get close => Intl.message("Close");
|
||||
|
||||
String get confirm => Intl.message("Confirm");
|
||||
|
||||
String get connect => Intl.message('Connect');
|
||||
|
||||
String get connectionAttemptFailed =>
|
||||
Intl.message("Connection attempt failed");
|
||||
|
||||
String get contactHasBeenInvitedToTheGroup =>
|
||||
Intl.message("Contact has been invited to the group");
|
||||
|
||||
String get contentViewer => Intl.message("Content viewer");
|
||||
|
||||
String get copiedToClipboard => Intl.message("Copied to clipboard");
|
||||
|
||||
String get copy => Intl.message("Copy");
|
||||
|
||||
String couldNotDecryptMessage(String error) => Intl.message(
|
||||
"Could not decrypt message: $error",
|
||||
name: "couldNotDecryptMessage",
|
||||
args: [error],
|
||||
);
|
||||
|
||||
String get couldNotSetAvatar => Intl.message("Could not set avatar");
|
||||
|
||||
String get couldNotSetDisplayname =>
|
||||
Intl.message("Could not set displayname");
|
||||
|
||||
String countParticipants(String count) => Intl.message(
|
||||
"$count participants",
|
||||
name: "countParticipants",
|
||||
args: [count],
|
||||
);
|
||||
|
||||
String get create => Intl.message("Create");
|
||||
|
||||
String get createAccountNow => Intl.message("Create account now");
|
||||
|
||||
String createdTheChat(String username) => Intl.message(
|
||||
"$username created the chat",
|
||||
name: "createdTheChat",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get createNewGroup => Intl.message("Create new group");
|
||||
|
||||
String dateAndTimeOfDay(String date, String timeOfDay) => Intl.message(
|
||||
"$date, $timeOfDay",
|
||||
name: "dateAndTimeOfDay",
|
||||
args: [date, timeOfDay],
|
||||
);
|
||||
|
||||
String dateWithoutYear(String month, String day) => Intl.message(
|
||||
"$month-$day",
|
||||
name: "dateWithoutYear",
|
||||
args: [month, day],
|
||||
);
|
||||
|
||||
String dateWithYear(String year, String month, String day) => Intl.message(
|
||||
"$year-$month-$day",
|
||||
name: "dateWithYear",
|
||||
args: [year, month, day],
|
||||
);
|
||||
|
||||
String get delete => Intl.message("Delete");
|
||||
|
||||
String get deleteMessage => Intl.message("Delete message");
|
||||
|
||||
String get deny => Intl.message("Deny");
|
||||
|
||||
String get device => Intl.message("Device");
|
||||
|
||||
String get devices => Intl.message("Devices");
|
||||
|
||||
String get discardPicture => Intl.message("Discard picture");
|
||||
|
||||
String get displaynameHasBeenChanged =>
|
||||
Intl.message("Displayname has been changed");
|
||||
|
||||
String get downloadFile => Intl.message("Download file");
|
||||
|
||||
String get editDisplayname => Intl.message("Edit displayname");
|
||||
|
||||
String get emptyChat => Intl.message("Empty chat");
|
||||
|
||||
String get enableEncryptionWarning => Intl.message(
|
||||
"You won't be able to disable the encryption anymore. Are you sure?");
|
||||
|
||||
String get encryptionAlgorithm => Intl.message("Encryption algorithm");
|
||||
|
||||
String get encryptionNotEnabled => Intl.message("Encryption is not enabled");
|
||||
|
||||
String get end2endEncryptionSettings =>
|
||||
Intl.message("End-to-end encryption settings");
|
||||
|
||||
String get enterAGroupName => Intl.message("Enter a group name");
|
||||
|
||||
String get enterAUsername => Intl.message("Enter a username");
|
||||
|
||||
String get enterYourHomeserver => Intl.message('Enter your homeserver');
|
||||
|
||||
String get fileName => Intl.message("File name");
|
||||
|
||||
String get fileSize => Intl.message("File size");
|
||||
|
||||
String get fluffychat => Intl.message("FluffyChat");
|
||||
|
||||
String get forward => Intl.message('Forward');
|
||||
|
||||
String get friday => Intl.message("Friday");
|
||||
|
||||
String get fromJoining => Intl.message("From joining");
|
||||
|
||||
String get fromTheInvitation => Intl.message("From the invitation");
|
||||
|
||||
String get group => Intl.message("Group");
|
||||
|
||||
String get groupDescription => Intl.message("Group description");
|
||||
|
||||
String get groupDescriptionHasBeenChanged =>
|
||||
Intl.message("Group description has been changed");
|
||||
|
||||
String get groupIsPublic => Intl.message("Group is public");
|
||||
|
||||
String groupWith(String displayname) => Intl.message(
|
||||
"Group with $displayname",
|
||||
name: "groupWith",
|
||||
args: [displayname],
|
||||
);
|
||||
|
||||
String get guestsAreForbidden => Intl.message("Guests are forbidden");
|
||||
|
||||
String get guestsCanJoin => Intl.message("Guests can join");
|
||||
|
||||
String hasWithdrawnTheInvitationFor(String username, String targetName) =>
|
||||
Intl.message(
|
||||
"$username has withdrawn the invitation for $targetName",
|
||||
name: "hasWithdrawnTheInvitationFor",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String get help => Intl.message("Help");
|
||||
|
||||
String get homeserverIsNotCompatible =>
|
||||
Intl.message("Homeserver is not compatible");
|
||||
|
||||
String get id => Intl.message("ID");
|
||||
|
||||
String get identity => Intl.message("Identity");
|
||||
|
||||
String get inviteContact => Intl.message("Invite contact");
|
||||
|
||||
String inviteContactToGroup(String groupName) => Intl.message(
|
||||
"Invite contact to $groupName",
|
||||
name: "inviteContactToGroup",
|
||||
args: [groupName],
|
||||
);
|
||||
|
||||
String get invited => Intl.message("Invited");
|
||||
|
||||
String inviteText(String username, String link) => Intl.message(
|
||||
"$username invited you to FluffyChat. \n1. Install FluffyChat: http://fluffy.chat \n2. Sign up or sign in \n3. Open the invite link: $link",
|
||||
name: "inviteText",
|
||||
args: [username, link],
|
||||
);
|
||||
|
||||
String invitedUser(String username, String targetName) => Intl.message(
|
||||
"$username invited $targetName",
|
||||
name: "invitedUser",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String get invitedUsersOnly => Intl.message("Invited users only");
|
||||
|
||||
String get isTyping => Intl.message("is typing...");
|
||||
|
||||
String get editJitsiInstance => Intl.message('Edit Jitsi instance');
|
||||
|
||||
String joinedTheChat(String username) => Intl.message(
|
||||
"$username joined the chat",
|
||||
name: "joinedTheChat",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String kicked(String username, String targetName) => Intl.message(
|
||||
"$username kicked $targetName",
|
||||
name: "kicked",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String kickedAndBanned(String username, String targetName) => Intl.message(
|
||||
"$username kicked and banned $targetName",
|
||||
name: "kickedAndBanned",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String get kickFromChat => Intl.message("Kick from chat");
|
||||
|
||||
String get leave => Intl.message('Leave');
|
||||
|
||||
String get leftTheChat => Intl.message("Left the chat");
|
||||
|
||||
String get logout => Intl.message("Logout");
|
||||
|
||||
String userLeftTheChat(String username) => Intl.message(
|
||||
"$username left the chat",
|
||||
name: "userLeftTheChat",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String lastActiveAgo(String localizedTimeShort) => Intl.message(
|
||||
"Last active: $localizedTimeShort",
|
||||
name: "lastActiveAgo",
|
||||
args: [localizedTimeShort],
|
||||
);
|
||||
|
||||
String get lastSeenIp => Intl.message("Last seen IP");
|
||||
|
||||
String get license => Intl.message("License");
|
||||
|
||||
String get loadingPleaseWait => Intl.message("Loading... Please wait");
|
||||
|
||||
String loadCountMoreParticipants(String count) => Intl.message(
|
||||
"Load $count more participants",
|
||||
name: "loadCountMoreParticipants",
|
||||
args: [count],
|
||||
);
|
||||
|
||||
String get login => Intl.message("Login");
|
||||
|
||||
String logInTo(String homeserver) => Intl.message(
|
||||
'Log in to $homeserver',
|
||||
name: 'logInTo',
|
||||
args: [homeserver],
|
||||
);
|
||||
|
||||
String get makeAModerator => Intl.message("Make a moderator");
|
||||
|
||||
String get makeAnAdmin => Intl.message("Make an admin");
|
||||
|
||||
String get makeSureTheIdentifierIsValid =>
|
||||
Intl.message("Make sure the identifier is valid");
|
||||
|
||||
String get messageWillBeRemovedWarning =>
|
||||
Intl.message("Message will be removed for all participants");
|
||||
|
||||
String get moderator => Intl.message("Moderator");
|
||||
|
||||
String get monday => Intl.message("Monday");
|
||||
|
||||
String get muteChat => Intl.message('Mute chat');
|
||||
|
||||
String get needPantalaimonWarning => Intl.message(
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.");
|
||||
|
||||
String get newMessageInFluffyChat =>
|
||||
Intl.message('New message in FluffyChat');
|
||||
|
||||
String get newPrivateChat => Intl.message("New private chat");
|
||||
|
||||
String get noGoogleServicesWarning => Intl.message(
|
||||
"It seems that you have no google services on your phone. That's a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/");
|
||||
|
||||
String get none => Intl.message("None");
|
||||
|
||||
String get noPermission => Intl.message("No permission");
|
||||
|
||||
String get noRoomsFound => Intl.message("No rooms found...");
|
||||
|
||||
String get notSupportedInWeb => Intl.message("Not supported in web");
|
||||
|
||||
String numberSelected(String number) =>
|
||||
Intl.message("$number selected", name: "numberSelected", args: [number]);
|
||||
|
||||
String get oopsSomethingWentWrong =>
|
||||
Intl.message("Oops something went wrong...");
|
||||
|
||||
String get openCamera => Intl.message('Open camera');
|
||||
|
||||
String get optionalGroupName => Intl.message("(Optional) Group name");
|
||||
|
||||
String get participatingUserDevices =>
|
||||
Intl.message("Participating user devices");
|
||||
|
||||
String get password => Intl.message("Password");
|
||||
|
||||
String play(String fileName) => Intl.message(
|
||||
"Play $fileName",
|
||||
name: "play",
|
||||
args: [fileName],
|
||||
);
|
||||
|
||||
String get pleaseChooseAUsername => Intl.message("Please choose a username");
|
||||
|
||||
String get pleaseEnterAMatrixIdentifier =>
|
||||
Intl.message('Please enter a matrix identifier');
|
||||
|
||||
String get pleaseEnterYourPassword =>
|
||||
Intl.message("Please enter your password");
|
||||
|
||||
String get pleaseEnterYourUsername =>
|
||||
Intl.message("Please enter your username");
|
||||
|
||||
String get publicRooms => Intl.message("Public Rooms");
|
||||
|
||||
String get rejoin => Intl.message("Rejoin");
|
||||
|
||||
String get recording => Intl.message("Recording");
|
||||
|
||||
String redactedAnEvent(String username) => Intl.message(
|
||||
"$username redacted an event",
|
||||
name: "redactedAnEvent",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String rejectedTheInvitation(String username) => Intl.message(
|
||||
"$username rejected the invitation",
|
||||
name: "rejectedTheInvitation",
|
||||
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");
|
||||
|
||||
String get remove => Intl.message("Remove");
|
||||
|
||||
String get removeMessage => Intl.message('Remove message');
|
||||
|
||||
String get reply => Intl.message('Reply');
|
||||
|
||||
String get requestPermission => Intl.message('Request permission');
|
||||
|
||||
String get requestToReadOlderMessages =>
|
||||
Intl.message("Request to read older messages");
|
||||
|
||||
String get saturday => Intl.message("Saturday");
|
||||
|
||||
String get share => Intl.message("Share");
|
||||
|
||||
String sharedTheLocation(String username) => Intl.message(
|
||||
"$username shared the location",
|
||||
name: "sharedTheLocation",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get searchForAChat => Intl.message("Search for a chat");
|
||||
|
||||
String seenByUser(String username) => Intl.message(
|
||||
"Seen by $username",
|
||||
name: "seenByUser",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String seenByUserAndUser(String username, String username2) => Intl.message(
|
||||
"Seen by $username and $username2",
|
||||
name: "seenByUserAndUser",
|
||||
args: [username, username2],
|
||||
);
|
||||
|
||||
String seenByUserAndCountOthers(String username, String count) =>
|
||||
Intl.message(
|
||||
"Seen by $username and $count others",
|
||||
name: "seenByUserAndCountOthers",
|
||||
args: [username, count],
|
||||
);
|
||||
|
||||
String get send => Intl.message("Send");
|
||||
|
||||
String get sendAMessage => Intl.message("Send a message");
|
||||
|
||||
String get sendFile => Intl.message('Send file');
|
||||
|
||||
String get sendImage => Intl.message('Send image');
|
||||
|
||||
String sentAFile(String username) => Intl.message(
|
||||
"$username sent a file",
|
||||
name: "sentAFile",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String sentAnAudio(String username) => Intl.message(
|
||||
"$username sent an audio",
|
||||
name: "sentAnAudio",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String sentAPicture(String username) => Intl.message(
|
||||
"$username sent a picture",
|
||||
name: "sentAPicture",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String sentASticker(String username) => Intl.message(
|
||||
"$username sent a sticker",
|
||||
name: "sentASticker",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String sentAVideo(String username) => Intl.message(
|
||||
"$username sent a video",
|
||||
name: "sentAVideo",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String get setAProfilePicture => Intl.message("Set a profile picture");
|
||||
|
||||
String get setGroupDescription => Intl.message("Set group description");
|
||||
|
||||
String get setInvitationLink => Intl.message("Set invitation link");
|
||||
|
||||
String get setStatus => Intl.message('Set status');
|
||||
|
||||
String get settings => Intl.message("Settings");
|
||||
|
||||
String get signUp => Intl.message("Sign up");
|
||||
|
||||
String get changeTheme => Intl.message("Change your style");
|
||||
|
||||
String get systemTheme => Intl.message("System");
|
||||
|
||||
String get statusExampleMessage => Intl.message("How are you today?");
|
||||
|
||||
String get lightTheme => Intl.message("Light");
|
||||
|
||||
String get darkTheme => Intl.message("Dark");
|
||||
|
||||
String get useAmoledTheme => Intl.message("Use Amoled compatible colors?");
|
||||
|
||||
String get sourceCode => Intl.message("Source code");
|
||||
|
||||
String get startYourFirstChat => Intl.message("Start your first chat :-)");
|
||||
|
||||
String get sunday => Intl.message("Sunday");
|
||||
|
||||
String get donate => Intl.message("Donate");
|
||||
|
||||
String get tapToShowMenu => Intl.message("Tap to show menu");
|
||||
|
||||
String get thisRoomHasBeenArchived =>
|
||||
Intl.message("This room has been archived.");
|
||||
|
||||
String get thursday => Intl.message("Thursday");
|
||||
|
||||
String timeOfDay(
|
||||
String hours12, String hours24, String minutes, String suffix) =>
|
||||
Intl.message(
|
||||
"$hours12:$minutes $suffix",
|
||||
name: "timeOfDay",
|
||||
args: [hours12, hours24, minutes, suffix],
|
||||
);
|
||||
|
||||
String get title => Intl.message(
|
||||
'FluffyChat',
|
||||
name: 'title',
|
||||
desc: 'Title for the application',
|
||||
locale: localeName,
|
||||
);
|
||||
|
||||
String get tryToSendAgain => Intl.message("Try to send again");
|
||||
|
||||
String get tuesday => Intl.message("Tuesday");
|
||||
|
||||
String unbannedUser(String username, String targetName) => Intl.message(
|
||||
"$username unbanned $targetName",
|
||||
name: "unbannedUser",
|
||||
args: [username, targetName],
|
||||
);
|
||||
|
||||
String get unmuteChat => Intl.message('Unmute chat');
|
||||
|
||||
String get unknownDevice => Intl.message("Unknown device");
|
||||
|
||||
String get unknownEncryptionAlgorithm =>
|
||||
Intl.message("Unknown encryption algorithm");
|
||||
|
||||
String unknownEvent(String type) => Intl.message(
|
||||
"Unknown event '$type'",
|
||||
name: "unknownEvent",
|
||||
args: [type],
|
||||
);
|
||||
|
||||
String unreadMessages(String unreadEvents) => Intl.message(
|
||||
"$unreadEvents unread messages",
|
||||
name: "unreadMessages",
|
||||
args: [unreadEvents],
|
||||
);
|
||||
|
||||
String unreadMessagesInChats(String unreadEvents, String unreadChats) =>
|
||||
Intl.message(
|
||||
"$unreadEvents unread messages in $unreadChats chats",
|
||||
name: "unreadMessagesInChats",
|
||||
args: [unreadEvents, unreadChats],
|
||||
);
|
||||
|
||||
String userAndOthersAreTyping(String username, String count) => Intl.message(
|
||||
"$username and $count others are typing...",
|
||||
name: "userAndOthersAreTyping",
|
||||
args: [username, count],
|
||||
);
|
||||
|
||||
String userAndUserAreTyping(String username, String username2) =>
|
||||
Intl.message(
|
||||
"$username and $username2 are typing...",
|
||||
name: "userAndUserAreTyping",
|
||||
args: [username, username2],
|
||||
);
|
||||
|
||||
String get username => Intl.message("Username");
|
||||
|
||||
String userIsTyping(String username) => Intl.message(
|
||||
"$username is typing...",
|
||||
name: "userIsTyping",
|
||||
args: [username],
|
||||
);
|
||||
|
||||
String userSentUnknownEvent(String username, String type) => Intl.message(
|
||||
"$username sent a $type event",
|
||||
name: "userSentUnknownEvent",
|
||||
args: [username, type],
|
||||
);
|
||||
|
||||
String get verify => Intl.message("Verify");
|
||||
|
||||
String get videoCall => Intl.message('Video call');
|
||||
|
||||
String get visibleForAllParticipants =>
|
||||
Intl.message("Visible for all participants");
|
||||
|
||||
String get visibleForEveryone => Intl.message("Visible for everyone");
|
||||
|
||||
String get visibilityOfTheChatHistory =>
|
||||
Intl.message("Visibility of the chat history");
|
||||
|
||||
String get voiceMessage => Intl.message("Voice message");
|
||||
|
||||
String get wallpaper => Intl.message("Wallpaper");
|
||||
|
||||
String get warningEncryptionInBeta => Intl.message(
|
||||
"End to end encryption is currently in Beta! Use at your own risk!");
|
||||
|
||||
String get wednesday => Intl.message("Wednesday");
|
||||
|
||||
String get welcomeText => Intl.message(
|
||||
'Welcome to the cutest instant messenger in the matrix network.');
|
||||
|
||||
String get whoIsAllowedToJoinThisGroup =>
|
||||
Intl.message("Who is allowed to join this group");
|
||||
|
||||
String get writeAMessage => Intl.message("Write a message...");
|
||||
|
||||
String get yes => Intl.message("Yes");
|
||||
|
||||
String get you => Intl.message("You");
|
||||
|
||||
String get youAreInvitedToThisChat =>
|
||||
Intl.message("You are invited to this chat");
|
||||
|
||||
String get youAreNoLongerParticipatingInThisChat =>
|
||||
Intl.message("You are no longer participating in this chat");
|
||||
|
||||
String get youCannotInviteYourself =>
|
||||
Intl.message("You cannot invite yourself");
|
||||
|
||||
String get youHaveBeenBannedFromThisChat =>
|
||||
Intl.message("You have been banned from this chat");
|
||||
|
||||
String get yourOwnUsername => Intl.message("Your own username");
|
||||
}
|
||||
67
lib/l10n/messages_all.dart
Normal file
67
lib/l10n/messages_all.dart
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
// This is a library that looks up messages for specific locales by
|
||||
// delegating to the appropriate library.
|
||||
|
||||
// Ignore issues from commonly used lints in this file.
|
||||
// ignore_for_file:implementation_imports, file_names, unnecessary_new
|
||||
// ignore_for_file:unnecessary_brace_in_string_interps, directives_ordering
|
||||
// ignore_for_file:argument_type_not_assignable, invalid_assignment
|
||||
// ignore_for_file:prefer_single_quotes, prefer_generic_function_type_aliases
|
||||
// ignore_for_file:comment_references
|
||||
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
import 'package:intl/src/intl_helpers.dart';
|
||||
|
||||
import 'messages_de.dart' as messages_de;
|
||||
import 'messages_messages.dart' as messages_messages;
|
||||
|
||||
typedef Future<dynamic> LibraryLoader();
|
||||
Map<String, LibraryLoader> _deferredLibraries = {
|
||||
'de': () => new Future.value(null),
|
||||
'messages': () => new Future.value(null),
|
||||
};
|
||||
|
||||
MessageLookupByLibrary _findExact(String localeName) {
|
||||
switch (localeName) {
|
||||
case 'de':
|
||||
return messages_de.messages;
|
||||
case 'messages':
|
||||
return messages_messages.messages;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// User programs should call this before using [localeName] for messages.
|
||||
Future<bool> initializeMessages(String localeName) async {
|
||||
var availableLocale = Intl.verifiedLocale(
|
||||
localeName,
|
||||
(locale) => _deferredLibraries[locale] != null,
|
||||
onFailure: (_) => null);
|
||||
if (availableLocale == null) {
|
||||
return new Future.value(false);
|
||||
}
|
||||
var lib = _deferredLibraries[availableLocale];
|
||||
await (lib == null ? new Future.value(false) : lib());
|
||||
initializeInternalMessageLookup(() => new CompositeMessageLookup());
|
||||
messageLookup.addLocale(availableLocale, _findGeneratedMessagesFor);
|
||||
return new Future.value(true);
|
||||
}
|
||||
|
||||
bool _messagesExistFor(String locale) {
|
||||
try {
|
||||
return _findExact(locale) != null;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
MessageLookupByLibrary _findGeneratedMessagesFor(String locale) {
|
||||
var actualLocale = Intl.verifiedLocale(locale, _messagesExistFor,
|
||||
onFailure: (_) => null);
|
||||
if (actualLocale == null) return null;
|
||||
return _findExact(actualLocale);
|
||||
}
|
||||
375
lib/l10n/messages_de.dart
Normal file
375
lib/l10n/messages_de.dart
Normal file
|
|
@ -0,0 +1,375 @@
|
|||
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
// This is a library that provides messages for a de locale. All the
|
||||
// messages from the main program should be duplicated here with the same
|
||||
// function name.
|
||||
|
||||
// Ignore issues from commonly used lints in this file.
|
||||
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
|
||||
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
|
||||
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
|
||||
// ignore_for_file:unused_import, file_names
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
|
||||
final messages = new MessageLookup();
|
||||
|
||||
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
|
||||
|
||||
class MessageLookup extends MessageLookupByLibrary {
|
||||
String get localeName => 'de';
|
||||
|
||||
static m0(username) => "${username} hat die Einladung akzeptiert";
|
||||
|
||||
static m1(username) => "${username} hat Ende-zu-Ende Verschlüsselung aktiviert";
|
||||
|
||||
static m2(username, targetName) => "${username} hat ${targetName} verbannt";
|
||||
|
||||
static m3(homeserver) => "Standardmäßig wirst Du mit ${homeserver} verbunden";
|
||||
|
||||
static m4(username) => "${username} hat den Chat-Avatar geändert";
|
||||
|
||||
static m5(username, description) => "${username} hat die Beschreibung vom Chat geändert zu: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) => "${username} hat den Chat-Namen geändert zu: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} hat die Berechtigungen vom Chat geändert";
|
||||
|
||||
static m8(username, displayname) => "${username} hat den Nicknamen geändert zu: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} hat Gast-Zugangsregeln geändert";
|
||||
|
||||
static m10(username, rules) => "${username} hat Gast-Zugangsregeln geändert zu: ${rules}";
|
||||
|
||||
static m11(username) => "${username} hat die Sichtbarkeit des Chat-Verlaufs geändert";
|
||||
|
||||
static m12(username, rules) => "${username} hat die Sichtbarkeit des Chat-Verlaufs geändert zu: ${rules}";
|
||||
|
||||
static m13(username) => "${username} hat die Zugangsregeln geändert";
|
||||
|
||||
static m14(username, joinRules) => "${username} hat die Zugangsregeln geändert zu: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} hat das Profilbild geändert";
|
||||
|
||||
static m16(username) => "${username} hat die Raum-Aliase geändert";
|
||||
|
||||
static m17(username) => "${username} hat den Einladungslink geändert";
|
||||
|
||||
static m18(error) => "Nachricht konnte nicht entschlüsselt werden: ${error}";
|
||||
|
||||
static m19(count) => "${count} Teilnehmer";
|
||||
|
||||
static m20(username) => "${username} hat den Chat erstellt";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}.${month}.${year}";
|
||||
|
||||
static m23(month, day) => "${day}.${month}";
|
||||
|
||||
static m24(displayname) => "Gruppe mit ${displayname}";
|
||||
|
||||
static m25(username, targetName) => "${username} hat die Einladung für ${targetName} zurückgezogen";
|
||||
|
||||
static m26(groupName) => "Kontakt zu ${groupName} einladen";
|
||||
|
||||
static m27(username, link) => "${username} hat Dich zu FluffyChat eingeladen. \n1. Installiere FluffyChat: http://fluffy.chat \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} hat ${targetName} eingeladen";
|
||||
|
||||
static m29(username) => "${username} ist dem Chat beigetreten";
|
||||
|
||||
static m30(username, targetName) => "${username} hat ${targetName} hinausgeworfen";
|
||||
|
||||
static m31(username, targetName) => "${username} hat ${targetName} hinausgeworfen und verbannt";
|
||||
|
||||
static m32(localizedTimeShort) => "Zuletzt aktiv: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "${count} weitere Teilnehmer laden";
|
||||
|
||||
static m34(homeserver) => "Bei ${homeserver} anmelden";
|
||||
|
||||
static m35(number) => "${number} ausgewählt";
|
||||
|
||||
static m36(fileName) => "Play ${fileName}";
|
||||
|
||||
static m37(username) => "${username} hat ein Event enternt";
|
||||
|
||||
static m38(username) => "${username} hat die Einladung abgelehnt";
|
||||
|
||||
static m39(username) => "Entfernt von ${username}";
|
||||
|
||||
static m40(username) => "Gelesen von ${username}";
|
||||
|
||||
static m41(username, count) => "Gelesen von ${username} und ${count} anderen";
|
||||
|
||||
static m42(username, username2) => "Gelesen von ${username} und ${username2}";
|
||||
|
||||
static m43(username) => "${username} hat eine Datei gesendet";
|
||||
|
||||
static m44(username) => "${username} hat ein Bild gesendet";
|
||||
|
||||
static m45(username) => "${username} hat einen Sticker gesendet";
|
||||
|
||||
static m46(username) => "${username} hat ein Video gesendet";
|
||||
|
||||
static m47(username) => "${username} hat eine Audio-Datei gesendet";
|
||||
|
||||
static m48(username) => "${username} hat den Standort geteilt";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "${username} hat die Verbannung von ${targetName} aufgehoben";
|
||||
|
||||
static m51(type) => "Unbekanntes Event \'${type}\'";
|
||||
|
||||
static m52(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
|
||||
|
||||
static m53(unreadEvents, unreadChats) => "${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
|
||||
|
||||
static m54(username, count) => "${username} und ${count} andere schreiben ...";
|
||||
|
||||
static m55(username, username2) => "${username} und ${username2} schreiben ...";
|
||||
|
||||
static m56(username) => "${username} schreibt ...";
|
||||
|
||||
static m57(username) => "${username} hat den Chat verlassen";
|
||||
|
||||
static m58(username, type) => "${username} hat ${type} Event gesendet";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function> {
|
||||
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Optional) Name für die Gruppe"),
|
||||
"About" : MessageLookupByLibrary.simpleMessage("Über"),
|
||||
"Account" : MessageLookupByLibrary.simpleMessage("Konto"),
|
||||
"Account informations" : MessageLookupByLibrary.simpleMessage("Kontoinformationen"),
|
||||
"Add a group description" : MessageLookupByLibrary.simpleMessage("Eine Beschreibung für die Gruppe hinzufügen"),
|
||||
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"),
|
||||
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Hast du schon einen Account?"),
|
||||
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Jeder darf beitreten"),
|
||||
"Archive" : MessageLookupByLibrary.simpleMessage("Archiv"),
|
||||
"Archived Room" : MessageLookupByLibrary.simpleMessage("Archivierter Raum"),
|
||||
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Dürfen Gast-Benutzer beitreten"),
|
||||
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Bist Du sicher?"),
|
||||
"Authentication" : MessageLookupByLibrary.simpleMessage("Authentifizierung"),
|
||||
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Avatar wurde geändert"),
|
||||
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Aus dem Chat verbannen"),
|
||||
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"),
|
||||
"Cancel" : MessageLookupByLibrary.simpleMessage("Abbrechen"),
|
||||
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Anderen Homeserver verwenden"),
|
||||
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Gruppenname ändern"),
|
||||
"Change the server" : MessageLookupByLibrary.simpleMessage("Ändere den Server"),
|
||||
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Hintergrund ändern"),
|
||||
"Change your style" : MessageLookupByLibrary.simpleMessage("Ändere Deinen Style"),
|
||||
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"),
|
||||
"Chat details" : MessageLookupByLibrary.simpleMessage("Gruppeninfo"),
|
||||
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Wähle ein sicheres Passwort"),
|
||||
"Choose a username" : MessageLookupByLibrary.simpleMessage("Wähle einen Benutzernamen"),
|
||||
"Close" : MessageLookupByLibrary.simpleMessage("Schließen"),
|
||||
"Confirm" : MessageLookupByLibrary.simpleMessage("Bestätigen"),
|
||||
"Connect" : MessageLookupByLibrary.simpleMessage("Verbinden"),
|
||||
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Verbindungsversuch fehlgeschlagen"),
|
||||
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Kontakt wurde in die Gruppe eingeladen"),
|
||||
"Content viewer" : MessageLookupByLibrary.simpleMessage("Content Viewer"),
|
||||
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Wurde in die Zwischenablage kopiert"),
|
||||
"Copy" : MessageLookupByLibrary.simpleMessage("Kopieren"),
|
||||
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Profilbild konnte nicht gesetzt werden"),
|
||||
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Anzeigename konnte nicht gesetzt werden"),
|
||||
"Create" : MessageLookupByLibrary.simpleMessage("Create"),
|
||||
"Create account now" : MessageLookupByLibrary.simpleMessage("Account jetzt erstellen"),
|
||||
"Create new group" : MessageLookupByLibrary.simpleMessage("Neue Gruppe"),
|
||||
"Dark" : MessageLookupByLibrary.simpleMessage("Dunkel"),
|
||||
"Delete" : MessageLookupByLibrary.simpleMessage("Löschen"),
|
||||
"Delete message" : MessageLookupByLibrary.simpleMessage("Nachricht löschen"),
|
||||
"Deny" : MessageLookupByLibrary.simpleMessage("Ablehnen"),
|
||||
"Device" : MessageLookupByLibrary.simpleMessage("Gerät"),
|
||||
"Devices" : MessageLookupByLibrary.simpleMessage("Geräte"),
|
||||
"Discard picture" : MessageLookupByLibrary.simpleMessage("Bild verwerfen"),
|
||||
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Anzeigename wurde geändert"),
|
||||
"Donate" : MessageLookupByLibrary.simpleMessage("Spenden"),
|
||||
"Download file" : MessageLookupByLibrary.simpleMessage("Datei herunterladen"),
|
||||
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Jitsi Instanz ändern"),
|
||||
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Anzeigename ändern"),
|
||||
"Empty chat" : MessageLookupByLibrary.simpleMessage("Leerer Chat"),
|
||||
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Verschlüsselungsalgorithmus"),
|
||||
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Verschlüsselung ist nicht aktiviert"),
|
||||
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("Ende-zu-Ende-Verschlüsselung ist im Beta-Status. Benutzung auf eigene Gefahr!"),
|
||||
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("Ende-zu-Ende-Verschlüsselung"),
|
||||
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Gib einen Gruppennamen ein"),
|
||||
"Enter a username" : MessageLookupByLibrary.simpleMessage("Gib einen Benutzernamen ein"),
|
||||
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Gib Deinen Homeserver ein"),
|
||||
"File name" : MessageLookupByLibrary.simpleMessage("Dateiname"),
|
||||
"File size" : MessageLookupByLibrary.simpleMessage("Dateigröße"),
|
||||
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"Forward" : MessageLookupByLibrary.simpleMessage("Weiterleiten"),
|
||||
"Friday" : MessageLookupByLibrary.simpleMessage("Freitag"),
|
||||
"From joining" : MessageLookupByLibrary.simpleMessage("Ab dem Beitritt"),
|
||||
"From the invitation" : MessageLookupByLibrary.simpleMessage("Ab der Einladung"),
|
||||
"Group" : MessageLookupByLibrary.simpleMessage("Gruppe"),
|
||||
"Group description" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung"),
|
||||
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung wurde geändert"),
|
||||
"Group is public" : MessageLookupByLibrary.simpleMessage("Öffentliche Gruppe"),
|
||||
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Gäste sind verboten"),
|
||||
"Guests can join" : MessageLookupByLibrary.simpleMessage("Gäste dürfen beitreten"),
|
||||
"Help" : MessageLookupByLibrary.simpleMessage("Hilfe"),
|
||||
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Homeserver ist nicht kompatibel"),
|
||||
"ID" : MessageLookupByLibrary.simpleMessage("ID"),
|
||||
"Identity" : MessageLookupByLibrary.simpleMessage("Identität"),
|
||||
"Invite contact" : MessageLookupByLibrary.simpleMessage("Kontakt einladen"),
|
||||
"Invited" : MessageLookupByLibrary.simpleMessage("Eingeladen"),
|
||||
"Invited users only" : MessageLookupByLibrary.simpleMessage("Nur eingeladene Benutzer"),
|
||||
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/" : MessageLookupByLibrary.simpleMessage("Es sieht so aus als hättest du keine Google Dienste auf deinem Gerät. Das ist eine gute Entscheidung für deine Privatsphäre. Um Push Benachrichtigungen in FluffyChat zu erhalten, empfehlen wir die Verwendung von microG: https://microg.org/"),
|
||||
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Aus dem Chat hinauswerfen"),
|
||||
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Zuletzt bekannte IP"),
|
||||
"Leave" : MessageLookupByLibrary.simpleMessage("Verlassen"),
|
||||
"Left the chat" : MessageLookupByLibrary.simpleMessage("Hat den Chat verlassen"),
|
||||
"License" : MessageLookupByLibrary.simpleMessage("Lizenz"),
|
||||
"Light" : MessageLookupByLibrary.simpleMessage("Hell"),
|
||||
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Lade ... Bitte warten"),
|
||||
"Login" : MessageLookupByLibrary.simpleMessage("Login"),
|
||||
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"),
|
||||
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Zum Moderator ernennen"),
|
||||
"Make an admin" : MessageLookupByLibrary.simpleMessage("Zum Admin ernennen"),
|
||||
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Gib bitte einen richtigen Benutzernamen ein"),
|
||||
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Nachricht wird für alle Teilnehmer entfernt"),
|
||||
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderator"),
|
||||
"Monday" : MessageLookupByLibrary.simpleMessage("Montag"),
|
||||
"Mute chat" : MessageLookupByLibrary.simpleMessage("Stummschalten"),
|
||||
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("Neue Nachricht in FluffyChat"),
|
||||
"New private chat" : MessageLookupByLibrary.simpleMessage("Neuer privater Chat"),
|
||||
"No permission" : MessageLookupByLibrary.simpleMessage("Keine Berechtigung"),
|
||||
"No rooms found..." : MessageLookupByLibrary.simpleMessage("Keine Räume gefunden ..."),
|
||||
"None" : MessageLookupByLibrary.simpleMessage("Keiner"),
|
||||
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Wird in der Web-Version nicht unterstützt"),
|
||||
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Hoppla! Da ist etwas schief gelaufen ..."),
|
||||
"Open camera" : MessageLookupByLibrary.simpleMessage("Kamera öffnen"),
|
||||
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Teilnehmende Geräte"),
|
||||
"Password" : MessageLookupByLibrary.simpleMessage("Passwort"),
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now." : MessageLookupByLibrary.simpleMessage("Bitte beachte, dass du Pantalaimon brauchst, um Ende-zu-Ende-Verschlüsselung benutzen zu können."),
|
||||
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Bitte wähle einen Benutzernamen"),
|
||||
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Bitte eine Matrix ID eingeben"),
|
||||
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Bitte dein Passwort eingeben"),
|
||||
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Bitte deinen Benutzernamen eingeben"),
|
||||
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Öffentliche Räume"),
|
||||
"Recording" : MessageLookupByLibrary.simpleMessage("Aufnahme"),
|
||||
"Rejoin" : MessageLookupByLibrary.simpleMessage("Wieder beitreten"),
|
||||
"Remove" : MessageLookupByLibrary.simpleMessage("Entfernen"),
|
||||
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Alle anderen Geräte entfernen"),
|
||||
"Remove device" : MessageLookupByLibrary.simpleMessage("Gerät entfernen"),
|
||||
"Remove exile" : MessageLookupByLibrary.simpleMessage("Verbannung aufheben"),
|
||||
"Remove message" : MessageLookupByLibrary.simpleMessage("Nachricht entfernen"),
|
||||
"Reply" : MessageLookupByLibrary.simpleMessage("Antworten"),
|
||||
"Request permission" : MessageLookupByLibrary.simpleMessage("Berechtigung anfragen"),
|
||||
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Anfrage um ältere Nachrichten zu lesen"),
|
||||
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Alle Berechtigungen zurücknehmen"),
|
||||
"Saturday" : MessageLookupByLibrary.simpleMessage("Samstag"),
|
||||
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Durchsuche die Chats"),
|
||||
"Send" : MessageLookupByLibrary.simpleMessage("Senden"),
|
||||
"Send a message" : MessageLookupByLibrary.simpleMessage("Nachricht schreiben"),
|
||||
"Send file" : MessageLookupByLibrary.simpleMessage("Datei senden"),
|
||||
"Send image" : MessageLookupByLibrary.simpleMessage("Bild senden"),
|
||||
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Ein Profilbild festlegen"),
|
||||
"Set group description" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung festlegen"),
|
||||
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Einladungslink festlegen"),
|
||||
"Set status" : MessageLookupByLibrary.simpleMessage("Status ändern"),
|
||||
"Settings" : MessageLookupByLibrary.simpleMessage("Einstellungen"),
|
||||
"Share" : MessageLookupByLibrary.simpleMessage("Teilen"),
|
||||
"Sign up" : MessageLookupByLibrary.simpleMessage("Registrieren"),
|
||||
"Source code" : MessageLookupByLibrary.simpleMessage("Quellcode"),
|
||||
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Starte deinen ersten Chat :-)"),
|
||||
"Sunday" : MessageLookupByLibrary.simpleMessage("Sonntag"),
|
||||
"System" : MessageLookupByLibrary.simpleMessage("System"),
|
||||
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Tippen, um das Menü anzuzeigen"),
|
||||
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("Die Verschlüsselung wurde korrumpiert"),
|
||||
"This room has been archived." : MessageLookupByLibrary.simpleMessage("Dieser Raum wurde archiviert."),
|
||||
"Thursday" : MessageLookupByLibrary.simpleMessage("Donnerstag"),
|
||||
"Try to send again" : MessageLookupByLibrary.simpleMessage("Nochmal versuchen zu senden"),
|
||||
"Tuesday" : MessageLookupByLibrary.simpleMessage("Dienstag"),
|
||||
"Unknown device" : MessageLookupByLibrary.simpleMessage("Unbekanntes Gerät"),
|
||||
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Unbekannter Verschlüsselungsalgorithmus"),
|
||||
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Stumm aus"),
|
||||
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Amoled optimierte Farben verwenden?"),
|
||||
"Username" : MessageLookupByLibrary.simpleMessage("Benutzername"),
|
||||
"Verify" : MessageLookupByLibrary.simpleMessage("Bestätigen"),
|
||||
"Video call" : MessageLookupByLibrary.simpleMessage("Videoanruf"),
|
||||
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Sichtbarkeit des Chat-Verlaufs"),
|
||||
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Sichtbar für alle Teilnehmer"),
|
||||
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Für jeden sichtbar"),
|
||||
"Voice message" : MessageLookupByLibrary.simpleMessage("Sprachnachricht"),
|
||||
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Hintergrund"),
|
||||
"Wednesday" : MessageLookupByLibrary.simpleMessage("Mittwoch"),
|
||||
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Herzlich willkommen beim knuffigsten Instant Messenger im Matrix-Netwerk."),
|
||||
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Wer darf der Gruppe beitreten"),
|
||||
"Write a message..." : MessageLookupByLibrary.simpleMessage("Schreibe eine Nachricht ..."),
|
||||
"Yes" : MessageLookupByLibrary.simpleMessage("Ja"),
|
||||
"You" : MessageLookupByLibrary.simpleMessage("Du"),
|
||||
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("Du wurdest eingeladen in diesen Chat"),
|
||||
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("Du bist kein Teilnehmer mehr in diesem Chat"),
|
||||
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("Du kannst dich nicht selbst einladen"),
|
||||
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("Du wurdest aus dem Chat verbannt"),
|
||||
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("Du wirst die Verschlüsselung nicht mehr ausstellen können. Bist Du sicher?"),
|
||||
"Your own username" : MessageLookupByLibrary.simpleMessage("Dein eigener Benutzername"),
|
||||
"acceptedTheInvitation" : m0,
|
||||
"activatedEndToEndEncryption" : m1,
|
||||
"alias" : MessageLookupByLibrary.simpleMessage("Alias"),
|
||||
"bannedUser" : m2,
|
||||
"byDefaultYouWillBeConnectedTo" : m3,
|
||||
"changedTheChatAvatar" : m4,
|
||||
"changedTheChatDescriptionTo" : m5,
|
||||
"changedTheChatNameTo" : m6,
|
||||
"changedTheChatPermissions" : m7,
|
||||
"changedTheDisplaynameTo" : m8,
|
||||
"changedTheGuestAccessRules" : m9,
|
||||
"changedTheGuestAccessRulesTo" : m10,
|
||||
"changedTheHistoryVisibility" : m11,
|
||||
"changedTheHistoryVisibilityTo" : m12,
|
||||
"changedTheJoinRules" : m13,
|
||||
"changedTheJoinRulesTo" : m14,
|
||||
"changedTheProfileAvatar" : m15,
|
||||
"changedTheRoomAliases" : m16,
|
||||
"changedTheRoomInvitationLink" : m17,
|
||||
"couldNotDecryptMessage" : m18,
|
||||
"countParticipants" : m19,
|
||||
"createdTheChat" : m20,
|
||||
"dateAndTimeOfDay" : m21,
|
||||
"dateWithYear" : m22,
|
||||
"dateWithoutYear" : m23,
|
||||
"groupWith" : m24,
|
||||
"hasWithdrawnTheInvitationFor" : m25,
|
||||
"inviteContactToGroup" : m26,
|
||||
"inviteText" : m27,
|
||||
"invitedUser" : m28,
|
||||
"is typing..." : MessageLookupByLibrary.simpleMessage("schreibt..."),
|
||||
"joinedTheChat" : m29,
|
||||
"kicked" : m30,
|
||||
"kickedAndBanned" : m31,
|
||||
"lastActiveAgo" : m32,
|
||||
"loadCountMoreParticipants" : m33,
|
||||
"logInTo" : m34,
|
||||
"numberSelected" : m35,
|
||||
"play" : m36,
|
||||
"redactedAnEvent" : m37,
|
||||
"rejectedTheInvitation" : m38,
|
||||
"removedBy" : m39,
|
||||
"seenByUser" : m40,
|
||||
"seenByUserAndCountOthers" : m41,
|
||||
"seenByUserAndUser" : m42,
|
||||
"sentAFile" : m43,
|
||||
"sentAPicture" : m44,
|
||||
"sentASticker" : m45,
|
||||
"sentAVideo" : m46,
|
||||
"sentAnAudio" : m47,
|
||||
"sharedTheLocation" : m48,
|
||||
"timeOfDay" : m49,
|
||||
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser" : m50,
|
||||
"unknownEvent" : m51,
|
||||
"unreadMessages" : m52,
|
||||
"unreadMessagesInChats" : m53,
|
||||
"userAndOthersAreTyping" : m54,
|
||||
"userAndUserAreTyping" : m55,
|
||||
"userIsTyping" : m56,
|
||||
"userLeftTheChat" : m57,
|
||||
"userSentUnknownEvent" : m58
|
||||
};
|
||||
}
|
||||
376
lib/l10n/messages_messages.dart
Normal file
376
lib/l10n/messages_messages.dart
Normal file
|
|
@ -0,0 +1,376 @@
|
|||
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
// This is a library that provides messages for a messages locale. All the
|
||||
// messages from the main program should be duplicated here with the same
|
||||
// function name.
|
||||
|
||||
// Ignore issues from commonly used lints in this file.
|
||||
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
|
||||
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
|
||||
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
|
||||
// ignore_for_file:unused_import, file_names
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
|
||||
final messages = new MessageLookup();
|
||||
|
||||
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
|
||||
|
||||
class MessageLookup extends MessageLookupByLibrary {
|
||||
String get localeName => 'messages';
|
||||
|
||||
static m0(username) => "${username} accepted the invitation";
|
||||
|
||||
static m1(username) => "${username} activated end to end encryption";
|
||||
|
||||
static m2(username, targetName) => "${username} banned ${targetName}";
|
||||
|
||||
static m3(homeserver) => "By default you will be connected to ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} changed the chat avatar";
|
||||
|
||||
static m5(username, description) => "${username} changed the chat description to: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) => "${username} changed the chat name to: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} changed the chat permissions";
|
||||
|
||||
static m8(username, displayname) => "${username} changed the displayname to: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} changed the guest access rules";
|
||||
|
||||
static m10(username, rules) => "${username} changed the guest access rules to: ${rules}";
|
||||
|
||||
static m11(username) => "${username} changed the history visibility";
|
||||
|
||||
static m12(username, rules) => "${username} changed the history visibility to: ${rules}";
|
||||
|
||||
static m13(username) => "${username} changed the join rules";
|
||||
|
||||
static m14(username, joinRules) => "${username} changed the join rules to: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} changed the profile avatar";
|
||||
|
||||
static m16(username) => "${username} changed the room aliases";
|
||||
|
||||
static m17(username) => "${username} changed the invitation link";
|
||||
|
||||
static m18(error) => "Could not decrypt message: ${error}";
|
||||
|
||||
static m19(count) => "${count} participants";
|
||||
|
||||
static m20(username) => "${username} created the chat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${year}-${month}-${day}";
|
||||
|
||||
static m23(month, day) => "${month}-${day}";
|
||||
|
||||
static m24(displayname) => "Group with ${displayname}";
|
||||
|
||||
static m25(username, targetName) => "${username} has withdrawn the invitation for ${targetName}";
|
||||
|
||||
static m26(groupName) => "Invite contact to ${groupName}";
|
||||
|
||||
static m27(username, link) => "${username} invited you to FluffyChat. \n1. Install FluffyChat: http://fluffy.chat \n2. Sign up or sign in \n3. Open the invite link: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} invited ${targetName}";
|
||||
|
||||
static m29(username) => "${username} joined the chat";
|
||||
|
||||
static m30(username, targetName) => "${username} kicked ${targetName}";
|
||||
|
||||
static m31(username, targetName) => "${username} kicked and banned ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Last active: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Load ${count} more participants";
|
||||
|
||||
static m34(homeserver) => "Log in to ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} selected";
|
||||
|
||||
static m36(fileName) => "Play ${fileName}";
|
||||
|
||||
static m37(username) => "${username} redacted an event";
|
||||
|
||||
static m38(username) => "${username} rejected the invitation";
|
||||
|
||||
static m39(username) => "Removed by ${username}";
|
||||
|
||||
static m40(username) => "Seen by ${username}";
|
||||
|
||||
static m41(username, count) => "Seen by ${username} and ${count} others";
|
||||
|
||||
static m42(username, username2) => "Seen by ${username} and ${username2}";
|
||||
|
||||
static m43(username) => "${username} sent a file";
|
||||
|
||||
static m44(username) => "${username} sent a picture";
|
||||
|
||||
static m45(username) => "${username} sent a sticker";
|
||||
|
||||
static m46(username) => "${username} sent a video";
|
||||
|
||||
static m47(username) => "${username} sent an audio";
|
||||
|
||||
static m48(username) => "${username} shared the location";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours12}:${minutes} ${suffix}";
|
||||
|
||||
static m50(username, targetName) => "${username} unbanned ${targetName}";
|
||||
|
||||
static m51(type) => "Unknown event \'${type}\'";
|
||||
|
||||
static m52(unreadEvents) => "${unreadEvents} unread messages";
|
||||
|
||||
static m53(unreadEvents, unreadChats) => "${unreadEvents} unread messages in ${unreadChats} chats";
|
||||
|
||||
static m54(username, count) => "${username} and ${count} others are typing...";
|
||||
|
||||
static m55(username, username2) => "${username} and ${username2} are typing...";
|
||||
|
||||
static m56(username) => "${username} is typing...";
|
||||
|
||||
static m57(username) => "${username} left the chat";
|
||||
|
||||
static m58(username, type) => "${username} sent a ${type} event";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function> {
|
||||
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Optional) Group name"),
|
||||
"About" : MessageLookupByLibrary.simpleMessage("About"),
|
||||
"Account" : MessageLookupByLibrary.simpleMessage("Account"),
|
||||
"Account informations" : MessageLookupByLibrary.simpleMessage("Account informations"),
|
||||
"Add a group description" : MessageLookupByLibrary.simpleMessage("Add a group description"),
|
||||
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"),
|
||||
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Already have an account?"),
|
||||
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Anyone can join"),
|
||||
"Archive" : MessageLookupByLibrary.simpleMessage("Archive"),
|
||||
"Archived Room" : MessageLookupByLibrary.simpleMessage("Archived Room"),
|
||||
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Are guest users allowed to join"),
|
||||
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Are you sure?"),
|
||||
"Authentication" : MessageLookupByLibrary.simpleMessage("Authentication"),
|
||||
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Avatar has been changed"),
|
||||
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Ban from chat"),
|
||||
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"),
|
||||
"Cancel" : MessageLookupByLibrary.simpleMessage("Cancel"),
|
||||
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Change the homeserver"),
|
||||
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Change the name of the group"),
|
||||
"Change the server" : MessageLookupByLibrary.simpleMessage("Change the server"),
|
||||
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Change wallpaper"),
|
||||
"Change your style" : MessageLookupByLibrary.simpleMessage("Change your style"),
|
||||
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"),
|
||||
"Chat details" : MessageLookupByLibrary.simpleMessage("Chat details"),
|
||||
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Choose a strong password"),
|
||||
"Choose a username" : MessageLookupByLibrary.simpleMessage("Choose a username"),
|
||||
"Close" : MessageLookupByLibrary.simpleMessage("Close"),
|
||||
"Confirm" : MessageLookupByLibrary.simpleMessage("Confirm"),
|
||||
"Connect" : MessageLookupByLibrary.simpleMessage("Connect"),
|
||||
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Connection attempt failed"),
|
||||
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Contact has been invited to the group"),
|
||||
"Content viewer" : MessageLookupByLibrary.simpleMessage("Content viewer"),
|
||||
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Copied to clipboard"),
|
||||
"Copy" : MessageLookupByLibrary.simpleMessage("Copy"),
|
||||
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Could not set avatar"),
|
||||
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Could not set displayname"),
|
||||
"Create" : MessageLookupByLibrary.simpleMessage("Create"),
|
||||
"Create account now" : MessageLookupByLibrary.simpleMessage("Create account now"),
|
||||
"Create new group" : MessageLookupByLibrary.simpleMessage("Create new group"),
|
||||
"Dark" : MessageLookupByLibrary.simpleMessage("Dark"),
|
||||
"Delete" : MessageLookupByLibrary.simpleMessage("Delete"),
|
||||
"Delete message" : MessageLookupByLibrary.simpleMessage("Delete message"),
|
||||
"Deny" : MessageLookupByLibrary.simpleMessage("Deny"),
|
||||
"Device" : MessageLookupByLibrary.simpleMessage("Device"),
|
||||
"Devices" : MessageLookupByLibrary.simpleMessage("Devices"),
|
||||
"Discard picture" : MessageLookupByLibrary.simpleMessage("Discard picture"),
|
||||
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Displayname has been changed"),
|
||||
"Donate" : MessageLookupByLibrary.simpleMessage("Donate"),
|
||||
"Download file" : MessageLookupByLibrary.simpleMessage("Download file"),
|
||||
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Edit Jitsi instance"),
|
||||
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Edit displayname"),
|
||||
"Empty chat" : MessageLookupByLibrary.simpleMessage("Empty chat"),
|
||||
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Encryption algorithm"),
|
||||
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Encryption is not enabled"),
|
||||
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("End to end encryption is currently in Beta! Use at your own risk!"),
|
||||
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("End-to-end encryption settings"),
|
||||
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Enter a group name"),
|
||||
"Enter a username" : MessageLookupByLibrary.simpleMessage("Enter a username"),
|
||||
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Enter your homeserver"),
|
||||
"File name" : MessageLookupByLibrary.simpleMessage("File name"),
|
||||
"File size" : MessageLookupByLibrary.simpleMessage("File size"),
|
||||
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"Forward" : MessageLookupByLibrary.simpleMessage("Forward"),
|
||||
"Friday" : MessageLookupByLibrary.simpleMessage("Friday"),
|
||||
"From joining" : MessageLookupByLibrary.simpleMessage("From joining"),
|
||||
"From the invitation" : MessageLookupByLibrary.simpleMessage("From the invitation"),
|
||||
"Group" : MessageLookupByLibrary.simpleMessage("Group"),
|
||||
"Group description" : MessageLookupByLibrary.simpleMessage("Group description"),
|
||||
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Group description has been changed"),
|
||||
"Group is public" : MessageLookupByLibrary.simpleMessage("Group is public"),
|
||||
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Guests are forbidden"),
|
||||
"Guests can join" : MessageLookupByLibrary.simpleMessage("Guests can join"),
|
||||
"Help" : MessageLookupByLibrary.simpleMessage("Help"),
|
||||
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Homeserver is not compatible"),
|
||||
"How are you today?" : MessageLookupByLibrary.simpleMessage("How are you today?"),
|
||||
"ID" : MessageLookupByLibrary.simpleMessage("ID"),
|
||||
"Identity" : MessageLookupByLibrary.simpleMessage("Identity"),
|
||||
"Invite contact" : MessageLookupByLibrary.simpleMessage("Invite contact"),
|
||||
"Invited" : MessageLookupByLibrary.simpleMessage("Invited"),
|
||||
"Invited users only" : MessageLookupByLibrary.simpleMessage("Invited users only"),
|
||||
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/" : MessageLookupByLibrary.simpleMessage("It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/"),
|
||||
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Kick from chat"),
|
||||
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Last seen IP"),
|
||||
"Leave" : MessageLookupByLibrary.simpleMessage("Leave"),
|
||||
"Left the chat" : MessageLookupByLibrary.simpleMessage("Left the chat"),
|
||||
"License" : MessageLookupByLibrary.simpleMessage("License"),
|
||||
"Light" : MessageLookupByLibrary.simpleMessage("Light"),
|
||||
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Loading... Please wait"),
|
||||
"Login" : MessageLookupByLibrary.simpleMessage("Login"),
|
||||
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"),
|
||||
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Make a moderator"),
|
||||
"Make an admin" : MessageLookupByLibrary.simpleMessage("Make an admin"),
|
||||
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Make sure the identifier is valid"),
|
||||
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Message will be removed for all participants"),
|
||||
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderator"),
|
||||
"Monday" : MessageLookupByLibrary.simpleMessage("Monday"),
|
||||
"Mute chat" : MessageLookupByLibrary.simpleMessage("Mute chat"),
|
||||
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("New message in FluffyChat"),
|
||||
"New private chat" : MessageLookupByLibrary.simpleMessage("New private chat"),
|
||||
"No permission" : MessageLookupByLibrary.simpleMessage("No permission"),
|
||||
"No rooms found..." : MessageLookupByLibrary.simpleMessage("No rooms found..."),
|
||||
"None" : MessageLookupByLibrary.simpleMessage("None"),
|
||||
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Not supported in web"),
|
||||
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Oops something went wrong..."),
|
||||
"Open camera" : MessageLookupByLibrary.simpleMessage("Open camera"),
|
||||
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Participating user devices"),
|
||||
"Password" : MessageLookupByLibrary.simpleMessage("Password"),
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now." : MessageLookupByLibrary.simpleMessage("Please be aware that you need Pantalaimon to use end-to-end encryption for now."),
|
||||
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Please choose a username"),
|
||||
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Please enter a matrix identifier"),
|
||||
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Please enter your password"),
|
||||
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Please enter your username"),
|
||||
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Public Rooms"),
|
||||
"Recording" : MessageLookupByLibrary.simpleMessage("Recording"),
|
||||
"Rejoin" : MessageLookupByLibrary.simpleMessage("Rejoin"),
|
||||
"Remove" : MessageLookupByLibrary.simpleMessage("Remove"),
|
||||
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Remove all other devices"),
|
||||
"Remove device" : MessageLookupByLibrary.simpleMessage("Remove device"),
|
||||
"Remove exile" : MessageLookupByLibrary.simpleMessage("Remove exile"),
|
||||
"Remove message" : MessageLookupByLibrary.simpleMessage("Remove message"),
|
||||
"Reply" : MessageLookupByLibrary.simpleMessage("Reply"),
|
||||
"Request permission" : MessageLookupByLibrary.simpleMessage("Request permission"),
|
||||
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Request to read older messages"),
|
||||
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Revoke all permissions"),
|
||||
"Saturday" : MessageLookupByLibrary.simpleMessage("Saturday"),
|
||||
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Search for a chat"),
|
||||
"Send" : MessageLookupByLibrary.simpleMessage("Send"),
|
||||
"Send a message" : MessageLookupByLibrary.simpleMessage("Send a message"),
|
||||
"Send file" : MessageLookupByLibrary.simpleMessage("Send file"),
|
||||
"Send image" : MessageLookupByLibrary.simpleMessage("Send image"),
|
||||
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Set a profile picture"),
|
||||
"Set group description" : MessageLookupByLibrary.simpleMessage("Set group description"),
|
||||
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Set invitation link"),
|
||||
"Set status" : MessageLookupByLibrary.simpleMessage("Set status"),
|
||||
"Settings" : MessageLookupByLibrary.simpleMessage("Settings"),
|
||||
"Share" : MessageLookupByLibrary.simpleMessage("Share"),
|
||||
"Sign up" : MessageLookupByLibrary.simpleMessage("Sign up"),
|
||||
"Source code" : MessageLookupByLibrary.simpleMessage("Source code"),
|
||||
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Start your first chat :-)"),
|
||||
"Sunday" : MessageLookupByLibrary.simpleMessage("Sunday"),
|
||||
"System" : MessageLookupByLibrary.simpleMessage("System"),
|
||||
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Tap to show menu"),
|
||||
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("The encryption has been corrupted"),
|
||||
"This room has been archived." : MessageLookupByLibrary.simpleMessage("This room has been archived."),
|
||||
"Thursday" : MessageLookupByLibrary.simpleMessage("Thursday"),
|
||||
"Try to send again" : MessageLookupByLibrary.simpleMessage("Try to send again"),
|
||||
"Tuesday" : MessageLookupByLibrary.simpleMessage("Tuesday"),
|
||||
"Unknown device" : MessageLookupByLibrary.simpleMessage("Unknown device"),
|
||||
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Unknown encryption algorithm"),
|
||||
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Unmute chat"),
|
||||
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Use Amoled compatible colors?"),
|
||||
"Username" : MessageLookupByLibrary.simpleMessage("Username"),
|
||||
"Verify" : MessageLookupByLibrary.simpleMessage("Verify"),
|
||||
"Video call" : MessageLookupByLibrary.simpleMessage("Video call"),
|
||||
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Visibility of the chat history"),
|
||||
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Visible for all participants"),
|
||||
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Visible for everyone"),
|
||||
"Voice message" : MessageLookupByLibrary.simpleMessage("Voice message"),
|
||||
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Wallpaper"),
|
||||
"Wednesday" : MessageLookupByLibrary.simpleMessage("Wednesday"),
|
||||
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Welcome to the cutest instant messenger in the matrix network."),
|
||||
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Who is allowed to join this group"),
|
||||
"Write a message..." : MessageLookupByLibrary.simpleMessage("Write a message..."),
|
||||
"Yes" : MessageLookupByLibrary.simpleMessage("Yes"),
|
||||
"You" : MessageLookupByLibrary.simpleMessage("You"),
|
||||
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("You are invited to this chat"),
|
||||
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("You are no longer participating in this chat"),
|
||||
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("You cannot invite yourself"),
|
||||
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("You have been banned from this chat"),
|
||||
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("You won\'t be able to disable the encryption anymore. Are you sure?"),
|
||||
"Your own username" : MessageLookupByLibrary.simpleMessage("Your own username"),
|
||||
"acceptedTheInvitation" : m0,
|
||||
"activatedEndToEndEncryption" : m1,
|
||||
"alias" : MessageLookupByLibrary.simpleMessage("alias"),
|
||||
"bannedUser" : m2,
|
||||
"byDefaultYouWillBeConnectedTo" : m3,
|
||||
"changedTheChatAvatar" : m4,
|
||||
"changedTheChatDescriptionTo" : m5,
|
||||
"changedTheChatNameTo" : m6,
|
||||
"changedTheChatPermissions" : m7,
|
||||
"changedTheDisplaynameTo" : m8,
|
||||
"changedTheGuestAccessRules" : m9,
|
||||
"changedTheGuestAccessRulesTo" : m10,
|
||||
"changedTheHistoryVisibility" : m11,
|
||||
"changedTheHistoryVisibilityTo" : m12,
|
||||
"changedTheJoinRules" : m13,
|
||||
"changedTheJoinRulesTo" : m14,
|
||||
"changedTheProfileAvatar" : m15,
|
||||
"changedTheRoomAliases" : m16,
|
||||
"changedTheRoomInvitationLink" : m17,
|
||||
"couldNotDecryptMessage" : m18,
|
||||
"countParticipants" : m19,
|
||||
"createdTheChat" : m20,
|
||||
"dateAndTimeOfDay" : m21,
|
||||
"dateWithYear" : m22,
|
||||
"dateWithoutYear" : m23,
|
||||
"groupWith" : m24,
|
||||
"hasWithdrawnTheInvitationFor" : m25,
|
||||
"inviteContactToGroup" : m26,
|
||||
"inviteText" : m27,
|
||||
"invitedUser" : m28,
|
||||
"is typing..." : MessageLookupByLibrary.simpleMessage("is typing..."),
|
||||
"joinedTheChat" : m29,
|
||||
"kicked" : m30,
|
||||
"kickedAndBanned" : m31,
|
||||
"lastActiveAgo" : m32,
|
||||
"loadCountMoreParticipants" : m33,
|
||||
"logInTo" : m34,
|
||||
"numberSelected" : m35,
|
||||
"play" : m36,
|
||||
"redactedAnEvent" : m37,
|
||||
"rejectedTheInvitation" : m38,
|
||||
"removedBy" : m39,
|
||||
"seenByUser" : m40,
|
||||
"seenByUserAndCountOthers" : m41,
|
||||
"seenByUserAndUser" : m42,
|
||||
"sentAFile" : m43,
|
||||
"sentAPicture" : m44,
|
||||
"sentASticker" : m45,
|
||||
"sentAVideo" : m46,
|
||||
"sentAnAudio" : m47,
|
||||
"sharedTheLocation" : m48,
|
||||
"timeOfDay" : m49,
|
||||
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser" : m50,
|
||||
"unknownEvent" : m51,
|
||||
"unreadMessages" : m52,
|
||||
"unreadMessagesInChats" : m53,
|
||||
"userAndOthersAreTyping" : m54,
|
||||
"userAndUserAreTyping" : m55,
|
||||
"userIsTyping" : m56,
|
||||
"userLeftTheChat" : m57,
|
||||
"userSentUnknownEvent" : m58
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue