Merge branch 'release/1.4.8/master'

This commit is contained in:
manuroe 2021-07-29 16:58:29 +02:00
commit cd31272c4f
132 changed files with 3863 additions and 1020 deletions

31
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: ''
---
#### Describe the bug.
A clear and concise description of what the bug is.
#### Steps to reproduce:
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
#### Expected behavior
A clear and concise description of what you expected to happen.
#### Screenshots
If applicable, add screenshots to help explain your problem.
#### Contextual information:
<!-- You can find your device information under Settings -> General -> About -->
- Device: <!-- e.g. iPhone6, under "model name"-->
- OS: <!-- e.g. iOS8.1, under "software version" -->
<!-- The app version should be displayed in the side-panel of the home screen -->
- App Version: <!-- e.g. 1.4.5 -->

8
.github/ISSUE_TEMPLATE/config.yaml vendored Normal file
View file

@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Element iOS Community Support
url: "https://matrix.to/#/#element-ios:matrix.org"
about: General Element iOS support questions can be asked here.
- name: Matrix Security Policy
url: https://www.matrix.org/security-disclosure-policy/
about: Learn more about our security disclosure policy.

View file

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'feature'
assignees: ''
---
#### Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
#### Describe the solution you'd like.
A clear and concise description of what you want to happen.
#### Describe alternatives you've considered.
A clear and concise description of any alternative solutions or features you've considered.
#### Additional context.
Add any other context or screenshots about the feature request here.

View file

@ -1,4 +1,4 @@
name: CI
name: Build CI
on:
# Triggers the workflow on any pull request and push to develop
@ -52,43 +52,3 @@ jobs:
# Main step
- name: Build iOS simulator
run: bundle exec fastlane build
tests:
name: Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Common cache
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
- uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
# Make sure we use the latest version of MatrixKit
- name: Reset MatrixKit pod
run: rm -rf Pods/MatrixKit
# Common setup
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Use right MatrixKit and MatrixSDK versions
run: bundle exec fastlane point_dependencies_to_related_branches
# Main step
- name: Unit tests
run: bundle exec fastlane test

54
.github/workflows/ci-tests.yml vendored Normal file
View file

