From 54570bce6e145ece7dcf34caf9692333adfb1507 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Thu, 22 Jul 2021 17:03:59 +0200 Subject: [PATCH] fix(@desktop/translation): update translation fixes #2993 --- .../ActivityCenterMessageComponent.qml | 3 +- .../ChatComponents/ChatRequestMessage.qml | 9 +- .../CommunityComponents/CommunitiesPopup.qml | 12 +- .../CommunityDetailPopup.qml | 36 +- .../CommunityProfilePopup.qml | 9 +- ...CommunityProfilePopupInviteFriendsView.qml | 6 +- .../CommunityProfilePopupMembersList.qml | 3 +- .../CommunityProfilePopupOverview.qml | 12 +- .../CreateChannelPopup.qml | 3 +- .../CreateCommunityPopup.qml | 21 +- .../MembershipRequestsPopup.qml | 3 +- .../MembershipRequirementPopup.qml | 27 +- .../TransferOwnershipPopup.qml | 12 +- .../Chat/components/ChatContextMenu.qml | 3 +- .../Profile/Sections/AdvancedContainer.qml | 15 +- .../Profile/Sections/BloomSelectorButton.qml | 3 +- ui/app/AppMain.qml | 3 +- ui/i18n/base.qm | Bin 89006 -> 89059 bytes ui/i18n/base.ts | 696 +++++++++--------- ui/i18n/qml_ar.qm | Bin 89225 -> 89639 bytes ui/i18n/qml_ar.ts | 678 ++++++++--------- ui/i18n/qml_de.qm | Bin 94284 -> 94700 bytes ui/i18n/qml_de.ts | 678 ++++++++--------- ui/i18n/qml_en.qm | Bin 96589 -> 97685 bytes ui/i18n/qml_en.ts | 660 +++++++++-------- ui/i18n/qml_es.qm | Bin 93102 -> 93518 bytes ui/i18n/qml_es.ts | 678 ++++++++--------- ui/i18n/qml_fil.qm | Bin 94634 -> 95056 bytes ui/i18n/qml_fil.ts | 678 ++++++++--------- ui/i18n/qml_fr.qm | Bin 94222 -> 94646 bytes ui/i18n/qml_fr.ts | 678 ++++++++--------- ui/i18n/qml_id.qm | Bin 91975 -> 92190 bytes ui/i18n/qml_id.ts | 684 +++++++++-------- ui/i18n/qml_it.qm | Bin 92738 -> 93156 bytes ui/i18n/qml_it.ts | 678 ++++++++--------- ui/i18n/qml_ko.qm | Bin 83011 -> 83413 bytes ui/i18n/qml_ko.ts | 678 ++++++++--------- ui/i18n/qml_pt_BR.qm | Bin 93196 -> 93610 bytes ui/i18n/qml_pt_BR.ts | 678 ++++++++--------- ui/i18n/qml_ru.qm | Bin 93153 -> 93569 bytes ui/i18n/qml_ru.ts | 678 ++++++++--------- ui/i18n/qml_tr.qm | Bin 91547 -> 91961 bytes ui/i18n/qml_tr.ts | 678 ++++++++--------- ui/i18n/qml_ur.qm | Bin 89154 -> 89369 bytes ui/i18n/qml_ur.ts | 684 +++++++++-------- ui/i18n/qml_zh.qm | Bin 80275 -> 80675 bytes ui/i18n/qml_zh.ts | 678 ++++++++--------- ui/i18n/qml_zh_TW.qm | Bin 80415 -> 80815 bytes ui/i18n/qml_zh_TW.ts | 678 ++++++++--------- ui/imports/Utils.qml | 21 +- ui/shared/GasSelector.qml | 4 +- 51 files changed, 5577 insertions(+), 5488 deletions(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ActivityCenterMessageComponent.qml b/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ActivityCenterMessageComponent.qml index 0b586f6760..035a0d5cb9 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ActivityCenterMessageComponent.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ActivityCenterMessageComponent.qml @@ -42,7 +42,8 @@ Item { StatusToolTip { visible: markReadBtn.hovered - text: qsTr("Mark as Read") + //% "Mark as Read" + text: qsTrId("mark-as-read") orientation: "left" x: - width - Style.current.padding y: markReadBtn.height / 2 - height / 2 + 4 diff --git a/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatRequestMessage.qml b/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatRequestMessage.qml index 507f57507c..6171d568b0 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatRequestMessage.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatRequestMessage.qml @@ -18,9 +18,12 @@ Item { StyledText { id: contactText1 - text: qsTr("You need to be mutual contacts with this person for them to receive your messages") -// text: !isContact ? qsTr("You need to be mutual contacts with this person for them to receive your messages") : -// qsTr("Waiting for %1 to accept your request").arg(Utils.removeStatusEns(chatsModel.channelView.activeChannel.name)) + //% "You need to be mutual contacts with this person for them to receive your messages" + text: qsTrId("you-need-to-be-mutual-contacts-with-this-person-for-them-to-receive-your-messages") + //% "You need to be mutual contacts with this person for them to receive your messages" + // text: !isContact ? qsTrId("you-need-to-be-mutual-contacts-with-this-person-for-them-to-receive-your-messages") : + //% "Waiting for %1 to accept your request" + // qsTrId("waiting-for--1-to-accept-your-request").arg(Utils.removeStatusEns(chatsModel.channelView.activeChannel.name)) anchors.top: waveImg.bottom horizontalAlignment: Text.AlignHCenter wrapMode: Text.WordWrap diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunitiesPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunitiesPopup.qml index 48afd88839..7e70173f1e 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunitiesPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunitiesPopup.qml @@ -21,7 +21,8 @@ StatusModal { searchBox.forceActiveFocus(Qt.MouseFocusReason) } - header.title: qsTr("Communities") + //% "Communities" + header.title: qsTrId("communities") headerActionButton: StatusFlatRoundButton { type: StatusFlatRoundButton.Type.Secondary width: 32 @@ -34,7 +35,8 @@ StatusModal { id: contextMenu StatusMenuItem { icon.name: "download" - text: qsTr("Access existing community") + //% "Access existing community" + text: qsTrId("access-existing-community") onTriggered: openPopup(importCommunitiesPopupComponent) } } @@ -113,7 +115,8 @@ StatusModal { height: visible ? implicitHeight : 0 anchors.horizontalCenter: parent.horizontalCenter title: name - subTitle: qsTr("%1 members").arg(nbMembers) + //% "%1 members" + subTitle: qsTrId("-1-members").arg(nbMembers) image.source: thumbnailImage icon.isLetterIdenticon: !!!thumbnailImage icon.background.color: communityColor @@ -134,7 +137,8 @@ StatusModal { rightButtons: [ StatusButton { - text: qsTr("Create a community") + //% "Create a community" + text: qsTrId("create-community") onClicked: { openPopup(createCommunitiesPopupComponent) popup.close() diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityDetailPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityDetailPopup.qml index 360bf0b88e..02b606d505 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityDetailPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityDetailPopup.qml @@ -32,20 +32,24 @@ StatusModal { let subTitle = "" switch(access) { case Constants.communityChatPublicAccess: - subTitle = qsTr("Public community"); + //% "Public community" + subTitle = qsTrId("public-community"); break; case Constants.communityChatInvitationOnlyAccess: - subTitle = qsTr("Invitation only community"); + //% "Invitation only community" + subTitle = qsTrId("invitation-only-community"); break; case Constants.communityChatOnRequestAccess: - subTitle = qsTr("On request community"); + //% "On request community" + subTitle = qsTrId("on-request-community"); break; default: subTitle = qsTrId("Unknown community"); break; } if (ensOnly) { - subTitle += qsTr(" - ENS only") + //% " - ENS only" + subTitle += qsTrId("---ens-only") } return subTitle } @@ -79,7 +83,8 @@ StatusModal { } StatusBaseText { - text: qsTr("%1 members").arg(nbMembers) + //% "%1 members" + text: qsTrId("-1-members").arg(nbMembers) font.pixelSize: 15 font.weight: Font.Medium color: Theme.palette.directColor1 @@ -99,7 +104,8 @@ StatusModal { width: parent.width - 32 height: 34 StatusBaseText { - text: qsTr("Channels") + //% "Channels" + text: qsTrId("channels") anchors.bottom: parent.bottom anchors.bottomMargin: 4 font.pixelSize: 15 @@ -154,20 +160,26 @@ StatusModal { } text: { if (popup.ensOnly && !profileModel.profile.ensVerified) { - return qsTr("Membership requires an ENS username") + //% "Membership requires an ENS username" + return qsTrId("membership-requires-an-ens-username") } if (popup.canJoin) { - return qsTr("Join ‘%1’").arg(popup.name); + //% "Join ‘%1’" + return qsTrId("join---1-").arg(popup.name); } if (isPendingRequest) { //% "Pending" return qsTrId("invite-chat-pending") } switch(popup.access) { - case Constants.communityChatPublicAccess: return qsTr("Join ‘%1’").arg(popup.name); - case Constants.communityChatInvitationOnlyAccess: return qsTr("You need to be invited"); - case Constants.communityChatOnRequestAccess: return qsTr("Request to join ‘%1’").arg(popup.name); - default: return qsTr("Unknown community"); + //% "Join ‘%1’" + case Constants.communityChatPublicAccess: return qsTrId("join---1-").arg(popup.name); + //% "You need to be invited" + case Constants.communityChatInvitationOnlyAccess: return qsTrId("you-need-to-be-invited"); + //% "Request to join ‘%1’" + case Constants.communityChatOnRequestAccess: return qsTrId("request-to-join---1-").arg(popup.name); + //% "Unknown community" + default: return qsTrId("unknown-community"); } } enabled: { diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopup.qml index 60fbc4fbcb..8429e06d89 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopup.qml @@ -83,7 +83,8 @@ StatusModal { id: membersList CommunityProfilePopupMembersList { width: stack.width - headerTitle: qsTr("Members") + //% "Members" + headerTitle: qsTrId("members-label") headerSubtitle: popup.community.nbMembers.toString() community: popup.community onInviteButtonClicked: popup.contentComponent.push(inviteFriendsView) @@ -94,7 +95,8 @@ StatusModal { id: inviteFriendsView CommunityProfilePopupInviteFriendsView { width: stack.width - headerTitle: qsTr("Invite friends") + //% "Invite friends" + headerTitle: qsTrId("invite-friends") community: popup.community contactListSearch.chatKey.text: "" @@ -124,7 +126,8 @@ StatusModal { rightButtons: [ StatusButton { - text: qsTr("Invite") + //% "Invite" + text: qsTrId("community-invite-title") visible: popup.contentComponent.depth > 2 height: !visible ? 0 : implicitHeight enabled: popup.contentComponent.currentItem.contactListSearch !== undefined && popup.contentComponent.currentItem.contactListSearch.pubKeys.length > 0 diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupInviteFriendsView.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupInviteFriendsView.qml index 52043cd7d0..c3e62e5c4f 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupInviteFriendsView.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupInviteFriendsView.qml @@ -30,9 +30,11 @@ Column { } StatusDescriptionListItem { - title: qsTr("Share community") + //% "Share community" + title: qsTrId("share-community") subTitle: `${Constants.communityLinkPrefix}${root.community && root.community.id.substring(0, 4)}...${root.community && root.community.id.substring(root.community.id.length -2)}` - tooltip.text: qsTr("Copy to clipboard") + //% "Copy to clipboard" + tooltip.text: qsTrId("copy-to-clipboard") icon.name: "copy" iconButton.onClicked: { let link = `${Constants.communityLinkPrefix}${root.community.id}` diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml index 85857124ed..8e414867e2 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml @@ -46,7 +46,8 @@ Item { id: inviteButton anchors.horizontalCenter: parent.horizontalCenter visible: root.community.admin || root.community.isAdmin - title: qsTr("Invite People") + //% "Invite People" + title: qsTrId("invite-people") icon.name: "share-ios" type: StatusListItem.Type.Secondary sensor.onClicked: root.inviteButtonClicked() diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml index a06596c29a..e3f3e67fcd 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupOverview.qml @@ -46,9 +46,11 @@ Column { } StatusDescriptionListItem { - title: qsTr("Share community") + //% "Share community" + title: qsTrId("share-community") subTitle: `${Constants.communityLinkPrefix}${root.community.id.substring(0, 4)}...${root.community.id.substring(root.community.id.length -2)}` - tooltip.text: qsTr("Copy to clipboard") + //% "Copy to clipboard" + tooltip.text: qsTrId("copy-to-clipboard") icon.name: "copy" iconButton.onClicked: { let link = `${Constants.communityLinkPrefix}${root.community.id}` @@ -111,7 +113,8 @@ Column { StatusListItem { anchors.horizontalCenter: parent.horizontalCenter visible: root.community.isAdmin || root.community.admin - title: qsTr("Edit community") + //% "Edit community" + title: qsTrId("edit-community") icon.name: "edit" type: StatusListItem.Type.Secondary sensor.onClicked: root.editButtonClicked() @@ -120,7 +123,8 @@ Column { StatusListItem { anchors.horizontalCenter: parent.horizontalCenter visible: root.community.isAdmin || root.community.admin - title: qsTr("Transfer ownership") + //% "Transfer ownership" + title: qsTrId("transfer-ownership") icon.name: "exchange" type: StatusListItem.Type.Secondary sensor.onClicked: root.transferOwnershipButtonClicked() diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CreateChannelPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CreateChannelPopup.qml index dccfd9663e..99753412d5 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CreateChannelPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CreateChannelPopup.qml @@ -31,7 +31,8 @@ StatusModal { property Component pinnedMessagesPopupComponent - header.title: qsTr("New channel") + //% "New channel" + header.title: qsTrId("create-channel-title") onOpened: { contentComponent.channelName.text = "" diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml index 2c4ffc4e8f..6a5254be5e 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml @@ -110,7 +110,8 @@ StatusModal { onTextEdited: { validationError = Utils.validateAndReturnError(text, communityNameValidator, - qsTr("community name"), + //% "community name" + qsTrId("community-name"), maxCommunityNameLength) } } @@ -126,7 +127,8 @@ StatusModal { StyledTextArea { id: descriptionTextArea - label: qsTr("Description") + //% "Description" + label: qsTrId("description") //% "What your community is about" placeholderText: qsTrId("what-your-community-is-about") @@ -142,7 +144,8 @@ StatusModal { validationError = Utils.validateAndReturnError(text, communityDescValidator, - qsTr("community decription"), + //% "community decription" + qsTrId("community-decription"), maxCommunityDescLength) } } @@ -273,7 +276,8 @@ StatusModal { } StatusBaseText { - text: qsTr("Community colour") + //% "Community colour" + text: qsTrId("community-color") font.pixelSize: 13 color: Theme.palette.directColor1 anchors.left: parent.left @@ -297,7 +301,8 @@ StatusModal { contentColor: colorDialog.colorSelected ? Theme.palette.indirectColor1 : Theme.palette.baseColor1 text: colorDialog.colorSelected ? colorDialog.color.toString().toUpperCase() : - qsTr("Pick a color") + //% "Pick a color" + qsTrId("pick-a-color") onClicked: colorDialog.open(); onTextChanged: { @@ -333,7 +338,8 @@ StatusModal { StatusListItem { anchors.horizontalCenter: parent.horizontalCenter visible: !isEdit - title: qsTr("Membership requirement") + //% "Membership requirement" + title: qsTrId("membership-title") label: { switch (membershipRequirementSettingPopup.checkedMembership) { //% "Require invite from another member" @@ -361,7 +367,8 @@ StatusModal { font.pixelSize: 13 color: Theme.palette.baseColor1 width: parent.width * 0.78 - text: qsTr("You can require new members to meet certain criteria before they can join. This can be changed at any time") + //% "You can require new members to meet certain criteria before they can join. This can be changed at any time" + text: qsTrId("membership-none-placeholder") anchors.left: parent.left anchors.leftMargin: 16 } diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequestsPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequestsPopup.qml index 626ceb9115..b822a20e7b 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequestsPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequestsPopup.qml @@ -17,7 +17,8 @@ StatusModal { contentComponent.errorText.text = "" } - header.title: qsTr("Membership requests") + //% "Membership requests" + header.title: qsTrId("membership-requests") header.subTitle: contentComponent.membershipRequestList.count content: Column { diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequirementPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequirementPopup.qml index e177866d92..cd26b3015b 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequirementPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/MembershipRequirementPopup.qml @@ -14,7 +14,8 @@ StatusModal { id: popup - header.title: qsTr("Membership requirement") + //% "Membership requirement" + header.title: qsTrId("membership-title") ButtonGroup { id: membershipRequirementGroup @@ -31,7 +32,8 @@ StatusModal { StatusListItem { anchors.horizontalCenter: parent.horizontalCenter - title: qsTr("Require approval") + //% "Require approval" + title: qsTrId("membership-approval") sensor.onClicked: requestAccessRadio.checked = true components: [ StatusRadioButton { @@ -52,14 +54,16 @@ StatusModal { font.pixelSize: 13 color: Theme.palette.baseColor1 width: parent.width * 0.78 - text: qsTr("Your community is free to join, but new members are required to be approved by the community creator first") + //% "Your community is free to join, but new members are required to be approved by the community creator first" + text: qsTrId("membership-approval-description") anchors.left: parent.left anchors.leftMargin: 32 } StatusListItem { anchors.horizontalCenter: parent.horizontalCenter - title: qsTr("Require invite from another member") + //% "Require invite from another member" + title: qsTrId("membership-invite") sensor.onClicked: inviteOnlyRadio.checked = true components: [ StatusRadioButton { @@ -80,7 +84,8 @@ StatusModal { font.pixelSize: 13 color: Theme.palette.baseColor1 width: parent.width * 0.78 - text: qsTr("Your community can only be joined by an invitation from existing community members") + //% "Your community can only be joined by an invitation from existing community members" + text: qsTrId("membership-invite-description") anchors.left: parent.left anchors.leftMargin: 32 } @@ -88,7 +93,8 @@ StatusModal { /* TODO: add functionality to configure this setting */ /* StatusListItem { */ /* anchors.horizontalCenter: parent.horizontalCenter */ - /* title: qsTr("Require ENS username") */ + //% "Require ENS username" + /* title: qsTrId("membership-ens") */ /* components: [ */ /* StatusRadioButton { */ /* checked: //... */ @@ -104,14 +110,16 @@ StatusModal { /* font.pixelSize: 13 */ /* color: Theme.palette.baseColor1 */ /* width: parent.width * 0.78 */ - /* text: qsTr("Your community requires an ENS username to be able to join") */ + //% "Your community requires an ENS username to be able to join" + /* text: qsTrId("membership-ens-description") */ /* anchors.left: parent.left */ /* anchors.leftMargin: 32 */ /* } */ StatusListItem { anchors.horizontalCenter: parent.horizontalCenter - title: qsTr("No requirement") + //% "No requirement" + title: qsTrId("membership-free") sensor.onClicked: publicRadio.checked = true components: [ StatusRadioButton { @@ -132,7 +140,8 @@ StatusModal { font.pixelSize: 13 color: Theme.palette.baseColor1 width: parent.width * 0.78 - text: qsTr("Your community is free for anyone to join") + //% "Your community is free for anyone to join" + text: qsTrId("membership-free-description") anchors.left: parent.left anchors.leftMargin: 32 } diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/TransferOwnershipPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/TransferOwnershipPopup.qml index 93c9d31b58..d3c62478c6 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/TransferOwnershipPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/TransferOwnershipPopup.qml @@ -14,7 +14,8 @@ StatusModal { property string privateKey - header.title: qsTr("Transfer ownership") + //% "Transfer ownership" + header.title: qsTrId("transfer-ownership") onClosed: { popup.destroy(); @@ -38,7 +39,8 @@ StatusModal { id: pKeyInput width: parent.width - label: qsTr("Community private key") + //% "Community private key" + label: qsTrId("community-key") text: elidedPkey textField.onFocusChanged: { if (textField.focus) { @@ -54,7 +56,8 @@ StatusModal { StatusBaseText { id: infoText1 - text: qsTr("You should keep it safe and only share it with people you trust to take ownership of your community") + //% "You should keep it safe and only share it with people you trust to take ownership of your community" + text: qsTrId("you-should-keep-it-safe-and-only-share-it-with-people-you-trust-to-take-ownership-of-your-community") wrapMode: Text.WordWrap width: parent.width font.pixelSize: 13 @@ -63,7 +66,8 @@ StatusModal { StatusBaseText { id: infoText2 - text: qsTr("You can also use this key to import your community on another device") + //% "You can also use this key to import your community on another device" + text: qsTrId("you-can-also-use-this-key-to-import-your-community-on-another-device") wrapMode: Text.WordWrap width: parent.width font.pixelSize: 13 diff --git a/ui/app/AppLayouts/Chat/components/ChatContextMenu.qml b/ui/app/AppLayouts/Chat/components/ChatContextMenu.qml index 16f15d28fd..f3bd2bf943 100644 --- a/ui/app/AppLayouts/Chat/components/ChatContextMenu.qml +++ b/ui/app/AppLayouts/Chat/components/ChatContextMenu.qml @@ -56,7 +56,8 @@ StatusPopupMenu { Action { enabled: profileModel.fleets.fleet == Constants.waku_prod || profileModel.fleets.fleet == Constants.waku_test - text: qsTr("Test WakuV2 - requestAllHistoricMessages") + //% "Test WakuV2 - requestAllHistoricMessages" + text: qsTrId("test-wakuv2---requestallhistoricmessages") onTriggered: chatsModel.requestAllHistoricMessages() } diff --git a/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml b/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml index ae6bf3c055..c9638d03b2 100644 --- a/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml @@ -152,7 +152,8 @@ Item { } StatusSectionHeadline { - text: qsTr("Bloom filter level") + //% "Bloom filter level" + text: qsTrId("bloom-filter-level") topPadding: Style.current.bigPadding bottomPadding: Style.current.padding } @@ -168,7 +169,8 @@ Item { id: confirmDialog //% "Warning!" title: qsTrId("close-app-title") - confirmationText: qsTr("The account will be logged out. When you login again, the selected mode will be enabled") + //% "The account will be logged out. When you login again, the selected mode will be enabled" + confirmationText: qsTrId("the-account-will-be-logged-out--when-you-login-again--the-selected-mode-will-be-enabled") onConfirmButtonClicked: { nodeModel.setBloomLevel(mode) } @@ -191,7 +193,8 @@ Item { id: btnBloomLight buttonGroup: bloomGroup checkedByDefault: nodeModel.bloomLevel == "light" - btnText: qsTr("Light Node") + //% "Light Node" + btnText: qsTrId("light-node") onToggled: { if (nodeModel.bloomLevel != "light") { openPopup(bloomConfirmationDialogComponent, {mode: "light"}) @@ -205,7 +208,8 @@ Item { id: btnBloomNormal buttonGroup: bloomGroup checkedByDefault: nodeModel.bloomLevel == "normal" - btnText: qsTr("Normal") + //% "Normal" + btnText: qsTrId("normal") onToggled: { if (nodeModel.bloomLevel != "normal") { openPopup(bloomConfirmationDialogComponent, {mode: "normal"}) @@ -219,7 +223,8 @@ Item { id: btnBloomFull buttonGroup: bloomGroup checkedByDefault: nodeModel.bloomLevel == "full" - btnText: qsTr("Full Node") + //% "Full Node" + btnText: qsTrId("full-node") onToggled: { if (nodeModel.bloomLevel != "full") { openPopup(bloomConfirmationDialogComponent, {mode: "full"}) diff --git a/ui/app/AppLayouts/Profile/Sections/BloomSelectorButton.qml b/ui/app/AppLayouts/Profile/Sections/BloomSelectorButton.qml index 9d220e205d..2fb7b61600 100644 --- a/ui/app/AppLayouts/Profile/Sections/BloomSelectorButton.qml +++ b/ui/app/AppLayouts/Profile/Sections/BloomSelectorButton.qml @@ -8,7 +8,8 @@ import "../../../../shared/status" Rectangle { property var buttonGroup - property string btnText: qsTr("TODO") + //% "TODO" + property string btnText: qsTrId("todo") property bool hovered: false property bool checkedByDefault: false diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index cf572c530b..533af158c9 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -179,7 +179,8 @@ StatusAppLayout { StatusMenuItem { enabled: chatsModel.communities.observedCommunity.admin - text: qsTr("Edit Community") + //% "Edit Community" + text: qsTrId("edit-community") icon.name: "edit" onTriggered: openPopup(editCommunityPopup, {community: chatsModel.communities.observedCommunity}) } diff --git a/ui/i18n/base.qm b/ui/i18n/base.qm index 19f40925c8d4a0971211f4fe6234f00f062d5217..f5c2db80d6ea8fad254e7024831e29fdd4f09d06 100644 GIT binary patch delta 7890 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 Pk8X@#eoJp=rOE#R&|pu> delta 7887 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 - + Edit @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password - - - Contact request pending - - - + Connected - + Disconnected - + This user has been blocked. - + - + Type a message. - - - + + + - + Send - + Request Address - - + + Request - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? - - + + Add reaction - + Reply - + More @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -838,22 +830,22 @@ Do you wish to override the security check and continue? - + Transaction request - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -895,8 +887,8 @@ Do you wish to override the security check and continue? - - + + Pending @@ -946,19 +938,19 @@ Do you wish to override the security check and continue? - - + + You - + Clear history Clear History - + Are you sure you want to leave this chat? @@ -985,193 +977,176 @@ Do you wish to override the security check and continue? - + Search for communities or topics - + Create a community - - - - + 1 member - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only - - - - - Chats + + - ENS only + - ENS Only - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - - - Members - - - - + + Create category - - + + Invite people Invite People - + - + Membership requests - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications - - + + Edit community - - + + Create channel - + Leave community @@ -1188,7 +1163,7 @@ Do you wish to override the security check and continue? - + Manage community @@ -1198,47 +1173,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - + + + New channel - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name - + Describe the channel - + Pinned messages - + channel description Channel description @@ -1260,14 +1235,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create @@ -1282,157 +1258,144 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - - - Name your community - - - + A catchy name - - - Give it a short description - - - + What your community is about - - Community color + + Community colour + Community color - + Pick a color - - - Please choose a color - - - - + + Membership requirement - - + + Require invite from another member - - + + Require approval - + + No requirement - + You can require new members to meet certain criteria before they can join. This can be changed at any time - + Save - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members - - + + Invite friends - + Invite - + Invite - + Chat - + Community imported - + Importing community is in progress @@ -1452,13 +1415,8 @@ Do you wish to override the security check and continue? Join public chat - - - No messages - - - + No search results @@ -1482,36 +1440,41 @@ Do you wish to override the security check and continue? View Group + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat - - + + Leave chat @@ -1542,7 +1505,7 @@ Do you wish to override the security check and continue? - + ↓ Fetch messages Fetch Messages @@ -1649,35 +1612,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message - + Reply to @@ -1788,7 +1751,7 @@ Do you wish to override the security check and continue? - + Add to contacts @@ -1809,14 +1772,14 @@ Do you wish to override the security check and continue? - + Pinned by %1 - + - + @@ -1831,7 +1794,7 @@ Do you wish to override the security check and continue? - + Profile @@ -1886,7 +1849,7 @@ Do you wish to override the security check and continue? - + Wallet @@ -1905,14 +1868,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2239,7 +2217,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2247,13 +2225,13 @@ Do you wish to override the security check and continue? - + Key - + Back @@ -2329,151 +2307,151 @@ Do you wish to override the security check and continue? - + ✓ Username available! - + Continuing will connect this username with your chat key. - + Username doesn’t belong to you :( - + Username already taken :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. - + Custom domain - + I want a stateofus.eth domain - + I own a name on another domain - - + + Connect username with your pubkey - + Terms of name registration - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. - + Your address(es) will be publicly associated with your ENS name. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. - + These terms are guaranteed by the smart contract logic at addresses: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT - + Deposit - + Not enough SNT - + Register @@ -2573,14 +2551,14 @@ Do you wish to override the security check and continue? - - + + Warning! - + Change fleet to %1 @@ -3406,9 +3384,9 @@ packs will not need to be re-purchased. Transaction Details - - - 9999 Confirmations + + + @@ -3478,7 +3456,8 @@ packs will not need to be re-purchased. - + + Description @@ -3879,42 +3858,42 @@ packs will not need to be re-purchased. - + View Community - + Browser - + Timeline - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3924,12 +3903,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4014,7 +3993,7 @@ Seperate words by a single space. - + I understand @@ -4090,7 +4069,7 @@ Seperate words by a single space. - + Paste @@ -4123,43 +4102,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4248,12 +4229,12 @@ Assets won’t be sent yet. - + Optimal - + Gwei @@ -4263,18 +4244,18 @@ Assets won’t be sent yet. - + Copied - + Pasted - - + + Copy to clipboard Copy @@ -4295,7 +4276,7 @@ Assets won’t be sent yet. - + Contact @@ -4367,52 +4348,52 @@ Assets won’t be sent yet. - + Public chat - + Not a contact - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message - + Bold - + Italic - + Strikethrough - + Code @@ -4452,12 +4433,12 @@ Assets won’t be sent yet. - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4507,7 +4488,7 @@ Assets won’t be sent yet. - + Show more @@ -4533,7 +4514,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4560,17 +4541,13 @@ Assets won’t be sent yet. - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4581,13 +4558,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key @@ -4607,12 +4584,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up @@ -4622,37 +4599,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first - + Your community can only be joined by an invitation from existing community members - + Your community is free for anyone to join - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4766,5 +4743,10 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + diff --git a/ui/i18n/qml_ar.qm b/ui/i18n/qml_ar.qm index 9515c7c897d02265b7af290eb389fe51ec538b87..7bb88e88936520438ca5348cef343722798b6f5f 100644 GIT binary patch delta 8085 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 delta 7821 zcmYLu30zHS`2Tb6Irp4%&)rZdsicjfM3yNrT11vID%okdEu@T!$>5rllx&kGTeixQ z2$f~*%2Fn>gc(^UTh@`7O8me5KfmAn`0&&{=Y8Mj`99nCdGGF%^7P~KwT60;h(d@Y zGsrNaL4zT6M3ZA6@o!fj$T>v&-b2nMx?TerPt;&R#D64Oe}G7sLUhFwG8E6tAd87n zMMAzN#?BwI5pot$pEj)BNHi1sE4~s%E+f(#bifb!M4d+vMfE1Ku!qEf4vQg|V9^lh z@e5JfcQ{{-^|?epRuUB)gdR9#-wnugqQgx@^Relj(?ma;LxB{cMVZ8yX5x@`MN*-p z3-)DqTb(#|ILP|e+%(jv3Rf*@dX7$UIoPOSxGcL9C8O_ zD)B{=h=S6IKQf$XBG#SYfLIFg*C11$5?|v@w4y8VcY#LwdgA|_MwH=B{EH1lYbuC; za~v{{_;+{pMC;@v7(w%$(?~FLCCXzUv2mUi3EiMr!3`38p#ASQB#azDbPCVM0Q&Py zBuv12moJkL0jsYKB_R_EJaQ%hmQh0t2|MIOpC6KNR!2<7auTjxBF20LsW0XeHRY4$ zu|ALJfR425pyAFX)Tu6rNIj7Z-qqvx17v#x@v+&QdS?DWlq`_FHK0{^lGAF$OTYqh z=9A#lMCxmenAlZEeaFQT+0>Iu3S21Mq5=G3B5^&reZD}9^B!`yZ-Q%_$$iicD59qC z^>)y7*aGtS{~OFA&skAKU!Rd@IW(MdhP)cy6Mab~Zy!J@Zz1o60Yom#X!zfOMALTB zs1_jNYC`@K;Zv8(6dasOjFkyZ=3%i#2uNa#b{u;YgZXw}_a|cPPpQv14gS z`lz42K;yF%JpfSmHKphmB}5(`6w|8_iXEbub7P6ImQze6vLp2z&FNJE-|A>iHV(`P zq1Ypxh)!>!xr1tnavspUHn?Vw1I4d^uMa$<`08Aux^I*io()%Rr};_AMBdkFentUN zt%08AXX3%_j+7KyPW0j_E!?x7sAUoTJUJau?W9E$z7k_{ky4MnB-+tJneI?9X9cb8 zy9$b3r?s&_>g;REDfLAbHBmt*vVt+t}` z8@3VI>&xk}J1k0@M^F4+kYaxH>MvNd;~2dSfaag<>7RDj?CwO(;&q}6BdKLce`2~1 zWw=*xUDzW=otR2A{9ne@4f$L(j_EmiD=}ts82h4|2ue9K;D9aBJRLKzGZg)67c*pt zH!;0y7!OrAQZpl!8M#bLbbJ;wDjF{?y2}J+)Ik9sX67f<13z0Pf?Yz)_g|PfJRq+Q zVPYRWCEB`=NqF=pk>eO<{#qQo(TZ6(yqbtx&ZHS2_@w?!=IVM_n#pWG*@NiaKg^DG z*xzXxlkeJ}Xykk*fABcuzhy47?@TX!H z1LjhXB}DZbnCgR9iN+c+S5rA+Z0|8O!>_<~In0g0hlv`CnVY+^i2ixb)Veqkxy3TK zS6dJ@TQc{?La_~r%sa7?nEt;p%|1Jj|K9>+at)&Mw5d!T@s_BpT4wYK3quylEZp9p zz=X+q)kEXixiY8C!-?rNL*{O3fFO;Od5*t^VCpCHeSHX(uTJLYnuoj=WP!G4uHM~;x)8-1ISW&jP6+ssKM3(Yx zF@i@eOY5K_+BQj+{g(o1IZC$u%a26+@5y%fSrZwA$nyQiBdtEk^3$*`X0L3w*GpLT zMz${&eZ$jIRuqT#-lfZm&OXLDvt?x?9f|y-Wo6aXK!Rk)^#-u~;bB?DXh3$ON>*hF zUs?Fdu16XX8SRwaIio|pZ-2*)Lx+rUXTLfs=%i4^e0Qy0! zY&{S(s$scd(}{5_WaYaJiMs4z1qlc!-?FM`Aa^;0?fA8k$h1GJH;juV=DP`OSN{vJ z0J01UO}@o;7ZII)uUIQ>I(+>%Yvp|djb<@x-w7534`J@M@gM&~&93bZ#V+NaD=!XK9&gMKskk{w~ z*lm;WLYRi#xdRY&e8T2E2Sg|#`@-)N)76YE>xHhj`4Qw!qAm82d63iDGyPJDO8;cf zuDFTPJe@r!LXszY?hp>x-if`~okL7bVk@(<@q8Uyl~X`;>=1kNJYs^kVQ+trUZ7{s zuysFch+${2kB$QJ8O>~cFKlEojeS|bqTP05o2J}H52#>Uoo^9MsOOmQk3>ZxC;Jt# z^396l!V-y|?&Y`xAR1lQae^@ndcBepvdW0*^aH2aHVGwoGiT@$hyqs2*|w9J`f;2~ zOAzvZ^BQi@oB`0dm>YByZFr3X=N1Ua#~xon!IG?DkC{P19pIw0N z?_FGA%o?Pf7dN2>7QT7PO`U~?`b4SBx5!`k{;rQ8v%k!@XgE8asQf!DG zf8q-E=YvB1$`$>B!ef%fl?e$%V_tHnDuLV|Q@L}SV8FmHT={D>w<|eZ)hHSGf(>`& zSu4?*u3XI@P3YRmT3gjTJD1t6xcget`ORYZgKMNE|o~f4ss_QEU)@1?>_)N!hW56)Di6WhLw*# zdyB|7U+x$B6wPj`eEeDi6fj0UL2rnB9obVp;a^zbu9XMhM?txhD%S-D5Ix&1kGziq zTWaM|-^0f(gXFW`BReX0$z!gh5S??8|F{;=PgyRX_Y()-rpXhcnh}IY2Sft6oBTZ*$_kL*2l<(Pw}=^L$Ipz- zBC?kFDDNaN8y7xtO9fG}#Q$WDSYl@I3lE^J|22jGnMF^zzLH=33j63iiush7K%(xB z{PO0n_K(?E|>W2e|8uK;dz~NR5<8KFMqe8Cd?>tA7`7@ONYc+bphQIm8 z!A-E_1^>9Ej3{LS{~kSoJg@VgO~QawEdSYkFEPe*_~!Kw5X??|%jY1ZUpn6!w;0GC z7U=SH?3*_jQ2EvK~AS~VH2^nb@h)R-#OeGX~ zQYd5&NPxU9Wa@qJ;P2N$X3+qm=Wm6~Ye!M5YlXF;L8y2)g|(OdBzh1pWY++?hobPC zA({&_N!Z*@uNx|aZ9T(b(K2D%Dnx(pwL+osaiU*_3WZx>P}_51UuHSF=PjYgLq_y= zns6Wt`~0OAiYEin+{J?apzBmb{{`V-AqoZ^6i#nvA!CK|HbX>hu2A8FEEscKxG<&w z6v|P!xCgRJKj9KAU`*|Vs$-`xH_Q=g4+a40y~1tzdBj4YaJOH3e=im8=6-~WrwaEv z4k7A!On5$XKlZH_-dA@*sXwR}K23tJ`YjT^kuA{(7vWnqEb4qtq(`W9vsEJV5ek<0 zit_9*qP6?PP8(s_$Jt`1Kk<9|3DG#$1?!fGrhWea>D(q-wPc}bJr!-^V4eIhHJIKy@sD(XBj{2B~d z86rmeKsucb6;p_V1y*9}Iru!GK+GBV z1W3rmjfObjmwa)T2+IZ!7YiTPqv?zji)=p-IVXz8&z3>aUE+y^Xtdik;-x+%sEmJ# z*AFQWJGaFf#ZSQ(&WN{b5Nke3;$QDOf#~!Q?+waA{wMt_-n$Q9)Ep7(*9U+)%@kjJ zT#w0Rn%Fqq20>FPel|@7^-_pmnRtxlUJBX_%`>rk3w-POtAcI8!5>N#d`=|}^ide} zcOshJSz+WT2XZ47#>ZgTxjz(E?XH~iRbd^;5u?pf^fXo@|9?$YI2GlC!#OCNAA8}p zWr||x7*skzsqoeT`#3*^cS|0oRX4?O^GC!C?4=mn!516(DuN;aX_BoXs3et`K|K_q z;y6q|9TgE{zCht)ipavNke-U@X!zdyN5!1TuV7H!6!FzT=n-Lxg#LPH*0NoZG0O!H zhAV!1xf48~UQy5;3(js;?CtkA(o(J1JE{$pPEwTi^aiaqR+Q$}!S?}*vfPcB1rI3B zkGTPY5vnLpJ_UMhtGKM#i_*MKQ5jJ{v_P(?wTVPUG*mp=RgV%rSMg+GBhg(W#S{JH zUy(j;iu$+ccFsnM7yHM9(U>S+dE&q)|0>?pXuyD`Dc)J9gI3olKAPteqb9}2s1g*M z3`N`Gp~ToYDcWwPz%|K=uiHb>-L6W+!T^V%lH9}*Su#xGQ|iH-mP?ZJ5b%L?smnI( z>*XWq&4Qs}!%L}K6)ZD}knFx)z(Aps?5BEzUI$1H=3_x3wNkHiXx#0dtrKxYTh;i&8O%I2L>-$NeS_Dy0M=7keKU{K13V$991zt)Kt!fmaHPWna z=Ad5LQp_3)qQZ&N+|~eMdX!3u6KqiFmP$!4Z( z!P4^9w_w>Fr1X!qaGjo!_PC)R*ZwZ;eLamB!z^jvFdRJNC#k3jmf7V=2OccN298qk zj>DJ%Ev2$-SmNI-m3_{}70h+%NE#6QdQv)S`xNVTO20eXq6v+VPG$xo27IIomWY+b zSELKmJ|b(bLxZACTv{1Efc*kmo+Vq=x;_{Ai{0k0t=MT_b&9 z;HxwK(g!^tpYA7pSc#ZM2UL@f4cYG9`CMfuVG$l5aVL{GYsAsh9<5fA>`ygy4bMC}rm^_Ys}J%C7ss z4GUtG7ROxBKE0LQzwX88wNq)I-vRI6R*tYQ05^Q4j5r?-h7_)hc$fIHOf59RQ$)MGwsi?39=N@qwAS zvZil2#%*8a?Sd}w)oA72LAX3J7L;}U;DQ@{lushi9kqWcU${QSmCFfb!{JW2C)lq1 zPz_%^3LL)FI;M8c_$s$U9%sbQdMU@;C@Ggswy zWf>}4p2{P&3|-PdHL9i!-OpAvdhRoH#RsbK);7p@xhim31=4$qDlj*U7}r;-DQp;A zlA_X2nOKdDKC8l_0GaHzN_X@sDpZjw>ic|LE_YS^=zkJ79ZstFaxkE$tSVt{41B** zwbUI5q-j(sX1=KLrK*%N4l+r#qOm^^@=~qNP-9+5RAmRHpw#}R`fXMKDq)anqiZ9k z;R;pW#tKx}K6=&Oh4|pOm+Hv2n`n;{RL7jV0itiJ6Kp)u`$pAS1NgqNMOD!;3Egp; zs&cy%uGjul)lI^>i{`3FrdU^5qiT2pMf}25jW+$kpgdHcp5rFuBtYV za`cqrs+SgdV%2w!MmA3|*>rGKLHP=&J6!`wOVrXSKKSUfd%5 zrXF+C46fO$p5cis>mgG|nc%Xj&r|h}M^K3LC2!OV$HTG*+tkTxx*#Zat5=sNg8!dX zuR8&vP`pB&Hx(5SiCmbDAp3YhUAQ_N7SC1}KC1=4->)umLu@b>>cfTRMBiDdOV*ac zWyR_;&qiV_OVni-yul-))#n0@aJA#8KED+TJ6%;*TsA}guiT`rOaOG-)~K(}_rr{~ zLH%&B9BCJ+e!O-oYWiCB^8twJh5qV>5hye%AJna04Cr$lqzqq{bcAFfUqW*DGQ%8F z4%rOJ<4cTRAO)i6*^szRpY?-=bxlR@IIIy|z@&-GwTk2OC$uz{~zHRD^e@cAN5;8+-x_*^qFrM>_EYM=?VPXK3oshM@) z27;@*CU&_ohSDlcT(LJw?-@;ewH48kl^VSbx}ia_W@&08(r~3FIcNzkEDba%XApFw zj%rf<^5D8AP1=Y_80UR88Dk6))b}+R8{n#OVVd1LucLQ3YKj}2z>0Tk%Jdnqyl=YZ z#7Y-bvi+J0cMJ6G&6;W!!DReUb2AA+Q*NrcxegZGKB8$b-UzZ8r)A&o#C3eKRyxv* zes8B$UB|%&|7bNfO<>JawVmPt@z1|&4SEFP?r5CWH~@$|jnrC9T!l0|sO>I7VUtT* zz17!xXqv3GsX-SU5TUi(T83!uqjheda?2KL`}fF4G%wM*ZW@BI+etfgu>r_ri+1Ry z4+y?zT7M@TaQTgPLM`5Z7OR~WkO^wmK|ABlaIoC%+Q^YGkosz8^+g?NOx7-v1JPoC zZSofelTv_Qn>GhfEpyOr^z*{Na9_JM0nji9wL3i$Vfj04!6kdl?^W88QyzfcNn2{( z4;x(3mQEjsLRF`&uzZ8UC1@|)|Ac`eKzmu=gdz2aw(2InhBGbHUbQHJ;tkrXZWvfB zc4_ag^CGfM(mweN#Y27eX`gmPRG+$~eV(d-uRm$udn1_cUekW~p&c@3ZId3Av1ds~#2O z7(xm7sr{39Bmyo0@voCB{y2uk#YRNWn-h`{9Tyv)HPF_<mq`1WP z52Ir(Ln1?>V|!aBU{$;>Mi-WV_vXZf>;7A-iwy~l(S?_6wdH%2yc=iQnQ_Y6AJN@u zF6p3hI8=|N$p3UQhRz8gVF`}&bU!BQ;u9R_>SDvAV$Ayd=Bg znq|q#r>-3shpY=t-Lje*4LcjnjnRd~>m0+P;^H7eV17*8yprFWT(zbWjR!(8IP(86 zlFy5a(ZwHq$uV0^attjP=cCiRG0oD^pB$J(jY~fY!Z)%yvc&(16p6oB`+rFP_cRPo z+dq$^IY(8l%y%p^D#v>?6JTe%AS5~gnmb0s&2x0@>zEMd2v~J<6C45Fy#KW?$IYD? z|D6Q|!;Q1Cl_hyX&A9gM@bg&6aMJyUj&?!F>_o@Vn7Ft(j_n{HO?GD%sb#b?$73AR VCFjH_COvEGV8zj#(ahRT{|}hoId}j7 diff --git a/ui/i18n/qml_ar.ts b/ui/i18n/qml_ar.ts index e056274be8..37dfdd059b 100644 --- a/ui/i18n/qml_ar.ts +++ b/ui/i18n/qml_ar.ts @@ -26,7 +26,7 @@ - + Edit تصحيح @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... المعاملة جارية ... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,77 +351,72 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password تسجيل الدخول بكلمة مرور - - - Contact request pending - - - + Connected متصل - + Disconnected الدردشة غير متصلة بالأنترنت - + This user has been blocked. - + - + Type a message. - - - + + + - + Send إرسال - + Request Address - - + + Request طلب - + - + @@ -453,7 +448,7 @@ Do you wish to override the security check and continue? - + Preview @@ -461,19 +456,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next التالى @@ -484,19 +479,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -504,71 +499,69 @@ Do you wish to override the security check and continue? - + Network fee رسوم الشبكة - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image صورة - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -593,17 +586,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ جلب المزيد من الرسائل - + before %1 @@ -630,18 +623,18 @@ Do you wish to override the security check and continue? رفض الدعوة - - + + Add reaction - + Reply الرد - + More المزيد @@ -716,17 +709,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -743,19 +736,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -800,11 +793,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -843,22 +835,22 @@ Do you wish to override the security check and continue? إعادة إرسال - + Transaction request طلب معاملة - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -900,8 +892,8 @@ Do you wish to override the security check and continue? - - + + Pending المعلقه @@ -951,13 +943,13 @@ Do you wish to override the security check and continue? - - + + You أنت - + Clear history Clear History تاريخ واضح @@ -968,7 +960,7 @@ Do you wish to override the security check and continue? غادر المجموعة - + Are you sure you want to leave this chat? @@ -995,15 +987,12 @@ Do you wish to override the security check and continue? مجتمعات - + Search for communities or topics - - - - + 1 member @@ -1013,179 +1002,173 @@ Do you wish to override the security check and continue? استيراد مجتمع - + Create a community أنشئ مجتمعًا - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats دردشات - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members الأعضاء - - + + Create category - - + + Invite people Invite People دعوة الأشخاص - + - + Membership requests طلبات العضوية - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile عرض الصفحة الشخصية - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications الاخطارات - - + + Edit community تعديل المجتمع - - + + Create channel قم بإنشاء قناة - + Leave community اترك المجتمع @@ -1206,7 +1189,7 @@ Do you wish to override the security check and continue? إضافة أعضاء - + Manage community @@ -1216,47 +1199,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + قناة جديدة - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name اسم القناة - + Describe the channel وصف القناة - + Pinned messages - + channel description Channel description @@ -1278,14 +1261,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create انشاء @@ -1300,136 +1284,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community اسم مجتمعك - + A catchy name اسم جذاب - Give it a short description أعطها وصفا موجزا - + What your community is about - - Community color + + Community colour + Community color لون المجتمع - + Pick a color - - - Please choose a color - - - - + + Membership requirement شروط العضوية - - + + Require invite from another member تتطلب دعوة من عضو آخر - - + + Require approval تتطلب الموافقة - + + No requirement لا يوجد شرط - + You can require new members to meet certain criteria before they can join. This can be changed at any time يمكنك أن تطلب من الأعضاء الجدد تلبية معايير معينة قبل أن يتمكنوا من الانضمام. يمكن تغيير هذا في أي وقت - + Save حفظ - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members الأعضاء - - + + Invite friends دعوه الأصدقاء - + Invite دعوه @@ -1438,23 +1417,23 @@ Do you wish to override the security check and continue? جهات الاتصال - + Invite دعوه - + Chat دردشة - + Community imported - + Importing community is in progress @@ -1475,12 +1454,11 @@ Do you wish to override the security check and continue? انضم إلى الدردشة العامة - No messages لا توجد رسائل - + No search results @@ -1508,36 +1486,41 @@ Do you wish to override the security check and continue? Share Chat مشاركة الدردشة + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat حذف الدردشة - - + + Leave chat مغادرة الدردشة @@ -1568,7 +1551,7 @@ Do you wish to override the security check and continue? المشرف - + ↓ Fetch messages Fetch Messages ↓ جلب الرسائل @@ -1675,35 +1658,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message إرسال رسالة - + Reply to @@ -1814,7 +1797,7 @@ Do you wish to override the security check and continue? - + Add to contacts أضف إلى جهات الاتصال @@ -1835,14 +1818,14 @@ Do you wish to override the security check and continue? بدء الدردشة - + Pinned by %1 - + - + @@ -1857,7 +1840,7 @@ Do you wish to override the security check and continue? - + Profile الملف الشخصي @@ -1912,7 +1895,7 @@ Do you wish to override the security check and continue? - + Wallet المحفظه @@ -1931,14 +1914,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2283,7 +2281,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2291,13 +2289,13 @@ Do you wish to override the security check and continue? - + Key مفتاح - + Back الى الخلف @@ -2377,151 +2375,151 @@ Do you wish to override the security check and continue? اسم المستخدم الخاص بك - + ✓ Username available! ✓ اسم المستخدم متاح! - + Continuing will connect this username with your chat key. سيؤدي الاستمرار إلى ربط اسم المستخدم هذا بمفتاحك الخاص. - + Username doesn’t belong to you :( اسم المستخدم لا ينتمي إليك :( - + Username already taken :( الاسم مستخدم من قبل :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. اسم المستخدم مرتبط بالفعل بالمفتاح الخاص بك ويمكن استخدامه في الحالة. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. ستتطلب المتابعة معاملة لتوصيل اسم المستخدم بالمفتاح الحالي - + Custom domain مجال مخصص - + I want a stateofus.eth domain أريد مجال Stateofus.eth - + I own a name on another domain أنا أملك اسمًا في مجال آخر - - + + Connect username with your pubkey - + Terms of name registration شروط تسجيل الاسم - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. تودع الأموال لمدة 1 سنة. سيتم قفل SNT الخاص بك ، ولكن لا تنفق. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. بعد عام واحد ، يمكنك تحرير الاسم واسترداد مقدمك ، أو عدم اتخاذ أي إجراء للحفاظ على الاسم. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. إذا تغيرت شروط العقد-علي سبيل المثال الحالة التي تجعل ترقيات العقد-يحق للمستخدم الإفراج عن اسم المستخدم بغض الزمن عن الوقت المحتفظ به. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. لا يمكن لوحده تحكم العقد الوصول إلى أموالك المودعة. يمكن نقلها فقط إلى العنوان الذي أرسلها. - + Your address(es) will be publicly associated with your ENS name. سيتم ربط عنوانك (عناوينك) علنا باسم ENS الخاص بك. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. يتم إنشاء أسماء المستخدمين على هيئة نطاقات فرعية لـ stateofus.eth وتخضع لشروط العقد الذكية لـ ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. يمكنك تخويل العقد لنقل SNT نيابة عنك. يمكن ان يحدث هذا فقط عند الموافقة علي معامله لتخويل النقل. - + These terms are guaranteed by the smart contract logic at addresses: هذه الشروط مضمونة في منطق العقد الذكية في العناوين: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit ايداع - + Not enough SNT غير كافي SNT - + Register تسجيل @@ -2621,14 +2619,14 @@ Do you wish to override the security check and continue? - - + + Warning! تحذير! - + Change fleet to %1 @@ -3462,9 +3460,9 @@ packs will not need to be re-purchased. Transaction Details تفاصيل المعاملات - - - 9999 Confirmations + + + @@ -3535,7 +3533,8 @@ packs will not need to be re-purchased. - + + Description وصف @@ -3936,42 +3935,42 @@ packs will not need to be re-purchased. - + View Community - + Browser المتصفح - + Timeline الجدول الزمني - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3981,12 +3980,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4083,7 +4082,7 @@ Seperate words by a single space. - + I understand @@ -4159,7 +4158,7 @@ Seperate words by a single space. - + Paste لصق @@ -4192,43 +4191,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4317,7 +4318,7 @@ Assets won’t be sent yet. - + Optimal @@ -4326,7 +4327,7 @@ Assets won’t be sent yet. المتقدمة - + Gwei غواي @@ -4340,18 +4341,18 @@ Assets won’t be sent yet. لا يكفي ETH للغاز - + Copied نسخ - + Pasted - - + + Copy to clipboard Copy نسخ @@ -4372,7 +4373,7 @@ Assets won’t be sent yet. - + Contact صديق @@ -4444,52 +4445,52 @@ Assets won’t be sent yet. طلب المعاملة - + Public chat دردشة عامة - + Not a contact غير صديق - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message رسالة - + Bold - + Italic - + Strikethrough - + Code @@ -4529,12 +4530,12 @@ Assets won’t be sent yet. تحديث - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4584,7 +4585,7 @@ Assets won’t be sent yet. - + Show more عرض المزيد @@ -4610,7 +4611,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4637,17 +4638,13 @@ Assets won’t be sent yet. إعدادات الإشعار - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4658,13 +4655,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key المفتاح الخاص بالمجتمع @@ -4684,12 +4681,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up دعم @@ -4699,37 +4696,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first مجتمعك مجاني للانضمام ، ولكن يجب أن تتم الموافقة على الأعضاء الجدد من قبل منشئ المجتمع أولاً - + Your community can only be joined by an invitation from existing community members لا يمكن الانضمام إلى مجتمعك إلا من خلال دعوة من أعضاء المجتمع الحاليين - + Your community is free for anyone to join مجتمعك مجاني لأي شخص للانضمام - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4833,6 +4830,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_de.qm b/ui/i18n/qml_de.qm index 26e7e20530465fb5cc884c5a98afad6fc768adb7..7f57c5bd92d7c79b71b63c8b6fd1b38bddebc385 100644 GIT binary patch delta 8092 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 delta 7834 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 pj*g9; - + Edit Bearbeiten @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transaktion ausstehend... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Mit Passwort signieren - - - Contact request pending - - - + Connected Verbunden - + Disconnected Chat offline - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Senden - + Request Address - - + + Request Anfrage - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Weiter @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Netzwerkgebühr - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Bild - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Weitere Nachrichten abrufen - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Einladung ablehnen - - + + Add reaction - + Reply Antworten - + More mehr @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? Erneut senden - + Transaction request Transaktionsanfrage - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending Ausstehend @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You Sie - + Clear history Clear History Verlauf löschen @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Gruppe verlassen - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Gemeinschaften - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Importieren Sie eine Community - + Create a community Eine Gemeinschaft erstellen - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chats - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Mitglieder - - + + Create category - - + + Invite people Invite People Leute einladen - + - + Membership requests Anfragen zur Mitgliedschaft - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Profil anzeigen - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Benachrichtigungen - - + + Edit community Community bearbeiten - - + + Create channel Einen Kanal erstellen - + Leave community Gemeinschaft verlassen @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Mitglieder hinzufügen - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Neuer Kanal - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Kanalname - + Describe the channel - + Pinned messages - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Erstellen @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Nennen Sie Ihre Gemeinschaft - + A catchy name Ein einprägsamer Name - Give it a short description Geben Sie eine kurze Beschreibung - + What your community is about - - Community color + + Community colour + Community color Community Farbe - + Pick a color - - - Please choose a color - - - - + + Membership requirement Voraussetzung für die Mitgliedschaft - - + + Require invite from another member Einladung von einem anderen Mitglied anfordern - - + + Require approval Genehmigung erforderlich - + + No requirement Keine Bedingung - + You can require new members to meet certain criteria before they can join. This can be changed at any time Sie können von neuen Mitgliedern verlangen, dass sie bestimmte Kriterien erfüllen, bevor sie beitreten können. Dies kann jederzeit geändert werden - + Save Speichern - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Mitglieder - - + + Invite friends Freunde einladen - + Invite Einladen @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Kontakte - + Invite Einladen - + Chat Chat - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Öffentlichem Chat beitreten - No messages Keine Nachrichten - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Chat teilen + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Chat löschen - - + + Leave chat Chat verlassen @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Nachrichten abrufen @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Nachricht senden - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Zu Kontakten hinzufügen @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Chat beginnen - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Profil @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Wallet @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Schlüssel - + Back Zurück @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Ihr Benutzername - + ✓ Username available! ✓ Benutzername verfügbar! - + Continuing will connect this username with your chat key. Wenn Sie fortfahren, wird dieser Benutzername mit Ihrem Chat-Schlüssel verbunden. - + Username doesn’t belong to you :( Benutzername gehört Ihnen nicht :( - + Username already taken :( Benutzername bereits vergeben :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Der Benutzername ist bereits mit Ihrem Chat-Schlüssel verbunden und kann in Status verwendet werden. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Für die Fortsetzung ist eine Transaktion erforderlich, um den Benutzernamen mit Ihrem aktuellen Chat-Schlüssel zu verbinden. - + Custom domain Benutzerdefinierte Domain - + I want a stateofus.eth domain Ich möchte eine stateofus.eth-Domain - + I own a name on another domain Ich besitze einen Namen auf einer anderen Domain - - + + Connect username with your pubkey - + Terms of name registration Bedingungen für die Namensregistrierung - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Das Geld wird für ein Jahr hinterlegt. Ihr SNT wird gesperrt, aber nicht ausgegeben. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Nach einem Jahr können Sie den Namen freigeben und Ihre Einzahlung zurückerhalten oder keine Maßnahmen ergreifen, um den Namen beizubehalten. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Wenn sich die Contract-Bedingungen ändern – z. B. Status führt Contract-Aktualisierungen durch – hat der Benutzer das Recht, den Benutzernamen unabhängig von der gesetzten Frist freizugeben. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Der Contract Controller kann nicht auf Ihre eingezahlten Beträge zugreifen. Sie können nur an die Adresse zurückgeschoben werden, an die sie gesendet wurden. - + Your address(es) will be publicly associated with your ENS name. Ihre Adresse(n) werden öffentlich mit Ihrem ENS-Namen verknüpft. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Benutzernamen werden als Subdomain-Knoten von stateofus.eth erstellt und unterliegen den ENS-Smart-Contract-Bedingungen. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Sie ermächtigen den Contract, SNT in Ihrem Namen zu übertragen. Dies kann nur auftreten, wenn Sie eine Transaktion zur Autorisierung der Übertragung genehmigen. - + These terms are guaranteed by the smart contract logic at addresses: Diese Bedingungen werden durch die intelligente Smart-Contract-Logik an folgenden Adressen garantiert: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Einzahlen - + Not enough SNT Nicht genug SNT - + Register Registrieren @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! Warnung! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Transaktionsdetails - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Beschreibung @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Browser - + Timeline Timeline - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Einfügen @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Erweitert - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. Nicht genug ETH für Gas - + Copied Kopiert - + Pasted - - + + Copy to clipboard Copy Kopieren @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact Kontakt @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. Transaktion anfordern - + Public chat Öffentlicher Chat - + Not a contact Kein Kontakt - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Nachricht - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Aktualisieren - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Mehr anzeigen @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Benachrichtigungseinstellungen - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Privater Community-Schlüssel @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Sichern @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Der Beitritt zu Ihrer Community ist kostenlos, aber neue Mitglieder müssen zunächst vom Ersteller der Community genehmigt werden - + Your community can only be joined by an invitation from existing community members Ihrer Community kann nur durch eine Einladung von bestehenden Gemeinschaftsmitgliedern beigetreten werden - + Your community is free for anyone to join Deiner Community kann jeder kostenlos beitreten - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_en.qm b/ui/i18n/qml_en.qm index cf2d999919133592119faf35c9698f324014770d..98a69675fa3b71b8380b3ccd61a81887afe4fe5b 100644 GIT binary patch delta 8302 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 delta 7706 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 WhB7f}L>OC~FeOtt?i$X - + Edit Edit @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transaction pending... - - + + @@ -295,7 +295,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -352,76 +352,75 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Sign with password - Contact request pending Contact request pending - + Connected Connected - + Disconnected Disconnected - + This user has been blocked. This user has been blocked. - + - + Type a message. Type a message. - - - + + + - + Send Send - + Request Address Request Address - - + + Request Request - + - + @@ -453,7 +452,7 @@ Do you wish to override the security check and continue? - + Preview @@ -461,19 +460,19 @@ Do you wish to override the security check and continue? - + Transaction preview Transaction preview - + - - + + - + Next Next @@ -484,19 +483,19 @@ Do you wish to override the security check and continue? Invalid transaction parameters - - - - + + + + - + Authorize %1 %2 Authorize %1 %2 - - + + @@ -504,71 +503,69 @@ Do you wish to override the security check and continue? Choose account - + Network fee Network fee - + Error estimating gas: %1 Error estimating gas: %1 - + . The transaction will probably fail. . The transaction will probably fail. - - + + - + Send %1 %2 Send %1 %2 - - + Image Image - - + Sticker Sticker - + You have a new message You have a new message - + You have been accepted into the ‘%1’ community You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined Your request to join the ‘%1’ community was declined - + New membership request New membership request - + %1 asks to join ‘%2’ %1 asks to join ‘%2’ - + Failed to send message. Failed to send message. @@ -593,17 +590,17 @@ Do you wish to override the security check and continue? friends to start messaging in Status - + before %1Between %1 and %2 before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Fetch more messages - + before %1 before %1 @@ -630,18 +627,18 @@ Do you wish to override the security check and continue? Decline invitation - - + + Add reaction Add reaction - + Reply Reply - + More More @@ -716,17 +713,17 @@ Do you wish to override the security check and continue? December - + and and - + %1 more %1 more - + reacted with reacted with @@ -743,19 +740,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username Membership requires an ENS username - + You need to be invited You need to be invited @@ -800,11 +797,10 @@ Do you wish to override the security check and continue? Unsupported state - + - - - + + %1 members %1 members @@ -843,22 +839,22 @@ Do you wish to override the security check and continue? Resend - + Transaction request Transaction request - + ↑ Outgoing transaction ↑ Outgoing transaction - + ↓ Incoming transaction ↓ Incoming transaction - + Something has gone wrong Something has gone wrong @@ -900,8 +896,8 @@ Do you wish to override the security check and continue? - - + + Pending Pending @@ -951,8 +947,8 @@ Do you wish to override the security check and continue? Unknown state - - + + You You @@ -961,7 +957,7 @@ Do you wish to override the security check and continue? Group Information - + Clear history Clear History Clear history @@ -972,7 +968,7 @@ Do you wish to override the security check and continue? Leave group - + Are you sure you want to leave this chat? Are you sure you want to leave this chat? @@ -999,15 +995,12 @@ Do you wish to override the security check and continue? Communities - + Search for communities or topics Search for communities or topics - - - - + 1 member 1 member @@ -1017,59 +1010,63 @@ Do you wish to override the security check and continue? Import a community - + Create a community Create a community - - + + Public community Public community - - + + Invitation only community Invitation only community - - + + On request community On request community + + + + undefined + - - - + + Unknown community Unknown community - - - ENS Only - - ENS Only + + - ENS only + - ENS Only + - ENS only - Chats Chats - - + + Join ‘%1’ Join ‘%1’ - + Request to join ‘%1’ Request to join ‘%1’ - + Error joining the community Error joining the community @@ -1078,111 +1075,105 @@ Do you wish to override the security check and continue? No search results in Communities - Members Members - - + + Create category Create category - - + + Invite people Invite People Invite people - + - + Membership requests Membership requests - + Edit Category Edit Category - + Delete Category Delete Category - + Delete %1 category Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category Error deleting the category - - + - + View Profile View Profile - Roles Roles - - + Kick Kick - - + Ban Ban - - - + + Transfer ownership Transfer ownership - + Invite successfully sent Invite successfully sent - - + + Share community Share community - + Notifications Notifications - - + + Edit community Edit community @@ -1191,13 +1182,13 @@ Do you wish to override the security check and continue? Export community - - + + Create channel Create channel - + Leave community Leave community @@ -1218,7 +1209,7 @@ Do you wish to override the security check and continue? Add members - + Manage community Manage community @@ -1241,39 +1232,43 @@ Do you wish to override the security check and continue? New channel - undefined + + + New channel + New channel + - + Edit #%1 Edit #%1 - - + + channel name Channel name channel name - + channel decription channel decription - + Channel name Channel name - + Describe the channel Describe the channel - + Pinned messages @@ -1284,7 +1279,7 @@ Do you wish to override the security check and continue? A cool name - + channel description Channel description channel description @@ -1322,14 +1317,15 @@ Do you wish to override the security check and continue? Category title + Channels Channels - - + + Create Create @@ -1344,8 +1340,8 @@ Do you wish to override the security check and continue? Error creating the category - - + + Error creating the community Error creating the community @@ -1362,27 +1358,25 @@ Do you wish to override the security check and continue? This field needs to be an hexadecimal color (eg: #4360DF) - + New community New community - Name your community Name your community - + A catchy name A catchy name - Give it a short description Give it a short description - + What your community is about What your community is about @@ -1391,86 +1385,87 @@ Do you wish to override the security check and continue? The description cannot exceed 140 characters - - + + community name community name - - + + community decription community decription - + Thumbnail image Thumbnail image - + - + Please choose an image Please choose an image - + Image files (*.jpg *.jpeg *.png) Image files (*.jpg *.jpeg *.png) - + Upload Upload - - Community color - Community color + + Community colour + Community color + Community colour - + Pick a color Pick a color - Please choose a color Please choose a color - - + + Membership requirement Membership requirement - - + + Require invite from another member Require invite from another member - - + + Require approval Require approval - + + No requirement No requirement - + You can require new members to meet certain criteria before they can join. This can be changed at any time You can require new members to meet certain criteria before they can join. This can be changed at any time - + Save Save @@ -1493,13 +1488,13 @@ Do you wish to override the security check and continue? - + Access existing community Access existing community - + Community private key Community key Community private key @@ -1524,21 +1519,21 @@ Do you wish to override the security check and continue? Error importing the community - - + + Members Members - - + + Invite friends Invite friends - + Invite Invite @@ -1547,23 +1542,23 @@ Do you wish to override the security check and continue? Contacts - + Invite Invite - + Chat Chat - + Community imported Community imported - + Importing community is in progress Importing community is in progress @@ -1592,12 +1587,11 @@ Do you wish to override the security check and continue? Join public chat - No messages No messages - + No search results No search results @@ -1625,36 +1619,41 @@ Do you wish to override the security check and continue? Share Chat Share Chat + + + Test WakuV2 - requestAllHistoricMessages + Test WakuV2 - requestAllHistoricMessages + - + Unmute chat Unmute chat - + Mute chat Mute chat - + Edit Channel Edit Channel - - + + Mark as Read Mark as Read - - + + Delete chat Delete chat - - + + Leave chat Leave chat @@ -1685,7 +1684,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Fetch messages @@ -1792,35 +1791,35 @@ Do you wish to override the security check and continue? Download Status link - + Unpin Unpin - + Pin Pin - - + + Copy link Copy link - + Edit message Edit message - + Send message Send message - + Reply to Reply to @@ -1931,7 +1930,7 @@ Do you wish to override the security check and continue? - + Add to contacts Add to contacts @@ -1952,14 +1951,14 @@ Do you wish to override the security check and continue? Start chat - + Pinned by %1 Pinned by %1 - + - + @@ -1974,7 +1973,7 @@ Do you wish to override the security check and continue? - + Profile Profile @@ -2029,7 +2028,7 @@ Do you wish to override the security check and continue? - + Wallet Wallet @@ -2048,13 +2047,31 @@ Do you wish to override the security check and continue? Online users Online users - + + Bloom filter level + Bloom filter level + + + + The account will be logged out. When you login again, the selected mode will be enabled + The account will be logged out. When you login again, the selected mode will be enabled + + + + Light Node + Light Node + + + + Full Node + Full Node + + Waku Bloom Mode Waku Bloom Mode - undefined @@ -2116,6 +2133,7 @@ Do you wish to override the security check and continue? Chat mode + Normal Normal @@ -2416,7 +2434,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2424,13 +2442,13 @@ Do you wish to override the security check and continue? - + Key Key - + Back Back @@ -2510,151 +2528,151 @@ Do you wish to override the security check and continue? Your username - + ✓ Username available! ✓ Username available! - + Continuing will connect this username with your chat key. Continuing will connect this username with your chat key. - + Username doesn’t belong to you :( Username doesn’t belong to you :( - + Username already taken :( Username already taken :( - + (edited) (edited) - + Username is already connected with your chat key and can be used inside Status. Username is already connected with your chat key and can be used inside Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Continuing will require a transaction to connect the username with your current chat key. - + Custom domain Custom domain - + I want a stateofus.eth domain I want a stateofus.eth domain - + I own a name on another domain I own a name on another domain - - + + Connect username with your pubkey Connect username with your pubkey - + Terms of name registration Terms of name registration - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Funds are deposited for 1 year. Your SNT will be locked, but not spent. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. After 1 year, you can release the name and get your deposit back, or take no action to keep the name. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. - + Your address(es) will be publicly associated with your ENS name. Your address(es) will be publicly associated with your ENS name. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. - + These terms are guaranteed by the smart contract logic at addresses: These terms are guaranteed by the smart contract logic at addresses: - + %1 (Status UsernameRegistrar). %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Deposit - + Not enough SNT Not enough SNT - + Register Register @@ -2754,14 +2772,14 @@ Do you wish to override the security check and continue? Updating ENS pubkey completed - - + + Warning! Warning! - + Change fleet to %1 Change fleet to %1 @@ -3616,10 +3634,14 @@ packs will not need to be re-purchased. Transaction Details - 9999 Confirmations 9999 Confirmations + + + + undefined + When the transaction has 12 confirmations you can consider it settled. @@ -3687,7 +3709,8 @@ packs will not need to be re-purchased. ID - + + Description Description @@ -4088,42 +4111,42 @@ packs will not need to be re-purchased. South African rand - + View Community View Community - + Browser Browser - + Timeline Timeline - + Contact request accepted Contact request accepted - + New contact request New contact request - + You can now chat with %1 You can now chat with %1 - + %1 requests to become contacts %1 requests to become contacts - + Where do you want to go? Where do you want to go? @@ -4133,12 +4156,12 @@ packs will not need to be re-purchased. Status Desktop - + Open Status Open Status - + Quit Quit @@ -4258,7 +4281,7 @@ where you alone own your data - + I understand I understand @@ -4342,7 +4365,7 @@ where you alone own your data eg. 0x1234 or ENS - + Paste Paste @@ -4376,43 +4399,43 @@ Assets won’t be sent yet. Priority - + Use suggestions Use suggestions - + Use custom Use custom - + Low Low - + High High - + Gas amount limit Gas amount limit - + Per-gas overall limit Per-gas overall limit - + Maximum priority fee: %1 ETH Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4505,7 +4528,7 @@ Assets won’t be sent yet. Slow - + Optimal Optimal @@ -4526,7 +4549,7 @@ Assets won’t be sent yet. Custom Network Fee - + Gwei Gwei @@ -4540,18 +4563,18 @@ Assets won’t be sent yet. Not enough ETH for gas - + Copied Copied - + Pasted Pasted - - + + Copy to clipboard Copy Copy to clipboard @@ -4572,7 +4595,7 @@ Assets won’t be sent yet. My account - + Contact Contact @@ -4648,52 +4671,52 @@ Assets won’t be sent yet. Request transaction - + Public chat Public chat - + Not a contact Not a contact - + Image files (%1) Image files (%1) - + Your message is too long. Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Type a message - + Bold Bold - + Italic Italic - + Strikethrough Strikethrough - + Code Code @@ -4733,12 +4756,12 @@ Assets won’t be sent yet. Update - + Could not buy Stickerpack Could not buy Stickerpack - + Stickerpack bought successfully Stickerpack bought successfully @@ -4788,7 +4811,7 @@ Assets won’t be sent yet. Revoke all access - + Show more Show more @@ -4814,7 +4837,7 @@ Assets won’t be sent yet. - + Contact requests Contact requests @@ -4841,27 +4864,27 @@ Assets won’t be sent yet. Notification settings - - You need to be mutual contacts with this person for them to receive your messages - You need to be mutual contacts with this person for them to receive your messages + + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request - Waiting for %1 to accept your request Waiting for %1 to accept your request - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat - + Back up community key Back up community key - + Back up Back up @@ -4871,37 +4894,37 @@ Assets won’t be sent yet. Member name - + Community members will appear here Community members will appear here - + No contacts found No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Your community is free to join, but new members are required to be approved by the community creator first - + Your community can only be joined by an invitation from existing community members Your community can only be joined by an invitation from existing community members - + Your community is free for anyone to join Your community is free for anyone to join - + You should keep it safe and only share it with people you trust to take ownership of your community You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device You can also use this key to import your community on another device @@ -5005,6 +5028,11 @@ Assets won’t be sent yet. Max image size is %1 MB Max image size is %1 MB + + + TODO + TODO + AccessExistingCommunityPopup diff --git a/ui/i18n/qml_es.qm b/ui/i18n/qml_es.qm index d6d3481e53fccc84e3f6379d3d0fd042d3f8dde7..bf703b5fa41b4f4517a95ff1f665da171c4acc56 100644 GIT binary patch delta 8127 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 c`eE#YPDR_YMoeJMvrdMv#f2-zuv1O`AHmEi - + Edit Editar @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transacción pendiente... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Firmar con contraseña - - - Contact request pending - - - + Connected Conectado - + Disconnected Chat sin conexión - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Enviar - + Request Address - - + + Request Solicitud - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Siguiente @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Tarifa de la red - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Imagen - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Recuperar más mensajes - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Rechazar invitación - - + + Add reaction - + Reply Responder - + More más @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? Reenviar - + Transaction request Solicitud de transacción - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending Pendiente @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You - + Clear history Clear History Borrar historial @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Abandonar grupo - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Comunidades - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Importar una comunidad - + Create a community Crea una comunidad - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chats - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Miembros - - + + Create category - - + + Invite people Invite People Invitar a otros - + - + Membership requests Solicitudes de membresía - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Ver perfil - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Notificaciones - - + + Edit community Editar comunidad - - + + Create channel Crea un canal - + Leave community Salir de la comunidad @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Agregar miembros - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Nuevo canal - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Nombre del canal - + Describe the channel Describa el canal - + Pinned messages - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Crear @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Asigna un nombre a tu comunidad - + A catchy name Elige un nombre memorable - Give it a short description Descríbelo brevemente - + What your community is about - - Community color + + Community colour + Community color Color de la comunidad - + Pick a color - - - Please choose a color - - - - + + Membership requirement Requisito de membresía - - + + Require invite from another member Necesitas invitación de otro miembro - - + + Require approval Requiere aprobación - + + No requirement Sin requisitos - + You can require new members to meet certain criteria before they can join. This can be changed at any time Puedes exigir que los nuevos miembros cumplan con ciertos criterios antes de poder unirse. Esto se puede cambiar en cualquier momento. - + Save Guardar - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Miembros - - + + Invite friends Invitar a amigos - + Invite Invitar @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Contactos - + Invite Invitá - + Chat Chat - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Unirte a chat público - No messages No hay mensajes - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Compartir chat + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Eliminar chat - - + + Leave chat Abandonar chat @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Recuperar mensajes @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Enviar mensaje - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Agregar a contactos @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Iniciar chat - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Perfil @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Billetera @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Clave - + Back Atrás @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Tu nombre de usuario - + ✓ Username available! ✓ ¡Nombre de usuario disponible! - + Continuing will connect this username with your chat key. Continuar conectará este nombre de usuario con tu clave de chat. - + Username doesn’t belong to you :( El nombre de usuario no te pertenece :( - + Username already taken :( Nombre de usuario ya está tomado :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. El nombre de usuario ya está conectado con tu clave de chat y se puede usar dentro de Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Continuar requerirá una transacción para conectar el nombre de usuario con tu clave de chat actual. - + Custom domain Dominio personalizado - + I want a stateofus.eth domain Quiero un dominio stateofus.eth - + I own a name on another domain Tengo un nombre en otro dominio - - + + Connect username with your pubkey - + Terms of name registration Términos de registro de nombre - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Los fondos se depositan por 1 año. Tu SNT se bloqueará, pero no se gastará. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Después de 1 año, puedes liberar el nombre y recuperar tu depósito, o no tomar ninguna acción para mantener el nombre. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Si los términos del contrato cambian —por ejemplo, Status actualiza el contrato— el usuario tiene derecho a liberar el nombre de usuario independientemente del tiempo retenido. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. El controlador del contrato no puede acceder a tus fondos depositados. Sólo pueden ser devueltos a la dirección que los envió. - + Your address(es) will be publicly associated with your ENS name. Tu(s) dirección(es) se asociará(n) públicamente con tu nombre ENS. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Los nombres de usuario se crean como nodos de subdominio de stateofus.eth y están sujetos a los términos del contrato inteligente de ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Autorizas el contrato para transferir SNT en tu nombre. Esto solo puede ocurrir cuando apruebas una transacción para autorizar la transferencia. - + These terms are guaranteed by the smart contract logic at addresses: Estos términos están garantizados por la lógica del contrato inteligente en las direcciones: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Depósito - + Not enough SNT No hay suficiente SNT - + Register Registrar @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! ¡Advertencia! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Detalles de la transacción - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Descripción @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Navegador - + Timeline Línea de tiempo - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Pegar @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Avanzado - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. No hay suficiente ETH para el gas - + Copied Copiado - + Pasted - - + + Copy to clipboard Copy Copiar @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact Contacto @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. Solicitar transacción - + Public chat Chat público - + Not a contact No es contacto - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Mensaje - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Actualizar - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Mostrar más @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Ajustes de las notificaciones - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Clave privada de la comunidad @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Respaldo @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Puedes unirte de manera gratuita, pero el creador de la comunidad deberá aprobar primero a los nuevos miembros - + Your community can only be joined by an invitation from existing community members Únicamente puedes unirte a la comunidad mediante invitación de un miembro existente - + Your community is free for anyone to join Cualquier persona puede unirse a tu comunidad - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_fil.qm b/ui/i18n/qml_fil.qm index 47b6fe1c7119a05f2daf16443173f55dfb5d6554..272cbb83db5ccff515ef3b0366d9a5c3ba736493 100644 GIT binary patch delta 8096 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 delta 7817 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 diff --git a/ui/i18n/qml_fil.ts b/ui/i18n/qml_fil.ts index a14cce6310..af5a901e56 100644 --- a/ui/i18n/qml_fil.ts +++ b/ui/i18n/qml_fil.ts @@ -26,7 +26,7 @@ - + Edit Edit @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Naka-pending ang transaksyon ... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Mag-sign in gamit ang password - - - Contact request pending - - - + Connected Nakakonekta - + Disconnected Chat offline - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Ipadala - + Request Address - - + + Request Kahilingan - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Sunod @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Bayad sa network - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Imahe - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Kumuha ng higit pang mga mensahe - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Tanggihan ang paanyaya - - + + Add reaction - + Reply Sagot - + More higit pa @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? I-resend - + Transaction request Kahilingan sa Transaksyon - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending Naghihintay @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You ikaw - + Clear history Clear History Alisin ang history @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Umalis sa grupo - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Mga Komunidad - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Mag-import ng isang pamayanan - + Create a community Lumikha ng isang pamayanan - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chats - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Mga kasapi - - + + Create category - - + + Invite people Invite People Mag-imbita ng mga tao - + - + Membership requests Mga kahilingan sa pagiging miyembro - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Tingnan ang Profile - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Mga notification - - + + Edit community I-edit ang pamayanan - - + + Create channel Lumikha ng channel - + Leave community Umalis sa pamayanan @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Magdagdag ng mga miyembro - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Bagong channel - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Pangalan ng channel - + Describe the channel Ilarawan ang channel - + Pinned messages - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Lumikha @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Pangalanan ang iyong pamayanan - + A catchy name Isang kapansin pansin na pangalan - Give it a short description Bigyan ito ng isang maikling paglalarawan - + What your community is about - - Community color + + Community colour + Community color Kulay ng pamayanan - + Pick a color - - - Please choose a color - - - - + + Membership requirement Kahilingan sa pagiging kasapi ng pangkat - - + + Require invite from another member Humiling ng paanyaya mula sa ibang miyembro - - + + Require approval Mangangailangan ng pag-apruba - + + No requirement Walang kinakailangan - + You can require new members to meet certain criteria before they can join. This can be changed at any time Maaari kang mangailangan ng mga bagong kasapi upang matugunan ang ilang mga pamantayan bago sila sumali. Maaari itong mabago anumang oras - + Save I-save - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Mga kasapi - - + + Invite friends Mag-imbita ng mga kaibigan - + Invite Mag-anyaya @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Mga contact - + Invite Mag-anyaya - + Chat Chat - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Sumali sa pampublikong Chat - No messages Walang mensahe - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Ibahagi ang chat + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Tanggalin ang chat - - + + Leave chat Umalis sa chat @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Kumuha ng mga mensahe @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Magpadala ng Mensahe - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Idagdag sa mga contact @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Simulan ang chat - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Profile @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Pitaka @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Key - + Back Balik @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Ang iyong username - + ✓ Username available! Ang username ay magagamit - + Continuing will connect this username with your chat key. Ang pagpapatuloy ay magkakokonekta sa username na ito sa iyong chat key. - + Username doesn’t belong to you :( Hindi kabilang sa iyo ang Username :( - + Username already taken :( Nakuha na ang username :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Nakakonekta na ang Username sa iyong chat key at maaaring magamit sa loob ng Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Ang pagpapatuloy ay mangangailangan ng isang transaksyon upang ikonekta ang username sa iyong chat key. - + Custom domain Custom domain - + I want a stateofus.eth domain Gusto ko ng isang stateofus.eth domain - + I own a name on another domain Nagmamay-ari ako ng isang pangalan sa isa pang domain - - + + Connect username with your pubkey - + Terms of name registration Mga tuntunin ng pagpaparehistro ng pangalan - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Ang mga pondo ay idineposito para sa 1 taon. Ang iyong SNT ay mai-lock, ngunit hindi ginugol. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Matapos ang 1 taon, maaari mong palabasin ang pangalan at ibabalik ang iyong deposito, o walang pagkilos upang mapanatili ang pangalan. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Kung ang mga termino ng pagbabago sa kontrata - e.g Status gumagawa ng mga pag-upgrade ng kontrata - May karapatan ang gumagamit na palabasin ang username anuman ang gaganapin sa oras. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Hindi ma-access ng Controller ng kontrata ang iyong mga na-deposito na pondo. Maaari lamang silang ilipat sa address na nagpadala sa kanila. - + Your address(es) will be publicly associated with your ENS name. Ang iyong address (es) ay maiugnay sa publiko sa iyong pangalan ng ENS. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Ang mga username ay nilikha bilang mga subdomain node ng stateofus.eth at napapailalim sa ENS smart contract sa mga terms. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Pinapayagan mo ang kontrata para ilipat ang SNT sa iyong ngalan. Magagawa lamang ito kapag inaprubahan mo ang isang transaksyon upang pahintulutan ang paglipat. - + These terms are guaranteed by the smart contract logic at addresses: Ang mga salitang ito ay ginagarantiyahan ng smart contract logic sa address: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Deposito - + Not enough SNT Hindi sapat ang iyong SNT - + Register Magrehistro @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! Babala! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Mga detalye ng transaksyon - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Paglalarawan @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Browser - + Timeline Timeline - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Paste @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Advanced - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. hindi sapat ang gas ng ETH mo - + Copied Kinopya - + Pasted - - + + Copy to clipboard Copy Kopya @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact Makipag-ugnay @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. Humiling ng transaksyon - + Public chat Pampublikong chat - + Not a contact Hindi isang contact - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Mensahe - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Update - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Magpakita pa @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Mga setting ng notification - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Pribadong key ng komunidad @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up I-back up @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Ang iyong komunidad ay malayang sumali, ngunit ang mga bagong kasapi ay kinakailangang maaprubahan muna ng lumikha ng komunidad - + Your community can only be joined by an invitation from existing community members Ang iyong komunidad ay maaari lamang sumali sa pamamagitan ng isang paanyaya mula sa existing na miyembro ng komunidad - + Your community is free for anyone to join Bukas ang iyong pamayanan para sumali ang sinuman - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_fr.qm b/ui/i18n/qml_fr.qm index c31a2d48b9246d88302113bc0707c5072a79462d..387e4536d0c0345bde08a7e8e2a428948aafa670 100644 GIT binary patch delta 8100 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 IA`3SCKgSDfp8x;= delta 7835 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 IjR`XPKas6Jvj6}9 diff --git a/ui/i18n/qml_fr.ts b/ui/i18n/qml_fr.ts index 22fb3da6db..9f3831c268 100644 --- a/ui/i18n/qml_fr.ts +++ b/ui/i18n/qml_fr.ts @@ -26,7 +26,7 @@ - + Edit Modifier @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transaction en cours..... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Signer avec mot de passe - - - Contact request pending - - - + Connected Connecté - + Disconnected Chat hors ligne - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Envoyer - + Request Address - - + + Request Requête - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Suivant @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Frais de réseau - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Image - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Récupérer plus de messages - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Décliner l'invitation - - + + Add reaction - + Reply Répondre - + More plus @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -838,22 +830,22 @@ Do you wish to override the security check and continue? Renvoyer - + Transaction request Demande de transaction - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -895,8 +887,8 @@ Do you wish to override the security check and continue? - - + + Pending En attente @@ -946,13 +938,13 @@ Do you wish to override the security check and continue? - - + + You Vous - + Clear history Clear History Effacer l'historique @@ -963,7 +955,7 @@ Do you wish to override the security check and continue? Quitter le groupe - + Are you sure you want to leave this chat? @@ -990,193 +982,184 @@ Do you wish to override the security check and continue? Communautés - + Search for communities or topics - + Create a community Créer une communauté - - - - + 1 member - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chats - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Membres - - + + Create category - - + + Invite people Invite People Inviter des personnes - + - + Membership requests Demandes d'adhésion - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Voir le profil - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Notifications - - + + Edit community Modifier la communauté - - + + Create channel Créer une chaîne - + Leave community Quitter la communauté @@ -1197,7 +1180,7 @@ Do you wish to override the security check and continue? Ajouter des membres - + Manage community @@ -1207,47 +1190,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Nouvelle chaîne - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Nom du réseau - + Describe the channel Description du canal - + Pinned messages - + channel description Channel description @@ -1269,14 +1252,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Créer @@ -1291,136 +1275,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Nommez votre communauté - + A catchy name Un nom accrocheur - Give it a short description Donnez une brève description - + What your community is about - - Community color + + Community colour + Community color Couleur de la communauté - + Pick a color - - - Please choose a color - - - - + + Membership requirement Conditions d'adhésion - - + + Require invite from another member Exige l'invitation d'un autre membre - - + + Require approval Exiger une approbation - + + No requirement Sans conditions - + You can require new members to meet certain criteria before they can join. This can be changed at any time Vous pouvez exiger que les nouveaux membres répondent à certains critères avant de pouvoir adhérer. Ces critères peuvent être modifiés à tout moment. - + Save Sauvegarder - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Membres - - + + Invite friends Inviter des amis - + Invite Inviter @@ -1429,23 +1408,23 @@ Do you wish to override the security check and continue? Contacts - + Invite Inviter - + Chat Chat - + Community imported - + Importing community is in progress @@ -1466,12 +1445,11 @@ Do you wish to override the security check and continue? Rejoindre le chat public - No messages Pas de messages - + No search results @@ -1499,36 +1477,41 @@ Do you wish to override the security check and continue? Share Chat Partager un chat + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Supprimer le chat - - + + Leave chat Quitter le chat @@ -1559,7 +1542,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Récupérer les messages @@ -1666,35 +1649,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Envoyer un message - + Reply to @@ -1805,7 +1788,7 @@ Do you wish to override the security check and continue? - + Add to contacts Ajouter aux contacts @@ -1826,14 +1809,14 @@ Do you wish to override the security check and continue? Démarrer le chat - + Pinned by %1 - + - + @@ -1848,7 +1831,7 @@ Do you wish to override the security check and continue? - + Profile Profil @@ -1903,7 +1886,7 @@ Do you wish to override the security check and continue? - + Wallet Portefeuille @@ -1922,14 +1905,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2274,7 +2272,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2282,13 +2280,13 @@ Do you wish to override the security check and continue? - + Key Clé - + Back Retour @@ -2368,151 +2366,151 @@ Do you wish to override the security check and continue? Votre nom d'utilisateur - + ✓ Username available! ✓ Nom d'utilisateur disponible ! - + Continuing will connect this username with your chat key. En continuant, vous connecterez ce nom d'utilisateur avec votre clé. - + Username doesn’t belong to you :( Le nom d'utilisateur ne vous appartient pas :( - + Username already taken :( Nom d'utilisateur déjà pris :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Le nom d'utilisateur est maintenant connecté avec votre clé et peut être utilisé dans Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Pour continuer, vous devrez effectuer une transaction pour connecter votre nom d'utilisateur à votre clé. - + Custom domain Domaine personnalisé - + I want a stateofus.eth domain Je veux un domaine stateofus.eth - + I own a name on another domain Je possède un nom sur un autre domaine - - + + Connect username with your pubkey - + Terms of name registration Conditions d'enregistrement des noms - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Les fonds sont déposés pendant 1 an. Votre SNT sera verrouillé, mais pas dépensé. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Après 1 an, vous pouvez libérer le nom et récupérer votre dépôt, ou ne prendre aucune mesure pour garder le nom. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Si les conditions du contrat changent - par exemple, si Status fait des mises à jour du contrat - l'utilisateur a le droit de libérer le nom d'utilisateur quelle que soit la durée du contrat. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Le contrôleur des contrats ne peut pas accéder à vos fonds déposés. Ils ne peuvent être déplacés qu'à l'adresse qui les a envoyés. - + Your address(es) will be publicly associated with your ENS name. Votre (vos) adresse(s) sera (seront) publiquement associée(s) à votre nom ENS. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Les noms d'utilisateurs sont créés en tant que nœuds de sous domaines de stateofus.eth et sont soumis aux conditions du contrat intelligent ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Vous autorisez le contrat à transférer SNT en votre nom. Cela ne peut se produire que lorsque vous approuvez une transaction pour autoriser le transfert. - + These terms are guaranteed by the smart contract logic at addresses: Ces conditions sont garanties par la logique contractuelle intelligente des adresses : - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Dépôt - + Not enough SNT Pas assez SNT - + Register S'inscrire @@ -2612,14 +2610,14 @@ Do you wish to override the security check and continue? - - + + Warning! Avertissement! - + Change fleet to %1 @@ -3453,9 +3451,9 @@ packs will not need to be re-purchased. Transaction Details Détails de la transaction - - - 9999 Confirmations + + + @@ -3525,7 +3523,8 @@ packs will not need to be re-purchased. - + + Description Description @@ -3926,42 +3925,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Navigateur - + Timeline Chronologie - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3971,12 +3970,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4073,7 +4072,7 @@ Seperate words by a single space. - + I understand @@ -4149,7 +4148,7 @@ Seperate words by a single space. - + Paste Coller @@ -4182,43 +4181,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4307,7 +4308,7 @@ Assets won’t be sent yet. - + Optimal @@ -4316,7 +4317,7 @@ Assets won’t be sent yet. Avancé - + Gwei Gwei @@ -4330,18 +4331,18 @@ Assets won’t be sent yet. Pas assez d'ETH pour le gaz - + Copied Copié - + Pasted - - + + Copy to clipboard Copy Copie @@ -4362,7 +4363,7 @@ Assets won’t be sent yet. - + Contact Contact @@ -4434,52 +4435,52 @@ Assets won’t be sent yet. Demande de transaction - + Public chat Chat public - + Not a contact Pas un contact - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Message - + Bold - + Italic - + Strikethrough - + Code @@ -4519,12 +4520,12 @@ Assets won’t be sent yet. Mettre à jour - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4574,7 +4575,7 @@ Assets won’t be sent yet. - + Show more Afficher plus @@ -4600,7 +4601,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4627,17 +4628,13 @@ Assets won’t be sent yet. Paramètres de notification - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4648,13 +4645,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Clé privée de la communauté @@ -4674,12 +4671,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Sauvegarder @@ -4689,37 +4686,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first L'adhésion à votre communauté est gratuite mais les nouveaux membres doivent d'abord être approuvés par le créateur de la communauté. - + Your community can only be joined by an invitation from existing community members Votre communauté ne peut être rejointe que sur invitation des membres de la communauté - + Your community is free for anyone to join Votre communauté est accessible à tous - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4823,6 +4820,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunityDetailPopup diff --git a/ui/i18n/qml_id.qm b/ui/i18n/qml_id.qm index 7cedef583009ebea1b00976c17a5547ee6a65abb..396b1dc6cbb77e1f252db131ca5ca40737d4cab3 100644 GIT binary patch delta 8058 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 T%!>c|i}hs!j`j{@)TaLf3-ej@ delta 7914 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 diff --git a/ui/i18n/qml_id.ts b/ui/i18n/qml_id.ts index db3f0ff94d..90d5e1f5af 100644 --- a/ui/i18n/qml_id.ts +++ b/ui/i18n/qml_id.ts @@ -26,7 +26,7 @@ - + Edit Edit @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Menunggu transaksi... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Masuk dengan kata sandi - - - Contact request pending - - - + Connected Terhubung - + Disconnected Obrolan offline - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Kirim - + Request Address - - + + Request Permintaan - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Lanjut @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Biaya jaringan - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Gambar - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Ambil lebih banyak pesan - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Tolak undangan - - + + Add reaction - + Reply Balasan - + More lagi @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -838,22 +830,22 @@ Do you wish to override the security check and continue? Kirim ulang - + Transaction request Permintaan Transaksi - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -895,8 +887,8 @@ Do you wish to override the security check and continue? - - + + Pending Tertunda @@ -946,13 +938,13 @@ Do you wish to override the security check and continue? - - + + You Kamu - + Clear history Clear History Bersihkan riwayat @@ -963,7 +955,7 @@ Do you wish to override the security check and continue? Meninggalkan grup - + Are you sure you want to leave this chat? @@ -990,193 +982,184 @@ Do you wish to override the security check and continue? - + Search for communities or topics - + Create a community - - - - + 1 member - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Obrolan - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Anggota - - + + Create category - - + + Invite people Invite People - + - + Membership requests - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Tampilkan profil - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Notifikasi - - + + Edit community - - + + Create channel - + Leave community @@ -1197,7 +1180,7 @@ Do you wish to override the security check and continue? Tambahkan anggota - + Manage community @@ -1207,47 +1190,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - + + + New channel - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name - + Describe the channel Menjelaskan salurannya - + Pinned messages - + channel description Channel description @@ -1269,14 +1252,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Membuat @@ -1291,136 +1275,123 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - - - Name your community - - - + A catchy name - - - Give it a short description - - - + What your community is about - - Community color + + Community colour + Community color - + Pick a color - - - Please choose a color - - - - + + Membership requirement - - + + Require invite from another member - - + + Require approval - + + No requirement - + You can require new members to meet certain criteria before they can join. This can be changed at any time - + Save Menyimpan - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Anggota - - + + Invite friends Mengundang teman-teman - + Invite Undang @@ -1429,23 +1400,23 @@ Do you wish to override the security check and continue? Kontak - + Invite Undang - + Chat Obrolan - + Community imported - + Importing community is in progress @@ -1466,12 +1437,11 @@ Do you wish to override the security check and continue? Bergabunglah dengan obrolan publik - No messages Tidak ada pesan - + No search results @@ -1499,36 +1469,41 @@ Do you wish to override the security check and continue? Share Chat Bagikan obrolan + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Hapus obrolan - - + + Leave chat Tinggalkan obrolan @@ -1559,7 +1534,7 @@ Do you wish to override the security check and continue? Admin - + ↓ Fetch messages Fetch Messages ↓ Mengambil pesan @@ -1666,35 +1641,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Mengirim pesan - + Reply to @@ -1805,7 +1780,7 @@ Do you wish to override the security check and continue? - + Add to contacts Tambahkan ke Kontak @@ -1826,14 +1801,14 @@ Do you wish to override the security check and continue? Memulai obrolan - + Pinned by %1 - + - + @@ -1848,7 +1823,7 @@ Do you wish to override the security check and continue? - + Profile Profil @@ -1903,7 +1878,7 @@ Do you wish to override the security check and continue? - + Wallet Dompet @@ -1922,14 +1897,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2274,7 +2264,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2282,13 +2272,13 @@ Do you wish to override the security check and continue? - + Key Kunci - + Back Kembali @@ -2368,151 +2358,151 @@ Do you wish to override the security check and continue? Nama pengguna Anda - + ✓ Username available! ✓ Nama pengguna tersedia! - + Continuing will connect this username with your chat key. Melanjutkan akan menghubungkan nama pengguna ini dengan kunci obrolan Anda. - + Username doesn’t belong to you :( Nama pengguna bukan milik Anda :( - + Username already taken :( Nama pengguna sudah diambil :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Nama pengguna sudah terhubung dengan kunci obrolan Anda dan dapat digunakan di dalam Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Melanjutkan akan membutuhkan transaksi untuk menghubungkan nama pengguna dengan kunci obrolan Anda saat ini. - + Custom domain Domain khusus - + I want a stateofus.eth domain Saya ingin domain stateofus.eth - + I own a name on another domain Saya memiliki nama di domain lain - - + + Connect username with your pubkey - + Terms of name registration Ketentuan registrasi nama - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Dana disetor selama 1 tahun. SNT Anda akan dikunci, tetapi tidak digunakan. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Setelah 1 tahun, Anda dapat merilis nama dan mendapatkan kembali setoran Anda, atau tidak mengambil tindakan apa pun untuk mempertahankan nama tersebut. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Jika ketentuan kontrak berubah - misalnya Status membuat peningkatan kontrak - pengguna memiliki hak untuk melepaskan nama pengguna terlepas dari waktu yang dipegang. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Pengontrol kontrak tidak dapat mengakses dana yang Anda setorkan. Mereka hanya dapat dipindahkan kembali ke alamat yang mengirim mereka. - + Your address(es) will be publicly associated with your ENS name. Alamat Anda akan dikaitkan secara publik dengan nama ENS Anda. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Nama pengguna dibuat sebagai simpul subdomain stateofus.eth dan tunduk pada persyaratan kontrak pintar ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Anda mengesahkan kontrak untuk mentransfer SNT atas nama Anda. Ini hanya dapat terjadi ketika Anda menyetujui transaksi untuk mengotorisasi transfer. - + These terms are guaranteed by the smart contract logic at addresses: Ketentuan-ketentuan ini dijamin oleh logika kontrak pintar di alamat: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Menyetorkan - + Not enough SNT SNT tidak cukup - + Register Daftar @@ -2612,14 +2602,14 @@ Do you wish to override the security check and continue? - - + + Warning! Peringatan! - + Change fleet to %1 @@ -3453,9 +3443,9 @@ packs will not need to be re-purchased. Transaction Details Detil transaksi - - - 9999 Confirmations + + + @@ -3525,7 +3515,8 @@ packs will not need to be re-purchased. - + + Description Deskripsi @@ -3926,42 +3917,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Browser - + Timeline Linimasa - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3971,12 +3962,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4073,7 +4064,7 @@ Seperate words by a single space. - + I understand @@ -4149,7 +4140,7 @@ Seperate words by a single space. - + Paste Tempel @@ -4182,43 +4173,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4307,7 +4300,7 @@ Assets won’t be sent yet. - + Optimal @@ -4316,7 +4309,7 @@ Assets won’t be sent yet. Maju - + Gwei Gwei @@ -4330,18 +4323,18 @@ Assets won’t be sent yet. ETH untuk gas tidak cukup - + Copied Disalin - + Pasted - - + + Copy to clipboard Copy Salinan @@ -4362,7 +4355,7 @@ Assets won’t be sent yet. - + Contact Kontak @@ -4434,52 +4427,52 @@ Assets won’t be sent yet. Minta transaksi - + Public chat Obrolan publik - + Not a contact Bukan kontak - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Pesan - + Bold - + Italic - + Strikethrough - + Code @@ -4519,12 +4512,12 @@ Assets won’t be sent yet. Memperbarui - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4574,7 +4567,7 @@ Assets won’t be sent yet. - + Show more Menampilkan lebih banyak @@ -4600,7 +4593,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4627,17 +4620,13 @@ Assets won’t be sent yet. - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4648,13 +4637,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key @@ -4674,12 +4663,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up @@ -4689,37 +4678,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first - + Your community can only be joined by an invitation from existing community members - + Your community is free for anyone to join - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4823,6 +4812,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunityDetailPopup diff --git a/ui/i18n/qml_it.qm b/ui/i18n/qml_it.qm index 4c655f063a59845a22fa30741af78ecec5473443..a9221fb5404803f6c7cd5b9b642cbcf52a330518 100644 GIT binary patch delta 8116 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 GyZ-~?Wjm_? diff --git a/ui/i18n/qml_it.ts b/ui/i18n/qml_it.ts index 2140bdca85..df80f54676 100644 --- a/ui/i18n/qml_it.ts +++ b/ui/i18n/qml_it.ts @@ -26,7 +26,7 @@ - + Edit Modifica @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transazione in attesa... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Firma con password - - - Contact request pending - - - + Connected Connesso - + Disconnected Chat offline - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Invia - + Request Address - - + + Request Richiedi - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Prossimo @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Commissione di rete - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Immagine - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Recuperare altri messaggi - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Rifiuta l'invito - - + + Add reaction - + Reply Rispondi - + More di più @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -838,22 +830,22 @@ Do you wish to override the security check and continue? Invia di nuovo - + Transaction request Richiesta Transazione - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -895,8 +887,8 @@ Do you wish to override the security check and continue? - - + + Pending In attesa @@ -946,13 +938,13 @@ Do you wish to override the security check and continue? - - + + You Tu - + Clear history Clear History Cancellare la cronologia @@ -963,7 +955,7 @@ Do you wish to override the security check and continue? Abbandona gruppo - + Are you sure you want to leave this chat? @@ -990,193 +982,184 @@ Do you wish to override the security check and continue? Comunità - + Search for communities or topics - + Create a community Crea una comunità - - - - + 1 member - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chat - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Partecipanti - - + + Create category - - + + Invite people Invite People Invita - + - + Membership requests Richieste di adesione - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Visualizza profilo - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Notifiche - - + + Edit community Modifica comunità - - + + Create channel Crea un canale - + Leave community Abbandona la comunità @@ -1197,7 +1180,7 @@ Do you wish to override the security check and continue? Aggiungi partecipanti - + Manage community @@ -1207,47 +1190,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Nuovo canale - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Nome canale - + Describe the channel - + Pinned messages - + channel description Channel description @@ -1269,14 +1252,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Crea @@ -1291,136 +1275,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Dai un nome alla tua comunità - + A catchy name Un nome accattivante - Give it a short description Fornisci una breve descrizione - + What your community is about - - Community color + + Community colour + Community color Colore della comunità - + Pick a color - - - Please choose a color - - - - + + Membership requirement Requisito di iscrizione - - + + Require invite from another member Richiedi invito da un altro membro - - + + Require approval Richiedi approvazione - + + No requirement Nessun requisito - + You can require new members to meet certain criteria before they can join. This can be changed at any time È possibile richiedere ai nuovi membri di soddisfare determinati criteri prima che possano aderire. Questo può essere cambiato in qualsiasi momento - + Save Salva - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Partecipanti - - + + Invite friends Invita amici - + Invite Invita @@ -1429,23 +1408,23 @@ Do you wish to override the security check and continue? Contatti - + Invite Invita - + Chat Chat - + Community imported - + Importing community is in progress @@ -1466,12 +1445,11 @@ Do you wish to override the security check and continue? Entra in una chat pubblica - No messages Nessun messaggio - + No search results @@ -1499,36 +1477,41 @@ Do you wish to override the security check and continue? Share Chat Condividi chat + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Elimina chat - - + + Leave chat Lascia la chat @@ -1559,7 +1542,7 @@ Do you wish to override the security check and continue? Amministratore - + ↓ Fetch messages Fetch Messages ↓ Recupera messaggi @@ -1666,35 +1649,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Invia messaggio - + Reply to @@ -1805,7 +1788,7 @@ Do you wish to override the security check and continue? - + Add to contacts Aggiungi ai contatti @@ -1826,14 +1809,14 @@ Do you wish to override the security check and continue? inizia chat - + Pinned by %1 - + - + @@ -1848,7 +1831,7 @@ Do you wish to override the security check and continue? - + Profile Profilo @@ -1903,7 +1886,7 @@ Do you wish to override the security check and continue? - + Wallet Portafoglio @@ -1922,14 +1905,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2274,7 +2272,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2282,13 +2280,13 @@ Do you wish to override the security check and continue? - + Key Chiave - + Back Indietro @@ -2368,151 +2366,151 @@ Do you wish to override the security check and continue? Il tuo nome utente - + ✓ Username available! ✓ Nome utente disponibile! - + Continuing will connect this username with your chat key. Continuando assocerai questo nome utente alla tua chiave di chat. - + Username doesn’t belong to you :( Il nome utente non ti appartiene :( - + Username already taken :( Nome utente già preso :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Il nome utente è già collegato alla tua chiave di chat e può essere utilizzato all'interno di Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Per continuare sarà necessaria una transazione per collegare il nome utente con la tua chiave di chat. - + Custom domain Dominio personalizzato - + I want a stateofus.eth domain Voglio un dominio stateofus.eth - + I own a name on another domain Possiedo un nome su un altro dominio - - + + Connect username with your pubkey - + Terms of name registration Termini di registrazione del nome - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. I fondi vengono depositati per 1 anno. Il tuo SNT sarà bloccato, ma non speso. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Dopo 1 anno, puoi rilasciare il nome e riavere il tuo deposito oppure non agire per mantenerlo. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Se i termini del contratto cambiano - ad es. Status effettua aggiornamenti del contratto - l'utente ha il diritto di rilasciare il nome utente indipendentemente dal tempo trascorso. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Il controllore del contract non può accedere ai fondi depositati. Possono solo essere spostati indietro all'indirizzo che li ha inviati. - + Your address(es) will be publicly associated with your ENS name. I tuoi indirizzi saranno associati pubblicamente al tuo nome ENS. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. I nomi utente vengono creati come nodi sottodominio di stateofus.eth e sono soggetti ai termini dello Smart Contract ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Autorizzi il contract a trasferire SNT per tuo conto. Ciò può verificarsi solo quando si approva una transazione per autorizzare il trasferimento. - + These terms are guaranteed by the smart contract logic at addresses: Questi termini sono garantiti dalla logica dello Smart Contract agli indirizzi: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Deposita - + Not enough SNT Non hai abbastanza Token SNT - + Register Registrati @@ -2612,14 +2610,14 @@ Do you wish to override the security check and continue? - - + + Warning! Attenzione! - + Change fleet to %1 @@ -3453,9 +3451,9 @@ packs will not need to be re-purchased. Transaction Details Dettagli della transazione - - - 9999 Confirmations + + + @@ -3525,7 +3523,8 @@ packs will not need to be re-purchased. - + + Description Descrizione @@ -3926,42 +3925,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Browser - + Timeline Timeline - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3971,12 +3970,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4073,7 +4072,7 @@ Seperate words by a single space. - + I understand @@ -4149,7 +4148,7 @@ Seperate words by a single space. - + Paste Incolla @@ -4182,43 +4181,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4307,7 +4308,7 @@ Assets won’t be sent yet. - + Optimal @@ -4316,7 +4317,7 @@ Assets won’t be sent yet. Avanzate - + Gwei Gwei @@ -4330,18 +4331,18 @@ Assets won’t be sent yet. ETH non sufficiente per il gas - + Copied Copiato - + Pasted - - + + Copy to clipboard Copy Copia @@ -4362,7 +4363,7 @@ Assets won’t be sent yet. - + Contact È nella lista contatti @@ -4434,52 +4435,52 @@ Assets won’t be sent yet. Richiedi transazione - + Public chat Chat pubblica - + Not a contact Non è nella lista contatti - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Scrivi un messaggio... - + Bold - + Italic - + Strikethrough - + Code @@ -4519,12 +4520,12 @@ Assets won’t be sent yet. Aggiorna - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4574,7 +4575,7 @@ Assets won’t be sent yet. - + Show more Mostra di più @@ -4600,7 +4601,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4627,17 +4628,13 @@ Assets won’t be sent yet. Impostazioni sulle notifiche - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4648,13 +4645,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Chiave privata della comunità @@ -4674,12 +4671,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Backup @@ -4689,37 +4686,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first La tua comunità è libera , ma i nuovi membri devono prima essere approvati dal creatore della comunità - + Your community can only be joined by an invitation from existing community members Ci si può unire alla tua comunità solo su invito di membri già iscritti - + Your community is free for anyone to join La tua community permette a chiunque di unirsi - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4823,6 +4820,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunityDetailPopup diff --git a/ui/i18n/qml_ko.qm b/ui/i18n/qml_ko.qm index fb80881e66b4b15bae87202e24763acbd5978781..3ebc78aff908522ff2b08008ae3e4dd6ea6b2bc2 100644 GIT binary patch delta 8042 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 e=Cw*jdoqvoXF6qG@5`)8w;v#ujCN#Jw*L>o*HS - + Edit 편집 @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... 트랜잭션 대기 중... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password 비밀번호로 서명 - - - Contact request pending - - - + Connected 연결됨 - + Disconnected 연결 중... - + This user has been blocked. - + - + Type a message. - - - + + + - + Send 보내기 - + Request Address - - + + Request 요청 - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next 다음 @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee 네트워크 수수료 - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image 이미지 - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ 메시지 더 가져오기 - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? 초대 거절 - - + + Add reaction - + Reply 답장 - + More 더 보기 @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? 재전송 - + Transaction request 트랜잭션 요청 - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending 대기 중 @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You 사용자 - + Clear history Clear History 기록 삭제 @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? 그룹 나가기 - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? 커뮤니티 - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? 커뮤니티 가져오기 - + Create a community 커뮤니티 만들기 - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats 채팅 - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members 멤버 - - + + Create category - - + + Invite people Invite People 친구 초대 - + - + Membership requests 멤버십 요청 - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile 프로필 보기 - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications 알림 - - + + Edit community 커뮤니티 편집 - - + + Create channel 채널 만들기 - + Leave community 커뮤니티 나가기 @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? 멤버 추가 - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + 새 채널 - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name 채널명 - + Describe the channel 채널 설명 - + Pinned messages 고정된 메시지 - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create 만들기 @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community 커뮤니티 이름 지정 - + A catchy name 기억하기 쉬운 이름 - Give it a short description 짧은 설명을 더하세요 - + What your community is about - - Community color + + Community colour + Community color 커뮤니티 색상 - + Pick a color - - - Please choose a color - - - - + + Membership requirement 멤버십 요건 - - + + Require invite from another member 다른 멤버의 초대 필요 - - + + Require approval 승인 필요 - + + No requirement 요구 사항 없음 - + You can require new members to meet certain criteria before they can join. This can be changed at any time 신규 회원이 가입하기 전에 특정 기준을 충족하도록 요구할 수 있습니다. 기준은 언제든지 변경할 수 있습니다. - + Save 저장 - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members 멤버 - - + + Invite friends 친구 초대 - + Invite 초대 @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? 연락처 - + Invite 초대 - + Chat 채팅 - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? 오픈채팅 참여 - No messages 메시지 없음 - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat 채팅 공유 + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat 채팅방 삭제 - - + + Leave chat 채팅방 나가기 @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? 관리자 - + ↓ Fetch messages Fetch Messages ↓ 메시지 가져오기 @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin 고정 해제 - + Pin 고정 - - + + Copy link - + Edit message - + Send message 메시지 보내기 - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts 연락처에 추가 @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? 채팅 시작 - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile 프로필 @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet 지갑 @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key - + Back 뒤로 @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? 사용자 이름 - + ✓ Username available! ✓ 사용자 이름을 사용할 수 있습니다! - + Continuing will connect this username with your chat key. 계속하면 이 사용자 이름이 채팅 키와 연결됩니다. - + Username doesn’t belong to you :( 소유한 사용자 이름이 아닙니다 :( - + Username already taken :( 이미 사용 중인 이름입니다 :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. 사용자 이름은 사용자의 채팅 키와 연결되며, 스테이터스에서 사용 가능합니다. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. 사용자 이름과 현재 키를 연결하는 트랜잭션이 필요합니다. - + Custom domain 커스텀 도메인 - + I want a stateofus.eth domain stateofus.eth 도메인 획득하기 - + I own a name on another domain 다른 도메인의 이름 가져오기 - - + + Connect username with your pubkey - + Terms of name registration 이름 등록 약관 - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. 자산은 1년 동안 예치됩니다. 여러분의 SNT는 잠기게 되며, 별도로 지출되지 않습니다. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. 1년 후, 등록한 이름의 계약을 해지하고 예치금을 돌려받을 수 있습니다. 이름을 유지하고 싶을 경우에는 별도의 조치를 할 필요가 없습니다. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. 스테이터스가 컨트랙트를 업그레이드 하는 등으로 이용 약관을 변경하는 경우, 사용자는 남은 기간에 상관 없이 사용자 이름을 해지할 수 있습니다. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. 컨트랙트 관리자는 사용자의 예치금에 접근할 수 없습니다. 이는 등록된 주소로만 반환됩니다. - + Your address(es) will be publicly associated with your ENS name. 사용자의 주소는 ENS 이름과 공개적으로 연동됩니다. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. 사용자 이름은 stateofus.eth 의 서브 도메인 노드로 생성되며, ENS 스마트 컨트랙트 이용 약관을 따릅니다. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. 사용자를 대신하여 SNT를 양도하는 계약을 승인합니다. 이는 트랜잭션에 전송 권한을 부여할 때부터 유효합니다. - + These terms are guaranteed by the smart contract logic at addresses: 이러한 조항은 다음 주소의 스마트 컨트랙트 로직으로 보장됩니다: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit 입금 - + Not enough SNT SNT가 부족합니다 - + Register 등록하기 @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! 주의! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details 트랜잭션 세부정보 - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description 설명 @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser 브라우저 - + Timeline 타임라인 - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste 붙여넣기 @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. 고급 설정 - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. 가스로 사용할 ETH가 부족합니다 - + Copied 클립보드에 복사됨 - + Pasted - - + + Copy to clipboard Copy 클립보드에 복사 @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact 연락처에 등록되어 있음 @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. 트랜잭션 요청 - + Public chat 오픈채팅 - + Not a contact 연락처에 없음 - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message 메시지 - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. 업데이트 - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more 더 보기 @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. 알림 설정 - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key 커뮤니티 개인키 @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up 백업 @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first 커뮤니티는 무료로 가입할 수 있지만 신규 회원은 먼저 커뮤니티 생성인의 승인을 받아야 합니다. - + Your community can only be joined by an invitation from existing community members 사용자의 커뮤니티는 오직 기존 멤버의 초대를 통해서만 참여할 수 있습니다 - + Your community is free for anyone to join 사용자의 커뮤니티는 누구나 자유롭게 가입할 수 있습니다 - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_pt_BR.qm b/ui/i18n/qml_pt_BR.qm index 0fbf6d4bf1c24cab15041cca8aa79899752d3f87..5370e251b87ec0d1bc65aeb10f7fc3b292a250db 100644 GIT binary patch delta 8115 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 delta 7812 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 diff --git a/ui/i18n/qml_pt_BR.ts b/ui/i18n/qml_pt_BR.ts index b80c9ab12c..cb7babd4f3 100644 --- a/ui/i18n/qml_pt_BR.ts +++ b/ui/i18n/qml_pt_BR.ts @@ -26,7 +26,7 @@ - + Edit Editar @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Transação pendente ... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Assinar com senha - - - Contact request pending - - - + Connected Conectado - + Disconnected Bate-papo offline - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Enviar - + Request Address - - + + Request Solicitação - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Próximo @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Taxa de rede - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Imagem - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Buscar mais mensagens - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Recusar o convite - - + + Add reaction - + Reply Responder - + More mais @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? Reenviar - + Transaction request Solicitação de transação - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending Pendente @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You Você - + Clear history Clear History Apagar histórico @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Sair do grupo - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Comunidades - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Importar uma comunidade - + Create a community Criar uma comunidade - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Chats - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Membros - - + + Create category - - + + Invite people Invite People Convide pessoas - + - + Membership requests Pedidos de participação - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Ver perfil - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Notificações - - + + Edit community Editar comunidade - - + + Create channel Criar um canal - + Leave community Deixar a comunidade @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Adicionar membros - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Novo canal - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Nome do canal - + Describe the channel Descreva o canal - + Pinned messages Mensagens fixadas - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Criar @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Dê um nome para sua comunidade - + A catchy name Um nome atraente - Give it a short description Dê uma breve descrição - + What your community is about - - Community color + + Community colour + Community color Cor da comunidade - + Pick a color - - - Please choose a color - - - - + + Membership requirement Requisitos de participação - - + + Require invite from another member Exigir convite de outro membro - - + + Require approval Exigir aprovação - + + No requirement Nenhuma exigência - + You can require new members to meet certain criteria before they can join. This can be changed at any time Você pode exigir que novos membros atendam a certos critérios antes que eles possam participar. Isso pode ser alterado a qualquer momento - + Save Salvar - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Membros - - + + Invite friends Convide amigos - + Invite Convidar @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Contatos - + Invite Convidar - + Chat Bate-papo - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Participar do bate-papo público - No messages Nenhuma mensagem - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Compartilhar bate-papo + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Excluir conversa - - + + Leave chat Sair da conversa @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Administrador - + ↓ Fetch messages Fetch Messages ↓ Buscar mensagens @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin Desafixar - + Pin Fixar - - + + Copy link - + Edit message - + Send message Enviar mensagem - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Adicionar aos contatos @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Iniciar bate-papo - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Perfil @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Carteira @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Chave - + Back Voltar @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Seu nome de usuário - + ✓ Username available! ✓ Nome de usuário disponível! - + Continuing will connect this username with your chat key. Continuar conectará esse nome de usuário com sua chave de bate-papo. - + Username doesn’t belong to you :( O nome de usuário não pertence a você :( - + Username already taken :( Nome de usuário já utilizado :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. O nome de usuário já está conectado à sua chave de bate-papo e pode ser usado dentro do Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Continuar exigirá uma transação para conectar o nome de usuário com sua chave de bate-papo atual. - + Custom domain Domínio personalizado - + I want a stateofus.eth domain Eu quero um domínio stateofus.eth - + I own a name on another domain Eu possuo um nome em outro domínio - - + + Connect username with your pubkey - + Terms of name registration Termos de cadastro de nome - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Os fundos são depositados por 1 ano. Seu SNT será bloqueado, mas não será gasto. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Após 1 ano, você pode liberar o nome e receber seu depósito de volta ou não fazer nenhuma ação para manter o nome. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Se os termos do contrato mudarem — por exemplo, o Status fizer atualizações do contrato — o usuário tem o direito de liberar o nome de usuário, independentemente do tempo de espera. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. O controlador do contrato não pode acessar seus fundos depositados. Eles só podem ser movidos de volta para o endereço que os enviou. - + Your address(es) will be publicly associated with your ENS name. Seus endereços serão publicamente associados ao seu nome no ENS. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Os nomes de usuários são criados como nós de subdomínio stateofus.eth e estão sujeitos aos termos do contrato inteligente do ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Você autoriza o contrato a transferir o SNT em seu nome. Isso só pode ocorrer quando você aprovar uma transação para autorizar a transferência. - + These terms are guaranteed by the smart contract logic at addresses: Estes termos são garantidos pela lógica do contrato inteligente nos endereços: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Depósito - + Not enough SNT SNT insuficiente - + Register Cadastro @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! Atenção! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Detalhes da transação - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Descrição @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Navegador - + Timeline Linha do tempo - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Colar @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Avançado - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. Não há ETH suficiente para o gás - + Copied Copiado - + Pasted - - + + Copy to clipboard Copy Copiar @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact Contato @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. Solicitar transação - + Public chat Conversa pública - + Not a contact Não é um contato - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Mensagem - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Atualizar - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Mostrar mais @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Configurações de notificação - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Chave privada da comunidade @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Cópia de segurança @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Sua comunidade é livre para participar, mas novos membros são obrigados a ser aprovados pelo criador da comunidade primeiro - + Your community can only be joined by an invitation from existing community members Sua comunidade só pode ser acessada por convite de membros existentes da comunidade - + Your community is free for anyone to join Sua comunidade é livre para que qualquer pessoa possa participar - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_ru.qm b/ui/i18n/qml_ru.qm index 0a1941101962090d50f2c68c6e8225d438440421..c6903bad1c5fc7a61d72a4697c2e7ef950934bff 100644 GIT binary patch delta 8092 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 delta 7819 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 diff --git a/ui/i18n/qml_ru.ts b/ui/i18n/qml_ru.ts index c95c36ead7..6c1182fc34 100644 --- a/ui/i18n/qml_ru.ts +++ b/ui/i18n/qml_ru.ts @@ -26,7 +26,7 @@ - + Edit Изменить @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... Транзакция в ожидании подтверждения... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Подписать с паролем - - - Contact request pending - - - + Connected Подключен - + Disconnected Чат не в сети - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Отправить - + Request Address - - + + Request Запрос - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Далее @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Комиссия сети - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Изображение - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓ Открыть больше сообщений - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Отказаться от приглашения - - + + Add reaction - + Reply Ответить - + More больше @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? Отправить повторно - + Transaction request Запрос транзакции - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending В ожидании @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You Вы - + Clear history Clear History Очистить историю @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Покинуть группу - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Сообщества - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Импортировать сообщество - + Create a community Создать сообщество - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Чаты - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Участники - - + + Create category - - + + Invite people Invite People Пригласить друзей - + - + Membership requests Запросы на участие - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Просмотреть профиль - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Уведомления - - + + Edit community Редактировать сообщество - - + + Create channel Создать канал - + Leave community Покинуть сообщество @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Добавить участников - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Новый канал - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Название канала - + Describe the channel - + Pinned messages - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Создать @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Назовите ваше сообщество - + A catchy name Запоминающееся имя - Give it a short description Дайте краткое описание - + What your community is about - - Community color + + Community colour + Community color Цвет сообщества - + Pick a color - - - Please choose a color - - - - + + Membership requirement Требование к участию - - + + Require invite from another member Требуется приглашение от другого участника - - + + Require approval Требуется одобрение - + + No requirement Не требуется - + You can require new members to meet certain criteria before they can join. This can be changed at any time Вы можете потребовать, чтобы новые участники соответствовали определенным критериям. Это условие можно изменить в любое время - + Save Сохранить - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Участники - - + + Invite friends Пригласить друзей - + Invite Пригласить @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Контакты - + Invite Пригласить - + Chat Чат - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Присоединиться к публичному чату - No messages Нет сообщений - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Поделиться чатом + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Удалить чат - - + + Leave chat Выйти из чата @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Администратор - + ↓ Fetch messages Fetch Messages ↓ Получить сообщения @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Отправить сообщение - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Добавить в контакты @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Начать общение в чате - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Профиль @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Кошелек @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Ключ - + Back Назад @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Ваше имя пользователя - + ✓ Username available! ✓ Имя пользователя доступно! - + Continuing will connect this username with your chat key. Если вы продолжите, это имя пользователя будет привязано к вашему коду контакта. - + Username doesn’t belong to you :( Имя пользователя вам не принадлежит :( - + Username already taken :( Это имя пользователя уже занято :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Имя пользователя уже связано с вашим кодом контакта и может быть использовано в Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Для продолжения потребуется транзакция, чтобы связать имя пользователя с текущим кодом контакта. - + Custom domain Пользовательский домен - + I want a stateofus.eth domain Я хочу имя на домене stateofus.eth - + I own a name on another domain У меня есть имя на другом домене - - + + Connect username with your pubkey - + Terms of name registration Условия регистрации имени - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Средства вносятся на 1 год. Ваши SNT будут заблокированы, но не потрачены. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. Через 1 год вы можете освободить имя и получить свой депозит обратно или ничего не делать и тогда имя останется вашим. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Если условия контракта меняются (например, Status обновляет контракт), то пользователь имеет право освободить имя пользователя без учета времени, прошедшего с момента его регистрации. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Контролер контракта не может получить доступ к внесенным вами средствам. Их можно переместить обратно только на тот адрес, с которого они были отправлены. - + Your address(es) will be publicly associated with your ENS name. Ваш(и) адрес(а) будет(ут) публично связан(ы) с вашим ENS-именем. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Имена пользователей создаются в качестве нод субдоменов stateofus.eth и подчиняются условиям смарт-контракта ENS. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Вы даете разрешение контракту перевести SNT от вашего имени. Это может произойти только если вы одобрите транзакцию для авторизации перевода. - + These terms are guaranteed by the smart contract logic at addresses: Эти условия гарантируются смарт-контрактом по адресам: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Депозит - + Not enough SNT Недостаточно SNT - + Register Зарегистрировать @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! Предупреждение! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Детали транзакции - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Описание @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Браузер - + Timeline Временная шкала - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Вставить @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Расширенные настройки - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. Недостаточно ETH, чтобы заплатить за газ - + Copied Скопировано - + Pasted - - + + Copy to clipboard Copy Копировать @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact Есть в контактах @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. Запросить транзакцию - + Public chat Публичный чат - + Not a contact Отсутствует в контактах - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Сообщение - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Обновить - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Показать больше @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Настройки уведомлений - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Приватный ключ сообщества @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Резервная копия @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Сообщество открытое, но новые участники должны быть одобрены создателем сообщества - + Your community can only be joined by an invitation from existing community members К сообществу можно присоединиться только по приглашению существующих членов сообщества - + Your community is free for anyone to join Сообщество открыто для всех желающих - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_tr.qm b/ui/i18n/qml_tr.qm index 8cd7cf8d0f3b3ec7b5d62076f352b7b686a4d5aa..c45fed0fbd07004f8c8774f9598ee245d37b57a6 100644 GIT binary patch delta 8094 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 diff --git a/ui/i18n/qml_tr.ts b/ui/i18n/qml_tr.ts index 1e3a0274e0..e17c7933b5 100644 --- a/ui/i18n/qml_tr.ts +++ b/ui/i18n/qml_tr.ts @@ -26,7 +26,7 @@ - + Edit Düzenle @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... İşlem bekleniyor ... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password Şifre ile oturum açın - - - Contact request pending - - - + Connected Bağlandı - + Disconnected Sohbet Çevrimdışı - + This user has been blocked. - + - + Type a message. - - - + + + - + Send Gönder - + Request Address - - + + Request İstek - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next Sonraki @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee Ağ ücreti - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image Resim - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages Daha fazla mesaj getir - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? Daveti reddet - - + + Add reaction - + Reply Cevap - + More Daha @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? Yeniden gönder - + Transaction request İşlem İsteği - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending Bekliyor @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You Sen - + Clear history Clear History Geçmişi temizle @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? Gruptan ayrıl - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? Topluluklar - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? Bir topluluğu içe aktar - + Create a community Bir topluluk oluşturun - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats Sohbetler - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members Üyeler - - + + Create category - - + + Invite people Invite People İnsanları davet et - + - + Membership requests Üyelik talepleri - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile Profili Görüntüle - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications Bildirimler - - + + Edit community Topluluğu düzenleyin - - + + Create channel Kanal oluştur - + Leave community Topluluktan ayrıl @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? Üye ekle - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + Yeni kanal - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name Kanal ismi - + Describe the channel Kanalı açıklayın - + Pinned messages - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create Oluştur @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community Topluluğunuzu adlandırın - + A catchy name Akılda kalıcı bir isim - Give it a short description Kısa bir açıklama yapın - + What your community is about - - Community color + + Community colour + Community color Topluluk rengi - + Pick a color - - - Please choose a color - - - - + + Membership requirement Üyelik şartı - - + + Require invite from another member Başka bir üyeden davet iste - - + + Require approval Onay gerekli - + + No requirement Gerek yok - + You can require new members to meet certain criteria before they can join. This can be changed at any time Yeni üyelerin katılmadan önce belirli kriterleri karşılamasını zorunlu kılabilirsiniz. Bu herhangi bir zamanda değiştirilebilir - + Save Kaydet - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members Üyeler - - + + Invite friends Arkadaşlarınızı davet edin - + Invite Davet et @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? Kişiler - + Invite Davet et - + Chat Sohbet - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? Herkese açık sohbete katılın - No messages Mesaj yok - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat Sohbeti paylaş + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat Sohbeti sil - - + + Leave chat Sohbetten ayrıl @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? Yönetici - + ↓ Fetch messages Fetch Messages Mesajları getir @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message Mesaj gönder - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts Rehbere ekle @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? Sohbeti başlat - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile Profil @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet Cüzdan @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key Anahtar - + Back Geri @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? Kullanıcı adınız - + ✓ Username available! ✓ Kullanıcı adı kullanılabilir! - + Continuing will connect this username with your chat key. Devam ederseniz, bu kullanıcı adı sohbet anahtarınıza bağlanır. - + Username doesn’t belong to you :( Kullanıcı adı size ait değil :( - + Username already taken :( Bu kullanıcı adı daha önce zaten alınmış :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. Kullanıcı adı sohbet anahtarınıza zaten bağlı ve Status içinde kullanılabilir. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. Devam etmek için kullanıcı adını mevcut sohbet anahtarınıza bağlamaki çin işlem yapmanız gerekiyor. - + Custom domain Özel alan adı - + I want a stateofus.eth domain Stateofus.eth alan adı istiyorum - + I own a name on another domain Başka bir alan adında bir isme sahibim - - + + Connect username with your pubkey - + Terms of name registration İsim kaydı şartları - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. Fonlar 1 yıl süreyle yatırılır. SNT'niz kilitlenecek, ancak harcanmayacak. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. 1 yıl sonra adınızdan vazgeçebilirsiniz ve depozitonuzu geri alabilirsiniz.Veya isterseniz adınızın kayıtta olması için herhangi bir işlem yapmanıza gerek yok. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. Sözleşme şartları değiştiğinde (örneğin, Status sözleşmede güncellemeler yapıyorsa )Kullanıcı tutulmuş zaman her ne olursa olsun kullanıcı adını serbest bırakmak için hakka sahiptir. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. Sözleşme denetleyicisi yatırdığınız paraya erişemez. Yalnızca onları gönderen adrese geri taşıyabilir. - + Your address(es) will be publicly associated with your ENS name. Adresleriniz ENS adınızla herkese açık olarak ilişkilendirilecektir. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. Kullanıcı adları stateofus.eth alt etki alanı düğümleri olarak oluşturulur ve ENS akıllı sözleşme koşullarına tabidir. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. Sizin adınıza SNT'yi transfer etmek için sözleşmeye yetki verirsiniz. Bu yalnızca aktarıma yetkilendirmek üzere bir işlemi onayladığınızda oluşabilir. - + These terms are guaranteed by the smart contract logic at addresses: Bu koşullar, adreslerdeki akıllı sözleşme mantığı ile garanti edilir: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit Depozito - + Not enough SNT Yeterli SNT yok - + Register Kayıt ol @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! Uyarı! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details Ödeme detayları - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description Açıklama @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser Tarayıcı - + Timeline Zaman çizelgesi - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste Yapıştır @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. Gelişmiş - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. Gas için yeterli ETH yok - + Copied Kopyalandı - + Pasted - - + + Copy to clipboard Copy Kopyala @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact İletişim @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. İşlem iste - + Public chat Genel sohbet - + Not a contact Ekli Değil - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message Mesaj - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. Güncelleme - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more Daha fazla göster @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. Bildirim ayarları - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key Topluluk özel anahtarı @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up Yedekleme @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first Topluluğunuza katılmak ücretsizdir, ancak yeni üyelerin önce topluluk oluşturucu tarafından onaylanması gerekir - + Your community can only be joined by an invitation from existing community members Topluluğunuza yalnızca mevcut topluluk üyelerinden gelen bir davetle katılabilir - + Your community is free for anyone to join Topluluğunuz herkesin katılması için ücretsizdir - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_ur.qm b/ui/i18n/qml_ur.qm index 3cf87094059aa81c770eaed55852cc758a6f0de4..756a889a06bdd5fe62c840978f315b50dfd4aa4c 100644 GIT binary patch delta 7890 zcmZWu30RG5*Iw^_-~CQ|qCrTZfs%+Kv(sR%I4a59up4MNRA#oJ3<){u#4%HbM3l^w z$`HqpWH{zz9*+u1{I~P{*LVHb_2XWk-o^ z1xNU!q+E9vj<^!PbOTn|@c{9E*buoC5x+T+sMkm0v$BXh0*T+ff@tJe*lnX@BpIG`-ndQXU23V{wnMee7@$1i5iH%T|ksPjrcp`iB^~p|6(0cY8>%zkHL;4 z{{3yDHQPxrHNf+2H%MsJlW4m?EC${_orKmKuu>}$1||_5wi@Nbmym#j8jd zh375|BOwg1UX@8mfddb-N%*<4mzzo0rX>3G7YPLji6)qYB0VuiJ4v{Do*2t$(wxgA zs$ET5!{Z%9`!0}f4LsdeM@IMjiPTkO{Jt8F*plsak!ZslvP%IE7F{KKYd|brAcsa% zBJc0iX;mvCUq5o<5oh|7x>$oFJG)bt5ivwItI0VLAr8cN*}-k7)b|8u}Fo^>{(UMjI||2l_6V} zET?FPQljM^6rGL0D`b`7PtWr+R$AryCc6VbgHln|PZ z(6y)OvlbC~8dlKsJ5;=G3o^t$o*wtXN|t$1)o^E|SPH%V8!Oq?ncn%rlZMy2V5rN_A>J_jESMi%u-{JPdd${tg0qj z?Z#|9*`DaVJ+o~M=5hSWWcGAH{txcMWcG%twJ~D$7RCYc#Z2xe8=`Y5Odi`6F>S$| zbn8ou^LOT)CnoN>pE=(i0`=rJbNRp(BCmbSl_ZWB+gj$@fJ;Qr-!s>H=MjC(VJdc} z5q)^TR60Y{di7&&uCgTh(we#J4ae4-Fz-b}88O|~F!ci=FyBWhG-2Mm}2Gza3EGz%xeJ2 z0#X%*)VWZ^1V!SHc_2}uVrdgKATL#<|1BXc2Pw9Gn+o0Nr`YCW4K07I$Q(YB$YhBk zb1B}Bj#cdPc!`C*Q0$HA3`fr?a$@n^yAnlC(PPXfDhdWW5)JoK7z!?52Aj7iju}Tn z!8$5RhXJzdDT<425G#u!MR~X>k?AjrTZMX%sITI#G7<=!RXo}N$lG*QynlfE9Dg^U2V|&;t@!3$% z_D{=%7JIT@0i{r?h3v0geTg>3u>J!|P$b^60S8=(c3ZIldHKXBUb3URCK9#$lMQP1 zn&`!5cJgLO@2VU&c4jLSr{nCjUuucz`+`lN0YslSuroF(Ay|L2v;I6p^m`qkK?pk0wKA^oQbm^(b)-{?OxQ7 zC#jtCSAW!kx14KqH{}0T8_x9z%JAwku9qL69l43?(;M0>-scAPTZ?Kqmm3(d8N#IF z2JQqxRWCTdsMSa}9XIM4R`|9vH*O-*H8GDH-|H+KSjo-(1cYXlafTsq*t`#yRJoXF zrHWgY;|tO*6tPQs?&44d(V24Y(lc~T zr(bZ_{;ETl^o*;VPW+)}05k=&tvaNF&k^5m~Cp}ht@h_!IH`E0Ct;(T?G2R<*<*=d~ zL_=bfKEY3kZrUkFrW&J)o>z`CK{^h4ryTVK3+VksX$ZIv;kfmyQt#(W^t4eKejgLo z|E-MZkJ#4tQ%?Q>_Lq%OMqNrom8()tO$Fp*dnu>Q!xx zJiaPV9|Tm#wkwO${fOycq%1EwgfhEOSrMp*(AX-UH+mDbQYc>?L^ z{4C4>QbUzrL#>ju`@p@ zCXL9dfRFH;g$CvapRlnMkVf+}Ex;w}#LwQ3GJdCmpTnYdln>(Py~a3hQ~1OvKUCWX z{F3^|$bZ}OeDWed)w70Q@g|eVA(hXZn1CwQozJXXN=%bFe)myK>^+Ll**hLZBbPt8 zER-mB8DC&&fq{PThpqo1`gIC_bQ%yiGJ!7~vX5w78ej6Y9kL>oFCFcI+Hjh`WDGq~ z9N_=z|2smSz+dr6K>qiwbc(0MZuJ3m3_G0GZsez4%?fcHa+g@KVJ#JGGByscQG z6BUBrgKEV7xG*XWW&J{)Fo__+UAhR93^iEUlr=(#7wR-)Bt&E%LKAveh$w@-$q2E} z0J+suA>O|d-Rw5OZ~@Y4S12sVQlk3x6_S^p#TM*uAw>m89={P%y2V2wjfIqfxc;Pr zkdo644TqX%vt!tR@Iv-Rtms>{us5XyRdA+|G`xMa+gHY0F0#be!N(X}EUfqPVURmgfdKiRryYWX$2jM(CXUy9Q7mwlv zrx!xy0be-sTDYk!M(n2vx4Zr<&t<~xO||HD+X#1?_9e256rNAohqCM@e7I}`311+5 z3PgyUX9z#YmS|wT@Z&NT(kxJaE)Y7?Q*_$< z4%bzpi*^&p*jXHMq85%Q#9=8f(OF#*y(1Bd4ep}PfjS6XhUk+AYmj6yAgG>b;U;my z_WOu+6LF&LVzBh77bP{h~1DOW)7ytfX1dht$T~`b^`;~b2J|MrA zC|0laC0c4HzNlS`-LQjLGr_HSWQR?Rf!4eiqo_Ze~T1=2UzwW@^GFKX4@rW4Lc9M6KA?PI=B>ylV zIonL~&o?9y)5A&%7O?^0x=UeR-{A2pDLnfMY`hd1iCBBuO3~rp(E$lk++}}g{RAoA z1&-D4l9DGo<9c7|kC)p~?Xsn;ws^iMP}scx za;ezsIu_O-l^7PCf`H^n7ow+5paO_7O(qxSD*gR;3JSZ^uwiPaDgPL`eef|b9@Ew*4__m6U`fGnh;gWUQe zR?uRi-0las@Fi5XALof~w}srn!W+F_OW9#L9Bw^Q?imOfvAitztp@^+R>*FyLx>R% z$?mikY4}F=FiAiI(^np}p$;LRWsrx?f=Au`Pf$dGRZ(E z$twOUcC%vwRnlZYdfZcG9E9uUC8}mE?i1a%R+;Zb50_c2vOMaHZF;%NKC=m)D_0G& z&qC|=N)=WdiUy{mD(u}3NP4wuK}0;Df2c~_2FJUrRY}>V*pPHkC9gVer^-lWP5GuxZ%})%s6~#5j#o{i#7`W5ua9_5)`|UQ=zd%_N3t zuiDxk>A7u#YHLS#G%!b0Tf3&=exqu)q9@)fROMvYV_z^ybzt{+>?aL04&dUgO_gqYn+FIS~(qagfzuGOS099_fdg!%Atazw;*l*8J z)H2m0t!==yOKQKxrAX&=wZU&w2r<2C)nnNZ#AJ?o?C8rFXstRV0#GR$)cPY=AV_P} z5&biXvPY?>4nK(lhokDa5;QE;z18u*MIrV})C>9mfu%RqiLHh}ctmw#0S5`MR4=P> z0YVD(s$>n?`9yWPe-co^T zXQw{u)EWpKP@iDqP>vncMaGEz$It50rnB(bPhGaP6HdE|)b|4M-r1e%M=kMQS)%$? z6&&&DtFEzeA-a1^{pmRlG!MR4H~e^yla$_U z8rv%%VQ@c9Co_cb(o0R3U8pG!r)oUS_TXIbgvP6)6;ZyZndpw}GPKLrL^Mabbsndg zdKki!KSDEmBv$soRI_Mx3vgnUW>rZ7QLhxuniHt|`(JBzj0-?ZwNsP593-nL(qyj+ z#fr@}+0QD`hG%MWdJVw+e>8d77U+mRYVuPL;mEb8rog?1m^K$Q1!p}W#f;{RpDFS` z@S&!7Gd%7zKvQ}Fo~5K}%Hjdt=C7J7(|vFtc|r5Aw-QRYR`WP@Gm4Lu=6N@;dXAgs z)gTB=(s50L2SXHU4y%B@3d`cVj6ztB2)f+hp~QCz8dx4SA66iW+y^Tn|0h4uib?5c zFpg`b1JL?5W3-xr-ssAiQ4vo7mZk?jag!bP2(+XY_2Crny8JtY(;c< zjMiX->SuCXyCA6sX?RJy$bUYLX4YvF3qiV}E3`>II}p0F+NFa6iTbqHCVQEH)LGi( zbqLjn!P;Gh?d2#IO|-eMIzi*7XbX~oK-Wa=i51Q$63N=qK9=}O#!Gvd1)0pkwH32K zn&Mn-#Tu;O<|6GYv-Rj5U3Kh-?Kor_s*?}bqpK~^smn33@f@AjrVa;}COV_IB=iY6 zI^*_!IMNxWGxG%^)w^^C%h4;5hZ}WmMR?rYUuX5b8lL*;Y_6f|b?c~Wx48g~MV-#+ z=O(nErOu^&Cdm0o*KeLNdc#Ovzdt{MboX_`J7M4p({-aN@!ZoZy79g#s3FC=iMK#T z$Kks0!D%3+i*9lk=*LHcE@5^8bRx!}o2vw*`}1^*zA@O@1nZVY1FFRzb?bdRP{lsz zHpc@Qrc$@v4KI`=>axz;Bdyly@=v(|`kuN&7G1F!?W8+2VFZM#P*>XKErhG1?(F?f zV86BQf}su@lTNye75FN~JWF@QG9Tpj*WF*^fwtbzL09z|o(IS3o;C%WPhHhLPm&Ph zBf1ZsAk*y)x{ts9gepQ;XMiHMzoTo|0V~edebb%BcKV0zTLlm(_Q0{I+a&e}e(;SA z&e`zWq)kX{OjzW!=%Dz>*ciJwd(a+hL2}@D$(FiM8%jHEUdY7e&u?WRraiOikm1KO zR%s(`n;SLtkC_q^J0k`|L`NsYM8?m`FSf1g;ATVa_9r|^VjbBqR6k$E^cmbLSAq-oFd@v|9?e}iVTm4|Ia%IOBOZDU-in?Mp zNBmC1y{WkJpC{b@b$u{A`uTh;?nY7wd8cjZZDwZ|uaAp&oDno7VR~0bN5^UUsR_6c z6crT_85bWrEixop9~T!CuFq(0!SrVKr%gTQEB!<<9Am_!Ri1M&ME?g6%sKyz$62un zKQBhcI0l6W;eW@UZ^h}O^da$hE*fzE@4J%TQ6Cc&9HkFEGQ@&$P??E9W;l7$@c+)p z#m9!m9+_;%oYG2`KqU_TIA%DxGR-nxdoa?G5Ld>U&5(ODgO9B3%|vMw%&Ls0UQCM& W^C8Ug|MS<)IJ47a|HL^6-V! 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 diff --git a/ui/i18n/qml_ur.ts b/ui/i18n/qml_ur.ts index 6a391e9c76..f91e267326 100644 --- a/ui/i18n/qml_ur.ts +++ b/ui/i18n/qml_ur.ts @@ -26,7 +26,7 @@ - + Edit تصحیح @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password - - - Contact request pending - - - + Connected - + Disconnected - + This user has been blocked. - + - + Type a message. - - - + + + - + Send - + Request Address - - + + Request - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next اگلا @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages - + before %1 @@ -627,18 +620,18 @@ Do you wish to override the security check and continue? - - + + Add reaction - + Reply - + More مزید @@ -713,17 +706,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -740,19 +733,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -797,11 +790,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -836,22 +828,22 @@ Do you wish to override the security check and continue? - + Transaction request - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -893,8 +885,8 @@ Do you wish to override the security check and continue? - - + + Pending @@ -944,19 +936,19 @@ Do you wish to override the security check and continue? - - + + You آپ - + Clear history Clear History تاریخ مٹا دیں - + Are you sure you want to leave this chat? @@ -983,193 +975,184 @@ Do you wish to override the security check and continue? - + Search for communities or topics - + Create a community - - - - + 1 member - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats چیٹ - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members ممبران - - + + Create category - - + + Invite people Invite People - + - + Membership requests - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications - - + + Edit community - - + + Create channel - + Leave community @@ -1186,7 +1169,7 @@ Do you wish to override the security check and continue? ممبران شامل کریں - + Manage community @@ -1196,47 +1179,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - + + + New channel - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name - + Describe the channel - + Pinned messages - + channel description Channel description @@ -1258,14 +1241,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create @@ -1280,136 +1264,123 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - - - Name your community - - - + A catchy name - - - Give it a short description - - - + What your community is about - - Community color + + Community colour + Community color - + Pick a color - - - Please choose a color - - - - + + Membership requirement - - + + Require invite from another member - - + + Require approval - + + No requirement - + You can require new members to meet certain criteria before they can join. This can be changed at any time - + Save محفوظ کریں - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members ممبران - - + + Invite friends - + Invite @@ -1418,23 +1389,23 @@ Do you wish to override the security check and continue? رابطے - + Invite - + Chat - + Community imported - + Importing community is in progress @@ -1455,12 +1426,11 @@ Do you wish to override the security check and continue? عوامی چیٹ میں شامل ہوں - No messages کوئی پیغام نہیں - + No search results @@ -1484,36 +1454,41 @@ Do you wish to override the security check and continue? View Group + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat چیٹ کو حذف کریں - - + + Leave chat @@ -1544,7 +1519,7 @@ Do you wish to override the security check and continue? - + ↓ Fetch messages Fetch Messages @@ -1651,35 +1626,35 @@ Do you wish to override the security check and continue? - + Unpin - + Pin - - + + Copy link - + Edit message - + Send message - + Reply to @@ -1790,7 +1765,7 @@ Do you wish to override the security check and continue? - + Add to contacts اپنے رابطوں میں درج کریں @@ -1811,14 +1786,14 @@ Do you wish to override the security check and continue? - + Pinned by %1 - + - + @@ -1833,7 +1808,7 @@ Do you wish to override the security check and continue? - + Profile پروفائل @@ -1888,7 +1863,7 @@ Do you wish to override the security check and continue? - + Wallet @@ -1907,14 +1882,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2241,7 +2231,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2249,13 +2239,13 @@ Do you wish to override the security check and continue? - + Key - + Back @@ -2331,151 +2321,151 @@ Do you wish to override the security check and continue? - + ✓ Username available! - + Continuing will connect this username with your chat key. - + Username doesn’t belong to you :( - + Username already taken :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. - + Custom domain - + I want a stateofus.eth domain - + I own a name on another domain - - + + Connect username with your pubkey - + Terms of name registration - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. - + Your address(es) will be publicly associated with your ENS name. - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. - + These terms are guaranteed by the smart contract logic at addresses: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT - + Deposit - + Not enough SNT - + Register @@ -2575,14 +2565,14 @@ Do you wish to override the security check and continue? - - + + Warning! - + Change fleet to %1 @@ -3408,9 +3398,9 @@ packs will not need to be re-purchased. Transaction Details - - - 9999 Confirmations + + + @@ -3480,7 +3470,8 @@ packs will not need to be re-purchased. - + + Description @@ -3881,42 +3872,42 @@ packs will not need to be re-purchased. - + View Community - + Browser - + Timeline - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3926,12 +3917,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4016,7 +4007,7 @@ Seperate words by a single space. - + I understand @@ -4092,7 +4083,7 @@ Seperate words by a single space. - + Paste @@ -4125,43 +4116,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4250,12 +4243,12 @@ Assets won’t be sent yet. - + Optimal - + Gwei @@ -4265,18 +4258,18 @@ Assets won’t be sent yet. - + Copied - + Pasted - - + + Copy to clipboard Copy @@ -4297,7 +4290,7 @@ Assets won’t be sent yet. - + Contact @@ -4369,52 +4362,52 @@ Assets won’t be sent yet. - + Public chat - + Not a contact - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message کوئی پیغام ٹائپ کریں.... - + Bold - + Italic - + Strikethrough - + Code @@ -4454,12 +4447,12 @@ Assets won’t be sent yet. - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4509,7 +4502,7 @@ Assets won’t be sent yet. - + Show more @@ -4535,7 +4528,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4562,17 +4555,13 @@ Assets won’t be sent yet. - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4583,13 +4572,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key @@ -4609,12 +4598,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up @@ -4624,37 +4613,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first - + Your community can only be joined by an invitation from existing community members - + Your community is free for anyone to join - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4768,6 +4757,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunityProfilePopup diff --git a/ui/i18n/qml_zh.qm b/ui/i18n/qml_zh.qm index f6b5f750da9e5b649b894ca51954c75bea7846c3..c8dd3160911e9c62a40d80bd038ca6c0aa962d2f 100644 GIT binary patch delta 8068 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 H_HF+IlVwp+ diff --git a/ui/i18n/qml_zh.ts b/ui/i18n/qml_zh.ts index 8f3c4bd41c..ad850acaf3 100644 --- a/ui/i18n/qml_zh.ts +++ b/ui/i18n/qml_zh.ts @@ -26,7 +26,7 @@ - + Edit 编辑 @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... 交易待确定… - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password 使用密码签署 - - - Contact request pending - - - + Connected 已连接 - + Disconnected 离线聊天 - + This user has been blocked. - + - + Type a message. - - - + + + - + Send 发送 - + Request Address - - + + Request 请求 - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next 下一步 @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee 网络费 - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image 图像 - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓获取更多消息 - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? 拒绝邀请 - - + + Add reaction - + Reply 回复 - + More 更多 @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? 重新发送 - + Transaction request 交易请求 - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending 等待中 @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You - + Clear history Clear History 清空历史记录 @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? 退群 - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? 社区 - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? 导入社区 - + Create a community 创建社区 - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats 聊天 - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members 成员 - - + + Create category - - + + Invite people Invite People 邀请其他人 - + - + Membership requests 加入申请 - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile 查看个人资料 - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications 通知 - - + + Edit community 编辑社区 - - + + Create channel 创建频道 - + Leave community 退出社区 @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? 添加成员 - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + 新频道 - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name 频道名称 - + Describe the channel 渠道简介 - + Pinned messages 置顶的消息 - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create 创建 @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community 命名您的社区 - + A catchy name 容易记住的名称 - Give it a short description 请简短描述 - + What your community is about - - Community color + + Community colour + Community color 社区颜色 - + Pick a color - - - Please choose a color - - - - + + Membership requirement 加入条件 - - + + Require invite from another member 需要其他成员的邀请 - - + + Require approval 需要取得同意 - + + No requirement 无要求 - + You can require new members to meet certain criteria before they can join. This can be changed at any time 您可以要求新成员在加入前满足某些条件。这些条件可以随时更改 - + Save 保存 - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members 成员 - - + + Invite friends 邀请好友 - + Invite 邀请 @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? 联系人 - + Invite 邀请 - + Chat 聊天 - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? 加入公共聊天 - No messages 无消息 - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat 分享聊天 + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat 刪除聊天 - - + + Leave chat 退出聊天 @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? 管理员 - + ↓ Fetch messages Fetch Messages ↓获取消息 @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin 取消置顶 - + Pin 置顶 - - + + Copy link - + Edit message - + Send message 发送消息 - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts 添加到联系人 @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? 开始聊天 - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile 个人资料 @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet 钱包 @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key 密钥 - + Back 返回 @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? 您的用户名 - + ✓ Username available! ✓用户名可用! - + Continuing will connect this username with your chat key. 如果继续,会将此用户名与您的聊天码关联。 - + Username doesn’t belong to you :( 用户名不属于您 :( - + Username already taken :( 用户名已被占用 :( - + (edited) - + Username is already connected with your chat key and can be used inside Status. 用户名已与您的聊天码关联,可以在Status中使用。 - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. 如果继续,将需要通过一笔交易将用户名与您当前的聊天码关联起来。 - + Custom domain 自定义域名 - + I want a stateofus.eth domain 我想要一个stateofus.eth域名 - + I own a name on another domain 我在其他域上拥有名称 - - + + Connect username with your pubkey - + Terms of name registration 名称注册条款 - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. 资金存入1年。您的SNT将被锁定,但不会被花费。 - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. 1年后,您可以释放名称并赎回您的押金,或者不采取任何措施保留该名称。 - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. 如果合约条款发生变化(例如,Status升级合约),用户有权释放用户名,无论持有时间长短。 - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. 合约控制者无法访问您缴纳的押金。它们只能原路返回发送它们的钱包地址。 - + Your address(es) will be publicly associated with your ENS name. 您的地址将与您的ENS名称公开关联。 - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. 用户名创建为stateofus.eth的子域节点,并受ENS智能合约条款的约束。 - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. 您授权合约代表您转发SNT。仅当您批准交易以授权转发时,才会出现这种情况。 - + These terms are guaranteed by the smart contract logic at addresses: 这些条款由下列地址的智能合约逻辑保证: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit 存款 - + Not enough SNT SNT不足 - + Register 注册 @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! 警告! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details 交易明细 - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description 描述 @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser 浏览器 - + Timeline 时间轴 - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste 粘贴 @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. 高级 - + Gwei GWEI @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. ETH不足以支付gas费 - + Copied 已复制 - + Pasted - - + + Copy to clipboard Copy 复制 @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact 联系人 @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. 请求交易 - + Public chat 公共聊天 - + Not a contact 非联系人 - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message 消息 - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. 更新 - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more 显示更多 @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. 通知设置 - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key 社区私钥 @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up 备份 @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first 您的社区可以自由加入,但是新成员首次必须先获得社区创建者的同意 - + Your community can only be joined by an invitation from existing community members 您的社区只能通过现有社区成员的邀请才能加入 - + Your community is free for anyone to join 任何人都可以自由加入您的社区 - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/i18n/qml_zh_TW.qm b/ui/i18n/qml_zh_TW.qm index bdb6b5b2f47647fd5b95bf74ae10e0abf01c24b5..8b8cfdcca25ff1dc747dc7219c5eb2184bda2259 100644 GIT binary patch delta 8081 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 H+O_^4yR>x< delta 7837 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 - + Edit 編輯 @@ -111,8 +111,8 @@ - - + + @@ -126,20 +126,20 @@ - + - + Transaction pending... 交易待處理... - - + + @@ -294,7 +294,7 @@ Do you wish to override the security check and continue? - + Cancel @@ -351,76 +351,71 @@ Do you wish to override the security check and continue? - - - - - - + + + + + + - - + + Sign with password 輸入密碼確認 - - - Contact request pending - - - + Connected 已連結 - + Disconnected 離線聊天 - + This user has been blocked. - + - + Type a message. - - - + + + - + Send 發送 - + Request Address - - + + Request 請求 - + - + @@ -452,7 +447,7 @@ Do you wish to override the security check and continue? - + Preview @@ -460,19 +455,19 @@ Do you wish to override the security check and continue? - + Transaction preview - + - - + + - + Next 下一個 @@ -483,19 +478,19 @@ Do you wish to override the security check and continue? - - - - + + + + - + Authorize %1 %2 - - + + @@ -503,71 +498,69 @@ Do you wish to override the security check and continue? - + Network fee 網路費用 - + Error estimating gas: %1 - + . The transaction will probably fail. - - + + - + Send %1 %2 - - + Image 圖片 - - + Sticker - + You have a new message - + You have been accepted into the ‘%1’ community - + Your request to join the ‘%1’ community was declined - + New membership request - + %1 asks to join ‘%2’ - + Failed to send message. @@ -592,17 +585,17 @@ Do you wish to override the security check and continue? - + before %1Between %1 and %2 - + ↓ Fetch more messages ↓取得更多訊息 - + before %1 @@ -629,18 +622,18 @@ Do you wish to override the security check and continue? 拒絕邀請 - - + + Add reaction - + Reply 回覆 - + More 更多 @@ -715,17 +708,17 @@ Do you wish to override the security check and continue? - + and - + %1 more - + reacted with @@ -742,19 +735,19 @@ Do you wish to override the security check and continue? - + This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk. - + Membership requires an ENS username - + You need to be invited @@ -799,11 +792,10 @@ Do you wish to override the security check and continue? - + - - - + + %1 members @@ -842,22 +834,22 @@ Do you wish to override the security check and continue? 重新傳送 - + Transaction request 交易請求 - + ↑ Outgoing transaction - + ↓ Incoming transaction - + Something has gone wrong @@ -899,8 +891,8 @@ Do you wish to override the security check and continue? - - + + Pending 等待中 @@ -950,13 +942,13 @@ Do you wish to override the security check and continue? - - + + You - + Clear history Clear History 清除歷史記錄 @@ -967,7 +959,7 @@ Do you wish to override the security check and continue? 退出群組 - + Are you sure you want to leave this chat? @@ -994,15 +986,12 @@ Do you wish to override the security check and continue? 社群 - + Search for communities or topics - - - - + 1 member @@ -1012,179 +1001,173 @@ Do you wish to override the security check and continue? 匯入社群 - + Create a community 建立社群 - - + + Public community - - + + Invitation only community - - + + On request community + + + + + - - - + + Unknown community - - - ENS Only + + - ENS only + - ENS Only - Chats 聊天室 - - + + Join ‘%1’ - + Request to join ‘%1’ - + Error joining the community - Members 成員 - - + + Create category - - + + Invite people Invite People 邀請其他人 - + - + Membership requests 會員申請 - + Edit Category - + Delete Category - + Delete %1 category - + Are you sure you want to delete %1 category? Channels inside the category won’t be deleted. - + Error deleting the category - - + - + View Profile 查看資料 - - - Roles - - - - + Kick - - + Ban - - - + + Transfer ownership - + Invite successfully sent - - + + Share community - + Notifications 通知 - - + + Edit community 編輯社群 - - + + Create channel 建立頻道 - + Leave community 退出社群 @@ -1205,7 +1188,7 @@ Do you wish to override the security check and continue? 新增成員 - + Manage community @@ -1215,47 +1198,47 @@ Do you wish to override the security check and continue? You need to enter a name - - - - + + + New channel + 新頻道 - + Edit #%1 - - + + channel name Channel name - + channel decription - + Channel name 頻道名稱 - + Describe the channel 頻道簡介 - + Pinned messages 置顶的消息 - + channel description Channel description @@ -1277,14 +1260,15 @@ Do you wish to override the security check and continue? + Channels - - + + Create 建立 @@ -1299,136 +1283,131 @@ Do you wish to override the security check and continue? - - + + Error creating the community - - + + community name - - + + community decription - + New community - Name your community 請為您的社群命名 - + A catchy name 容易記憶的名稱 - Give it a short description 請簡短描述 - + What your community is about - - Community color + + Community colour + Community color 社群顏色 - + Pick a color - - - Please choose a color - - - - + + Membership requirement 入會要求 - - + + Require invite from another member 需要其他成員的邀請 - - + + Require approval 需要取得同意 - + + No requirement 沒有要求 - + You can require new members to meet certain criteria before they can join. This can be changed at any time 您可以要求新成員滿足某些條件才能加入。可以隨時更改 - + Save 儲存 - + Thumbnail image - + - + Please choose an image - + Image files (*.jpg *.jpeg *.png) - + Upload - - + + Members 成員 - - + + Invite friends 邀請朋友 - + Invite 邀請 @@ -1437,23 +1416,23 @@ Do you wish to override the security check and continue? 好友名單 - + Invite 邀請 - + Chat 聊天室 - + Community imported - + Importing community is in progress @@ -1474,12 +1453,11 @@ Do you wish to override the security check and continue? 加入公共聊天 - No messages 無訊息 - + No search results @@ -1507,36 +1485,41 @@ Do you wish to override the security check and continue? Share Chat 分享聊天 + + + Test WakuV2 - requestAllHistoricMessages + + - + Unmute chat - + Mute chat - + Edit Channel - - + + Mark as Read - - + + Delete chat 刪除聊天 - - + + Leave chat 退出聊天 @@ -1567,7 +1550,7 @@ Do you wish to override the security check and continue? 管理員 - + ↓ Fetch messages Fetch Messages ↓取得訊息 @@ -1674,35 +1657,35 @@ Do you wish to override the security check and continue? - + Unpin 取消置顶 - + Pin 置顶 - - + + Copy link - + Edit message - + Send message 發訊息 - + Reply to @@ -1813,7 +1796,7 @@ Do you wish to override the security check and continue? - + Add to contacts 新增到好友名單 @@ -1834,14 +1817,14 @@ Do you wish to override the security check and continue? 開始聊天 - + Pinned by %1 - + - + @@ -1856,7 +1839,7 @@ Do you wish to override the security check and continue? - + Profile 個人資料 @@ -1911,7 +1894,7 @@ Do you wish to override the security check and continue? - + Wallet 錢包 @@ -1930,14 +1913,29 @@ Do you wish to override the security check and continue? Online users - + - Waku Bloom Mode + Bloom filter level - - - + + + The account will be logged out. When you login again, the selected mode will be enabled + + + + + Light Node + + + + + Normal + + + + + Full Node @@ -2282,7 +2280,7 @@ Do you wish to override the security check and continue? - + Wallet address @@ -2290,13 +2288,13 @@ Do you wish to override the security check and continue? - + Key 金鑰 - + Back 返回 @@ -2376,151 +2374,151 @@ Do you wish to override the security check and continue? 您的用戶名稱 - + ✓ Username available! ✓用戶名稱可以使用! - + Continuing will connect this username with your chat key. 繼續以將此用戶名稱與您的聊天金鑰連結。 - + Username doesn’t belong to you :( 用戶名稱不屬於您:( - + Username already taken :( 用戶名稱已被使用:( - + (edited) - + Username is already connected with your chat key and can be used inside Status. 用戶名稱已經與您的聊天密鑰連結,可以在"Status"中使用。 - + This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`. - + Continuing will require a transaction to connect the username with your current chat key. 繼續進行將產生一筆交易來將用戶名稱與您當前的聊天金鑰連結。 - + Custom domain 自訂網域 - + I want a stateofus.eth domain 我想要一個stateofus.eth網域 - + I own a name on another domain 我在另一個網域上擁有註冊名稱 - - + + Connect username with your pubkey - + Terms of name registration 名稱註冊條款 - + Funds are deposited for 1 year. Your SNT will be locked, but not spent. 資金存入後,您該筆SNT將被鎖定一整年,無法被花費。 - + After 1 year, you can release the name and get your deposit back, or take no action to keep the name. 一年後,您可以釋放名稱並取回押金,或者不採取任何措施來保留名稱。 - + If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held. 如果合約條款發生更改(例如"Status"變更了合約),則用戶有權釋放用戶名,而不管其持有時間為何。 - + The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them. 合約控制者無法取用您的存款。他們只能將存款返回發送位址。 - + Your address(es) will be publicly associated with your ENS name. 您的地址將與您的ENS名稱產生公開連結。 - + Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms. 用戶名稱將成為stateofus.eth的子網域節點,並接受ENS智慧合約條款的約束。 - + You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer. 您授權合約代表您同意轉讓SNT。僅當您核准交易以授權轉移時,才會出現此提示。 - + These terms are guaranteed by the smart contract logic at addresses: 這些條款由以下地址的智慧合約邏輯保證: - + %1 (Status UsernameRegistrar). - - + + <a href='%1%2'>Look up on Etherscan</a> - + %1 (ENS Registry). - + Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username. - + 10 SNT 10 SNT - + Deposit 存款 - + Not enough SNT SNT不足 - + Register 註冊 @@ -2620,14 +2618,14 @@ Do you wish to override the security check and continue? - - + + Warning! 警告! - + Change fleet to %1 @@ -3461,9 +3459,9 @@ packs will not need to be re-purchased. Transaction Details 交易明細 - - - 9999 Confirmations + + + @@ -3533,7 +3531,8 @@ packs will not need to be re-purchased. - + + Description 描述 @@ -3934,42 +3933,42 @@ packs will not need to be re-purchased. - + View Community - + Browser 瀏覽器 - + Timeline 時間軸 - + Contact request accepted - + New contact request - + You can now chat with %1 - + %1 requests to become contacts - + Where do you want to go? @@ -3979,12 +3978,12 @@ packs will not need to be re-purchased. - + Open Status - + Quit @@ -4081,7 +4080,7 @@ Seperate words by a single space. - + I understand @@ -4157,7 +4156,7 @@ Seperate words by a single space. - + Paste 貼上 @@ -4190,43 +4189,45 @@ Assets won’t be sent yet. - - Use suggestions + + use-suggestions + Use suggestions - - Use custom + + + Use custom - + Low - + High - + Gas amount limit - + Per-gas overall limit - + Maximum priority fee: %1 ETH - + Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee. @@ -4315,7 +4316,7 @@ Assets won’t be sent yet. - + Optimal @@ -4324,7 +4325,7 @@ Assets won’t be sent yet. 進階 - + Gwei Gwei @@ -4338,18 +4339,18 @@ Assets won’t be sent yet. ETH不足以支付gas - + Copied 已複製 - + Pasted - - + + Copy to clipboard Copy 複製 @@ -4370,7 +4371,7 @@ Assets won’t be sent yet. - + Contact 聯絡人 @@ -4442,52 +4443,52 @@ Assets won’t be sent yet. 請求交易 - + Public chat 公開的聊天 - + Not a contact 不是聯絡人 - + Image files (%1) - + Your message is too long. - + Please make your message shorter. We have set the limit to 2000 characters to be courteous of others. - + Type a message 訊息 - + Bold - + Italic - + Strikethrough - + Code @@ -4527,12 +4528,12 @@ Assets won’t be sent yet. 更新 - + Could not buy Stickerpack - + Stickerpack bought successfully @@ -4582,7 +4583,7 @@ Assets won’t be sent yet. - + Show more 顯示更多 @@ -4608,7 +4609,7 @@ Assets won’t be sent yet. - + Contact requests @@ -4635,17 +4636,13 @@ Assets won’t be sent yet. 通知设置 - - You need to be mutual contacts with this person for them to receive your messages - - - - Waiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messagesYou need to be mutual contacts with this person for them to receive your messagesWaiting for %1 to accept your request + You need to be mutual contacts with this person for them to receive your messages - + Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat @@ -4656,13 +4653,13 @@ Assets won’t be sent yet. - + Access existing community - + Community private key 社群管理私鑰 @@ -4682,12 +4679,12 @@ Assets won’t be sent yet. - + Back up community key - + Back up 備份 @@ -4697,37 +4694,37 @@ Assets won’t be sent yet. - + Community members will appear here - + No contacts found - + Your community is free to join, but new members are required to be approved by the community creator first 您的社群可以自由加入,但是新成員必須先取得社群創建者的同意 - + Your community can only be joined by an invitation from existing community members 您的社群只能透過現有社群成員邀請才能加入 - + Your community is free for anyone to join 您的社群是任何人都能自由加入 - + You should keep it safe and only share it with people you trust to take ownership of your community - + You can also use this key to import your community on another device @@ -4831,6 +4828,11 @@ Assets won’t be sent yet. Max image size is %1 MB + + + TODO + + CommunitiesPopup diff --git a/ui/imports/Utils.qml b/ui/imports/Utils.qml index 631f914ec3..a5a7b864e8 100644 --- a/ui/imports/Utils.qml +++ b/ui/imports/Utils.qml @@ -251,17 +251,21 @@ QtObject { const diffMs = now - messageDate const diffMin = Math.floor(diffMs / 60000) if (diffMin < 1) { - return qsTr("NOW") + //% "NOW" + return qsTrId("now") } const diffHour = Math.floor(diffMin / 60) if (diffHour < 1) { - return qsTr("%1M").arg(diffMin) + //% "%1M" + return qsTrId("-1m").arg(diffMin) } const diffDay = Math.floor(diffHour / 24) if (diffDay < 1) { - return qsTr("%1H").arg(diffHour) + //% "%1H" + return qsTrId("-1h").arg(diffHour) } - return qsTr("%1D").arg(diffDay) + //% "%1D" + return qsTrId("-1d").arg(diffDay) } function formatShortDateStr(longStr) { @@ -426,7 +430,8 @@ QtObject { const pubKey = link.substring(indexAdminPk + 2, indexChatName - 1) const chatName = link.substring(indexChatName + 3, indexChatId - 1) const chatId = link.substring(indexChatId + 3, link.length) - result.title = qsTr("Join the %1 group chat").arg(chatName) + //% "Join the %1 group chat" + result.title = qsTrId("join-the--1-group-chat").arg(chatName) result.callback = function () { chatsModel.groups.joinGroupChatFromInvitation(chatName, chatId, pubKey); } @@ -439,7 +444,8 @@ QtObject { index = link.lastIndexOf("/") if (index > -1) { const chatId = link.substring(index + 1) - result.title = qsTr("Join the %1 public channel").arg(chatId) + //% "Join the %1 public channel" + result.title = qsTrId("join-the--1-public-channel").arg(chatId) result.callback = function () { chatsModel.channelView.joinPublicChat(chatId); } @@ -590,7 +596,8 @@ QtObject { let errMsg = "" if(validation & Utils.Validate.NoEmpty && str === "") { - errMsg = qsTr("You need to enter a %1").arg(fieldName) + //% "You need to enter a %1" + errMsg = qsTrId("you-need-to-enter-a--1").arg(fieldName) } if(validation & Utils.Validate.TextLength && str.length > limit) { diff --git a/ui/shared/GasSelector.qml b/ui/shared/GasSelector.qml index 1a89b052fb..b64ecb4735 100644 --- a/ui/shared/GasSelector.qml +++ b/ui/shared/GasSelector.qml @@ -95,9 +95,9 @@ Item { id: buttonAdvanced anchors.verticalCenter: prioritytext.verticalCenter anchors.right: parent.right - text: advancedMode ? + text: advancedMode ? //% "Use suggestions" - qsTrId("use-suggestions") : + qsTrId("use-suggestions") : //% "Use custom" qsTrId("use-custom") flat: true