mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-06 16:07:42 +02:00
Merge pull request #5443 from vector-im/release/1.7.0/release
Release 1.7.0
This commit is contained in:
@@ -57,8 +57,9 @@ body:
|
||||
id: homeserver
|
||||
attributes:
|
||||
label: Homeserver
|
||||
description: Which server is your account registered on?
|
||||
placeholder: e.g. matrix.org
|
||||
description: |
|
||||
Which server is your account registered on? If it is a local or non-public homeserver, please tell us what is the homeserver implementation (ex: Synapse/Dendrite/etc.) and the version.
|
||||
placeholder: e.g. matrix.org or Synapse 1.50.0rc1
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
|
||||
@@ -11,7 +11,6 @@ on:
|
||||
env:
|
||||
# Make the git branch for a PR available to our Fastfile
|
||||
MX_GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
|
||||
MapTilerAPIKey: ${{ secrets.MAPTILER_API_KEY }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
@@ -12,7 +12,6 @@ on:
|
||||
env:
|
||||
# Make the git branch for a PR available to our Fastfile
|
||||
MX_GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
|
||||
MapTilerAPIKey: ${{ secrets.MAPTILER_API_KEY }}
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
|
||||
@@ -11,7 +11,6 @@ on:
|
||||
env:
|
||||
# Make the git branch for a PR available to our Fastfile
|
||||
MX_GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
|
||||
MapTilerAPIKey: ${{ secrets.MAPTILER_API_KEY }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
@@ -5,6 +5,31 @@ on:
|
||||
types: [labeled]
|
||||
|
||||
jobs:
|
||||
apply_Z-Labs_label:
|
||||
name: Add Z-Labs label for features behind labs flags
|
||||
runs-on: ubuntu-latest
|
||||
if: >
|
||||
contains(github.event.issue.labels.*.name, 'A-Maths') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Threads') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Polls') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Message-Bubbles') ||
|
||||
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Themes-Custom') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Tags')
|
||||
steps:
|
||||
- uses: actions/github-script@v5
|
||||
with:
|
||||
script: |
|
||||
github.rest.issues.addLabels({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
labels: ['Z-Labs']
|
||||
})
|
||||
|
||||
move_needs_info_issues:
|
||||
name: X-Needs-Info issues to Need info column on triage board
|
||||
runs-on: ubuntu-latest
|
||||
@@ -34,7 +59,7 @@ jobs:
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
@@ -47,19 +72,44 @@ jobs:
|
||||
PROJECT_ID: "PN_kwDOAM0swc0sUA"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
|
||||
add_product_issues_to_project:
|
||||
name: X-Needs-Product to Design project board
|
||||
runs-on: ubuntu-latest
|
||||
if: >
|
||||
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
||||
steps:
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
id: add_to_project
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
projectid: ${{ env.PROJECT_ID }}
|
||||
contentid: ${{ github.event.issue.node_id }}
|
||||
env:
|
||||
PROJECT_ID: "PN_kwDOAM0swc4AAg6N"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
|
||||
Delight_issues_to_board:
|
||||
name: Spaces issues to Delight project board
|
||||
runs-on: ubuntu-latest
|
||||
if: >
|
||||
contains(github.event.issue.labels.*.name, 'A-Spaces') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Space-Settings') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Subspaces')
|
||||
contains(github.event.issue.labels.*.name, 'A-Subspaces') ||
|
||||
contains(github.event.issue.labels.*.name, 'Z-IA')
|
||||
steps:
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
@@ -82,7 +132,7 @@ jobs:
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
@@ -105,7 +155,7 @@ jobs:
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
@@ -128,7 +178,7 @@ jobs:
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid:ID!,$contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
|
||||
@@ -33,3 +33,29 @@ jobs:
|
||||
project: Issue triage
|
||||
column: Triaged
|
||||
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
|
||||
remove_Z-Labs_label:
|
||||
name: Remove Z-Labs label when features behind labs flags are removed
|
||||
runs-on: ubuntu-latest
|
||||
if: >
|
||||
!(contains(github.event.issue.labels.*.name, 'A-Maths') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Threads') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Polls') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Message-Bubbles') ||
|
||||
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Themes-Custom') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-Tags')) &&
|
||||
contains(github.event.issue.labels.*.name, 'Z-Labs')
|
||||
steps:
|
||||
- uses: actions/github-script@v5
|
||||
with:
|
||||
script: |
|
||||
github.rest.issues.removeLabel({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: ['Z-Labs']
|
||||
})
|
||||
|
||||
@@ -34,6 +34,7 @@ jobs:
|
||||
P1_issues_to_crypto_team_workboard:
|
||||
runs-on: ubuntu-latest
|
||||
if: >
|
||||
contains(github.event.issue.labels.*.name, 'Z-UISI') ||
|
||||
(contains(github.event.issue.labels.*.name, 'A-E2EE') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-E2EE-Cross-Signing') ||
|
||||
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
||||
|
||||
@@ -0,0 +1,139 @@
|
||||
name: Move pull requests asking for review to the relevant project
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [review_requested]
|
||||
|
||||
jobs:
|
||||
add_design_pr_to_project:
|
||||
name: Move PRs asking for design review to the design board
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
id: find_team_members
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
query find_team_members($team: String!) {
|
||||
organization(login: "vector-im") {
|
||||
team(slug: $team) {
|
||||
members {
|
||||
nodes {
|
||||
login
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
team: ${{ env.TEAM }}
|
||||
env:
|
||||
TEAM: "design"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
- id: any_matching_reviewers
|
||||
run: |
|
||||
# Fetch requested reviewers, and people who are on the team
|
||||
echo '${{ tojson(fromjson(steps.find_team_members.outputs.data).organization.team.members.nodes[*].login) }}' | tee /tmp/team_members.json
|
||||
echo '${{ tojson(github.event.pull_request.requested_reviewers[*].login) }}' | tee /tmp/reviewers.json
|
||||
jq --raw-output .[] < /tmp/team_members.json | sort | tee /tmp/team_members.txt
|
||||
jq --raw-output .[] < /tmp/reviewers.json | sort | tee /tmp/reviewers.txt
|
||||
|
||||
# Fetch requested team reviewers, and the name of the team
|
||||
echo '${{ tojson(github.event.pull_request.requested_teams[*].slug) }}' | tee /tmp/team_reviewers.json
|
||||
jq --raw-output .[] < /tmp/team_reviewers.json | sort | tee /tmp/team_reviewers.txt
|
||||
echo '${{ env.TEAM }}' | tee /tmp/team.txt
|
||||
|
||||
# If either a reviewer matches a team member, or a team matches our team, say "true"
|
||||
if [ $(join /tmp/team_members.txt /tmp/reviewers.txt | wc -l) != 0 ]; then
|
||||
echo "::set-output name=match::true"
|
||||
elif [ $(join /tmp/team.txt /tmp/team_reviewers.txt | wc -l) != 0 ]; then
|
||||
echo "::set-output name=match::true"
|
||||
else
|
||||
echo "::set-output name=match::false"
|
||||
fi
|
||||
env:
|
||||
TEAM: "design"
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
id: add_to_project
|
||||
if: steps.any_matching_reviewers.outputs.match == 'true'
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:ID!, $contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
projectid: ${{ env.PROJECT_ID }}
|
||||
contentid: ${{ github.event.pull_request.node_id }}
|
||||
env:
|
||||
PROJECT_ID: "PN_kwDOAM0swc0sUA"
|
||||
TEAM: "design"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
|
||||
add_product_pr_to_project:
|
||||
name: Move PRs asking for design review to the design board
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
id: find_team_members
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
query find_team_members($team: String!) {
|
||||
organization(login: "vector-im") {
|
||||
team(slug: $team) {
|
||||
members {
|
||||
nodes {
|
||||
login
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
team: ${{ env.TEAM }}
|
||||
env:
|
||||
TEAM: "product"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
- id: any_matching_reviewers
|
||||
run: |
|
||||
# Fetch requested reviewers, and people who are on the team
|
||||
echo '${{ tojson(fromjson(steps.find_team_members.outputs.data).organization.team.members.nodes[*].login) }}' | tee /tmp/team_members.json
|
||||
echo '${{ tojson(github.event.pull_request.requested_reviewers[*].login) }}' | tee /tmp/reviewers.json
|
||||
jq --raw-output .[] < /tmp/team_members.json | sort | tee /tmp/team_members.txt
|
||||
jq --raw-output .[] < /tmp/reviewers.json | sort | tee /tmp/reviewers.txt
|
||||
|
||||
# Fetch requested team reviewers, and the name of the team
|
||||
echo '${{ tojson(github.event.pull_request.requested_teams[*].slug) }}' | tee /tmp/team_reviewers.json
|
||||
jq --raw-output .[] < /tmp/team_reviewers.json | sort | tee /tmp/team_reviewers.txt
|
||||
echo '${{ env.TEAM }}' | tee /tmp/team.txt
|
||||
|
||||
# If either a reviewer matches a team member, or a team matches our team, say "true"
|
||||
if [ $(join /tmp/team_members.txt /tmp/reviewers.txt | wc -l) != 0 ]; then
|
||||
echo "::set-output name=match::true"
|
||||
elif [ $(join /tmp/team.txt /tmp/team_reviewers.txt | wc -l) != 0 ]; then
|
||||
echo "::set-output name=match::true"
|
||||
else
|
||||
echo "::set-output name=match::false"
|
||||
fi
|
||||
env:
|
||||
TEAM: "product"
|
||||
- uses: octokit/graphql-action@v2.x
|
||||
id: add_to_project
|
||||
if: steps.any_matching_reviewers.outputs.match == 'true'
|
||||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:ID!, $contentid:ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
projectid: ${{ env.PROJECT_ID }}
|
||||
contentid: ${{ github.event.pull_request.node_id }}
|
||||
env:
|
||||
PROJECT_ID: "PN_kwDOAM0swc4AAg6N"
|
||||
TEAM: "product"
|
||||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||
+32
@@ -1,3 +1,35 @@
|
||||
## Changes in 1.7.0 (2022-01-25)
|
||||
|
||||
✨ Features
|
||||
|
||||
- Message bubbles: Text message layout. ([#5208](https://github.com/vector-im/element-ios/issues/5208))
|
||||
- Message Bubbles: Layout for Media. ([#5209](https://github.com/vector-im/element-ios/issues/5209))
|
||||
- Message Bubbles: Support URL Previews. ([#5212](https://github.com/vector-im/element-ios/issues/5212))
|
||||
- Message Bubbles: Support reactions. ([#5214](https://github.com/vector-im/element-ios/issues/5214))
|
||||
- Added static location sharing sending and rendering support. ([#5298](https://github.com/vector-im/element-ios/issues/5298))
|
||||
- Message bubbles: Add settings and build flag. ([#5321](https://github.com/vector-im/element-ios/issues/5321))
|
||||
|
||||
🙌 Improvements
|
||||
|
||||
- Upgrade MatrixSDK version ([v0.21.0](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.21.0)).
|
||||
- Using mutable room list fetch sort options after chaning them to be a structure. Adaptation to MXStore api changes. ([#4384](https://github.com/vector-im/element-ios/issues/4384))
|
||||
- Reduce grace period to report decryption failure ([#5345](https://github.com/vector-im/element-ios/issues/5345))
|
||||
|
||||
🐛 Bugfixes
|
||||
|
||||
- Fixed home screen not updating properly on theme changes. ([#4208](https://github.com/vector-im/element-ios/issues/4208))
|
||||
- Fixes DTMF(dial tones) during voice calls. ([#5375](https://github.com/vector-im/element-ios/issues/5375))
|
||||
- Fix crash when uploading a video on iPad when "Confirm size when sending" is enabled in settings. ([#5399](https://github.com/vector-im/element-ios/issues/5399))
|
||||
- Fix BuildSetting to show/hide the "Invite Friends" button in the side SideMenu. ([#5402](https://github.com/vector-im/element-ios/issues/5402))
|
||||
- Add BuildSetting to hide social login in favour of the simple SSO button. ([#5404](https://github.com/vector-im/element-ios/issues/5404))
|
||||
- Fix grey spinner showing indefinitely over the home view after launch. ([#5407](https://github.com/vector-im/element-ios/issues/5407))
|
||||
- RecentsViewController: Update tab bar badges on section-only updates. ([#5421](https://github.com/vector-im/element-ios/issues/5421))
|
||||
|
||||
Others
|
||||
|
||||
- Fix graphql warnings in issue workflow automation ([#5294](https://github.com/vector-im/element-ios/issues/5294))
|
||||
|
||||
|
||||
## Changes in 1.6.12 (2022-01-11)
|
||||
|
||||
🙌 Improvements
|
||||
|
||||
@@ -15,5 +15,5 @@
|
||||
//
|
||||
|
||||
// Version
|
||||
MARKETING_VERSION = 1.6.12
|
||||
CURRENT_PROJECT_VERSION = 1.6.12
|
||||
MARKETING_VERSION = 1.7.0
|
||||
CURRENT_PROJECT_VERSION = 1.7.0
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
//
|
||||
|
||||
import Foundation
|
||||
import Keys
|
||||
|
||||
/// BuildSettings provides settings computed at build time.
|
||||
/// In future, it may be automatically generated from xcconfig files
|
||||
@@ -213,8 +212,10 @@ final class BuildSettings: NSObject {
|
||||
|
||||
static let allowInviteExernalUsers: Bool = true
|
||||
|
||||
// MARK: - Side Menu
|
||||
static let enableSideMenu: Bool = true
|
||||
|
||||
static let sideMenuShowInviteFriends: Bool = true
|
||||
|
||||
/// Whether to read the `io.element.functional_members` state event and exclude any service members when computing a room's name and avatar.
|
||||
static let supportFunctionalMembers: Bool = true
|
||||
|
||||
@@ -261,7 +262,6 @@ final class BuildSettings: NSObject {
|
||||
static let settingsScreenAllowBugReportingManually: Bool = true
|
||||
static let settingsScreenAllowDeactivatingAccount: Bool = true
|
||||
static let settingsScreenShowChangePassword:Bool = true
|
||||
static let settingsScreenShowInviteFriends:Bool = true
|
||||
static let settingsScreenShowEnableStunServerFallback: Bool = true
|
||||
static let settingsScreenShowNotificationDecodedContentOption: Bool = true
|
||||
static let settingsScreenShowNsfwRoomsOption: Bool = true
|
||||
@@ -291,6 +291,13 @@ final class BuildSettings: NSObject {
|
||||
static let roomScreenAllowMediaLibraryAction: Bool = true
|
||||
static let roomScreenAllowStickerAction: Bool = true
|
||||
static let roomScreenAllowFilesAction: Bool = true
|
||||
|
||||
// Timeline style
|
||||
static let roomScreenAllowTimelineStyleConfiguration: Bool = false
|
||||
static let roomScreenTimelineDefaultStyleIdentifier: RoomTimelineStyleIdentifier = .plain
|
||||
static var roomScreenEnableMessageBubblesByDefault: Bool {
|
||||
return self.roomScreenTimelineDefaultStyleIdentifier == .bubble
|
||||
}
|
||||
|
||||
/// Allow split view detail view stacking
|
||||
static let allowSplitViewDetailsScreenStacking: Bool = true
|
||||
@@ -342,6 +349,7 @@ final class BuildSettings: NSObject {
|
||||
static let authScreenShowPhoneNumber = true
|
||||
static let authScreenShowForgotPassword = true
|
||||
static let authScreenShowCustomServerOptions = true
|
||||
static let authScreenShowSocialLoginSection = true
|
||||
|
||||
// MARK: - Unified Search
|
||||
static let unifiedSearchScreenShowPublicDirectory = true
|
||||
@@ -361,13 +369,13 @@ final class BuildSettings: NSObject {
|
||||
|
||||
// MARK: - Location Sharing
|
||||
|
||||
static let tileServerMapURL = URL(string: "https://api.maptiler.com/maps/streets/style.json?key=" + RiotKeys().mapTilerAPIKey)!
|
||||
static let tileServerMapURL = URL(string: "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx")!
|
||||
|
||||
static var locationSharingEnabled: Bool {
|
||||
guard #available(iOS 14, *) else {
|
||||
return false
|
||||
}
|
||||
|
||||
return false
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,6 @@ source "https://rubygems.org"
|
||||
gem "xcode-install"
|
||||
gem "fastlane"
|
||||
gem "cocoapods", '~>1.11.2'
|
||||
gem "cocoapods-keys"
|
||||
|
||||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
||||
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|
||||
|
||||
+1
-10
@@ -3,9 +3,6 @@ GEM
|
||||
specs:
|
||||
CFPropertyList (3.0.5)
|
||||
rexml
|
||||
RubyInline (3.12.5)
|
||||
ZenTest (~> 4.3)
|
||||
ZenTest (4.12.0)
|
||||
activesupport (6.1.4.4)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
@@ -67,9 +64,6 @@ GEM
|
||||
typhoeus (~> 1.0)
|
||||
cocoapods-deintegrate (1.0.5)
|
||||
cocoapods-downloader (1.5.1)
|
||||
cocoapods-keys (2.2.1)
|
||||
dotenv
|
||||
osx_keychain
|
||||
cocoapods-plugins (1.0.0)
|
||||
nap
|
||||
cocoapods-search (1.0.1)
|
||||
@@ -231,8 +225,6 @@ GEM
|
||||
netrc (0.11.0)
|
||||
optparse (0.1.1)
|
||||
os (1.1.4)
|
||||
osx_keychain (1.0.2)
|
||||
RubyInline (~> 3)
|
||||
plist (3.6.0)
|
||||
public_suffix (4.0.6)
|
||||
rake (13.0.6)
|
||||
@@ -300,7 +292,6 @@ PLATFORMS
|
||||
|
||||
DEPENDENCIES
|
||||
cocoapods (~> 1.11.2)
|
||||
cocoapods-keys
|
||||
fastlane
|
||||
fastlane-plugin-diawi
|
||||
fastlane-plugin-versioning
|
||||
@@ -308,4 +299,4 @@ DEPENDENCIES
|
||||
xcode-install
|
||||
|
||||
BUNDLED WITH
|
||||
2.2.28
|
||||
2.2.32
|
||||
|
||||
@@ -13,7 +13,7 @@ use_frameworks!
|
||||
# - `{ :specHash => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for MatrixSDK repo. Used by Fastfile during CI
|
||||
#
|
||||
# Warning: our internal tooling depends on the name of this variable name, so be sure not to change it
|
||||
$matrixSDKVersion = '= 0.20.16'
|
||||
$matrixSDKVersion = '= 0.21.0'
|
||||
# $matrixSDKVersion = :local
|
||||
# $matrixSDKVersion = { :branch => 'develop'}
|
||||
# $matrixSDKVersion = { :specHash => { git: 'https://git.io/fork123', branch: 'fix' } }
|
||||
@@ -129,11 +129,6 @@ abstract_target 'RiotPods' do
|
||||
|
||||
end
|
||||
|
||||
plugin 'cocoapods-keys', {
|
||||
:project => "Riot",
|
||||
:keys => ["MapTilerAPIKey"]
|
||||
}
|
||||
|
||||
post_install do |installer|
|
||||
installer.pods_project.targets.each do |target|
|
||||
|
||||
|
||||
+2
-7
@@ -49,7 +49,6 @@ PODS:
|
||||
- Introspect (0.1.3)
|
||||
- JitsiMeetSDK (3.10.2)
|
||||
- KeychainAccess (4.2.2)
|
||||
- Keys (1.0.1)
|
||||
- KituraContracts (1.2.1):
|
||||
- LoggerAPI (~> 1.7)
|
||||
- KTCenterFlowLayout (1.3.1)
|
||||
@@ -115,7 +114,6 @@ DEPENDENCIES:
|
||||
- HPGrowingTextView (~> 1.1)
|
||||
- Introspect (~> 0.1)
|
||||
- KeychainAccess (~> 4.2.2)
|
||||
- Keys (from `Pods/CocoaPodsKeys`)
|
||||
- KTCenterFlowLayout (~> 1.3.1)
|
||||
- libPhoneNumber-iOS (~> 0.9.13)
|
||||
- MatrixSDK (= 0.20.16)
|
||||
@@ -179,12 +177,10 @@ EXTERNAL SOURCES:
|
||||
AnalyticsEvents:
|
||||
:branch: release/swift
|
||||
:git: https://github.com/matrix-org/matrix-analytics-events.git
|
||||
Keys:
|
||||
:path: Pods/CocoaPodsKeys
|
||||
|
||||
CHECKOUT OPTIONS:
|
||||
AnalyticsEvents:
|
||||
:commit: f1805ad7c3fafa7fd9c6e2eaa9e0165f8142ecd2
|
||||
:commit: 8058dc6ec07ce0acfe5fdb19eb7e309b0c13845c
|
||||
:git: https://github.com/matrix-org/matrix-analytics-events.git
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
@@ -207,7 +203,6 @@ SPEC CHECKSUMS:
|
||||
Introspect: 2be020f30f084ada52bb4387fff83fa52c5c400e
|
||||
JitsiMeetSDK: 2f118fa770f23e518f3560fc224fae3ac7062223
|
||||
KeychainAccess: c0c4f7f38f6fc7bbe58f5702e25f7bd2f65abf51
|
||||
Keys: a576f4c9c1c641ca913a959a9c62ed3f215a8de9
|
||||
KituraContracts: e845e60dc8627ad0a76fa55ef20a45451d8f830b
|
||||
KTCenterFlowLayout: 6e02b50ab2bd865025ae82fe266ed13b6d9eaf97
|
||||
libbase58: 7c040313537b8c44b6e2d15586af8e21f7354efd
|
||||
@@ -230,6 +225,6 @@ SPEC CHECKSUMS:
|
||||
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
|
||||
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
|
||||
|
||||
PODFILE CHECKSUM: 2493587902f8f28bb2638303dd583c47e9f24d8b
|
||||
PODFILE CHECKSUM: c9a50c445e32b40b22fadd0f54b376f1bd624ebb
|
||||
|
||||
COCOAPODS: 1.11.2
|
||||
|
||||
+3
@@ -19,5 +19,8 @@
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
}
|
||||
}
|
||||
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "poll_type_checkbox_default.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "poll_type_checkbox_default@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "poll_type_checkbox_default@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 615 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "poll_type_checkbox_selected.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "poll_type_checkbox_selected@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "poll_type_checkbox_selected@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 729 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,7 @@
|
||||
|
||||
|
||||
// Permissions usage explanations
|
||||
"NSCameraUsageDescription" = "Kamera slouží k focení, zachycení videí a k videohovorům.";
|
||||
"NSPhotoLibraryUsageDescription" = "Galerie se používá k posílání obrázků a videí.";
|
||||
"NSCalendarsUsageDescription" = "Zobrazuje události v aplikaci.";
|
||||
"NSFaceIDUsageDescription" = "Face ID se používá k přístupu do aplikace.";
|
||||
@@ -1 +1,170 @@
|
||||
|
||||
|
||||
|
||||
/** Reactions **/
|
||||
|
||||
/* A user has reacted to a message, including the reaction e.g. "Alice reacted 👍". */
|
||||
"REACTION_FROM_USER" = "%@ reagoval/a %@";
|
||||
|
||||
/* Look, stuff's happened, alright? Just open the app. */
|
||||
"MSGS_IN_TWO_PLUS_ROOMS" = "%@ nových zpráv v %@, %@ a dalších";
|
||||
|
||||
/* Multiple messages in two rooms */
|
||||
"MSGS_IN_TWO_ROOMS" = "%@ nových zpráv v %@ a %@";
|
||||
|
||||
/* Multiple unread messages from two plus people (ie. for 4+ people: 'others' replaces the third person) */
|
||||
"MSGS_FROM_TWO_PLUS_USERS" = "%@ nových zpráv od %@, %@ a dalších";
|
||||
|
||||
/* Multiple unread messages from three people */
|
||||
"MSGS_FROM_THREE_USERS" = "%@ nových zpráv od %@, %@ a %@";
|
||||
|
||||
/* Multiple unread messages from two people */
|
||||
"MSGS_FROM_TWO_USERS" = "%@ nových zpráv od %@ a %@";
|
||||
|
||||
/* Multiple unread messages from a specific person, not referencing a room */
|
||||
"MSGS_FROM_USER" = "%@ nové zprávy od %@";
|
||||
|
||||
/** Coalesced messages **/
|
||||
|
||||
/* Multiple unread messages in a room */
|
||||
"UNREAD_IN_ROOM" = "%@ nové zprávy v %@";
|
||||
|
||||
/* New message with hidden content due to PIN enabled */
|
||||
"MESSAGE_PROTECTED" = "Nová zpráva";
|
||||
|
||||
/* New message indicator on a room */
|
||||
"MESSAGE_IN_X" = "Zpráva v %@";
|
||||
|
||||
/* New message indicator from a DM */
|
||||
"MESSAGE_FROM_X" = "Zpráva od %@";
|
||||
|
||||
/** Notification messages **/
|
||||
|
||||
/* New message indicator on unknown room */
|
||||
"MESSAGE" = "Zpráva";
|
||||
|
||||
/* Sticker from a specific person, not referencing a room. */
|
||||
"STICKER_FROM_USER" = "%@ poslal/a nálepku";
|
||||
|
||||
/* A single unread message */
|
||||
"SINGLE_UNREAD" = "Dostali jste zprávu";
|
||||
|
||||
/* A single unread message in a room */
|
||||
"SINGLE_UNREAD_IN_ROOM" = "V %@ vám přišla zpráva";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ sdílel/a svou polohu";
|
||||
|
||||
/** Single, unencrypted messages (where we can include the content */
|
||||
|
||||
/* New message from a specific person, not referencing a room. Content included. */
|
||||
"MSG_FROM_USER_WITH_CONTENT" = "%@: %@";
|
||||
|
||||
/** Key verification **/
|
||||
|
||||
"KEY_VERIFICATION_REQUEST_FROM_USER" = "%@ žádá o ověření";
|
||||
|
||||
/* Group call from user, CallKit caller name */
|
||||
"GROUP_CALL_FROM_USER" = "%@ (Skupinový hovor)";
|
||||
|
||||
/* A user added a Jitsi call to a room */
|
||||
"GROUP_CALL_STARTED" = "Začal skupinový hovor";
|
||||
|
||||
/* Incoming named video conference invite from a specific person */
|
||||
"VIDEO_CONF_NAMED_FROM_USER" = "Skupinový videohovor od %@: '%@'";
|
||||
|
||||
/* Incoming named voice conference invite from a specific person */
|
||||
"VOICE_CONF_NAMED_FROM_USER" = "Skupinový hovor od %@: '%@'";
|
||||
|
||||
/* Incoming unnamed video conference invite from a specific person */
|
||||
"VIDEO_CONF_FROM_USER" = "Skupinový videohovor od %@";
|
||||
|
||||
/* Incoming unnamed voice conference invite from a specific person */
|
||||
"VOICE_CONF_FROM_USER" = "Skupinový hovor od %@";
|
||||
|
||||
/* Incoming one-to-one video call */
|
||||
"VIDEO_CALL_FROM_USER" = "Videohovor od %@";
|
||||
|
||||
/** Calls **/
|
||||
|
||||
/* Incoming one-to-one voice call */
|
||||
"VOICE_CALL_FROM_USER" = "Hovor od %@";
|
||||
|
||||
/* A user's membership has updated in an unknown way */
|
||||
"USER_MEMBERSHIP_UPDATED" = "%@ aktualizoval/a svůj profil";
|
||||
|
||||
/* A user has change their avatar */
|
||||
"USER_UPDATED_AVATAR" = "%@ změnil/a svůj avatar";
|
||||
|
||||
/* A user has change their name to a new name which we don't know */
|
||||
"GENERIC_USER_UPDATED_DISPLAYNAME" = "%@ změnil/a svůj alias";
|
||||
|
||||
/** Membership Updates **/
|
||||
|
||||
/* A user has change their name to a new name */
|
||||
"USER_UPDATED_DISPLAYNAME" = "%@ změnil/a svůj alias na %@";
|
||||
|
||||
/* A user has invited you to a named room */
|
||||
"USER_INVITE_TO_NAMED_ROOM" = "%@ vás pozval/a do %@";
|
||||
|
||||
/* A user has invited you to an (unamed) group chat */
|
||||
"USER_INVITE_TO_CHAT_GROUP_CHAT" = "%@ vás pozval/a ke skupinové konverzaci";
|
||||
|
||||
/** Invites **/
|
||||
|
||||
/* A user has invited you to a chat */
|
||||
"USER_INVITE_TO_CHAT" = "%@ vás pozval/a ke konverzaci";
|
||||
|
||||
/* A user has reacted to a message, but the reaction content is unknown */
|
||||
"GENERIC_REACTION_FROM_USER" = "%@ poslal/a reakci";
|
||||
|
||||
/* New message from a specific person in a named room */
|
||||
"MSG_FROM_USER_IN_ROOM" = "%@ něco zveřejnil v %@";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"FILE_FROM_USER" = "%@ poslal/a soubor %@";
|
||||
|
||||
/* New voice message from a specific person, not referencing a room. */
|
||||
"VOICE_MESSAGE_FROM_USER" = "%@ poslal/a zvukový soubor";
|
||||
|
||||
/* New audio message from a specific person, not referencing a room. */
|
||||
"AUDIO_FROM_USER" = "%@ poslal/a zvukový soubor %@";
|
||||
|
||||
/* New video message from a specific person, not referencing a room. */
|
||||
"VIDEO_FROM_USER" = "%@ poslal/a video";
|
||||
|
||||
/* New image message from a specific person in a named room. */
|
||||
"IMAGE_FROM_USER_IN_ROOM" = "%@ zveřejnil/a obrázek %@ v %@";
|
||||
|
||||
/** Media Messages **/
|
||||
|
||||
/* New image message from a specific person, not referencing a room. */
|
||||
"PICTURE_FROM_USER" = "%@ poslal/a obrázek";
|
||||
|
||||
/* New action message from a specific person in a named room. */
|
||||
"ACTION_FROM_USER_IN_ROOM" = "%@: * %@ %@";
|
||||
|
||||
/* New action message from a specific person, not referencing a room. */
|
||||
"ACTION_FROM_USER" = "* %@ %@";
|
||||
|
||||
/* New message from a specific person in a named room. Content included. */
|
||||
"MSG_FROM_USER_IN_ROOM_WITH_CONTENT" = "%@ v %@: %@";
|
||||
|
||||
/** Single, end-to-end encrypted messages (ie. we don't know what they say) */
|
||||
|
||||
/* New message from a specific person, not referencing a room */
|
||||
"MSG_FROM_USER" = "%@ poslal/a zprávu";
|
||||
|
||||
/* New message reply from a specific person in a named room. */
|
||||
"REPLY_FROM_USER_IN_ROOM_TITLE" = "%@ odpověděl/a v %@";
|
||||
|
||||
/* New message reply from a specific person, not referencing a room. */
|
||||
"REPLY_FROM_USER_TITLE" = "%@ odpověděl/a";
|
||||
|
||||
/** Titles **/
|
||||
|
||||
/* Message title for a specific person in a named room */
|
||||
"MSG_FROM_USER_IN_ROOM_TITLE" = "%@ v %@";
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Oznámení";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element zeigt deine Kontakte an, damit du sie zum chatten einladen kannst.";
|
||||
"NSCalendarsUsageDescription" = "Sieh dir deine geplanten Meetings in der App an.";
|
||||
"NSFaceIDUsageDescription" = "Face-ID wird zum Zugriff auf deine App verwendet.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Wenn du deinen Standort mit Personen teilst, braucht Element Zugriff um ihnen eine Karte anzuzeigen.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
|
||||
/* A user's membership has updated in an unknown way */
|
||||
"USER_MEMBERSHIP_UPDATED" = "Profil von %@ geupdatet";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ hat den eigenen Standort geteilt";
|
||||
|
||||
@@ -136,12 +136,12 @@
|
||||
"room_participants_action_section_other" = "Optionen";
|
||||
"room_participants_action_invite" = "Einladen";
|
||||
"room_participants_action_leave" = "Diesen Raum verlassen";
|
||||
"room_participants_action_remove" = "Von diesem Raum entfernen";
|
||||
"room_participants_action_remove" = "Aus diesem Raum entfernen";
|
||||
"room_participants_action_ban" = "Aus diesem Raum bannen";
|
||||
"room_participants_action_ignore" = "Alle Nachrichten von diesem Nutzer verbergen";
|
||||
"room_participants_action_unignore" = "Zeige alle Nachrichten von diesem Nutzer";
|
||||
"room_participants_action_set_moderator" = "Gib Moderationsrechte";
|
||||
"room_participants_action_set_admin" = "Mache zum Administrator";
|
||||
"room_participants_action_ignore" = "Alle Nachrichten dieser Person verbergen";
|
||||
"room_participants_action_unignore" = "Alle Nachrichten dieser Person zeigen";
|
||||
"room_participants_action_set_moderator" = "Moderationsrechte vergeben";
|
||||
"room_participants_action_set_admin" = "Administrationsrechte vergeben";
|
||||
"room_participants_action_start_new_chat" = "Starte neuen Chat";
|
||||
"room_participants_action_start_video_call" = "Starte Video-Anruf";
|
||||
"room_participants_action_mention" = "Erwähnen";
|
||||
@@ -299,7 +299,7 @@
|
||||
"room_participants_ago" = "her";
|
||||
"room_participants_action_section_admin_tools" = "Admin-Werkzeuge";
|
||||
"room_participants_action_unban" = "Entsperren";
|
||||
"room_participants_action_set_default_power_level" = "Zurück auf normale Berechtigung";
|
||||
"room_participants_action_set_default_power_level" = "Besondere Berechtigungen entziehen";
|
||||
"room_participants_action_start_voice_call" = "Starte Sprach-Anruf";
|
||||
"room_ongoing_conference_call" = "Laufender Konferenz-Anruf. Trete bei als %@ oder %@.";
|
||||
"room_event_action_redact" = "Entfernen";
|
||||
@@ -509,7 +509,7 @@
|
||||
"room_action_send_photo_or_video" = "Foto oder Video senden";
|
||||
"room_action_send_sticker" = "Aufkleber senden";
|
||||
"settings_deactivate_account" = "DEAKTIVIERTES KONTO";
|
||||
"settings_deactivate_my_account" = "Benutzerkonto deaktiveren";
|
||||
"settings_deactivate_my_account" = "Mein Konto deaktivieren";
|
||||
"widget_sticker_picker_no_stickerpacks_alert" = "Du hast aktuell keine Aufkleberpakete aktiviert.";
|
||||
"widget_sticker_picker_no_stickerpacks_alert_add_now" = "Welche hinzufügen?";
|
||||
// GDPR
|
||||
@@ -544,12 +544,12 @@
|
||||
"room_event_action_view_decrypted_source" = "Zeige entschlüsselten Quelltext";
|
||||
"room_recents_server_notice_section" = "SYSTEMBENACHRICHTIGUNGEN";
|
||||
"room_resource_limit_exceeded_message_contact_1" = " Bitte ";
|
||||
"room_resource_limit_exceeded_message_contact_2_link" = "kontaktiere deinen Dienst-Administrator";
|
||||
"room_resource_limit_exceeded_message_contact_2_link" = "kontaktiere deine Dienst-Administration";
|
||||
"room_resource_limit_exceeded_message_contact_3" = " um diesen Dienst weiter zu nutzen.";
|
||||
"homeserver_connection_lost" = "Konnte keine Verbindung zum Heimserver herstellen.";
|
||||
"room_resource_usage_limit_reached_message_1_default" = "Dieser Heimserver hat eine seiner Ressourcengrenzen überschritten, sodass ";
|
||||
"room_resource_usage_limit_reached_message_1_monthly_active_user" = "Dieser Heimserver hat seine Begrenzung an monatlich aktiven Benutzern überschritten, sodass ";
|
||||
"room_resource_usage_limit_reached_message_2" = "einige Benutzer nicht in der Lage sein werden, sich anzumelden.";
|
||||
"room_resource_usage_limit_reached_message_1_monthly_active_user" = "Dieser Heimserver hat seine Grenze an monatlich aktiven Benutzenden erreicht, sodass ";
|
||||
"room_resource_usage_limit_reached_message_2" = "einige Benutzende nicht in der Lage sein werden, sich anzumelden.";
|
||||
"room_resource_usage_limit_reached_message_contact_3" = " um diese Obergrenze erhöhen zu lassen.";
|
||||
"auth_accept_policies" = "Bitte Regeln dieses Heimservers ansehen und akzeptieren:";
|
||||
"settings_key_backup" = "SCHLÜSSEL-SICHERHEITSKOPIE";
|
||||
@@ -634,13 +634,13 @@
|
||||
"sign_out_existing_key_backup_alert_sign_out_action" = "Abmelden";
|
||||
"sign_out_non_existing_key_backup_alert_title" = "Du verlierst den Zugriff auf deine verschlüsselten Nachrichten, wenn du dich jetzt abmeldest";
|
||||
"sign_out_non_existing_key_backup_alert_setup_key_backup_action" = "Beginne Schlüsselsicherung zu nutzen";
|
||||
"sign_out_non_existing_key_backup_alert_discard_key_backup_action" = "Ich möchte meine verschlüsselten Nachrichten nicht";
|
||||
"sign_out_non_existing_key_backup_alert_discard_key_backup_action" = "Ich brauche meine verschlüsselten Nachrichten nicht";
|
||||
"sign_out_non_existing_key_backup_sign_out_confirmation_alert_title" = "Du wirst deine verschlüsselten Nachrichten verlieren";
|
||||
"sign_out_non_existing_key_backup_sign_out_confirmation_alert_message" = "Du verlierst den Zugriff auf deine verschlüsselten Nachrichten, es sei denn, du sicherst deine Schlüssel, bevor du dich abmeldest.";
|
||||
"sign_out_non_existing_key_backup_sign_out_confirmation_alert_sign_out_action" = "Abmelden";
|
||||
"sign_out_non_existing_key_backup_sign_out_confirmation_alert_backup_action" = "Sicherungskopie";
|
||||
"sign_out_key_backup_in_progress_alert_title" = "Schlüsselsicherung läuft. Wenn du dich jetzt abmeldest, verlierst du den Zugriff auf deine verschlüsselten Nachrichten.";
|
||||
"sign_out_key_backup_in_progress_alert_discard_key_backup_action" = "Ich möchte meine verschlüsselten Nachrichten nicht";
|
||||
"sign_out_key_backup_in_progress_alert_discard_key_backup_action" = "Ich brauche meine verschlüsselten Nachrichten nicht";
|
||||
"sign_out_key_backup_in_progress_alert_cancel_action" = "Ich werde warten";
|
||||
// Key backup wrong version
|
||||
"e2e_key_backup_wrong_version_title" = "Neue Schlüsselsicherung";
|
||||
@@ -734,7 +734,7 @@
|
||||
"close" = "Schließen";
|
||||
"auth_softlogout_signed_out" = "Du bist abgemeldet";
|
||||
"auth_softlogout_sign_in" = "Anmelden";
|
||||
"auth_softlogout_reason" = "Deine Heimserver-Administrator (%1$@) hat dich von deinem Konto %2$@ (%3$@) abgemeldet.";
|
||||
"auth_softlogout_reason" = "Die Administration deines Heimservers (%1$@) hat dich von deinem Konto %2$@ (%3$@) abgemeldet.";
|
||||
"auth_softlogout_recover_encryption_keys" = "Melde dich an, um ausschließlich auf diesem Gerät gespeicherte Verschlüsselungsschlüssel wiederherzustellen. Du benötigst sie, um deine verschlüsselten Nachrichten auf jedem Gerät zu lesen.";
|
||||
"auth_softlogout_clear_data" = "Persönliche Daten löschen";
|
||||
"auth_softlogout_clear_data_message_1" = "Warnung: Deine persönlichen Daten (einschließlich Verschlüsselungsschlüssel) sind noch auf diesem Gerät gespeichert.";
|
||||
@@ -1002,10 +1002,10 @@
|
||||
"security_settings_crosssigning_info_not_bootstrapped" = "Quersignierung ist bisher nicht konfiguriert.";
|
||||
"room_member_power_level_admin_in" = "Admin in %@";
|
||||
"room_member_power_level_moderator_in" = "Mod in %@";
|
||||
"room_member_power_level_custom_in" = "Benutzerdefiniert (%@) in %@";
|
||||
"room_member_power_level_custom_in" = "Selbstdefiniert (%@) in %@";
|
||||
"room_member_power_level_short_admin" = "Admin";
|
||||
"room_member_power_level_short_moderator" = "Mod";
|
||||
"room_member_power_level_short_custom" = "Benutzerdefiniert";
|
||||
"room_member_power_level_short_custom" = "Selbstdefiniert";
|
||||
"security_settings_secure_backup" = "SICHERE SICHERHEITSKOPIE";
|
||||
"security_settings_secure_backup_synchronise" = "Synchronisiere";
|
||||
"security_settings_secure_backup_delete" = "Backup löschen";
|
||||
@@ -1327,16 +1327,16 @@
|
||||
"room_accessibility_video_call" = "Videoanruf";
|
||||
"room_message_replying_to" = "%@ anworten";
|
||||
"room_message_editing" = "Bearbeitung";
|
||||
"space_beta_announce_information" = "Spaces are a new way to group rooms and people. Bald werden sie auch auf iOS verfügbar sein, bis dahin kannst du sie schon auf %@ Web/Desktop testen.";
|
||||
"space_feature_unavailable_information" = "Wir haben Spaces entwickelt, damit ihr eure vielen Räume besser organisieren könnt.\n\nBald werden sie auch auf iOS verfügbar sein, bis dahin kannst du sie schon auf %@ Web/Desktop testen. Alle Räume die du dort betrittst, sind natürlich auch hier verfügbar.";
|
||||
"space_beta_announce_information" = "Spaces bieten neue Möglichkeiten um Räume und Personen zu gruppieren. Sie sind noch nicht auf iOS verfügbar, aber du kannst sie jetzt schon mit Web und Desktop nutzen.";
|
||||
"space_feature_unavailable_information" = "Spaces bieten neue Möglichkeiten um Räume und Personen zu gruppieren.\n\nBald werden sie auch hier verfügbar sein. Für den Moment kannst du ihnen auf einer der anderen Plattformen beitreten und hier auf alle Räume zugreifen, denen du dort beitrittst.";
|
||||
"space_beta_announce_subtitle" = "Die verbesserte Version von Communities";
|
||||
"space_beta_announce_title" = "Spaces sind bald verfügbar";
|
||||
"space_beta_announce_badge" = "Beta (in Entwicklung)";
|
||||
"space_feature_unavailable_subtitle" = "Spaces sind auf iOS noch nicht verfügbar. Du kannst sie aber schon auf %@ Web oder Desktop ausprobieren";
|
||||
"space_feature_unavailable_subtitle" = "Spaces sind auf iOS noch nicht verfügbar. Du kannst sie aber schon auf Web oder Desktop benutzen";
|
||||
|
||||
// Mark: - Spaces
|
||||
|
||||
"space_feature_unavailable_title" = "Spaces sind noch in der Entwicklung und werden bald verfügbar sein";
|
||||
"space_feature_unavailable_title" = "Spaces sind bald verfügbar";
|
||||
"event_formatter_group_call_incoming" = "%@ in %@";
|
||||
"event_formatter_group_call_leave" = "Verlassen";
|
||||
"event_formatter_group_call_join" = "Beitreten";
|
||||
@@ -1349,7 +1349,7 @@
|
||||
"event_formatter_call_ringing" = "Läuten…";
|
||||
"event_formatter_call_connecting" = "Verbinden…";
|
||||
"settings_labs_enable_ringing_for_group_calls" = "Bei Gruppenanrufen klingeln";
|
||||
"room_no_privileges_to_create_group_call" = "Du musst Admin oder Mod sein, um einen Anruf zu starten.";
|
||||
"room_no_privileges_to_create_group_call" = "Du musst Administrations- oder Moderationsrechte besitzen, um einen Anruf zu starten.";
|
||||
"room_join_group_call" = "Beitreten";
|
||||
|
||||
// Chat
|
||||
@@ -1459,12 +1459,12 @@
|
||||
// Mark: Avatar
|
||||
|
||||
"space_avatar_view_accessibility_label" = "Avatar";
|
||||
"spaces_coming_soon_detail" = "Diese Funktion wurde hier noch nicht eingebaut, kommt aber bald. So lange kannst du dafür Element am Computer nutzen.";
|
||||
"spaces_coming_soon_detail" = "Diese Funktion wurde hier noch nicht eingebaut, kommt aber bald. So lange kannst du dafür %@ am Computer nutzen.";
|
||||
"spaces_invites_coming_soon_title" = "Einladungen sind bald verfügbar";
|
||||
"spaces_add_rooms_coming_soon_title" = "Räume hinzufügen ist bald verfügbar";
|
||||
"spaces_no_result_found_title" = "Keine Ergebnisse gefunden";
|
||||
"spaces_suggested_room" = "Vorgeschlagen";
|
||||
"leave_space_message_admin_warning" = "Du bist Administrator in diesem Space, stelle vor dem Verlassen sicher, dass du die Administrator-Rechte auf ein anderes Mitglied übertragen hast.";
|
||||
"leave_space_message_admin_warning" = "Du besitzt in diesem Space Administrationsrechte, stelle vor dem Verlassen sicher, dass du die Administrationsrechte auf ein anderes Mitglied übertragen hast.";
|
||||
"leave_space_message" = "Bist du dir sicher, dass du %@ verlassen möchtest? Möchtest du außerdem alle Räume und Spaces in diesem Space verlassen?";
|
||||
"leave_space_title" = "%@ verlassen";
|
||||
"space_avatar_view_accessibility_hint" = "Space-Avatar ändern";
|
||||
@@ -1534,7 +1534,7 @@
|
||||
"settings_about" = "ÜBER";
|
||||
"enable" = "Aktivieren";
|
||||
"analytics_prompt_message_upgrade" = "Du hast in der Vergangenheit bereits zugestimmt anonyme Nutzungsdaten mit uns zu teilen. Jetzt werden wir als Hilfe, um zu verstehen, wie Personen mehrere Geräte benutzen, eine zufällige Kennung generieren, die zwischen deinen Geräten geteilt wird.";
|
||||
"analytics_prompt_message_new_user" = "Hilf uns dabei Probleme zu identifizieren und Element zu verbessern, indem du anonyme Nutzungsdaten teilst. Um zu verstehen, wie Personen mehrere Geräte benutzen, werden wir eine zufällige Kennung generieren, die zwischen deinen Geräten geteilt wird.";
|
||||
"analytics_prompt_message_new_user" = "Hilf uns dabei Probleme zu identifizieren und %@ zu verbessern, indem du anonyme Nutzungsdaten teilst. Um zu verstehen, wie Personen mehrere Geräte benutzen, werden wir eine zufällige Kennung generieren, die zwischen deinen Geräten geteilt wird.";
|
||||
"find_your_contacts_title" = "Starte mit der Auflistung deiner Kontakte";
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Du kannst unsere gesamten Bedingungen %@ nachlesen.";
|
||||
@@ -1567,3 +1567,32 @@
|
||||
"analytics_prompt_point_1" = "Wir erfassen und analysieren <b>keine</b> Accountdaten";
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_upgrade */
|
||||
"analytics_prompt_terms_upgrade" = "Alle unsere Bedingungen lesen %@. Bist du damit einverstanden?";
|
||||
"ok" = "OK";
|
||||
"location_sharing_settings_toggle_title" = "Standortfreigabe aktivieren";
|
||||
"location_sharing_settings_header" = "Standortfreigabe";
|
||||
"location_sharing_open_google_maps" = "In Google Maps öffnen";
|
||||
"location_sharing_open_apple_maps" = "In Apple Karten öffnen";
|
||||
"location_sharing_invalid_authorization_settings" = "Einstellungen";
|
||||
"location_sharing_invalid_authorization_not_now" = "Nicht jetzt";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ besitzt keine Berechtigung um auf deinen Standort zuzugreifen. Du kannst den Zugriff unter Einstellungen > Standort erlauben";
|
||||
"location_sharing_locating_user_error_title" = "%@ konnte nicht auf deinen Standort zugreifen. Bitte versuche es später noch einmal.";
|
||||
"location_sharing_loading_map_error_title" = "%@ konnte die Karte nicht laden. Bitte versuche es später noch einmal.";
|
||||
"location_sharing_share_action" = "Teilen";
|
||||
"location_sharing_close_action" = "Schließen";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Standort";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Nachrichtenaustausch für dein Team.";
|
||||
"onboarding_splash_page_3_title" = "Sicherer Nachrichtenaustausch.";
|
||||
"onboarding_splash_page_2_message" = "Wähle wo deine Gespräche liegen, für Kontrolle und Unabhängigkeit. Verbunden mit Matrix.";
|
||||
"onboarding_splash_page_1_title" = "Nimm deine Gespräche in die eigene Hand.";
|
||||
"onboarding_splash_login_button_title" = "Ich habe bereits ein Konto";
|
||||
"onboarding_splash_page_4_message" = "Element ist auch für die Arbeit großartig. Uns vertrauen einige der sichersten Organisationen der Welt.";
|
||||
"onboarding_splash_page_3_message" = "Ende-zu-Ende-verschlüsselt und ohne Telefonnummer nutzbar. Keine Werbung oder Datenerfassung.";
|
||||
"onboarding_splash_page_2_title" = "Du hast die Kontrolle.";
|
||||
"onboarding_splash_page_1_message" = "Sichere und unabhängige Kommunikation, die für die gleiche Vertraulichkeit sorgt, wie ein Gespräch von Angesicht zu Angesicht in deinem eigenen Zuhause.";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Konto erstellen";
|
||||
"settings_enable_room_message_bubbles" = "Nachrichtenblasen";
|
||||
|
||||
@@ -81,6 +81,18 @@
|
||||
"accessibility_checkbox_label" = "checkbox";
|
||||
"accessibility_button_label" = "button";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Create account";
|
||||
"onboarding_splash_login_button_title" = "I already have an account";
|
||||
"onboarding_splash_page_1_title" = "Own your conversations.";
|
||||
"onboarding_splash_page_1_message" = "Secure and independent communication that gives you the same level of privacy as a face-to-face conversation in your own home.";
|
||||
"onboarding_splash_page_2_title" = "You’re in control.";
|
||||
"onboarding_splash_page_2_message" = "Choose where your conversations are kept, giving you control and independence. Connected via Matrix.";
|
||||
"onboarding_splash_page_3_title" = "Secure messaging.";
|
||||
"onboarding_splash_page_3_message" = "End-to-end encrypted and no phone number required. No ads or datamining.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Messaging for your team.";
|
||||
"onboarding_splash_page_4_message" = "Element is also great for the workplace. It’s trusted by the world’s most secure organisations.";
|
||||
|
||||
// Authentication
|
||||
"auth_login" = "Log in";
|
||||
"auth_register" = "Register";
|
||||
@@ -655,6 +667,8 @@ Tap the + to start adding people.";
|
||||
|
||||
"settings_show_NSFW_public_rooms" = "Show NSFW public rooms";
|
||||
|
||||
"settings_enable_room_message_bubbles" = "Message bubbles";
|
||||
|
||||
// Security settings
|
||||
"security_settings_title" = "Security";
|
||||
"security_settings_crypto_sessions" = "MY SESSIONS";
|
||||
@@ -1806,6 +1820,8 @@ Tap the + to start adding people.";
|
||||
|
||||
"poll_edit_form_create_poll" = "Create poll";
|
||||
|
||||
"poll_edit_form_poll_type" = "Poll type";
|
||||
|
||||
"poll_edit_form_poll_question_or_topic" = "Poll question or topic";
|
||||
|
||||
"poll_edit_form_question_or_topic" = "Question or topic";
|
||||
@@ -1822,6 +1838,18 @@ Tap the + to start adding people.";
|
||||
|
||||
"poll_edit_form_post_failure_subtitle" = "Please try again";
|
||||
|
||||
"poll_edit_form_update_failure_title" = "Failed to update poll";
|
||||
|
||||
"poll_edit_form_update_failure_subtitle" = "Please try again";
|
||||
|
||||
"poll_edit_form_poll_type_open" = "Open poll";
|
||||
|
||||
"poll_edit_form_poll_type_open_description" = "Voters see results as soon as they have voted";
|
||||
|
||||
"poll_edit_form_poll_type_closed" = "Closed poll";
|
||||
|
||||
"poll_edit_form_poll_type_closed_description" = "Results are only revealed when you end the poll";
|
||||
|
||||
"poll_timeline_one_vote" = "1 vote";
|
||||
|
||||
"poll_timeline_votes_count" = "%lu votes";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSCalendarsUsageDescription" = "Vaata päevakavasse lisatud koosolekuid vastvast rakendusest.";
|
||||
"NSContactsUsageDescription" = "Element näitab sulle tuttavaid, kellega saad alustada vestlust.";
|
||||
"NSFaceIDUsageDescription" = "Ligipääsuks sinu rakendusele on kasutusel Face ID.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Kui sa jagad teiste kasutajatega oma asukohta, siis Element vajab õigusi asukoha kuvamiseks kaardil.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Teavitus";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ jagas oma asukohta";
|
||||
|
||||
@@ -1420,7 +1420,7 @@
|
||||
"space_private_join_rule" = "Privaatne kogukond";
|
||||
"space_participants_action_ban" = "Sea selles kogukonnakeskus suhtluskeeld";
|
||||
"space_participants_action_remove" = "Eemalda sellest kogukonnakeskusest";
|
||||
"spaces_coming_soon_detail" = "See funktsionaalsus pole siin rakenduses hetkel veel saadaval, aga üsna varsti saab olema. Seni saad sa seda toimingut teha Element'i töölauarakenduses.";
|
||||
"spaces_coming_soon_detail" = "See funktsionaalsus pole siin rakenduses hetkel veel saadaval, aga üsna varsti saab olema. Seni saad sa seda toimingut teha %@'i töölauarakenduses.";
|
||||
"spaces_invites_coming_soon_title" = "Varsti lisandub kutsete saatmine";
|
||||
"spaces_add_rooms_coming_soon_title" = "Varsti on jututubade lisamine võimalik";
|
||||
"spaces_coming_soon_title" = "Mõne aja pärast on meil uuendusi";
|
||||
@@ -1520,10 +1520,39 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Meie kasutustingimused leiad %@.";
|
||||
"analytics_prompt_message_upgrade" = "Sa oled varem nõustunud meiega anonüümsete andmete jagamisega. Selleks, et mõistaksime, kuidas kasutajad erinevaid seadmeid pruugivad, me loome sinu seadmetele ühise juhusliku tunnuse.";
|
||||
"analytics_prompt_message_new_user" = "Võimalike vigade leidmiseks ja Element'i arendamiseks jaga meiega anonüümseid andmeid. Selleks, et mõistaksime, kuidas kasutajad erinevaid seadmeid pruugivad me loome sinu seadmetele ühise juhusliku tunnuse.";
|
||||
"analytics_prompt_message_new_user" = "Võimalike vigade leidmiseks ja %@'i arendamiseks jaga meiega anonüümseid andmeid. Selleks, et mõistaksime, kuidas kasutajad erinevaid seadmeid pruugivad, me loome sinu seadmetele ühise juhusliku tunnuse.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Aita arendada %@ rakendust";
|
||||
"settings_analytics_and_crash_data" = "Saada rakenduse vigade ja analüütika andmeid";
|
||||
"accessibility_button_label" = "nupp";
|
||||
"enable" = "Võta kasutusele";
|
||||
"location_sharing_settings_toggle_title" = "Luba asukohta jagada";
|
||||
"location_sharing_settings_header" = "Asukoha jagamine";
|
||||
"location_sharing_open_google_maps" = "Ava rakendusega Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Ava rakendusega Apple Maps";
|
||||
"location_sharing_invalid_authorization_settings" = "Seadistused";
|
||||
"location_sharing_invalid_authorization_not_now" = "Mitte praegu";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ vajab asukoha määramiseks õigusi, mida saad määrata Seadistused > Asukoht valikust";
|
||||
"location_sharing_locating_user_error_title" = "%@ ei saanud asukohta tuvastada. Palun proovi hiljem uuesti.";
|
||||
"location_sharing_loading_map_error_title" = "%@ ei saanud kaarti avada. Palun proovi hiljem uuesti.";
|
||||
"location_sharing_share_action" = "Jaga";
|
||||
"location_sharing_close_action" = "Sulge";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Asukoht";
|
||||
"ok" = "Sobib";
|
||||
"settings_enable_room_message_bubbles" = "Jutumullid";
|
||||
"onboarding_splash_page_4_message" = "Element sobib ideaalselt kasutamiseks töökeskkonnas. Ta on kasutusel ka mitmetes üliturvalistes organisatsioonides.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Sõnumisuhtlus sinu tiimi või kogukonna jaoks.";
|
||||
"onboarding_splash_page_3_message" = "Tagatud on andmete läbiv krüptimine ning oma telefoninumbrit ei pea sa jagama. Pole reklaame ega sinu andmete kogumist.";
|
||||
"onboarding_splash_page_3_title" = "Turvaline sõnumisuhtlus.";
|
||||
"onboarding_splash_page_2_message" = "Sa ise valid serveri, kus sinu vestlusi hoitakse ning sellega tagadki kontrolli oma andmete üle. Lahendus põhineb Matrix'i võrgul.";
|
||||
"onboarding_splash_page_2_title" = "Sul on kontroll oma andmete üle.";
|
||||
"onboarding_splash_page_1_message" = "Turvaline ja sõltumatu suhtluslahendus, mis tagab sama privaatsuse, kui omavaheline vestlus sinu kodus.";
|
||||
"onboarding_splash_page_1_title" = "Vestlused, mida sa tegelikult ka omad.";
|
||||
"onboarding_splash_login_button_title" = "Mul on kasutajakonto juba olemas";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Loo kasutajakonto";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element affichera vos contacts pour que vous puissiez les inviter à parler.";
|
||||
"NSCalendarsUsageDescription" = "Voir vos rendez-vous dans l’application.";
|
||||
"NSFaceIDUsageDescription" = "Face ID est utilisé pour accéder à votre application.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Element doit accéder à votre emplacement pour vous permettre de la partager aux autres utilisateurs sur une carte.";
|
||||
|
||||
@@ -1492,7 +1492,7 @@
|
||||
"space_private_join_rule" = "Espace privé";
|
||||
"space_participants_action_ban" = "Supprimer de cet espace";
|
||||
"space_participants_action_remove" = "Enlever de cet espace";
|
||||
"spaces_coming_soon_detail" = "Cette fonctionnalité n’a pas été implémentée ici, mais elle arrive. Pour effectuer cette action, vous pouvez utiliser Element sur votre ordinateur.";
|
||||
"spaces_coming_soon_detail" = "Cette fonctionnalité n’a pas été implémentée ici, mais elle arrive. Pour effectuer cette action, vous pouvez utiliser %@ sur votre ordinateur.";
|
||||
"spaces_invites_coming_soon_title" = "Les invitations arrivent prochainement";
|
||||
"spaces_add_rooms_coming_soon_title" = "L’ajout de salons arrive bientôt";
|
||||
"spaces_coming_soon_title" = "Prochainement";
|
||||
@@ -1581,7 +1581,7 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Vous pouvez lire nos conditions d’utilisation %@.";
|
||||
"analytics_prompt_message_upgrade" = "Vous aviez consenti précédemment à partager des rapports d’utilisation avec nous. Désormais, pour nous aider à comprendre comment les gens utilisent cette application sur plusieurs appareils, nous allons générer un identifiant aléatoire commun à tous vos appareils.";
|
||||
"analytics_prompt_message_new_user" = "Aidez nous à identifier les problèmes et améliorer Element en envoyant des rapports d’usage anonymes. Pour comprendre de quelle manière les gens utilisent Element sur plusieurs appareils, nous créeront un identifiant aléatoire commun à tous vos appareils.";
|
||||
"analytics_prompt_message_new_user" = "Aidez nous à identifier les problèmes et améliorer %@ en envoyant des rapports d’usage anonymes. Pour comprendre de quelle manière les gens utilisent Element sur plusieurs appareils, nous créeront un identifiant aléatoire commun à tous vos appareils.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Aidez à améliorer %@";
|
||||
@@ -1604,3 +1604,32 @@
|
||||
"find_your_contacts_title" = "Commencez par lister vos contacts";
|
||||
"settings_contacts_enable_sync_description" = "Cette fonctionnalité utilisera votre serveur d'identité pour vous connecter avec vos contacts, ainsi que pour les aider à vous trouver.";
|
||||
"settings_contacts_enable_sync" = "Trouvez vos contacts";
|
||||
"location_sharing_settings_toggle_title" = "Activer le partage de localisation";
|
||||
"location_sharing_settings_header" = "Partage de localisation";
|
||||
"location_sharing_open_google_maps" = "Ouvrir dans Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Ouvrir dans Apple Plans";
|
||||
"location_sharing_invalid_authorization_settings" = "Paramètres";
|
||||
"location_sharing_invalid_authorization_not_now" = "Pas maintenant";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ n’a pas les autorisations pour accéder à votre localisation. Vous pouvez l’autoriser dans Réglages > Confidentialité";
|
||||
"location_sharing_locating_user_error_title" = "%@ n’a pas pu déterminer votre localisation. Veuillez ré-essayer plus tard.";
|
||||
"location_sharing_loading_map_error_title" = "%@ n’a pas pu charger la carte. Veuillez ré-essayer plus tard.";
|
||||
"location_sharing_share_action" = "Partager";
|
||||
"location_sharing_close_action" = "Fermer";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Localisation";
|
||||
"settings_enable_room_message_bubbles" = "Messages en bulles";
|
||||
"onboarding_splash_page_4_message" = "Element est parfaite pour le bureau. Les sociétés aux plus gros besoins de sécurité lui font confiance.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Une messagerie pour votre équipe.";
|
||||
"onboarding_splash_page_3_message" = "Chiffrée de bout en bout, aucun numéro de téléphone requis. Pas de pub ni d’exploitation de données.";
|
||||
"onboarding_splash_page_3_title" = "Messagerie sécurisée.";
|
||||
"onboarding_splash_page_2_message" = "Décidez où vos conversations sont stockées, en toute liberté et indépendance. Grâce à Matrix.";
|
||||
"onboarding_splash_page_2_title" = "C’est vous qui décidez.";
|
||||
"onboarding_splash_page_1_message" = "Une messagerie sécurisée et indépendante qui vous garantit le même niveau de confidentialité qu’une conversation en face à face chez vous.";
|
||||
"onboarding_splash_page_1_title" = "Maîtrisez vos conversations.";
|
||||
"onboarding_splash_login_button_title" = "J’ai déjà un compte";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Créer un compte";
|
||||
"ok" = "Ok";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element megmutatja a névjegyzéket, hogy beszélgetésbe meghívhasd őket.";
|
||||
"NSCalendarsUsageDescription" = "Nézd meg a találkozóidat az alkalmazásban.";
|
||||
"NSFaceIDUsageDescription" = "Arc felismerés használata az alkalmazás eléréséhez.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Ha megosztod másokkal a földrajzi helyzetedet, akkor az Elementnek hozzáférésre van szüksége a térképen való megjelenítéshez.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Értesítés";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ megosztotta a földrajzi helyzetét";
|
||||
|
||||
@@ -1483,7 +1483,7 @@
|
||||
"space_private_join_rule" = "Privát tér";
|
||||
"space_participants_action_ban" = "Kitiltás a térről";
|
||||
"space_participants_action_remove" = "Eltávolítás a térről";
|
||||
"spaces_coming_soon_detail" = "Ez a lehetőség még nincs meg, de fejlesztés alatt van. Egyenlőre a számítógépeden Elementtel tudod ezt megtenni.";
|
||||
"spaces_coming_soon_detail" = "Ez a lehetőség még nincs meg, de fejlesztés alatt van. Egyenlőre a számítógépeden %@ alkalmazással tudod ezt megtenni.";
|
||||
"spaces_invites_coming_soon_title" = "Meghívók küldése hamarosan érkezik";
|
||||
"spaces_add_rooms_coming_soon_title" = "Szobák hozzáadása hamarosan érkezik";
|
||||
"spaces_coming_soon_title" = "Hamarosan";
|
||||
@@ -1579,7 +1579,7 @@
|
||||
"analytics_prompt_terms_link_new_user" = "itt";
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Az összes feltételünket elolvashatod itt: %@.";
|
||||
"analytics_prompt_message_new_user" = "Segíts észrevennünk a hibákat, és jobbá tenni az Element-et a névtelen használati adatok küldése által. Ahhoz, hogy megértsük, hogyan használnak a felhasználók egyszerre több eszközt, egy véletlenszerű azonosítót generálunk, ami az eszközeid között meg lesz osztva.";
|
||||
"analytics_prompt_message_new_user" = "Segíts észrevennünk a hibákat, és jobbá tenni a(z) %@ alkalmazást a névtelen használati adatok küldése által. Ahhoz, hogy megértsük, hogyan használnak a felhasználók egyszerre több eszközt, egy véletlenszerű azonosítót generálunk, ami az eszközeid között meg lesz osztva.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Segíts jobbá tenni %@";
|
||||
@@ -1590,3 +1590,32 @@
|
||||
"accessibility_button_label" = "gomb";
|
||||
"enable" = "Engedélyezés";
|
||||
"analytics_prompt_message_upgrade" = "Korábban beleegyeztél, hogy velünk anonimizált adatokat osztasz meg. Most, hogy jobban megértsük, hogyan használnak több eszközt az emberek, véletlenszerű azonosítót állítunk elő amit az eszközeid használni fognak.";
|
||||
"location_sharing_settings_toggle_title" = "Földrajzi hely megosztás engedélyezése";
|
||||
"location_sharing_settings_header" = "Földrajzi hely megosztása";
|
||||
"location_sharing_open_google_maps" = "Megnyitás a Google Térképen";
|
||||
"location_sharing_open_apple_maps" = "Megnyitás az Apple Térképen";
|
||||
"location_sharing_invalid_authorization_settings" = "Beállítások";
|
||||
"location_sharing_invalid_authorization_not_now" = "Nem most";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ alkalmazásnak nincs jogosultsága a helyadatod eléréséhez. Engedélyezheted a Beállítások > Helyadatokban";
|
||||
"location_sharing_loading_map_error_title" = "%@ nem tudja betölteni a térképet. Próbáld újra később.";
|
||||
"location_sharing_locating_user_error_title" = "%@ nem fér hozzá a helyadatodhoz. Próbáld újra később.";
|
||||
"location_sharing_share_action" = "Megoszt";
|
||||
"location_sharing_close_action" = "Bezár";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Földrajzi helyzet";
|
||||
"ok" = "OK";
|
||||
"onboarding_splash_page_4_message" = "Element megállja a helyét a munkahelyen is. A világ legbiztonságosabb szervezetei bíznak meg benne.";
|
||||
"onboarding_splash_page_3_message" = "Telefonszám nélkül végpontok között titkosított. Reklámok és adatbányászat nélkül.";
|
||||
"onboarding_splash_page_2_message" = "Válaszd meg hol legyenek a beszélgetéseid tárolva, visszaadja az irányítást és függetlenné tesz. Csatlakozva a Matrixhoz.";
|
||||
"onboarding_splash_page_1_message" = "Biztonságos és független kommunikáció ami olyan biztonságos mintha valakivel négyszemközt beszélgetnél a házadban.";
|
||||
"settings_enable_room_message_bubbles" = "Üzenet buborékok";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Üzenetküldés a csoportodnak.";
|
||||
"onboarding_splash_page_3_title" = "Biztonságos üzenetküldés.";
|
||||
"onboarding_splash_page_2_title" = "Te irányítasz.";
|
||||
"onboarding_splash_page_1_title" = "Az ön beszélgetései csak az öné.";
|
||||
"onboarding_splash_login_button_title" = "Már van fiókom";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Fiók létrehozása";
|
||||
|
||||
@@ -7,3 +7,4 @@
|
||||
"NSCalendarsUsageDescription" = "Lihat pertemuan yang sudah dijadwalkan di aplikasi.";
|
||||
"NSMicrophoneUsageDescription" = "Element membutuhkan akses ke mikrofon Anda untuk melakukan dan menerima panggilan, mengambil video, dan merekam pesan suara.";
|
||||
"NSPhotoLibraryUsageDescription" = "Galeri digunakan untuk mengirim foto dan video.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Ketika Anda membagikan lokasi Anda ke orang-orang, Element membutuhkan akses untuk menampilkan mereka sebuah peta.";
|
||||
|
||||
@@ -165,3 +165,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Notifikasi";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ membagikan lokasinya";
|
||||
|
||||
@@ -611,7 +611,7 @@
|
||||
"open" = "Buka";
|
||||
"version_check_banner_subtitle_deprecated" = "Kami tidak mendukung %@ di iOS %@ lagi. Untuk terus menggunakan %@ secara maksimal, kami menyarankan Anda untuk meningkatkan versi iOS Anda.";
|
||||
"version_check_banner_subtitle_supported" = "Kami akan segera mengakhiri dukungan untuk %@ di iOS %@. Untuk terus menggunakan %@ secara maksimal, kami menyarankan Anda untuk meningkatkan versi iOS Anda.";
|
||||
"spaces_coming_soon_detail" = "Fitur ini belum ada di sini, tetapi sedang dalam proses. Untuk saat ini, Anda dapat melakukannya dengan Element di komputer Anda.";
|
||||
"spaces_coming_soon_detail" = "Fitur ini belum ada di sini, tetapi sedang dalam proses. Untuk saat ini, Anda dapat melakukannya dengan %@ di komputer Anda.";
|
||||
"spaces_no_member_found_detail" = "Mencari seseorang yang tidak ada di %@? Untuk saat ini, Anda dapat mengundangnya di web atau desktop.";
|
||||
"spaces_no_room_found_detail" = "Beberapa hasil mungkin disembunyikan karena ruangannya pribadi dan Anda memerlukan sebuah undangan untuk bergabung.";
|
||||
"spaces_empty_space_detail" = "Beberapa ruangan mungkin disembunyikan karena ruangannya pribadi dan Anda memerlukan sebuah undangan.";
|
||||
@@ -1699,10 +1699,39 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Anda dapat membaca semua kebijakan kami %@.";
|
||||
"analytics_prompt_message_upgrade" = "Anda sebelumnya setuju untuk mengirimkan data penggunaan anonim dengan kami. Sekarang, supaya kami dapat memahami bagaimana orang-orang menggunakan beberapa perangkat-perangkat, kami akan membuat pengenal acak, yang dibagikan oleh perangkat Anda.";
|
||||
"analytics_prompt_message_new_user" = "Bantu kami mengidentifikasi masalah-masalah dan membuat Element lebih baik dengan membagikan data penggunaan anonim. Untuk memahami bagaimana orang-orang menggunakan beberapa perangkat-perangkat, kami akan membuat pengenal acak, yang dibagikan oleh perangkat Anda.";
|
||||
"analytics_prompt_message_new_user" = "Bantu kami mengidentifikasi masalah-masalah dan membuat %@ lebih baik dengan membagikan data penggunaan anonim. Untuk memahami bagaimana orang-orang menggunakan beberapa perangkat-perangkat, kami akan membuat pengenal acak, yang dibagikan oleh perangkat Anda.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Bantu membuat %@ lebih baik";
|
||||
"settings_analytics_and_crash_data" = "Kirim data crash dan analitik";
|
||||
"accessibility_button_label" = "tombol";
|
||||
"enable" = "Aktifkan";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ tidak memiliki izin untuk mengakses lokasi. Anda dapat mengaktifkan akses di Pengaturan > Lokasi";
|
||||
"location_sharing_settings_toggle_title" = "Aktifkan pembagian lokasi";
|
||||
"location_sharing_settings_header" = "Pembagian lokasi";
|
||||
"location_sharing_open_google_maps" = "Buka di Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Buka di Apple Maps";
|
||||
"location_sharing_invalid_authorization_settings" = "Pengaturan";
|
||||
"location_sharing_invalid_authorization_not_now" = "Jangan sekarang";
|
||||
"location_sharing_locating_user_error_title" = "%@ tidak dapat mengakses lokasi Anda. Silakan coba lagi nanti.";
|
||||
"location_sharing_loading_map_error_title" = "%@ tidak dapat memuat peta. Silakan coba lagi nanti.";
|
||||
"location_sharing_share_action" = "Bagikan";
|
||||
"location_sharing_close_action" = "Tutup";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Lokasi";
|
||||
"ok" = "OKE";
|
||||
"settings_enable_room_message_bubbles" = "Gelembung pesan";
|
||||
"onboarding_splash_page_4_message" = "Element juga bagus untuk tempat kerja. Terpercayai oleh organisasi paling aman di dunia.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Perpesanan untuk tim Anda.";
|
||||
"onboarding_splash_page_3_message" = "Terenkripsi secara ujung-ke-ujung dan tidak memerlukan nomor telepon. Tidak ada iklan atau penambangan data.";
|
||||
"onboarding_splash_page_3_title" = "Perpesanan aman.";
|
||||
"onboarding_splash_page_2_message" = "Pilihlah di mana percakapan Anda disimpan, memberikan Anda kendali dan kebebasan. Terhubung via Matrix.";
|
||||
"onboarding_splash_page_2_title" = "Anda dalam kendali.";
|
||||
"onboarding_splash_page_1_message" = "Komunikasi aman dan independen yang memberikan tingkat privasi yang sama seperti percakapan tatap muka di rumah Anda sendiri.";
|
||||
"onboarding_splash_page_1_title" = "Miliki percakapan Anda.";
|
||||
"onboarding_splash_login_button_title" = "Saya sudah punya akun";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Buat akun";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element mostrerà i tuoi contatti così da poterli invitare in chat.";
|
||||
"NSCalendarsUsageDescription" = "Vedi le tue riunioni programmate nell'app.";
|
||||
"NSFaceIDUsageDescription" = "Face ID viene usato per accedere all'app.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Quando condividi la tua posizione con altre persone, Element richiede l'accesso per mostrare loro una mappa.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Notifica";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ ha condiviso la sua posizione";
|
||||
|
||||
@@ -1454,7 +1454,7 @@
|
||||
"space_private_join_rule" = "Spazio privato";
|
||||
"space_participants_action_ban" = "Bandisci da questo spazio";
|
||||
"space_participants_action_remove" = "Rimuovi da questo spazio";
|
||||
"spaces_coming_soon_detail" = "Questa funzionalità non è stata implementata qui, ma è in arrivo. Per adesso, puoi farlo con Element sul tuo computer.";
|
||||
"spaces_coming_soon_detail" = "Questa funzionalità non è stata implementata qui, ma è in arrivo. Per adesso, puoi farlo con %@ sul tuo computer.";
|
||||
"spaces_invites_coming_soon_title" = "Inviti in arrivo";
|
||||
"spaces_add_rooms_coming_soon_title" = "Aggiunta di stanze in arrivo";
|
||||
"spaces_coming_soon_title" = "Prossimamente";
|
||||
@@ -1554,10 +1554,39 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Puoi leggere i nostri termini di servizio %@.";
|
||||
"analytics_prompt_message_upgrade" = "Hai acconsentito precedentemente a condividere con noi dati di utilizzo anonimi. Ora, per capire come le persone usano diversi dispositivi, genereremo un identificativo casuale, condiviso dai tuoi dispositivi.";
|
||||
"analytics_prompt_message_new_user" = "Aiutaci a identificare problemi e a migliorare Element condividendo dati di utilizzo anonimi. Per capire come le persone usano diversi dispositivi, genereremo un identificativo casuale, condiviso dai tuoi dispositivi.";
|
||||
"analytics_prompt_message_new_user" = "Aiutaci a identificare problemi e a migliorare %@ condividendo dati di utilizzo anonimi. Per capire come le persone usano diversi dispositivi, genereremo un identificativo casuale, condiviso dai tuoi dispositivi.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Aiuta a migliorare %@";
|
||||
"settings_analytics_and_crash_data" = "Invia crash e dati analitici";
|
||||
"accessibility_button_label" = "pulsante";
|
||||
"enable" = "Attiva";
|
||||
"location_sharing_settings_toggle_title" = "Attiva condivisione posizione";
|
||||
"location_sharing_settings_header" = "Condivisione posizione";
|
||||
"location_sharing_open_google_maps" = "Apri in Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Apri in Apple Maps";
|
||||
"location_sharing_invalid_authorization_settings" = "Impostazioni";
|
||||
"location_sharing_invalid_authorization_not_now" = "Non ora";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ non ha l'autorizzazione per accedere alla tua posizione. Puoi attivarne l'accesso in Impostazioni > Localizzazione";
|
||||
"location_sharing_locating_user_error_title" = "%@ non ha potuto rilevare la tua posizione. Riprova più tardi.";
|
||||
"location_sharing_loading_map_error_title" = "%@ non ha potuto caricare la mappa. Riprova più tardi.";
|
||||
"location_sharing_share_action" = "Condividi";
|
||||
"location_sharing_close_action" = "Chiudi";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Posizione";
|
||||
"ok" = "OK";
|
||||
"settings_enable_room_message_bubbles" = "Messaggi";
|
||||
"onboarding_splash_page_4_message" = "Element è ottimo anche per i luoghi di lavoro. È considerato affidabile dalle più sicure organizzazioni del mondo.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Messaggistica per la tua squadra.";
|
||||
"onboarding_splash_page_3_message" = "Crittografia end-to-end e nessun numero di telefono richiesto. Niente pubblicità o raccolta di dati.";
|
||||
"onboarding_splash_page_3_title" = "Messaggistica sicura.";
|
||||
"onboarding_splash_page_2_message" = "Scegli dove vengono tenute le tue conversazioni, dandoti controllo e indipendenza. Connesso via Matrix.";
|
||||
"onboarding_splash_page_2_title" = "Tu hai il controllo.";
|
||||
"onboarding_splash_page_1_message" = "Comunicazioni sicure e indipendenti che ti danno lo stesso livello di riservatezza di una conversazione faccia a faccia in casa tua.";
|
||||
"onboarding_splash_page_1_title" = "Prendi il controllo delle tue conversazioni.";
|
||||
"onboarding_splash_login_button_title" = "Ho già un account";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Crea account";
|
||||
|
||||
@@ -21,3 +21,4 @@
|
||||
"NSContactsUsageDescription" = "Element zal uw contacten tonen zodat u ze kunt uitnodigen om te chatten.";
|
||||
"NSCalendarsUsageDescription" = "Bekijk uw geplande afspraken in de app.";
|
||||
"NSFaceIDUsageDescription" = "Face ID wordt gebruikt om toegang te krijgen tot uw app.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Wanneer u uw locatie deelt met mensen heeft Element toegang nodig om dit op een kaart te tonen.";
|
||||
|
||||
@@ -149,3 +149,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Meldingen";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ deelde hun locatie";
|
||||
|
||||
@@ -1583,7 +1583,7 @@
|
||||
"space_private_join_rule" = "Privé Space";
|
||||
"space_participants_action_ban" = "Uit deze Space verbannen";
|
||||
"space_participants_action_remove" = "Uit deze kamer verwijderen";
|
||||
"spaces_coming_soon_detail" = "Deze functies is nog niet klaar, maar er wordt aan gewerkt. Voor nu kan u dit wel doen met Element via uw computer.";
|
||||
"spaces_coming_soon_detail" = "Deze functies is nog niet klaar, maar er wordt aan gewerkt. Voor nu kan u dit wel doen met %@ via uw computer.";
|
||||
"spaces_invites_coming_soon_title" = "Uitnodigen komt binnenkort";
|
||||
"spaces_add_rooms_coming_soon_title" = "Kamers toevoegen komt binnenkort";
|
||||
"spaces_coming_soon_title" = "Komt binnenkort";
|
||||
@@ -1680,7 +1680,7 @@
|
||||
"analytics_prompt_terms_new_user" = "U kunt al onze voorwaarden %@ lezen.";
|
||||
"analytics_prompt_terms_link_new_user" = "hier";
|
||||
"analytics_prompt_message_upgrade" = "U heeft eerder toestemming gegeven om anonieme gebruiksgegevens met ons te delen. Om beter te begrijpen hoe mensen meerdere apparaten gebruiken, genereren we nu een willekeurige identificatiecode die door uw apparaten wordt gedeeld.";
|
||||
"analytics_prompt_message_new_user" = "Help ons bij het identificeren van problemen en het verbeteren van Element door anonieme gebruiksgegevens te delen. Om te begrijpen hoe mensen meerdere apparaten gebruiken genereren we een willekeurige identificatie die we verspreiden over uw apparaten.";
|
||||
"analytics_prompt_message_new_user" = "Help ons bij het identificeren van problemen en het verbeteren van %@ door anonieme gebruiksgegevens te delen. Om te begrijpen hoe mensen meerdere apparaten gebruiken genereren we een willekeurige identificatie die we verspreiden over uw apparaten.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Help %@ verbeteren";
|
||||
@@ -1690,3 +1690,32 @@
|
||||
"room_event_action_remove_poll" = "Poll verwijderen";
|
||||
"accessibility_button_label" = "knop";
|
||||
"enable" = "Inschakelen";
|
||||
"location_sharing_settings_toggle_title" = "Locatie delen inschakelen";
|
||||
"location_sharing_settings_header" = "Locatie delen";
|
||||
"location_sharing_open_google_maps" = "In Google Maps openen";
|
||||
"location_sharing_open_apple_maps" = "In Apple Maps openen";
|
||||
"location_sharing_invalid_authorization_settings" = "Instellingen";
|
||||
"location_sharing_invalid_authorization_not_now" = "Niet nu";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ heeft geen toegang tot uw locatie. U kan dit inschakelen via Instellingen > Locatie";
|
||||
"location_sharing_locating_user_error_title" = "%@ heeft geen toegang tot uw locatie. Probeer het later opnieuw.";
|
||||
"location_sharing_loading_map_error_title" = "%@ kan de kaart niet laden. Probeer het later opnieuw.";
|
||||
"location_sharing_share_action" = "Delen";
|
||||
"location_sharing_close_action" = "Sluiten";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Locatie";
|
||||
"ok" = "OK";
|
||||
"settings_enable_room_message_bubbles" = "Bericht bubbels";
|
||||
"onboarding_splash_page_4_message" = "Element is ook zeer geschikt voor op de werkvloer. Het wordt vertrouwd door 's werelds veiligste organisaties.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Berichten voor uw team.";
|
||||
"onboarding_splash_page_3_message" = "End-to-end versleuteld en geen telefoonnummer vereist. Geen advertenties of datamining.";
|
||||
"onboarding_splash_page_3_title" = "Veilig berichtenverkeer.";
|
||||
"onboarding_splash_page_2_message" = "Kies waar u gesprekken worden gehouden, zodat u controle en onafhankelijkheid heeft. Verbonden via Matrix.";
|
||||
"onboarding_splash_page_2_title" = "U heeft de controle.";
|
||||
"onboarding_splash_page_1_message" = "Veilige en onafhankelijke communicatie die u dezelfde mate van privacy geeft als een persoonlijk gesprek in uw eigen huis.";
|
||||
"onboarding_splash_page_1_title" = "Word eigenaar van uw gesprekken.";
|
||||
"onboarding_splash_login_button_title" = "Ik heb al een account";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Account aanmaken";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Powiadomienie";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ udostępnił(-a) swoją lokację";
|
||||
|
||||
@@ -217,9 +217,9 @@
|
||||
"settings_calls_settings" = "POŁĄCZENIA";
|
||||
"settings_user_interface" = "INTERFEJS UŻYTKOWNIKA";
|
||||
"settings_ignored_users" = "IGNOROWANI UŻYTKOWNICY";
|
||||
"settings_contacts" = "LOKALNE KONTAKTY";
|
||||
"settings_contacts" = "KONTAKTY NA URZĄDZENIU";
|
||||
"settings_advanced" = "ZAAWANSOWANE";
|
||||
"settings_other" = "Pozostałe powiadomienia";
|
||||
"settings_other" = "Pozostałe ustawienia";
|
||||
"settings_devices" = "SESJE";
|
||||
"settings_cryptography" = "KRYPTOGRAFIA";
|
||||
"settings_deactivate_account" = "DEZAKTYWUJ KONTO";
|
||||
@@ -416,7 +416,7 @@
|
||||
"auth_email_not_found" = "Nie udało się wysłać wiadomości e-mail: Adres e-mail nie został znaleziony";
|
||||
"auth_accept_policies" = "Przeczytaj i zaakceptuj zasady tego serwera domowego:";
|
||||
"room_creation_wait_for_creation" = "Pokój jest już tworzony. Proszę czekaj.";
|
||||
"room_creation_invite_another_user" = "Szukaj / zaproś przez ID Użytkownika, Nazwę lub e-mail";
|
||||
"room_creation_invite_another_user" = "ID użytkownika, nazwa lub email";
|
||||
"search_people_placeholder" = "Szukaj przez ID Użytkownika, Nazwę lub e-mail";
|
||||
"contacts_user_directory_offline_section" = "KATALOG UŻYTKOWNIKÓW (offline)";
|
||||
"room_participants_remove_prompt_msg" = "Czy na pewno chcesz usunąć %@ z tej rozmowy?";
|
||||
@@ -1265,7 +1265,7 @@
|
||||
|
||||
// Widget Picker
|
||||
"widget_picker_title" = "Integracje";
|
||||
"widget_integration_manager_disabled" = "Musisz włączyć Menadżer Integracji w ustawieniach";
|
||||
"widget_integration_manager_disabled" = "Musisz włączyć menadżer integracji w ustawieniach";
|
||||
"widget_menu_remove" = "Usuń dla wszystkich";
|
||||
"widget_menu_revoke_permission" = "Odbierz mi dostęp";
|
||||
"widget_menu_open_outside" = "Otwórz w przeglądarce";
|
||||
@@ -1321,7 +1321,7 @@
|
||||
"identity_server_settings_description" = "Obecnie używasz %@ do wyszukiwania i bycia znalezionym przez kontakty, które znasz.";
|
||||
|
||||
// Identity server settings
|
||||
"identity_server_settings_title" = "Serwer Tożsamości";
|
||||
"identity_server_settings_title" = "Serwer tożsamości";
|
||||
|
||||
// AuthenticatedSessionViewControllerFactory
|
||||
"authenticated_session_flow_not_supported" = "Ta aplikacja nie obsługuje mechanizmu uwierzytelniania na Twoim serwerze domowym.";
|
||||
@@ -1365,7 +1365,7 @@
|
||||
"settings_discovery_terms_not_signed" = "Zaakceptuj warunki korzystania z usługi serwera tożsamości (%@), aby umożliwić innym osobom wyszukiwanie Ciebie za pomocą adresu e-mail lub numeru telefonu.";
|
||||
"settings_discovery_no_identity_server" = "Obecnie nie używasz serwera tożsamości. Pomyśl o tym, aby go dodać by móc być odnalezionym przez osoby, które znasz.";
|
||||
"settings_devices_description" = "Publiczna nazwa sesji jest widoczna dla osób, z którymi się komunikujesz";
|
||||
"settings_integrations_allow_description" = "Użyj Menedżera Integracji (%@) do zarządzania botami, mostami, widżetami i pakietami naklejek.\n\nMenedżerowie integracji otrzymują dane konfiguracyjne i mogą modyfikować widżety, wysyłać zaproszenia do pokojów i ustawiać poziomy mocy w Twoim imieniu.";
|
||||
"settings_integrations_allow_description" = "Użyj menedżera integracji (%@) do zarządzania botami, mostami, widżetami i pakietami naklejek.\n\nMenedżerowie integracji otrzymują dane konfiguracyjne i mogą modyfikować widżety, wysyłać zaproszenia do pokojów i ustawiać poziomy mocy w Twoim imieniu.";
|
||||
"settings_calls_stun_server_fallback_description" = "Zezwalaj na użycie rezerwowego serwera połączeń %@ w przypadku, gdy Twój serwer domowy go nie oferuje (Twój adres IP będzie udostępniany podczas połączenia).";
|
||||
"settings_three_pids_management_information_part1" = "Wybierz, które adresy e-mail lub numery telefonów chcesz wykorzystać do logowania się lub odzyskiwania konta. Kontroluj, kto może Cię dzięki nim znaleźć przechodząc do ";
|
||||
"room_multiple_typing_notification" = "%@ i inni";
|
||||
@@ -1535,7 +1535,58 @@
|
||||
"settings_default" = "Powiadomienia dotyczące wiadomości";
|
||||
"settings_notifications" = "POWIADOMIENIA";
|
||||
"settings_show_url_previews_description" = "Podgląd URL będzie wyświetlany tylko w niezaszyfrowanych pokojach.";
|
||||
"settings_show_url_previews" = "Pokaż podgląd adresów URL";
|
||||
"settings_show_url_previews" = "Pokaż podgląd stron";
|
||||
"settings_confirm_media_size_description" = "Gdy ta opcja jest włączona, zostaniesz poproszony o potwierdzenie, w jakim rozmiarze obrazy i filmy będą wysyłane.";
|
||||
"settings_confirm_media_size" = "Potwierdź rozmiar podczas wysyłania";
|
||||
"settings_sending_media" = "WYSYŁANIE ZDJĘĆ I WIDEO";
|
||||
"service_terms_modal_table_header_integration_manager" = "WARUNKI KORZYSTANIA Z MENEDŻERA INTEGRACJI";
|
||||
"service_terms_modal_table_header_identity_server" = "WARUNKI KORZYSTANIA Z SERWERA TOŻSAMOŚCI";
|
||||
"service_terms_modal_footer" = "To może być wyłączone później w ustawieniach.";
|
||||
|
||||
// Service terms
|
||||
"service_terms_modal_title_message" = "Aby kontynuować, wyraź zgodę na poniższe warunki użytkowania";
|
||||
"share_extension_send_now" = "Udostępnij teraz";
|
||||
"share_extension_low_quality_video_message" = "Udostępnij w %@ by uzyskać lepszą jakość, lub udostępnij w niskiej jakości poniżej.";
|
||||
"share_extension_low_quality_video_title" = "Video będzie udostępnianie w niskiej jakości";
|
||||
"analytics_prompt_stop" = "Przestań udostępniać";
|
||||
"analytics_prompt_yes" = "Tak, to jest w porządku";
|
||||
"analytics_prompt_not_now" = "Nie teraz";
|
||||
"analytics_prompt_point_3" = "Możesz to wyłączyć w dowolnym momencie w ustawieniach";
|
||||
/* Note: The word "don't" is formatted in bold */
|
||||
"analytics_prompt_point_2" = "Nie dzielimy się informacjami z <b>żadnymi</b> firmami zewnętrznymi";
|
||||
/* Note: The word "don't" is formatted in bold */
|
||||
"analytics_prompt_point_1" = "Nie gromadzimy ani profilujemy <b>żadnych</b> danych na temat kont";
|
||||
"analytics_prompt_terms_link_upgrade" = "tutaj";
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_upgrade */
|
||||
"analytics_prompt_terms_upgrade" = "Przeczytaj nasze warunki użytkowania %@. Czy odpowiadają one Tobie?";
|
||||
"analytics_prompt_terms_link_new_user" = "tutaj";
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Tutaj możesz przeczytać nasze warunki użytkowania %@.";
|
||||
"analytics_prompt_message_upgrade" = "Wcześniej dostaliśmy Twoją zgodę na używanie zanonimizowanych danych na temat użytkowania. Teraz, by zrozumieć jak użytkownicy korzystają z wielu urządzeń, wygenerujemy identyfikator używany przez nie wszystkie.";
|
||||
"analytics_prompt_message_new_user" = "Pomóż nam zidentyfikować problemy i poprawić @% udostępniając zanonimizowane dane o użytkowaniu. W celu zrozumienia jak użytkownicy korzystają z wielu urządzeń wygenerujemy identyfikator używany przez nie wszystkie.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Pomóż ulepszyć %@";
|
||||
"settings_discovery_accept_terms" = "Zaakceptuj warunki używania serwera tożsamości";
|
||||
"settings_analytics_and_crash_data" = "Wysyłaj dane analityczne i o zawieszeniu aplikacji";
|
||||
"settings_labs_enabled_polls" = "Ankiety";
|
||||
"settings_contacts_enable_sync" = "Znajdź swoje kontakty";
|
||||
"settings_phone_contacts" = "KONTAKTY TELEFONICZNE";
|
||||
"settings_links" = "LINKI";
|
||||
"room_event_action_forward" = "Przekaż dalej";
|
||||
"room_event_action_end_poll" = "Zakończ ankietę";
|
||||
"room_event_action_remove_poll" = "Usuń ankietę";
|
||||
"find_your_contacts_identity_service_error" = "Nie można połączyć się s serwerem tożsamości.";
|
||||
"contacts_address_book_permission_denied_alert_message" = "Aby włączyć kontakty, wejdź do ustawień Twojego urządzenia.";
|
||||
"contacts_address_book_permission_denied_alert_title" = "Kontakty wyłączone";
|
||||
"room_recents_suggested_rooms_section" = "SUGEROWANE POKOJE";
|
||||
"onboarding_splash_page_1_message" = "Bezpieczna i niezależna komunikacja dająca Tobie ten sam poziom prywatności jak rozmowa twarzą w twarz w Twoim domu.";
|
||||
"onboarding_splash_login_button_title" = "Mam już konto";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Stwórz konto";
|
||||
"accessibility_button_label" = "przycisk";
|
||||
"done" = "Gotowe";
|
||||
"open" = "Otwórz";
|
||||
"enable" = "Włącz";
|
||||
"ok" = "OK";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element vai mostrar seus contatos para que você possa convidá-los a conversar.";
|
||||
"NSCalendarsUsageDescription" = "Ver suas reuniões agendadas no app.";
|
||||
"NSFaceIDUsageDescription" = "Face ID é usada para acessar seu app.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Quando você compartilha sua localização para pessoas, Element precisa de acesso para mostrar-lhes um mapa.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Notificação";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ compartilhou a localização dela(e)";
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
"auth_reset_password_error_unauthorized" = "Falha para verificar endereço de email: assegure que você clicou no link no email";
|
||||
"auth_reset_password_error_not_found" = "Seu endereço de email não parece estar associado com uma ID Matrix neste servidorcasa.";
|
||||
"auth_reset_password_success_message" = "Sua senha tem sido resettada.\n\nVocê tem sido feito logout de todas as sessões e não vai mais receber notificações push. Para re-habilitar notificações, refaça login em cada dispositivo.";
|
||||
"auth_add_email_and_phone_warning" = "Registro com email e número de telefone ao mesmo tempo não é suportado ainda até que a api exista. Somente o número de telefone vai ser levado em conta. Você pode adicionar seu email a seu perfil em configurações.";
|
||||
"auth_add_email_and_phone_warning" = "Registro com email e número de telefone ao mesmo tempo não é suportado ainda até que a api exista. Somente o número de telefone vai ser levado em conta. Você pode adicionar seu email a seu perfil em ajustes.";
|
||||
"room_creation_appearance" = "Aparência";
|
||||
"room_creation_appearance_name" = "Nome";
|
||||
"room_creation_appearance_picture" = "Imagem de Chat (opcional)";
|
||||
@@ -275,7 +275,7 @@
|
||||
"room_preview_try_join_an_unknown_room" = "Você está tentando acessar %@. Você gostaria de se juntar para participar na discussão?";
|
||||
"room_preview_try_join_an_unknown_room_default" = "uma sala";
|
||||
// Settings
|
||||
"settings_title" = "Configurações";
|
||||
"settings_title" = "Ajustes";
|
||||
"account_logout_all" = "Fazer logout de todas as contas";
|
||||
"settings_config_no_build_info" = "Nenhuma info de build";
|
||||
"settings_mark_all_as_read" = "Marcar todas as mensagens como lidas";
|
||||
@@ -283,7 +283,7 @@
|
||||
"settings_config_home_server" = "Servidorcasa é %@";
|
||||
"settings_config_identity_server" = "Servidor de identidade é %@";
|
||||
"settings_config_user_id" = "Feito login como %@";
|
||||
"settings_user_settings" = "CONFIGURAÇÕES DE USUÁRIA(O)";
|
||||
"settings_user_settings" = "AJUSTES DE USUÁRIA(O)";
|
||||
"settings_notifications_settings" = "CONFIGURAÇÕES DE NOTIFICAÇÃO";
|
||||
"settings_calls_settings" = "CHAMADAS";
|
||||
"settings_user_interface" = "INTERFACE DE USUÁRIA(O)";
|
||||
@@ -316,7 +316,7 @@
|
||||
"settings_fail_to_update_profile" = "Falha para atualizar perfil";
|
||||
"settings_enable_push_notif" = "Notificações neste dispositivo";
|
||||
"settings_show_decrypted_content" = "Mostrar conteúdo decriptado";
|
||||
"settings_global_settings_info" = "Configurações de notificação globais estão disponíveis em seu cliente web %@";
|
||||
"settings_global_settings_info" = "Ajustes de notificação globais estão disponíveis em seu cliente web %@";
|
||||
"settings_enable_callkit" = "Chamamento integrado";
|
||||
"settings_callkit_info" = "Receba chamadas entrantes em sua tela de bloqueio. Veja suas chamadas %@ no histórico de chamadas do sistema. Se iCloud está habilitado, este histórico de chamadas vai ser compartilhado com Apple.";
|
||||
"settings_ui_language" = "Língua";
|
||||
@@ -361,7 +361,7 @@
|
||||
"settings_deactivate_my_account" = "Desativar minha conta";
|
||||
"room_details_people" = "Membros";
|
||||
"room_details_files" = "Uploads";
|
||||
"room_details_settings" = "Configurações";
|
||||
"room_details_settings" = "Ajustes";
|
||||
"room_details_photo" = "Foto de Sala";
|
||||
"room_details_room_name" = "Nome de Sala";
|
||||
"room_details_topic" = "Tópico";
|
||||
@@ -482,7 +482,7 @@
|
||||
"bug_report_prompt" = "O aplicativo tem crashado da última vez. Você gostaria de submeter um reporte de crash?";
|
||||
"rage_shake_prompt" = "Você parece estar agitando o telefone em frustração. Você gostaria de submeter um reporte de bug?";
|
||||
"do_not_ask_again" = "Não perguntar de novo";
|
||||
"camera_access_not_granted" = "%@ não tem permissão para usar Câmera, por favor mude configurações de privacidade";
|
||||
"camera_access_not_granted" = "%@ não tem permissão para usar Câmera, por favor mude ajustes de privacidade";
|
||||
"large_badge_value_k_format" = "%.1fK";
|
||||
// Call
|
||||
"call_incoming_voice_prompt" = "Chamada de voz entrante de %@";
|
||||
@@ -497,7 +497,7 @@
|
||||
// Crash report
|
||||
"google_analytics_use_prompt" = "Você gostaria de ajudar a melhorar %@ ao reportar automaticamente reportes de crash e dados de uso anônimos?";
|
||||
// Crypto
|
||||
"e2e_enabling_on_app_update" = "%@ agora suporta encriptação ponta-a-ponta mas você precisa fazer login de novo para habilitá-la.\n\nVocê pode fazê-lo agora ou mais tarde desde as configurações do aplicativo.";
|
||||
"e2e_enabling_on_app_update" = "%@ agora suporta encriptação ponta-a-ponta mas você precisa fazer login de novo para habilitá-la.\n\nVocê pode fazê-lo agora ou mais tarde desde os ajustes do aplicativo.";
|
||||
"e2e_need_log_in_again" = "Você precisa fazer login de volta para gerar chaves de encriptação ponta-a-ponta para esta sessão e submeter a chave pública a seu servidorcasa.\nIsto é só desta vez; desculpe pela inconveniência.";
|
||||
// Bug report
|
||||
"bug_report_title" = "Report de Bug";
|
||||
@@ -528,7 +528,7 @@
|
||||
"widget_integration_room_not_visible" = "Sala %@ não está visível.";
|
||||
// Share extension
|
||||
"share_extension_auth_prompt" = "Faça login no app principal para compartilhar conteúdo";
|
||||
"share_extension_failed_to_encrypt" = "Falha para enviar. Cheque no app principal as configurações de encriptação para esta sala";
|
||||
"share_extension_failed_to_encrypt" = "Falha para enviar. Cheque no app principal os ajustes de encriptação para esta sala";
|
||||
// Room key request dialog
|
||||
"e2e_room_key_request_title" = "Requisição de chave de encriptação";
|
||||
"e2e_room_key_request_message_new_device" = "Você adicionou uma nova sessão '%@', que está requisitando chaves de encriptação.";
|
||||
@@ -586,8 +586,8 @@
|
||||
"room_does_not_exist" = "%@ não existe";
|
||||
// Key backup wrong version
|
||||
"e2e_key_backup_wrong_version_title" = "Novo Backup de Chave";
|
||||
"e2e_key_backup_wrong_version" = "Um novo backup de chave de mensagem segura tem sido detectado.\n\nSe isto não foi você, defina uma nova Frase de Segurança em Configurações.";
|
||||
"e2e_key_backup_wrong_version_button_settings" = "Configurações";
|
||||
"e2e_key_backup_wrong_version" = "Um novo backup de chave de mensagem segura tem sido detectado.\n\nSe isto não foi você, defina uma nova Frase de Segurança em Ajustes.";
|
||||
"e2e_key_backup_wrong_version_button_settings" = "Ajustes";
|
||||
"e2e_key_backup_wrong_version_button_wasme" = "Foi eu";
|
||||
"key_backup_setup_title" = "Backup de Chave";
|
||||
"key_backup_setup_skip_alert_title" = "Você tem certeza?";
|
||||
@@ -625,7 +625,7 @@
|
||||
"key_backup_recover_title" = "Mensagens Seguras";
|
||||
"key_backup_recover_invalid_passphrase_title" = "Frase de Segurança Incorreta";
|
||||
"key_backup_recover_invalid_passphrase" = "Backup não pôde ser decriptado com esta frase: por favor verifique que você entrou a Frase de Segurança correta.";
|
||||
"key_backup_recover_invalid_recovery_key_title" = "Disparidade de Chave de Segurança";
|
||||
"key_backup_recover_invalid_recovery_key_title" = "Correspondência Errada de Chave de Segurança";
|
||||
"key_backup_recover_invalid_recovery_key" = "Backup não pôde ser decriptografado com esta chave: por favor verifique que você entrou a Chave de Segurança correta.";
|
||||
"key_backup_recover_from_passphrase_info" = "Use sua Frase de Segurança para destrancar seu histórico de mensagens seguras";
|
||||
"key_backup_recover_from_passphrase_passphrase_title" = "Entrar";
|
||||
@@ -638,7 +638,7 @@
|
||||
"key_backup_recover_from_recovery_key_recovery_key_title" = "Entrar";
|
||||
"key_backup_recover_from_recovery_key_recovery_key_placeholder" = "Entrar Chave de Segurança";
|
||||
"key_backup_recover_from_recovery_key_recover_action" = "Destrancar Histórico";
|
||||
"key_backup_recover_from_recovery_key_lost_recovery_key_action" = "Perdeu sua Chave de Segurança? Você pode configurar uma nova em configurações.";
|
||||
"key_backup_recover_from_recovery_key_lost_recovery_key_action" = "Perdeu sua Chave de Segurança? Você pode configurar uma nova em ajustes.";
|
||||
"key_backup_recover_success_info" = "Backup Restaurado!";
|
||||
"key_backup_recover_done_action" = "Feito";
|
||||
"key_backup_setup_banner_title" = "Nunca perca mensagens criptografadas";
|
||||
@@ -677,7 +677,7 @@
|
||||
"secure_key_backup_setup_existing_backup_error_unlock_it" = "Destrancá-lo";
|
||||
"secure_key_backup_setup_existing_backup_error_delete_it" = "Deletá-lo";
|
||||
"secure_key_backup_setup_cancel_alert_title" = "Você tem certeza?";
|
||||
"secure_key_backup_setup_cancel_alert_message" = "Se você cancelar agora, você pode perder mensagens & dados encriptados se você perder acesso a seus logins.\n\nVocê também pode configurar Backup Seguro & gerenciar suas chaves em Configurações.";
|
||||
"secure_key_backup_setup_cancel_alert_message" = "Se você cancelar agora, você pode perder mensagens & dados encriptados se você perder acesso a seus logins.\n\nVocê também pode configurar Backup Seguro & gerenciar suas chaves em Ajustes.";
|
||||
"secure_backup_setup_banner_title" = "Backup Seguro";
|
||||
"secure_backup_setup_banner_subtitle" = "Salvaguardar-se contra perda de acesso a mensagens & dados encriptados";
|
||||
// Recover from private key
|
||||
@@ -722,7 +722,7 @@
|
||||
"settings_integrations_allow_button" = "Gerenciar integrações";
|
||||
"settings_integrations_allow_description" = "Use um gerenciador de integrações (%@) para gerenciar bots, bridges, widgets e pacotes de stickers.\n\nGerenciadores de integrações recebem dados de configuração, e podem modificar widgets, enviar convites de sala e definir níveis de poder em seu nome.";
|
||||
"settings_add_3pid_password_title_email" = "Adicionar endereço de email";
|
||||
"settings_discovery_three_pids_management_information_part2" = "Configurações de Usuária(o)";
|
||||
"settings_discovery_three_pids_management_information_part2" = "Ajustes de Usuária(o)";
|
||||
"settings_discovery_three_pids_management_information_part3" = ".";
|
||||
"settings_discovery_three_pid_details_share_action" = "Compartilhar";
|
||||
"settings_discovery_three_pid_details_revoke_action" = "Revogar";
|
||||
@@ -747,7 +747,7 @@
|
||||
// Media picker
|
||||
"media_picker_title" = "Biblioteca de mídia";
|
||||
"image_picker_action_library" = "Escolher de biblioteca";
|
||||
"photo_library_access_not_granted" = "%@ não tem permissão para acessar biblioteca de fotos, por favor mude configurações de privacidade";
|
||||
"photo_library_access_not_granted" = "%@ não tem permissão para acessar biblioteca de fotos, por favor mude ajustes de privacidade";
|
||||
"room_widget_permission_display_name_permission" = "Seu nome de exibição";
|
||||
"device_verification_security_advice_emoji" = "Compare os emoji únicos, garantindo que eles aparecem na mesma ordem.";
|
||||
"device_verification_self_verify_alert_message" = "Verifique o novo login acessando sua conta: %@";
|
||||
@@ -794,14 +794,14 @@
|
||||
"identity_server_settings_disconnect_info" = "Desconectar-se de seu servidor de identidade vai significar que você não vai ser descobertável por outras(os) usuárias(os) e ser capaz de convidar outras(os) por email ou telefone.";
|
||||
"identity_server_settings_alert_disconnect_still_sharing_3pid" = "Você ainda está compartilhando seus dados pessoais no servidor de identidade %@.\n\nNós recomendamos que você remova seus endereços de email e números de telefone do servidor de identidade antes de se desconectar.";
|
||||
"call_no_stun_server_error_title" = "Chamada falhou devido a servidor malconfigurado";
|
||||
"widget_integration_manager_disabled" = "Você precisa habilitar gerenciador de integrações em configurações";
|
||||
"widget_integration_manager_disabled" = "Você precisa habilitar gerenciador de integrações em ajustes";
|
||||
"service_terms_modal_description_for_identity_server_1" = "Encontrar outras(os) por telefone ou email";
|
||||
"service_terms_modal_description_for_identity_server_2" = "Ser encontrada(o) por telefone ou email";
|
||||
"device_verification_self_verify_wait_additional_information" = "Isto funciona com %@ e outros clientes Matrix capazes de assinatura cruzada.";
|
||||
"key_verification_verified_user_information" = "Mensagens com esta(e) usuária(o) são encriptadas ponta-a-ponta e não podem ser lidas por terceiros.";
|
||||
"device_verification_emoji_smiley" = "Smiley";
|
||||
// Generic errors
|
||||
"error_invite_3pid_with_no_identity_server" = "Adicione um servidor de identidade em suas configurações para convidar por email.";
|
||||
"error_invite_3pid_with_no_identity_server" = "Adicione um servidor de identidade em seus ajustes para convidar por email.";
|
||||
"key_verification_bootstrap_not_setup_message" = "Você precisa fazer bootstrap de assinatura cruzada primeiro.";
|
||||
"user_verification_sessions_list_user_trust_level_warning_title" = "Aviso";
|
||||
"user_verification_sessions_list_information" = "Mensagens com esta(e) usuária(o) nesta sala são encriptadas ponta-a-ponta e não podem ser lidas por terceiros.";
|
||||
@@ -907,7 +907,7 @@
|
||||
"event_formatter_widget_added_by_you" = "Você adicionou o widget: %@";
|
||||
"event_formatter_widget_removed_by_you" = "Você removeu o widget: %@";
|
||||
"camera_unavailable" = "A câmera está indisponível em seu dispositivo";
|
||||
"call_no_stun_server_error_message_2" = "Alternativamente, você pode tentar usar o servidor público em %@, mas isto não vai ser tão confiável, e vai compartilhar seu endereço de IP com esse servidor. Você também pode gerenciar isto em Configurações";
|
||||
"call_no_stun_server_error_message_2" = "Alternativamente, você pode tentar usar o servidor público em %@, mas isto não vai ser tão confiável, e vai compartilhar seu endereço de IP com esse servidor. Você também pode gerenciar isto em Ajustes";
|
||||
"call_no_stun_server_error_use_fallback_button" = "Tentar usar %@";
|
||||
// Widget
|
||||
"widget_no_integrations_server_configured" = "Nenhum servidor de integrações configurado";
|
||||
@@ -974,7 +974,7 @@
|
||||
"key_verification_verify_sas_cancel_action" = "Eles não correspondem";
|
||||
"key_verification_verify_sas_validate_action" = "Eles correspondem";
|
||||
"key_verification_verify_sas_additional_information" = "Para segurança ótima, use um outro meio de comunicação confiado ou faça isto em pessoa.";
|
||||
"key_verification_manually_verify_device_instruction" = "Confirme ao comparar o seguinte com as Configurações de Usuária(o) em sua outra sessão:";
|
||||
"key_verification_manually_verify_device_instruction" = "Confirme ao comparar o seguinte com os Ajustes de Usuária(o) em sua outra sessão:";
|
||||
"key_verification_manually_verify_device_name_title" = "Nome de sessão";
|
||||
"key_verification_manually_verify_device_id_title" = "ID de sessão";
|
||||
"key_verification_manually_verify_device_key_title" = "Chave de sessão";
|
||||
@@ -1350,7 +1350,7 @@
|
||||
"side_menu_app_version" = "Versão %@";
|
||||
"side_menu_action_feedback" = "Feedback";
|
||||
"side_menu_action_help" = "Ajuda";
|
||||
"side_menu_action_settings" = "Configurações";
|
||||
"side_menu_action_settings" = "Ajustes";
|
||||
"side_menu_action_invite_friends" = "Convidar amigas(os)";
|
||||
|
||||
// Mark: - Side menu
|
||||
@@ -1370,13 +1370,13 @@
|
||||
"security_settings_secure_backup_reset" = "Resettar";
|
||||
"security_settings_secure_backup_info_valid" = "Esta sessão está fazendo backup de suas chaves.";
|
||||
"security_settings_secure_backup_info_checking" = "Checando…";
|
||||
"settings_ui_theme_picker_message_match_system_theme" = "\"Auto\" corresponde ao tema de sistema de seu dispositivo";
|
||||
"settings_ui_theme_picker_message_invert_colours" = "\"Auto\" usa as configurações \"Inverter Cores\" de seu dispositivo";
|
||||
"settings_ui_theme_picker_message_match_system_theme" = "\"Auto\" corresponde com o tema de sistema de seu dispositivo";
|
||||
"settings_ui_theme_picker_message_invert_colours" = "\"Auto\" usa os ajustes \"Inverter Cores\" de seu dispositivo";
|
||||
"room_recents_unknown_room_error_message" = "Não dá para encontrar esta sala. Assegure que ela existe";
|
||||
"room_creation_dm_error" = "Nós não conseguimos criar sua DM. Por favor cheque as/os usuárias(os) que você quer convidar e tente de novo.";
|
||||
"key_verification_verify_qr_code_scan_code_other_device_action" = "Scannar com este dispositivo";
|
||||
"room_notifs_settings_encrypted_room_notice" = "Por favor note que notificações de menções & palavrachave não estão disponíveis em salas encriptadas no celular.";
|
||||
"room_notifs_settings_account_settings" = "Configurações de conta";
|
||||
"room_notifs_settings_account_settings" = "Ajustes de conta";
|
||||
"room_notifs_settings_manage_notifications" = "Você pode gerenciar notificações em %@";
|
||||
"room_notifs_settings_cancel_action" = "Cancelar";
|
||||
"room_notifs_settings_done_action" = "Feito";
|
||||
@@ -1395,7 +1395,7 @@
|
||||
"voice_message_release_to_send" = "Segure para gravar, solte para enviar";
|
||||
"settings_labs_voice_messages" = "Mensagens de voz";
|
||||
"settings_notifications_disabled_alert_title" = "Notificações desabilitadas";
|
||||
"settings_notifications_disabled_alert_message" = "Para habilitar notificações, vá para suas configurações de dispositivo.";
|
||||
"settings_notifications_disabled_alert_message" = "Para habilitar notificações, vá para os ajustes de seu dispositivo.";
|
||||
"settings_device_notifications" = "Notificações de dispositivo";
|
||||
"event_formatter_call_incoming_video" = "Chamada de vídeo entrante";
|
||||
"event_formatter_call_incoming_voice" = "Chamada de voz entrante";
|
||||
@@ -1451,7 +1451,7 @@
|
||||
"space_private_join_rule" = "Espaço privado";
|
||||
"space_participants_action_ban" = "Banir deste espaço";
|
||||
"space_participants_action_remove" = "Remover deste espaço";
|
||||
"spaces_coming_soon_detail" = "Esta funcionalidade não tem sido implementada ainda, mas está a caminho. Por enquanto, você pode fazer isso com Element em seu computador.";
|
||||
"spaces_coming_soon_detail" = "Esta funcionalidade não tem sido implementada ainda, mas está a caminho. Por enquanto, você pode fazer isso com %@ em seu computador.";
|
||||
"spaces_invites_coming_soon_title" = "Convites chegando em breve";
|
||||
"spaces_add_rooms_coming_soon_title" = "Adicionar salas chegando em breve";
|
||||
"spaces_coming_soon_title" = "Chegando em breve";
|
||||
@@ -1484,7 +1484,7 @@
|
||||
"service_terms_modal_description_identity_server" = "Isto vai permitir alguém encontrar você se ela/ele tem seu número de telefone ou email salvo nos contatos de telefone dela/dele.";
|
||||
"service_terms_modal_table_header_integration_manager" = "TERMOS DE GERENCIADOR DE INTEGRAÇÕES";
|
||||
"service_terms_modal_table_header_identity_server" = "TERMOS DE SERVIDOR DE IDENTIDADE";
|
||||
"service_terms_modal_footer" = "Isto pode ser desabilitado a qualquer hora em configurações.";
|
||||
"service_terms_modal_footer" = "Isto pode ser desabilitado a qualquer hora em ajustes.";
|
||||
|
||||
// Service terms
|
||||
"service_terms_modal_title_message" = "Para continuar, aceite os termos e condições abaixo";
|
||||
@@ -1492,11 +1492,11 @@
|
||||
"settings_contacts_enable_sync" = "Encontre seus contatos";
|
||||
"settings_phone_contacts" = "CONTATOS DE TELEFONE";
|
||||
"find_your_contacts_identity_service_error" = "Incapaz de se conectar ao servidor de identidade.";
|
||||
"find_your_contacts_footer" = "Isto pode ser desabilitado a qualquer hora a partir de configurações.";
|
||||
"find_your_contacts_footer" = "Isto pode ser desabilitado a qualquer hora a partir de ajustes.";
|
||||
"find_your_contacts_button_title" = "Encontre seus contatos";
|
||||
"find_your_contacts_message" = "Deixe %@ mostrar seus contatos para que você possa rapidamente começar a conversar com aqueles que você conhece melhor.";
|
||||
"find_your_contacts_title" = "Comece por listar seus contatos";
|
||||
"contacts_address_book_permission_denied_alert_message" = "Para habilitar contatos, vá para as configurações de seu dispositivo.";
|
||||
"contacts_address_book_permission_denied_alert_message" = "Para habilitar contatos, vá para os ajustes de seu dispositivo.";
|
||||
"contacts_address_book_permission_denied_alert_title" = "Contatos desabilitados";
|
||||
"space_home_show_all_rooms" = "Mostrar todas as salas";
|
||||
"room_event_action_forward" = "Encaminhar";
|
||||
@@ -1539,7 +1539,7 @@
|
||||
"analytics_prompt_stop" = "Parar de compartilhar";
|
||||
"analytics_prompt_yes" = "Sim, pode ser";
|
||||
"analytics_prompt_not_now" = "Não agora";
|
||||
"analytics_prompt_point_3" = "Você pode desativar isto a qualquer hora em configurações";
|
||||
"analytics_prompt_point_3" = "Você pode desativar isto a qualquer hora em ajustes";
|
||||
/* Note: The word "don't" is formatted in bold */
|
||||
"analytics_prompt_point_2" = "Nós <b>não</b> compartilhamos informação com terceiros";
|
||||
/* Note: The word "don't" is formatted in bold */
|
||||
@@ -1551,10 +1551,39 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Você pode ler todos os nossos termos %@.";
|
||||
"analytics_prompt_message_upgrade" = "Você previamente consentiu a compartilhar dados de uso anônimos conosco. Agora, para ajudar a entender como pessoas usam múltiplos dispositivos, nós vamos gerar um identificador aleatório, compartilhado por seus dispositivos.";
|
||||
"analytics_prompt_message_new_user" = "Ajude-nos a identificar problemas e melhorar Element ao compartilhar dados de uso anônimos. Para entender como pessoas usam múltiplos dispositivos, nós geramos um identificador aleatório, compartilhado por seus dispositivos.";
|
||||
"analytics_prompt_message_new_user" = "Ajude-nos a identificar problemas e melhorar %@ ao compartilhar dados de uso anônimos. Para entender como pessoas usam múltiplos dispositivos, nós geramos um identificador aleatório, compartilhado por seus dispositivos.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Ajudar a melhorar %@";
|
||||
"analytics_prompt_title" = "Ajude a melhorar %@";
|
||||
"settings_analytics_and_crash_data" = "Enviar dados de crash e analítica";
|
||||
"accessibility_button_label" = "botão";
|
||||
"enable" = "Habilitar";
|
||||
"location_sharing_settings_toggle_title" = "Habilitar compartilhamento de local";
|
||||
"location_sharing_settings_header" = "Compartilhamento de local";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ não tem permissão para acessar seu local. Você pode habilitar acesso em Ajustes > Local";
|
||||
"location_sharing_locating_user_error_title" = "%@ não pôde acessar seu local. Por favor tente de novo mais tarde.";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Local";
|
||||
"location_sharing_open_google_maps" = "Abrir em Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Abrir em Apple Mapas";
|
||||
"location_sharing_invalid_authorization_settings" = "Ajustes";
|
||||
"location_sharing_invalid_authorization_not_now" = "Não agora";
|
||||
"location_sharing_loading_map_error_title" = "%@ não pôde carregar o mapa. Por favor tente de novo mais tarde.";
|
||||
"location_sharing_share_action" = "Compartilhar";
|
||||
"location_sharing_close_action" = "Fechar";
|
||||
"ok" = "OK";
|
||||
"onboarding_splash_page_1_message" = "Comunicação segura e independente que lhe dá o mesmo nível de privacidade que uma conversa face-a-face em sua própria casa.";
|
||||
"settings_enable_room_message_bubbles" = "Bolhas de mensagem";
|
||||
"onboarding_splash_page_4_message" = "Elemente também é ótimo para o lugar de trabalho. É confiado pelas organizações mais seguras do mundo.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Mensageria para seu time.";
|
||||
"onboarding_splash_page_3_message" = "Encriptado ponta-a-ponta e nenhum número de telefone requerido. Sem publicidade ou datamining.";
|
||||
"onboarding_splash_page_3_title" = "Mensageria segura.";
|
||||
"onboarding_splash_page_2_message" = "Escolha onde suas conversas são mantidas, dando-lhe controle e independência. Conectado via Matrix.";
|
||||
"onboarding_splash_page_2_title" = "Você está em controle.";
|
||||
"onboarding_splash_page_1_title" = "Tenha posse de suas conversas.";
|
||||
"onboarding_splash_login_button_title" = "Eu já tenho uma conta";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Criar conta";
|
||||
|
||||
@@ -7,3 +7,4 @@
|
||||
"NSPhotoLibraryUsageDescription" = "Knižnica fotografií sa používa na odosielanie fotografií a videí.";
|
||||
// Permissions usage explanations
|
||||
"NSCameraUsageDescription" = "Fotoaparát sa používa na snímanie fotografií a videí, uskutočňovanie videohovorov.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Keď zdieľate svoju polohu s ľuďmi, Element potrebuje prístup, aby im mohol zobraziť mapu.";
|
||||
|
||||
@@ -165,3 +165,6 @@
|
||||
|
||||
/* New message reply from a specific person in a named room. */
|
||||
"REPLY_FROM_USER_IN_ROOM_TITLE" = "%@ odpovedal/a v %@";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ zdieľal/a svoju polohu";
|
||||
|
||||
@@ -753,7 +753,7 @@
|
||||
"secrets_recovery_with_passphrase_invalid_passphrase_title" = "Nie je možné získať prístup k tajnému úložisku";
|
||||
"secrets_recovery_with_passphrase_lost_passphrase_action_part2" = "použiť váš bezpečnostný kľúč";
|
||||
"secrets_recovery_with_passphrase_lost_passphrase_action_part1" = "Neviete svoju bezpečnostnú frázu? Môžete ";
|
||||
"secrets_recovery_with_passphrase_passphrase_placeholder" = "Vložiť bezpečnostnú frázu";
|
||||
"secrets_recovery_with_passphrase_passphrase_placeholder" = "Zadajte bezpečnostnú frázu";
|
||||
"secrets_recovery_with_passphrase_information_verify_device" = "Na overenie tohto zariadenia použite bezpečnostnú frázu.";
|
||||
"user_verification_session_details_information_untrusted_current_user" = "Overte túto reláciu, aby ste ju označili za dôveryhodnú a udelili jej prístup k zašifrovaným správam:";
|
||||
"user_verification_session_details_information_trusted_other_user_part2" = " ste ju overili:";
|
||||
@@ -1186,7 +1186,7 @@
|
||||
"space_home_show_all_rooms" = "Zobraziť všetky miestnosti";
|
||||
"space_participants_action_ban" = "Vylúčiť z tohto priestoru";
|
||||
"space_participants_action_remove" = "Odstrániť z tohto priestoru";
|
||||
"spaces_coming_soon_detail" = "Táto funkcia tu ešte nebola zapracovaná, ale je na ceste k jej zapracovaniu. Zatiaľ to môžete urobiť pomocou aplikácie Element v počítači.";
|
||||
"spaces_coming_soon_detail" = "Táto funkcia tu ešte nebola zapracovaná, ale je na ceste k jej zapracovaniu. Zatiaľ to môžete urobiť pomocou %@ na vašom počítači.";
|
||||
"spaces_invites_coming_soon_title" = "Pozvánky už čoskoro";
|
||||
"spaces_add_rooms_coming_soon_title" = "Pridávanie miestností už čoskoro";
|
||||
"spaces_no_member_found_detail" = "Hľadáte niekoho, kto nie je v %@? Zatiaľ ich môžete pozvať na webe alebo na počítači.";
|
||||
@@ -1502,7 +1502,7 @@
|
||||
"analytics_prompt_stop" = "Zastaviť zdieľanie";
|
||||
"analytics_prompt_yes" = "Áno, je to v poriadku";
|
||||
"analytics_prompt_message_upgrade" = "Predtým ste nám udelili súhlas so zdieľaním anonymných údajov o používaní. Teraz, aby sme pomohli pochopiť, ako ľudia používajú viacero zariadení, vygenerujeme náhodný identifikátor zdieľaný vašimi zariadeniami.";
|
||||
"analytics_prompt_message_new_user" = "Pomôžte nám identifikovať problémy a zlepšiť Element zdieľaním anonymných údajov o používaní. Aby sme pochopili, ako ľudia používajú viacero zariadení, vygenerujeme náhodný identifikátor, ktorý zdieľajú vaše zariadenia.";
|
||||
"analytics_prompt_message_new_user" = "Pomôžte nám identifikovať problémy a zlepšiť %@ zdieľaním anonymných údajov o používaní. Aby sme pochopili, ako ľudia používajú viacero zariadení, vygenerujeme náhodný identifikátor zdieľaný vašimi zariadeniami.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Pomôžte zlepšiť %@";
|
||||
@@ -1619,3 +1619,48 @@
|
||||
// Recover from recovery key
|
||||
|
||||
"key_backup_recover_from_recovery_key_info" = "Použite svoju bezpečnostný kľúč na odomknutie histórie zabezpečených správ";
|
||||
"widget_sticker_picker_no_stickerpacks_alert" = "Momentálne nemáte aktívne žiadne balíčky s nálepkami.";
|
||||
"widget_integrations_server_failed_to_connect" = "Nepodarilo sa pripojiť k integračnému serveru";
|
||||
"no_voip" = "%@ vám volá, ale %@ zatiaľ nepodporuje hovory.\nToto oznámenie môžete ignorovať a prijať hovor z iného zariadenia alebo ho môžete odmietnuť.";
|
||||
"call_actions_unhold" = "Pokračovať";
|
||||
"call_jitsi_error" = "Nepodarilo sa pripojiť ku konferenčnému hovoru.";
|
||||
"rage_shake_prompt" = "Zdá sa, že rozčúlene trasiete telefónom. Chceli by ste odoslať hlásenie o chybe?";
|
||||
"room_details_addresses_disable_main_address_prompt_msg" = "Nebudete mať zadanú žiadnu hlavnú adresu. Predvolená hlavná adresa pre túto miestnosť sa vyberie náhodne";
|
||||
"settings_enable_rageshake" = "Zúrivo potraste pre nahlásenie chyby";
|
||||
"settings_ui_theme_picker_message_match_system_theme" = "\"Auto\" zodpovedá systémovej téme vášho zariadenia";
|
||||
"settings_pin_rooms_with_unread" = "Pripnúť miestnosti s neprečítanými správami";
|
||||
"settings_pin_rooms_with_missed_notif" = "Pripnúť miestnosti so zmeškanými oznámeniami";
|
||||
"settings_confirm_media_size" = "Potvrdiť veľkosť pri odosielaní";
|
||||
"ok" = "OK";
|
||||
"poll_edit_form_question_or_topic" = "Otázka alebo téma";
|
||||
"poll_timeline_vote_not_registered_title" = "Hlas nebol zaznamenaný";
|
||||
"poll_timeline_vote_not_registered_subtitle" = "Je nám ľúto, váš hlas nebol zaznamenaný. Skúste to prosím znova";
|
||||
"poll_timeline_not_closed_title" = "Nepodarilo sa ukončiť anketu";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Poloha";
|
||||
"location_sharing_close_action" = "Zavrieť";
|
||||
"location_sharing_share_action" = "Zdieľať";
|
||||
"location_sharing_loading_map_error_title" = "%@ sa nepodarilo načítať mapu. Skúste to prosím neskôr.";
|
||||
"location_sharing_locating_user_error_title" = "%@ sa nepodarilo získať prístup k vašej polohe. Skúste to prosím neskôr.";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ nemá povolenie na prístup k vašej polohe. Prístup môžete povoliť v ponuke Nastavenia > Poloha";
|
||||
"location_sharing_invalid_authorization_not_now" = "Teraz nie";
|
||||
"location_sharing_invalid_authorization_settings" = "Nastavenia";
|
||||
"location_sharing_open_apple_maps" = "Otvoriť v službe Apple Mapy";
|
||||
"location_sharing_open_google_maps" = "Otvoriť v službe Mapy Google";
|
||||
"location_sharing_settings_header" = "Zdieľanie polohy";
|
||||
"location_sharing_settings_toggle_title" = "Povoliť zdieľanie polohy";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Vytvoriť účet";
|
||||
"onboarding_splash_login_button_title" = "Už mám účet";
|
||||
"onboarding_splash_page_1_title" = "Vlastnite svoje konverzácie.";
|
||||
"onboarding_splash_page_1_message" = "Bezpečná a nezávislá komunikácia, ktorá vám poskytuje rovnakú úroveň súkromia ako rozhovor zoči-voči vo vašom vlastnom dome.";
|
||||
"onboarding_splash_page_2_title" = "Vy máte všetko pod kontrolou.";
|
||||
"onboarding_splash_page_2_message" = "Vyberte si, kde budú vaše rozhovory uložené, a získajte tak kontrolu a nezávislosť. Pripojené cez Matrix.";
|
||||
"onboarding_splash_page_3_title" = "Zabezpečené zasielanie správ.";
|
||||
"onboarding_splash_page_3_message" = "End-to-end šifrovanie a bez potreby telefónneho čísla. Žiadne reklamy ani zneužívanie údajov.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Zasielanie správ pre váš tím.";
|
||||
"onboarding_splash_page_4_message" = "Element je skvelý aj na pracovisku. Dôverujú mu najbezpečnejšie organizácie na svete.";
|
||||
"settings_enable_room_message_bubbles" = "Správy v bublinách";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element-i do të shfaqë kontaktet tuaja, që kështu të mund t’i ftoni për të biseduar.";
|
||||
"NSCalendarsUsageDescription" = "Shihini te aplikacioni takimet tuaja të planifikuara.";
|
||||
"NSFaceIDUsageDescription" = "Face ID përdoret që të hyni në aplikacionin tuaj.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Kur ndani vendndodhjen tuaj me persona, Element-i ka nevojë për hyrje në të, që t’u trgojë atyre një hartë.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Njoftim";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ tregoi vendndodhjen e vet";
|
||||
|
||||
@@ -1471,7 +1471,7 @@
|
||||
"space_private_join_rule" = "Hapësirë private";
|
||||
"space_participants_action_ban" = "Dëboje prej kësaj hapësire";
|
||||
"space_participants_action_remove" = "Hiqe prej kësaj hapësire";
|
||||
"spaces_coming_soon_detail" = "Kjo veçori s’është sendërtuar këtu, por po bëhet. Tani për tani, mund ta bëni këtë me Element-in në kompjuterin tuaj.";
|
||||
"spaces_coming_soon_detail" = "Kjo veçori s’është sendërtuar këtu, por po bëhet. Tani për tani, mund ta bëni këtë me %@-in në kompjuterin tuaj.";
|
||||
"spaces_invites_coming_soon_title" = "Ftesat vijnë së shpejti";
|
||||
"spaces_add_rooms_coming_soon_title" = "Shtimi i dhomave vjen së shpejti";
|
||||
"spaces_coming_soon_title" = "S’afërmi";
|
||||
@@ -1565,7 +1565,7 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Mund të lexoni krejt kushtet tona %@.";
|
||||
"analytics_prompt_message_upgrade" = "Keni pranuar më herët të ndani me ne të dhëna anonime përdorimi. Tani, që të na ndihmoni të kuptojmë se si njerëzit përdorin pajisje të shumta, do të prodhojmë një identifikues kuturu, të përbashkët për pajisjet tuaja.";
|
||||
"analytics_prompt_message_new_user" = "Ndihmonani të identifikojmë probleme dhe të përmirësojmë Element-in, duke ndarë me ne të dhëna anonime përdorimi. Për të kuptuar se si i përdorin njerëzit disa pajisje njëherësh, do të prodhojmë një identifikues kuturu, të përbashkët për pajisjet tuaja.";
|
||||
"analytics_prompt_message_new_user" = "Ndihmonani të identifikojmë probleme dhe të përmirësojmë %@-in, duke ndarë me ne të dhëna anonime përdorimi. Për të kuptuar se si i përdorin njerëzit disa pajisje njëherësh, do të prodhojmë një identifikues kuturu, të përbashkët për pajisjet tuaja.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Ndihmoni të përmirësohet %@";
|
||||
@@ -1579,3 +1579,32 @@
|
||||
"accessibility_button_label" = "kopsë";
|
||||
"open" = "Hapur";
|
||||
"enable" = "Aktivizoje";
|
||||
"location_sharing_settings_toggle_title" = "Aktivizoni tregim vendndodhjeje";
|
||||
"location_sharing_settings_header" = "Tregim vendndodhjeje";
|
||||
"location_sharing_open_google_maps" = "Hape në Google Maps";
|
||||
"location_sharing_open_apple_maps" = "Hape në Apple Maps";
|
||||
"location_sharing_invalid_authorization_settings" = "Rregullime";
|
||||
"location_sharing_invalid_authorization_not_now" = "Jo tani";
|
||||
"location_sharing_locating_user_error_title" = "%@ s’njohu dot vendndodhjen tuaj. Ju lutemi, riprovoni më vonë.";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ s’ka leje të njohë vendndodhjen tuaj. Njohjen mund ta lejoni që nga Rregullime > Vendndodhje";
|
||||
"location_sharing_loading_map_error_title" = "%@ s’ngarkoi dot hartën. Ju lutemi, riprovoni më vonë.";
|
||||
"location_sharing_share_action" = "Ndajeni me të tjerë";
|
||||
"location_sharing_close_action" = "Mbylle";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Vendndodhje";
|
||||
"ok" = "OK";
|
||||
"settings_enable_room_message_bubbles" = "Flluska mesazhesh";
|
||||
"onboarding_splash_page_4_message" = "Element-i është gjithashtu i goditur për në punë. Është i besuar nga entet më të sigurta të botës.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Shkëmbim mesazhesh për ekipin tuaj.";
|
||||
"onboarding_splash_page_3_message" = "I fshehtëzuar skaj më skaj dhe pa u dashur numër telefoni. Pa reklama, apo shfrytëzim të dhënash.";
|
||||
"onboarding_splash_page_3_title" = "Shkëmbim i sigurt mesazhesh.";
|
||||
"onboarding_splash_page_2_message" = "Zgjidhni ku mbahen bisedat tuaja, duke ju dhënë kontroll dhe pavarësi. Të lidhur përmes Matrix-i.";
|
||||
"onboarding_splash_page_2_title" = "Kontrollin e keni ju.";
|
||||
"onboarding_splash_page_1_message" = "Komunikim i sigurt dhe i pavarur, që ju jep të njëjtën shkallë privatësie si biseda kokë më kokë, në shtëpinë tuaj.";
|
||||
"onboarding_splash_page_1_title" = "Jini zot i bisedave tuaja.";
|
||||
"onboarding_splash_login_button_title" = "Kam tashmë një llogari";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Krijoni llogari";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSMicrophoneUsageDescription" = "Element behöver åtkomst till din mikrofon för att kunna ringa och ta emot samtal samt spela in video och röstmeddelanden.";
|
||||
"NSContactsUsageDescription" = "Element kommer att visa dina kontakter så du kan bjuda in dem att chatta.";
|
||||
"NSFaceIDUsageDescription" = "Face ID används för att komma åt appen.";
|
||||
"NSLocationWhenInUseUsageDescription" = "När du delar din plats med folk så behöver Element åtkomst för att visa dem en karta.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Avisering";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ delade sin plats";
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
"NSContactsUsageDescription" = "Element покаже ваші контакти, щоб ви могли запросити їх до бесіди.";
|
||||
"NSCalendarsUsageDescription" = "Переглядайте свої заплановані зустрічі в додатку.";
|
||||
"NSFaceIDUsageDescription" = "Face ID використовується для доступу до вашого додатку.";
|
||||
"NSLocationWhenInUseUsageDescription" = "Коли ви надсилаєте комусь дані про своє місцеперебування, Element потребує дозволу, щоб показати їм карту.";
|
||||
|
||||
@@ -116,3 +116,6 @@
|
||||
/** General **/
|
||||
|
||||
"NOTIFICATION" = "Сповіщення";
|
||||
|
||||
/* New file message from a specific person, not referencing a room. */
|
||||
"LOCATION_FROM_USER" = "%@ надсилає дані про своє місцеперебування";
|
||||
|
||||
@@ -1414,7 +1414,7 @@
|
||||
"spaces_no_room_found_detail" = "Деяких результатів може бути не видно, бо вони закриті й потребують запрошення.";
|
||||
"spaces_no_member_found_detail" = "Шукаєте когось, хто ще не в %@? Запросіть їх вебпереглядачем або комп'ютером.";
|
||||
"spaces_invites_coming_soon_title" = "Запрошення ще в розробці";
|
||||
"spaces_coming_soon_detail" = "Ця можливість тут іще не втілена, але скоро буде. Поки що можете зробити це в Element на комп'ютері.";
|
||||
"spaces_coming_soon_detail" = "Ця можливість ще не втілена, але скоро буде. Поки що можете зробити це в %@ на комп'ютері.";
|
||||
"space_participants_action_remove" = "Вилучити з цього простору";
|
||||
"space_participants_action_ban" = "Заблокувати в цьому просторі";
|
||||
|
||||
@@ -1476,7 +1476,7 @@
|
||||
/* Note: The placeholder is for the contents of analytics_prompt_terms_link_new_user */
|
||||
"analytics_prompt_terms_new_user" = "Можете прочитати всі наші умови %@.";
|
||||
"analytics_prompt_message_upgrade" = "Раніше ви погодилися надсилати нам анонімні дані про використання. Тепер, щоб розуміти, як люди використовують кілька пристроїв, ми створимо спільний для ваших пристроїв випадковий ідентифікатор.";
|
||||
"analytics_prompt_message_new_user" = "Допомагайте нам визначати проблеми й удосконалювати Element, надсилаючи анонімні дані про використання. Щоб розуміти, як люди використовують кілька пристроїв, ми створимо спільний для ваших пристроїв випадковий ідентифікатор.";
|
||||
"analytics_prompt_message_new_user" = "Допомагайте нам визначати проблеми й удосконалювати %@, надсилаючи анонімні дані про використання. Щоб розуміти, як люди використовують кілька пристроїв, ми створимо спільний для ваших пристроїв випадковий ідентифікатор.";
|
||||
|
||||
// Analytics
|
||||
"analytics_prompt_title" = "Допоможіть удосконалити %@";
|
||||
@@ -1702,3 +1702,32 @@
|
||||
"room_details_flair_section" = "Показувати значки для спільнот";
|
||||
"settings_flair" = "Показувати значок, де це дозволено";
|
||||
"room_warning_about_encryption" = "Наскрізне шифрування ще на етапі бета-тестування й може бути ненадійним.\n\nПоки що не варто довіряти йому захист даних.\n\nПристрої ще не зможуть розшифрувати історію до того, як з них приєдналися до кімнати.\n\nЗашифровані повідомлення не буде показано у клієнтах, які ще не використовують шифрування.";
|
||||
"location_sharing_settings_toggle_title" = "Увімкнути надсилання місцеперебування";
|
||||
"location_sharing_settings_header" = "Надсилання місцеперебування";
|
||||
"location_sharing_open_google_maps" = "Відкрити в Картах Google";
|
||||
"location_sharing_open_apple_maps" = "Відкрити в Apple Maps";
|
||||
"location_sharing_invalid_authorization_settings" = "Налаштування";
|
||||
"location_sharing_invalid_authorization_not_now" = "Не зараз";
|
||||
"location_sharing_invalid_authorization_error_title" = "%@ не має дозволу на доступ до вашого місцеперебування. Ви можете увімкнути доступ у Налаштування > Місцеперебування";
|
||||
"location_sharing_locating_user_error_title" = "%@ не може отримати доступ до вашого місцеперебування. Повторіть спробу пізніше.";
|
||||
"location_sharing_loading_map_error_title" = "%@ не може завантажити карту. Повторіть спробу пізніше.";
|
||||
"location_sharing_share_action" = "Поділиться";
|
||||
"location_sharing_close_action" = "Закрити";
|
||||
|
||||
// MARK: - Location sharing
|
||||
|
||||
"location_sharing_title" = "Місцеперебування";
|
||||
"ok" = "Гаразд";
|
||||
"settings_enable_room_message_bubbles" = "Бульбашки повідомлень";
|
||||
"onboarding_splash_page_4_message" = "Елемент також чудово підходить для роботи. Йому довіряють найбезпечніші організації світу.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Спілкування зі своєю командою.";
|
||||
"onboarding_splash_page_3_message" = "Наскрізне шифрування та відсутність потреби у телефонному номері. Без реклами чи аналізу даних.";
|
||||
"onboarding_splash_page_3_title" = "Безпечне спілкування.";
|
||||
"onboarding_splash_page_2_message" = "Оберіть, де зберігати ваші бесіди, що дасть вам контроль і незалежність. Спілкуйтеся через Matrix.";
|
||||
"onboarding_splash_page_2_title" = "Ви контролюєте все.";
|
||||
"onboarding_splash_page_1_message" = "Безпечне та незалежне спілкування, яке дає вам такий же рівень приватності як особиста розмова у вашому власному домі.";
|
||||
"onboarding_splash_page_1_title" = "Будьте господарем свого спілкування.";
|
||||
"onboarding_splash_login_button_title" = "У мене вже є обліковий запис";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Створити обліковий запис";
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Copyright 2021 New Vector Ltd
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
extension MXKRoomBubbleCellData {
|
||||
|
||||
/// Indicate true if the sender is the session user
|
||||
var isSenderCurrentUser: Bool {
|
||||
if let senderId = self.senderId, let currentUserId = self.mxSession.myUserId, senderId == currentUserId {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// Indicate true if the cell data is collapsable and collapsed
|
||||
var isCollapsableAndCollapsed: Bool {
|
||||
return self.collapsable && self.collapsed
|
||||
}
|
||||
}
|
||||
@@ -26,15 +26,15 @@
|
||||
NSUInteger missedDiscussionsCount = 0;
|
||||
|
||||
// Sum all the rooms with missed notifications.
|
||||
for (MXRoomSummary *roomSummary in self.roomsSummaries)
|
||||
for (MXRoom *room in self.rooms)
|
||||
{
|
||||
NSUInteger notificationCount = roomSummary.notificationCount;
|
||||
NSUInteger notificationCount = room.summary.notificationCount;
|
||||
|
||||
// Ignore the regular notification count if the room is in 'mentions only" mode at the Riot level.
|
||||
if (roomSummary.room.isMentionsOnly)
|
||||
if (room.isMentionsOnly)
|
||||
{
|
||||
// Only the highlighted missed messages must be considered here.
|
||||
notificationCount = roomSummary.highlightCount;
|
||||
notificationCount = room.summary.highlightCount;
|
||||
}
|
||||
|
||||
if (notificationCount)
|
||||
|
||||
@@ -155,6 +155,8 @@ internal enum Asset {
|
||||
internal static let pollDeleteOptionIcon = ImageAsset(name: "poll_delete_option_icon")
|
||||
internal static let pollEditIcon = ImageAsset(name: "poll_edit_icon")
|
||||
internal static let pollEndIcon = ImageAsset(name: "poll_end_icon")
|
||||
internal static let pollTypeCheckboxDefault = ImageAsset(name: "poll_type_checkbox_default")
|
||||
internal static let pollTypeCheckboxSelected = ImageAsset(name: "poll_type_checkbox_selected")
|
||||
internal static let pollWinnerIcon = ImageAsset(name: "poll_winner_icon")
|
||||
internal static let urlPreviewClose = ImageAsset(name: "url_preview_close")
|
||||
internal static let urlPreviewCloseDark = ImageAsset(name: "url_preview_close_dark")
|
||||
|
||||
@@ -2347,6 +2347,46 @@ public class VectorL10n: NSObject {
|
||||
public static var on: String {
|
||||
return VectorL10n.tr("Vector", "on")
|
||||
}
|
||||
/// I already have an account
|
||||
public static var onboardingSplashLoginButtonTitle: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_login_button_title")
|
||||
}
|
||||
/// Secure and independent communication that gives you the same level of privacy as a face-to-face conversation in your own home.
|
||||
public static var onboardingSplashPage1Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_1_message")
|
||||
}
|
||||
/// Own your conversations.
|
||||
public static var onboardingSplashPage1Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_1_title")
|
||||
}
|
||||
/// Choose where your conversations are kept, giving you control and independence. Connected via Matrix.
|
||||
public static var onboardingSplashPage2Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_2_message")
|
||||
}
|
||||
/// You’re in control.
|
||||
public static var onboardingSplashPage2Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_2_title")
|
||||
}
|
||||
/// End-to-end encrypted and no phone number required. No ads or datamining.
|
||||
public static var onboardingSplashPage3Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_3_message")
|
||||
}
|
||||
/// Secure messaging.
|
||||
public static var onboardingSplashPage3Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_3_title")
|
||||
}
|
||||
/// Element is also great for the workplace. It’s trusted by the world’s most secure organisations.
|
||||
public static var onboardingSplashPage4Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_4_message")
|
||||
}
|
||||
/// Messaging for your team.
|
||||
public static var onboardingSplashPage4TitleNoPun: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_4_title_no_pun")
|
||||
}
|
||||
/// Create account
|
||||
public static var onboardingSplashRegisterButtonTitle: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_register_button_title")
|
||||
}
|
||||
/// Open
|
||||
public static var `open`: String {
|
||||
return VectorL10n.tr("Vector", "open")
|
||||
@@ -2495,6 +2535,26 @@ public class VectorL10n: NSObject {
|
||||
public static var pollEditFormPollQuestionOrTopic: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_question_or_topic")
|
||||
}
|
||||
/// Poll type
|
||||
public static var pollEditFormPollType: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_type")
|
||||
}
|
||||
/// Closed poll
|
||||
public static var pollEditFormPollTypeClosed: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_type_closed")
|
||||
}
|
||||
/// Results are only revealed when you end the poll
|
||||
public static var pollEditFormPollTypeClosedDescription: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_type_closed_description")
|
||||
}
|
||||
/// Open poll
|
||||
public static var pollEditFormPollTypeOpen: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_type_open")
|
||||
}
|
||||
/// Voters see results as soon as they have voted
|
||||
public static var pollEditFormPollTypeOpenDescription: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_poll_type_open_description")
|
||||
}
|
||||
/// Please try again
|
||||
public static var pollEditFormPostFailureSubtitle: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_post_failure_subtitle")
|
||||
@@ -2508,6 +2568,14 @@ public class VectorL10n: NSObject {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_question_or_topic")
|
||||
}
|
||||
/// Please try again
|
||||
public static var pollEditFormUpdateFailureSubtitle: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_update_failure_subtitle")
|
||||
}
|
||||
/// Failed to update poll
|
||||
public static var pollEditFormUpdateFailureTitle: String {
|
||||
return VectorL10n.tr("Vector", "poll_edit_form_update_failure_title")
|
||||
}
|
||||
/// Please try again
|
||||
public static var pollTimelineNotClosedSubtitle: String {
|
||||
return VectorL10n.tr("Vector", "poll_timeline_not_closed_subtitle")
|
||||
}
|
||||
@@ -4539,6 +4607,10 @@ public class VectorL10n: NSObject {
|
||||
public static var settingsEnableRageshake: String {
|
||||
return VectorL10n.tr("Vector", "settings_enable_rageshake")
|
||||
}
|
||||
/// Message bubbles
|
||||
public static var settingsEnableRoomMessageBubbles: String {
|
||||
return VectorL10n.tr("Vector", "settings_enable_room_message_bubbles")
|
||||
}
|
||||
/// Encrypted direct messages
|
||||
public static var settingsEncryptedDirectMessages: String {
|
||||
return VectorL10n.tr("Vector", "settings_encrypted_direct_messages")
|
||||
|
||||
@@ -81,19 +81,18 @@ final public class OnBoardingManager: NSObject {
|
||||
// MARK: - Private
|
||||
|
||||
private func isUserJoinedARoom() -> Bool {
|
||||
guard let roomSummaries = self.session.roomsSummaries() else {
|
||||
return false
|
||||
}
|
||||
var isUserJoinedARoom = false
|
||||
|
||||
var isUSerJoinedARoom = false
|
||||
|
||||
for roomSummary in roomSummaries {
|
||||
for room in session.rooms {
|
||||
guard let roomSummary = room.summary else {
|
||||
continue
|
||||
}
|
||||
if case .join = roomSummary.membership {
|
||||
isUSerJoinedARoom = true
|
||||
isUserJoinedARoom = true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
return isUSerJoinedARoom
|
||||
return isUserJoinedARoom
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,16 +184,20 @@ final class RiotSettings: NSObject {
|
||||
|
||||
@UserDefault(key: "roomScreenAllowFilesAction", defaultValue: BuildSettings.roomScreenAllowFilesAction, storage: defaults)
|
||||
var roomScreenAllowFilesAction
|
||||
|
||||
@UserDefault(key: "roomScreenAllowPollsAction", defaultValue: false, storage: defaults)
|
||||
var roomScreenAllowPollsAction
|
||||
|
||||
|
||||
@UserDefault(key: "roomScreenAllowLocationAction", defaultValue: false, storage: defaults)
|
||||
var roomScreenAllowLocationAction
|
||||
|
||||
@UserDefault(key: "roomScreenShowsURLPreviews", defaultValue: true, storage: defaults)
|
||||
var roomScreenShowsURLPreviews
|
||||
|
||||
@UserDefault(key: "roomScreenEnableMessageBubbles", defaultValue: BuildSettings.roomScreenEnableMessageBubblesByDefault, storage: defaults)
|
||||
var roomScreenEnableMessageBubbles
|
||||
|
||||
var roomTimelineStyleIdentifier: RoomTimelineStyleIdentifier {
|
||||
return self.roomScreenEnableMessageBubbles ? .bubble : .plain
|
||||
}
|
||||
|
||||
// MARK: - Room Contextual Menu
|
||||
|
||||
@UserDefault(key: "roomContextualMenuShowMoreOptionForMessages", defaultValue: BuildSettings.roomContextualMenuShowMoreOptionForMessages, storage: defaults)
|
||||
|
||||
@@ -52,7 +52,7 @@ NSString *const kThemeServiceDidChangeThemeNotification = @"kThemeServiceDidChan
|
||||
|
||||
[self updateAppearance];
|
||||
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName:kThemeServiceDidChangeThemeNotification object:nil];
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName:kThemeServiceDidChangeThemeNotification object:self];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -19,6 +19,19 @@ import AnalyticsEvents
|
||||
|
||||
/// A class responsible for managing an analytics client
|
||||
/// and sending events through this client.
|
||||
///
|
||||
/// ## Creating Analytics Events
|
||||
///
|
||||
/// Events are managed in a shared repo for all Element clients https://github.com/matrix-org/matrix-analytics-events
|
||||
/// To add a new event create a PR to that repo with the new/updated schema. Element's Podfile has
|
||||
/// a local version of the pod (commented out) for development purposes.
|
||||
/// Once merged into `main`, follow the steps below to integrate the changes into the project:
|
||||
/// 1. Check if `main` contains any source breaking changes to the events. If so, please
|
||||
/// wait until you are ready to merge your work into element-ios.
|
||||
/// 2. Merge `main` into the `release/swift` branch.
|
||||
/// 3. Run `bundle exec pod update AnalyticsEvents` to update the pod.
|
||||
/// 4. Make sure to commit `Podfile.lock` with the new commit hash.
|
||||
///
|
||||
@objcMembers class Analytics: NSObject {
|
||||
|
||||
// MARK: - Properties
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
|
||||
|
||||
// Call `checkFailures` every `CHECK_INTERVAL`
|
||||
#define CHECK_INTERVAL 5
|
||||
#define CHECK_INTERVAL 2
|
||||
|
||||
// Give events a chance to be decrypted by waiting `GRACE_PERIOD` before counting
|
||||
// and reporting them as failures
|
||||
#define GRACE_PERIOD 60
|
||||
#define GRACE_PERIOD 4
|
||||
|
||||
// E2E failures analytics category.
|
||||
NSString *const kDecryptionFailureTrackerAnalyticsCategory = @"e2e.failure";
|
||||
|
||||
@@ -1372,9 +1372,9 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
|
||||
else
|
||||
{
|
||||
void(^findRoom)(void) = ^{
|
||||
if ([_masterTabBarController.selectedViewController isKindOfClass:MXKActivityHandlingViewController.class])
|
||||
if ([_masterTabBarController.selectedViewController conformsToProtocol:@protocol(MXKViewControllerActivityHandling)])
|
||||
{
|
||||
MXKActivityHandlingViewController *homeViewController = (MXKActivityHandlingViewController*)_masterTabBarController.selectedViewController;
|
||||
UIViewController<MXKViewControllerActivityHandling> *homeViewController = (UIViewController<MXKViewControllerActivityHandling>*)_masterTabBarController.selectedViewController;
|
||||
|
||||
[homeViewController startActivityIndicator];
|
||||
|
||||
@@ -1651,11 +1651,13 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
|
||||
// Try to get more information about the room before opening its preview
|
||||
[roomPreviewData peekInRoom:^(BOOL succeeded) {
|
||||
MXStrongifyAndReturnIfNil(self);
|
||||
|
||||
MXKViewController *homeViewController = (MXKViewController*)self.masterTabBarController.selectedViewController;
|
||||
if ([self.masterTabBarController.selectedViewController conformsToProtocol:@protocol(MXKViewControllerActivityHandling)])
|
||||
{
|
||||
UIViewController<MXKViewControllerActivityHandling> *homeViewController = (UIViewController<MXKViewControllerActivityHandling>*)self.masterTabBarController.selectedViewController;
|
||||
|
||||
// Note: the activity indicator will not disappear if the session is not ready
|
||||
[homeViewController stopActivityIndicator];
|
||||
// Note: the activity indicator will not disappear if the session is not ready
|
||||
[homeViewController stopActivityIndicator];
|
||||
}
|
||||
|
||||
// If no data is available for this room, we name it with the known room alias (if any).
|
||||
if (!succeeded && self->universalLinkFragmentPendingRoomAlias[roomIdOrAlias])
|
||||
|
||||
@@ -482,7 +482,8 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0;
|
||||
// Hide input view when there is only social login actions to present
|
||||
if ((self.authType == MXKAuthenticationTypeLogin || self.authType == MXKAuthenticationTypeRegister)
|
||||
&& self.currentLoginSSOFlow
|
||||
&& !self.isAuthSessionContainsPasswordFlow)
|
||||
&& !self.isAuthSessionContainsPasswordFlow
|
||||
&& BuildSettings.authScreenShowSocialLoginSection)
|
||||
{
|
||||
hideAuthInputView = YES;
|
||||
}
|
||||
@@ -1735,8 +1736,8 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0;
|
||||
- (void)updateSocialLoginViewVisibility
|
||||
{
|
||||
SocialLoginButtonMode socialLoginButtonMode = SocialLoginButtonModeContinue;
|
||||
|
||||
BOOL showSocialLoginView = self.currentLoginSSOFlow ? YES : NO;
|
||||
|
||||
BOOL showSocialLoginView = BuildSettings.authScreenShowSocialLoginSection && (self.currentLoginSSOFlow ? YES : NO);
|
||||
|
||||
switch (self.authType)
|
||||
{
|
||||
|
||||
@@ -664,9 +664,7 @@ CallAudioRouteMenuViewDelegate>
|
||||
{
|
||||
return;
|
||||
}
|
||||
BOOL result = [self.mxCall sendDTMF:digit
|
||||
duration:0
|
||||
interToneGap:0];
|
||||
BOOL result = [self.mxCall sendDTMF:digit];
|
||||
|
||||
MXLogDebug(@"[CallViewController] Sending DTMF tones %@", result ? @"succeeded": @"failed");
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// Copyright 2021 New Vector Ltd
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
/// UICollectionViewFlowLayout with right align behavior
|
||||
class CollectionViewRightAlignFlowLayout: UICollectionViewFlowLayout {
|
||||
|
||||
override var flipsHorizontallyInOppositeLayoutDirection: Bool {
|
||||
return true
|
||||
}
|
||||
|
||||
override var developmentLayoutDirection: UIUserInterfaceLayoutDirection {
|
||||
return UIUserInterfaceLayoutDirection.rightToLeft
|
||||
}
|
||||
}
|
||||
@@ -182,6 +182,13 @@ extern NSString *const kRecentsDataSourceTapOnDirectoryServerChange;
|
||||
*/
|
||||
@property (nonatomic) UIImageView* droppingCellBackGroundView;
|
||||
|
||||
/**
|
||||
Paginate in the given section. Results will be notified from delegate methods.
|
||||
|
||||
@param section section index to be paginated
|
||||
*/
|
||||
- (void)paginateInSection:(NSInteger)section;
|
||||
|
||||
/**
|
||||
Move a cell from a path to another one.
|
||||
It is based on room Tag.
|
||||
|
||||
@@ -606,17 +606,17 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
|
||||
if (section == favoritesSection)
|
||||
{
|
||||
count = self.favoriteCellDataArray.count;
|
||||
count = self.recentsListService.favoritedRoomListData.counts.total.numberOfRooms;
|
||||
title = [VectorL10n roomRecentsFavouritesSection];
|
||||
}
|
||||
else if (section == peopleSection)
|
||||
{
|
||||
count = self.peopleCellDataArray.count;
|
||||
count = self.recentsListService.peopleRoomListData.counts.total.numberOfRooms;
|
||||
title = [VectorL10n roomRecentsPeopleSection];
|
||||
}
|
||||
else if (section == conversationSection)
|
||||
{
|
||||
count = self.conversationCellDataArray.count;
|
||||
count = self.recentsListService.conversationRoomListData.counts.total.numberOfRooms;
|
||||
|
||||
if (_recentsDataSourceMode == RecentsDataSourceModePeople)
|
||||
{
|
||||
@@ -633,17 +633,17 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
}
|
||||
else if (section == lowPrioritySection)
|
||||
{
|
||||
count = self.lowPriorityCellDataArray.count;
|
||||
count = self.recentsListService.lowPriorityRoomListData.counts.total.numberOfRooms;
|
||||
title = [VectorL10n roomRecentsLowPrioritySection];
|
||||
}
|
||||
else if (section == serverNoticeSection)
|
||||
{
|
||||
count = self.serverNoticeCellDataArray.count;
|
||||
count = self.recentsListService.serverNoticeRoomListData.counts.total.numberOfRooms;
|
||||
title = [VectorL10n roomRecentsServerNoticeSection];
|
||||
}
|
||||
else if (section == invitesSection)
|
||||
{
|
||||
count = self.invitesCellDataArray.count;
|
||||
count = self.recentsListService.invitedRoomListData.counts.total.numberOfRooms;
|
||||
|
||||
if (_recentsDataSourceMode == RecentsDataSourceModePeople)
|
||||
{
|
||||
@@ -656,7 +656,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
}
|
||||
else if (section == suggestedRoomsSection)
|
||||
{
|
||||
count = self.suggestedRoomCellDataArray.count;
|
||||
count = self.recentsListService.suggestedRoomListData.counts.total.numberOfRooms;
|
||||
title = [VectorL10n roomRecentsSuggestedRoomsSection];
|
||||
}
|
||||
|
||||
@@ -714,26 +714,29 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
counts = self.recentsListService.suggestedRoomListData.counts;
|
||||
}
|
||||
|
||||
if (counts.numberOfNotifications)
|
||||
NSUInteger numberOfNotifications = counts.total.numberOfNotifications;
|
||||
NSUInteger numberOfHighlights = counts.total.numberOfHighlights;
|
||||
|
||||
if (numberOfNotifications)
|
||||
{
|
||||
UILabel *missedNotifAndUnreadBadgeLabel = [[UILabel alloc] init];
|
||||
missedNotifAndUnreadBadgeLabel.textColor = ThemeService.shared.theme.baseTextPrimaryColor;
|
||||
missedNotifAndUnreadBadgeLabel.font = [UIFont boldSystemFontOfSize:14];
|
||||
if (counts.numberOfNotifications > 1000)
|
||||
if (numberOfNotifications > 1000)
|
||||
{
|
||||
CGFloat value = counts.numberOfNotifications / 1000.0;
|
||||
CGFloat value = numberOfNotifications / 1000.0;
|
||||
missedNotifAndUnreadBadgeLabel.text = [VectorL10n largeBadgeValueKFormat:value];
|
||||
}
|
||||
else
|
||||
{
|
||||
missedNotifAndUnreadBadgeLabel.text = [NSString stringWithFormat:@"%tu", counts.numberOfNotifications];
|
||||
missedNotifAndUnreadBadgeLabel.text = [NSString stringWithFormat:@"%tu", numberOfNotifications];
|
||||
}
|
||||
|
||||
[missedNotifAndUnreadBadgeLabel sizeToFit];
|
||||
|
||||
CGFloat bgViewWidth = missedNotifAndUnreadBadgeLabel.frame.size.width + 18;
|
||||
|
||||
BOOL highlight = counts.numberOfHighlights > 0;
|
||||
BOOL highlight = numberOfHighlights > 0;
|
||||
missedNotifAndUnreadBadgeBgView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, bgViewWidth, 20)];
|
||||
[missedNotifAndUnreadBadgeBgView.layer setCornerRadius:10];
|
||||
missedNotifAndUnreadBadgeBgView.backgroundColor = highlight ? ThemeService.shared.theme.noticeColor : ThemeService.shared.theme.noticeSecondaryColor;
|
||||
@@ -1336,6 +1339,38 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (void)paginateInSection:(NSInteger)section
|
||||
{
|
||||
if (section == invitesSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionInvited];
|
||||
}
|
||||
else if (section == favoritesSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionFavorited];
|
||||
}
|
||||
else if (section == peopleSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionPeople];
|
||||
}
|
||||
else if (section == conversationSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionConversation];
|
||||
}
|
||||
else if (section == lowPrioritySection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionLowPriority];
|
||||
}
|
||||
else if (section == serverNoticeSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionServerNotice];
|
||||
}
|
||||
else if (section == suggestedRoomsSection)
|
||||
{
|
||||
[self.recentsListService paginateInSection:RecentsListServiceSectionSuggested];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)moveRoomCell:(MXRoom*)room from:(NSIndexPath*)oldPath to:(NSIndexPath*)newPath success:(void (^)(void))moveSuccess failure:(void (^)(NSError *error))moveFailure;
|
||||
{
|
||||
MXLogDebug(@"[RecentsDataSource] moveCellFrom (%tu, %tu) to (%tu, %tu)", oldPath.section, oldPath.row, newPath.section, newPath.row);
|
||||
@@ -1431,10 +1466,41 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
|
||||
|
||||
#pragma mark - RecentsListServiceDelegate
|
||||
|
||||
- (void)serviceDidChangeData:(id<RecentsListServiceProtocol>)service
|
||||
- (void)recentsListServiceDidChangeData:(id<RecentsListServiceProtocol>)service
|
||||
{
|
||||
// TODO: Update only updated sections
|
||||
[self.delegate dataSource:self didCellChange:nil];
|
||||
// no-op
|
||||
}
|
||||
|
||||
- (void)recentsListServiceDidChangeData:(id<RecentsListServiceProtocol>)service
|
||||
forSection:(RecentsListServiceSection)section
|
||||
{
|
||||
NSInteger sectionIndex = -1;
|
||||
switch (section)
|
||||
{
|
||||
case RecentsListServiceSectionInvited:
|
||||
sectionIndex = invitesSection;
|
||||
break;
|
||||
case RecentsListServiceSectionFavorited:
|
||||
sectionIndex = favoritesSection;
|
||||
break;
|
||||
case RecentsListServiceSectionPeople:
|
||||
sectionIndex = peopleSection;
|
||||
break;
|
||||
case RecentsListServiceSectionConversation:
|
||||
sectionIndex = conversationSection;
|
||||
break;
|
||||
case RecentsListServiceSectionLowPriority:
|
||||
sectionIndex = lowPrioritySection;
|
||||
break;
|
||||
case RecentsListServiceSectionServerNotice:
|
||||
sectionIndex = serverNoticeSection;
|
||||
break;
|
||||
case RecentsListServiceSectionSuggested:
|
||||
sectionIndex = suggestedRoomsSection;
|
||||
break;
|
||||
}
|
||||
|
||||
[self.delegate dataSource:self didCellChange:@(sectionIndex)];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
#import "InviteRecentTableViewCell.h"
|
||||
#import "DirectoryRecentTableViewCell.h"
|
||||
#import "RoomIdOrAliasTableViewCell.h"
|
||||
#import "TableViewCellWithCollectionView.h"
|
||||
|
||||
#import "GeneratedInterface-Swift.h"
|
||||
|
||||
@@ -192,11 +193,8 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
|
||||
[ThemeService.shared.theme applyStyleOnSearchBar:tableSearchBar];
|
||||
[ThemeService.shared.theme applyStyleOnSearchBar:self.recentsSearchBar];
|
||||
|
||||
if (self.recentsTableView.dataSource)
|
||||
{
|
||||
// Force table refresh
|
||||
[self cancelEditionMode:YES];
|
||||
}
|
||||
// Force table refresh
|
||||
[self.recentsTableView reloadData];
|
||||
|
||||
[self.emptyView updateWithTheme:ThemeService.shared.theme];
|
||||
|
||||
@@ -1006,9 +1004,38 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
|
||||
|
||||
- (void)dataSource:(MXKDataSource *)dataSource didCellChange:(id)changes
|
||||
{
|
||||
[super dataSource:dataSource didCellChange:changes];
|
||||
BOOL cellReloaded = NO;
|
||||
if ([changes isKindOfClass:NSNumber.class])
|
||||
{
|
||||
NSInteger section = ((NSNumber *)changes).integerValue;
|
||||
if (section >= 0)
|
||||
{
|
||||
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:section];
|
||||
UITableViewCell *cell = [self.recentsTableView cellForRowAtIndexPath:indexPath];
|
||||
if ([cell isKindOfClass:TableViewCellWithCollectionView.class])
|
||||
{
|
||||
TableViewCellWithCollectionView *collectionViewCell = (TableViewCellWithCollectionView *)cell;
|
||||
[collectionViewCell.collectionView reloadData];
|
||||
cellReloaded = YES;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[self showEmptyViewIfNeeded];
|
||||
if (!cellReloaded)
|
||||
{
|
||||
[super dataSource:dataSource didCellChange:changes];
|
||||
}
|
||||
else
|
||||
{
|
||||
// Since we've enabled room list pagination, `refreshRecentsTable` not called in this case.
|
||||
// Refresh tab bar badges separately.
|
||||
[[AppDelegate theDelegate].masterTabBarController refreshTabBarBadges];
|
||||
}
|
||||
|
||||
if (changes == nil)
|
||||
{
|
||||
[self showEmptyViewIfNeeded];
|
||||
}
|
||||
|
||||
if (dataSource.state == MXKDataSourceStateReady)
|
||||
{
|
||||
|
||||
@@ -28,6 +28,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
|
||||
public private(set) var query: String?
|
||||
public private(set) var space: MXSpace?
|
||||
private var fetchersCreated: Bool = false
|
||||
|
||||
// MARK: - Fetchers
|
||||
|
||||
@@ -72,35 +73,17 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
]
|
||||
|
||||
private var allFetchers: [MXRoomListDataFetcher] {
|
||||
var result: [MXRoomListDataFetcher] = []
|
||||
if let fetcher = invitedRoomListDataFetcher {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = favoritedRoomListDataFetcher {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = directRoomListDataFetcherForHome {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = directRoomListDataFetcherForPeople {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = conversationRoomListDataFetcherForHome {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = conversationRoomListDataFetcherForRooms {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = lowPriorityRoomListDataFetcher {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = serverNoticeRoomListDataFetcher {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = suggestedRoomListDataFetcher {
|
||||
result.append(fetcher)
|
||||
}
|
||||
return result
|
||||
return [
|
||||
invitedRoomListDataFetcher,
|
||||
favoritedRoomListDataFetcher,
|
||||
directRoomListDataFetcherForHome,
|
||||
directRoomListDataFetcherForPeople,
|
||||
conversationRoomListDataFetcherForHome,
|
||||
conversationRoomListDataFetcherForRooms,
|
||||
lowPriorityRoomListDataFetcher,
|
||||
serverNoticeRoomListDataFetcher,
|
||||
suggestedRoomListDataFetcher
|
||||
].compactMap({ $0 })
|
||||
}
|
||||
|
||||
private var visibleFetchers: [MXRoomListDataFetcher] {
|
||||
@@ -132,8 +115,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
if let fetcher = serverNoticeRoomListDataFetcher, fetcherTypes.contains(.serverNotice) {
|
||||
result.append(fetcher)
|
||||
}
|
||||
if let fetcher = suggestedRoomListDataFetcher,
|
||||
fetcherTypes.contains(.suggested) {
|
||||
if let fetcher = suggestedRoomListDataFetcher, fetcherTypes.contains(.suggested) {
|
||||
result.append(fetcher)
|
||||
}
|
||||
return result
|
||||
@@ -184,6 +166,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
super.init()
|
||||
createFetchers()
|
||||
addRiotSettingsObserver()
|
||||
addSessionStateObserver()
|
||||
}
|
||||
|
||||
// MARK: - View Data
|
||||
@@ -218,30 +201,45 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
|
||||
public var favoritedMissedDiscussionsCount: DiscussionsCount {
|
||||
guard let data = favoritedRoomListDataFetcher?.data else {
|
||||
guard let totalCounts = favoritedRoomListDataFetcher?.data?.counts.total else {
|
||||
return .zero
|
||||
}
|
||||
return DiscussionsCount(withRoomListDataCounts: data.counts)
|
||||
return DiscussionsCount(withRoomListDataCounts: totalCounts)
|
||||
}
|
||||
|
||||
public var peopleMissedDiscussionsCount: DiscussionsCount {
|
||||
guard let data = directRoomListDataFetcherForPeople?.data else {
|
||||
guard let totalCounts = directRoomListDataFetcherForPeople?.data?.counts.total else {
|
||||
return .zero
|
||||
}
|
||||
return DiscussionsCount(withRoomListDataCounts: data.counts)
|
||||
return DiscussionsCount(withRoomListDataCounts: totalCounts)
|
||||
}
|
||||
|
||||
public var conversationMissedDiscussionsCount: DiscussionsCount {
|
||||
guard let data = conversationRoomListDataFetcherForRooms?.data else {
|
||||
guard let totalCounts = conversationRoomListDataFetcherForRooms?.data?.counts.total else {
|
||||
return .zero
|
||||
}
|
||||
return DiscussionsCount(withRoomListDataCounts: data.counts)
|
||||
return DiscussionsCount(withRoomListDataCounts: totalCounts)
|
||||
}
|
||||
|
||||
public var totalVisibleItemCount: Int {
|
||||
return visibleFetchers.reduce(0, { $0 + ($1.data?.counts.numberOfRooms ?? 0) })
|
||||
}
|
||||
|
||||
public func paginate(inSection section: RecentsListServiceSection) {
|
||||
guard let fetcher = fetcher(forSection: section) else {
|
||||
return
|
||||
}
|
||||
guard let data = fetcher.data else {
|
||||
// first page is not fetched yet
|
||||
return
|
||||
}
|
||||
guard data.paginationOptions != .none else {
|
||||
// pagination is not enabled
|
||||
return
|
||||
}
|
||||
fetcher.paginate()
|
||||
}
|
||||
|
||||
public func updateMode(_ mode: RecentsDataSourceMode) {
|
||||
self.mode = mode
|
||||
if let fetcher = favoritedRoomListDataFetcher {
|
||||
@@ -266,9 +264,20 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
|
||||
public func stop() {
|
||||
removeSessionStateObserver()
|
||||
removeRiotSettingsObserver()
|
||||
removeAllDelegates()
|
||||
allFetchers.forEach({ $0.stop() })
|
||||
|
||||
invitedRoomListDataFetcher = nil
|
||||
favoritedRoomListDataFetcher = nil
|
||||
directRoomListDataFetcherForHome = nil
|
||||
directRoomListDataFetcherForPeople = nil
|
||||
conversationRoomListDataFetcherForHome = nil
|
||||
conversationRoomListDataFetcherForRooms = nil
|
||||
lowPriorityRoomListDataFetcher = nil
|
||||
serverNoticeRoomListDataFetcher = nil
|
||||
suggestedRoomListDataFetcher = nil
|
||||
}
|
||||
|
||||
// MARK: - Delegate
|
||||
@@ -316,6 +325,32 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Session State Observers
|
||||
|
||||
private func addSessionStateObserver() {
|
||||
NotificationCenter.default.addObserver(self,
|
||||
selector: #selector(sessionStateUpdated(_:)),
|
||||
name: .mxSessionStateDidChange,
|
||||
object: nil)
|
||||
}
|
||||
|
||||
private func removeSessionStateObserver() {
|
||||
NotificationCenter.default.removeObserver(self,
|
||||
name: .mxSessionStateDidChange,
|
||||
object: nil)
|
||||
}
|
||||
|
||||
@objc
|
||||
private func sessionStateUpdated(_ notification: Notification) {
|
||||
guard let session = notification.object as? MXSession else {
|
||||
return
|
||||
}
|
||||
guard session == self.session else {
|
||||
return
|
||||
}
|
||||
createFetchers()
|
||||
}
|
||||
|
||||
// MARK: - Private
|
||||
|
||||
private var shouldShowInvited: Bool {
|
||||
@@ -360,6 +395,44 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
return fetcherTypesForMode[mode]?.contains(.suggested) ?? false
|
||||
}
|
||||
|
||||
private func fetcher(forSection section: RecentsListServiceSection) -> MXRoomListDataFetcher? {
|
||||
switch section {
|
||||
case .invited:
|
||||
return invitedRoomListDataFetcher
|
||||
case .favorited:
|
||||
return favoritedRoomListDataFetcher
|
||||
case .people:
|
||||
return directRoomListDataFetcher
|
||||
case .conversation:
|
||||
return conversationRoomListDataFetcher
|
||||
case .lowPriority:
|
||||
return lowPriorityRoomListDataFetcher
|
||||
case .serverNotice:
|
||||
return serverNoticeRoomListDataFetcher
|
||||
case .suggested:
|
||||
return suggestedRoomListDataFetcher
|
||||
}
|
||||
}
|
||||
|
||||
private func section(forFetcher fetcher: MXRoomListDataFetcher) -> RecentsListServiceSection? {
|
||||
if fetcher === invitedRoomListDataFetcher {
|
||||
return .invited
|
||||
} else if fetcher === favoritedRoomListDataFetcher {
|
||||
return .favorited
|
||||
} else if fetcher === directRoomListDataFetcher {
|
||||
return .people
|
||||
} else if fetcher === conversationRoomListDataFetcher {
|
||||
return .conversation
|
||||
} else if fetcher === lowPriorityRoomListDataFetcher {
|
||||
return .lowPriority
|
||||
} else if fetcher === serverNoticeRoomListDataFetcher {
|
||||
return .serverNotice
|
||||
} else if fetcher === suggestedRoomListDataFetcher {
|
||||
return .suggested
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
private func createCommonRoomListDataFetcher(withDataTypes dataTypes: MXRoomSummaryDataTypes = [],
|
||||
onlySuggested: Bool = false,
|
||||
paginate: Bool = true) -> MXRoomListDataFetcher {
|
||||
@@ -374,7 +447,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
|
||||
let fetchOptions = MXRoomListDataFetchOptions(filterOptions: filterOptions,
|
||||
sortOptions: sortOptions,
|
||||
async: false)
|
||||
async: true)
|
||||
let fetcher = session.roomListDataManager.fetcher(withOptions: fetchOptions)
|
||||
if paginate {
|
||||
fetcher.addDelegate(self)
|
||||
@@ -416,6 +489,16 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
|
||||
private func createFetchers() {
|
||||
guard fetchersCreated == false else {
|
||||
removeSessionStateObserver()
|
||||
return
|
||||
}
|
||||
guard let session = session else {
|
||||
return
|
||||
}
|
||||
guard session.isEventStreamInitialised else {
|
||||
return
|
||||
}
|
||||
if !hideInvitedSection {
|
||||
invitedRoomListDataFetcher = createCommonRoomListDataFetcher(withDataTypes: [.invited])
|
||||
}
|
||||
@@ -427,6 +510,9 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
lowPriorityRoomListDataFetcher = createCommonRoomListDataFetcher(withDataTypes: [.lowPriority])
|
||||
serverNoticeRoomListDataFetcher = createCommonRoomListDataFetcher(withDataTypes: [.serverNotice])
|
||||
suggestedRoomListDataFetcher = createCommonRoomListDataFetcher(onlySuggested: true)
|
||||
|
||||
fetchersCreated = true
|
||||
removeSessionStateObserver()
|
||||
}
|
||||
|
||||
private func updateDirectFetcher(_ fetcher: MXRoomListDataFetcher, for mode: RecentsDataSourceMode) {
|
||||
@@ -473,7 +559,10 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
|
||||
private func notifyDataChange(on fetcher: MXRoomListDataFetcher) {
|
||||
multicastDelegate.invoke({ $0.serviceDidChangeData(self) })
|
||||
if let section = section(forFetcher: fetcher) {
|
||||
multicastDelegate.invoke { $0.recentsListServiceDidChangeData?(self, forSection: section) }
|
||||
}
|
||||
multicastDelegate.invoke { $0.recentsListServiceDidChangeData?(self) }
|
||||
}
|
||||
|
||||
deinit {
|
||||
|
||||
@@ -170,6 +170,10 @@ public class MockRecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
}
|
||||
|
||||
public func paginate(inSection section: RecentsListServiceSection) {
|
||||
// no-op
|
||||
}
|
||||
|
||||
public func updateMode(_ mode: RecentsDataSourceMode) {
|
||||
self.mode = mode
|
||||
notifyDataChange()
|
||||
@@ -210,7 +214,7 @@ public class MockRecentsListService: NSObject, RecentsListServiceProtocol {
|
||||
}
|
||||
|
||||
private func notifyDataChange() {
|
||||
multicastDelegate.invoke({ $0.serviceDidChangeData(self) })
|
||||
multicastDelegate.invoke({ $0.recentsListServiceDidChangeData?(self) })
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ public class MockRoomListData: MXRoomListData {
|
||||
public init(withRooms rooms: [MXRoomSummaryProtocol]) {
|
||||
super.init(rooms: rooms,
|
||||
counts: MXStoreRoomListDataCounts(withRooms: rooms,
|
||||
totalRoomsCount: rooms.count),
|
||||
total: nil),
|
||||
paginationOptions: .none)
|
||||
}
|
||||
|
||||
|
||||
@@ -21,5 +21,11 @@ public protocol RecentsListServiceDelegate: AnyObject {
|
||||
|
||||
/// Delegate method to be called when service data updated
|
||||
/// - Parameter service: service object
|
||||
func serviceDidChangeData(_ service: RecentsListServiceProtocol)
|
||||
@objc optional func recentsListServiceDidChangeData(_ service: RecentsListServiceProtocol)
|
||||
|
||||
/// Delegate method to be called when a specific section data updated. Called for each updated section before `recentsListServiceDidChangeData` if implemented.
|
||||
/// - Parameter service: service object
|
||||
/// - Parameter section: updated section
|
||||
@objc optional func recentsListServiceDidChangeData(_ service: RecentsListServiceProtocol,
|
||||
forSection section: RecentsListServiceSection)
|
||||
}
|
||||
|
||||
@@ -87,6 +87,11 @@ public protocol RecentsListServiceProtocol {
|
||||
/// Stop service. Do not use after stopping.
|
||||
func stop()
|
||||
|
||||
// MARK: Pagination
|
||||
|
||||
/// Paginate in the given section.
|
||||
func paginate(inSection section: RecentsListServiceSection)
|
||||
|
||||
// MARK: - Delegate
|
||||
|
||||
/// Add delegate instance for the service
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// Copyright 2021 New Vector Ltd
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
@objc
|
||||
public enum RecentsListServiceSection: Int {
|
||||
case invited
|
||||
case favorited
|
||||
case people
|
||||
case conversation
|
||||
case lowPriority
|
||||
case serverNotice
|
||||
case suggested
|
||||
}
|
||||
@@ -24,6 +24,8 @@
|
||||
RecentsDataSource *recentsDataSource;
|
||||
}
|
||||
|
||||
@property (nonatomic, strong) MXThrottler *tableViewPaginationThrottler;
|
||||
|
||||
@end
|
||||
|
||||
@implementation FavouritesViewController
|
||||
@@ -42,6 +44,7 @@
|
||||
self.enableDragging = YES;
|
||||
|
||||
self.screenTimer = [[AnalyticsScreenTimer alloc] initWithScreen:AnalyticsScreenFavourites];
|
||||
self.tableViewPaginationThrottler = [[MXThrottler alloc] initWithMinimumDelay:0.1];
|
||||
}
|
||||
|
||||
- (void)viewDidLoad
|
||||
@@ -121,6 +124,24 @@
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
if ([super respondsToSelector:@selector(tableView:willDisplayCell:forRowAtIndexPath:)])
|
||||
{
|
||||
[super tableView:tableView willDisplayCell:cell forRowAtIndexPath:indexPath];
|
||||
}
|
||||
|
||||
[self.tableViewPaginationThrottler throttle:^{
|
||||
NSInteger section = indexPath.section;
|
||||
NSInteger numberOfRowsInSection = [tableView numberOfRowsInSection:section];
|
||||
if (tableView.numberOfSections > section
|
||||
&& indexPath.row == numberOfRowsInSection - 1)
|
||||
{
|
||||
[self->recentsDataSource paginateInSection:section];
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
#pragma mark - Empty view management
|
||||
|
||||
- (void)updateEmptyView
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
@property (nonatomic, strong) CrossSigningSetupCoordinatorBridgePresenter *crossSigningSetupCoordinatorBridgePresenter;
|
||||
|
||||
@property (nonatomic, assign, readwrite) BOOL roomListDataReady;
|
||||
@property (nonatomic, strong) MXThrottler *collectionViewPaginationThrottler;
|
||||
|
||||
@property(nonatomic) SpaceMembersCoordinatorBridgePresenter *spaceMembersCoordinatorBridgePresenter;
|
||||
|
||||
@@ -70,6 +71,7 @@
|
||||
selectedCollectionViewContentOffset = -1;
|
||||
|
||||
self.screenTimer = [[AnalyticsScreenTimer alloc] initWithScreen:AnalyticsScreenHome];
|
||||
self.collectionViewPaginationThrottler = [[MXThrottler alloc] initWithMinimumDelay:0.1];
|
||||
}
|
||||
|
||||
- (void)viewDidLoad
|
||||
@@ -619,6 +621,20 @@
|
||||
return cell;
|
||||
}
|
||||
|
||||
- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
[self.collectionViewPaginationThrottler throttle:^{
|
||||
NSInteger collectionViewSection = indexPath.section;
|
||||
NSInteger numberOfItemsInSection = [collectionView numberOfItemsInSection:collectionViewSection];
|
||||
if (collectionView.numberOfSections > collectionViewSection
|
||||
&& indexPath.item == numberOfItemsInSection - 1)
|
||||
{
|
||||
NSInteger tableViewSection = collectionView.tag;
|
||||
[self->recentsDataSource paginateInSection:tableViewSection];
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
#pragma mark - UICollectionViewDelegate
|
||||
|
||||
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
|
||||
|
||||
+19
-1
@@ -16,7 +16,7 @@
|
||||
|
||||
import Foundation
|
||||
|
||||
class HomeViewControllerWithBannerWrapperViewController: MXKActivityHandlingViewController, BannerPresentationProtocol {
|
||||
class HomeViewControllerWithBannerWrapperViewController: UIViewController, MXKViewControllerActivityHandling, BannerPresentationProtocol {
|
||||
|
||||
@objc let homeViewController: HomeViewController
|
||||
private var bannerContainerView: UIView!
|
||||
@@ -85,4 +85,22 @@ class HomeViewControllerWithBannerWrapperViewController: MXKActivityHandlingView
|
||||
bannerView.removeFromSuperview()
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - MXKViewControllerActivityHandling
|
||||
var activityIndicator: UIActivityIndicatorView! {
|
||||
get {
|
||||
return homeViewController.activityIndicator
|
||||
}
|
||||
set {
|
||||
homeViewController.activityIndicator = newValue
|
||||
}
|
||||
}
|
||||
|
||||
func startActivityIndicator() {
|
||||
homeViewController.startActivityIndicator()
|
||||
}
|
||||
|
||||
func stopActivityIndicator() {
|
||||
homeViewController.stopActivityIndicator()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -504,3 +504,5 @@
|
||||
"attachment_unsupported_preview_message" = "Dieser Dateityp wird nicht unterstützt.";
|
||||
"attachment_unsupported_preview_title" = "Vorschau kann nicht angezeigt werden";
|
||||
"auth_reset_password_error_unauthorized" = "Nicht Authorisiert";
|
||||
"message_reply_to_sender_sent_their_location" = "hat den eigenen Standort geteilt.";
|
||||
"room_displayname_all_other_members_left" = "%@ (Verlassen)";
|
||||
|
||||
@@ -270,7 +270,7 @@
|
||||
// Language picker
|
||||
"language_picker_title" = "Vali keel";
|
||||
"language_picker_default_language" = "Vaikimisi (%@)";
|
||||
"notice_room_invite" = "%@ kutsus kasutajat %@";
|
||||
"notice_room_invite" = "%@ saatis kutse kasutajale %@";
|
||||
"notice_room_third_party_invite" = "%@ saatis kasutajale %@ kutse jututoaga liitumiseks";
|
||||
"notice_room_third_party_registered_invite" = "%@ võttis vastu kutse %@ nimel";
|
||||
"notice_room_third_party_revoked_invite" = "%@ võttis tagasi jututoaga liitumise kutse kasutajalt %@";
|
||||
@@ -433,7 +433,7 @@
|
||||
"notice_room_history_visible_to_members_from_invited_point_for_dm" = "%@ määras, et jututoa tulevane ajalugu on nähtav kõikidele selle liikmetele liitumiskutse saatmise hetkest.";
|
||||
"notice_room_history_visible_to_members_from_joined_point_for_dm" = "%@ määras, et jututoa tulevane ajalugu on nähtav kõikidele selle liikmetele nende liitumise hetkest.";
|
||||
"room_left_for_dm" = "Sina lahkusid";
|
||||
"notice_room_third_party_invite_for_dm" = "%@ kutsus kasutajat %@";
|
||||
"notice_room_third_party_invite_for_dm" = "%@ saatis kutse kasutajale %@";
|
||||
"notice_room_third_party_revoked_invite_for_dm" = "%@ võttis tagasi kasutaja %@ kutse";
|
||||
"notice_room_name_changed_for_dm" = "%@ muutis jututoa uueks nimeks %@.";
|
||||
"notice_room_third_party_invite_by_you_for_dm" = "Sina kutsusid kasutajat %@";
|
||||
@@ -478,3 +478,4 @@
|
||||
"room_displayname_all_other_members_left" = "%@ (lahkus(id))";
|
||||
"attachment_unsupported_preview_message" = "See failitüüp ei ole toetatud.";
|
||||
"attachment_unsupported_preview_title" = "Eelvaate kuvamine ei õnnestu";
|
||||
"message_reply_to_sender_sent_their_location" = "on jaganud oma asukohta.";
|
||||
|
||||
@@ -275,7 +275,7 @@
|
||||
"notice_conference_call_started" = "Téléconférence en VoIP démarrée";
|
||||
"notice_conference_call_finished" = "Téléconférence en VoIP terminée";
|
||||
// button names
|
||||
"ok" = "OK";
|
||||
"ok" = "Ok";
|
||||
"send" = "Envoyer";
|
||||
"copy_button_name" = "Copier";
|
||||
"resend" = "Renvoyer";
|
||||
|
||||
@@ -283,7 +283,7 @@
|
||||
"notice_conference_call_started" = "VoIP konferencia indult";
|
||||
"notice_conference_call_finished" = "VoIP konferencia befejeződött";
|
||||
// button names
|
||||
"ok" = "Rendben";
|
||||
"ok" = "OK";
|
||||
"cancel" = "Mégse";
|
||||
"save" = "Ment";
|
||||
"send" = "Küld";
|
||||
@@ -479,3 +479,4 @@
|
||||
"room_displayname_all_other_members_left" = "%@ (Bal)";
|
||||
"attachment_unsupported_preview_message" = "Ez a fájl típus nem támogatott.";
|
||||
"attachment_unsupported_preview_title" = "Az előnézetet nem lehet megjeleníteni";
|
||||
"message_reply_to_sender_sent_their_location" = "megosztotta a földrajzi helyzetét.";
|
||||
|
||||
@@ -249,7 +249,7 @@
|
||||
// titles
|
||||
|
||||
// button names
|
||||
"ok" = "OK";
|
||||
"ok" = "OKE";
|
||||
"notice_room_history_visible_to_members_from_joined_point_by_you_for_dm" = "Anda membuat sejarah pesan di masa mendatang dapat dilihat oleh semuanya, sejak mereka bergabung.";
|
||||
"notice_room_history_visible_to_members_from_joined_point_by_you" = "Anda membuat sejarah ruangan di masa mendatang dapat dilihat oleh semua anggota ruang, sejak mereka bergabung.";
|
||||
"notice_encryption_enabled_unknown_algorithm_by_you" = "Anda mengaktifkan enkripsi ujung-ke-ujung (algoritma %@ tidak dikenal).";
|
||||
@@ -557,3 +557,4 @@
|
||||
"notice_room_power_level_acting_requirement" = "Tingkat daya minimum yang harus dimiliki pengguna sebelum bertindak adalah:";
|
||||
"attachment_unsupported_preview_title" = "Tidak dapat ditampilkan";
|
||||
"attachment_unsupported_preview_message" = "Tipe file ini tidak didukung.";
|
||||
"message_reply_to_sender_sent_their_location" = "telah membagikan lokasinya.";
|
||||
|
||||
@@ -478,3 +478,4 @@
|
||||
"rename" = "Rinomina";
|
||||
"attachment_unsupported_preview_message" = "Questo tipo di file non è supportato.";
|
||||
"attachment_unsupported_preview_title" = "Anteprima non disponibile";
|
||||
"message_reply_to_sender_sent_their_location" = "ha condiviso la sua posizione.";
|
||||
|
||||
@@ -311,7 +311,7 @@
|
||||
// titles
|
||||
|
||||
// button names
|
||||
"ok" = "Oké";
|
||||
"ok" = "OK";
|
||||
"cancel" = "Annuleren";
|
||||
"save" = "Opslaan";
|
||||
"leave" = "Verlaten";
|
||||
@@ -540,3 +540,4 @@
|
||||
"room_displayname_all_other_members_left" = "%@ (Vertrok)";
|
||||
"auth_username_in_use" = "Inlognaam al in gebruik";
|
||||
"rename" = "Hernoemen";
|
||||
"message_reply_to_sender_sent_their_location" = "deelde hun locatie.";
|
||||
|
||||
@@ -496,3 +496,12 @@
|
||||
"attachment_small_with_resolution" = "Mały %@ (~%@)";
|
||||
"attachment_size_prompt_message" = "Możesz to wyłączyć w ustawieniach.";
|
||||
"attachment_size_prompt_title" = "Potwierdź rozmiar, który chcesz wysłać";
|
||||
"auth_reset_password_error_not_found" = "Nie znaleziono";
|
||||
"auth_reset_password_error_unauthorized" = "Brak autoryzacji";
|
||||
"auth_invalid_user_name" = "Niepoprawna nazwa użytkownika";
|
||||
"attachment_unsupported_preview_message" = "Ten format pliku nie jest obsługiwany.";
|
||||
"attachment_unsupported_preview_title" = "Brak podglądu";
|
||||
"message_reply_to_sender_sent_their_location" = "udostępnił(-a) swoją lokację.";
|
||||
"room_displayname_all_other_members_left" = "%@ (Opuścił-a)";
|
||||
"auth_username_in_use" = "Nazwa użytkownika jest już używana";
|
||||
"rename" = "Zmień nazwę";
|
||||
|
||||
@@ -121,7 +121,7 @@
|
||||
"room_displayname_two_members" = "%@ e %@";
|
||||
"room_displayname_more_than_two_members" = "%@ e %@ outros";
|
||||
// Settings
|
||||
"settings" = "Configurações";
|
||||
"settings" = "Ajustes";
|
||||
"settings_enable_inapp_notifications" = "Habilitar notificações Em-App";
|
||||
"settings_enable_push_notifications" = "Habilitar notificações push";
|
||||
"settings_enter_validation_token_for" = "Entrar token de validação para %@:";
|
||||
@@ -157,7 +157,7 @@
|
||||
"room_event_encryption_info_block" = "Adicionar à lista negra";
|
||||
"room_event_encryption_info_unblock" = "Remover da lista negra";
|
||||
"room_event_encryption_verify_title" = "Verificar sessão\n\n";
|
||||
"room_event_encryption_verify_message" = "Para verificar que esta sessão pode ser confiada, por favor contacte a/o dona(o) dela usando alguma outro meio (e.g. em pessoa ou uma chamada de telefone) e pergunte-lhe se a chave que ela/ele vê em suas Configurações de Usuária(o) para esta sessão bate com a chave abaixo:\n\n\tNome de sessão: %@\n\tID de sessão: %@\n\tChave de sessão: %@\n\nSe ela bate, pressione o botão verificar abaixo. Se não bate, então alguma outra pessoa está interceptando esa sessão e você provavelmente quer pressionar o botão adicionar à lista negra em vez disso.\n\nNo futuro este processo de verificação vai ser mais sofisticado.";
|
||||
"room_event_encryption_verify_message" = "Para verificar que esta sessão pode ser confiada, por favor contacte a/o dona(o) dela usando alguma outro meio (e.g. em pessoa ou uma chamada de telefone) e pergunte-lhe se a chave que ela/ele vê em seus Ajustes de Usuária(o) para esta sessão corresponde com a chave abaixo:\n\n\tNome de sessão: %@\n\tID de sessão: %@\n\tChave de sessão: %@\n\nSe ela corresponde, pressione o botão verificar abaixo. Se não corresponde, então alguma outra pessoa está interceptando esa sessão e você provavelmente quer pressionar o botão adicionar à lista negra em vez disso.\n\nNo futuro este processo de verificação vai ser mais sofisticado.";
|
||||
"room_event_encryption_verify_ok" = "Verificar";
|
||||
// Account
|
||||
"account_save_changes" = "Salvar mudanças";
|
||||
@@ -331,9 +331,9 @@
|
||||
"notification_settings_disable_all" = "Desabilitar todas as notificações";
|
||||
"notification_settings_enable_notifications" = "Habilitar notificações";
|
||||
"notification_settings_enable_notifications_warning" = "Todas as notificações estão atualmente desabilitadas para todos os dispositivos.";
|
||||
"notification_settings_global_info" = "Configurações de notificação são salvas em sua conta de usuária(o) e são compartilhadas entre todos os clientes que as suportam (incluindo notificações de desktop).\n\nRegras são aplicadas em ordem; a primeira regra que corresponde define o resultado da mensagem.\nEntão: Notificações per-palavra são mais importantes que notificações per-sala que são mais importantes que notificações per-enviador(a).\nPara múltiplas regras do mesmo tipo, a primeira na lista que corresponde leva prioridade.";
|
||||
"notification_settings_global_info" = "Ajustes de notificação são salvas em sua conta de usuária(o) e são compartilhadas entre todos os clientes que as suportam (incluindo notificações de desktop).\n\nRegras são aplicadas em ordem; a primeira regra que corresponde define o resultado da mensagem.\nEntão: Notificações per-palavra são mais importantes que notificações per-sala que são mais importantes que notificações per-enviador(a).\nPara múltiplas regras do mesmo tipo, a primeira na lista que corresponde leva prioridade.";
|
||||
"notification_settings_per_word_notifications" = "Notificações per-palavra";
|
||||
"notification_settings_per_word_info" = "Palavras correspondem insensivelmente a maiúsculas e minúsculas, e podem incluir um wildcard *. Então:\nfoo corresponde a string foo rodeado por delimitadores de palavras (e.g., pontuação e whitespace ou início/fim de linha).\nfoo* corresponde a qualquer palavra que começa foo.\n*foo* corresponde a qualquer palavra que inclui as 3 letras foo.";
|
||||
"notification_settings_per_word_info" = "Palavras correspondem insensivelmente com maiúsculas e minúsculas, e podem incluir um wildcard *. Então:\nfoo corresponde com string foo rodeado por delimitadores de palavras (e.g., pontuação e whitespace ou início/fim de linha).\nfoo* corresponde com qualquer palavra que começa foo.\n*foo* corresponde com qualquer palavra que inclui as 3 letras foo.";
|
||||
"notification_settings_always_notify" = "Sempre notificar";
|
||||
"notification_settings_never_notify" = "Nunca notificar";
|
||||
"notification_settings_word_to_match" = "palavra para corresponder";
|
||||
@@ -372,10 +372,10 @@
|
||||
"ssl_fingerprint_hash" = "Impressão digital (%@):";
|
||||
"ssl_could_not_verify" = "Não foi possível verificar identidade de servidor remoto.";
|
||||
"ssl_cert_not_trust" = "Isto pode significar que alguém está interceptando maliciosamente seu tráfico, ou que seu telefone não confia no certificado provido pelo servidor remoto.";
|
||||
"ssl_cert_new_account_expl" = "Se o/a administrador(a) do servidor tem dito que isto é esperado, assegure-se que a impressão digital abaixo bate com a impressão digital provida por ele(a).";
|
||||
"ssl_cert_new_account_expl" = "Se o/a administrador(a) do servidor tem dito que isto é esperado, assegure-se que a impressão digital abaixo corresponde com a impressão digital provida por ele(a).";
|
||||
"ssl_unexpected_existing_expl" = "O certificado tem mudado de um que esta confiado por seu telefone. Isto é ALTAMENTE INCOMUM. É recomendado que você NÃO ACEITE este novo certificado.";
|
||||
"ssl_expected_existing_expl" = "O certificado tem sido mudado de um previamente confiado para um que não é confiado. O servidor pode ter renovado o certificado dele. Contacte o/a administrador(a) do servidor a impressão digital esperada.";
|
||||
"ssl_only_accept" = "SOMENTE aceite o certificado se o/a administrador(a) do servidor tem publicado uma impressão digital que corresponde à acima.";
|
||||
"ssl_only_accept" = "SOMENTE aceite o certificado se o/a administrador(a) do servidor tem publicado uma impressão digital que corresponde com a acima.";
|
||||
"notice_encryption_enabled_ok" = "%@ ativou encriptação ponta-a-ponta.";
|
||||
"notice_encryption_enabled_unknown_algorithm" = "%1$@ ativou encriptação ponta-a-ponta (algoritmo não-reconhecido %2$@).";
|
||||
"device_details_rename_prompt_title" = "Nome da Sessão";
|
||||
@@ -468,7 +468,7 @@
|
||||
"attachment_large_with_resolution" = "Grande %@ (~%@)";
|
||||
"attachment_medium_with_resolution" = "Médio %@ (~%@)";
|
||||
"attachment_small_with_resolution" = "Pequeno %@ (~%@)";
|
||||
"attachment_size_prompt_message" = "Você pode desligar isto em configurações.";
|
||||
"attachment_size_prompt_message" = "Você pode desligar isto em ajustes.";
|
||||
"attachment_size_prompt_title" = "Confirmar tamanho para enviar";
|
||||
"room_displayname_all_other_participants_left" = "%@ (Saiu)";
|
||||
"auth_reset_password_error_not_found" = "Não encontrado";
|
||||
@@ -479,3 +479,4 @@
|
||||
"room_displayname_all_other_members_left" = "%@ (Saiu)";
|
||||
"attachment_unsupported_preview_message" = "Este tipo de arquivo não é suportado.";
|
||||
"attachment_unsupported_preview_title" = "Incapaz de previsualizar";
|
||||
"message_reply_to_sender_sent_their_location" = "tem compartilhado a localização dela(e).";
|
||||
|
||||
@@ -543,3 +543,7 @@
|
||||
"notice_feedback" = "Udalosť spätnej väzby (id: %@): %@";
|
||||
"resume_call" = "Pokračovať";
|
||||
"answer_call" = "Prijať hovor";
|
||||
"message_reply_to_sender_sent_their_location" = "zdieľal/a svoju polohu.";
|
||||
"account_link_email" = "Prepojený email";
|
||||
"account_linked_emails" = "Prepojené e-maily";
|
||||
"room_event_encryption_info_event_fingerprint_key" = "Deklarovaný kľúč odtlačkov prstov Ed25519\n";
|
||||
|
||||
@@ -478,3 +478,4 @@
|
||||
"attachment_unsupported_preview_message" = "Ky lloj kartele nuk mbulohet.";
|
||||
"attachment_unsupported_preview_title" = "S’arrihet të bëhet paraparje";
|
||||
"room_displayname_all_other_members_left" = "%@ (Iku)";
|
||||
"message_reply_to_sender_sent_their_location" = "ka dhënë vendndodhjen e vet.";
|
||||
|
||||
@@ -478,3 +478,4 @@
|
||||
"attachment_unsupported_preview_message" = "Den här filtypen stöds inte.";
|
||||
"attachment_unsupported_preview_title" = "Kunde inte förhandsgranska";
|
||||
"room_displayname_all_other_members_left" = "%@ (Kvar)";
|
||||
"message_reply_to_sender_sent_their_location" = "har delat sin plats.";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user