@ -0,0 +1,54 @@
name: Tests CI
on:
# Triggers the workflow on any pull request and push to develop
push:
branches: [ develop ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
# Make the git branch for a PR available to our Fastfile
MX_GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
jobs:
tests:
name: Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Common cache
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
- uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
# Make sure we use the latest version of MatrixKit
- name: Reset MatrixKit pod
run: rm -rf Pods/MatrixKit
# Common setup
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Use right MatrixKit and MatrixSDK versions
run: bundle exec fastlane point_dependencies_to_related_branches
# Main step
- name: Unit tests
run: bundle exec fastlane test

View file

@ -1,3 +1,44 @@
Changes in 1.4.8 (2021-07-29)
=================================================
✨ Features
*
🙌 Improvements
* Room: Added support for Voice Messages (#4090, #4091, #4092, #4094, #4095, #4096)
* Rooms Tab: Remove the directory section (#4521).
* Notifications: Show decrypted content is enabled by default (#4519).
* People Tab: Remove the local contacts section (#4523).
* Contacts: Delay access to local contacts until they're needed for display (#4616).
* RecentsDataSource: Factorize section reset in one place (target #4591).
* Voice Messages: Tap/hold to send voice messages isn't intuitive (#4601).
* Voice Messages: copy could be improved (#4604).
* Slide to lock should be more generous (#4602).
🐛 Bugfix
* Room: Fixed mentioning users from room info member details (#4583)
* Settings: Disabled autocorrection when entering an identity server (#4593).
* Room Notification Settings: Fix Crash when opening the new Room Notification Settings Screen (Not yet released) (#4599).
* AuthenticationViewController: Fix crash on authentication if an intermediate view was presented (#4606).
* Room: Fixed crash when opening a read-only room (#4620).
* Voice Messages: Tapping on waveform in composer glitches UI (#4603).
⚠️ API Changes
*
🗣 Translations
*
🧱 Build
*
Others
* Separated CI jobs into individual actions
* Update Gemfile.lock
Improvements:
* Upgrade MatrixKit version ([v0.15.6](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.15.6)).
Changes in 1.4.7 (2021-07-22)
=================================================
@ -20,7 +61,7 @@ Changes in 1.4.7 (2021-07-22)
*
Others
*
* Updated issue templates.
Improvements:
* Upgrade MatrixKit version ([v0.15.5](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.15.5)).

View file

@ -22,8 +22,8 @@ APPLICATION_GROUP_IDENTIFIER = group.im.vector
APPLICATION_SCHEME = element
// Version
MARKETING_VERSION = 1.4.7
CURRENT_PROJECT_VERSION = 1.4.7
MARKETING_VERSION = 1.4.8
CURRENT_PROJECT_VERSION = 1.4.8
// Team

View file

@ -148,7 +148,7 @@ final class BuildSettings: NSObject {
// MARK: - Public rooms Directory
static let publicRoomsShowDirectory: Bool = true
#warning("Unused build setting: should this be implemented in ShowDirectory?")
static let publicRoomsAllowServerChange: Bool = true
// List of homeservers for the public rooms directory
static let publicRoomsDirectoryServers = [
@ -309,6 +309,13 @@ final class BuildSettings: NSObject {
static let messageDetailsAllowCopyMedia: Bool = true
static let messageDetailsAllowPasteMedia: Bool = true
// MARK: - Voice Message
static let voiceMessagesEnabled = false
// MARK: - Notifications
static let decryptNotificationsByDefault: Bool = true
// MARK: - HTTP
/// Additional HTTP headers will be sent by all requests. Not recommended to use request-specific headers, like `Authorization`.
/// Empty dictionary by default.

View file

@ -45,6 +45,10 @@ import UIKit
/// - Icons
var quarterlyContent: UIColor { get }
/// - Text
/// - Icons
var quinaryContent: UIColor { get }
/// Separating line
var separator: UIColor { get }

View file

@ -32,6 +32,8 @@ public class DarkColors: Colors {
public let quarterlyContent: UIColor = UIColor(rgb: 0x6F7882)
public let quinaryContent: UIColor = UIColor(rgb: 0x394049)
public let separator: UIColor = UIColor(rgb: 0x21262C)
public let tile: UIColor = UIColor(rgb: 0x394049)

View file

@ -32,6 +32,8 @@ public class LightColors: Colors {
public let quarterlyContent: UIColor = UIColor(rgb: 0xC1C6CD)
public let quinaryContent: UIColor = UIColor(rgb: 0xE3E8F0)
public let separator: UIColor = UIColor(rgb: 0xE3E8F0)
public let tile: UIColor = UIColor(rgb: 0xF3F8FD)

View file

@ -7,7 +7,7 @@ GEM
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.7.0)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
@ -252,4 +252,4 @@ DEPENDENCIES
xcode-install
BUNDLED WITH
2.2.14
2.2.21

View file

@ -11,7 +11,7 @@ use_frameworks!
# - `{ {kit spec hash} => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for each 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
$matrixKitVersion = '= 0.15.5'
$matrixKitVersion = '= 0.15.6'
# $matrixKitVersion = :local
# $matrixKitVersion = {'develop' => 'develop'}
@ -69,6 +69,8 @@ abstract_target 'RiotPods' do
pod 'SwiftBase32', '~> 0.9.0'
pod 'SwiftJWT', '~> 3.6.200'
pod 'SideMenu', '~> 6.5'
pod 'DSWaveformImage', '~> 6.1.1'
pod 'ffmpeg-kit-ios-audio', '~> 4.4.LTS'
pod 'FLEX', '~> 4.4.1', :configurations => ['Debug']

View file

@ -19,6 +19,7 @@ PODS:
- BlueRSA (1.0.34)
- DGCollectionViewLeftAlignFlowLayout (1.0.4)
- Down (0.11.0)
- DSWaveformImage (6.1.1)
- DTCoreText (1.6.26):
- DTCoreText/Core (= 1.6.26)
- DTFoundation/Core (~> 1.7.5)
@ -36,6 +37,7 @@ PODS:
- DTFoundation/Core
- DTFoundation/UIKit (1.7.18):
- DTFoundation/Core
- ffmpeg-kit-ios-audio (4.4)
- FLEX (4.4.1)
- FlowCommoniOS (1.10.0)
- GBDeviceInfo (6.6.0):
@ -56,29 +58,29 @@ PODS:
- MatomoTracker (7.4.1):
- MatomoTracker/Core (= 7.4.1)
- MatomoTracker/Core (7.4.1)
- MatrixKit (0.15.5):
- MatrixKit (0.15.6):
- Down (~> 0.11.0)
- DTCoreText (~> 1.6.25)
- HPGrowingTextView (~> 1.1)
- libPhoneNumber-iOS (~> 0.9.13)
- MatrixKit/Core (= 0.15.5)
- MatrixSDK (= 0.19.5)
- MatrixKit/Core (0.15.5):
- MatrixKit/Core (= 0.15.6)
- MatrixSDK (= 0.19.6)
- MatrixKit/Core (0.15.6):
- Down (~> 0.11.0)
- DTCoreText (~> 1.6.25)
- HPGrowingTextView (~> 1.1)
- libPhoneNumber-iOS (~> 0.9.13)
- MatrixSDK (= 0.19.5)
- MatrixSDK (0.19.5):
- MatrixSDK/Core (= 0.19.5)
- MatrixSDK/Core (0.19.5):
- MatrixSDK (= 0.19.6)
- MatrixSDK (0.19.6):
- MatrixSDK/Core (= 0.19.6)
- MatrixSDK/Core (0.19.6):
- AFNetworking (~> 4.0.0)
- GZIP (~> 1.3.0)
- libbase58 (~> 0.1.4)
- OLMKit (~> 3.2.4)
- Realm (= 10.7.6)
- SwiftyBeaver (= 1.9.5)
- MatrixSDK/JingleCallStack (0.19.5):
- MatrixSDK/JingleCallStack (0.19.6):
- JitsiMeetSDK (= 3.5.0)
- MatrixSDK/Core
- OLMKit (3.2.4):
@ -104,7 +106,7 @@ PODS:
- BlueRSA (~> 1.0)
- KituraContracts (~> 1.2)
- LoggerAPI (~> 1.7)
- SwiftLint (0.43.0)
- SwiftLint (0.43.1)
- SwiftyBeaver (1.9.5)
- zxcvbn-ios (1.0.4)
- ZXingObjC (3.6.5):
@ -113,6 +115,8 @@ PODS:
DEPENDENCIES:
- DGCollectionViewLeftAlignFlowLayout (~> 1.0.4)
- DSWaveformImage (~> 6.1.1)
- ffmpeg-kit-ios-audio (~> 4.4.LTS)
- FLEX (~> 4.4.1)
- FlowCommoniOS (~> 1.10.0)
- GBDeviceInfo (~> 6.6.0)
@ -120,7 +124,7 @@ DEPENDENCIES:
- KeychainAccess (~> 4.2.2)
- KTCenterFlowLayout (~> 1.3.1)
- MatomoTracker (~> 7.4.1)
- MatrixKit (= 0.15.5)
- MatrixKit (= 0.15.6)
- MatrixSDK
- MatrixSDK/JingleCallStack
- OLMKit
@ -142,8 +146,10 @@ SPEC REPOS:
- BlueRSA
- DGCollectionViewLeftAlignFlowLayout
- Down
- DSWaveformImage
- DTCoreText
- DTFoundation
- ffmpeg-kit-ios-audio
- FLEX
- FlowCommoniOS
- GBDeviceInfo
@ -180,8 +186,10 @@ SPEC CHECKSUMS:
BlueRSA: 6f9776d62d9773502415a7db3bcbb2bbb3f71fc3
DGCollectionViewLeftAlignFlowLayout: a0fa58797373ded039cafba8133e79373d048399
Down: b6ba1bc985c9d2f4e15e3b293d2207766fa12612
DSWaveformImage: 3c718a0cf99291887ee70d1d0c18d80101d3d9ce
DTCoreText: ec749e013f2e1f76de5e7c7634642e600a7467ce
DTFoundation: a53f8cda2489208cbc71c648be177f902ee17536
ffmpeg-kit-ios-audio: ddfc3dac6f574e83d53f8ae33586711162685d3e
FLEX: 7ca2c8cd3a435ff501ff6d2f2141e9bdc934eaab
FlowCommoniOS: bcdf81a5f30717e711af08a8c812eb045411ba94
GBDeviceInfo: ed0db16230d2fa280e1cbb39a5a7f60f6946aaec
@ -196,8 +204,8 @@ SPEC CHECKSUMS:
LoggerAPI: ad9c4a6f1e32f518fdb43a1347ac14d765ab5e3d
Logging: beeb016c9c80cf77042d62e83495816847ef108b
MatomoTracker: 24a846c9d3aa76933183fe9d47fd62c9efa863fb
MatrixKit: 7606227237cf58c1a1a2235547222c5d75b464c4
MatrixSDK: 9fa30f9ca2504c4251b99212dcf4ff569bbf45b1
MatrixKit: 740fee40187fe84099678c56b2f080d877dd7a65
MatrixSDK: 04a7f15b03b3def5af644444f3364b8272fb8efc
OLMKit: 2d73cd67d149b5c3e3a8eb8ecae93d0b429d8a02
ReadMoreTextView: 19147adf93abce6d7271e14031a00303fe28720d
Realm: ed860452717c8db8f4bf832b6807f7f2ce708839
@ -206,11 +214,11 @@ SPEC CHECKSUMS:
SwiftBase32: 9399c25a80666dc66b51e10076bf591e3bbb8f17
SwiftGen: 67860cc7c3cfc2ed25b9b74cfd55495fc89f9108
SwiftJWT: 88c412708f58c169d431d344c87bc79a87c830ae
SwiftLint: 0c645fdc6feed3e390c1701ab3cc669f88b42752
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52
SwiftyBeaver: 84069991dd5dca07d7069100985badaca7f0ce82
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
PODFILE CHECKSUM: 6e4ab90565384faccee0cb985abe05663c36f517
PODFILE CHECKSUM: c1f1d1137ebacb6c74706cb28d5c10f26d6fe655
COCOAPODS: 1.10.1

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="H1p-Uh-vWS">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="18122" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="H1p-Uh-vWS">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="18093"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
@ -356,22 +356,6 @@
</objects>
<point key="canvasLocation" x="1223" y="-3899"/>
</scene>
<!--Riot Navigation Controller-->
<scene sceneID="TbB-77-7oK">
<objects>
<navigationController id="qAW-wR-KyU" customClass="RiotNavigationController" sceneMemberID="viewController">
<navigationBar key="navigationBar" contentMode="scaleToFill" id="r5V-3P-3Lg">
<rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
<autoresizingMask key="autoresizingMask"/>
</navigationBar>
<connections>
<segue destination="mRq-hp-dod" kind="relationship" relationship="rootViewController" id="fqQ-aW-08c"/>
</connections>
</navigationController>
<placeholder placeholderIdentifier="IBFirstResponder" id="T7q-ez-UVO" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="3326" y="-2050"/>
</scene>
<!--Contact Details View Controller-->
<scene sceneID="grY-bt-CcD">
<objects>
@ -479,7 +463,6 @@
</userDefinedRuntimeAttributes>
</tabBarItem>
<connections>
<segue destination="qAW-wR-KyU" kind="presentation" identifier="presentDirectoryServerPicker" id="1mb-Wk-zpt"/>
<segue destination="WDS-Ip-RQ9" kind="presentation" identifier="presentStartChat" id="Tfl-tq-LQp"/>
</connections>
</viewController>
@ -560,25 +543,6 @@
</objects>
<point key="canvasLocation" x="374" y="449"/>
</scene>
<!--Directory Server Picker View Controller-->
<scene sceneID="t8d-GX-ntZ">
<objects>
<tableViewController storyboardIdentifier="DirectoryServerPickerViewControllerStoryboardId" id="mRq-hp-dod" customClass="DirectoryServerPickerViewController" sceneMemberID="viewController">
<tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" id="YbK-Rh-uRf">
<rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<connections>
<outlet property="dataSource" destination="mRq-hp-dod" id="71E-8v-wpk"/>
<outlet property="delegate" destination="mRq-hp-dod" id="0Nu-Wt-eJD"/>
</connections>
</tableView>
<navigationItem key="navigationItem" id="6vB-s9-qMc"/>
</tableViewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="Q9W-8f-BvC" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="4174" y="-2050"/>
</scene>
</scenes>
<inferredMetricsTieBreakers>
<segue reference="Tfl-tq-LQp"/>

View file

@ -19,5 +19,8 @@
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 765 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

View file

@ -0,0 +1,26 @@
{
"images" : [
{
"filename" : "voice_message_cancel_gradient.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_cancel_gradient@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_cancel_gradient@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "voice_message_lock_chevron.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_lock_chevron@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_lock_chevron@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "voice_message_lock_icon_locked.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_lock_icon_locked@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_lock_icon_locked@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 844 B

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "voice_message_lock_icon_unlocked.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_lock_icon_unlocked@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_lock_icon_unlocked@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View file

@ -0,0 +1,26 @@
{
"images" : [
{
"filename" : "voice_message_pause_button.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_pause_button@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_pause_button@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

View file

@ -0,0 +1,26 @@
{
"images" : [
{
"filename" : "voice_message_play_button.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_play_button@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_play_button@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 B

View file

@ -0,0 +1,26 @@
{
"images" : [
{
"filename" : "action_voice_message.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "action_voice_message@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "action_voice_message@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "voice_message_record_button_recording.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_record_button_recording@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_record_button_recording@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "voice_message_record_icon.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "voice_message_record_icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "voice_message_record_icon@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 576 B

View file

@ -106,7 +106,6 @@
// Room recents
"room_recents_directory_section" = "ДИРЕКТОРИЯ СЪС СТАИ";
"room_creation_invite_another_user" = "Търси потребител по ID, име, имейл";
"room_recents_directory_section_network" = "Мрежа";
"room_recents_favourites_section" = "ЛЮБИМИ";
"room_recents_people_section" = "ХОРА";
"room_recents_conversations_section" = "СТАИ";

View file

@ -106,7 +106,6 @@
"room_creation_invite_another_user" = "Cerca / convida per l'identificador d'usuari, nom o correu electrònic";
// Room recents
"room_recents_directory_section" = "Directori de Sales";
"room_recents_directory_section_network" = "Xarxa";
"room_recents_favourites_section" = "Favorits";
"room_recents_people_section" = "Contactes";
"room_recents_conversations_section" = "Sales";

View file

@ -0,0 +1 @@

View file

@ -4,11 +4,11 @@
"title_people" = "Lidé";
"title_rooms" = "Místnosti";
"title_groups" = "Komunity";
"warning" = "Varování!";
"warning" = "Varování";
// Actions
"view" = "Zobrazit zdroj";
"view" = "Zobrazit";
"next" = "Další";
"back" = "Pro zabezpečení se při odhlašování odstraní všechny šifrovací klíče typu end-to-end, a i po přihlašení bude historie šifrovaných kanálů nečitelná.\nZvolte export, chcete-li je zálohovat, než se odhlásíte.";
"back" = "Zpět";
"continue" = "Pokračovat";
"create" = "Vytvořit";
"start" = "Spustit";
@ -52,7 +52,7 @@
"auth_repeat_password_placeholder" = "Zopakovat heslo";
"auth_repeat_new_password_placeholder" = "Potvrďte své nové heslo";
"auth_home_server_placeholder" = "URL (např. https://matrix.org)";
"auth_identity_server_placeholder" = "URL (např. https://matrix.org)";
"auth_identity_server_placeholder" = "URL (např. https://vector.im)";
"auth_invalid_login_param" = "Nesprávné uživatelské jméno nebo heslo";
"auth_invalid_user_name" = "Uživatelské jméno může obsahovat pouze písmena, číslice, tečky, pomlčky a podtržítka";
"auth_invalid_password" = "Heslo je velmi krátké (min 6)";
@ -130,7 +130,7 @@
// Directory
"directory_cell_title" = "Procházet adresář";
"directory_cell_description" = "%tu místnosti";
"directory_search_results_title" = "Procházet výsledky výhledávání v adresáři";
"directory_search_results_title" = "Procházet výsledky v adresáři";
"directory_search_results" = "%tu výsledky nalezeny pro %@";
"directory_search_results_more_than" = ">%tu výsledky nalezeny pro %@";
"directory_searching_title" = "Vyhledávání v adresáři…";
@ -139,7 +139,7 @@
"contacts_address_book_section" = "LOKÁLNÍ KONTAKTY";
"contacts_address_book_matrix_users_toggle" = "Pouze Matrix uživatelé";
"contacts_address_book_no_contact" = "Žádné lokální kontakty";
"contacts_address_book_permission_denied" = "Nepovolil jste přístup aplikace Riot k místním kontaktům";
"contacts_address_book_permission_denied" = "Nepovolil jste přístup aplikace Element k místním kontaktům";
"contacts_user_directory_section" = "UŽIVATELSKÝ ADRESÁŘ";
"contacts_user_directory_offline_section" = "UŽIVATELSKÝ ADRESÁŘ (offline)";
// Chat participants
@ -162,8 +162,8 @@
"room_participants_ago" = "před";
"room_participants_action_section_admin_tools" = "Nástroje pro správce";
"room_participants_action_section_direct_chats" = "Přímé chaty";
"room_participants_action_section_devices" = "Zařízení";
"room_participants_action_section_other" = "Další";
"room_participants_action_section_devices" = "Relace";
"room_participants_action_section_other" = "Možnosti";
"room_participants_action_invite" = "Pozvat";
"room_participants_action_leave" = "Odejít z místnosti";
"room_participants_action_remove" = "Odebrat z této místnosti";
@ -178,7 +178,7 @@
"room_participants_action_start_video_call" = "Začít video hovor";
"room_participants_action_mention" = "Zmínka";
// Chat
"room_jump_to_first_unread" = "Přeskočit na první nepřečtenou zprávu";
"room_jump_to_first_unread" = "Přeskočit na nepřečtenou zprávu";
"room_new_message_notification" = "%d nová zpráva";
"room_new_messages_notification" = "%d nových zpráv";
"room_one_user_is_typing" = "%@ právě píše…";
@ -196,7 +196,7 @@
"room_delete_unsent_messages" = "Smazat neodeslané zprávy";
"room_event_action_copy" = "Kopírovat";
"room_event_action_quote" = "Citovat";
"room_event_action_redact" = "Redigovat";
"room_event_action_redact" = "Odstranit";
"room_event_action_more" = "Víc";
"room_event_action_share" = "Sdílet";
"room_event_action_permalink" = "Trvalý odkaz";
@ -211,12 +211,12 @@
"room_event_action_view_encryption" = "Informace o šifrování";
"room_event_failed_to_send" = "Odeslání se nezdařilo";
// Unknown devices
"unknown_devices_alert_title" = "V místnosti jsou neznámá zařízení";
"unknown_devices_alert_title" = "V místnosti jsou neznámé relace";
"unknown_devices_send_anyway" = "Přesto poslat";
"unknown_devices_call_anyway" = "Přesto zavolat";
"unknown_devices_answer_anyway" = "Přesto přijmout";
"unknown_devices_verify" = "Ověřit…";
"unknown_devices_title" = "Neznámá zařízení";
"unknown_devices_title" = "Neznámé relace";
// Room Title
"room_title_new_room" = "Nová místnost";
"room_participants_invite_another_user" = "Hledat / Pozvat podle uživatelského ID, jména nebo emailu";
@ -231,10 +231,117 @@
"settings_title" = "Nastavení";
"account_logout_all" = "Odhlásit všechny účty";
"settings_report_bug" = "Nahlásit chybu";
"settings_config_home_server" = "Domácího serveru je %@";
"settings_config_home_server" = "Domácí server je %@";
"settings_config_identity_server" = "Server identit je %@";
"settings_config_user_id" = "Přihlášen/a jako %@";
"auth_msisdn_validation_message" = "Odeslali jsme vám SMS aktivační kod. Prosím, zadejte jej níže.";
"auth_msisdn_validation_error" = "Nelze ověřit telefonní číslo.";
"auth_reset_password_success_message" = "Vaše heslo bylo úspěšně resetováno.\n\nByl jste právě odhlášen na všech vašich zařízeních a nebudete vánm nadále zasíláno oznámení. Pro znovu povolení zasílání oznámení, přihlašte se znovu na každém zařízení.";
"auth_reset_password_success_message" = "Vaše heslo bylo úspěšně resetováno.\n\nByl jste právě odhlášen na všech vašich relací a nebudete vánm nadále zasíláno oznámení. Pro znovu povolení zasílání oznámení, přihlašte se znovu na každém zařízení.";
"store_full_description" = "Element je novým typem komunikátoru a propojovací aplikace která:\n\n1. Dává vám kontrolu nad vaším soukromím\n2. Vás nechá komunikovat s kýmkoli v Matrix síti a dokonce mimo ni, díky integrace s aplikacemi jako je například Slack\n3. Vás chrání před reklamou, těžbou Vašich dat, nechráněnými přístupy nebo nezdokumentovanými fukncemi\n4. Zabezpečuje Vaši komunikaci pomocí koncového šifrování s distribuovaným ověřením ostatních\n\nElement se liší od ostatních komunikačních řešeních především tím, že je decentralizovaný a open-source\n\nElement vám umožňuje provozovat vlastní server anebo si vybrat nějakyý z veřejných, takže máte controlu nad vašimi konverzacemi a soukromím. Dává vám přístup do otevřené sítě, takže nejste odkázání jen ke komunikaci s ostatními uživateli Elementu. A je vysoce bezpečný.\n\nElement je toho všeho schopen díky svému operačnímu protokolu - Matrix, otevřeného standartu pro decentralizovanou komunikaci.\n\nElement vás nechává vybrat, kdo bude hostovat vaše konverzace. Přímo z aplikace si můžete vybrat několik rozdílných řešení:\n\n1. Účet zdarma na veřejném serveru matrix.org\n2. Vlastní hosting serveru na vlastním hardwaru\n3. Účet na přizpůsobeném serveru jednodýúchým přihlášením na hosting Element Matrix Services\n\nProč Element?\n\nVLASTNĚTE SVÁ DATA: Vy rozhodujete kde jsou vaše data a zprávy uchovávány. Svá data vlastníte a spravujete Vy, ne nějaká obří korporace, která o vás sbírá osobní data nebo poskytuje přístup dalším stranám.\n\nOTEVŘENÁ KOMUNIKACE A SPOLUPRÁCE: Máte možnost spojit se s kýmkoli v síti Matrix bez ohledu na jeho softwarové řešení, a dokonce se můžete připojit i na jiné komunikační protokoly, jako je Slack, IRC nebo XMPP (Jabber). Komunita podporuje i komunikátory jako Whatsapp, Telegram nebo iMessage.\n\nNEPROLOMITELNÉ ŠIFROVÁNÍ: Skutečné koncové šifrování (pouze přímí účastníci konverzace mají možnost rozšifrovat jejich zprávy) a pokročilé ověřování kontaktů.\n\nVŠESTRANNÉ KOMUNIKAČNÍ MOŽNOSTI: Textové zprávy, hlasové nebo videohovory, přenos souborů, sdílení obrazovky a mnoho dalších funkcí a možností pro implementaci. Vytvářejte místnosti a komunity a zůstaňte v kontaktu.\n\nKDEKOLI SE NACHÁZÍTE: Přístup k plně synchronizované historii konverzací máte kdekoli se nacházíte, ať už z aplikace anebo webového rozhraní na https://element.io/app.";
"user_verification_sessions_list_session_untrusted" = "Nedůvěryhodná";
"user_verification_sessions_list_session_trusted" = "Důvěryhodná";
"user_verification_sessions_list_table_title" = "Relace";
"user_verification_sessions_list_information" = "Zprávy s tímto uživatelem v této místnosti jsou šifrovány end-to-end a nemohou je číst třetí strany.";
"user_verification_sessions_list_user_trust_level_unknown_title" = "Není známo";
"user_verification_sessions_list_user_trust_level_warning_title" = "Varování";
// Sessions list
"user_verification_sessions_list_user_trust_level_trusted_title" = "Důvěryhodný";
"user_verification_start_additional_information" = "Abyste byli v bezpečí, dělejte to osobně nebo použijte jiný způsob komunikace.";
"user_verification_start_waiting_partner" = "Čekám na %@…";
"user_verification_start_information_part2" = " kontrolou jednorázového kódu na obou zařízeních.";
"user_verification_start_information_part1" = "Pro větší bezpečnost ověřit ";
// MARK: - User verification
// Start
"user_verification_start_verify_action" = "Spustit ověřování";
"key_verification_user_title" = "Ověřit je";
"room_participants_security_information_room_encrypted" = "Zprávy v této místnosti jsou šifrovány end-to-end.\n\nVaše zprávy jsou zabezpečeny zámky a jedinečnými klíči je můžete odemknout pouze vy a příjemce.";
"room_participants_security_information_room_not_encrypted" = "Zprávy v této místnosti nejsou šifrovány end-to-end.";
"room_participants_security_loading" = "Načítání…";
"room_participants_action_security_status_warning" = "Varování";
"room_participants_action_security_status_verify" = "Ověřit";
"room_participants_action_security_status_verified" = "Ověřeno";
"room_participants_action_section_security" = "Zabezpečení";
"room_participants_action_ban" = "Vyhodit z této místnosti";
"room_creation_error_invite_user_by_email_without_identity_server" = "Není nakonfigurován žádný server identity, takže nemůžete přidat účastníka pomocí e-mailu.";
"auth_softlogout_recover_encryption_keys" = "Přihlaste se a obnovte šifrovací klíče uložené výhradně v tomto zařízení. Potřebujete je ke čtení všech zabezpečených zpráv na jakémkoli zařízení.";
"auth_softlogout_reason" = "Váš správce domovského serveru (%1$@) vás odhlásil z vašeho účtu %2 @ (%3$@).";
"auth_softlogout_signed_out" = "Jste odhlášeni";
"auth_autodiscover_invalid_response" = "Neplatná odpověď na objevení domovského serveru";
"auth_accept_policies" = "Přečtěte si a přijměte zásady tohoto domovského serveru:";
"auth_add_email_and_phone_warning" = "Registrace pomocí e-mailu a telefonního čísla najednou ještě není podporována, dokud neexistuje rozhraní API. Zohledněno bude pouze telefonní číslo. Svůj e-mail můžete přidat do svého profilu v nastavení.";
"auth_reset_password_error_is_required" = "Není nakonfigurován žádný server identity: pro obnovení hesla přidejte jeden server z možností .";
"auth_forgot_password_error_no_configured_identity_server" = "Není nakonfigurován žádný server identity: pro obnovení hesla jeden přidejte .";
"settings_key_backup_button_delete" = "Smazat zálohu";
"settings_key_backup_button_restore" = "Obnovit ze zálohy";
"auth_login_single_sign_on" = "Přihlásit se";
// Accessibility
"accessibility_checkbox_label" = "zaškrtávací políčko";
"callbar_only_single_active_group" = "Klepnutím se připojíte ke skupinovému hovoru (%@)";
"callbar_return" = "Vrátit se";
"callbar_only_multiple_paused" = "%@ pozastavené hovory";
"callbar_only_single_paused" = "Pozastavený hovor";
"callbar_active_and_multiple_paused" = "1 aktivní hovor (%@) · %@ pozastavené hovory";
"callbar_active_and_single_paused" = "1 aktivní hovor (%@) · 1 pozastavený hovor";
// Call Bar
"callbar_only_single_active" = "Klepnutím se vrátíte k hovoru (%@)";
"less" = "Méně";
"more" = "Více";
"switch" = "Přepnout";
"joined" = "Připojil se";
"skip" = "Přeskočit";
"close" = "Zavřít";
"store_promotional_text" = "Aplikace pro chat a spolupráci chránící soukromí v otevřené síti. Žádný sběr dat, žádná zadní vrátka a žádný přístup třetích stran.";
// String for App Store
"store_short_description" = "Zabezpečený decentralizovaný chat/VoIP";
"e2e_key_backup_wrong_version_button_settings" = "Nastavení";
"side_menu_action_settings" = "Nastavení";
"room_details_photo" = "Obrázek místnosti";
"room_details_settings" = "Nastavení";
"room_details_integrations" = "Integrace";
"room_details_search" = "Vyhledat místnost";
"room_details_files" = "Nahrávání";
"room_details_people" = "Členové";
"room_details_title_for_dm" = "Podrobnosti";
"room_avatar_view_accessibility_hint" = "Změnit avatar místnosti";
"room_creation_appearance_picture" = "Obrázek chatu (volitelné)";
// Errors
"error_user_already_logged_in" = "Vypadá to, že se pokoušíte připojit k jinému domovskému serveru. Chcete se odhlásit?";
"social_login_button_title_sign_up" = "Zaregistrovat se pomocí %@";
"social_login_button_title_sign_in" = "Přihlásit se pomocí %@";
"social_login_button_title_continue" = "Pokračovat s %@";
"social_login_list_title_sign_up" = "nebo";
"social_login_list_title_sign_in" = "nebo";
// Social login
"social_login_list_title_continue" = "Pokračovat s";
"auth_softlogout_clear_data_sign_out" = "Odhlásit se";
"auth_softlogout_clear_data_sign_out_msg" = "Opravdu chcete vymazat všechny údaje aktuálně uložené v tomto zařízení? Chcete-li získat přístup k údajům a zprávám svého účtu, znovu se přihlaste.";
"auth_softlogout_clear_data_sign_out_title" = "Jste si jisti?";
"auth_softlogout_clear_data_button" = "Vymazat všechny údaje";
"auth_softlogout_clear_data_message_2" = "Vymažte, pokud jste s tímto zařízením skončili nebo se chcete přihlásit k jinému účtu.";
"auth_softlogout_clear_data_message_1" = "Varování: Vaše osobní údaje (včetně šifrovacích klíčů) jsou stále uloženy v tomto zařízení.";
"auth_softlogout_clear_data" = "Vymazat osobní údaje";
"auth_softlogout_sign_in" = "Přihlásit se";
"biometrics_setup_subtitle" = "Ušetřete si čas";
"biometrics_setup_enable_button_title_x" = "Povolit %@";
"biometrics_setup_title_x" = "Povolit %@";
"biometrics_settings_enable_x" = "Povolit %@";
"biometrics_mode_face_id" = "Face ID";
"biometrics_cant_unlocked_alert_title" = "Aplikaci nelze odemknout";
"biometrics_usage_reason" = "Pro přístup k vaší aplikaci je nutné ověření";
"biometrics_desetup_disable_button_title_x" = "Zakázat %@";
"biometrics_desetup_title_x" = "Zakázat %@";
"public_room_section_title" = "Veřejné místnosti (v %@):";
"homeserver_connection_lost" = "Nelze se připojit k domovskému serveru.";
"network_offline_prompt" = "Zdá se, že připojení k internetu je offline.";
"yesterday" = "Včera";
"today" = "Dnes";

View file

@ -130,7 +130,6 @@
"room_creation_error_invite_user_by_email_without_identity_server" = "Nid oes unrhyw weinydd adnabod wedi'i osod felly ni allwch ychwanegu cyfranogwr gydag e-bost.";
// Room recents
"room_recents_directory_section" = "CYFEIRIADUR YSTAFELLOEDD";
"room_recents_directory_section_network" = "Rhwydwaith";
"room_recents_favourites_section" = "FFEFRYNAU";
"room_recents_people_section" = "POBL";
"room_recents_conversations_section" = "YSTAFELLOEDD";

View file

@ -79,7 +79,6 @@
"room_creation_wait_for_creation" = "Es wird gerade schon ein Raum erstellt. Bitte warten.";
// Room recents
"room_recents_directory_section" = "RAUM VERZEICHNIS";
"room_recents_directory_section_network" = "Netzwerk";
"room_recents_favourites_section" = "FAVORITEN";
"room_recents_people_section" = "PERSONEN";
"room_recents_conversations_section" = "RÄUME";

View file

@ -17,7 +17,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "The camera is used to take photos and videos, make video calls.";
"NSPhotoLibraryUsageDescription" = "The photo library is used to send photos and videos.";
"NSMicrophoneUsageDescription" = "The microphone is used to take videos, make calls.";
"NSMicrophoneUsageDescription" = "Element needs to access your microphone to make and receive calls, take videos, and record voice messages.";
"NSContactsUsageDescription" = "To discover contacts already using Matrix, Element can send email addresses and phone numbers in your address book to your chosen Matrix identity server. Where supported, personal data is hashed before sending - please check your identity server's privacy policy for more details.";
"NSCalendarsUsageDescription" = "See your scheduled meetings in the app.";
"NSFaceIDUsageDescription" = "Face ID is used to access your app.";

View file

@ -182,7 +182,6 @@
// Room recents
"room_recents_directory_section" = "ROOM DIRECTORY";
"room_recents_directory_section_network" = "Network";
"room_recents_favourites_section" = "FAVOURITES";
"room_recents_people_section" = "PEOPLE";
"room_recents_conversations_section" = "ROOMS";
@ -534,6 +533,7 @@ Tap the + to start adding people.";
"settings_labs_create_conference_with_jitsi" = "Create conference calls with jitsi";
"settings_labs_message_reaction" = "React to messages with emoji";
"settings_labs_enable_ringing_for_group_calls" = "Ring for group calls";
"settings_labs_voice_messages" = "Voice messages";
"settings_version" = "Version %@";
"settings_olm_version" = "Olm Version %@";
@ -1681,3 +1681,9 @@ Tap the + to start adding people.";
"side_menu_action_help" = "Help";
"side_menu_action_feedback" = "Feedback";
"side_menu_app_version" = "Version %@";
// Mark: - Voice Messages
"voice_message_release_to_send" = "Hold to record, release to send";
"voice_message_remaining_recording_time" = "%@s left";
"voice_message_stop_locked_mode_recording" = "Tap on your recording to stop or listen";

View file

@ -244,7 +244,6 @@
"room_recents_server_notice_section" = "SISTEMAJ AVERTOJ";
"room_recents_low_priority_section" = "MALALTA PRIORITATO";
"room_recents_favourites_section" = "ELSTARIGITAJ";
"room_recents_directory_section_network" = "Reto";
// Room recents
"room_recents_directory_section" = "KATALOGO DE ĈAMBROJ";

View file

@ -144,7 +144,6 @@
"room_creation_invite_another_user" = "Buscar / invitar por ID de Usuario, Nombre o correo electrónico";
// Room recents
"room_recents_directory_section" = "DIRECTORIO DE SALAS";
"room_recents_directory_section_network" = "Red";
"room_recents_favourites_section" = "FAVORITOS";
"room_recents_people_section" = "PERSONAS";
"room_recents_conversations_section" = "SALAS";

View file

@ -1,7 +1,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "Kaameraga salvestatakse pilte ning videosid ja tehakse videokõnesid.";
"NSPhotoLibraryUsageDescription" = "Fotogaleriid kasutatakse fotode ja videote saatmiseks teistele kasutajatele.";
"NSMicrophoneUsageDescription" = "Mikrofoni kasutatakse videote salvestamisel ning kõnede tegemisel.";
"NSMicrophoneUsageDescription" = "Kõnede tegemiseks, videote ja häälsõnumite salvestamiseks vajab Element ligipääsu sinu seadme mikrofonile.";
"NSCalendarsUsageDescription" = "Vaata päevakavasse lisatud koosolekuid vastvast rakendusest.";
"NSContactsUsageDescription" = "Selleks, et leida Matrixi võrgu kasutajaid, võib Element saata sinu aadressiraamatus leiduvad e-posti aadressid ja telefoninumbrid sinu valitud Matrixi isikutuvastusserverile. Kui server seda toetab, siis andmed muudetakse enne saatmist räsideks - täpsema teabe leiad oma isikutuvastusserveri privaatsuspoliitikast.";
"NSFaceIDUsageDescription" = "Ligipääsuks sinu rakendusele on kasutusel Face ID.";

View file

@ -218,7 +218,6 @@
"auth_login_single_sign_on" = "Logi sisse";
// Room recents
"room_recents_directory_section" = "JUTUTUBADE LOEND";
"room_recents_directory_section_network" = "Võrk";
"room_recents_favourites_section" = "LEMMIKUD";
"room_recents_people_section" = "INIMESED";
"room_recents_conversations_section" = "JUTUTOAD";
@ -1097,7 +1096,7 @@
"deactivate_account_informations_part3" = "\n\nSinu konto kustutamine ";
"deactivate_account_informations_part4_emphasize" = "vaikimisi ei tähenda, et unustatakse ka sinu saadetud sõnumid. ";
"deactivate_account_informations_part5" = "Kui sa siiski soovid seda, siis palun tee märge alljärgnevasse kasti.\n\nMatrix'i sõnumite nähtavus on sarnane e-posti kirjadega. Sõnumite unustamine tegelikult tähendab seda, et sinu varemsaadetud sõnumeid ei jagata uute või veel registreerumata kasutajatega, kuid registeerunud kasutajad, kes juba on need sõnumid saanud, võivad neid ka jätkuvalt lugeda.";
"rerequest_keys_alert_message" = "Palun käivita Element mõnes muus seadmes, mis suudab neid sõnumeid dekrüptoda ja seega saata krüptovõtmeid siia sessiooni.";
"rerequest_keys_alert_message" = "Palun käivita Element mõnes muus seadmes, mis suudab neid sõnumeid dekrüptida ja seega saata krüptovõtmeid siia sessiooni.";
"settings_discovery_three_pids_management_information_part1" = "Halda missuguse e-posti aadressi ja telefoninumbri alusel teised kasutajad saavad sind kutsuda jututubadesse. Lisa või eemalda e-posti aadresse ja telefoninumbreid sellest loendist ";
"settings_discovery_three_pid_details_information_email" = "Halda selle e-posti aadressi eelistusi, mille alusel teised kasutajad saavad sind leida ja kutsuda jututubade liikmeks. E-posti aadresse lisada ja muuta saad kasutajakonto seadistustest.";
"settings_discovery_three_pid_details_title_phone_number" = "Halda telefoninumbrit";
@ -1362,3 +1361,10 @@
// Room Notification Settings
"room_notifs_settings_notify_me_for" = "Teavita mind";
"room_details_notifs" = "Teavitused";
"voice_message_stop_locked_mode_recording" = "Salvestuse peatamiseks ja taasesituseks vajuta lainekese nuppu";
"voice_message_remaining_recording_time" = "salvestusaega jäänud %@s";
// Mark: - Voice Messages
"voice_message_release_to_send" = "Salvestamiseks vajuta nuppu, saatmiseks lase nupp lahti";
"settings_labs_voice_messages" = "Häälsõnumid";

View file

@ -238,7 +238,6 @@
"room_creation_invite_another_user" = "Bilatu / gonbidatu erabiltzaile ID-a, izena edo e-maila erabiliz";
// Room recents
"room_recents_directory_section" = "GELEN DIREKTORIOA";
"room_recents_directory_section_network" = "Sarea";
"room_recents_favourites_section" = "GOGOKOAK";
"room_recents_invites_section" = "GONBIDAPENAK";
// People tab

View file

@ -97,7 +97,6 @@
"room_creation_invite_another_user" = "Rechercher/inviter par identifiant, nom ou e-mail";
// Room recents
"room_recents_directory_section" = "RÉPERTOIRE DES SALONS";
"room_recents_directory_section_network" = "Réseau";
"room_recents_favourites_section" = "FAVORIS";
"room_recents_people_section" = "PERSONNES";
"room_recents_conversations_section" = "SALONS";

View file

@ -1,7 +1,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "A kamera fényképek, videók készítéséhez és videóhívásokhoz lesz használva.";
"NSPhotoLibraryUsageDescription" = "A fénykép galéria fényképek és videók küldéséhez lesz használva.";
"NSMicrophoneUsageDescription" = "A mikrofon videók készítéséhez és hívásokhoz lesz használva.";
"NSMicrophoneUsageDescription" = "A hívás indításához és fogadásához, videó és hangüzenet felvételéhez az Elementnek hozzáférési engedélyre van szüksége a mikrofonhoz.";
"NSContactsUsageDescription" = "Az olyan ismerősök felderítéséhez akik már használják a Matrixot, Elementet el tudja küldeni a címjegyzékben található e-mail címeket és telefonszámokat az általad választott Matrix azonosítási szervernek. Ahol lehetséges a személyes adatok hash-elve lesznek - kérlek ellenőrizd az azonosítási szervered adatvédelmi szabályait.";
"NSCalendarsUsageDescription" = "Nézd meg a találkozóidat az alkalmazásban.";
"NSFaceIDUsageDescription" = "Arc felismerés használata az alkalmazás eléréséhez.";

View file

@ -108,7 +108,6 @@
"room_creation_invite_another_user" = "Keresés / meghívás felhasználói azonosítás, név vagy e-mail cím alapján";
// Room recents
"room_recents_directory_section" = "SZOBA KÖNYVTÁR";
"room_recents_directory_section_network" = "Hálózat";
"room_recents_favourites_section" = "KEDVENCEK";
"room_recents_people_section" = "EMBEREK";
"room_recents_conversations_section" = "SZOBÁK";
@ -1412,3 +1411,23 @@
"settings_ui_theme_picker_message_invert_colours" = "„Autó” az eszközöd „invertált színek” beállítását használja";
"room_recents_unknown_room_error_message" = "A szoba nem található. Győződj meg róla, hogy létezik";
"room_creation_dm_error" = "Nem lehet elkészíteni a közvetlen beszélgetést. Ellenőrizd a meghívni kívánt felhasználót és próbáld újra.";
"key_verification_verify_qr_code_scan_code_other_device_action" = "Beolvasás ezzel az eszközzel";
"room_notifs_settings_encrypted_room_notice" = "Megjegyzendő, hogy titkosított szobákban a megemlítésekre és kulcsszavakra való értesítés mobil eszközökön nem érhető el.";
"room_notifs_settings_account_settings" = "Fiók beállítások";
"room_notifs_settings_manage_notifications" = "Értesítések kezelése itt: %@";
"room_notifs_settings_cancel_action" = "Mégsem";
"room_notifs_settings_done_action" = "Kész";
"room_notifs_settings_none" = "Semmi";
"room_notifs_settings_mentions_and_keywords" = "Csak megemlítések és kulcsszavak";
"room_notifs_settings_all_messages" = "Minden üzenet";
// Room Notification Settings
"room_notifs_settings_notify_me_for" = "Értesítés ezért:";
"room_details_notifs" = "Értesítések";
"voice_message_stop_locked_mode_recording" = "Megállításhoz és visszajátszáshoz koppints a hullámhosszra";
"voice_message_remaining_recording_time" = "%@s távozott";
// Mark: - Voice Messages
"voice_message_release_to_send" = "Felvételhez tartsd nyomva, a küldéshez engedd el";
"settings_labs_voice_messages" = "Hang üzenetek";

View file

@ -63,7 +63,6 @@
"room_creation_appearance_name" = "Heiti";
"room_creation_privacy" = "Meðferð persónuupplýsinga";
"room_creation_make_private" = "Gera einka";
"room_recents_directory_section_network" = "Netkerfi";
"room_recents_favourites_section" = "Eftirlæti";
"room_recents_people_section" = "FÓLK";
"room_recents_conversations_section" = "SPJALLRÁSIR";

View file

@ -112,7 +112,6 @@
"room_creation_invite_another_user" = "Cerca / invita per ID utente, nome o email";
// Room recents
"room_recents_directory_section" = "ELENCO STANZE";
"room_recents_directory_section_network" = "Rete";
"room_recents_favourites_section" = "PREFERITI";
"room_recents_people_section" = "CHAT DIRETTE";
"room_recents_conversations_section" = "STANZE";

View file

@ -105,7 +105,6 @@
"room_creation_invite_another_user" = "ユーザID, 表示名, 電子メールで検索と招待";
// Room recents
"room_recents_directory_section" = "ルーム一覧";
"room_recents_directory_section_network" = "通信回線";
"room_recents_favourites_section" = "お気に入り";
"room_recents_people_section" = "対話";
"room_recents_conversations_section" = "ルーム";

View file

@ -383,7 +383,6 @@
"room_recents_no_conversation" = "Ulac tixxamin";
"room_recents_conversations_section" = "TIXXAMIN";
"room_recents_people_section" = "IMDANEN";
"room_recents_directory_section_network" = "Aẓeṭṭa";
"room_creation_make_private" = "Err-it d uslig";
"room_creation_privacy" = "Tabaḍnit";
"room_creation_appearance_name" = "Isem";

View file

@ -64,7 +64,6 @@
"room_creation_appearance" = "Utseende";
"room_creation_appearance_name" = "Navn";
"room_creation_privacy" = "Personvern";
"room_recents_directory_section_network" = "Nettverk";
"room_recents_create_empty_room" = "Opprett et rom";
"room_recents_join_room" = "Bli med i rommet";
"room_recents_join_room_title" = "Bli med i et rom";

View file

@ -112,7 +112,6 @@
"room_creation_invite_another_user" = "Zoeken/uitnodigen met gebruikers-ID, naam of e-mailadres";
// Room recents
"room_recents_directory_section" = "GESPREKSCATALOGUS";
"room_recents_directory_section_network" = "Netwerk";
"room_recents_favourites_section" = "FAVORIETEN";
"room_recents_people_section" = "PERSONEN";
"room_recents_conversations_section" = "GESPREKKEN";

View file

@ -86,7 +86,6 @@
"room_creation_appearance" = "Wygląd";
"room_creation_appearance_name" = "Nazwa";
"room_creation_privacy" = "Prywatność";
"room_recents_directory_section_network" = "Sieć";
"room_recents_favourites_section" = "ULUBIONE";
"room_recents_people_section" = "OSOBY";
"room_recents_conversations_section" = "POKOJE";

View file

@ -1,7 +1,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "A câmera é usada para tirar fotos e vídeos, fazer chamadas de vídeo.";
"NSPhotoLibraryUsageDescription" = "A biblioteca de fotos é usada para enviar fotos e vídeos.";
"NSMicrophoneUsageDescription" = "O microfone é usado para tirar vídeos, fazer chamadas.";
"NSMicrophoneUsageDescription" = "Element precisa acessar seu microfone para fazer e receber chamadas, tirar vídeos, e gravar mensagens de voz.";
"NSContactsUsageDescription" = "Para descobrir contatos já usando Matrix, Element pode enviar endereços de email e números de telefone em seu livro de endereços para seu servidor de identidade Matrix escolhido. Onde suportado, dados pessoais são hashados antes do envio - por favor cheque a política de privacidade de seu servidor de identidade para mais detalhes.";
"NSCalendarsUsageDescription" = "Ver suas reuniões agendadas no app.";
"NSFaceIDUsageDescription" = "Face ID é usada para acessar seu app.";

View file

@ -101,7 +101,6 @@
"room_creation_make_private" = "Fazer privado";
"room_creation_wait_for_creation" = "Uma sala já está sendo criada. Por favor espere.";
"room_creation_invite_another_user" = "Buscar / convidar por ID de usuária(o), Nome ou email";
"room_recents_directory_section_network" = "Rede";
"room_recents_favourites_section" = "FAVORITOS";
"room_recents_people_section" = "PESSOAS";
"room_recents_conversations_section" = "SALAS";
@ -1393,3 +1392,10 @@
// Room Notification Settings
"room_notifs_settings_notify_me_for" = "Notifique-me para";
"room_details_notifs" = "Notificações";
"voice_message_remaining_recording_time" = "%@s restando";
"voice_message_stop_locked_mode_recording" = "Toque no comprimento de onda para parar e dar playback";
// Mark: - Voice Messages
"voice_message_release_to_send" = "Segure para gravar, solte para enviar";
"settings_labs_voice_messages" = "Mensagens de voz";

View file

@ -98,7 +98,6 @@
"room_creation_invite_another_user" = "Поиск / приглашение по идентификатору пользователя, имени или адресу электронной почты";
// Room recents
"room_recents_directory_section" = "КАТАЛОГ КОМНАТ";
"room_recents_directory_section_network" = "Сеть";
"room_recents_favourites_section" = "ИЗБРАННЫЕ";
"room_recents_people_section" = "ЛЮДИ";
"room_recents_conversations_section" = "КОМНАТЫ";

View file

@ -84,7 +84,6 @@
"room_creation_make_private" = "Bëje private";
// Room recents
"room_recents_directory_section" = "DREJTORI DHOMASH";
"room_recents_directory_section_network" = "Rrjet";
"room_recents_people_section" = "PERSONA";
"room_recents_conversations_section" = "DHOMA";
"room_recents_no_conversation" = "Ska dhoma";

View file

@ -100,7 +100,6 @@
"room_creation_make_private" = "Gör privat";
"room_creation_wait_for_creation" = "Ett rum håller redan på att skapas. Vänligen vänta.";
"room_creation_invite_another_user" = "Sök / bjud in efter användar-ID, namn eller e-postadress";
"room_recents_directory_section_network" = "Nätverk";
"room_recents_favourites_section" = "FAVORITER";
"room_recents_people_section" = "PERSONER";
"room_recents_conversations_section" = "RUM";

View file

@ -1689,6 +1689,202 @@
THE SOFTWARE.
<br/><br/>
</li>
<li>
<b>DSWaveformImage</b> (<a href="https://github.com/dmrschmidt/DSWaveformImage">https://github.com/dmrschmidt/DSWaveformImage</a>)
<br/><br/>
The MIT License (MIT)
<br/><br/>
Copyright (c) 2013 Dennis Schmidt
<br/><br/>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
<br/><br/>
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
<br/><br/>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<br/><br/>
</li>
<li>
<b>ffmpeg-kit-ios-audio</b> (<a href="https://github.com/tanersener/ffmpeg-kit">https://github.com/tanersener/ffmpeg-kit</a>)
<br/><br/>
<pre>
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
</pre>
</li>
</ul>
</body>
</html>

View file

@ -1,7 +1,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "Камера використовується для знімків фото і відео, а також для відео-викликів.";
"NSPhotoLibraryUsageDescription" = "Фотографії використовуються для надсилання фото і відео.";
"NSMicrophoneUsageDescription" = "Мікрофон використовується для відео і викликів.";
"NSMicrophoneUsageDescription" = "Element потребує доступу до вашого мікрофона, щоб здійснювати та отримувати виклики, знімати відео та записувати голосові повідомлення.";
"NSContactsUsageDescription" = "Щоб показати, які з ваших контактів вже використовують Matrix, Element може надіслати адреси електронної пошти і номери телефонів з вашої адресної книги до вашого ідентифікаційного сервера Matrix. При наявності підтримки, перед надсиланням створюється хеш особистих даних. Для докладних відомостей ознайомтеся з політикою приватності свого ідентифікаційного сервера.";
"NSCalendarsUsageDescription" = "Переглядайте свої заплановані зустрічі в додатку.";
"NSFaceIDUsageDescription" = "Face ID використовується для доступу до вашого додатку.";

View file

@ -105,7 +105,6 @@
"room_creation_invite_another_user" = "Tìm / mời bằng ID người dùng, tên hoặc email";
// Room recents
"room_recents_directory_section" = "DANH MỤC PHÒNG";
"room_recents_directory_section_network" = "Mạng";
"room_recents_favourites_section" = "YÊU THÍCH";
"room_recents_people_section" = "DANH BẠ";
"room_recents_conversations_section" = "PHÒNG";

View file

@ -1,7 +1,7 @@
// Permissions usage explanations
"NSCameraUsageDescription" = "摄像头权限用于拍摄照片、录制视频或进行视频聊天。";
"NSPhotoLibraryUsageDescription" = "照片库访问权限用于发送图片与视频。";
"NSMicrophoneUsageDescription" = "麦克风权限用于录制视频或进行通话。";
"NSMicrophoneUsageDescription" = "Element 需要访问您的麦克风才能拨打和接听电话、拍摄视频和录制语音消息。";
"NSContactsUsageDescription" = "为了发现已在使用 Matrix 的联系人Element 可以把你地址簿里的邮箱地址和电话号码发送到你所选择的 Matrix 身份认证服务器。如果支持的话,个人数据在发送前会被哈希处理——请检查你的身份认证服务器的隐私政策以获取详细信息。";
"NSCalendarsUsageDescription" = "在此应用中查看你计划的会议。";
"NSFaceIDUsageDescription" = "Face ID 权限用于访问您的应用。";

View file

@ -96,7 +96,6 @@
"room_creation_invite_another_user" = "通过用户 ID、名称或电子邮件进行搜索/邀请";
// Room recents
"room_recents_directory_section" = "聊天室目录";
"room_recents_directory_section_network" = "网络";
"room_recents_favourites_section" = "收藏夹";
"room_recents_people_section" = "联系人";
"room_recents_conversations_section" = "聊天室";
@ -1427,3 +1426,23 @@
"settings_ui_theme_picker_message_invert_colours" = "“自动”使用您设备的“反转颜色”设置";
"room_recents_unknown_room_error_message" = "找不到这个房间。 确保它存在";
"room_creation_dm_error" = "我们无法创建您的 DM。 请检查您要邀请的用户,然后重试。";
"voice_message_stop_locked_mode_recording" = "轻按波长停止和回放消息";
"voice_message_remaining_recording_time" = "剩 %@s";
// Mark: - Voice Messages
"voice_message_release_to_send" = "按住录音,松开发送";
"key_verification_verify_qr_code_scan_code_other_device_action" = "用这部设备扫描";
"room_notifs_settings_encrypted_room_notice" = "请注意,移动设备上的加密聊天室不提供提及和关键字通知。";
"room_notifs_settings_account_settings" = "账户设置";
"room_notifs_settings_manage_notifications" = "你可以管理 %@ 中的消息";
"room_notifs_settings_cancel_action" = "取消";
"room_notifs_settings_done_action" = "完成";
"room_notifs_settings_none" = "无";
"room_notifs_settings_mentions_and_keywords" = "仅提及和关键词";
"room_notifs_settings_all_messages" = "所有消息";
// Room Notification Settings
"room_notifs_settings_notify_me_for" = "通知内容";
"room_details_notifs" = "通知";
"settings_labs_voice_messages" = "语音消息";

View file

@ -184,7 +184,6 @@
"room_creation_invite_another_user" = "透過使用者ID、名稱、電子郵件地址來搜尋/邀請";
// Room recents
"room_recents_directory_section" = "聊天室目錄";
"room_recents_directory_section_network" = "網路";
"room_recents_favourites_section" = "收藏夾";
"room_recents_people_section" = "聯絡人";
"room_recents_conversations_section" = "聊天室";

View file

@ -397,7 +397,7 @@ NSString *const kMXKRoomBubbleCellKeyVerificationIncomingRequestDeclinePressed =
}
// Move this view in front
[self.contentView bringSubviewToFront:self.bubbleOverlayContainer];
[self.bubbleOverlayContainer.superview bringSubviewToFront:self.bubbleOverlayContainer];
}
else
{

View file

@ -135,6 +135,15 @@ internal enum Asset {
internal static let videoCall = ImageAsset(name: "video_call")
internal static let voiceCallHangonIcon = ImageAsset(name: "voice_call_hangon_icon")
internal static let voiceCallHangupIcon = ImageAsset(name: "voice_call_hangup_icon")
internal static let voiceMessageCancelGradient = ImageAsset(name: "voice_message_cancel_gradient")
internal static let voiceMessageLockChevron = ImageAsset(name: "voice_message_lock_chevron")
internal static let voiceMessageLockIconLocked = ImageAsset(name: "voice_message_lock_icon_locked")
internal static let voiceMessageLockIconUnlocked = ImageAsset(name: "voice_message_lock_icon_unlocked")
internal static let voiceMessagePauseButton = ImageAsset(name: "voice_message_pause_button")
internal static let voiceMessagePlayButton = ImageAsset(name: "voice_message_play_button")
internal static let voiceMessageRecordButtonDefault = ImageAsset(name: "voice_message_record_button_default")
internal static let voiceMessageRecordButtonRecording = ImageAsset(name: "voice_message_record_button_recording")
internal static let voiceMessageRecordIcon = ImageAsset(name: "voice_message_record_icon")
internal static let addMemberFloatingAction = ImageAsset(name: "add_member_floating_action")
internal static let addParticipant = ImageAsset(name: "add_participant")
internal static let addParticipants = ImageAsset(name: "add_participants")

View file

@ -3358,10 +3358,6 @@ internal enum VectorL10n {
internal static var roomRecentsDirectorySection: String {
return VectorL10n.tr("Vector", "room_recents_directory_section")
}
/// Network
internal static var roomRecentsDirectorySectionNetwork: String {
return VectorL10n.tr("Vector", "room_recents_directory_section_network")
}
/// FAVOURITES
internal static var roomRecentsFavouritesSection: String {
return VectorL10n.tr("Vector", "room_recents_favourites_section")
@ -4378,6 +4374,10 @@ internal enum VectorL10n {
internal static var settingsLabsMessageReaction: String {
return VectorL10n.tr("Vector", "settings_labs_message_reaction")
}
/// Voice messages
internal static var settingsLabsVoiceMessages: String {
return VectorL10n.tr("Vector", "settings_labs_voice_messages")
}
/// Mark all messages as read
internal static var settingsMarkAllAsRead: String {
return VectorL10n.tr("Vector", "settings_mark_all_as_read")
@ -4882,6 +4882,18 @@ internal enum VectorL10n {
internal static var voice: String {
return VectorL10n.tr("Vector", "voice")
}
/// Hold to record, release to send
internal static var voiceMessageReleaseToSend: String {
return VectorL10n.tr("Vector", "voice_message_release_to_send")
}
/// %@s left
internal static func voiceMessageRemainingRecordingTime(_ p1: String) -> String {
return VectorL10n.tr("Vector", "voice_message_remaining_recording_time", p1)
}
/// Tap on your recording to stop or listen
internal static var voiceMessageStopLockedModeRecording: String {
return VectorL10n.tr("Vector", "voice_message_stop_locked_mode_recording")
}
/// Warning
internal static var warning: String {
return VectorL10n.tr("Vector", "warning")

View file

@ -52,6 +52,7 @@ final class RiotSettings: NSObject {
static let roomCreationScreenRoomIsPublic = "roomCreationScreenRoomIsPublic"
static let allowInviteExernalUsers = "allowInviteExernalUsers"
static let enableRingingForGroupCalls = "enableRingingForGroupCalls"
static let enableVoiceMessages = "enableVoiceMessages"
static let roomSettingsScreenShowLowPriorityOption = "roomSettingsScreenShowLowPriorityOption"
static let roomSettingsScreenShowDirectChatOption = "roomSettingsScreenShowDirectChatOption"
static let roomSettingsScreenAllowChangingAccessSettings = "roomSettingsScreenAllowChangingAccessSettings"
@ -93,6 +94,11 @@ final class RiotSettings: NSObject {
return userDefaults
}()
private override init() {
super.init()
defaults.register(defaults: [UserDefaultsKeys.enableVoiceMessages: BuildSettings.voiceMessagesEnabled])
}
// MARK: Servers
var homeserverUrlString: String {
@ -215,6 +221,14 @@ final class RiotSettings: NSObject {
}
}
var enableVoiceMessages: Bool {
get {
return defaults.bool(forKey: UserDefaultsKeys.enableVoiceMessages)
} set {
defaults.set(newValue, forKey: UserDefaultsKeys.enableVoiceMessages)
}
}
// MARK: Calls
/// Indicate if `allowStunServerFallback` settings has been set once.

View file

@ -1854,16 +1854,6 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
[account addObserver:self forKeyPath:@"enableInAppNotifications" options:0 context:nil];
}
// Load the local contacts on first account creation.
if ([MXKAccountManager sharedManager].accounts.count == 1)
{
dispatch_async(dispatch_get_main_queue(), ^{
[self refreshLocalContacts];
});
}
[self.delegate legacyAppDelegate:self didAddAccount:account];
}];
@ -1976,14 +1966,6 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
// during this blocking task.
dispatch_after(dispatch_walltime(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
[[MXKContactManager sharedManager] addMatrixSession:mxSession];
// Load the local contacts on first account
if ([MXKAccountManager sharedManager].accounts.count == 1)
{
dispatch_async(dispatch_get_main_queue(), ^{
[self refreshLocalContacts];
});
}
});
// Register the session to the widgets manager
@ -2939,54 +2921,6 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
}];
}
- (void)refreshLocalContacts
{
if (!BuildSettings.allowLocalContactsAccess)
{
return;
}
// Do not scan local contacts in background if the user has not decided yet about using
// an identity server
BOOL doRefreshLocalContacts = NO;
for (MXSession *session in mxSessionArray)
{
if (session.hasAccountDataIdentityServerValue)
{
doRefreshLocalContacts = YES;
break;
}
}
// Check whether the application is allowed to access the local contacts.
if (doRefreshLocalContacts
&& [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts] == CNAuthorizationStatusAuthorized)
{
// Check the user permission for syncing local contacts. This permission was handled independently on previous application version.
if (![MXKAppSettings standardAppSettings].syncLocalContacts)
{
// Check whether it was not requested yet.
if (![MXKAppSettings standardAppSettings].syncLocalContactsPermissionRequested)
{
[MXKAppSettings standardAppSettings].syncLocalContactsPermissionRequested = YES;
[MXKContactManager requestUserConfirmationForLocalContactsSyncInViewController:self.presentedViewController completionHandler:^(BOOL granted) {
if (granted)
{
// Allow local contacts sync in order to discover matrix users.
[MXKAppSettings standardAppSettings].syncLocalContacts = YES;
}
}];
}
}
// Refresh the local contacts list.
[[MXKContactManager sharedManager] refreshLocalContacts];
}
}
#pragma mark - Matrix Groups handling
- (void)showGroup:(MXGroup*)group withMatrixSession:(MXSession*)mxSession
@ -4202,18 +4136,16 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
[[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
// Migrates old UserDefaults values if showDecryptedContentInNotifications hasn't been set
if (!RiotSettings.shared.isUserDefaultsMigrated)
{
[RiotSettings.shared migrate];
}
// Now use RiotSettings and NSUserDefaults to store `showDecryptedContentInNotifications` setting option
// Migrate this information from main MXKAccount to RiotSettings, if value is not in UserDefaults
// Show encrypted message notification content by default.
if (!RiotSettings.shared.isShowDecryptedContentInNotificationsHasBeenSetOnce)
{
MXKAccount *currentAccount = [MXKAccountManager sharedManager].activeAccounts.firstObject;
RiotSettings.shared.showDecryptedContentInNotifications = currentAccount.showDecryptedContentInNotifications;
RiotSettings.shared.showDecryptedContentInNotifications = BuildSettings.decryptNotificationsByDefault;
}
}

View file

@ -354,8 +354,6 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0;
{
[_keyboardAvoider stopAvoiding];
[self.authenticationActivityIndicator removeObserver:self forKeyPath:@"hidden"];
[super viewDidDisappear:animated];
}
@ -385,6 +383,8 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0;
universalLinkDidChangeNotificationObserver = nil;
}
[self.authenticationActivityIndicator removeObserver:self forKeyPath:@"hidden"];
autoDiscovery = nil;
_keyVerificationCoordinatorBridgePresenter = nil;
_keyboardAvoider = nil;

View file

@ -19,7 +19,6 @@
#import "RecentCellData.h"
#import "SectionHeaderView.h"
#import "DirectorySectionHeaderContainerView.h"
#import "ThemeService.h"
@ -37,7 +36,6 @@
#define RECENTSDATASOURCE_SECTION_PEOPLE 0x40
#define RECENTSDATASOURCE_DEFAULT_SECTION_HEADER_HEIGHT 30.0
#define RECENTSDATASOURCE_DIRECTORY_SECTION_HEADER_HEIGHT 65.0
NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSourceTapOnDirectoryServerChange";
@ -48,10 +46,6 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
NSInteger shrinkedSectionsBitMask;
DirectorySectionHeaderContainerView *directorySectionContainer;
UILabel *networkLabel;
UILabel *directoryServerLabel;
NSMutableDictionary<NSString*, id> *roomTagsListenerByUserId;
// Timer to not refresh publicRoomsDirectoryDataSource on every keystroke.
@ -77,17 +71,9 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
processingQueue = dispatch_queue_create("RecentsDataSource", DISPATCH_QUEUE_SERIAL);
_crossSigningBannerDisplay = CrossSigningBannerDisplayNone;
crossSigningBannerSection = -1;
_secureBackupBannerDisplay = SecureBackupBannerDisplayNone;
secureBackupBannerSection = -1;
directorySection = -1;
invitesSection = -1;
favoritesSection = -1;
peopleSection = -1;
conversationSection = -1;
lowPrioritySection = -1;
serverNoticeSection = -1;
[self resetSectionIndexes];
_areSectionsShrinkable = NO;
shrinkedSectionsBitMask = 0;
@ -102,6 +88,19 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
return self;
}
- (void)resetSectionIndexes
{
crossSigningBannerSection = -1;
secureBackupBannerSection = -1;
directorySection = -1;
invitesSection = -1;
favoritesSection = -1;
peopleSection = -1;
conversationSection = -1;
lowPrioritySection = -1;
serverNoticeSection = -1;
}
#pragma mark - Properties
@ -451,7 +450,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
// Check whether all data sources are ready before rendering recents
if (self.state == MXKDataSourceStateReady)
{
crossSigningBannerSection = secureBackupBannerSection = directorySection = favoritesSection = peopleSection = conversationSection = lowPrioritySection = invitesSection = serverNoticeSection = -1;
[self resetSectionIndexes];
if (self.crossSigningBannerDisplay != CrossSigningBannerDisplayNone)
{
@ -483,13 +482,6 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
conversationSection = sectionsCount++;
}
if (_recentsDataSourceMode == RecentsDataSourceModeRooms
&& BuildSettings.publicRoomsShowDirectory)
{
// Add the directory section after "ROOMS"
directorySection = sectionsCount++;
}
if (self.lowPriorityCellDataArray.count > 0)
{
lowPrioritySection = sectionsCount++;
@ -572,12 +564,6 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
{
return 0.0;
}
else if (section == directorySection
&& !(shrinkedSectionsBitMask & RECENTSDATASOURCE_SECTION_DIRECTORY)
&& BuildSettings.publicRoomsAllowServerChange)
{
return RECENTSDATASOURCE_DIRECTORY_SECTION_HEADER_HEIGHT;
}
return RECENTSDATASOURCE_DEFAULT_SECTION_HEADER_HEIGHT;
}
@ -823,57 +809,6 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
[sectionHeader addSubview:headerLabel];
sectionHeader.headerLabel = headerLabel;
if (section == directorySection
&& _recentsDataSourceMode == RecentsDataSourceModeRooms
&& !(shrinkedSectionsBitMask & RECENTSDATASOURCE_SECTION_DIRECTORY)
&& BuildSettings.publicRoomsAllowServerChange)
{
if (!directorySectionContainer)
{
directorySectionContainer = [[DirectorySectionHeaderContainerView alloc] initWithFrame:CGRectZero];
directorySectionContainer.backgroundColor = [UIColor clearColor];
// Add the "Network" label at the left
networkLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
networkLabel.font = [UIFont systemFontOfSize:16.0];
networkLabel.text = NSLocalizedStringFromTable(@"room_recents_directory_section_network", @"Vector", nil);
[directorySectionContainer addSubview:networkLabel];
directorySectionContainer.networkLabel = networkLabel;
// Add label for selected directory server
directoryServerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 30)];
directoryServerLabel.font = [UIFont systemFontOfSize:16.0];
directoryServerLabel.textAlignment = NSTextAlignmentRight;
[directorySectionContainer addSubview:directoryServerLabel];
directorySectionContainer.directoryServerLabel = directoryServerLabel;
// Chevron
UIImageView *chevronImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 6, 12)];
chevronImageView.contentMode = UIViewContentModeScaleAspectFit;
chevronImageView.image = [UIImage imageNamed:@"disclosure_icon"];
chevronImageView.tintColor = ThemeService.shared.theme.textSecondaryColor;
[directorySectionContainer addSubview:chevronImageView];
directorySectionContainer.disclosureView = chevronImageView;
// Set a tap listener on all the container
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onDirectoryServerPickerTap:)];
[tapGesture setNumberOfTouchesRequired:1];
[tapGesture setNumberOfTapsRequired:1];
[directorySectionContainer addGestureRecognizer:tapGesture];
}
// Apply the current UI theme.
networkLabel.textColor = ThemeService.shared.theme.textPrimaryColor;
directoryServerLabel.textColor = ThemeService.shared.theme.textSecondaryColor;
// Set the current directory server name
directoryServerLabel.text = _publicRoomsDirectoryDataSource.directoryServerDisplayname;
// Add the check box container
[sectionHeader addSubview:directorySectionContainer];
sectionHeader.bottomView = directorySectionContainer;
}
return sectionHeader;
}
@ -1189,10 +1124,8 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
#pragma mark - MXKDataSourceDelegate
- (void)refreshRoomsSection:(void (^)(void))onComplete;
- (void)refreshRoomsSection:(void (^)(void))onComplete
{
secureBackupBannerSection = directorySection = favoritesSection = peopleSection = conversationSection = lowPrioritySection = serverNoticeSection = invitesSection = -1;
if (displayedRecentsDataSourceArray.count > 0)
{
// FIXME manage multi accounts

View file

@ -174,6 +174,15 @@
[self refreshContactsTable];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
// Load the local contacts for display.
// In viewDidAppear as it may trigger a request for contacts access.
[self refreshLocalContacts];
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
@ -212,6 +221,54 @@
}
}
- (void)refreshLocalContacts
{
if (!BuildSettings.allowLocalContactsAccess)
{
return;
}
// Do not scan local contacts in background if the user has not decided yet about using
// an identity server
BOOL doRefreshLocalContacts = NO;
for (MXSession *session in self.mxSessions)
{
if (session.hasAccountDataIdentityServerValue)
{
doRefreshLocalContacts = YES;
break;
}
}
// Check whether the application is allowed to access the local contacts.
if (doRefreshLocalContacts
&& [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts] == CNAuthorizationStatusAuthorized)
{
// Check the user permission for syncing local contacts. This permission was handled independently on previous application version.
if (![MXKAppSettings standardAppSettings].syncLocalContacts)
{
// Check whether it was not requested yet.
if (![MXKAppSettings standardAppSettings].syncLocalContactsPermissionRequested)
{
[MXKAppSettings standardAppSettings].syncLocalContactsPermissionRequested = YES;
[MXKContactManager requestUserConfirmationForLocalContactsSyncInViewController:self completionHandler:^(BOOL granted) {
if (granted)
{
// Allow local contacts sync in order to discover matrix users.
[MXKAppSettings standardAppSettings].syncLocalContacts = YES;
}
}];
}
}
// Refresh the local contacts list.
[[MXKContactManager sharedManager] refreshLocalContacts];
}
}
- (void)refreshContactsTable
{
[self.contactsTableView reloadData];

View file

@ -112,6 +112,9 @@
case MXKAttachmentTypeAudio:
image = [UIImage imageNamed:@"file_music_icon"];
break;
case MXKAttachmentTypeVoiceMessage:
image = [UIImage imageNamed:@"file_music_icon"];
break;
case MXKAttachmentTypeVideo:
image = [UIImage imageNamed:@"file_video_icon"];
break;

View file

@ -20,7 +20,7 @@
/**
'PeopleViewController' instance is used to display/filter the direct rooms and a list of contacts.
*/
@interface PeopleViewController : RecentsViewController <UITableViewDataSource, MXKDataSourceDelegate>
@interface PeopleViewController : RecentsViewController
+ (instancetype)instantiate;

Some files were not shown because too many files have changed in this diff Show more