diff --git a/.eslintignore.errorfiles b/.eslintignore.errorfiles
index 42818244b3..430546d281 100644
--- a/.eslintignore.errorfiles
+++ b/.eslintignore.errorfiles
@@ -2,9 +2,7 @@
src/autocomplete/AutocompleteProvider.js
src/autocomplete/Autocompleter.js
-src/autocomplete/EmojiProvider.js
src/autocomplete/UserProvider.js
-src/CallHandler.js
src/component-index.js
src/components/structures/BottomLeftMenu.js
src/components/structures/CompatibilityPage.js
@@ -13,27 +11,22 @@ src/components/structures/HomePage.js
src/components/structures/LeftPanel.js
src/components/structures/LoggedInView.js
src/components/structures/login/ForgotPassword.js
-src/components/structures/login/Login.js
-src/components/structures/login/Registration.js
src/components/structures/LoginBox.js
src/components/structures/MessagePanel.js
src/components/structures/NotificationPanel.js
src/components/structures/RoomDirectory.js
src/components/structures/RoomStatusBar.js
-src/components/structures/RoomSubList.js
src/components/structures/RoomView.js
src/components/structures/ScrollPanel.js
src/components/structures/SearchBox.js
src/components/structures/TimelinePanel.js
src/components/structures/UploadBar.js
+src/components/structures/UserSettings.js
src/components/structures/ViewSource.js
src/components/views/avatars/BaseAvatar.js
-src/components/views/avatars/GroupAvatar.js
src/components/views/avatars/MemberAvatar.js
src/components/views/create_room/RoomAlias.js
-src/components/views/dialogs/BugReportDialog.js
src/components/views/dialogs/ChangelogDialog.js
-src/components/views/dialogs/ChatCreateOrReuseDialog.js
src/components/views/dialogs/DeactivateAccountDialog.js
src/components/views/dialogs/SetPasswordDialog.js
src/components/views/dialogs/UnknownDeviceDialog.js
@@ -41,12 +34,12 @@ src/components/views/directory/NetworkDropdown.js
src/components/views/elements/AddressSelector.js
src/components/views/elements/DeviceVerifyButtons.js
src/components/views/elements/DirectorySearchBox.js
-src/components/views/elements/EditableText.js
src/components/views/elements/ImageView.js
src/components/views/elements/InlineSpinner.js
src/components/views/elements/MemberEventListSummary.js
src/components/views/elements/Spinner.js
src/components/views/elements/TintableSvg.js
+src/components/views/elements/UserInfo.js
src/components/views/elements/UserSelector.js
src/components/views/globals/MatrixToolbar.js
src/components/views/globals/NewVersionBar.js
@@ -65,7 +58,6 @@ src/components/views/room_settings/UrlPreviewSettings.js
src/components/views/rooms/Autocomplete.js
src/components/views/rooms/AuxPanel.js
src/components/views/rooms/EntityTile.js
-src/components/views/rooms/EventTile.js
src/components/views/rooms/LinkPreviewWidget.js
src/components/views/rooms/MemberDeviceInfo.js
src/components/views/rooms/MemberInfo.js
@@ -73,12 +65,11 @@ src/components/views/rooms/MemberList.js
src/components/views/rooms/MemberTile.js
src/components/views/rooms/MessageComposer.js
src/components/views/rooms/MessageComposerInput.js
+src/components/views/rooms/PinnedEventTile.js
src/components/views/rooms/RoomDropTarget.js
src/components/views/rooms/RoomList.js
src/components/views/rooms/RoomPreviewBar.js
src/components/views/rooms/RoomSettings.js
-src/components/views/rooms/RoomTile.js
-src/components/views/rooms/RoomTooltip.js
src/components/views/rooms/SearchableEntityList.js
src/components/views/rooms/SearchBar.js
src/components/views/rooms/SearchResultTile.js
@@ -86,12 +77,12 @@ src/components/views/rooms/TopUnreadMessagesBar.js
src/components/views/rooms/UserTile.js
src/components/views/settings/AddPhoneNumber.js
src/components/views/settings/ChangeAvatar.js
-src/components/views/settings/ChangeDisplayName.js
src/components/views/settings/ChangePassword.js
src/components/views/settings/DevicesPanel.js
src/components/views/settings/IntegrationsManager.js
src/components/views/settings/Notifications.js
src/ContentMessages.js
+src/GroupAddressPicker.js
src/HtmlUtils.js
src/ImageUtils.js
src/languageHandler.js
@@ -135,6 +126,7 @@ test/components/structures/TimelinePanel-test.js
test/components/views/dialogs/InteractiveAuthDialog-test.js
test/components/views/login/RegistrationForm-test.js
test/components/views/rooms/MessageComposerInput-test.js
+test/components/views/rooms/RoomSettings-test.js
test/mock-clock.js
test/notifications/ContentRules-test.js
test/notifications/PushRuleVectorState-test.js
diff --git a/.eslintrc.js b/.eslintrc.js
index bf423a1ad8..62d24ea707 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -95,6 +95,7 @@ module.exports = {
"new-cap": ["warn"],
"key-spacing": ["warn"],
"prefer-const": ["warn"],
+ "arrow-parens": "off",
// crashes currently: https://github.com/eslint/eslint/issues/6274
"generator-star-spacing": "off",
diff --git a/.gitignore b/.gitignore
index f828c37393..6acf1b565a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,6 @@ npm-debug.log
/src/component-index.js
.DS_Store
+
+# https://github.com/vector-im/riot-web/issues/7083
+package-lock.json
diff --git a/.travis-test-riot.sh b/.travis-test-riot.sh
index eeba4d0b7e..876ce207f3 100755
--- a/.travis-test-riot.sh
+++ b/.travis-test-riot.sh
@@ -10,7 +10,7 @@ RIOT_WEB_DIR=riot-web
REACT_SDK_DIR=`pwd`
scripts/fetchdep.sh vector-im riot-web
-cd "$RIOT_WEB_DIR"
+pushd "$RIOT_WEB_DIR"
mkdir node_modules
npm install
@@ -23,4 +23,16 @@ ln -s "$REACT_SDK_DIR/node_modules/matrix-js-sdk" node_modules/matrix-js-sdk
rm -r node_modules/matrix-react-sdk
ln -s "$REACT_SDK_DIR" node_modules/matrix-react-sdk
+npm run build
npm run test
+popd
+
+# run end to end tests
+git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch master
+pushd matrix-react-end-to-end-tests
+ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
+# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
+# CHROME_PATH=$(which google-chrome-stable) ./run.sh
+./install.sh
+./run.sh
+popd
diff --git a/.travis.yml b/.travis.yml
index ec07243a28..0def6d50f7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,5 +15,7 @@ addons:
chrome: stable
install:
- npm install
+# install synapse prerequisites for end to end tests
+ - sudo apt-get install build-essential python2.7-dev libffi-dev python-pip python-setuptools sqlite3 libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
script:
./scripts/travis.sh
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b161a9d908..f668ca3f97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,462 @@
+Changes in [0.13.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.2) (2018-08-23)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.13.1...v0.13.2)
+
+ * Don't crash if the value of a room tag is null
+ [\#2135](https://github.com/matrix-org/matrix-react-sdk/pull/2135)
+
+Changes in [0.13.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.1) (2018-08-20)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.13.1-rc.1...v0.13.1)
+
+ * No changes since rc.1
+
+Changes in [0.13.1-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.1-rc.1) (2018-08-16)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.13.0...v0.13.1-rc.1)
+
+ * Update from Weblate.
+ [\#2121](https://github.com/matrix-org/matrix-react-sdk/pull/2121)
+ * Shift to M_RESOURCE_LIMIT_EXCEEDED errors
+ [\#2120](https://github.com/matrix-org/matrix-react-sdk/pull/2120)
+ * Fix RoomSettings test
+ [\#2119](https://github.com/matrix-org/matrix-react-sdk/pull/2119)
+ * Show room version number in room settings
+ [\#2117](https://github.com/matrix-org/matrix-react-sdk/pull/2117)
+ * Warning bar for MAU limit hit
+ [\#2114](https://github.com/matrix-org/matrix-react-sdk/pull/2114)
+ * Recognise server notices room(s)
+ [\#2112](https://github.com/matrix-org/matrix-react-sdk/pull/2112)
+ * Update room tags behaviour to match spec more
+ [\#2111](https://github.com/matrix-org/matrix-react-sdk/pull/2111)
+ * while logging out ignore `Session.logged_out` as it is intentional
+ [\#2058](https://github.com/matrix-org/matrix-react-sdk/pull/2058)
+ * Don't show 'connection lost' bar on MAU error
+ [\#2110](https://github.com/matrix-org/matrix-react-sdk/pull/2110)
+ * Support MAU error on sync
+ [\#2108](https://github.com/matrix-org/matrix-react-sdk/pull/2108)
+ * Support active user limit on message send
+ [\#2106](https://github.com/matrix-org/matrix-react-sdk/pull/2106)
+ * Run end to end tests as part of Travis build
+ [\#2091](https://github.com/matrix-org/matrix-react-sdk/pull/2091)
+ * Remove package-lock.json for now
+ [\#2097](https://github.com/matrix-org/matrix-react-sdk/pull/2097)
+ * Support montly active user limit error on /login
+ [\#2103](https://github.com/matrix-org/matrix-react-sdk/pull/2103)
+ * Unpin sanitize-html
+ [\#2105](https://github.com/matrix-org/matrix-react-sdk/pull/2105)
+ * Pin sanitize-html to 0.18.2
+ [\#2101](https://github.com/matrix-org/matrix-react-sdk/pull/2101)
+ * Make clicking on side panels close settings (mk 3)
+ [\#2096](https://github.com/matrix-org/matrix-react-sdk/pull/2096)
+ * Fix persistent element location not updating
+ [\#2092](https://github.com/matrix-org/matrix-react-sdk/pull/2092)
+ * fix Devtools input autofocus && state traversal when len === 1 && key=""
+ [\#2090](https://github.com/matrix-org/matrix-react-sdk/pull/2090)
+ * allow autocompleting Emoji by common aliases, e.g :+1: to :thumbsup:
+ [\#2085](https://github.com/matrix-org/matrix-react-sdk/pull/2085)
+
+Changes in [0.13.0](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.0) (2018-07-30)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.13.0-rc.2...v0.13.0)
+
+ * Fix composer bug where cursor position would change when Riot regained focus
+ [\#2093](https://github.com/matrix-org/matrix-react-sdk/pull/2093)
+ * Fix persistend element location not updating
+ [\#2094](https://github.com/matrix-org/matrix-react-sdk/pull/2094)
+ * Slate Fixes 42?
+ [\#2089](https://github.com/matrix-org/matrix-react-sdk/pull/2089)
+
+Changes in [0.13.0-rc.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.0-rc.2) (2018-07-24)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.13.0-rc.1...v0.13.0-rc.2)
+
+ * Take jitsi conf calling out of labs
+ [\#2087](https://github.com/matrix-org/matrix-react-sdk/pull/2087)
+
+Changes in [0.13.0-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.13.0-rc.1) (2018-07-24)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.9...v0.13.0-rc.1)
+
+ * Update from Weblate.
+ [\#2086](https://github.com/matrix-org/matrix-react-sdk/pull/2086)
+ * Moar Slate Fixes
+ [\#2082](https://github.com/matrix-org/matrix-react-sdk/pull/2082)
+ * Destroy the widget when its permission is revoked
+ [\#2081](https://github.com/matrix-org/matrix-react-sdk/pull/2081)
+ * Make ActiveWidgetStore clear persistent widgets
+ [\#2084](https://github.com/matrix-org/matrix-react-sdk/pull/2084)
+ * CreateRoomDialog is rendered before getting the config default_federate
+ [\#2078](https://github.com/matrix-org/matrix-react-sdk/pull/2078)
+ * Slate Fixes
+ [\#2076](https://github.com/matrix-org/matrix-react-sdk/pull/2076)
+ * FIX: Don't error on rooms the user has left already
+ [\#2077](https://github.com/matrix-org/matrix-react-sdk/pull/2077)
+ * Fix persistent apps being the wrong size
+ [\#2080](https://github.com/matrix-org/matrix-react-sdk/pull/2080)
+ * Fix widgets resetting when going to the top-left
+ [\#2079](https://github.com/matrix-org/matrix-react-sdk/pull/2079)
+ * Jitsi: Use integrations URL from config
+ [\#2062](https://github.com/matrix-org/matrix-react-sdk/pull/2062)
+ * Allow jitsi in e2e rooms
+ [\#2075](https://github.com/matrix-org/matrix-react-sdk/pull/2075)
+ * Fix border around persisted widgets
+ [\#2071](https://github.com/matrix-org/matrix-react-sdk/pull/2071)
+ * Fix e2e icons floating above jitsi
+ [\#2073](https://github.com/matrix-org/matrix-react-sdk/pull/2073)
+ * hide some commands after space as they have special semantics
+ [\#2074](https://github.com/matrix-org/matrix-react-sdk/pull/2074)
+ * Even More Slate Fixes :D
+ [\#2070](https://github.com/matrix-org/matrix-react-sdk/pull/2070)
+ * Improve UX for Jitsi by adding local echo for widgets
+ [\#2035](https://github.com/matrix-org/matrix-react-sdk/pull/2035)
+ * Jitsi: Check integrations server before call
+ [\#2063](https://github.com/matrix-org/matrix-react-sdk/pull/2063)
+ * Jitsi: Error message on no permission
+ [\#2061](https://github.com/matrix-org/matrix-react-sdk/pull/2061)
+ * Fix read receipts on top of Jitsi
+ [\#2065](https://github.com/matrix-org/matrix-react-sdk/pull/2065)
+ * Moar Slate Fixes
+ [\#2069](https://github.com/matrix-org/matrix-react-sdk/pull/2069)
+ * fix 2nd typo in one PR :(
+ [\#2068](https://github.com/matrix-org/matrix-react-sdk/pull/2068)
+ * check if has some completions, not if >=0
+ [\#2067](https://github.com/matrix-org/matrix-react-sdk/pull/2067)
+ * Slate fixes
+ [\#2066](https://github.com/matrix-org/matrix-react-sdk/pull/2066)
+ * Implement always-on-screen capability for widgets
+ [\#2056](https://github.com/matrix-org/matrix-react-sdk/pull/2056)
+ * simplify MessageComposerStore and improve its performance
+ [\#2064](https://github.com/matrix-org/matrix-react-sdk/pull/2064)
+ * Replace Draft with Slate
+ [\#1890](https://github.com/matrix-org/matrix-react-sdk/pull/1890)
+ * Fix not stopping to peek when navigating away from peeked room
+ [\#2055](https://github.com/matrix-org/matrix-react-sdk/pull/2055)
+ * T3chguy/slate cont2
+ [\#2049](https://github.com/matrix-org/matrix-react-sdk/pull/2049)
+ * add null-guard for stickerpickerWidget in StickerPicker
+ [\#2057](https://github.com/matrix-org/matrix-react-sdk/pull/2057)
+ * Implement always-on-screen capability for widgets
+ [\#2053](https://github.com/matrix-org/matrix-react-sdk/pull/2053)
+ * fix nullguard on EventTile, getComponent never returns falsey, it throws
+ [\#2024](https://github.com/matrix-org/matrix-react-sdk/pull/2024)
+ * Fix stickerpicker PersistedElement usage
+ [\#2051](https://github.com/matrix-org/matrix-react-sdk/pull/2051)
+ * encrypt for invited users if history visibility allows.
+ [\#2042](https://github.com/matrix-org/matrix-react-sdk/pull/2042)
+ * move nag bar clear statement to any desktop notif toggle not just 0->1
+ [\#2031](https://github.com/matrix-org/matrix-react-sdk/pull/2031)
+ * use TruncatedList to prevent rendering hundreds/thousands of DOM nodes
+ [\#2041](https://github.com/matrix-org/matrix-react-sdk/pull/2041)
+ * Fix stuff
+ [\#2047](https://github.com/matrix-org/matrix-react-sdk/pull/2047)
+ * Show m.room.server_acl
+ [\#2046](https://github.com/matrix-org/matrix-react-sdk/pull/2046)
+
+Changes in [0.12.9](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.9) (2018-07-09)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.9-rc.2...v0.12.9)
+
+ * No changes since rc.1
+
+Changes in [0.12.9-rc.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.9-rc.2) (2018-07-06)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.9-rc.1...v0.12.9-rc.2)
+
+ * Implement aggregation by error type for tracked decryption failures
+ [\#2045](https://github.com/matrix-org/matrix-react-sdk/pull/2045)
+ * make new hiding of roomsublist behaviour opt-in
+ [\#2044](https://github.com/matrix-org/matrix-react-sdk/pull/2044)
+ * Implement aggregation by error type for tracked decryption failures
+ [\#2043](https://github.com/matrix-org/matrix-react-sdk/pull/2043)
+ * make new hiding of roomsublist behaviour opt-in
+ [\#2030](https://github.com/matrix-org/matrix-react-sdk/pull/2030)
+
+Changes in [0.12.9-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.9-rc.1) (2018-07-04)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.8...v0.12.9-rc.1)
+
+ * Update from Weblate.
+ [\#2040](https://github.com/matrix-org/matrix-react-sdk/pull/2040)
+ * Import react as React in src/components/views/messages/MStickerBody.js
+ [\#2039](https://github.com/matrix-org/matrix-react-sdk/pull/2039)
+ * Import react as React in src/GroupAddressPicker.js
+ [\#2038](https://github.com/matrix-org/matrix-react-sdk/pull/2038)
+ * Give PersistedElement a key
+ [\#2036](https://github.com/matrix-org/matrix-react-sdk/pull/2036)
+ * Revert " make click to insert nick work on join/parts, /me's etc"
+ [\#2034](https://github.com/matrix-org/matrix-react-sdk/pull/2034)
+ * Track an event name when tracking a decryption failure
+ [\#2033](https://github.com/matrix-org/matrix-react-sdk/pull/2033)
+ * warn on self-mute
+ [\#1974](https://github.com/matrix-org/matrix-react-sdk/pull/1974)
+ * make click to insert nick work on join/parts, /me's etc
+ [\#1945](https://github.com/matrix-org/matrix-react-sdk/pull/1945)
+ * Fix layout bug introduced by #2025
+ [\#2029](https://github.com/matrix-org/matrix-react-sdk/pull/2029)
+ * Fix room topics/names resetting when UserSetting re-renders
+ [\#2028](https://github.com/matrix-org/matrix-react-sdk/pull/2028)
+ * Improve tracking of UISIs
+ [\#2027](https://github.com/matrix-org/matrix-react-sdk/pull/2027)
+ * Replace share icons
+ [\#2026](https://github.com/matrix-org/matrix-react-sdk/pull/2026)
+ * Improve status bar errors (namely the consent error)
+ [\#2025](https://github.com/matrix-org/matrix-react-sdk/pull/2025)
+ * Fix incorrectly positioned copy button on `
` blocks
+ [\#2023](https://github.com/matrix-org/matrix-react-sdk/pull/2023)
+ * Redact pathnames with origin `file://`
+ [\#2018](https://github.com/matrix-org/matrix-react-sdk/pull/2018)
+ * Update package-lock.json
+ [\#2022](https://github.com/matrix-org/matrix-react-sdk/pull/2022)
+ * on room sub list badge click goto first relevant room
+ [\#2021](https://github.com/matrix-org/matrix-react-sdk/pull/2021)
+ * improve linkifier AGAIN
+ [\#2020](https://github.com/matrix-org/matrix-react-sdk/pull/2020)
+ * fix historical section
+ [\#2016](https://github.com/matrix-org/matrix-react-sdk/pull/2016)
+ * Fix RoomSubList headers by re-commiting 1faecfd
+ [\#2014](https://github.com/matrix-org/matrix-react-sdk/pull/2014)
+ * don't fire share dialog when clicking timestamp of event,
+ [\#2017](https://github.com/matrix-org/matrix-react-sdk/pull/2017)
+ * Revert "affix copyButton so that it doesn't get scrolled horizontally"
+ [\#2013](https://github.com/matrix-org/matrix-react-sdk/pull/2013)
+ * when the user switches room, close room settings
+ [\#2019](https://github.com/matrix-org/matrix-react-sdk/pull/2019)
+ * Refactor widgets code
+ [\#2015](https://github.com/matrix-org/matrix-react-sdk/pull/2015)
+ * Login local errors for blank fields
+ [\#2009](https://github.com/matrix-org/matrix-react-sdk/pull/2009)
+ * Update lolex to 2.7.0
+ [\#1917](https://github.com/matrix-org/matrix-react-sdk/pull/1917)
+ * Improve Linkifier
+ [\#2011](https://github.com/matrix-org/matrix-react-sdk/pull/2011)
+ * use enum constants for EventStatus and correct isSent check
+ [\#2010](https://github.com/matrix-org/matrix-react-sdk/pull/2010)
+ * accent insensitive autocomplete
+ [\#2007](https://github.com/matrix-org/matrix-react-sdk/pull/2007)
+ * default to not showing url previews in e2ee rooms.
+ [\#2001](https://github.com/matrix-org/matrix-react-sdk/pull/2001)
+ * allow chaining right click contextmenus
+ [\#1999](https://github.com/matrix-org/matrix-react-sdk/pull/1999)
+ * hide empty roomsublists when filtering via search/tagpanel
+ [\#1954](https://github.com/matrix-org/matrix-react-sdk/pull/1954)
+ * prevent user,room,group autocomplete firing mid-word
+ [\#2012](https://github.com/matrix-org/matrix-react-sdk/pull/2012)
+ * fix instances of composer not getting/regaining focus
+ [\#2008](https://github.com/matrix-org/matrix-react-sdk/pull/2008)
+ * notif panel fixes
+ [\#2006](https://github.com/matrix-org/matrix-react-sdk/pull/2006)
+ * factor out conditional LanguageSelector as functional component
+ [\#2003](https://github.com/matrix-org/matrix-react-sdk/pull/2003)
+ * Autocomplete and Pillify Communities
+ [\#1993](https://github.com/matrix-org/matrix-react-sdk/pull/1993)
+ * Very basic Jitsi integration
+ [\#1971](https://github.com/matrix-org/matrix-react-sdk/pull/1971)
+ * add additional classes which protect the text from overflowing
+ [\#1994](https://github.com/matrix-org/matrix-react-sdk/pull/1994)
+ * Upload File confirmation modal steals focus, send it back to composer
+ [\#1992](https://github.com/matrix-org/matrix-react-sdk/pull/1992)
+ * delint MImageBody, fixes anonymous class and hyphenated style keys which
+ made react cry
+ [\#1991](https://github.com/matrix-org/matrix-react-sdk/pull/1991)
+ * allow using tab to navigate room list in a smarter way
+ [\#1977](https://github.com/matrix-org/matrix-react-sdk/pull/1977)
+ * fix no displayname usersettings
+ [\#1990](https://github.com/matrix-org/matrix-react-sdk/pull/1990)
+ * trigger TagTile context menu on right click
+ [\#1989](https://github.com/matrix-org/matrix-react-sdk/pull/1989)
+ * hide already chosen results from AddressPickerDialog
+ [\#2000](https://github.com/matrix-org/matrix-react-sdk/pull/2000)
+ * delint ChatCreateOrReuseDialog
+ [\#2002](https://github.com/matrix-org/matrix-react-sdk/pull/2002)
+ * fix set password & email flow possible to get stuck and onBlur murdering
+ your email
+ [\#1982](https://github.com/matrix-org/matrix-react-sdk/pull/1982)
+
+Changes in [0.12.8](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.8) (2018-06-29)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.8-rc.2...v0.12.8)
+
+ * Revert "affix copyButton so that it doesn't get scrolled horizontally"
+ [\#2013](https://github.com/matrix-org/matrix-react-sdk/pull/2013)
+ * don't fire share dialog when clicking timestamp of event
+ [\#2017](https://github.com/matrix-org/matrix-react-sdk/pull/2017)
+ * when the user switches room, close room settings
+ [\#2019](https://github.com/matrix-org/matrix-react-sdk/pull/2019)
+
+Changes in [0.12.8-rc.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.8-rc.2) (2018-06-22)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.8-rc.1...v0.12.8-rc.2)
+
+ * slash got consumed in the consolidation
+ [\#1998](https://github.com/matrix-org/matrix-react-sdk/pull/1998)
+
+Changes in [0.12.8-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.8-rc.1) (2018-06-21)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.7...v0.12.8-rc.1)
+
+ * Update from Weblate.
+ [\#1997](https://github.com/matrix-org/matrix-react-sdk/pull/1997)
+ * refactor, consolidate and improve SlashCommands
+ [\#1988](https://github.com/matrix-org/matrix-react-sdk/pull/1988)
+ * Take replies out of labs!
+ [\#1996](https://github.com/matrix-org/matrix-react-sdk/pull/1996)
+ * re-merge reset PR
+ [\#1987](https://github.com/matrix-org/matrix-react-sdk/pull/1987)
+ * once command has a space, strict match instead of fuzzy match
+ [\#1985](https://github.com/matrix-org/matrix-react-sdk/pull/1985)
+ * Fix matrix.to URL RegExp
+ [\#1986](https://github.com/matrix-org/matrix-react-sdk/pull/1986)
+ * Fix blank sticker picker
+ [\#1984](https://github.com/matrix-org/matrix-react-sdk/pull/1984)
+ * fix e2ee file/media stuff
+ [\#1972](https://github.com/matrix-org/matrix-react-sdk/pull/1972)
+ * right click for room tile context menu
+ [\#1978](https://github.com/matrix-org/matrix-react-sdk/pull/1978)
+ * only show m.room.message in FilePanel
+ [\#1983](https://github.com/matrix-org/matrix-react-sdk/pull/1983)
+ * improve command provider
+ [\#1981](https://github.com/matrix-org/matrix-react-sdk/pull/1981)
+ * affix copyButton so that it doesn't get scrolled horizontally
+ [\#1980](https://github.com/matrix-org/matrix-react-sdk/pull/1980)
+ * split continuation if there is a gap in conversation
+ [\#1979](https://github.com/matrix-org/matrix-react-sdk/pull/1979)
+ * fix a bunch of instances of react console spam
+ [\#1973](https://github.com/matrix-org/matrix-react-sdk/pull/1973)
+ * Track decryption success/failure rate with piwik
+ [\#1949](https://github.com/matrix-org/matrix-react-sdk/pull/1949)
+ * route matrix.to/#/+... links internally (not just group ids)
+ [\#1975](https://github.com/matrix-org/matrix-react-sdk/pull/1975)
+ * implement `hitting enter after Ctrl-K should switch to the first result`
+ [\#1976](https://github.com/matrix-org/matrix-react-sdk/pull/1976)
+ * Remove tag panel feature flag
+ [\#1970](https://github.com/matrix-org/matrix-react-sdk/pull/1970)
+ * QuestionDialog pass hasCancelButton to DialogButtons
+ [\#1968](https://github.com/matrix-org/matrix-react-sdk/pull/1968)
+ * check type before msgtype in the case of `m.sticker` with msgtype
+ [\#1965](https://github.com/matrix-org/matrix-react-sdk/pull/1965)
+ * apply roomlist searchFilter to aliases if it begins with a `#`
+ [\#1957](https://github.com/matrix-org/matrix-react-sdk/pull/1957)
+ * Share Dialog
+ [\#1948](https://github.com/matrix-org/matrix-react-sdk/pull/1948)
+ * make RoomTooltip generic and add ContextMenu&Tooltip to GroupInviteTile
+ [\#1950](https://github.com/matrix-org/matrix-react-sdk/pull/1950)
+ * Fix widgets re-appearing after being deleted
+ [\#1958](https://github.com/matrix-org/matrix-react-sdk/pull/1958)
+ * Fix crash on unspecified thumbnail info, and handle gracefully
+ [\#1967](https://github.com/matrix-org/matrix-react-sdk/pull/1967)
+ * fix styling of clearButton when its not there
+ [\#1964](https://github.com/matrix-org/matrix-react-sdk/pull/1964)
+ * Implement slightly magical CSS soln. to thumbnail sizing
+ [\#1912](https://github.com/matrix-org/matrix-react-sdk/pull/1912)
+ * Select audio output for WebRTC
+ [\#1932](https://github.com/matrix-org/matrix-react-sdk/pull/1932)
+ * move css rule to be more generic; remove overriden rule
+ [\#1962](https://github.com/matrix-org/matrix-react-sdk/pull/1962)
+ * improve tag panel accessibility and remove a no-op dispatch
+ [\#1960](https://github.com/matrix-org/matrix-react-sdk/pull/1960)
+ * Revert "Fix exception when opening dev tools"
+ [\#1963](https://github.com/matrix-org/matrix-react-sdk/pull/1963)
+ * fix message appears unencrypted while encrypting and not_sent
+ [\#1959](https://github.com/matrix-org/matrix-react-sdk/pull/1959)
+ * Fix exception when opening dev tools
+ [\#1961](https://github.com/matrix-org/matrix-react-sdk/pull/1961)
+ * show redacted stickers like other redacted messages
+ [\#1956](https://github.com/matrix-org/matrix-react-sdk/pull/1956)
+ * add mx_filterFlipColor to mx_MemberInfo_cancel img
+ [\#1951](https://github.com/matrix-org/matrix-react-sdk/pull/1951)
+ * don't set the displayname on registration as Synapse now does it
+ [\#1953](https://github.com/matrix-org/matrix-react-sdk/pull/1953)
+ * allow CreateRoom to scale properly horizontally
+ [\#1955](https://github.com/matrix-org/matrix-react-sdk/pull/1955)
+ * Keep context menus that extend downwards vertically on screen
+ [\#1952](https://github.com/matrix-org/matrix-react-sdk/pull/1952)
+ * re-run checkIfAlone if a member change occurred in the active room
+ [\#1947](https://github.com/matrix-org/matrix-react-sdk/pull/1947)
+ * Persist pinned message open-ness between room switches
+ [\#1935](https://github.com/matrix-org/matrix-react-sdk/pull/1935)
+ * Pinned message cosmetic improvements
+ [\#1933](https://github.com/matrix-org/matrix-react-sdk/pull/1933)
+ * Update sinon to 5.0.7
+ [\#1916](https://github.com/matrix-org/matrix-react-sdk/pull/1916)
+ * re-run checkIfAlone if a member change occurred in the active room
+ [\#1946](https://github.com/matrix-org/matrix-react-sdk/pull/1946)
+ * Replace "Login as guest" with "Try the app first" on login page
+ [\#1937](https://github.com/matrix-org/matrix-react-sdk/pull/1937)
+ * kill stream when using gUM for permission to device labels to turn off
+ camera
+ [\#1931](https://github.com/matrix-org/matrix-react-sdk/pull/1931)
+
+Changes in [0.12.7](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.7) (2018-06-12)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.7-rc.1...v0.12.7)
+
+ * No changes since rc.1
+
+Changes in [0.12.7-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.7-rc.1) (2018-06-06)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.6...v0.12.7-rc.1)
+
+ * Update from Weblate.
+ [\#1944](https://github.com/matrix-org/matrix-react-sdk/pull/1944)
+ * Import react as React in src/components/views/elements/DNDTagTile.js
+ [\#1943](https://github.com/matrix-org/matrix-react-sdk/pull/1943)
+ * Fix click on faded left/right/middle panel -> close settings
+ [\#1940](https://github.com/matrix-org/matrix-react-sdk/pull/1940)
+ * Add null-guard to support browsers that don't support performance
+ [\#1942](https://github.com/matrix-org/matrix-react-sdk/pull/1942)
+ * Support third party integration managers in AppPermission
+ [\#1455](https://github.com/matrix-org/matrix-react-sdk/pull/1455)
+ * Update pinned messages in real time
+ [\#1934](https://github.com/matrix-org/matrix-react-sdk/pull/1934)
+ * Expose at-room power level setting
+ [\#1938](https://github.com/matrix-org/matrix-react-sdk/pull/1938)
+
+Changes in [0.12.6](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.6) (2018-05-25)
+=====================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.6-rc.1...v0.12.6)
+
+ * No changes since v0.12.6-rc.1
+
+Changes in [0.12.6-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.6-rc.1) (2018-05-24)
+===============================================================================================================
+[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.5...v0.12.6-rc.1)
+
+ * Add a "reload widget" button.
+ [\#1920](https://github.com/matrix-org/matrix-react-sdk/pull/1920)
+ * Make devTools styling more consistent and easier to edit event data.
+ [\#1923](https://github.com/matrix-org/matrix-react-sdk/pull/1923)
+ * Update from Weblate.
+ [\#1930](https://github.com/matrix-org/matrix-react-sdk/pull/1930)
+ * Cookie bar update
+ [\#1929](https://github.com/matrix-org/matrix-react-sdk/pull/1929)
+ * Message for leaving server notices room
+ [\#1928](https://github.com/matrix-org/matrix-react-sdk/pull/1928)
+ * More thorough check of IM URL validity.
+ [\#1927](https://github.com/matrix-org/matrix-react-sdk/pull/1927)
+ * Add usage data link to cookie bar
+ [\#1926](https://github.com/matrix-org/matrix-react-sdk/pull/1926)
+ * Change wording and appearance of Deactivate Account dialog
+ [\#1925](https://github.com/matrix-org/matrix-react-sdk/pull/1925)
+ * fix membership list ordering when presence is disabled.
+ [\#1924](https://github.com/matrix-org/matrix-react-sdk/pull/1924)
+ * Implement erasure option upon deactivation
+ [\#1922](https://github.com/matrix-org/matrix-react-sdk/pull/1922)
+ * Add cookie warning to widget warning (AppPermission)
+ [\#1921](https://github.com/matrix-org/matrix-react-sdk/pull/1921)
+ * Terms and Conditions dialog
+ [\#1919](https://github.com/matrix-org/matrix-react-sdk/pull/1919)
+ * improve privileged section users in room settings
+ [\#1902](https://github.com/matrix-org/matrix-react-sdk/pull/1902)
+ * Space between sentences in 'leave room' warning
+ [\#1918](https://github.com/matrix-org/matrix-react-sdk/pull/1918)
+ * Specify valid address types to "Start a chat" dialog
+ [\#1908](https://github.com/matrix-org/matrix-react-sdk/pull/1908)
+ * Implement opt-in analytics with cookie bar
+ [\#1906](https://github.com/matrix-org/matrix-react-sdk/pull/1906)
+ * Fix vector-im/riot-web#6523 Emoji rendering destroys paragraphs
+ [\#1910](https://github.com/matrix-org/matrix-react-sdk/pull/1910)
+
Changes in [0.12.5](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.12.5) (2018-05-17)
=====================================================================================================
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.12.4...v0.12.5)
diff --git a/docs/slate-formats.md b/docs/slate-formats.md
new file mode 100644
index 0000000000..7bb2fc9c5f
--- /dev/null
+++ b/docs/slate-formats.md
@@ -0,0 +1,88 @@
+Guide to data types used by the Slate-based Rich Text Editor
+------------------------------------------------------------
+
+We always store the Slate editor state in its Value form.
+
+The schema for the Value is the same whether the editor is in MD or rich text mode, and is currently (rather arbitrarily)
+dictated by the schema expected by slate-md-serializer, simply because it was the only bit of the pipeline which
+has opinions on the schema. (slate-html-serializer lets you define how to serialize whatever schema you like).
+
+The BLOCK_TAGS and MARK_TAGS give the mapping from HTML tags to the schema's node types (for blocks, which describe
+block content like divs, and marks, which describe inline formatted sections like spans).
+
+We use
as the parent tag for the message (XXX: although some tags are technically not allowed to be nested within p's)
+
+Various conversions are performed as content is moved between HTML, MD, and plaintext representations of HTML and MD.
+
+The primitives used are:
+
+ * Markdown.js - models commonmark-formatted MD strings (as entered by the composer in MD mode)
+ * toHtml() - renders them to HTML suitable for sending on the wire
+ * isPlainText() - checks whether the parsed MD contains anything other than simple text.
+ * toPlainText() - renders MD to plain text in order to remove backslashes. Only works if the MD is already plaintext (otherwise it just emits HTML)
+
+ * slate-html-serializer
+ * converts Values to HTML (serialising) using our schema rules
+ * converts HTML to Values (deserialising) using our schema rules
+
+ * slate-md-serializer
+ * converts rich Values to MD strings (serialising) but using a non-commonmark generic MD dialect.
+ * This should use commonmark, but we use the serializer here for expedience rather than writing a commonmark one.
+
+ * slate-plain-serializer
+ * converts Values to plain text strings (serialising them) by concatenating the strings together
+ * converts Values from plain text strings (deserialiasing them).
+ * Used to initialise the editor by deserializing "" into a Value. Apparently this is the idiomatic way to initialise a blank editor.
+ * Used (as a bodge) to turn a rich text editor into a MD editor, when deserialising the converted MD string of the editor into a value
+
+ * PlainWithPillsSerializer
+ * A fork of slate-plain-serializer which is aware of Pills (hence the name) and Emoji.
+ * It can be configured to output Pills as:
+ * "plain": Pills are rendered via their 'completion' text - e.g. 'Matthew'; used for sending messages)
+ * "md": Pills are rendered as MD, e.g. [Matthew](https://matrix.to/#/@matthew:matrix.org) )
+ * "id": Pills are rendered as IDs, e.g. '@matthew:matrix.org' (used for authoring / commands)
+ * Emoji nodes are converted to inline utf8 emoji.
+
+The actual conversion transitions are:
+
+ * Quoting:
+ * The message being quoted is taken as HTML
+ * ...and deserialised into a Value
+ * ...and then serialised into MD via slate-md-serializer if the editor is in MD mode
+
+ * Roundtripping between MD and rich text editor mode
+ * From MD to richtext (mdToRichEditorState):
+ * Serialise the MD-format Value to a MD string (converting pills to MD) with PlainWithPillsSerializer in 'md' mode
+ * Convert that MD string to HTML via Markdown.js
+ * Deserialise that Value to HTML via slate-html-serializer
+ * From richtext to MD (richToMdEditorState):
+ * Serialise the richtext-format Value to a MD string with slate-md-serializer (XXX: this should use commonmark)
+ * Deserialise that to a plain text value via slate-plain-serializer
+
+ * Loading history in one format into an editor which is in the other format
+ * Uses the same functions as for roundtripping
+
+ * Scanning the editor for a slash command
+ * If the editor is a single line node starting with /, then serialize it to a string with PlainWithPillsSerializer in 'id' mode
+ So that pills get converted to IDs suitable for commands being passed around
+
+ * Sending messages
+ * In RT mode:
+ * If there is rich content, serialize the RT-format Value to HTML body via slate-html-serializer
+ * Serialize the RT-format Value to the plain text fallback via PlainWithPillsSerializer in 'plain' mode
+ * In MD mode:
+ * Serialize the MD-format Value into an MD string with PlainWithPillsSerializer in 'md' mode
+ * Parse the string with Markdown.js
+ * If it contains no formatting:
+ * Send as plaintext (as taken from Markdown.toPlainText())
+ * Otherwise
+ * Send as HTML (as taken from Markdown.toHtml())
+ * Serialize the RT-format Value to the plain text fallback via PlainWithPillsSerializer in 'plain' mode
+
+ * Pasting HTML
+ * Deserialize HTML to a RT Value via slate-html-serializer
+ * In RT mode, insert it straight into the editor as a fragment
+ * In MD mode, serialise it to an MD string via slate-md-serializer and then insert the string into the editor as a fragment.
+
+The various scenarios and transitions could be drawn into a pretty diagram if one felt the urge, but hopefully the above
+gives sufficient detail on how it's all meant to work.
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
deleted file mode 100644
index f183f1635d..0000000000
--- a/package-lock.json
+++ /dev/null
@@ -1,6666 +0,0 @@
-{
- "name": "matrix-react-sdk",
- "version": "0.12.2",
- "lockfileVersion": 1,
- "requires": true,
- "dependencies": {
- "accepts": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz",
- "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=",
- "dev": true,
- "requires": {
- "mime-types": "2.1.17",
- "negotiator": "0.6.1"
- }
- },
- "acorn": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.2.tgz",
- "integrity": "sha512-o96FZLJBPY1lvTuJylGA9Bk3t/GKPPJG8H0ydQQl01crzwJgspa4AEIq/pVTXigmK0PHVQhiAtn8WMBLL9D2WA==",
- "dev": true
- },
- "acorn-jsx": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
- "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
- "dev": true,
- "requires": {
- "acorn": "3.3.0"
- },
- "dependencies": {
- "acorn": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
- "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
- "dev": true
- }
- }
- },
- "after": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
- "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
- "dev": true
- },
- "ajv": {
- "version": "5.2.3",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.2.3.tgz",
- "integrity": "sha1-wG9Zh3jETGsWGrr+NGa4GtGBTtI=",
- "requires": {
- "co": "4.6.0",
- "fast-deep-equal": "1.0.0",
- "json-schema-traverse": "0.3.1",
- "json-stable-stringify": "1.0.1"
- }
- },
- "ajv-keywords": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz",
- "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=",
- "dev": true
- },
- "align-text": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
- "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
- "dev": true,
- "requires": {
- "kind-of": "3.2.2",
- "longest": "1.0.1",
- "repeat-string": "1.6.1"
- }
- },
- "amdefine": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
- "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
- "dev": true
- },
- "another-json": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/another-json/-/another-json-0.2.0.tgz",
- "integrity": "sha1-tfQBnJc7bdXGUGotk0acttMq7tw="
- },
- "ansi-escapes": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
- "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=",
- "dev": true
- },
- "ansi-regex": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
- "dev": true
- },
- "ansi-styles": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
- "dev": true
- },
- "anymatch": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz",
- "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==",
- "dev": true,
- "requires": {
- "micromatch": "2.3.11",
- "normalize-path": "2.1.1"
- }
- },
- "argparse": {
- "version": "1.0.9",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
- "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
- "dev": true,
- "requires": {
- "sprintf-js": "1.0.3"
- },
- "dependencies": {
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
- "dev": true
- }
- }
- },
- "arr-diff": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
- "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
- "dev": true,
- "requires": {
- "arr-flatten": "1.1.0"
- }
- },
- "arr-flatten": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
- "dev": true
- },
- "array-includes": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz",
- "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=",
- "dev": true,
- "requires": {
- "define-properties": "1.1.2",
- "es-abstract": "1.9.0"
- }
- },
- "array-slice": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
- "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
- "dev": true
- },
- "array-union": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
- "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
- "dev": true,
- "requires": {
- "array-uniq": "1.0.3"
- }
- },
- "array-uniq": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
- "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
- "dev": true
- },
- "array-unique": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
- "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
- "dev": true
- },
- "arraybuffer.slice": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz",
- "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=",
- "dev": true
- },
- "arrify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
- "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
- "dev": true
- },
- "asap": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
- "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
- },
- "asn1": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
- "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
- },
- "assert": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
- "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
- "dev": true,
- "requires": {
- "util": "0.10.3"
- }
- },
- "assert-plus": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
- },
- "async": {
- "version": "0.9.2",
- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
- "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=",
- "dev": true
- },
- "async-each": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
- "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
- "dev": true
- },
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
- },
- "aws-sign2": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
- },
- "aws4": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
- "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4="
- },
- "babel-cli": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz",
- "integrity": "sha1-UCq1SHTX24itALiHoGODzgPQAvE=",
- "dev": true,
- "requires": {
- "babel-core": "6.26.0",
- "babel-polyfill": "6.26.0",
- "babel-register": "6.26.0",
- "babel-runtime": "6.26.0",
- "chokidar": "1.7.0",
- "commander": "2.11.0",
- "convert-source-map": "1.5.0",
- "fs-readdir-recursive": "1.0.0",
- "glob": "7.1.2",
- "lodash": "4.17.4",
- "output-file-sync": "1.1.2",
- "path-is-absolute": "1.0.1",
- "slash": "1.0.0",
- "source-map": "0.5.7",
- "v8flags": "2.1.1"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- }
- }
- },
- "babel-code-frame": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
- "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
- "dev": true,
- "requires": {
- "chalk": "1.1.3",
- "esutils": "2.0.2",
- "js-tokens": "3.0.2"
- }
- },
- "babel-core": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz",
- "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=",
- "dev": true,
- "requires": {
- "babel-code-frame": "6.26.0",
- "babel-generator": "6.26.0",
- "babel-helpers": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-register": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "convert-source-map": "1.5.0",
- "debug": "2.6.9",
- "json5": "0.5.1",
- "lodash": "4.17.4",
- "minimatch": "3.0.4",
- "path-is-absolute": "1.0.1",
- "private": "0.1.8",
- "slash": "1.0.0",
- "source-map": "0.5.7"
- }
- },
- "babel-eslint": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-6.1.2.tgz",
- "integrity": "sha1-UpNBn+NnLWZZjTJ9qWlFZ7pqXy8=",
- "dev": true,
- "requires": {
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "lodash.assign": "4.2.0",
- "lodash.pickby": "4.6.0"
- }
- },
- "babel-generator": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz",
- "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=",
- "dev": true,
- "requires": {
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "detect-indent": "4.0.0",
- "jsesc": "1.3.0",
- "lodash": "4.17.4",
- "source-map": "0.5.7",
- "trim-right": "1.0.1"
- }
- },
- "babel-helper-builder-binary-assignment-operator-visitor": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
- "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
- "dev": true,
- "requires": {
- "babel-helper-explode-assignable-expression": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-builder-react-jsx": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
- "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "esutils": "2.0.2"
- }
- },
- "babel-helper-call-delegate": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
- "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
- "dev": true,
- "requires": {
- "babel-helper-hoist-variables": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-define-map": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
- "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
- "dev": true,
- "requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
- }
- },
- "babel-helper-explode-assignable-expression": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
- "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-function-name": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
- "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
- "dev": true,
- "requires": {
- "babel-helper-get-function-arity": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-get-function-arity": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
- "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-hoist-variables": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
- "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-optimise-call-expression": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
- "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-regex": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
- "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
- }
- },
- "babel-helper-remap-async-to-generator": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
- "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
- "dev": true,
- "requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helper-replace-supers": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
- "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
- "dev": true,
- "requires": {
- "babel-helper-optimise-call-expression": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-helpers": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
- "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-loader": {
- "version": "6.4.1",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-6.4.1.tgz",
- "integrity": "sha1-CzQRLVsHSKjc2/Uaz2+b1C1QuMo=",
- "dev": true,
- "requires": {
- "find-cache-dir": "0.1.1",
- "loader-utils": "0.2.17",
- "mkdirp": "0.5.1",
- "object-assign": "4.1.1"
- }
- },
- "babel-messages": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-add-module-exports": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz",
- "integrity": "sha1-mumh9KjcZ/DN7E9K7aHkOl/2XiU=",
- "dev": true
- },
- "babel-plugin-check-es2015-constants": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
- "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-syntax-async-functions": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
- "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
- "dev": true
- },
- "babel-plugin-syntax-class-properties": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz",
- "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=",
- "dev": true
- },
- "babel-plugin-syntax-exponentiation-operator": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
- "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
- "dev": true
- },
- "babel-plugin-syntax-flow": {
- "version": "6.18.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz",
- "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=",
- "dev": true
- },
- "babel-plugin-syntax-jsx": {
- "version": "6.18.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
- "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
- "dev": true
- },
- "babel-plugin-syntax-object-rest-spread": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
- "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=",
- "dev": true
- },
- "babel-plugin-syntax-trailing-function-commas": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
- "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
- "dev": true
- },
- "babel-plugin-transform-async-to-bluebird": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-bluebird/-/babel-plugin-transform-async-to-bluebird-1.1.1.tgz",
- "integrity": "sha1-Ruo+fFr2KXgqyfHtG3zTj4Qlr9Q=",
- "dev": true,
- "requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-plugin-syntax-async-functions": "6.13.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0"
- }
- },
- "babel-plugin-transform-async-to-generator": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
- "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
- "dev": true,
- "requires": {
- "babel-helper-remap-async-to-generator": "6.24.1",
- "babel-plugin-syntax-async-functions": "6.13.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-class-properties": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz",
- "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=",
- "dev": true,
- "requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-plugin-syntax-class-properties": "6.13.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-arrow-functions": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
- "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-block-scoped-functions": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
- "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-block-scoping": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
- "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
- }
- },
- "babel-plugin-transform-es2015-classes": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
- "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
- "dev": true,
- "requires": {
- "babel-helper-define-map": "6.26.0",
- "babel-helper-function-name": "6.24.1",
- "babel-helper-optimise-call-expression": "6.24.1",
- "babel-helper-replace-supers": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-computed-properties": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
- "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-destructuring": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
- "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-duplicate-keys": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
- "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-for-of": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
- "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-function-name": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
- "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
- "dev": true,
- "requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-literals": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
- "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-modules-amd": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
- "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
- "dev": true,
- "requires": {
- "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-modules-commonjs": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz",
- "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=",
- "dev": true,
- "requires": {
- "babel-plugin-transform-strict-mode": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-modules-systemjs": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
- "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
- "dev": true,
- "requires": {
- "babel-helper-hoist-variables": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-modules-umd": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
- "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
- "dev": true,
- "requires": {
- "babel-plugin-transform-es2015-modules-amd": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-object-super": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
- "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
- "dev": true,
- "requires": {
- "babel-helper-replace-supers": "6.24.1",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-parameters": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
- "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
- "dev": true,
- "requires": {
- "babel-helper-call-delegate": "6.24.1",
- "babel-helper-get-function-arity": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-shorthand-properties": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
- "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-spread": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
- "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-sticky-regex": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
- "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
- "dev": true,
- "requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-template-literals": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
- "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-typeof-symbol": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
- "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-es2015-unicode-regex": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
- "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
- "dev": true,
- "requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "6.26.0",
- "regexpu-core": "2.0.0"
- }
- },
- "babel-plugin-transform-exponentiation-operator": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
- "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
- "dev": true,
- "requires": {
- "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1",
- "babel-plugin-syntax-exponentiation-operator": "6.13.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-flow-strip-types": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
- "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-flow": "6.18.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-object-rest-spread": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
- "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-object-rest-spread": "6.13.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-react-display-name": {
- "version": "6.25.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz",
- "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-react-jsx": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
- "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
- "dev": true,
- "requires": {
- "babel-helper-builder-react-jsx": "6.26.0",
- "babel-plugin-syntax-jsx": "6.18.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-react-jsx-self": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz",
- "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-jsx": "6.18.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-react-jsx-source": {
- "version": "6.22.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz",
- "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-jsx": "6.18.0",
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-regenerator": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
- "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
- "dev": true,
- "requires": {
- "regenerator-transform": "0.10.1"
- }
- },
- "babel-plugin-transform-runtime": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz",
- "integrity": "sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0"
- }
- },
- "babel-plugin-transform-strict-mode": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
- "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
- }
- },
- "babel-polyfill": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
- "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "core-js": "2.5.1",
- "regenerator-runtime": "0.10.5"
- },
- "dependencies": {
- "regenerator-runtime": {
- "version": "0.10.5",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
- "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=",
- "dev": true
- }
- }
- },
- "babel-preset-es2015": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz",
- "integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=",
- "dev": true,
- "requires": {
- "babel-plugin-check-es2015-constants": "6.22.0",
- "babel-plugin-transform-es2015-arrow-functions": "6.22.0",
- "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
- "babel-plugin-transform-es2015-block-scoping": "6.26.0",
- "babel-plugin-transform-es2015-classes": "6.24.1",
- "babel-plugin-transform-es2015-computed-properties": "6.24.1",
- "babel-plugin-transform-es2015-destructuring": "6.23.0",
- "babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
- "babel-plugin-transform-es2015-for-of": "6.23.0",
- "babel-plugin-transform-es2015-function-name": "6.24.1",
- "babel-plugin-transform-es2015-literals": "6.22.0",
- "babel-plugin-transform-es2015-modules-amd": "6.24.1",
- "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
- "babel-plugin-transform-es2015-modules-systemjs": "6.24.1",
- "babel-plugin-transform-es2015-modules-umd": "6.24.1",
- "babel-plugin-transform-es2015-object-super": "6.24.1",
- "babel-plugin-transform-es2015-parameters": "6.24.1",
- "babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
- "babel-plugin-transform-es2015-spread": "6.22.0",
- "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
- "babel-plugin-transform-es2015-template-literals": "6.22.0",
- "babel-plugin-transform-es2015-typeof-symbol": "6.23.0",
- "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
- "babel-plugin-transform-regenerator": "6.26.0"
- }
- },
- "babel-preset-es2016": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz",
- "integrity": "sha1-+QC/k+LrwNJ235uKtZck6/2Vn4s=",
- "dev": true,
- "requires": {
- "babel-plugin-transform-exponentiation-operator": "6.24.1"
- }
- },
- "babel-preset-es2017": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz",
- "integrity": "sha1-WXvq37n38gi8/YoS6bKym4svFNE=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-trailing-function-commas": "6.22.0",
- "babel-plugin-transform-async-to-generator": "6.24.1"
- }
- },
- "babel-preset-flow": {
- "version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz",
- "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=",
- "dev": true,
- "requires": {
- "babel-plugin-transform-flow-strip-types": "6.22.0"
- }
- },
- "babel-preset-react": {
- "version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz",
- "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=",
- "dev": true,
- "requires": {
- "babel-plugin-syntax-jsx": "6.18.0",
- "babel-plugin-transform-react-display-name": "6.25.0",
- "babel-plugin-transform-react-jsx": "6.24.1",
- "babel-plugin-transform-react-jsx-self": "6.22.0",
- "babel-plugin-transform-react-jsx-source": "6.22.0",
- "babel-preset-flow": "6.23.0"
- }
- },
- "babel-register": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
- "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
- "dev": true,
- "requires": {
- "babel-core": "6.26.0",
- "babel-runtime": "6.26.0",
- "core-js": "2.5.1",
- "home-or-tmp": "2.0.0",
- "lodash": "4.17.4",
- "mkdirp": "0.5.1",
- "source-map-support": "0.4.18"
- }
- },
- "babel-runtime": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
- "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
- "requires": {
- "core-js": "2.5.1",
- "regenerator-runtime": "0.11.0"
- }
- },
- "babel-template": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
- "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "lodash": "4.17.4"
- }
- },
- "babel-traverse": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
- "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
- "dev": true,
- "requires": {
- "babel-code-frame": "6.26.0",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "debug": "2.6.9",
- "globals": "9.18.0",
- "invariant": "2.2.2",
- "lodash": "4.17.4"
- }
- },
- "babel-types": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
- "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "esutils": "2.0.2",
- "lodash": "4.17.4",
- "to-fast-properties": "1.0.3"
- }
- },
- "babylon": {
- "version": "6.18.0",
- "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
- "dev": true
- },
- "backo2": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
- "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
- "dev": true
- },
- "balanced-match": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
- },
- "base64-arraybuffer": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
- "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=",
- "dev": true
- },
- "base64-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz",
- "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==",
- "dev": true
- },
- "base64id": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz",
- "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=",
- "dev": true
- },
- "bcrypt-pbkdf": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
- "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
- "optional": true,
- "requires": {
- "tweetnacl": "0.14.5"
- }
- },
- "better-assert": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
- "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
- "dev": true,
- "requires": {
- "callsite": "1.0.0"
- }
- },
- "big.js": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
- "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
- "dev": true
- },
- "binary-extensions": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz",
- "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=",
- "dev": true
- },
- "blob": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz",
- "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=",
- "dev": true
- },
- "bluebird": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
- "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
- },
- "blueimp-canvas-to-blob": {
- "version": "3.14.0",
- "resolved": "https://registry.npmjs.org/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.14.0.tgz",
- "integrity": "sha512-i6I2CiX1VR8YwUNYBo+dM8tg89ns4TTHxSpWjaDeHKcYS3yFalpLCwDaY21/EsJMufLy2tnG4j0JN5L8OVNkKQ=="
- },
- "body-parser": {
- "version": "1.18.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz",
- "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=",
- "dev": true,
- "requires": {
- "bytes": "3.0.0",
- "content-type": "1.0.4",
- "debug": "2.6.9",
- "depd": "1.1.1",
- "http-errors": "1.6.2",
- "iconv-lite": "0.4.19",
- "on-finished": "2.3.0",
- "qs": "6.5.1",
- "raw-body": "2.3.2",
- "type-is": "1.6.15"
- }
- },
- "boom": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
- "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE="
- },
- "brace-expansion": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz",
- "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
- "requires": {
- "balanced-match": "1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "braces": {
- "version": "1.8.5",
- "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
- "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
- "dev": true,
- "requires": {
- "expand-range": "1.8.2",
- "preserve": "0.2.0",
- "repeat-element": "1.1.2"
- }
- },
- "browser-encrypt-attachment": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/browser-encrypt-attachment/-/browser-encrypt-attachment-0.3.0.tgz",
- "integrity": "sha1-IFqUyq3w3H6BQTlBgS9lW9GQ/xw="
- },
- "browser-request": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz",
- "integrity": "sha1-ns5bWsqJopkyJC4Yv5M975h2zBc="
- },
- "browser-stdout": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
- "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
- "dev": true
- },
- "browserify-aes": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-0.4.0.tgz",
- "integrity": "sha1-BnFJtmjfMcS1hTPgLQHoBthgjiw=",
- "dev": true,
- "requires": {
- "inherits": "2.0.3"
- }
- },
- "browserify-zlib": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
- "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=",
- "dev": true,
- "requires": {
- "pako": "0.2.9"
- },
- "dependencies": {
- "pako": {
- "version": "0.2.9",
- "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
- "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=",
- "dev": true
- }
- }
- },
- "buffer": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
- "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
- "dev": true,
- "requires": {
- "base64-js": "1.2.1",
- "ieee754": "1.1.8",
- "isarray": "1.0.0"
- }
- },
- "builtin-status-codes": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
- "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
- "dev": true
- },
- "bytes": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
- "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
- "dev": true
- },
- "caller-path": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
- "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
- "dev": true,
- "requires": {
- "callsites": "0.2.0"
- }
- },
- "callsite": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
- "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=",
- "dev": true
- },
- "callsites": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
- "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
- "dev": true
- },
- "camelcase": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
- "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
- "dev": true
- },
- "caseless": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
- },
- "center-align": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
- "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
- "dev": true,
- "requires": {
- "align-text": "0.1.4",
- "lazy-cache": "1.0.4"
- }
- },
- "chalk": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
- "dev": true,
- "requires": {
- "ansi-styles": "2.2.1",
- "escape-string-regexp": "1.0.5",
- "has-ansi": "2.0.0",
- "strip-ansi": "3.0.1",
- "supports-color": "2.0.0"
- }
- },
- "chokidar": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz",
- "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=",
- "dev": true,
- "requires": {
- "anymatch": "1.3.2",
- "async-each": "1.0.1",
- "fsevents": "1.1.2",
- "glob-parent": "2.0.0",
- "inherits": "2.0.3",
- "is-binary-path": "1.0.1",
- "is-glob": "2.0.1",
- "path-is-absolute": "1.0.1",
- "readdirp": "2.1.0"
- }
- },
- "circular-json": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
- "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
- "dev": true
- },
- "classnames": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz",
- "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0="
- },
- "cli-cursor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz",
- "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=",
- "dev": true,
- "requires": {
- "restore-cursor": "1.0.1"
- }
- },
- "cli-width": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
- "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
- "dev": true
- },
- "cliui": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
- "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
- "dev": true,
- "requires": {
- "center-align": "0.1.3",
- "right-align": "0.1.3",
- "wordwrap": "0.0.2"
- },
- "dependencies": {
- "wordwrap": {
- "version": "0.0.2",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
- "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
- "dev": true
- }
- }
- },
- "clone": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz",
- "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=",
- "dev": true
- },
- "co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
- },
- "code-point-at": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
- "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
- "dev": true
- },
- "colors": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
- "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=",
- "dev": true
- },
- "combine-lists": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz",
- "integrity": "sha1-RYwH4J4NkA/Ci3Cj/sLazR0st/Y=",
- "dev": true,
- "requires": {
- "lodash": "4.17.4"
- }
- },
- "combined-stream": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
- "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
- "requires": {
- "delayed-stream": "1.0.0"
- }
- },
- "commander": {
- "version": "2.11.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz",
- "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==",
- "dev": true
- },
- "commondir": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
- "dev": true
- },
- "commonmark": {
- "version": "0.28.1",
- "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.28.1.tgz",
- "integrity": "sha1-Buq41SM4uDn6Gi11rwCF7tGxvq4=",
- "requires": {
- "entities": "1.1.1",
- "mdurl": "1.0.1",
- "minimist": "1.2.0",
- "string.prototype.repeat": "0.2.0"
- }
- },
- "component-bind": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
- "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
- "dev": true
- },
- "component-emitter": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz",
- "integrity": "sha1-KWWU8nU9qmOZbSrwjRWpURbJrsM=",
- "dev": true
- },
- "component-inherit": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
- "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
- "dev": true
- },
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
- },
- "concat-stream": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
- "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
- "dev": true,
- "requires": {
- "inherits": "2.0.3",
- "readable-stream": "2.3.3",
- "typedarray": "0.0.6"
- }
- },
- "connect": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.5.tgz",
- "integrity": "sha1-+43ee6B2OHfQ7J352sC0tA5yx9o=",
- "dev": true,
- "requires": {
- "debug": "2.6.9",
- "finalhandler": "1.0.6",
- "parseurl": "1.3.2",
- "utils-merge": "1.0.1"
- }
- },
- "console-browserify": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
- "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
- "dev": true,
- "requires": {
- "date-now": "0.1.4"
- }
- },
- "constants-browserify": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
- "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
- "dev": true
- },
- "content-type": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
- },
- "convert-source-map": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz",
- "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=",
- "dev": true
- },
- "cookie": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
- "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=",
- "dev": true
- },
- "core-js": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz",
- "integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs="
- },
- "core-util-is": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
- },
- "counterpart": {
- "version": "0.18.3",
- "resolved": "https://registry.npmjs.org/counterpart/-/counterpart-0.18.3.tgz",
- "integrity": "sha512-tli4qPAFeYB34LvvCc/1xYRLCWjf4WsUt6sXfpggDfGDKoI8rhnabz0SljDoBpAK8z1u8GBCg0YDkbvWb16uUQ==",
- "requires": {
- "date-names": "0.1.10",
- "except": "0.1.3",
- "extend": "3.0.1",
- "pluralizers": "0.1.6",
- "sprintf-js": "1.1.1"
- }
- },
- "create-react-class": {
- "version": "15.6.2",
- "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.2.tgz",
- "integrity": "sha1-zx7RXxKq1/FO9fLf4F5sQvke8Co=",
- "requires": {
- "fbjs": "0.8.16",
- "loose-envify": "1.3.1",
- "object-assign": "4.1.1"
- }
- },
- "cryptiles": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
- "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
- "requires": {
- "boom": "5.2.0"
- },
- "dependencies": {
- "boom": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
- "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw=="
- }
- }
- },
- "crypto-browserify": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.3.0.tgz",
- "integrity": "sha1-ufx1u0oO1h3PHNXa6W6zDJw+UGw=",
- "dev": true,
- "requires": {
- "browserify-aes": "0.4.0",
- "pbkdf2-compat": "2.0.1",
- "ripemd160": "0.2.0",
- "sha.js": "2.2.6"
- }
- },
- "custom-event": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz",
- "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=",
- "dev": true
- },
- "d": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz",
- "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
- "dev": true,
- "requires": {
- "es5-ext": "0.10.35"
- }
- },
- "dashdash": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
- "requires": {
- "assert-plus": "1.0.0"
- }
- },
- "date-names": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/date-names/-/date-names-0.1.10.tgz",
- "integrity": "sha1-YvjZMyKVBEZX8852FtijQCH47ys="
- },
- "date-now": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
- "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=",
- "dev": true
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
- "dev": true
- },
- "deep-is": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
- "dev": true
- },
- "define-properties": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz",
- "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=",
- "dev": true,
- "requires": {
- "foreach": "2.0.5",
- "object-keys": "1.0.11"
- }
- },
- "del": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz",
- "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=",
- "dev": true,
- "requires": {
- "globby": "5.0.0",
- "is-path-cwd": "1.0.0",
- "is-path-in-cwd": "1.0.0",
- "object-assign": "4.1.1",
- "pify": "2.3.0",
- "pinkie-promise": "2.0.1",
- "rimraf": "2.6.2"
- }
- },
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
- },
- "depd": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz",
- "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=",
- "dev": true
- },
- "detect-indent": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
- "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
- "dev": true,
- "requires": {
- "repeating": "2.0.1"
- }
- },
- "di": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz",
- "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=",
- "dev": true
- },
- "doctrine": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.0.0.tgz",
- "integrity": "sha1-xz2NKQnSIpHhoAejlYBNqLZl/mM=",
- "dev": true,
- "requires": {
- "esutils": "2.0.2",
- "isarray": "1.0.0"
- }
- },
- "dom-serialize": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz",
- "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=",
- "dev": true,
- "requires": {
- "custom-event": "1.0.1",
- "ent": "2.2.0",
- "extend": "3.0.1",
- "void-elements": "2.0.1"
- }
- },
- "dom-serializer": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz",
- "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=",
- "requires": {
- "domelementtype": "1.1.3",
- "entities": "1.1.1"
- },
- "dependencies": {
- "domelementtype": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
- "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs="
- }
- }
- },
- "domain-browser": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz",
- "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=",
- "dev": true
- },
- "domelementtype": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz",
- "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI="
- },
- "domhandler": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz",
- "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=",
- "requires": {
- "domelementtype": "1.3.0"
- }
- },
- "domutils": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz",
- "integrity": "sha1-GVjMC0yUJuntNn+xyOhUiRsPo/8=",
- "requires": {
- "dom-serializer": "0.1.0",
- "domelementtype": "1.3.0"
- }
- },
- "draft-js": {
- "version": "0.11.0-alpha",
- "resolved": "https://registry.npmjs.org/draft-js/-/draft-js-0.11.0-alpha.tgz",
- "integrity": "sha1-MtshCPkn6bhEbaH3nkR1wrf4aK4=",
- "requires": {
- "fbjs": "0.8.16",
- "immutable": "3.7.6",
- "object-assign": "4.1.1"
- }
- },
- "draft-js-export-html": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/draft-js-export-html/-/draft-js-export-html-0.6.0.tgz",
- "integrity": "sha1-zIDwVExD0Kf+28U8DLCRToCQ92k=",
- "requires": {
- "draft-js-utils": "1.2.0"
- }
- },
- "draft-js-export-markdown": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/draft-js-export-markdown/-/draft-js-export-markdown-0.3.0.tgz",
- "integrity": "sha1-hjkOA86vHTR/xhaGerf1Net2v0I=",
- "requires": {
- "draft-js-utils": "1.2.0"
- }
- },
- "draft-js-utils": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/draft-js-utils/-/draft-js-utils-1.2.0.tgz",
- "integrity": "sha1-9csj6xZzJf/tPXmIL9wxdyHS/RI="
- },
- "ecc-jsbn": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
- "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
- "optional": true,
- "requires": {
- "jsbn": "0.1.1"
- }
- },
- "ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
- "dev": true
- },
- "emojione": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/emojione/-/emojione-2.2.7.tgz",
- "integrity": "sha1-RkV89rmy+NoTroouTlR94G7hXpY="
- },
- "emojis-list": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
- "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
- "dev": true
- },
- "encodeurl": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz",
- "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=",
- "dev": true
- },
- "encoding": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
- "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
- "requires": {
- "iconv-lite": "0.4.19"
- }
- },
- "engine.io": {
- "version": "1.8.3",
- "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.3.tgz",
- "integrity": "sha1-jef5eJXSDTm4X4ju7nd7K9QrE9Q=",
- "dev": true,
- "requires": {
- "accepts": "1.3.3",
- "base64id": "1.0.0",
- "cookie": "0.3.1",
- "debug": "2.3.3",
- "engine.io-parser": "1.3.2",
- "ws": "1.1.2"
- },
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=",
- "dev": true,
- "requires": {
- "ms": "0.7.2"
- }
- },
- "ms": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
- "dev": true
- }
- }
- },
- "engine.io-client": {
- "version": "1.8.3",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.3.tgz",
- "integrity": "sha1-F5jtk0USRkU9TG9jXXogH+lA1as=",
- "dev": true,
- "requires": {
- "component-emitter": "1.2.1",
- "component-inherit": "0.0.3",
- "debug": "2.3.3",
- "engine.io-parser": "1.3.2",
- "has-cors": "1.1.0",
- "indexof": "0.0.1",
- "parsejson": "0.0.3",
- "parseqs": "0.0.5",
- "parseuri": "0.0.5",
- "ws": "1.1.2",
- "xmlhttprequest-ssl": "1.5.3",
- "yeast": "0.1.2"
- },
- "dependencies": {
- "component-emitter": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
- "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
- "dev": true
- },
- "debug": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=",
- "dev": true,
- "requires": {
- "ms": "0.7.2"
- }
- },
- "ms": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
- "dev": true
- }
- }
- },
- "engine.io-parser": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz",
- "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=",
- "dev": true,
- "requires": {
- "after": "0.8.2",
- "arraybuffer.slice": "0.0.6",
- "base64-arraybuffer": "0.1.5",
- "blob": "0.0.4",
- "has-binary": "0.1.7",
- "wtf-8": "1.0.0"
- }
- },
- "enhanced-resolve": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz",
- "integrity": "sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=",
- "dev": true,
- "requires": {
- "graceful-fs": "4.1.11",
- "memory-fs": "0.2.0",
- "tapable": "0.1.10"
- },
- "dependencies": {
- "memory-fs": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz",
- "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=",
- "dev": true
- }
- }
- },
- "ent": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz",
- "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=",
- "dev": true
- },
- "entities": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz",
- "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA="
- },
- "errno": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz",
- "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=",
- "dev": true,
- "requires": {
- "prr": "0.0.0"
- }
- },
- "es-abstract": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.9.0.tgz",
- "integrity": "sha512-kk3IJoKo7A3pWJc0OV8yZ/VEX2oSUytfekrJiqoxBlKJMFAJVJVpGdHClCCTdv+Fn2zHfpDHHIelMFhZVfef3Q==",
- "dev": true,
- "requires": {
- "es-to-primitive": "1.1.1",
- "function-bind": "1.1.1",
- "has": "1.0.1",
- "is-callable": "1.1.3",
- "is-regex": "1.0.4"
- }
- },
- "es-to-primitive": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz",
- "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=",
- "dev": true,
- "requires": {
- "is-callable": "1.1.3",
- "is-date-object": "1.0.1",
- "is-symbol": "1.0.1"
- }
- },
- "es5-ext": {
- "version": "0.10.35",
- "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.35.tgz",
- "integrity": "sha1-GO6FjOajxFx9eekcFfzKnsVoSU8=",
- "dev": true,
- "requires": {
- "es6-iterator": "2.0.3",
- "es6-symbol": "3.1.1"
- }
- },
- "es6-iterator": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
- "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35",
- "es6-symbol": "3.1.1"
- }
- },
- "es6-map": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz",
- "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35",
- "es6-iterator": "2.0.3",
- "es6-set": "0.1.5",
- "es6-symbol": "3.1.1",
- "event-emitter": "0.3.5"
- }
- },
- "es6-set": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz",
- "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35",
- "es6-iterator": "2.0.3",
- "es6-symbol": "3.1.1",
- "event-emitter": "0.3.5"
- }
- },
- "es6-symbol": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
- "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35"
- }
- },
- "es6-weak-map": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz",
- "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35",
- "es6-iterator": "2.0.3",
- "es6-symbol": "3.1.1"
- }
- },
- "escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true
- },
- "escope": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz",
- "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=",
- "dev": true,
- "requires": {
- "es6-map": "0.1.5",
- "es6-weak-map": "2.0.2",
- "esrecurse": "4.2.0",
- "estraverse": "4.2.0"
- }
- },
- "eslint": {
- "version": "3.19.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz",
- "integrity": "sha1-yPxiAcf0DdCJQbh8CFdnOGpnmsw=",
- "dev": true,
- "requires": {
- "babel-code-frame": "6.26.0",
- "chalk": "1.1.3",
- "concat-stream": "1.6.0",
- "debug": "2.6.9",
- "doctrine": "2.0.0",
- "escope": "3.6.0",
- "espree": "3.5.1",
- "esquery": "1.0.0",
- "estraverse": "4.2.0",
- "esutils": "2.0.2",
- "file-entry-cache": "2.0.0",
- "glob": "7.1.2",
- "globals": "9.18.0",
- "ignore": "3.3.5",
- "imurmurhash": "0.1.4",
- "inquirer": "0.12.0",
- "is-my-json-valid": "2.16.1",
- "is-resolvable": "1.0.0",
- "js-yaml": "3.10.0",
- "json-stable-stringify": "1.0.1",
- "levn": "0.3.0",
- "lodash": "4.17.4",
- "mkdirp": "0.5.1",
- "natural-compare": "1.4.0",
- "optionator": "0.8.2",
- "path-is-inside": "1.0.2",
- "pluralize": "1.2.1",
- "progress": "1.1.8",
- "require-uncached": "1.0.3",
- "shelljs": "0.7.8",
- "strip-bom": "3.0.0",
- "strip-json-comments": "2.0.1",
- "table": "3.8.3",
- "text-table": "0.2.0",
- "user-home": "2.0.0"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- },
- "user-home": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz",
- "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=",
- "dev": true,
- "requires": {
- "os-homedir": "1.0.2"
- }
- }
- }
- },
- "eslint-config-google": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.7.1.tgz",
- "integrity": "sha1-VZj4SY6eB4Qg80uASVuNlZ9lH7I=",
- "dev": true
- },
- "eslint-plugin-babel": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-babel/-/eslint-plugin-babel-4.1.2.tgz",
- "integrity": "sha1-eSAqDjV1fdkngJGbIzbx+i/lPB4=",
- "dev": true
- },
- "eslint-plugin-flowtype": {
- "version": "2.39.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz",
- "integrity": "sha512-RiQv+7Z9QDJuzt+NO8sYgkLGT+h+WeCrxP7y8lI7wpU41x3x/2o3PGtHk9ck8QnA9/mlbNcy/hG0eKvmd7npaA==",
- "dev": true,
- "requires": {
- "lodash": "4.17.4"
- }
- },
- "eslint-plugin-react": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz",
- "integrity": "sha512-KC7Snr4YsWZD5flu6A5c0AcIZidzW3Exbqp7OT67OaD2AppJtlBr/GuPrW/vaQM/yfZotEvKAdrxrO+v8vwYJA==",
- "dev": true,
- "requires": {
- "doctrine": "2.1.0",
- "has": "1.0.1",
- "jsx-ast-utils": "2.0.1",
- "prop-types": "15.6.0"
- },
- "dependencies": {
- "doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "requires": {
- "esutils": "2.0.2"
- }
- }
- }
- },
- "espree": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.1.tgz",
- "integrity": "sha1-DJiLirRttTEAoZVK5LqZXd0n2H4=",
- "dev": true,
- "requires": {
- "acorn": "5.1.2",
- "acorn-jsx": "3.0.1"
- }
- },
- "esprima": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz",
- "integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==",
- "dev": true
- },
- "esquery": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz",
- "integrity": "sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo=",
- "dev": true,
- "requires": {
- "estraverse": "4.2.0"
- }
- },
- "esrecurse": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz",
- "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=",
- "dev": true,
- "requires": {
- "estraverse": "4.2.0",
- "object-assign": "4.1.1"
- }
- },
- "estraverse": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
- "dev": true
- },
- "estree-walker": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.0.tgz",
- "integrity": "sha1-quO1fELeuAEONJyJJGLw5xxd0ao=",
- "dev": true
- },
- "esutils": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
- "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
- "dev": true
- },
- "event-emitter": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
- "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
- "dev": true,
- "requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.35"
- }
- },
- "eventemitter3": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz",
- "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=",
- "dev": true
- },
- "events": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
- "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=",
- "dev": true
- },
- "except": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/except/-/except-0.1.3.tgz",
- "integrity": "sha1-mCYckZWFUVNrREgiOOl4P7c9KSo=",
- "requires": {
- "indexof": "0.0.1"
- }
- },
- "exit-hook": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz",
- "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=",
- "dev": true
- },
- "expand-braces": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz",
- "integrity": "sha1-SIsdHSRRyz06axks/AMPRMWFX+o=",
- "dev": true,
- "requires": {
- "array-slice": "0.2.3",
- "array-unique": "0.2.1",
- "braces": "0.1.5"
- },
- "dependencies": {
- "braces": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz",
- "integrity": "sha1-wIVxEIUpHYt1/ddOqw+FlygHEeY=",
- "dev": true,
- "requires": {
- "expand-range": "0.1.1"
- }
- },
- "expand-range": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz",
- "integrity": "sha1-TLjtoJk8pW+k9B/ELzy7TMrf8EQ=",
- "dev": true,
- "requires": {
- "is-number": "0.1.1",
- "repeat-string": "0.2.2"
- }
- },
- "is-number": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz",
- "integrity": "sha1-aaevEWlj1HIG7JvZtIoUIW8eOAY=",
- "dev": true
- },
- "repeat-string": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz",
- "integrity": "sha1-x6jTI2BoNiBZp+RlH8aITosftK4=",
- "dev": true
- }
- }
- },
- "expand-brackets": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
- "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
- "dev": true,
- "requires": {
- "is-posix-bracket": "0.1.1"
- }
- },
- "expand-range": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
- "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
- "dev": true,
- "requires": {
- "fill-range": "2.2.3"
- }
- },
- "expect": {
- "version": "1.20.2",
- "resolved": "https://registry.npmjs.org/expect/-/expect-1.20.2.tgz",
- "integrity": "sha1-1Fj+TFYAQDa64yMkFqP2Nh8E+WU=",
- "dev": true,
- "requires": {
- "define-properties": "1.1.2",
- "has": "1.0.1",
- "is-equal": "1.5.5",
- "is-regex": "1.0.4",
- "object-inspect": "1.3.0",
- "object-keys": "1.0.11",
- "tmatch": "2.0.1"
- }
- },
- "extend": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
- "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ="
- },
- "extglob": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
- "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
- "dev": true,
- "requires": {
- "is-extglob": "1.0.0"
- }
- },
- "extsprintf": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
- },
- "fast-deep-equal": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
- "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8="
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
- },
- "fbemitter": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-2.1.1.tgz",
- "integrity": "sha1-Uj4U/a9SSIBbsC9i78M75wP1GGU=",
- "requires": {
- "fbjs": "0.8.16"
- }
- },
- "fbjs": {
- "version": "0.8.16",
- "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz",
- "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=",
- "requires": {
- "core-js": "1.2.7",
- "isomorphic-fetch": "2.2.1",
- "loose-envify": "1.3.1",
- "object-assign": "4.1.1",
- "promise": "7.3.1",
- "setimmediate": "1.0.5",
- "ua-parser-js": "0.7.17"
- },
- "dependencies": {
- "core-js": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
- "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
- }
- }
- },
- "figures": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
- "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
- "dev": true,
- "requires": {
- "escape-string-regexp": "1.0.5",
- "object-assign": "4.1.1"
- }
- },
- "file-entry-cache": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz",
- "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=",
- "dev": true,
- "requires": {
- "flat-cache": "1.3.0",
- "object-assign": "4.1.1"
- }
- },
- "file-saver": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-1.3.3.tgz",
- "integrity": "sha1-zdTETTqiZOrC9o7BZbx5HDSvEjI="
- },
- "filename-regex": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz",
- "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=",
- "dev": true
- },
- "filesize": {
- "version": "3.5.6",
- "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.5.6.tgz",
- "integrity": "sha1-X9mPPqyU7JUW747VeC+thKAaCho="
- },
- "fill-range": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
- "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
- "dev": true,
- "requires": {
- "is-number": "2.1.0",
- "isobject": "2.1.0",
- "randomatic": "1.1.7",
- "repeat-element": "1.1.2",
- "repeat-string": "1.6.1"
- }
- },
- "finalhandler": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz",
- "integrity": "sha1-AHrqM9Gk0+QgF/YkhIrVjSEvgU8=",
- "dev": true,
- "requires": {
- "debug": "2.6.9",
- "encodeurl": "1.0.1",
- "escape-html": "1.0.3",
- "on-finished": "2.3.0",
- "parseurl": "1.3.2",
- "statuses": "1.3.1",
- "unpipe": "1.0.0"
- }
- },
- "find-cache-dir": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz",
- "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=",
- "dev": true,
- "requires": {
- "commondir": "1.0.1",
- "mkdirp": "0.5.1",
- "pkg-dir": "1.0.0"
- }
- },
- "find-up": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
- "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
- "dev": true,
- "requires": {
- "path-exists": "2.1.0",
- "pinkie-promise": "2.0.1"
- }
- },
- "flat-cache": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz",
- "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=",
- "dev": true,
- "requires": {
- "circular-json": "0.3.3",
- "del": "2.2.2",
- "graceful-fs": "4.1.11",
- "write": "0.2.1"
- }
- },
- "flow-parser": {
- "version": "0.57.3",
- "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.57.3.tgz",
- "integrity": "sha1-uNJBobHLrgQ6+nl2458mmYjY/jQ=",
- "dev": true
- },
- "flux": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/flux/-/flux-2.1.1.tgz",
- "integrity": "sha1-LGrGUtQzdIiWhInGWG86/yajjqQ=",
- "requires": {
- "fbemitter": "2.1.1",
- "fbjs": "0.1.0-alpha.7",
- "immutable": "3.7.6"
- },
- "dependencies": {
- "core-js": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
- "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
- },
- "fbjs": {
- "version": "0.1.0-alpha.7",
- "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.1.0-alpha.7.tgz",
- "integrity": "sha1-rUMIuPIy+zxzYDNJ6nJdHpw5Mjw=",
- "requires": {
- "core-js": "1.2.7",
- "promise": "7.3.1",
- "whatwg-fetch": "0.9.0"
- }
- },
- "whatwg-fetch": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-0.9.0.tgz",
- "integrity": "sha1-DjaExsuZlbQ+/J3wPkw2XZX9nMA="
- }
- }
- },
- "focus-trap": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-2.4.3.tgz",
- "integrity": "sha512-sT5Ip9nyAIxWq8Apt1Fdv6yTci5GotaOtO5Ro1/+F3PizttNBcCYz8j/Qze54PPFK73KUbOqh++HUCiyNPqvhA==",
- "requires": {
- "tabbable": "1.1.2"
- }
- },
- "focus-trap-react": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/focus-trap-react/-/focus-trap-react-3.1.2.tgz",
- "integrity": "sha512-MoQmONoy9gRPyrC5DGezkcOMGgx7MtIOAQDHe098UtL2sA2vmucJwEmQisb+8LRXNYFHxuw5zJ1oLFeKu4Mteg==",
- "requires": {
- "focus-trap": "2.4.3"
- }
- },
- "for-in": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
- "dev": true
- },
- "for-own": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
- "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
- "dev": true,
- "requires": {
- "for-in": "1.0.2"
- }
- },
- "foreach": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
- "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=",
- "dev": true
- },
- "foreachasync": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz",
- "integrity": "sha1-VQKYfchxS+M5IJfzLgBxyd7gfPY=",
- "dev": true
- },
- "forever-agent": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
- },
- "form-data": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz",
- "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=",
- "requires": {
- "asynckit": "0.4.0",
- "combined-stream": "1.0.5",
- "mime-types": "2.1.17"
- }
- },
- "formatio": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz",
- "integrity": "sha1-XtPM1jZVEJc4NGXZlhmRAOhhYek=",
- "dev": true,
- "requires": {
- "samsam": "1.1.2"
- }
- },
- "fs-access": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz",
- "integrity": "sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o=",
- "dev": true,
- "requires": {
- "null-check": "1.0.0"
- }
- },
- "fs-readdir-recursive": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz",
- "integrity": "sha1-jNF0XItPiinIyuw5JHaSG6GV9WA=",
- "dev": true
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
- "dev": true
- },
- "fsevents": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz",
- "integrity": "sha1-MoK3E/s62A7eDp/PRhG1qm/AM/Q=",
- "dev": true,
- "optional": true,
- "requires": {
- "nan": "2.7.0",
- "node-pre-gyp": "0.6.36"
- },
- "dependencies": {
- "abbrev": {
- "version": "1.1.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "ajv": {
- "version": "4.11.8",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "co": "4.6.0",
- "json-stable-stringify": "1.0.1"
- }
- },
- "ansi-regex": {
- "version": "2.1.1",
- "bundled": true,
- "dev": true
- },
- "aproba": {
- "version": "1.1.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "are-we-there-yet": {
- "version": "1.1.4",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "delegates": "1.0.0",
- "readable-stream": "2.2.9"
- }
- },
- "asn1": {
- "version": "0.2.3",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "assert-plus": {
- "version": "0.2.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "asynckit": {
- "version": "0.4.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "aws-sign2": {
- "version": "0.6.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "aws4": {
- "version": "1.6.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "balanced-match": {
- "version": "0.4.2",
- "bundled": true,
- "dev": true
- },
- "bcrypt-pbkdf": {
- "version": "1.0.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "tweetnacl": "0.14.5"
- }
- },
- "block-stream": {
- "version": "0.0.9",
- "bundled": true,
- "dev": true,
- "requires": {
- "inherits": "2.0.3"
- }
- },
- "boom": {
- "version": "2.10.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "hoek": "2.16.3"
- }
- },
- "brace-expansion": {
- "version": "1.1.7",
- "bundled": true,
- "dev": true,
- "requires": {
- "balanced-match": "0.4.2",
- "concat-map": "0.0.1"
- }
- },
- "buffer-shims": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true
- },
- "caseless": {
- "version": "0.12.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "co": {
- "version": "4.6.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "code-point-at": {
- "version": "1.1.0",
- "bundled": true,
- "dev": true
- },
- "combined-stream": {
- "version": "1.0.5",
- "bundled": true,
- "dev": true,
- "requires": {
- "delayed-stream": "1.0.0"
- }
- },
- "concat-map": {
- "version": "0.0.1",
- "bundled": true,
- "dev": true
- },
- "console-control-strings": {
- "version": "1.1.0",
- "bundled": true,
- "dev": true
- },
- "core-util-is": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true
- },
- "cryptiles": {
- "version": "2.0.5",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "boom": "2.10.1"
- }
- },
- "dashdash": {
- "version": "1.14.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "assert-plus": "1.0.0"
- },
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- }
- }
- },
- "debug": {
- "version": "2.6.8",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "deep-extend": {
- "version": "0.4.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "delayed-stream": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true
- },
- "delegates": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "ecc-jsbn": {
- "version": "0.1.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "jsbn": "0.1.1"
- }
- },
- "extend": {
- "version": "3.0.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "extsprintf": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true
- },
- "forever-agent": {
- "version": "0.6.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "form-data": {
- "version": "2.1.4",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "asynckit": "0.4.0",
- "combined-stream": "1.0.5",
- "mime-types": "2.1.15"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true
- },
- "fstream": {
- "version": "1.0.11",
- "bundled": true,
- "dev": true,
- "requires": {
- "graceful-fs": "4.1.11",
- "inherits": "2.0.3",
- "mkdirp": "0.5.1",
- "rimraf": "2.6.1"
- }
- },
- "fstream-ignore": {
- "version": "1.0.5",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "fstream": "1.0.11",
- "inherits": "2.0.3",
- "minimatch": "3.0.4"
- }
- },
- "gauge": {
- "version": "2.7.4",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "aproba": "1.1.1",
- "console-control-strings": "1.1.0",
- "has-unicode": "2.0.1",
- "object-assign": "4.1.1",
- "signal-exit": "3.0.2",
- "string-width": "1.0.2",
- "strip-ansi": "3.0.1",
- "wide-align": "1.1.2"
- }
- },
- "getpass": {
- "version": "0.1.7",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "assert-plus": "1.0.0"
- },
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- }
- }
- },
- "glob": {
- "version": "7.1.2",
- "bundled": true,
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- },
- "graceful-fs": {
- "version": "4.1.11",
- "bundled": true,
- "dev": true
- },
- "har-schema": {
- "version": "1.0.5",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "har-validator": {
- "version": "4.2.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "ajv": "4.11.8",
- "har-schema": "1.0.5"
- }
- },
- "has-unicode": {
- "version": "2.0.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "hawk": {
- "version": "3.1.3",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "boom": "2.10.1",
- "cryptiles": "2.0.5",
- "hoek": "2.16.3",
- "sntp": "1.0.9"
- }
- },
- "hoek": {
- "version": "2.16.3",
- "bundled": true,
- "dev": true
- },
- "http-signature": {
- "version": "1.1.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "assert-plus": "0.2.0",
- "jsprim": "1.4.0",
- "sshpk": "1.13.0"
- }
- },
- "inflight": {
- "version": "1.0.6",
- "bundled": true,
- "dev": true,
- "requires": {
- "once": "1.4.0",
- "wrappy": "1.0.2"
- }
- },
- "inherits": {
- "version": "2.0.3",
- "bundled": true,
- "dev": true
- },
- "ini": {
- "version": "1.3.4",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "is-fullwidth-code-point": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "requires": {
- "number-is-nan": "1.0.1"
- }
- },
- "is-typedarray": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "isarray": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true
- },
- "isstream": {
- "version": "0.1.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "jodid25519": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "jsbn": "0.1.1"
- }
- },
- "jsbn": {
- "version": "0.1.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "json-schema": {
- "version": "0.2.3",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "json-stable-stringify": {
- "version": "1.0.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "jsonify": "0.0.0"
- }
- },
- "json-stringify-safe": {
- "version": "5.0.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "jsonify": {
- "version": "0.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "jsprim": {
- "version": "1.4.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.0.2",
- "json-schema": "0.2.3",
- "verror": "1.3.6"
- },
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- }
- }
- },
- "mime-db": {
- "version": "1.27.0",
- "bundled": true,
- "dev": true
- },
- "mime-types": {
- "version": "2.1.15",
- "bundled": true,
- "dev": true,
- "requires": {
- "mime-db": "1.27.0"
- }
- },
- "minimatch": {
- "version": "3.0.4",
- "bundled": true,
- "dev": true,
- "requires": {
- "brace-expansion": "1.1.7"
- }
- },
- "minimist": {
- "version": "0.0.8",
- "bundled": true,
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "minimist": "0.0.8"
- }
- },
- "ms": {
- "version": "2.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "node-pre-gyp": {
- "version": "0.6.36",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "mkdirp": "0.5.1",
- "nopt": "4.0.1",
- "npmlog": "4.1.0",
- "rc": "1.2.1",
- "request": "2.81.0",
- "rimraf": "2.6.1",
- "semver": "5.3.0",
- "tar": "2.2.1",
- "tar-pack": "3.4.0"
- }
- },
- "nopt": {
- "version": "4.0.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "abbrev": "1.1.0",
- "osenv": "0.1.4"
- }
- },
- "npmlog": {
- "version": "4.1.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "are-we-there-yet": "1.1.4",
- "console-control-strings": "1.1.0",
- "gauge": "2.7.4",
- "set-blocking": "2.0.0"
- }
- },
- "number-is-nan": {
- "version": "1.0.1",
- "bundled": true,
- "dev": true
- },
- "oauth-sign": {
- "version": "0.8.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "object-assign": {
- "version": "4.1.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "once": {
- "version": "1.4.0",
- "bundled": true,
- "dev": true,
- "requires": {
- "wrappy": "1.0.2"
- }
- },
- "os-homedir": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "os-tmpdir": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "osenv": {
- "version": "0.1.4",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "os-homedir": "1.0.2",
- "os-tmpdir": "1.0.2"
- }
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "bundled": true,
- "dev": true
- },
- "performance-now": {
- "version": "0.2.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "process-nextick-args": {
- "version": "1.0.7",
- "bundled": true,
- "dev": true
- },
- "punycode": {
- "version": "1.4.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "qs": {
- "version": "6.4.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "rc": {
- "version": "1.2.1",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "deep-extend": "0.4.2",
- "ini": "1.3.4",
- "minimist": "1.2.0",
- "strip-json-comments": "2.0.1"
- },
- "dependencies": {
- "minimist": {
- "version": "1.2.0",
- "bundled": true,
- "dev": true,
- "optional": true
- }
- }
- },
- "readable-stream": {
- "version": "2.2.9",
- "bundled": true,
- "dev": true,
- "requires": {
- "buffer-shims": "1.0.0",
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "isarray": "1.0.0",
- "process-nextick-args": "1.0.7",
- "string_decoder": "1.0.1",
- "util-deprecate": "1.0.2"
- }
- },
- "request": {
- "version": "2.81.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "aws-sign2": "0.6.0",
- "aws4": "1.6.0",
- "caseless": "0.12.0",
- "combined-stream": "1.0.5",
- "extend": "3.0.1",
- "forever-agent": "0.6.1",
- "form-data": "2.1.4",
- "har-validator": "4.2.1",
- "hawk": "3.1.3",
- "http-signature": "1.1.1",
- "is-typedarray": "1.0.0",
- "isstream": "0.1.2",
- "json-stringify-safe": "5.0.1",
- "mime-types": "2.1.15",
- "oauth-sign": "0.8.2",
- "performance-now": "0.2.0",
- "qs": "6.4.0",
- "safe-buffer": "5.0.1",
- "stringstream": "0.0.5",
- "tough-cookie": "2.3.2",
- "tunnel-agent": "0.6.0",
- "uuid": "3.0.1"
- }
- },
- "rimraf": {
- "version": "2.6.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "glob": "7.1.2"
- }
- },
- "safe-buffer": {
- "version": "5.0.1",
- "bundled": true,
- "dev": true
- },
- "semver": {
- "version": "5.3.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "set-blocking": {
- "version": "2.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "signal-exit": {
- "version": "3.0.2",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "sntp": {
- "version": "1.0.9",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "hoek": "2.16.3"
- }
- },
- "sshpk": {
- "version": "1.13.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "asn1": "0.2.3",
- "assert-plus": "1.0.0",
- "bcrypt-pbkdf": "1.0.1",
- "dashdash": "1.14.1",
- "ecc-jsbn": "0.1.1",
- "getpass": "0.1.7",
- "jodid25519": "1.0.2",
- "jsbn": "0.1.1",
- "tweetnacl": "0.14.5"
- },
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "bundled": true,
- "dev": true,
- "optional": true
- }
- }
- },
- "string-width": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true,
- "requires": {
- "code-point-at": "1.1.0",
- "is-fullwidth-code-point": "1.0.0",
- "strip-ansi": "3.0.1"
- }
- },
- "string_decoder": {
- "version": "1.0.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "safe-buffer": "5.0.1"
- }
- },
- "stringstream": {
- "version": "0.0.5",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "strip-ansi": {
- "version": "3.0.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "ansi-regex": "2.1.1"
- }
- },
- "strip-json-comments": {
- "version": "2.0.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "tar": {
- "version": "2.2.1",
- "bundled": true,
- "dev": true,
- "requires": {
- "block-stream": "0.0.9",
- "fstream": "1.0.11",
- "inherits": "2.0.3"
- }
- },
- "tar-pack": {
- "version": "3.4.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "debug": "2.6.8",
- "fstream": "1.0.11",
- "fstream-ignore": "1.0.5",
- "once": "1.4.0",
- "readable-stream": "2.2.9",
- "rimraf": "2.6.1",
- "tar": "2.2.1",
- "uid-number": "0.0.6"
- }
- },
- "tough-cookie": {
- "version": "2.3.2",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "punycode": "1.4.1"
- }
- },
- "tunnel-agent": {
- "version": "0.6.0",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "safe-buffer": "5.0.1"
- }
- },
- "tweetnacl": {
- "version": "0.14.5",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "uid-number": {
- "version": "0.0.6",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "util-deprecate": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true
- },
- "uuid": {
- "version": "3.0.1",
- "bundled": true,
- "dev": true,
- "optional": true
- },
- "verror": {
- "version": "1.3.6",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "extsprintf": "1.0.2"
- }
- },
- "wide-align": {
- "version": "1.1.2",
- "bundled": true,
- "dev": true,
- "optional": true,
- "requires": {
- "string-width": "1.0.2"
- }
- },
- "wrappy": {
- "version": "1.0.2",
- "bundled": true,
- "dev": true
- }
- }
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
- "dev": true
- },
- "fuse.js": {
- "version": "2.7.4",
- "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-2.7.4.tgz",
- "integrity": "sha1-luQg/efvARrEnCWKYhMU/ldlNvk="
- },
- "gemini-scrollbar": {
- "version": "github:matrix-org/gemini-scrollbar#b302279810d05319ac5ff1bd34910bff32325c7b"
- },
- "generate-function": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz",
- "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=",
- "dev": true
- },
- "generate-object-property": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz",
- "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
- "dev": true,
- "requires": {
- "is-property": "1.0.2"
- }
- },
- "getpass": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
- "requires": {
- "assert-plus": "1.0.0"
- }
- },
- "gfm.css": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/gfm.css/-/gfm.css-1.1.2.tgz",
- "integrity": "sha512-KhK3rqxMj+UTLRxWnfUA5n8XZYMWfHrrcCxtWResYR2B3hWIqBM6v9FPGZSlVuX+ScLewizOvNkjYXuPs95ThQ=="
- },
- "glob": {
- "version": "5.0.15",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
- "requires": {
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- },
- "glob-base": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
- "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
- "dev": true,
- "requires": {
- "glob-parent": "2.0.0",
- "is-glob": "2.0.1"
- }
- },
- "glob-parent": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
- "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
- "dev": true,
- "requires": {
- "is-glob": "2.0.1"
- }
- },
- "globals": {
- "version": "9.18.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=",
- "dev": true
- },
- "globby": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz",
- "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=",
- "dev": true,
- "requires": {
- "array-union": "1.0.2",
- "arrify": "1.0.1",
- "glob": "7.1.2",
- "object-assign": "4.1.1",
- "pify": "2.3.0",
- "pinkie-promise": "2.0.1"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- }
- }
- },
- "graceful-fs": {
- "version": "4.1.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
- "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
- "dev": true
- },
- "har-schema": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
- },
- "har-validator": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
- "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
- "requires": {
- "ajv": "5.2.3",
- "har-schema": "2.0.0"
- }
- },
- "has": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
- "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=",
- "dev": true,
- "requires": {
- "function-bind": "1.1.1"
- }
- },
- "has-ansi": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
- "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
- "dev": true,
- "requires": {
- "ansi-regex": "2.1.1"
- }
- },
- "has-binary": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz",
- "integrity": "sha1-aOYesWIQyVRaClzOBqhzkS/h5ow=",
- "dev": true,
- "requires": {
- "isarray": "0.0.1"
- },
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
- "dev": true
- }
- }
- },
- "has-cors": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz",
- "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=",
- "dev": true
- },
- "has-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
- "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
- "dev": true
- },
- "hawk": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
- "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
- "requires": {
- "boom": "4.3.1",
- "cryptiles": "3.1.2",
- "sntp": "2.0.2"
- }
- },
- "he": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
- "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=",
- "dev": true
- },
- "highlight.js": {
- "version": "9.12.0",
- "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz",
- "integrity": "sha1-5tnb5Xy+/mB1HwKvM2GVhwyQwB4="
- },
- "hoist-non-react-statics": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.0.tgz",
- "integrity": "sha512-6Bl6XsDT1ntE0lHbIhr4Kp2PGcleGZ66qu5Jqk8lc0Xc/IeG6gVLmwUGs/K0Us+L8VWoKgj0uWdPMataOsm31w=="
- },
- "home-or-tmp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
- "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
- "dev": true,
- "requires": {
- "os-homedir": "1.0.2",
- "os-tmpdir": "1.0.2"
- }
- },
- "htmlparser2": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz",
- "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=",
- "requires": {
- "domelementtype": "1.3.0",
- "domhandler": "2.4.1",
- "domutils": "1.6.2",
- "entities": "1.1.1",
- "inherits": "2.0.3",
- "readable-stream": "2.3.3"
- }
- },
- "http-errors": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz",
- "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=",
- "dev": true,
- "requires": {
- "depd": "1.1.1",
- "inherits": "2.0.3",
- "setprototypeof": "1.0.3",
- "statuses": "1.3.1"
- }
- },
- "http-proxy": {
- "version": "1.16.2",
- "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz",
- "integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=",
- "dev": true,
- "requires": {
- "eventemitter3": "1.2.0",
- "requires-port": "1.0.0"
- }
- },
- "http-signature": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
- "requires": {
- "assert-plus": "1.0.0",
- "jsprim": "1.4.1",
- "sshpk": "1.13.1"
- }
- },
- "https-browserify": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz",
- "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.19",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
- "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ=="
- },
- "ieee754": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz",
- "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=",
- "dev": true
- },
- "ignore": {
- "version": "3.3.5",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.5.tgz",
- "integrity": "sha512-JLH93mL8amZQhh/p6mfQgVBH3M6epNq3DfsXsTSuSrInVjwyYlFE1nv2AgfRCC8PoOhM0jwQ5v8s9LgbK7yGDw==",
- "dev": true
- },
- "immutable": {
- "version": "3.7.6",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz",
- "integrity": "sha1-E7TTyxK++hVIKib+Gy665kAHHks="
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true
- },
- "indexof": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
- "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10="
- },
- "inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "requires": {
- "once": "1.4.0",
- "wrappy": "1.0.2"
- }
- },
- "inherits": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
- },
- "inquirer": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz",
- "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=",
- "dev": true,
- "requires": {
- "ansi-escapes": "1.4.0",
- "ansi-regex": "2.1.1",
- "chalk": "1.1.3",
- "cli-cursor": "1.0.2",
- "cli-width": "2.2.0",
- "figures": "1.7.0",
- "lodash": "4.17.4",
- "readline2": "1.0.1",
- "run-async": "0.1.0",
- "rx-lite": "3.1.2",
- "string-width": "1.0.2",
- "strip-ansi": "3.0.1",
- "through": "2.3.8"
- }
- },
- "interpret": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.4.tgz",
- "integrity": "sha1-ggzdWIuGj/sZGoCVBtbJyPISsbA=",
- "dev": true
- },
- "invariant": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
- "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
- "requires": {
- "loose-envify": "1.3.1"
- }
- },
- "is-arrow-function": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-arrow-function/-/is-arrow-function-2.0.3.tgz",
- "integrity": "sha1-Kb4sLY2UUIUri7r7Y1unuNjofsI=",
- "dev": true,
- "requires": {
- "is-callable": "1.1.3"
- }
- },
- "is-binary-path": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
- "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
- "dev": true,
- "requires": {
- "binary-extensions": "1.10.0"
- }
- },
- "is-boolean-object": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.0.tgz",
- "integrity": "sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=",
- "dev": true
- },
- "is-buffer": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz",
- "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=",
- "dev": true
- },
- "is-callable": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz",
- "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=",
- "dev": true
- },
- "is-date-object": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
- "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
- "dev": true
- },
- "is-dotfile": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz",
- "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=",
- "dev": true
- },
- "is-equal": {
- "version": "1.5.5",
- "resolved": "https://registry.npmjs.org/is-equal/-/is-equal-1.5.5.tgz",
- "integrity": "sha1-XoXxlX4FKIMkf+s4aWWju6Ffuz0=",
- "dev": true,
- "requires": {
- "has": "1.0.1",
- "is-arrow-function": "2.0.3",
- "is-boolean-object": "1.0.0",
- "is-callable": "1.1.3",
- "is-date-object": "1.0.1",
- "is-generator-function": "1.0.6",
- "is-number-object": "1.0.3",
- "is-regex": "1.0.4",
- "is-string": "1.0.4",
- "is-symbol": "1.0.1",
- "object.entries": "1.0.4"
- }
- },
- "is-equal-shallow": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz",
- "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=",
- "dev": true,
- "requires": {
- "is-primitive": "2.0.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "is-extglob": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
- "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=",
- "dev": true
- },
- "is-finite": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
- "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
- "dev": true,
- "requires": {
- "number-is-nan": "1.0.1"
- }
- },
- "is-fullwidth-code-point": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
- "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
- "dev": true,
- "requires": {
- "number-is-nan": "1.0.1"
- }
- },
- "is-generator-function": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.6.tgz",
- "integrity": "sha1-nnFlPNFf/zQcecQVFGChMdMen8Q=",
- "dev": true
- },
- "is-glob": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
- "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
- "dev": true,
- "requires": {
- "is-extglob": "1.0.0"
- }
- },
- "is-my-json-valid": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz",
- "integrity": "sha512-ochPsqWS1WXj8ZnMIV0vnNXooaMhp7cyL4FMSIPKTtnV0Ha/T19G2b9kkhcNsabV9bxYkze7/aLZJb/bYuFduQ==",
- "dev": true,
- "requires": {
- "generate-function": "2.0.0",
- "generate-object-property": "1.2.0",
- "jsonpointer": "4.0.1",
- "xtend": "4.0.1"
- }
- },
- "is-number": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
- "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=",
- "dev": true,
- "requires": {
- "kind-of": "3.2.2"
- }
- },
- "is-number-object": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.3.tgz",
- "integrity": "sha1-8mWrian0RQNO9q/xWo8AsA9VF5k=",
- "dev": true
- },
- "is-path-cwd": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
- "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=",
- "dev": true
- },
- "is-path-in-cwd": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
- "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=",
- "dev": true,
- "requires": {
- "is-path-inside": "1.0.0"
- }
- },
- "is-path-inside": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz",
- "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=",
- "dev": true,
- "requires": {
- "path-is-inside": "1.0.2"
- }
- },
- "is-posix-bracket": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz",
- "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=",
- "dev": true
- },
- "is-primitive": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz",
- "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=",
- "dev": true
- },
- "is-property": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
- "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=",
- "dev": true
- },
- "is-regex": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
- "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
- "dev": true,
- "requires": {
- "has": "1.0.1"
- }
- },
- "is-resolvable": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz",
- "integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=",
- "dev": true,
- "requires": {
- "tryit": "1.0.3"
- }
- },
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
- },
- "is-string": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz",
- "integrity": "sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=",
- "dev": true
- },
- "is-symbol": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz",
- "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=",
- "dev": true
- },
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
- },
- "isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
- },
- "isbinaryfile": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz",
- "integrity": "sha1-Sj6XTsDLqQBNP8bN5yCeppNopiE=",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
- "isobject": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
- "dev": true,
- "requires": {
- "isarray": "1.0.0"
- }
- },
- "isomorphic-fetch": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
- "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
- "requires": {
- "node-fetch": "1.7.3",
- "whatwg-fetch": "1.1.1"
- }
- },
- "isstream": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
- },
- "jquery": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz",
- "integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c="
- },
- "js-tokens": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
- "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls="
- },
- "js-yaml": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
- "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
- "dev": true,
- "requires": {
- "argparse": "1.0.9",
- "esprima": "4.0.0"
- }
- },
- "jsbn": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
- "optional": true
- },
- "jsesc": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
- "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
- "dev": true
- },
- "json-loader": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz",
- "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==",
- "dev": true
- },
- "json-schema": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
- },
- "json-schema-traverse": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
- "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A="
- },
- "json-stable-stringify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
- "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
- "requires": {
- "jsonify": "0.0.0"
- }
- },
- "json-stringify-safe": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
- },
- "json3": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz",
- "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=",
- "dev": true
- },
- "json5": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
- "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
- "dev": true
- },
- "jsonify": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
- "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
- },
- "jsonpointer": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz",
- "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=",
- "dev": true
- },
- "jsprim": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
- "requires": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.3.0",
- "json-schema": "0.2.3",
- "verror": "1.10.0"
- }
- },
- "jsx-ast-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz",
- "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=",
- "dev": true,
- "requires": {
- "array-includes": "3.0.3"
- }
- },
- "karma": {
- "version": "1.7.1",
- "resolved": "https://registry.npmjs.org/karma/-/karma-1.7.1.tgz",
- "integrity": "sha512-k5pBjHDhmkdaUccnC7gE3mBzZjcxyxYsYVaqiL2G5AqlfLyBO5nw2VdNK+O16cveEPd/gIOWULH7gkiYYwVNHg==",
- "dev": true,
- "requires": {
- "bluebird": "3.5.1",
- "body-parser": "1.18.2",
- "chokidar": "1.7.0",
- "colors": "1.1.2",
- "combine-lists": "1.0.1",
- "connect": "3.6.5",
- "core-js": "2.5.1",
- "di": "0.0.1",
- "dom-serialize": "2.2.1",
- "expand-braces": "0.1.2",
- "glob": "7.1.2",
- "graceful-fs": "4.1.11",
- "http-proxy": "1.16.2",
- "isbinaryfile": "3.0.2",
- "lodash": "3.10.1",
- "log4js": "0.6.38",
- "mime": "1.4.1",
- "minimatch": "3.0.4",
- "optimist": "0.6.1",
- "qjobs": "1.1.5",
- "range-parser": "1.2.0",
- "rimraf": "2.6.2",
- "safe-buffer": "5.1.1",
- "socket.io": "1.7.3",
- "source-map": "0.5.7",
- "tmp": "0.0.31",
- "useragent": "2.2.1"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- },
- "lodash": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
- "dev": true
- }
- }
- },
- "karma-chrome-launcher": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.2.3.tgz",
- "integrity": "sha1-TG1wDRY6nTTGGO/YeRi+SeekqMk=",
- "dev": true,
- "requires": {
- "fs-access": "1.0.1",
- "which": "1.3.0"
- }
- },
- "karma-cli": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/karma-cli/-/karma-cli-0.1.2.tgz",
- "integrity": "sha1-ys6oQ3Hs4Zh2JlyPoQLru5/uSow=",
- "dev": true,
- "requires": {
- "resolve": "1.4.0"
- }
- },
- "karma-junit-reporter": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.4.2.tgz",
- "integrity": "sha1-SSojZyj+TJKqz0GfzQEQpDJ+nX8=",
- "dev": true,
- "requires": {
- "path-is-absolute": "1.0.1",
- "xmlbuilder": "3.1.0"
- }
- },
- "karma-logcapture-reporter": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/karma-logcapture-reporter/-/karma-logcapture-reporter-0.0.1.tgz",
- "integrity": "sha1-vxsLHJFeDeKVoV/i8BedQoG6zdw=",
- "dev": true
- },
- "karma-mocha": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/karma-mocha/-/karma-mocha-0.2.2.tgz",
- "integrity": "sha1-OI7ZF9oV3LGW0bkVwZNO+AMZP44=",
- "dev": true
- },
- "karma-sourcemap-loader": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz",
- "integrity": "sha1-kTIsd/jxPUb+0GKwQuEAnUxFBdg=",
- "dev": true,
- "requires": {
- "graceful-fs": "4.1.11"
- }
- },
- "karma-spec-reporter": {
- "version": "0.0.31",
- "resolved": "https://registry.npmjs.org/karma-spec-reporter/-/karma-spec-reporter-0.0.31.tgz",
- "integrity": "sha1-SDDccUihVcfXoYbmMjOaDYD63sM=",
- "dev": true,
- "requires": {
- "colors": "1.1.2"
- }
- },
- "karma-summary-reporter": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/karma-summary-reporter/-/karma-summary-reporter-1.3.3.tgz",
- "integrity": "sha1-nHQKJLYL+RNes59acylsTM0Q2Zs=",
- "dev": true,
- "requires": {
- "chalk": "1.1.3"
- }
- },
- "karma-webpack": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/karma-webpack/-/karma-webpack-1.8.1.tgz",
- "integrity": "sha1-OdX9Lt7qPMPvW0BZibN9Ww5qO04=",
- "dev": true,
- "requires": {
- "async": "0.9.2",
- "loader-utils": "0.2.17",
- "lodash": "3.10.1",
- "source-map": "0.1.43",
- "webpack-dev-middleware": "1.12.0"
- },
- "dependencies": {
- "lodash": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
- "dev": true
- },
- "source-map": {
- "version": "0.1.43",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
- "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
- "dev": true,
- "requires": {
- "amdefine": "1.0.1"
- }
- }
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "1.1.5"
- }
- },
- "lazy-cache": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
- "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
- "dev": true
- },
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "requires": {
- "prelude-ls": "1.1.2",
- "type-check": "0.3.2"
- }
- },
- "linkifyjs": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-2.1.5.tgz",
- "integrity": "sha512-8FqxPXQDLjI2nNHlM7eGewxE6DHvMbtiW0AiXzm0s4RkTwVZYRDTeVXkiRxLHTd4CuRBQY/JPtvtqJWdS7gHyA==",
- "requires": {
- "jquery": "3.2.1",
- "react": "15.6.2",
- "react-dom": "15.6.2"
- }
- },
- "loader-utils": {
- "version": "0.2.17",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
- "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
- "dev": true,
- "requires": {
- "big.js": "3.2.0",
- "emojis-list": "2.1.0",
- "json5": "0.5.1",
- "object-assign": "4.1.1"
- }
- },
- "lodash": {
- "version": "4.17.4",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4="
- },
- "lodash-es": {
- "version": "4.17.10",
- "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.10.tgz",
- "integrity": "sha512-iesFYPmxYYGTcmQK0sL8bX3TGHyM6b2qREaB4kamHfQyfPJP0xgoGxp19nsH16nsfquLdiyKyX3mQkfiSGV8Rg=="
- },
- "lodash.assign": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz",
- "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=",
- "dev": true
- },
- "lodash.pickby": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.pickby/-/lodash.pickby-4.6.0.tgz",
- "integrity": "sha1-feoh2MGNdwOifHBMFdO4SmfjOv8=",
- "dev": true
- },
- "log4js": {
- "version": "0.6.38",
- "resolved": "https://registry.npmjs.org/log4js/-/log4js-0.6.38.tgz",
- "integrity": "sha1-LElBFmldb7JUgJQ9P8hy5mKlIv0=",
- "dev": true,
- "requires": {
- "readable-stream": "1.0.34",
- "semver": "4.3.6"
- },
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
- "dev": true
- },
- "readable-stream": {
- "version": "1.0.34",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
- "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
- "dev": true,
- "requires": {
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "isarray": "0.0.1",
- "string_decoder": "0.10.31"
- }
- },
- "string_decoder": {
- "version": "0.10.31",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
- "dev": true
- }
- }
- },
- "lolex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz",
- "integrity": "sha1-fD2mL/yzDw9agKJWbKJORdigHzE=",
- "dev": true
- },
- "longest": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
- "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=",
- "dev": true
- },
- "loose-envify": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
- "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
- "requires": {
- "js-tokens": "3.0.2"
- }
- },
- "lru-cache": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz",
- "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=",
- "dev": true
- },
- "matrix-js-sdk": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-0.10.1.tgz",
- "integrity": "sha512-BLo+Okn2o///TyWBKtjFXvhlD32vGfr10eTE51hHx/jwaXO82VyGMzMi+IDPS4SDYUbvXI7PpamECeh9TXnV2w==",
- "requires": {
- "another-json": "0.2.0",
- "babel-runtime": "6.26.0",
- "bluebird": "3.5.1",
- "browser-request": "0.3.3",
- "content-type": "1.0.4",
- "request": "2.83.0"
- }
- },
- "matrix-mock-request": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/matrix-mock-request/-/matrix-mock-request-1.2.1.tgz",
- "integrity": "sha1-2aWrqNPYJG6I/3YyWYuZwUE/QjI=",
- "dev": true,
- "requires": {
- "bluebird": "3.5.1",
- "expect": "1.20.2"
- }
- },
- "matrix-react-test-utils": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/matrix-react-test-utils/-/matrix-react-test-utils-0.1.1.tgz",
- "integrity": "sha1-tUiETQ6+M46hucjxZHTDDRfDvfQ=",
- "dev": true,
- "requires": {
- "react": "15.6.2",
- "react-dom": "15.6.2"
- }
- },
- "mdurl": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
- "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4="
- },
- "media-typer": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
- "dev": true
- },
- "memoize-one": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-3.1.1.tgz",
- "integrity": "sha512-YqVh744GsMlZu6xkhGslPSqSurOv6P+kLN2J3ysBZfagLcL5FdRK/0UpgLoL8hwjjEvvAVkjJZyFP+1T6p1vgA=="
- },
- "memory-fs": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
- "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
- "dev": true,
- "requires": {
- "errno": "0.1.4",
- "readable-stream": "2.3.3"
- }
- },
- "micromatch": {
- "version": "2.3.11",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
- "dev": true,
- "requires": {
- "arr-diff": "2.0.0",
- "array-unique": "0.2.1",
- "braces": "1.8.5",
- "expand-brackets": "0.1.5",
- "extglob": "0.3.2",
- "filename-regex": "2.0.1",
- "is-extglob": "1.0.0",
- "is-glob": "2.0.1",
- "kind-of": "3.2.2",
- "normalize-path": "2.1.1",
- "object.omit": "2.0.1",
- "parse-glob": "3.0.4",
- "regex-cache": "0.4.4"
- }
- },
- "mime": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
- "dev": true
- },
- "mime-db": {
- "version": "1.30.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
- "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
- },
- "mime-types": {
- "version": "2.1.17",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
- "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
- "requires": {
- "mime-db": "1.30.0"
- }
- },
- "minimatch": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
- "requires": {
- "brace-expansion": "1.1.8"
- }
- },
- "minimist": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
- "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
- },
- "mkdirp": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
- "dev": true,
- "requires": {
- "minimist": "0.0.8"
- },
- "dependencies": {
- "minimist": {
- "version": "0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
- "dev": true
- }
- }
- },
- "mocha": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.1.1.tgz",
- "integrity": "sha512-kKKs/H1KrMMQIEsWNxGmb4/BGsmj0dkeyotEvbrAuQ01FcWRLssUNXCEUZk6SZtyJBi6EE7SL0zDDtItw1rGhw==",
- "dev": true,
- "requires": {
- "browser-stdout": "1.3.1",
- "commander": "2.11.0",
- "debug": "3.1.0",
- "diff": "3.5.0",
- "escape-string-regexp": "1.0.5",
- "glob": "7.1.2",
- "growl": "1.10.3",
- "he": "1.1.1",
- "minimatch": "3.0.4",
- "mkdirp": "0.5.1",
- "supports-color": "4.4.0"
- },
- "dependencies": {
- "debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "diff": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
- "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==",
- "dev": true
- },
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- },
- "growl": {
- "version": "1.10.3",
- "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz",
- "integrity": "sha512-hKlsbA5Vu3xsh1Cg3J7jSmX/WaW6A5oBeqzM88oNbCRQFz+zUaXm6yxS4RVytp1scBoJzSYl4YAEOQIt6O8V1Q==",
- "dev": true
- },
- "has-flag": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
- "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=",
- "dev": true
- },
- "supports-color": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz",
- "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==",
- "dev": true,
- "requires": {
- "has-flag": "2.0.0"
- }
- }
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- },
- "mute-stream": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz",
- "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=",
- "dev": true
- },
- "nan": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz",
- "integrity": "sha1-2Vv3IeyHfgjbJ27T/G63j5CDrUY=",
- "dev": true,
- "optional": true
- },
- "natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
- "dev": true
- },
- "negotiator": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
- "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=",
- "dev": true
- },
- "node-fetch": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
- "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
- "requires": {
- "encoding": "0.1.12",
- "is-stream": "1.1.0"
- }
- },
- "node-libs-browser": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.7.0.tgz",
- "integrity": "sha1-PicsCBnjCJNeJmdECNevDhSRuDs=",
- "dev": true,
- "requires": {
- "assert": "1.4.1",
- "browserify-zlib": "0.1.4",
- "buffer": "4.9.1",
- "console-browserify": "1.1.0",
- "constants-browserify": "1.0.0",
- "crypto-browserify": "3.3.0",
- "domain-browser": "1.1.7",
- "events": "1.1.1",
- "https-browserify": "0.0.1",
- "os-browserify": "0.2.1",
- "path-browserify": "0.0.0",
- "process": "0.11.10",
- "punycode": "1.4.1",
- "querystring-es3": "0.2.1",
- "readable-stream": "2.3.3",
- "stream-browserify": "2.0.1",
- "stream-http": "2.7.2",
- "string_decoder": "0.10.31",
- "timers-browserify": "2.0.4",
- "tty-browserify": "0.0.0",
- "url": "0.11.0",
- "util": "0.10.3",
- "vm-browserify": "0.0.4"
- },
- "dependencies": {
- "string_decoder": {
- "version": "0.10.31",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
- "dev": true
- }
- }
- },
- "normalize-path": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
- "dev": true,
- "requires": {
- "remove-trailing-separator": "1.1.0"
- }
- },
- "null-check": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz",
- "integrity": "sha1-l33/1xdgErnsMNKjnbXPcqBDnt0=",
- "dev": true
- },
- "number-is-nan": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
- "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
- "dev": true
- },
- "oauth-sign": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
- "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM="
- },
- "object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
- },
- "object-component": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz",
- "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=",
- "dev": true
- },
- "object-inspect": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz",
- "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==",
- "dev": true
- },
- "object-keys": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz",
- "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=",
- "dev": true
- },
- "object.entries": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.0.4.tgz",
- "integrity": "sha1-G/mk3SKI9bM/Opk9JXZh8F0WGl8=",
- "dev": true,
- "requires": {
- "define-properties": "1.1.2",
- "es-abstract": "1.9.0",
- "function-bind": "1.1.1",
- "has": "1.0.1"
- }
- },
- "object.omit": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz",
- "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=",
- "dev": true,
- "requires": {
- "for-own": "0.1.5",
- "is-extendable": "0.1.1"
- }
- },
- "on-finished": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
- "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
- "dev": true,
- "requires": {
- "ee-first": "1.1.1"
- }
- },
- "once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "requires": {
- "wrappy": "1.0.2"
- }
- },
- "onetime": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
- "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=",
- "dev": true
- },
- "optimist": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
- "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
- "requires": {
- "minimist": "0.0.10",
- "wordwrap": "0.0.3"
- },
- "dependencies": {
- "minimist": {
- "version": "0.0.10",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
- "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
- }
- }
- },
- "optionator": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
- "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
- "dev": true,
- "requires": {
- "deep-is": "0.1.3",
- "fast-levenshtein": "2.0.6",
- "levn": "0.3.0",
- "prelude-ls": "1.1.2",
- "type-check": "0.3.2",
- "wordwrap": "1.0.0"
- },
- "dependencies": {
- "wordwrap": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
- "dev": true
- }
- }
- },
- "options": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz",
- "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=",
- "dev": true
- },
- "os-browserify": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz",
- "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=",
- "dev": true
- },
- "os-homedir": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
- "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
- "dev": true
- },
- "os-tmpdir": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
- "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
- "dev": true
- },
- "output-file-sync": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz",
- "integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=",
- "dev": true,
- "requires": {
- "graceful-fs": "4.1.11",
- "mkdirp": "0.5.1",
- "object-assign": "4.1.1"
- }
- },
- "pako": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
- "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg=="
- },
- "parallelshell": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/parallelshell/-/parallelshell-3.0.2.tgz",
- "integrity": "sha512-aW73W8tmYiFZtQi41pweV3WWT6o/EvSxAVQHbumOhN53H47OuWQwrRc11xQ2i44GFvR5AjtzhD92r8Kv9X+7Iw==",
- "dev": true
- },
- "parse-glob": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz",
- "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=",
- "dev": true,
- "requires": {
- "glob-base": "0.3.0",
- "is-dotfile": "1.0.3",
- "is-extglob": "1.0.0",
- "is-glob": "2.0.1"
- }
- },
- "parsejson": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz",
- "integrity": "sha1-q343WfIJ7OmUN5c/fQ8fZK4OZKs=",
- "dev": true,
- "requires": {
- "better-assert": "1.0.2"
- }
- },
- "parseqs": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz",
- "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=",
- "dev": true,
- "requires": {
- "better-assert": "1.0.2"
- }
- },
- "parseuri": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz",
- "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=",
- "dev": true,
- "requires": {
- "better-assert": "1.0.2"
- }
- },
- "parseurl": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
- "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=",
- "dev": true
- },
- "path-browserify": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
- "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=",
- "dev": true
- },
- "path-exists": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
- "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
- "dev": true,
- "requires": {
- "pinkie-promise": "2.0.1"
- }
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
- },
- "path-is-inside": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
- "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=",
- "dev": true
- },
- "pbkdf2-compat": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz",
- "integrity": "sha1-tuDI+plJTZTgURV1gCpZpcFC8og=",
- "dev": true
- },
- "performance-now": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
- },
- "pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
- "dev": true
- },
- "pinkie": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
- "dev": true
- },
- "pinkie-promise": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
- "dev": true,
- "requires": {
- "pinkie": "2.0.4"
- }
- },
- "pkg-dir": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz",
- "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=",
- "dev": true,
- "requires": {
- "find-up": "1.1.2"
- }
- },
- "pluralize": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz",
- "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=",
- "dev": true
- },
- "pluralizers": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/pluralizers/-/pluralizers-0.1.6.tgz",
- "integrity": "sha1-GrOLbnYOb5f5hGElCXuGK8l0yB4="
- },
- "prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true
- },
- "preserve": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
- "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=",
- "dev": true
- },
- "private": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
- "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
- "dev": true
- },
- "process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
- "dev": true
- },
- "process-nextick-args": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
- "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M="
- },
- "progress": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
- "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=",
- "dev": true
- },
- "promise": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
- "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
- "requires": {
- "asap": "2.0.6"
- }
- },
- "prop-types": {
- "version": "15.6.0",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz",
- "integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=",
- "requires": {
- "fbjs": "0.8.16",
- "loose-envify": "1.3.1",
- "object-assign": "4.1.1"
- }
- },
- "prr": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz",
- "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=",
- "dev": true
- },
- "punycode": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
- "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
- },
- "qjobs": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.1.5.tgz",
- "integrity": "sha1-ZZ3p8s+NzCehSBJ28gU3cnI4LnM=",
- "dev": true
- },
- "qs": {
- "version": "6.5.1",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
- "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
- },
- "querystring": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
- },
- "querystring-es3": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
- "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
- "dev": true
- },
- "raf": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.0.tgz",
- "integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==",
- "requires": {
- "performance-now": "2.1.0"
- }
- },
- "raf-schd": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-2.1.1.tgz",
- "integrity": "sha512-ngcBQygUeE3kHlOaBSqgWKv7BT9kx5kQ6fAwFJRNRT7TD54M+hx1kpNHb8sONRskcYQedJg2RC2xKlAHRUQBig=="
- },
- "randomatic": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz",
- "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=",
- "dev": true,
- "requires": {
- "is-number": "3.0.0",
- "kind-of": "4.0.0"
- },
- "dependencies": {
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "requires": {
- "kind-of": "3.2.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "1.1.5"
- }
- }
- }
- },
- "kind-of": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "dev": true,
- "requires": {
- "is-buffer": "1.1.5"
- }
- }
- }
- },
- "range-parser": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
- "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=",
- "dev": true
- },
- "raw-body": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz",
- "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=",
- "dev": true,
- "requires": {
- "bytes": "3.0.0",
- "http-errors": "1.6.2",
- "iconv-lite": "0.4.19",
- "unpipe": "1.0.0"
- }
- },
- "react": {
- "version": "15.6.2",
- "resolved": "https://registry.npmjs.org/react/-/react-15.6.2.tgz",
- "integrity": "sha1-26BDSrQ5z+gvEI8PURZjkIF5qnI=",
- "requires": {
- "create-react-class": "15.6.2",
- "fbjs": "0.8.16",
- "loose-envify": "1.3.1",
- "object-assign": "4.1.1",
- "prop-types": "15.6.0"
- }
- },
- "react-addons-css-transition-group": {
- "version": "15.3.2",
- "resolved": "https://registry.npmjs.org/react-addons-css-transition-group/-/react-addons-css-transition-group-15.3.2.tgz",
- "integrity": "sha1-2PpSvsm7Yb396LnkZSuAKXy/9mc="
- },
- "react-addons-test-utils": {
- "version": "15.6.2",
- "resolved": "https://registry.npmjs.org/react-addons-test-utils/-/react-addons-test-utils-15.6.2.tgz",
- "integrity": "sha1-wStu/cIkfBDae4dw0YUICnsEcVY=",
- "dev": true
- },
- "react-beautiful-dnd": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-4.0.1.tgz",
- "integrity": "sha512-d73RMu4QOFCyjUELLWFyY/EuclnfqulI9pECx+2gIuJvV0ycf1uR88o+1x0RSB9ILD70inHMzCBKNkWVbbt+vA==",
- "requires": {
- "babel-runtime": "6.26.0",
- "invariant": "2.2.2",
- "memoize-one": "3.1.1",
- "prop-types": "15.6.0",
- "raf-schd": "2.1.1",
- "react-motion": "0.5.2",
- "react-redux": "5.0.7",
- "redux": "3.7.2",
- "redux-thunk": "2.2.0",
- "reselect": "3.0.1"
- }
- },
- "react-dom": {
- "version": "15.6.2",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-15.6.2.tgz",
- "integrity": "sha1-Qc+t9pO3V/rycIRDodH9WgK+9zA=",
- "requires": {
- "fbjs": "0.8.16",
- "loose-envify": "1.3.1",
- "object-assign": "4.1.1",
- "prop-types": "15.6.0"
- }
- },
- "react-gemini-scrollbar": {
- "version": "github:matrix-org/react-gemini-scrollbar#5e97aef7e034efc8db1431f4b0efe3b26e249ae9",
- "requires": {
- "gemini-scrollbar": "github:matrix-org/gemini-scrollbar#b302279810d05319ac5ff1bd34910bff32325c7b"
- }
- },
- "react-motion": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/react-motion/-/react-motion-0.5.2.tgz",
- "integrity": "sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==",
- "requires": {
- "performance-now": "0.2.0",
- "prop-types": "15.6.0",
- "raf": "3.4.0"
- },
- "dependencies": {
- "performance-now": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz",
- "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU="
- }
- }
- },
- "react-redux": {
- "version": "5.0.7",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-5.0.7.tgz",
- "integrity": "sha512-5VI8EV5hdgNgyjfmWzBbdrqUkrVRKlyTKk1sGH3jzM2M2Mhj/seQgPXaz6gVAj2lz/nz688AdTqMO18Lr24Zhg==",
- "requires": {
- "hoist-non-react-statics": "2.5.0",
- "invariant": "2.2.2",
- "lodash": "4.17.10",
- "lodash-es": "4.17.10",
- "loose-envify": "1.3.1",
- "prop-types": "15.6.0"
- },
- "dependencies": {
- "lodash": {
- "version": "4.17.10",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
- "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
- }
- }
- },
- "readable-stream": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz",
- "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==",
- "requires": {
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "isarray": "1.0.0",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
- }
- },
- "readdirp": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz",
- "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=",
- "dev": true,
- "requires": {
- "graceful-fs": "4.1.11",
- "minimatch": "3.0.4",
- "readable-stream": "2.3.3",
- "set-immediate-shim": "1.0.1"
- }
- },
- "readline2": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz",
- "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=",
- "dev": true,
- "requires": {
- "code-point-at": "1.1.0",
- "is-fullwidth-code-point": "1.0.0",
- "mute-stream": "0.0.5"
- }
- },
- "rechoir": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
- "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
- "dev": true,
- "requires": {
- "resolve": "1.4.0"
- }
- },
- "redux": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz",
- "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==",
- "requires": {
- "lodash": "4.17.4",
- "lodash-es": "4.17.10",
- "loose-envify": "1.3.1",
- "symbol-observable": "1.2.0"
- }
- },
- "redux-thunk": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.2.0.tgz",
- "integrity": "sha1-5hWhbha0ehmlFXZhM9Hj6Zt4UuU="
- },
- "regenerate": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz",
- "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==",
- "dev": true
- },
- "regenerator-runtime": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz",
- "integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A=="
- },
- "regenerator-transform": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
- "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
- "dev": true,
- "requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "private": "0.1.8"
- }
- },
- "regex-cache": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz",
- "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
- "dev": true,
- "requires": {
- "is-equal-shallow": "0.1.3"
- }
- },
- "regexp-quote": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/regexp-quote/-/regexp-quote-0.0.0.tgz",
- "integrity": "sha1-Hg9GUMhi3L/tVP1CsUjpuxch/PI="
- },
- "regexpu-core": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
- "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
- "dev": true,
- "requires": {
- "regenerate": "1.3.3",
- "regjsgen": "0.2.0",
- "regjsparser": "0.1.5"
- }
- },
- "regjsgen": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
- "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
- "dev": true
- },
- "regjsparser": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
- "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
- "dev": true,
- "requires": {
- "jsesc": "0.5.0"
- },
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
- "dev": true
- }
- }
- },
- "remove-trailing-separator": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
- "dev": true
- },
- "repeat-element": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
- "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=",
- "dev": true
- },
- "repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
- "dev": true
- },
- "repeating": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
- "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
- "dev": true,
- "requires": {
- "is-finite": "1.0.2"
- }
- },
- "request": {
- "version": "2.83.0",
- "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz",
- "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==",
- "requires": {
- "aws-sign2": "0.7.0",
- "aws4": "1.6.0",
- "caseless": "0.12.0",
- "combined-stream": "1.0.5",
- "extend": "3.0.1",
- "forever-agent": "0.6.1",
- "form-data": "2.3.1",
- "har-validator": "5.0.3",
- "hawk": "6.0.2",
- "http-signature": "1.2.0",
- "is-typedarray": "1.0.0",
- "isstream": "0.1.2",
- "json-stringify-safe": "5.0.1",
- "mime-types": "2.1.17",
- "oauth-sign": "0.8.2",
- "performance-now": "2.1.0",
- "qs": "6.5.1",
- "safe-buffer": "5.1.1",
- "stringstream": "0.0.5",
- "tough-cookie": "2.3.3",
- "tunnel-agent": "0.6.0",
- "uuid": "3.1.0"
- }
- },
- "require-json": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/require-json/-/require-json-0.0.1.tgz",
- "integrity": "sha1-PIkU+T10Qt6Mv05oGsYqcqozZ/4=",
- "dev": true
- },
- "require-uncached": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz",
- "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=",
- "dev": true,
- "requires": {
- "caller-path": "0.1.0",
- "resolve-from": "1.0.1"
- }
- },
- "requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
- "dev": true
- },
- "reselect": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/reselect/-/reselect-3.0.1.tgz",
- "integrity": "sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc="
- },
- "resolve": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz",
- "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==",
- "dev": true,
- "requires": {
- "path-parse": "1.0.5"
- }
- },
- "resolve-from": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz",
- "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=",
- "dev": true
- },
- "restore-cursor": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz",
- "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=",
- "dev": true,
- "requires": {
- "exit-hook": "1.1.1",
- "onetime": "1.1.0"
- }
- },
- "right-align": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
- "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=",
- "dev": true,
- "requires": {
- "align-text": "0.1.4"
- }
- },
- "rimraf": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
- "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
- "dev": true,
- "requires": {
- "glob": "7.1.2"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- }
- }
- },
- "ripemd160": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz",
- "integrity": "sha1-K/GYveFnys+lHAqSjoS2i74XH84=",
- "dev": true
- },
- "run-async": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz",
- "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=",
- "dev": true,
- "requires": {
- "once": "1.4.0"
- }
- },
- "rx-lite": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz",
- "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=",
- "dev": true
- },
- "safe-buffer": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
- "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
- },
- "samsam": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz",
- "integrity": "sha1-vsEf3IOp/aBjQBIQ5AF2wwJNFWc=",
- "dev": true
- },
- "sanitize-html": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.14.1.tgz",
- "integrity": "sha1-cw/6Ikm98YMz7/5FsoYXPJxa0Lg=",
- "requires": {
- "htmlparser2": "3.9.2",
- "regexp-quote": "0.0.0",
- "xtend": "4.0.1"
- }
- },
- "semver": {
- "version": "4.3.6",
- "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz",
- "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=",
- "dev": true
- },
- "set-immediate-shim": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
- "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
- "dev": true
- },
- "setimmediate": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
- },
- "setprototypeof": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
- "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=",
- "dev": true
- },
- "sha.js": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz",
- "integrity": "sha1-F93t3F9yL7ZlAWWIlUYZd4ZzFbo=",
- "dev": true
- },
- "shelljs": {
- "version": "0.7.8",
- "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz",
- "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=",
- "dev": true,
- "requires": {
- "glob": "7.1.2",
- "interpret": "1.0.4",
- "rechoir": "0.6.2"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
- "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
- "dev": true,
- "requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
- }
- }
- }
- },
- "sinon": {
- "version": "1.17.7",
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-1.17.7.tgz",
- "integrity": "sha1-RUKk9JugxFwF6y6d2dID4rjv4L8=",
- "dev": true,
- "requires": {
- "formatio": "1.1.1",
- "lolex": "1.3.2",
- "samsam": "1.1.2",
- "util": "0.10.3"
- }
- },
- "slash": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
- "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
- "dev": true
- },
- "slice-ansi": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz",
- "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=",
- "dev": true
- },
- "sntp": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.0.2.tgz",
- "integrity": "sha1-UGQRDwr4X3z9t9a2ekACjOUrSys="
- },
- "socket.io": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz",
- "integrity": "sha1-uK+cq6AJSeVo42nxMn6pvp6iRhs=",
- "dev": true,
- "requires": {
- "debug": "2.3.3",
- "engine.io": "1.8.3",
- "has-binary": "0.1.7",
- "object-assign": "4.1.0",
- "socket.io-adapter": "0.5.0",
- "socket.io-client": "1.7.3",
- "socket.io-parser": "2.3.1"
- },
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=",
- "dev": true,
- "requires": {
- "ms": "0.7.2"
- }
- },
- "ms": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
- "dev": true
- },
- "object-assign": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz",
- "integrity": "sha1-ejs9DpgGPUP0wD8uiubNUahog6A=",
- "dev": true
- }
- }
- },
- "socket.io-adapter": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz",
- "integrity": "sha1-y21LuL7IHhB4uZZ3+c7QBGBmu4s=",
- "dev": true,
- "requires": {
- "debug": "2.3.3",
- "socket.io-parser": "2.3.1"
- },
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=",
- "dev": true,
- "requires": {
- "ms": "0.7.2"
- }
- },
- "ms": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
- "dev": true
- }
- }
- },
- "socket.io-client": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.3.tgz",
- "integrity": "sha1-sw6GqhDV7zVGYBwJzeR2Xjgdo3c=",
- "dev": true,
- "requires": {
- "backo2": "1.0.2",
- "component-bind": "1.0.0",
- "component-emitter": "1.2.1",
- "debug": "2.3.3",
- "engine.io-client": "1.8.3",
- "has-binary": "0.1.7",
- "indexof": "0.0.1",
- "object-component": "0.0.3",
- "parseuri": "0.0.5",
- "socket.io-parser": "2.3.1",
- "to-array": "0.1.4"
- },
- "dependencies": {
- "component-emitter": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
- "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
- "dev": true
- },
- "debug": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=",
- "dev": true,
- "requires": {
- "ms": "0.7.2"
- }
- },
- "ms": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
- "dev": true
- }
- }
- },
- "socket.io-parser": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz",
- "integrity": "sha1-3VMgJRA85Clpcya+/WQAX8/ltKA=",
- "dev": true,
- "requires": {
- "component-emitter": "1.1.2",
- "debug": "2.2.0",
- "isarray": "0.0.1",
- "json3": "3.3.2"
- },
- "dependencies": {
- "debug": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
- "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
- "dev": true,
- "requires": {
- "ms": "0.7.1"
- }
- },
- "isarray": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
- "dev": true
- },
- "ms": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
- "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
- "dev": true
- }
- }
- },
- "source-list-map": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz",
- "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=",
- "dev": true
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- },
- "source-map-loader": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-0.2.3.tgz",
- "integrity": "sha512-MYbFX9DYxmTQFfy2v8FC1XZwpwHKYxg3SK8Wb7VPBKuhDjz8gi9re2819MsG4p49HDyiOSUKlmZ+nQBArW5CGw==",
- "dev": true,
- "requires": {
- "async": "2.6.0",
- "loader-utils": "0.2.17",
- "source-map": "0.6.1"
- },
- "dependencies": {
- "async": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
- "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
- "dev": true,
- "requires": {
- "lodash": "4.17.4"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "source-map-support": {
- "version": "0.4.18",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
- "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
- "dev": true,
- "requires": {
- "source-map": "0.5.7"
- }
- },
- "sprintf-js": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz",
- "integrity": "sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw="
- },
- "sshpk": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz",
- "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=",
- "requires": {
- "asn1": "0.2.3",
- "assert-plus": "1.0.0",
- "bcrypt-pbkdf": "1.0.1",
- "dashdash": "1.14.1",
- "ecc-jsbn": "0.1.1",
- "getpass": "0.1.7",
- "jsbn": "0.1.1",
- "tweetnacl": "0.14.5"
- }
- },
- "statuses": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
- "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
- "dev": true
- },
- "stream-browserify": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
- "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=",
- "dev": true,
- "requires": {
- "inherits": "2.0.3",
- "readable-stream": "2.3.3"
- }
- },
- "stream-http": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz",
- "integrity": "sha1-QKBQ7I3DtTsz2ZCUFcAsC/Gr+60=",
- "dev": true,
- "requires": {
- "builtin-status-codes": "3.0.0",
- "inherits": "2.0.3",
- "readable-stream": "2.3.3",
- "to-arraybuffer": "1.0.1",
- "xtend": "4.0.1"
- }
- },
- "string-width": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
- "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
- "dev": true,
- "requires": {
- "code-point-at": "1.1.0",
- "is-fullwidth-code-point": "1.0.0",
- "strip-ansi": "3.0.1"
- }
- },
- "string.prototype.repeat": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz",
- "integrity": "sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8="
- },
- "string_decoder": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
- "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
- "requires": {
- "safe-buffer": "5.1.1"
- }
- },
- "stringstream": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
- "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg="
- },
- "strip-ansi": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
- "dev": true,
- "requires": {
- "ansi-regex": "2.1.1"
- }
- },
- "strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
- "dev": true
- },
- "strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
- "dev": true
- },
- "supports-color": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
- "dev": true
- },
- "symbol-observable": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
- "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
- },
- "tabbable": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-1.1.2.tgz",
- "integrity": "sha512-77oqsKEPrxIwgRcXUwipkj9W5ItO97L6eUT1Ar7vh+El16Zm4M6V+YU1cbipHEa6q0Yjw8O3Hoh8oRgatV5s7A=="
- },
- "table": {
- "version": "3.8.3",
- "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz",
- "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=",
- "dev": true,
- "requires": {
- "ajv": "4.11.8",
- "ajv-keywords": "1.5.1",
- "chalk": "1.1.3",
- "lodash": "4.17.4",
- "slice-ansi": "0.0.4",
- "string-width": "2.1.1"
- },
- "dependencies": {
- "ajv": {
- "version": "4.11.8",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
- "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
- "dev": true,
- "requires": {
- "co": "4.6.0",
- "json-stable-stringify": "1.0.1"
- }
- },
- "ansi-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
- "dev": true
- },
- "string-width": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
- "dev": true,
- "requires": {
- "is-fullwidth-code-point": "2.0.0",
- "strip-ansi": "4.0.0"
- }
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
- "requires": {
- "ansi-regex": "3.0.0"
- }
- }
- }
- },
- "tapable": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz",
- "integrity": "sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=",
- "dev": true
- },
- "text-encoding-utf-8": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.1.tgz",
- "integrity": "sha1-Uepsen6y+09nRnt2NzVmH1YDSS0="
- },
- "text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
- "dev": true
- },
- "through": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
- "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
- "dev": true
- },
- "time-stamp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.0.0.tgz",
- "integrity": "sha1-lcakRTDhW6jW9KPsuMOj+sRto1c=",
- "dev": true
- },
- "timers-browserify": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz",
- "integrity": "sha512-uZYhyU3EX8O7HQP+J9fTVYwsq90Vr68xPEFo7yrVImIxYvHgukBEgOB/SgGoorWVTzGM/3Z+wUNnboA4M8jWrg==",
- "dev": true,
- "requires": {
- "setimmediate": "1.0.5"
- }
- },
- "tmatch": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/tmatch/-/tmatch-2.0.1.tgz",
- "integrity": "sha1-DFYkbzPzDaG409colauvFmYPOM8=",
- "dev": true
- },
- "tmp": {
- "version": "0.0.31",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz",
- "integrity": "sha1-jzirlDjhcxXl29izZX6L+yd65Kc=",
- "dev": true,
- "requires": {
- "os-tmpdir": "1.0.2"
- }
- },
- "to-array": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz",
- "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=",
- "dev": true
- },
- "to-arraybuffer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
- "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
- "dev": true
- },
- "to-fast-properties": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
- "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
- "dev": true
- },
- "tough-cookie": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz",
- "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=",
- "requires": {
- "punycode": "1.4.1"
- }
- },
- "trim-right": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
- "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
- "dev": true
- },
- "tryit": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz",
- "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=",
- "dev": true
- },
- "tty-browserify": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
- "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
- "dev": true
- },
- "tunnel-agent": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
- "requires": {
- "safe-buffer": "5.1.1"
- }
- },
- "tweetnacl": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
- "optional": true
- },
- "type-check": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
- "requires": {
- "prelude-ls": "1.1.2"
- }
- },
- "type-is": {
- "version": "1.6.15",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz",
- "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=",
- "dev": true,
- "requires": {
- "media-typer": "0.3.0",
- "mime-types": "2.1.17"
- }
- },
- "typedarray": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
- "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
- "dev": true
- },
- "ua-parser-js": {
- "version": "0.7.17",
- "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz",
- "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g=="
- },
- "uglify-js": {
- "version": "2.7.5",
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz",
- "integrity": "sha1-RhLAx7qu4rp8SH3kkErhIgefLKg=",
- "dev": true,
- "requires": {
- "async": "0.2.10",
- "source-map": "0.5.7",
- "uglify-to-browserify": "1.0.2",
- "yargs": "3.10.0"
- },
- "dependencies": {
- "async": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz",
- "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=",
- "dev": true
- }
- }
- },
- "uglify-to-browserify": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
- "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=",
- "dev": true
- },
- "ultron": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz",
- "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=",
- "dev": true
- },
- "unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
- "dev": true
- },
- "url": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
- "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
- "requires": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- },
- "dependencies": {
- "punycode": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
- "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
- }
- }
- },
- "user-home": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz",
- "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=",
- "dev": true
- },
- "useragent": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz",
- "integrity": "sha1-z1k+9PLRdYdei7ZY6pLhik/QbY4=",
- "dev": true,
- "requires": {
- "lru-cache": "2.2.4",
- "tmp": "0.0.31"
- }
- },
- "util": {
- "version": "0.10.3",
- "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
- "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
- "dev": true,
- "requires": {
- "inherits": "2.0.1"
- },
- "dependencies": {
- "inherits": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
- "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
- "dev": true
- }
- }
- },
- "util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
- },
- "utils-merge": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
- "dev": true
- },
- "uuid": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz",
- "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g=="
- },
- "v8flags": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz",
- "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=",
- "dev": true,
- "requires": {
- "user-home": "1.1.1"
- }
- },
- "velocity-vector": {
- "version": "github:vector-im/velocity#059e3b2348f1110888d033974d3109fd5a3af00f",
- "requires": {
- "jquery": "3.2.1"
- }
- },
- "verror": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
- "requires": {
- "assert-plus": "1.0.0",
- "core-util-is": "1.0.2",
- "extsprintf": "1.3.0"
- }
- },
- "vm-browserify": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
- "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=",
- "dev": true,
- "requires": {
- "indexof": "0.0.1"
- }
- },
- "void-elements": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz",
- "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=",
- "dev": true
- },
- "walk": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz",
- "integrity": "sha1-MbTbZnjyrgHDnqn7hyWpAx5Vins=",
- "dev": true,
- "requires": {
- "foreachasync": "3.0.0"
- }
- },
- "watchpack": {
- "version": "0.2.9",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz",
- "integrity": "sha1-Yuqkq15bo1/fwBgnVibjwPXj+ws=",
- "dev": true,
- "requires": {
- "async": "0.9.2",
- "chokidar": "1.7.0",
- "graceful-fs": "4.1.11"
- }
- },
- "webpack": {
- "version": "1.15.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-1.15.0.tgz",
- "integrity": "sha1-T/MfU9sDM55VFkqdRo7gMklo/pg=",
- "dev": true,
- "requires": {
- "acorn": "3.3.0",
- "async": "1.5.2",
- "clone": "1.0.2",
- "enhanced-resolve": "0.9.1",
- "interpret": "0.6.6",
- "loader-utils": "0.2.17",
- "memory-fs": "0.3.0",
- "mkdirp": "0.5.1",
- "node-libs-browser": "0.7.0",
- "optimist": "0.6.1",
- "supports-color": "3.2.3",
- "tapable": "0.1.10",
- "uglify-js": "2.7.5",
- "watchpack": "0.2.9",
- "webpack-core": "0.6.9"
- },
- "dependencies": {
- "acorn": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
- "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
- "dev": true
- },
- "async": {
- "version": "1.5.2",
- "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
- "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
- "dev": true
- },
- "interpret": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz",
- "integrity": "sha1-/s16GOfOXKar+5U+H4YhOknxYls=",
- "dev": true
- },
- "memory-fs": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz",
- "integrity": "sha1-e8xrYp46Q+hx1+Kaymrop/FcuyA=",
- "dev": true,
- "requires": {
- "errno": "0.1.4",
- "readable-stream": "2.3.3"
- }
- },
- "supports-color": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
- "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
- "dev": true,
- "requires": {
- "has-flag": "1.0.0"
- }
- }
- }
- },
- "webpack-core": {
- "version": "0.6.9",
- "resolved": "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz",
- "integrity": "sha1-/FcViMhVjad76e+23r3Fo7FyvcI=",
- "dev": true,
- "requires": {
- "source-list-map": "0.1.8",
- "source-map": "0.4.4"
- },
- "dependencies": {
- "source-map": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
- "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
- "dev": true,
- "requires": {
- "amdefine": "1.0.1"
- }
- }
- }
- },
- "webpack-dev-middleware": {
- "version": "1.12.0",
- "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz",
- "integrity": "sha1-007++y7dp+HTtdvgcolRMhllFwk=",
- "dev": true,
- "requires": {
- "memory-fs": "0.4.1",
- "mime": "1.4.1",
- "path-is-absolute": "1.0.1",
- "range-parser": "1.2.0",
- "time-stamp": "2.0.0"
- }
- },
- "whatwg-fetch": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz",
- "integrity": "sha1-rDydOfMgxtzlM5lp0FTvQ90zMxk="
- },
- "which": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
- "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==",
- "dev": true,
- "requires": {
- "isexe": "2.0.0"
- }
- },
- "window-size": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
- "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=",
- "dev": true
- },
- "wordwrap": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
- "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
- },
- "wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
- },
- "write": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz",
- "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=",
- "dev": true,
- "requires": {
- "mkdirp": "0.5.1"
- }
- },
- "ws": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz",
- "integrity": "sha1-iiRPoFJAHgjJiGz0SoUYnh/UBn8=",
- "dev": true,
- "requires": {
- "options": "0.0.6",
- "ultron": "1.0.2"
- }
- },
- "wtf-8": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz",
- "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=",
- "dev": true
- },
- "xmlbuilder": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-3.1.0.tgz",
- "integrity": "sha1-LIaIjy1OrehQ+jjKf3Ij9yCVFuE=",
- "dev": true,
- "requires": {
- "lodash": "3.10.1"
- },
- "dependencies": {
- "lodash": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
- "dev": true
- }
- }
- },
- "xmlhttprequest-ssl": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz",
- "integrity": "sha1-GFqIjATspGw+QHDZn3tJ3jUomS0=",
- "dev": true
- },
- "xtend": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
- "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
- },
- "yargs": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
- "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=",
- "dev": true,
- "requires": {
- "camelcase": "1.2.1",
- "cliui": "2.1.0",
- "decamelize": "1.2.0",
- "window-size": "0.1.0"
- }
- },
- "yeast": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
- "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=",
- "dev": true
- }
- }
-}
diff --git a/package.json b/package.json
index 6c34979c43..1bdced5caf 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "matrix-react-sdk",
- "version": "0.12.5",
+ "version": "0.13.2",
"description": "SDK for matrix.org using React",
"author": "matrix.org",
"repository": {
@@ -59,9 +59,6 @@
"classnames": "^2.1.2",
"commonmark": "^0.28.1",
"counterpart": "^0.18.0",
- "draft-js": "^0.11.0-alpha",
- "draft-js-export-html": "^0.6.0",
- "draft-js-export-markdown": "^0.3.0",
"emojione": "2.2.7",
"file-saver": "^1.3.3",
"filesize": "3.5.6",
@@ -73,20 +70,26 @@
"glob": "^5.0.14",
"highlight.js": "^9.0.0",
"isomorphic-fetch": "^2.2.1",
- "linkifyjs": "^2.1.3",
+ "linkifyjs": "^2.1.6",
"lodash": "^4.13.1",
"lolex": "2.3.2",
- "matrix-js-sdk": "0.10.2",
+ "matrix-js-sdk": "0.10.8",
"optimist": "^0.6.1",
"pako": "^1.0.5",
"prop-types": "^15.5.8",
+ "qrcode-react": "^0.1.16",
"querystring": "^0.2.0",
"react": "^15.6.0",
"react-addons-css-transition-group": "15.3.2",
"react-beautiful-dnd": "^4.0.1",
"react-dom": "^15.6.0",
"react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#5e97aef",
- "sanitize-html": "^1.14.1",
+ "resize-observer-polyfill": "^1.5.0",
+ "slate": "0.34.7",
+ "slate-react": "^0.12.4",
+ "slate-html-serializer": "^0.6.1",
+ "slate-md-serializer": "matrix-org/slate-md-serializer#f7c4ad3",
+ "sanitize-html": "^1.18.4",
"text-encoding-utf-8": "^1.0.1",
"url": "^0.11.0",
"velocity-vector": "vector-im/velocity#059e3b2",
@@ -134,7 +137,7 @@
"react-addons-test-utils": "^15.4.0",
"require-json": "0.0.1",
"rimraf": "^2.4.3",
- "sinon": "^1.17.3",
+ "sinon": "^5.0.7",
"source-map-loader": "^0.2.3",
"walk": "^2.3.9",
"webpack": "^1.12.14"
diff --git a/res/css/_common.scss b/res/css/_common.scss
index c4cda6821e..38f576a532 100644
--- a/res/css/_common.scss
+++ b/res/css/_common.scss
@@ -291,6 +291,10 @@ textarea {
vertical-align: middle;
}
+.mx_emojione_selected {
+ background-color: $accent-color;
+}
+
::-moz-selection {
background-color: $accent-color;
color: $selection-fg-color;
diff --git a/res/css/_components.scss b/res/css/_components.scss
index 2734939ae3..173939e143 100644
--- a/res/css/_components.scss
+++ b/res/css/_components.scss
@@ -42,6 +42,7 @@
@import "./views/dialogs/_SetEmailDialog.scss";
@import "./views/dialogs/_SetMxIdDialog.scss";
@import "./views/dialogs/_SetPasswordDialog.scss";
+@import "./views/dialogs/_ShareDialog.scss";
@import "./views/dialogs/_UnknownDeviceDialog.scss";
@import "./views/directory/_NetworkDropdown.scss";
@import "./views/elements/_AccessibleButton.scss";
diff --git a/res/css/structures/_ContextualMenu.scss b/res/css/structures/_ContextualMenu.scss
index a0191b92cf..7474c3d107 100644
--- a/res/css/structures/_ContextualMenu.scss
+++ b/res/css/structures/_ContextualMenu.scss
@@ -16,7 +16,7 @@ limitations under the License.
.mx_ContextualMenu_wrapper {
position: fixed;
- z-index: 2000;
+ z-index: 5000;
}
.mx_ContextualMenu_background {
@@ -26,7 +26,7 @@ limitations under the License.
width: 100%;
height: 100%;
opacity: 1.0;
- z-index: 2000;
+ z-index: 5000;
}
.mx_ContextualMenu {
@@ -37,7 +37,7 @@ limitations under the License.
position: absolute;
padding: 6px;
font-size: 14px;
- z-index: 2001;
+ z-index: 5001;
}
.mx_ContextualMenu.mx_ContextualMenu_right {
diff --git a/res/css/structures/_LeftPanel.scss b/res/css/structures/_LeftPanel.scss
index 96ed5878ac..7cf6dd1119 100644
--- a/res/css/structures/_LeftPanel.scss
+++ b/res/css/structures/_LeftPanel.scss
@@ -1,5 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
+Copyright 2018 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.
@@ -54,6 +55,10 @@ limitations under the License.
}
+.mx_LeftPanel .mx_AppTile_mini {
+ height: 132px;
+}
+
.mx_LeftPanel .mx_RoomList_scrollbar {
order: 1;
diff --git a/res/css/structures/_RoomStatusBar.scss b/res/css/structures/_RoomStatusBar.scss
index ca7431eac2..2a9cc9f6c7 100644
--- a/res/css/structures/_RoomStatusBar.scss
+++ b/res/css/structures/_RoomStatusBar.scss
@@ -113,6 +113,8 @@ limitations under the License.
}
.mx_RoomStatusBar_connectionLostBar {
+ display: flex;
+
margin-top: 19px;
min-height: 58px;
}
@@ -132,6 +134,7 @@ limitations under the License.
color: $primary-fg-color;
font-size: 13px;
opacity: 0.5;
+ padding-bottom: 20px;
}
.mx_RoomStatusBar_resend_link {
diff --git a/res/css/structures/_RoomSubList.scss b/res/css/structures/_RoomSubList.scss
index a2863460ad..6798f75a14 100644
--- a/res/css/structures/_RoomSubList.scss
+++ b/res/css/structures/_RoomSubList.scss
@@ -91,6 +91,10 @@ limitations under the License.
background-color: $accent-color;
}
+.mx_RoomSubList_label .mx_RoomSubList_badge:hover {
+ filter: brightness($focus-brightness);
+}
+
/*
.collapsed .mx_RoomSubList_badge {
display: none;
diff --git a/res/css/structures/_RoomView.scss b/res/css/structures/_RoomView.scss
index b8e1190375..02418f70db 100644
--- a/res/css/structures/_RoomView.scss
+++ b/res/css/structures/_RoomView.scss
@@ -176,10 +176,7 @@ hr.mx_RoomView_myReadMarker {
z-index: 1000;
overflow: hidden;
- -webkit-transition: all .2s ease-out;
- -moz-transition: all .2s ease-out;
- -ms-transition: all .2s ease-out;
- -o-transition: all .2s ease-out;
+ transition: all .2s ease-out;
}
.mx_RoomView_statusArea_expanded {
diff --git a/res/css/structures/_TagPanel.scss b/res/css/structures/_TagPanel.scss
index ab1d4feac3..415aafd924 100644
--- a/res/css/structures/_TagPanel.scss
+++ b/res/css/structures/_TagPanel.scss
@@ -17,7 +17,6 @@ limitations under the License.
.mx_TagPanel {
flex: 0 0 60px;
background-color: $tertiary-accent-color;
- cursor: pointer;
display: flex;
flex-direction: column;
@@ -25,7 +24,11 @@ limitations under the License.
justify-content: space-between;
}
-.mx_TagPanel .mx_TagPanel_clearButton {
+.mx_TagPanel_items_selected {
+ cursor: pointer;
+}
+
+.mx_TagPanel .mx_TagPanel_clearButton_container {
/* Constant height within flex mx_TagPanel */
height: 70px;
width: 60px;
diff --git a/res/css/views/dialogs/_CreateRoomDialog.scss b/res/css/views/dialogs/_CreateRoomDialog.scss
index 888f147d21..05d5bfcebf 100644
--- a/res/css/views/dialogs/_CreateRoomDialog.scss
+++ b/res/css/views/dialogs/_CreateRoomDialog.scss
@@ -23,6 +23,10 @@ limitations under the License.
padding-bottom: 12px;
}
+.mx_CreateRoomDialog_input_container {
+ padding-right: 20px;
+}
+
.mx_CreateRoomDialog_input {
font-size: 15px;
border-radius: 3px;
@@ -30,4 +34,5 @@ limitations under the License.
padding: 9px;
color: $primary-fg-color;
background-color: $primary-bg-color;
+ width: 100%;
}
diff --git a/res/css/views/dialogs/_DevtoolsDialog.scss b/res/css/views/dialogs/_DevtoolsDialog.scss
index 8918373ecf..a4a868bd11 100644
--- a/res/css/views/dialogs/_DevtoolsDialog.scss
+++ b/res/css/views/dialogs/_DevtoolsDialog.scss
@@ -14,8 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
+.mx_DevTools_content {
+ margin: 10px 0;
+}
+
.mx_DevTools_RoomStateExplorer_button, .mx_DevTools_RoomStateExplorer_query {
margin-bottom: 10px;
+ width: 100%;
}
.mx_DevTools_label_left {
@@ -38,7 +43,6 @@ limitations under the License.
.mx_DevTools_inputLabelCell
{
- padding-bottom: 21px;
display: table-cell;
font-weight: bold;
padding-right: 24px;
@@ -46,7 +50,6 @@ limitations under the License.
.mx_DevTools_inputCell {
display: table-cell;
- padding-bottom: 21px;
width: 240px;
}
@@ -62,6 +65,14 @@ limitations under the License.
font-size: 16px;
}
+.mx_DevTools_textarea {
+ font-size: 12px;
+ max-width: 624px;
+ min-height: 250px;
+ padding: 10px;
+ width: 100%;
+}
+
.mx_DevTools_tgl {
display: none;
diff --git a/res/css/views/dialogs/_ShareDialog.scss b/res/css/views/dialogs/_ShareDialog.scss
new file mode 100644
index 0000000000..116bef8dfd
--- /dev/null
+++ b/res/css/views/dialogs/_ShareDialog.scss
@@ -0,0 +1,89 @@
+/*
+Copyright 2018 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.
+*/
+
+.mx_ShareDialog {
+ // this is to center the content
+ padding-right: 58px;
+}
+
+.mx_ShareDialog hr {
+ margin-top: 25px;
+ margin-bottom: 25px;
+ border-color: $light-fg-color;
+}
+
+.mx_ShareDialog_content {
+ margin: 10px 0;
+}
+
+.mx_ShareDialog_matrixto {
+ display: flex;
+ justify-content: space-between;
+ border-radius: 5px;
+ border: solid 1px $light-fg-color;
+ margin-bottom: 10px;
+ margin-top: 30px;
+ padding: 10px;
+}
+
+.mx_ShareDialog_matrixto a {
+ text-decoration: none;
+}
+
+.mx_ShareDialog_matrixto_link {
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.mx_ShareDialog_matrixto_copy {
+ flex-shrink: 0;
+ cursor: pointer;
+ margin-left: 20px;
+ display: inherit;
+}
+.mx_ShareDialog_matrixto_copy > div {
+ background-image: url($copy-button-url);
+ margin-left: 5px;
+ width: 20px;
+ height: 20px;
+}
+
+.mx_ShareDialog_split {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.mx_ShareDialog_qrcode_container {
+ float: left;
+ background-color: #ffffff;
+ padding: 5px; // makes qr code more readable in dark theme
+ border-radius: 5px;
+ height: 256px;
+ width: 256px;
+ margin-right: 64px;
+}
+
+.mx_ShareDialog_social_container {
+ display: inline-block;
+ width: 299px;
+}
+
+.mx_ShareDialog_social_icon {
+ display: inline-grid;
+ margin-right: 10px;
+ margin-bottom: 10px;
+}
diff --git a/res/css/views/elements/_RichText.scss b/res/css/views/elements/_RichText.scss
index 474a123455..cea4b7897d 100644
--- a/res/css/views/elements/_RichText.scss
+++ b/res/css/views/elements/_RichText.scss
@@ -4,6 +4,7 @@
.mx_UserPill,
.mx_RoomPill,
+.mx_GroupPill,
.mx_AtRoomPill {
border-radius: 16px;
display: inline-block;
@@ -13,7 +14,8 @@
}
.mx_EventTile_body .mx_UserPill,
-.mx_EventTile_body .mx_RoomPill {
+.mx_EventTile_body .mx_RoomPill,
+.mx_EventTile_body .mx_GroupPill {
cursor: pointer;
}
@@ -25,6 +27,10 @@
padding-right: 5px;
}
+.mx_UserPill_selected {
+ background-color: $accent-color ! important;
+}
+
.mx_EventTile_highlight .mx_EventTile_content .markdown-body a.mx_UserPill_me,
.mx_EventTile_content .mx_AtRoomPill,
.mx_MessageComposer_input .mx_AtRoomPill {
@@ -35,14 +41,25 @@
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_RoomPill,
-.mx_RoomPill {
+.mx_EventTile_content .markdown-body a.mx_GroupPill,
+.mx_RoomPill,
+.mx_GroupPill {
color: $accent-fg-color;
background-color: $rte-room-pill-color;
padding-right: 5px;
}
+/* More specific to override `.markdown-body a` color */
+.mx_EventTile_content .markdown-body a.mx_GroupPill,
+.mx_GroupPill {
+ color: $accent-fg-color;
+ background-color: $rte-group-pill-color;
+ padding-right: 5px;
+}
+
.mx_UserPill .mx_BaseAvatar,
.mx_RoomPill .mx_BaseAvatar,
+.mx_GroupPill .mx_BaseAvatar,
.mx_AtRoomPill .mx_BaseAvatar {
position: relative;
left: -3px;
diff --git a/res/css/views/globals/_MatrixToolbar.scss b/res/css/views/globals/_MatrixToolbar.scss
index be69b15f37..1791d619ae 100644
--- a/res/css/views/globals/_MatrixToolbar.scss
+++ b/res/css/views/globals/_MatrixToolbar.scss
@@ -28,6 +28,18 @@ limitations under the License.
margin-top: -2px;
}
+.mx_MatrixToolbar_info {
+ padding-left: 16px;
+ padding-right: 8px;
+ background-color: $info-bg-color;
+}
+
+.mx_MatrixToolbar_error {
+ padding-left: 16px;
+ padding-right: 8px;
+ background-color: $warning-bg-color;
+}
+
.mx_MatrixToolbar_content {
flex: 1;
}
@@ -59,4 +71,4 @@ limitations under the License.
.mx_MatrixToolbar_changelog {
white-space: pre;
-}
\ No newline at end of file
+}
diff --git a/res/css/views/messages/_MImageBody.scss b/res/css/views/messages/_MImageBody.scss
index 1c809f0743..4c763c5991 100644
--- a/res/css/views/messages/_MImageBody.scss
+++ b/res/css/views/messages/_MImageBody.scss
@@ -20,5 +20,29 @@ limitations under the License.
}
.mx_MImageBody_thumbnail {
- max-width: 100%;
-}
\ No newline at end of file
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+}
+
+.mx_MImageBody_thumbnail_container {
+ // Prevent the padding-bottom (added inline in MImageBody.js) from
+ // affecting elements below the container.
+ overflow: hidden;
+
+ // Make sure the _thumbnail is positioned relative to the _container
+ position: relative;
+}
+
+.mx_MImageBody_thumbnail_spinner {
+ position: absolute;
+ left: 50%;
+ top: 50%;
+}
+
+// Inner img and TintableSvg should be centered around 0, 0
+.mx_MImageBody_thumbnail_spinner > * {
+ transform: translate(-50%, -50%);
+}
diff --git a/res/css/views/messages/_MStickerBody.scss b/res/css/views/messages/_MStickerBody.scss
index 3e6bbe5aa4..e4977bcc34 100644
--- a/res/css/views/messages/_MStickerBody.scss
+++ b/res/css/views/messages/_MStickerBody.scss
@@ -14,33 +14,11 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-.mx_MStickerBody {
- display: block;
- margin-right: 34px;
- min-height: 110px;
- padding: 20px 0;
+.mx_MStickerBody_wrapper {
+ padding: 20px 0px;
}
-.mx_MStickerBody_image_container {
- display: inline-block;
- position: relative;
-}
-
-.mx_MStickerBody_image {
- max-width: 100%;
- opacity: 0;
-}
-
-.mx_MStickerBody_image_visible {
- opacity: 1;
-}
-
-.mx_MStickerBody_placeholder {
- position: absolute;
- opacity: 1;
-}
-
-.mx_MStickerBody_placeholder_invisible {
- transition: 500ms;
- opacity: 0;
+.mx_MStickerBody_tooltip {
+ position: absolute;
+ top: 50%;
}
diff --git a/res/css/views/messages/_MTextBody.scss b/res/css/views/messages/_MTextBody.scss
index fcf397fd2d..93a89ad1b7 100644
--- a/res/css/views/messages/_MTextBody.scss
+++ b/res/css/views/messages/_MTextBody.scss
@@ -17,8 +17,3 @@ limitations under the License.
.mx_MTextBody {
white-space: pre-wrap;
}
-
-.mx_MTextBody pre{
- overflow-y: auto;
- max-height: 30vh;
-}
diff --git a/res/css/views/rooms/_AppsDrawer.scss b/res/css/views/rooms/_AppsDrawer.scss
index 28d432686d..4a46063376 100644
--- a/res/css/views/rooms/_AppsDrawer.scss
+++ b/res/css/views/rooms/_AppsDrawer.scss
@@ -75,6 +75,22 @@ limitations under the License.
border-radius: 2px;
}
+.mx_AppTile_mini {
+ max-width: 960px;
+ width: 100%;
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+.mx_AppTile_persistedWrapper {
+ height: 280px;
+}
+
+.mx_AppTile_mini .mx_AppTile_persistedWrapper {
+ height: 114px;
+}
+
.mx_AppTileMenuBar {
margin: 0;
padding: 2px 10px;
@@ -126,6 +142,18 @@ limitations under the License.
overflow: hidden;
}
+.mx_AppTileBody_mini {
+ height: 112px;
+ width: 100%;
+ overflow: hidden;
+}
+
+.mx_AppTileBody_mini iframe {
+ border: none;
+ width: 100%;
+ height: 100%;
+}
+
.mx_AppTileBody iframe {
width: 100%;
height: 280px;
diff --git a/res/css/views/rooms/_Autocomplete.scss b/res/css/views/rooms/_Autocomplete.scss
index 732ada088b..3e1016f60d 100644
--- a/res/css/views/rooms/_Autocomplete.scss
+++ b/res/css/views/rooms/_Autocomplete.scss
@@ -69,7 +69,8 @@
flex-flow: wrap;
}
-.mx_Autocomplete_Completion.selected {
+.mx_Autocomplete_Completion.selected,
+.mx_Autocomplete_Completion:hover {
background: $menu-bg-color;
outline: none;
}
diff --git a/res/css/views/rooms/_EventTile.scss b/res/css/views/rooms/_EventTile.scss
index ce2bf9c8a4..f74e2e0850 100644
--- a/res/css/views/rooms/_EventTile.scss
+++ b/res/css/views/rooms/_EventTile.scss
@@ -31,7 +31,6 @@ limitations under the License.
top: 14px;
left: 8px;
cursor: pointer;
- z-index: 2;
}
.mx_EventTile.mx_EventTile_info .mx_EventTile_avatar {
@@ -187,7 +186,6 @@ limitations under the License.
.mx_EventTile_msgOption {
float: right;
text-align: right;
- z-index: 1;
position: relative;
width: 90px;
@@ -290,7 +288,6 @@ limitations under the License.
position: absolute;
top: 9px;
left: 46px;
- z-index: 2;
cursor: pointer;
}
@@ -391,6 +388,7 @@ limitations under the License.
.mx_EventTile_content .markdown-body pre {
overflow-x: overlay;
overflow-y: visible;
+ max-height: 30vh;
}
.mx_EventTile_content .markdown-body code {
@@ -399,6 +397,12 @@ limitations under the License.
color: #333;
}
+.mx_EventTile_pre_container {
+ // For correct positioning of _copyButton (See TextualBody)
+ position: relative;
+}
+
+// Inserted adjacent to blocks, (See TextualBody)
.mx_EventTile_copyButton {
position: absolute;
display: inline-block;
@@ -412,7 +416,6 @@ limitations under the License.
}
.mx_EventTile_body pre {
- position: relative;
border: 1px solid transparent;
}
@@ -421,7 +424,7 @@ limitations under the License.
border: 1px solid #e5e5e5; // deliberate constant as we're behind an invert filter
}
-.mx_EventTile_body pre:hover .mx_EventTile_copyButton
+.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_copyButton
{
visibility: visible;
}
@@ -443,6 +446,7 @@ limitations under the License.
.mx_EventTile_content .markdown-body h2
{
font-size: 1.5em;
+ border-bottom: none ! important; // override GFM
}
.mx_EventTile_content .markdown-body a {
diff --git a/res/css/views/rooms/_MessageComposer.scss b/res/css/views/rooms/_MessageComposer.scss
index 0a708a8edc..e84240a705 100644
--- a/res/css/views/rooms/_MessageComposer.scss
+++ b/res/css/views/rooms/_MessageComposer.scss
@@ -70,6 +70,7 @@ limitations under the License.
flex: 1;
display: flex;
flex-direction: column;
+ cursor: text;
}
.mx_MessageComposer_input {
@@ -78,12 +79,29 @@ limitations under the License.
display: flex;
flex-direction: column;
min-height: 60px;
- justify-content: center;
+ justify-content: start;
align-items: flex-start;
font-size: 14px;
margin-right: 6px;
}
+.mx_MessageComposer_editor {
+ width: 100%;
+ max-height: 120px;
+ min-height: 19px;
+ overflow: auto;
+ word-break: break-word;
+}
+
+// FIXME: rather unpleasant hack to get rid of
margins.
+// really we should be mixing in markdown-body from gfm.css instead
+.mx_MessageComposer_editor > :first-child {
+ margin-top: 0 ! important;
+}
+.mx_MessageComposer_editor > :last-child {
+ margin-bottom: 0 ! important;
+}
+
@keyframes visualbell
{
from { background-color: #faa }
@@ -94,28 +112,6 @@ limitations under the License.
animation: 0.2s visualbell;
}
-.mx_MessageComposer_input_empty .public-DraftEditorPlaceholder-root {
- display: none;
-}
-
-.mx_MessageComposer_input .DraftEditor-root {
- width: 100%;
- flex: 1;
- word-break: break-word;
- max-height: 120px;
- min-height: 21px;
- overflow: auto;
-}
-
-.mx_MessageComposer_input .DraftEditor-root .DraftEditor-editorContainer {
- /* Ensure mx_UserPill and mx_RoomPill (see _RichText) are not obscured from the top */
- padding-top: 2px;
-}
-
-.mx_MessageComposer .public-DraftStyleDefault-block {
- overflow-x: hidden;
-}
-
.mx_MessageComposer_input blockquote {
color: $blockquote-fg-color;
margin: 0 0 16px;
@@ -123,7 +119,7 @@ limitations under the License.
border-left: 4px solid $blockquote-bar-color;
}
-.mx_MessageComposer_input pre.public-DraftStyleDefault-pre pre {
+.mx_MessageComposer_input pre {
background-color: $rte-code-bg-color;
border-radius: 3px;
padding: 10px;
diff --git a/res/css/views/rooms/_PinnedEventTile.scss b/res/css/views/rooms/_PinnedEventTile.scss
index ca790ef8f0..f7417272b6 100644
--- a/res/css/views/rooms/_PinnedEventTile.scss
+++ b/res/css/views/rooms/_PinnedEventTile.scss
@@ -25,26 +25,29 @@ limitations under the License.
background-color: $event-selected-color;
}
-.mx_PinnedEventTile .mx_PinnedEventTile_sender {
+.mx_PinnedEventTile .mx_PinnedEventTile_sender,
+.mx_PinnedEventTile .mx_PinnedEventTile_timestamp {
color: #868686;
font-size: 0.8em;
vertical-align: top;
- display: block;
+ display: inline-block;
padding-bottom: 3px;
}
-.mx_PinnedEventTile .mx_EventTile_content {
- margin-left: 50px;
- position: relative;
- top: 0;
- left: 0;
+.mx_PinnedEventTile .mx_PinnedEventTile_timestamp {
+ padding-left: 15px;
+ display: none;
}
-.mx_PinnedEventTile .mx_BaseAvatar {
+.mx_PinnedEventTile .mx_PinnedEventTile_senderAvatar .mx_BaseAvatar {
float: left;
margin-right: 10px;
}
+.mx_PinnedEventTile:hover .mx_PinnedEventTile_timestamp {
+ display: inline-block;
+}
+
.mx_PinnedEventTile:hover .mx_PinnedEventTile_actions {
display: block;
}
@@ -63,5 +66,12 @@ limitations under the License.
.mx_PinnedEventTile_gotoButton {
display: inline-block;
- font-size: 0.8em;
+ font-size: 0.7em; // Smaller text to avoid conflicting with the layout
}
+
+.mx_PinnedEventTile_message {
+ margin-left: 50px;
+ position: relative;
+ top: 0;
+ left: 0;
+}
\ No newline at end of file
diff --git a/res/img/button-refresh.svg b/res/img/button-refresh.svg
new file mode 100644
index 0000000000..b4990a2147
--- /dev/null
+++ b/res/img/button-refresh.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/res/img/button-text-quote-o-n.svg b/res/img/button-text-block-quote-on.svg
similarity index 100%
rename from res/img/button-text-quote-o-n.svg
rename to res/img/button-text-block-quote-on.svg
diff --git a/res/img/button-text-quote.svg b/res/img/button-text-block-quote.svg
similarity index 100%
rename from res/img/button-text-quote.svg
rename to res/img/button-text-block-quote.svg
diff --git a/res/img/button-text-bold-o-n.svg b/res/img/button-text-bold-on.svg
similarity index 100%
rename from res/img/button-text-bold-o-n.svg
rename to res/img/button-text-bold-on.svg
diff --git a/res/img/button-text-bullet-o-n.svg b/res/img/button-text-bulleted-list-on.svg
similarity index 100%
rename from res/img/button-text-bullet-o-n.svg
rename to res/img/button-text-bulleted-list-on.svg
diff --git a/res/img/button-text-bullet.svg b/res/img/button-text-bulleted-list.svg
similarity index 100%
rename from res/img/button-text-bullet.svg
rename to res/img/button-text-bulleted-list.svg
diff --git a/res/img/button-text-strike-o-n.svg b/res/img/button-text-deleted-on.svg
similarity index 100%
rename from res/img/button-text-strike-o-n.svg
rename to res/img/button-text-deleted-on.svg
diff --git a/res/img/button-text-strike.svg b/res/img/button-text-deleted.svg
similarity index 100%
rename from res/img/button-text-strike.svg
rename to res/img/button-text-deleted.svg
diff --git a/res/img/button-text-code-o-n.svg b/res/img/button-text-inline-code-on.svg
similarity index 100%
rename from res/img/button-text-code-o-n.svg
rename to res/img/button-text-inline-code-on.svg
diff --git a/res/img/button-text-code.svg b/res/img/button-text-inline-code.svg
similarity index 100%
rename from res/img/button-text-code.svg
rename to res/img/button-text-inline-code.svg
diff --git a/res/img/button-text-italic-o-n.svg b/res/img/button-text-italic-on.svg
similarity index 100%
rename from res/img/button-text-italic-o-n.svg
rename to res/img/button-text-italic-on.svg
diff --git a/res/img/button-text-numbullet-o-n.svg b/res/img/button-text-numbered-list-on.svg
similarity index 100%
rename from res/img/button-text-numbullet-o-n.svg
rename to res/img/button-text-numbered-list-on.svg
diff --git a/res/img/button-text-numbullet.svg b/res/img/button-text-numbered-list.svg
similarity index 100%
rename from res/img/button-text-numbullet.svg
rename to res/img/button-text-numbered-list.svg
diff --git a/res/img/button-text-underline-o-n.svg b/res/img/button-text-underlined-on.svg
similarity index 100%
rename from res/img/button-text-underline-o-n.svg
rename to res/img/button-text-underlined-on.svg
diff --git a/res/img/button-text-underline.svg b/res/img/button-text-underlined.svg
similarity index 100%
rename from res/img/button-text-underline.svg
rename to res/img/button-text-underlined.svg
diff --git a/res/img/e2e-encrypting.svg b/res/img/e2e-encrypting.svg
new file mode 100644
index 0000000000..469611cc8d
--- /dev/null
+++ b/res/img/e2e-encrypting.svg
@@ -0,0 +1,12 @@
+
+
+
+48BF5D32-306C-4B20-88EB-24B1F743CAC9
+Created with sketchtool.
+
+
+
+
+
+
+
diff --git a/res/img/e2e-not_sent.svg b/res/img/e2e-not_sent.svg
new file mode 100644
index 0000000000..fca79ae547
--- /dev/null
+++ b/res/img/e2e-not_sent.svg
@@ -0,0 +1,12 @@
+
+
+
+48BF5D32-306C-4B20-88EB-24B1F743CAC9
+Created with sketchtool.
+
+
+
+
+
+
+
diff --git a/res/img/icons-share.svg b/res/img/icons-share.svg
new file mode 100644
index 0000000000..b27616d5d5
--- /dev/null
+++ b/res/img/icons-share.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/res/img/matrix-m.svg b/res/img/matrix-m.svg
new file mode 100644
index 0000000000..ccb1df0fc5
--- /dev/null
+++ b/res/img/matrix-m.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/res/img/social/email-1.png b/res/img/social/email-1.png
new file mode 100644
index 0000000000..193cb659da
Binary files /dev/null and b/res/img/social/email-1.png differ
diff --git a/res/img/social/facebook.png b/res/img/social/facebook.png
new file mode 100644
index 0000000000..457ef761a1
Binary files /dev/null and b/res/img/social/facebook.png differ
diff --git a/res/img/social/linkedin.png b/res/img/social/linkedin.png
new file mode 100644
index 0000000000..4c92adb56b
Binary files /dev/null and b/res/img/social/linkedin.png differ
diff --git a/res/img/social/reddit.png b/res/img/social/reddit.png
new file mode 100644
index 0000000000..1310168470
Binary files /dev/null and b/res/img/social/reddit.png differ
diff --git a/res/img/social/twitter-2.png b/res/img/social/twitter-2.png
new file mode 100644
index 0000000000..9f6e7c602b
Binary files /dev/null and b/res/img/social/twitter-2.png differ
diff --git a/res/themes/dark/css/_dark.scss b/res/themes/dark/css/_dark.scss
index 31773ebd09..8ab338790e 100644
--- a/res/themes/dark/css/_dark.scss
+++ b/res/themes/dark/css/_dark.scss
@@ -19,6 +19,8 @@ $focus-brightness: 200%;
// red warning colour
$warning-color: #ff0064;
+$warning-bg-color: #DF2A8B;
+$info-bg-color: #2A9EDF;
// groups
$info-plinth-bg-color: #454545;
diff --git a/res/themes/light/css/_base.scss b/res/themes/light/css/_base.scss
index 5d5f5d7c90..7d004bd831 100644
--- a/res/themes/light/css/_base.scss
+++ b/res/themes/light/css/_base.scss
@@ -25,6 +25,9 @@ $focus-brightness: 125%;
// red warning colour
$warning-color: #ff0064;
+// background colour for warnings
+$warning-bg-color: #DF2A8B;
+$info-bg-color: #2A9EDF;
$mention-user-pill-bg-color: #ff0064;
$other-user-pill-bg-color: rgba(0, 0, 0, 0.1);
@@ -97,6 +100,7 @@ $voip-accept-color: #80f480;
$rte-bg-color: #e9e9e9;
$rte-code-bg-color: rgba(0, 0, 0, 0.04);
$rte-room-pill-color: #aaa;
+$rte-group-pill-color: #aaa;
// ********************
diff --git a/scripts/emoji-data-strip.js b/scripts/emoji-data-strip.js
index 40156471fe..42bf2ac2de 100644
--- a/scripts/emoji-data-strip.js
+++ b/scripts/emoji-data-strip.js
@@ -12,6 +12,9 @@ const output = Object.keys(EMOJI_DATA).map(
category: datum.category,
emoji_order: datum.emoji_order,
};
+ if (datum.aliases.length > 0) {
+ newDatum.aliases = datum.aliases;
+ }
if (datum.aliases_ascii.length > 0) {
newDatum.aliases_ascii = datum.aliases_ascii;
}
diff --git a/src/Analytics.js b/src/Analytics.js
index 8ffce7077f..d85d635b28 100644
--- a/src/Analytics.js
+++ b/src/Analytics.js
@@ -39,9 +39,17 @@ function getRedactedHash(hash) {
return hash.replace(hashRegex, "#/$1");
}
-// Return the current origin and hash separated with a `/`. This does not include query parameters.
+// Return the current origin, path and hash separated with a `/`. This does
+// not include query parameters.
function getRedactedUrl() {
- const { origin, pathname, hash } = window.location;
+ const { origin, hash } = window.location;
+ let { pathname } = window.location;
+
+ // Redact paths which could contain unexpected PII
+ if (origin.startsWith('file://')) {
+ pathname = "//";
+ }
+
return origin + pathname + getRedactedHash(hash);
}
@@ -191,9 +199,9 @@ class Analytics {
this._paq.push(['trackPageView']);
}
- trackEvent(category, action, name) {
+ trackEvent(category, action, name, value) {
if (this.disabled) return;
- this._paq.push(['trackEvent', category, action, name]);
+ this._paq.push(['trackEvent', category, action, name, value]);
}
logout() {
diff --git a/src/CallHandler.js b/src/CallHandler.js
index fd56d7f1b1..acdc3e5122 100644
--- a/src/CallHandler.js
+++ b/src/CallHandler.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -59,7 +59,11 @@ import sdk from './index';
import { _t } from './languageHandler';
import Matrix from 'matrix-js-sdk';
import dis from './dispatcher';
+import SdkConfig from './SdkConfig';
import { showUnknownDeviceDialogForCalls } from './cryptodevices';
+import WidgetUtils from './utils/WidgetUtils';
+import WidgetEchoStore from './stores/WidgetEchoStore';
+import ScalarAuthClient from './ScalarAuthClient';
global.mxCalls = {
//room_id: MatrixCall
@@ -123,7 +127,7 @@ function _setCallListeners(call) {
description: _t(
"There are unknown devices in this room: "+
"if you proceed without verifying them, it will be "+
- "possible for someone to eavesdrop on your call."
+ "possible for someone to eavesdrop on your call.",
),
button: _t('Review Devices'),
onFinished: function(confirmed) {
@@ -246,117 +250,77 @@ function _onAction(payload) {
switch (payload.action) {
case 'place_call':
- if (module.exports.getAnyActiveCall()) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'Existing Call', ErrorDialog, {
- title: _t('Existing Call'),
- description: _t('You are already in a call.'),
- });
- return; // don't allow >1 call to be placed.
- }
+ {
+ if (module.exports.getAnyActiveCall()) {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+ Modal.createTrackedDialog('Call Handler', 'Existing Call', ErrorDialog, {
+ title: _t('Existing Call'),
+ description: _t('You are already in a call.'),
+ });
+ return; // don't allow >1 call to be placed.
+ }
- // if the runtime env doesn't do VoIP, whine.
- if (!MatrixClientPeg.get().supportsVoip()) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'VoIP is unsupported', ErrorDialog, {
- title: _t('VoIP is unsupported'),
- description: _t('You cannot place VoIP calls in this browser.'),
- });
- return;
- }
+ // if the runtime env doesn't do VoIP, whine.
+ if (!MatrixClientPeg.get().supportsVoip()) {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+ Modal.createTrackedDialog('Call Handler', 'VoIP is unsupported', ErrorDialog, {
+ title: _t('VoIP is unsupported'),
+ description: _t('You cannot place VoIP calls in this browser.'),
+ });
+ return;
+ }
- var room = MatrixClientPeg.get().getRoom(payload.room_id);
- if (!room) {
- console.error("Room %s does not exist.", payload.room_id);
- return;
- }
+ const room = MatrixClientPeg.get().getRoom(payload.room_id);
+ if (!room) {
+ console.error("Room %s does not exist.", payload.room_id);
+ return;
+ }
- var members = room.getJoinedMembers();
- if (members.length <= 1) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'Cannot place call with self', ErrorDialog, {
- description: _t('You cannot place a call with yourself.'),
- });
- return;
- } else if (members.length === 2) {
- console.log("Place %s call in %s", payload.type, payload.room_id);
- const call = Matrix.createNewMatrixCall(MatrixClientPeg.get(), payload.room_id);
- placeCall(call);
- } else { // > 2
- dis.dispatch({
- action: "place_conference_call",
- room_id: payload.room_id,
- type: payload.type,
- remote_element: payload.remote_element,
- local_element: payload.local_element,
- });
+ const members = room.getJoinedMembers();
+ if (members.length <= 1) {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+ Modal.createTrackedDialog('Call Handler', 'Cannot place call with self', ErrorDialog, {
+ description: _t('You cannot place a call with yourself.'),
+ });
+ return;
+ } else if (members.length === 2) {
+ console.log("Place %s call in %s", payload.type, payload.room_id);
+ const call = Matrix.createNewMatrixCall(MatrixClientPeg.get(), payload.room_id);
+ placeCall(call);
+ } else { // > 2
+ dis.dispatch({
+ action: "place_conference_call",
+ room_id: payload.room_id,
+ type: payload.type,
+ remote_element: payload.remote_element,
+ local_element: payload.local_element,
+ });
+ }
}
break;
case 'place_conference_call':
console.log("Place conference call in %s", payload.room_id);
- if (!ConferenceHandler) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'Conference call unsupported client', ErrorDialog, {
- description: _t('Conference calls are not supported in this client'),
- });
- } else if (!MatrixClientPeg.get().supportsVoip()) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'VoIP is unsupported', ErrorDialog, {
- title: _t('VoIP is unsupported'),
- description: _t('You cannot place VoIP calls in this browser.'),
- });
- } else if (MatrixClientPeg.get().isRoomEncrypted(payload.room_id)) {
- // Conference calls are implemented by sending the media to central
- // server which combines the audio from all the participants together
- // into a single stream. This is incompatible with end-to-end encryption
- // because a central server would be decrypting the audio for each
- // participant.
- // Therefore we disable conference calling in E2E rooms.
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- Modal.createTrackedDialog('Call Handler', 'Conference calls unsupported e2e', ErrorDialog, {
- description: _t('Conference calls are not supported in encrypted rooms'),
- });
- } else {
- const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
- Modal.createTrackedDialog('Call Handler', 'Conference calling in development', QuestionDialog, {
- title: _t('Warning!'),
- description: _t('Conference calling is in development and may not be reliable.'),
- onFinished: (confirm)=>{
- if (confirm) {
- ConferenceHandler.createNewMatrixCall(
- MatrixClientPeg.get(), payload.room_id,
- ).done(function(call) {
- placeCall(call);
- }, function(err) {
- const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
- console.error("Conference call failed: " + err);
- Modal.createTrackedDialog('Call Handler', 'Failed to set up conference call', ErrorDialog, {
- title: _t('Failed to set up conference call'),
- description: _t('Conference call failed.') + ' ' + ((err && err.message) ? err.message : ''),
- });
- });
- }
- },
- });
- }
+ _startCallApp(payload.room_id, payload.type);
break;
case 'incoming_call':
- if (module.exports.getAnyActiveCall()) {
- // ignore multiple incoming calls. in future, we may want a line-1/line-2 setup.
- // we avoid rejecting with "busy" in case the user wants to answer it on a different device.
- // in future we could signal a "local busy" as a warning to the caller.
- // see https://github.com/vector-im/vector-web/issues/1964
- return;
- }
+ {
+ if (module.exports.getAnyActiveCall()) {
+ // ignore multiple incoming calls. in future, we may want a line-1/line-2 setup.
+ // we avoid rejecting with "busy" in case the user wants to answer it on a different device.
+ // in future we could signal a "local busy" as a warning to the caller.
+ // see https://github.com/vector-im/vector-web/issues/1964
+ return;
+ }
- // if the runtime env doesn't do VoIP, stop here.
- if (!MatrixClientPeg.get().supportsVoip()) {
- return;
- }
+ // if the runtime env doesn't do VoIP, stop here.
+ if (!MatrixClientPeg.get().supportsVoip()) {
+ return;
+ }
- var call = payload.call;
- _setCallListeners(call);
- _setCallState(call, call.roomId, "ringing");
+ const call = payload.call;
+ _setCallListeners(call);
+ _setCallState(call, call.roomId, "ringing");
+ }
break;
case 'hangup':
if (!calls[payload.room_id]) {
@@ -378,6 +342,112 @@ function _onAction(payload) {
break;
}
}
+
+async function _startCallApp(roomId, type) {
+ // check for a working intgrations manager. Technically we could put
+ // the state event in anyway, but the resulting widget would then not
+ // work for us. Better that the user knows before everyone else in the
+ // room sees it.
+ const scalarClient = new ScalarAuthClient();
+ let haveScalar = false;
+ try {
+ await scalarClient.connect();
+ haveScalar = scalarClient.hasCredentials();
+ } catch (e) {
+ // fall through
+ }
+ if (!haveScalar) {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+
+ Modal.createTrackedDialog('Could not connect to the integration server', '', ErrorDialog, {
+ title: _t('Could not connect to the integration server'),
+ description: _t('A conference call could not be started because the intgrations server is not available'),
+ });
+ return;
+ }
+
+ dis.dispatch({
+ action: 'appsDrawer',
+ show: true,
+ });
+
+ const room = MatrixClientPeg.get().getRoom(roomId);
+ const currentRoomWidgets = WidgetUtils.getRoomWidgets(room);
+
+ if (WidgetEchoStore.roomHasPendingWidgetsOfType(roomId, currentRoomWidgets, 'jitsi')) {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+
+ Modal.createTrackedDialog('Call already in progress', '', ErrorDialog, {
+ title: _t('Call in Progress'),
+ description: _t('A call is currently being placed!'),
+ });
+ return;
+ }
+
+ const currentJitsiWidgets = currentRoomWidgets.filter((ev) => {
+ return ev.getContent().type === 'jitsi';
+ });
+ if (currentJitsiWidgets.length > 0) {
+ console.warn(
+ "Refusing to start conference call widget in " + roomId +
+ " a conference call widget is already present",
+ );
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+
+ Modal.createTrackedDialog('Already have Jitsi Widget', '', ErrorDialog, {
+ title: _t('Call in Progress'),
+ description: _t('A call is already in progress!'),
+ });
+ return;
+ }
+
+ // This inherits its poor naming from the field of the same name that goes into
+ // the event. It's just a random string to make the Jitsi URLs unique.
+ const widgetSessionId = Math.random().toString(36).substring(2);
+ const confId = room.roomId.replace(/[^A-Za-z0-9]/g, '') + widgetSessionId;
+ // NB. we can't just encodeURICompoent all of these because the $ signs need to be there
+ // (but currently the only thing that needs encoding is the confId)
+ const queryString = [
+ 'confId='+encodeURIComponent(confId),
+ 'isAudioConf='+(type === 'voice' ? 'true' : 'false'),
+ 'displayName=$matrix_display_name',
+ 'avatarUrl=$matrix_avatar_url',
+ 'email=$matrix_user_id',
+ ].join('&');
+
+ let widgetUrl;
+ if (SdkConfig.get().integrations_jitsi_widget_url) {
+ // Try this config key. This probably isn't ideal as a way of discovering this
+ // URL, but this will at least allow the integration manager to not be hardcoded.
+ widgetUrl = SdkConfig.get().integrations_jitsi_widget_url + '?' + queryString;
+ } else {
+ widgetUrl = SdkConfig.get().integrations_rest_url + '/widgets/jitsi.html?' + queryString;
+ }
+
+ const widgetData = { widgetSessionId };
+
+ const widgetId = (
+ 'jitsi_' +
+ MatrixClientPeg.get().credentials.userId +
+ '_' +
+ Date.now()
+ );
+
+ WidgetUtils.setRoomWidget(roomId, widgetId, 'jitsi', widgetUrl, 'Jitsi', widgetData).then(() => {
+ console.log('Jitsi widget added');
+ }).catch((e) => {
+ if (e.errcode === 'M_FORBIDDEN') {
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+
+ Modal.createTrackedDialog('Call Failed', '', ErrorDialog, {
+ title: _t('Permission Required'),
+ description: _t("You do not have permission to start a conference call in this room"),
+ });
+ }
+ console.error(e);
+ });
+}
+
// FIXME: Nasty way of making sure we only register
// with the dispatcher once
if (!global.mxCallHandler) {
@@ -412,6 +482,24 @@ const callHandler = {
return null;
},
+ /**
+ * The conference handler is a module that deals with implementation-specific
+ * multi-party calling implementations. Riot passes in its own which creates
+ * a one-to-one call with a freeswitch conference bridge. As of July 2018,
+ * the de-facto way of conference calling is a Jitsi widget, so this is
+ * deprecated. It reamins here for two reasons:
+ * 1. So Riot still supports joining existing freeswitch conference calls
+ * (but doesn't support creating them). After a transition period, we can
+ * remove support for joining them too.
+ * 2. To hide the one-to-one rooms that old-style conferencing creates. This
+ * is much harder to remove: probably either we make Riot leave & forget these
+ * rooms after we remove support for joining freeswitch conferences, or we
+ * accept that random rooms with cryptic users will suddently appear for
+ * anyone who's ever used conference calling, or we are stuck with this
+ * code forever.
+ *
+ * @param {object} confHandler The conference handler object
+ */
setConferenceHandler: function(confHandler) {
ConferenceHandler = confHandler;
},
diff --git a/src/CallMediaHandler.js b/src/CallMediaHandler.js
index cdc5c61921..2330f86b99 100644
--- a/src/CallMediaHandler.js
+++ b/src/CallMediaHandler.js
@@ -22,34 +22,44 @@ export default {
// Only needed for Electron atm, though should work in modern browsers
// once permission has been granted to the webapp
return navigator.mediaDevices.enumerateDevices().then(function(devices) {
- const audioIn = [];
- const videoIn = [];
+ const audiooutput = [];
+ const audioinput = [];
+ const videoinput = [];
if (devices.some((device) => !device.label)) return false;
devices.forEach((device) => {
switch (device.kind) {
- case 'audioinput': audioIn.push(device); break;
- case 'videoinput': videoIn.push(device); break;
+ case 'audiooutput': audiooutput.push(device); break;
+ case 'audioinput': audioinput.push(device); break;
+ case 'videoinput': videoinput.push(device); break;
}
});
// console.log("Loaded WebRTC Devices", mediaDevices);
return {
- audioinput: audioIn,
- videoinput: videoIn,
+ audiooutput,
+ audioinput,
+ videoinput,
};
}, (error) => { console.log('Unable to refresh WebRTC Devices: ', error); });
},
loadDevices: function() {
+ const audioOutDeviceId = SettingsStore.getValue("webrtc_audiooutput");
const audioDeviceId = SettingsStore.getValue("webrtc_audioinput");
const videoDeviceId = SettingsStore.getValue("webrtc_videoinput");
+ Matrix.setMatrixCallAudioOutput(audioOutDeviceId);
Matrix.setMatrixCallAudioInput(audioDeviceId);
Matrix.setMatrixCallVideoInput(videoDeviceId);
},
+ setAudioOutput: function(deviceId) {
+ SettingsStore.setValue("webrtc_audiooutput", null, SettingLevel.DEVICE, deviceId);
+ Matrix.setMatrixCallAudioOutput(deviceId);
+ },
+
setAudioInput: function(deviceId) {
SettingsStore.setValue("webrtc_audioinput", null, SettingLevel.DEVICE, deviceId);
Matrix.setMatrixCallAudioInput(deviceId);
diff --git a/src/ComposerHistoryManager.js b/src/ComposerHistoryManager.js
index 2757c5bd3d..0164e6c4cd 100644
--- a/src/ComposerHistoryManager.js
+++ b/src/ComposerHistoryManager.js
@@ -15,46 +15,44 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-import {ContentState, convertToRaw, convertFromRaw} from 'draft-js';
-import * as RichText from './RichText';
-import Markdown from './Markdown';
+import { Value } from 'slate';
+
import _clamp from 'lodash/clamp';
-type MessageFormat = 'html' | 'markdown';
+type MessageFormat = 'rich' | 'markdown';
class HistoryItem {
- // Keeping message for backwards-compatibility
- message: string;
- rawContentState: RawDraftContentState;
- format: MessageFormat = 'html';
+ // We store history items in their native format to ensure history is accurate
+ // and then convert them if our RTE has subsequently changed format.
+ value: Value;
+ format: MessageFormat = 'rich';
- constructor(contentState: ?ContentState, format: ?MessageFormat) {
- this.rawContentState = contentState ? convertToRaw(contentState) : null;
+ constructor(value: ?Value, format: ?MessageFormat) {
+ this.value = value;
this.format = format;
}
- toContentState(outputFormat: MessageFormat): ContentState {
- const contentState = convertFromRaw(this.rawContentState);
- if (outputFormat === 'markdown') {
- if (this.format === 'html') {
- return ContentState.createFromText(RichText.stateToMarkdown(contentState));
- }
- } else {
- if (this.format === 'markdown') {
- return RichText.htmlToContentState(new Markdown(contentState.getPlainText()).toHTML());
- }
- }
- // history item has format === outputFormat
- return contentState;
+ static fromJSON(obj: Object): HistoryItem {
+ return new HistoryItem(
+ Value.fromJSON(obj.value),
+ obj.format,
+ );
+ }
+
+ toJSON(): Object {
+ return {
+ value: this.value.toJSON(),
+ format: this.format,
+ };
}
}
export default class ComposerHistoryManager {
history: Array = [];
prefix: string;
- lastIndex: number = 0;
- currentIndex: number = 0;
+ lastIndex: number = 0; // used for indexing the storage
+ currentIndex: number = 0; // used for indexing the loaded validated history Array
constructor(roomId: string, prefix: string = 'mx_composer_history_') {
this.prefix = prefix + roomId;
@@ -62,23 +60,28 @@ export default class ComposerHistoryManager {
// TODO: Performance issues?
let item;
for (; item = sessionStorage.getItem(`${this.prefix}[${this.currentIndex}]`); this.currentIndex++) {
- this.history.push(
- Object.assign(new HistoryItem(), JSON.parse(item)),
- );
+ try {
+ this.history.push(
+ HistoryItem.fromJSON(JSON.parse(item)),
+ );
+ } catch (e) {
+ console.warn("Throwing away unserialisable history", e);
+ }
}
this.lastIndex = this.currentIndex;
+ // reset currentIndex to account for any unserialisable history
+ this.currentIndex = this.history.length;
}
- save(contentState: ContentState, format: MessageFormat) {
- const item = new HistoryItem(contentState, format);
+ save(value: Value, format: MessageFormat) {
+ const item = new HistoryItem(value, format);
this.history.push(item);
- this.currentIndex = this.lastIndex + 1;
- sessionStorage.setItem(`${this.prefix}[${this.lastIndex++}]`, JSON.stringify(item));
+ this.currentIndex = this.history.length;
+ sessionStorage.setItem(`${this.prefix}[${this.lastIndex++}]`, JSON.stringify(item.toJSON()));
}
- getItem(offset: number, format: MessageFormat): ?ContentState {
- this.currentIndex = _clamp(this.currentIndex + offset, 0, this.lastIndex - 1);
- const item = this.history[this.currentIndex];
- return item ? item.toContentState(format) : null;
+ getItem(offset: number): ?HistoryItem {
+ this.currentIndex = _clamp(this.currentIndex + offset, 0, this.history.length - 1);
+ return this.history[this.currentIndex];
}
}
diff --git a/src/ContentMessages.js b/src/ContentMessages.js
index 7fe625f8b9..fd21977108 100644
--- a/src/ContentMessages.js
+++ b/src/ContentMessages.js
@@ -243,6 +243,7 @@ function uploadFile(matrixClient, roomId, file, progressHandler) {
const blob = new Blob([encryptResult.data]);
return matrixClient.uploadContent(blob, {
progressHandler: progressHandler,
+ includeFilename: false,
}).then(function(url) {
// If the attachment is encrypted then bundle the URL along
// with the information needed to decrypt the attachment and
diff --git a/src/DecryptionFailureTracker.js b/src/DecryptionFailureTracker.js
new file mode 100644
index 0000000000..b02a5e937b
--- /dev/null
+++ b/src/DecryptionFailureTracker.js
@@ -0,0 +1,202 @@
+/*
+Copyright 2018 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.
+*/
+
+export class DecryptionFailure {
+ constructor(failedEventId, errorCode) {
+ this.failedEventId = failedEventId;
+ this.errorCode = errorCode;
+ this.ts = Date.now();
+ }
+}
+
+export class DecryptionFailureTracker {
+ // Array of items of type DecryptionFailure. Every `CHECK_INTERVAL_MS`, this list
+ // is checked for failures that happened > `GRACE_PERIOD_MS` ago. Those that did
+ // are accumulated in `failureCounts`.
+ failures = [];
+
+ // A histogram of the number of failures that will be tracked at the next tracking
+ // interval, split by failure error code.
+ failureCounts = {
+ // [errorCode]: 42
+ };
+
+ // Event IDs of failures that were tracked previously
+ trackedEventHashMap = {
+ // [eventId]: true
+ };
+
+ // Set to an interval ID when `start` is called
+ checkInterval = null;
+ trackInterval = null;
+
+ // Spread the load on `Analytics` by tracking at a low frequency, `TRACK_INTERVAL_MS`.
+ static TRACK_INTERVAL_MS = 60000;
+
+ // Call `checkFailures` every `CHECK_INTERVAL_MS`.
+ static CHECK_INTERVAL_MS = 5000;
+
+ // Give events a chance to be decrypted by waiting `GRACE_PERIOD_MS` before counting
+ // the failure in `failureCounts`.
+ static GRACE_PERIOD_MS = 60000;
+
+ /**
+ * Create a new DecryptionFailureTracker.
+ *
+ * Call `eventDecrypted(event, err)` on this instance when an event is decrypted.
+ *
+ * Call `start()` to start the tracker, and `stop()` to stop tracking.
+ *
+ * @param {function} fn The tracking function, which will be called when failures
+ * are tracked. The function should have a signature `(count, trackedErrorCode) => {...}`,
+ * where `count` is the number of failures and `errorCode` matches the `.code` of
+ * provided DecryptionError errors (by default, unless `errorCodeMapFn` is specified.
+ * @param {function?} errorCodeMapFn The function used to map error codes to the
+ * trackedErrorCode. If not provided, the `.code` of errors will be used.
+ */
+ constructor(fn, errorCodeMapFn) {
+ if (!fn || typeof fn !== 'function') {
+ throw new Error('DecryptionFailureTracker requires tracking function');
+ }
+
+ if (errorCodeMapFn && typeof errorCodeMapFn !== 'function') {
+ throw new Error('DecryptionFailureTracker second constructor argument should be a function');
+ }
+
+ this._trackDecryptionFailure = fn;
+ this._mapErrorCode = errorCodeMapFn;
+ }
+
+ // loadTrackedEventHashMap() {
+ // this.trackedEventHashMap = JSON.parse(localStorage.getItem('mx-decryption-failure-event-id-hashes')) || {};
+ // }
+
+ // saveTrackedEventHashMap() {
+ // localStorage.setItem('mx-decryption-failure-event-id-hashes', JSON.stringify(this.trackedEventHashMap));
+ // }
+
+ eventDecrypted(e, err) {
+ if (err) {
+ this.addDecryptionFailure(new DecryptionFailure(e.getId(), err.code));
+ } else {
+ // Could be an event in the failures, remove it
+ this.removeDecryptionFailuresForEvent(e);
+ }
+ }
+
+ addDecryptionFailure(failure) {
+ this.failures.push(failure);
+ }
+
+ removeDecryptionFailuresForEvent(e) {
+ this.failures = this.failures.filter((f) => f.failedEventId !== e.getId());
+ }
+
+ /**
+ * Start checking for and tracking failures.
+ */
+ start() {
+ this.checkInterval = setInterval(
+ () => this.checkFailures(Date.now()),
+ DecryptionFailureTracker.CHECK_INTERVAL_MS,
+ );
+
+ this.trackInterval = setInterval(
+ () => this.trackFailures(),
+ DecryptionFailureTracker.TRACK_INTERVAL_MS,
+ );
+ }
+
+ /**
+ * Clear state and stop checking for and tracking failures.
+ */
+ stop() {
+ clearInterval(this.checkInterval);
+ clearInterval(this.trackInterval);
+
+ this.failures = [];
+ this.failureCounts = {};
+ }
+
+ /**
+ * Mark failures that occured before nowTs - GRACE_PERIOD_MS as failures that should be
+ * tracked. Only mark one failure per event ID.
+ * @param {number} nowTs the timestamp that represents the time now.
+ */
+ checkFailures(nowTs) {
+ const failuresGivenGrace = [];
+ const failuresNotReady = [];
+ while (this.failures.length > 0) {
+ const f = this.failures.shift();
+ if (nowTs > f.ts + DecryptionFailureTracker.GRACE_PERIOD_MS) {
+ failuresGivenGrace.push(f);
+ } else {
+ failuresNotReady.push(f);
+ }
+ }
+ this.failures = failuresNotReady;
+
+ // Only track one failure per event
+ const dedupedFailuresMap = failuresGivenGrace.reduce(
+ (map, failure) => {
+ if (!this.trackedEventHashMap[failure.failedEventId]) {
+ return map.set(failure.failedEventId, failure);
+ } else {
+ return map;
+ }
+ },
+ // Use a map to preseve key ordering
+ new Map(),
+ );
+
+ const trackedEventIds = [...dedupedFailuresMap.keys()];
+
+ this.trackedEventHashMap = trackedEventIds.reduce(
+ (result, eventId) => ({...result, [eventId]: true}),
+ this.trackedEventHashMap,
+ );
+
+ // Commented out for now for expediency, we need to consider unbound nature of storing
+ // this in localStorage
+ // this.saveTrackedEventHashMap();
+
+ const dedupedFailures = dedupedFailuresMap.values();
+
+ this._aggregateFailures(dedupedFailures);
+ }
+
+ _aggregateFailures(failures) {
+ for (const failure of failures) {
+ const errorCode = failure.errorCode;
+ this.failureCounts[errorCode] = (this.failureCounts[errorCode] || 0) + 1;
+ }
+ }
+
+ /**
+ * If there are failures that should be tracked, call the given trackDecryptionFailure
+ * function with the number of failures that should be tracked.
+ */
+ trackFailures() {
+ for (const errorCode of Object.keys(this.failureCounts)) {
+ if (this.failureCounts[errorCode] > 0) {
+ const trackedErrorCode = this._mapErrorCode ? this._mapErrorCode(errorCode) : errorCode;
+
+ this._trackDecryptionFailure(this.failureCounts[errorCode], trackedErrorCode);
+ this.failureCounts[errorCode] = 0;
+ }
+ }
+ }
+}
diff --git a/src/FromWidgetPostMessageApi.js b/src/FromWidgetPostMessageApi.js
index 792fd73733..ea7eeba756 100644
--- a/src/FromWidgetPostMessageApi.js
+++ b/src/FromWidgetPostMessageApi.js
@@ -18,6 +18,7 @@ import URL from 'url';
import dis from './dispatcher';
import IntegrationManager from './IntegrationManager';
import WidgetMessagingEndpoint from './WidgetMessagingEndpoint';
+import ActiveWidgetStore from './stores/ActiveWidgetStore';
const WIDGET_API_VERSION = '0.0.1'; // Current API version
const SUPPORTED_WIDGET_API_VERSIONS = [
@@ -155,6 +156,14 @@ export default class FromWidgetPostMessageApi {
const integType = (data && data.integType) ? data.integType : null;
const integId = (data && data.integId) ? data.integId : null;
IntegrationManager.open(integType, integId);
+ } else if (action === 'set_always_on_screen') {
+ // This is a new message: there is no reason to support the deprecated widgetData here
+ const data = event.data.data;
+ const val = data.value;
+
+ if (ActiveWidgetStore.widgetHasCapability(widgetId, 'm.always_on_screen')) {
+ ActiveWidgetStore.setWidgetPersistence(widgetId, val);
+ }
} else {
console.warn('Widget postMessage event unhandled');
this.sendError(event, {message: 'The postMessage was unhandled'});
diff --git a/src/GroupAddressPicker.js b/src/GroupAddressPicker.js
index 91380b6eed..532ee23c25 100644
--- a/src/GroupAddressPicker.js
+++ b/src/GroupAddressPicker.js
@@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
+import React from 'react';
import Modal from './Modal';
import sdk from './';
import MultiInviter from './utils/MultiInviter';
diff --git a/src/HtmlUtils.js b/src/HtmlUtils.js
index 7ca404be31..b6a2bd0acb 100644
--- a/src/HtmlUtils.js
+++ b/src/HtmlUtils.js
@@ -112,7 +112,6 @@ export function charactersToImageNode(alt, useSvg, ...unicode) {
/>;
}
-
export function processHtmlForSending(html: string): string {
const contentDiv = document.createElement('div');
contentDiv.innerHTML = html;
@@ -130,13 +129,6 @@ export function processHtmlForSending(html: string): string {
if (i !== contentDiv.children.length - 1) {
contentHTML += ' ';
}
- } else if (element.tagName.toLowerCase() === 'pre') {
- // Replace " \n" with "\n" within `` tags because the is
- // redundant. This is a workaround for a bug in draft-js-export-html:
- // https://github.com/sstur/draft-js-export-html/issues/62
- contentHTML += '' +
- element.innerHTML.replace(/ \n/g, '\n').trim() +
- ' ';
} else {
const temp = document.createElement('div');
temp.appendChild(element.cloneNode(true));
@@ -176,6 +168,99 @@ export function isUrlPermitted(inputUrl) {
}
}
+const transformTags = { // custom to matrix
+ // add blank targets to all hyperlinks except vector URLs
+ 'a': function(tagName, attribs) {
+ if (attribs.href) {
+ attribs.target = '_blank'; // by default
+
+ let m;
+ // FIXME: horrible duplication with linkify-matrix
+ m = attribs.href.match(linkifyMatrix.VECTOR_URL_PATTERN);
+ if (m) {
+ attribs.href = m[1];
+ delete attribs.target;
+ } else {
+ m = attribs.href.match(linkifyMatrix.MATRIXTO_URL_PATTERN);
+ if (m) {
+ const entity = m[1];
+ switch (entity[0]) {
+ case '@':
+ attribs.href = '#/user/' + entity;
+ break;
+ case '+':
+ attribs.href = '#/group/' + entity;
+ break;
+ case '#':
+ case '!':
+ attribs.href = '#/room/' + entity;
+ break;
+ }
+ delete attribs.target;
+ }
+ }
+ }
+ attribs.rel = 'noopener'; // https://mathiasbynens.github.io/rel-noopener/
+ return { tagName, attribs };
+ },
+ 'img': function(tagName, attribs) {
+ // Strip out imgs that aren't `mxc` here instead of using allowedSchemesByTag
+ // because transformTags is used _before_ we filter by allowedSchemesByTag and
+ // we don't want to allow images with `https?` `src`s.
+ if (!attribs.src || !attribs.src.startsWith('mxc://')) {
+ return { tagName, attribs: {}};
+ }
+ attribs.src = MatrixClientPeg.get().mxcUrlToHttp(
+ attribs.src,
+ attribs.width || 800,
+ attribs.height || 600,
+ );
+ return { tagName, attribs };
+ },
+ 'code': function(tagName, attribs) {
+ if (typeof attribs.class !== 'undefined') {
+ // Filter out all classes other than ones starting with language- for syntax highlighting.
+ const classes = attribs.class.split(/\s+/).filter(function(cl) {
+ return cl.startsWith('language-');
+ });
+ attribs.class = classes.join(' ');
+ }
+ return { tagName, attribs };
+ },
+ '*': function(tagName, attribs) {
+ // Delete any style previously assigned, style is an allowedTag for font and span
+ // because attributes are stripped after transforming
+ delete attribs.style;
+
+ // Sanitise and transform data-mx-color and data-mx-bg-color to their CSS
+ // equivalents
+ const customCSSMapper = {
+ 'data-mx-color': 'color',
+ 'data-mx-bg-color': 'background-color',
+ // $customAttributeKey: $cssAttributeKey
+ };
+
+ let style = "";
+ Object.keys(customCSSMapper).forEach((customAttributeKey) => {
+ const cssAttributeKey = customCSSMapper[customAttributeKey];
+ const customAttributeValue = attribs[customAttributeKey];
+ if (customAttributeValue &&
+ typeof customAttributeValue === 'string' &&
+ COLOR_REGEX.test(customAttributeValue)
+ ) {
+ style += cssAttributeKey + ":" + customAttributeValue + ";";
+ delete attribs[customAttributeKey];
+ }
+ });
+
+ if (style) {
+ attribs.style = style;
+ }
+
+ return { tagName, attribs };
+ },
+};
+
const sanitizeHtmlParams = {
allowedTags: [
'font', // custom to matrix for IRC-style font coloring
@@ -199,95 +284,14 @@ const sanitizeHtmlParams = {
allowedSchemes: PERMITTED_URL_SCHEMES,
allowProtocolRelative: false,
+ transformTags,
+};
- transformTags: { // custom to matrix
- // add blank targets to all hyperlinks except vector URLs
- 'a': function(tagName, attribs) {
- if (attribs.href) {
- attribs.target = '_blank'; // by default
-
- let m;
- // FIXME: horrible duplication with linkify-matrix
- m = attribs.href.match(linkifyMatrix.VECTOR_URL_PATTERN);
- if (m) {
- attribs.href = m[1];
- delete attribs.target;
- } else {
- m = attribs.href.match(linkifyMatrix.MATRIXTO_URL_PATTERN);
- if (m) {
- const entity = m[1];
- if (entity[0] === '@') {
- attribs.href = '#/user/' + entity;
- } else if (entity[0] === '#' || entity[0] === '!') {
- attribs.href = '#/room/' + entity;
- }
- delete attribs.target;
- }
- }
- }
- attribs.rel = 'noopener'; // https://mathiasbynens.github.io/rel-noopener/
- return { tagName: tagName, attribs: attribs };
- },
- 'img': function(tagName, attribs) {
- // Strip out imgs that aren't `mxc` here instead of using allowedSchemesByTag
- // because transformTags is used _before_ we filter by allowedSchemesByTag and
- // we don't want to allow images with `https?` `src`s.
- if (!attribs.src || !attribs.src.startsWith('mxc://')) {
- return { tagName, attribs: {}};
- }
- attribs.src = MatrixClientPeg.get().mxcUrlToHttp(
- attribs.src,
- attribs.width || 800,
- attribs.height || 600,
- );
- return { tagName: tagName, attribs: attribs };
- },
- 'code': function(tagName, attribs) {
- if (typeof attribs.class !== 'undefined') {
- // Filter out all classes other than ones starting with language- for syntax highlighting.
- const classes = attribs.class.split(/\s+/).filter(function(cl) {
- return cl.startsWith('language-');
- });
- attribs.class = classes.join(' ');
- }
- return {
- tagName: tagName,
- attribs: attribs,
- };
- },
- '*': function(tagName, attribs) {
- // Delete any style previously assigned, style is an allowedTag for font and span
- // because attributes are stripped after transforming
- delete attribs.style;
-
- // Sanitise and transform data-mx-color and data-mx-bg-color to their CSS
- // equivalents
- const customCSSMapper = {
- 'data-mx-color': 'color',
- 'data-mx-bg-color': 'background-color',
- // $customAttributeKey: $cssAttributeKey
- };
-
- let style = "";
- Object.keys(customCSSMapper).forEach((customAttributeKey) => {
- const cssAttributeKey = customCSSMapper[customAttributeKey];
- const customAttributeValue = attribs[customAttributeKey];
- if (customAttributeValue &&
- typeof customAttributeValue === 'string' &&
- COLOR_REGEX.test(customAttributeValue)
- ) {
- style += cssAttributeKey + ":" + customAttributeValue + ";";
- delete attribs[customAttributeKey];
- }
- });
-
- if (style) {
- attribs.style = style;
- }
-
- return { tagName: tagName, attribs: attribs };
- },
- },
+// this is the same as the above except with less rewriting
+const composerSanitizeHtmlParams = Object.assign({}, sanitizeHtmlParams);
+composerSanitizeHtmlParams.transformTags = {
+ 'code': transformTags['code'],
+ '*': transformTags['*'],
};
class BaseHighlighter {
@@ -402,21 +406,30 @@ class TextHighlighter extends BaseHighlighter {
}
- /* turn a matrix event body into html
- *
- * content: 'content' of the MatrixEvent
- *
- * highlights: optional list of words to highlight, ordered by longest word first
- *
- * opts.highlightLink: optional href to add to highlighted words
- * opts.disableBigEmoji: optional argument to disable the big emoji class.
- * opts.stripReplyFallback: optional argument specifying the event is a reply and so fallback needs removing
- */
+/* turn a matrix event body into html
+ *
+ * content: 'content' of the MatrixEvent
+ *
+ * highlights: optional list of words to highlight, ordered by longest word first
+ *
+ * opts.highlightLink: optional href to add to highlighted words
+ * opts.disableBigEmoji: optional argument to disable the big emoji class.
+ * opts.stripReplyFallback: optional argument specifying the event is a reply and so fallback needs removing
+ * opts.returnString: return an HTML string rather than JSX elements
+ * opts.emojiOne: optional param to do emojiOne (default true)
+ * opts.forComposerQuote: optional param to lessen the url rewriting done by sanitization, for quoting into composer
+ */
export function bodyToHtml(content, highlights, opts={}) {
const isHtmlMessage = content.format === "org.matrix.custom.html" && content.formatted_body;
+ const doEmojiOne = opts.emojiOne === undefined ? true : opts.emojiOne;
let bodyHasEmoji = false;
+ let sanitizeParams = sanitizeHtmlParams;
+ if (opts.forComposerQuote) {
+ sanitizeParams = composerSanitizeHtmlParams;
+ }
+
let strippedBody;
let safeBody;
let isDisplayedWithHtml;
@@ -428,10 +441,10 @@ export function bodyToHtml(content, highlights, opts={}) {
if (highlights && highlights.length > 0) {
const highlighter = new HtmlHighlighter("mx_EventTile_searchHighlight", opts.highlightLink);
const safeHighlights = highlights.map(function(highlight) {
- return sanitizeHtml(highlight, sanitizeHtmlParams);
+ return sanitizeHtml(highlight, sanitizeParams);
});
- // XXX: hacky bodge to temporarily apply a textFilter to the sanitizeHtmlParams structure.
- sanitizeHtmlParams.textFilter = function(safeText) {
+ // XXX: hacky bodge to temporarily apply a textFilter to the sanitizeParams structure.
+ sanitizeParams.textFilter = function(safeText) {
return highlighter.applyHighlights(safeText, safeHighlights).join('');
};
}
@@ -440,19 +453,20 @@ export function bodyToHtml(content, highlights, opts={}) {
if (opts.stripReplyFallback && formattedBody) formattedBody = ReplyThread.stripHTMLReply(formattedBody);
strippedBody = opts.stripReplyFallback ? ReplyThread.stripPlainReply(content.body) : content.body;
- bodyHasEmoji = containsEmoji(isHtmlMessage ? formattedBody : content.body);
-
+ if (doEmojiOne) {
+ bodyHasEmoji = containsEmoji(isHtmlMessage ? formattedBody : content.body);
+ }
// Only generate safeBody if the message was sent as org.matrix.custom.html
if (isHtmlMessage) {
isDisplayedWithHtml = true;
- safeBody = sanitizeHtml(formattedBody, sanitizeHtmlParams);
+ safeBody = sanitizeHtml(formattedBody, sanitizeParams);
} else {
// ... or if there are emoji, which we insert as HTML alongside the
// escaped plaintext body.
if (bodyHasEmoji) {
isDisplayedWithHtml = true;
- safeBody = sanitizeHtml(escape(strippedBody), sanitizeHtmlParams);
+ safeBody = sanitizeHtml(escape(strippedBody), sanitizeParams);
}
}
@@ -463,7 +477,11 @@ export function bodyToHtml(content, highlights, opts={}) {
safeBody = unicodeToImage(safeBody);
}
} finally {
- delete sanitizeHtmlParams.textFilter;
+ delete sanitizeParams.textFilter;
+ }
+
+ if (opts.returnString) {
+ return isDisplayedWithHtml ? safeBody : strippedBody;
}
let emojiBody = false;
diff --git a/src/Lifecycle.js b/src/Lifecycle.js
index 7378e982ef..795489c1fa 100644
--- a/src/Lifecycle.js
+++ b/src/Lifecycle.js
@@ -30,6 +30,7 @@ import DMRoomMap from './utils/DMRoomMap';
import RtsClient from './RtsClient';
import Modal from './Modal';
import sdk from './index';
+import ActiveWidgetStore from './stores/ActiveWidgetStore';
/**
* Called at startup, to attempt to build a logged-in Matrix session. It tries
@@ -385,6 +386,8 @@ function _persistCredentialsToLocalStorage(credentials) {
console.log(`Session persisted for ${credentials.userId}`);
}
+let _isLoggingOut = false;
+
/**
* Logs the current session out and transitions to the logged-out state
*/
@@ -404,6 +407,7 @@ export function logout() {
return;
}
+ _isLoggingOut = true;
MatrixClientPeg.get().logout().then(onLoggedOut,
(err) => {
// Just throwing an error here is going to be very unhelpful
@@ -419,6 +423,10 @@ export function logout() {
).done();
}
+export function isLoggingOut() {
+ return _isLoggingOut;
+}
+
/**
* Starts the matrix client and all other react-sdk services that
* listen for events while a session is logged in.
@@ -436,6 +444,7 @@ async function startMatrixClient() {
UserActivity.start();
Presence.start();
DMRoomMap.makeShared().start();
+ ActiveWidgetStore.start();
await MatrixClientPeg.start();
@@ -449,6 +458,7 @@ async function startMatrixClient() {
* storage. Used after a session has been logged out.
*/
export function onLoggedOut() {
+ _isLoggingOut = false;
stopMatrixClient();
_clearStorage().done();
dis.dispatch({action: 'on_logged_out'});
@@ -488,6 +498,7 @@ export function stopMatrixClient() {
Notifier.stop();
UserActivity.stop();
Presence.stop();
+ ActiveWidgetStore.stop();
if (DMRoomMap.shared()) DMRoomMap.shared().stop();
const cli = MatrixClientPeg.get();
if (cli) {
diff --git a/src/Markdown.js b/src/Markdown.js
index aa1c7e45b1..acfea52100 100644
--- a/src/Markdown.js
+++ b/src/Markdown.js
@@ -102,6 +102,16 @@ export default class Markdown {
// (https://github.com/vector-im/riot-web/issues/3154)
softbreak: ' ',
});
+
+ // Trying to strip out the wrapping
causes a lot more complication
+ // than it's worth, i think. For instance, this code will go and strip
+ // out any
tag (no matter where it is in the tree) which doesn't
+ // contain \n's.
+ // On the flip side,
s are quite opionated and restricted on where
+ // you can nest them.
+ //
+ // Let's try sending with
s anyway for now, though.
+
const real_paragraph = renderer.paragraph;
renderer.paragraph = function(node, entering) {
@@ -115,15 +125,20 @@ export default class Markdown {
}
};
+
renderer.html_inline = html_if_tag_allowed;
+
renderer.html_block = function(node) {
+/*
// as with `paragraph`, we only insert line breaks
// if there are multiple lines in the markdown.
const isMultiLine = is_multi_line(node);
-
if (isMultiLine) this.cr();
+*/
html_if_tag_allowed.call(this, node);
+/*
if (isMultiLine) this.cr();
+*/
};
return renderer.render(this.parsed);
@@ -133,7 +148,10 @@ export default class Markdown {
* Render the markdown message to plain text. That is, essentially
* just remove any backslashes escaping what would otherwise be
* markdown syntax
- * (to fix https://github.com/vector-im/riot-web/issues/2870)
+ * (to fix https://github.com/vector-im/riot-web/issues/2870).
+ *
+ * N.B. this does **NOT** render arbitrary MD to plain text - only MD
+ * which has no formatting. Otherwise it emits HTML(!).
*/
toPlaintext() {
const renderer = new commonmark.HtmlRenderer({safe: false});
@@ -156,6 +174,7 @@ export default class Markdown {
}
}
};
+
renderer.html_block = function(node) {
this.lit(node.literal);
if (is_multi_line(node) && node.next) this.lit('\n\n');
diff --git a/src/MatrixClientPeg.js b/src/MatrixClientPeg.js
index 9d86a62de4..f5872812de 100644
--- a/src/MatrixClientPeg.js
+++ b/src/MatrixClientPeg.js
@@ -99,6 +99,10 @@ class MatrixClientPeg {
// the react sdk doesn't work without this, so don't allow
opts.pendingEventOrdering = "detached";
+ if (SettingsStore.isFeatureEnabled('feature_lazyloading')) {
+ opts.lazyLoadMembers = true;
+ }
+
try {
const promise = this.matrixClient.store.startup();
console.log(`MatrixClientPeg: waiting for MatrixClient store to initialise`);
@@ -115,7 +119,7 @@ class MatrixClientPeg {
MatrixActionCreators.start(this.matrixClient);
console.log(`MatrixClientPeg: really starting MatrixClient`);
- this.get().startClient(opts);
+ await this.get().startClient(opts);
console.log(`MatrixClientPeg: MatrixClient started`);
}
diff --git a/src/Notifier.js b/src/Notifier.js
index b823c4df05..80e8be1084 100644
--- a/src/Notifier.js
+++ b/src/Notifier.js
@@ -170,15 +170,15 @@ const Notifier = {
value: true,
});
});
- // clear the notifications_hidden flag, so that if notifications are
- // disabled again in the future, we will show the banner again.
- this.setToolbarHidden(true);
} else {
dis.dispatch({
action: "notifier_enabled",
value: false,
});
}
+ // set the notifications_hidden flag, as the user has knowingly interacted
+ // with the setting we shouldn't nag them any further
+ this.setToolbarHidden(true);
},
isEnabled: function() {
diff --git a/src/RichText.js b/src/RichText.js
index 12274ee9f3..3e8f834da6 100644
--- a/src/RichText.js
+++ b/src/RichText.js
@@ -1,307 +1,40 @@
-import React from 'react';
-import {
- Editor,
- EditorState,
- Modifier,
- ContentState,
- ContentBlock,
- convertFromHTML,
- DefaultDraftBlockRenderMap,
- DefaultDraftInlineStyle,
- CompositeDecorator,
- SelectionState,
- Entity,
-} from 'draft-js';
-import * as sdk from './index';
+/*
+Copyright 2015 - 2017 OpenMarket Ltd
+Copyright 2017 Vector Creations Ltd
+Copyright 2018 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 * as emojione from 'emojione';
-import {stateToHTML} from 'draft-js-export-html';
-import {SelectionRange} from "./autocomplete/Autocompleter";
-import {stateToMarkdown as __stateToMarkdown} from 'draft-js-export-markdown';
-const MARKDOWN_REGEX = {
- LINK: /(?:\[([^\]]+)\]\(([^\)]+)\))|\<(\w+:\/\/[^\>]+)\>/g,
- ITALIC: /([\*_])([\w\s]+?)\1/g,
- BOLD: /([\*_])\1([\w\s]+?)\1\1/g,
- HR: /(\n|^)((-|\*|_) *){3,}(\n|$)/g,
- CODE: /`[^`]*`/g,
- STRIKETHROUGH: /~{2}[^~]*~{2}/g,
-};
-const USERNAME_REGEX = /@\S+:\S+/g;
-const ROOM_REGEX = /#\S+:\S+/g;
-const EMOJI_REGEX = new RegExp(emojione.unicodeRegexp, 'g');
+export function unicodeToEmojiUri(str) {
+ const mappedUnicode = emojione.mapUnicodeToShort();
-const ZWS_CODE = 8203;
-const ZWS = String.fromCharCode(ZWS_CODE); // zero width space
-export function stateToMarkdown(state) {
- return __stateToMarkdown(state)
- .replace(
- ZWS, // draft-js-export-markdown adds these
- ''); // this is *not* a zero width space, trust me :)
-}
-
-export const contentStateToHTML = (contentState: ContentState) => {
- return stateToHTML(contentState, {
- inlineStyles: {
- UNDERLINE: {
- element: 'u',
- },
- },
- });
-};
-
-export function htmlToContentState(html: string): ContentState {
- const blockArray = convertFromHTML(html).contentBlocks;
- return ContentState.createFromBlockArray(blockArray);
-}
-
-function unicodeToEmojiUri(str) {
- let replaceWith, unicode, alt;
- if ((!emojione.unicodeAlt) || (emojione.sprites)) {
- // if we are using the shortname as the alt tag then we need a reversed array to map unicode code point to shortnames
- const mappedUnicode = emojione.mapUnicodeToShort();
- }
-
- str = str.replace(emojione.regUnicode, function(unicodeChar) {
- if ( (typeof unicodeChar === 'undefined') || (unicodeChar === '') || (!(unicodeChar in emojione.jsEscapeMap)) ) {
- // if the unicodeChar doesnt exist just return the entire match
+ // remove any zero width joiners/spaces used in conjugate emojis as the emojione URIs don't contain them
+ return str.replace(emojione.regUnicode, function(unicodeChar) {
+ if ((typeof unicodeChar === 'undefined') || (unicodeChar === '') || (!(unicodeChar in emojione.jsEscapeMap))) {
+ // if the unicodeChar doesn't exist just return the entire match
return unicodeChar;
} else {
- // Remove variant selector VS16 (explicitly emoji) as it is unnecessary and leads to an incorrect URL below
- if (unicodeChar.length == 2 && unicodeChar[1] == '\ufe0f') {
- unicodeChar = unicodeChar[0];
- }
-
// get the unicode codepoint from the actual char
- unicode = emojione.jsEscapeMap[unicodeChar];
+ const unicode = emojione.jsEscapeMap[unicodeChar];
- return emojione.imagePathSVG+unicode+'.svg'+emojione.cacheBustParam;
+ const short = mappedUnicode[unicode];
+ const fname = emojione.emojioneList[short].fname;
+
+ return emojione.imagePathSVG+fname+'.svg'+emojione.cacheBustParam;
}
});
-
- return str;
-}
-
-/**
- * Utility function that looks for regex matches within a ContentBlock and invokes {callback} with (start, end)
- * From https://facebook.github.io/draft-js/docs/advanced-topics-decorators.html
- */
-function findWithRegex(regex, contentBlock: ContentBlock, callback: (start: number, end: number) => any) {
- const text = contentBlock.getText();
- let matchArr, start;
- while ((matchArr = regex.exec(text)) !== null) {
- start = matchArr.index;
- callback(start, start + matchArr[0].length);
- }
-}
-
-// Workaround for https://github.com/facebook/draft-js/issues/414
-const emojiDecorator = {
- strategy: (contentState, contentBlock, callback) => {
- findWithRegex(EMOJI_REGEX, contentBlock, callback);
- },
- component: (props) => {
- const uri = unicodeToEmojiUri(props.children[0].props.text);
- const shortname = emojione.toShort(props.children[0].props.text);
- const style = {
- display: 'inline-block',
- width: '1em',
- maxHeight: '1em',
- background: `url(${uri})`,
- backgroundSize: 'contain',
- backgroundPosition: 'center center',
- overflow: 'hidden',
- };
- return ({ props.children } );
- },
-};
-
-/**
- * Returns a composite decorator which has access to provided scope.
- */
-export function getScopedRTDecorators(scope: any): CompositeDecorator {
- return [emojiDecorator];
-}
-
-export function getScopedMDDecorators(scope: any): CompositeDecorator {
- const markdownDecorators = ['HR', 'BOLD', 'ITALIC', 'CODE', 'STRIKETHROUGH'].map(
- (style) => ({
- strategy: (contentState, contentBlock, callback) => {
- return findWithRegex(MARKDOWN_REGEX[style], contentBlock, callback);
- },
- component: (props) => (
-
- { props.children }
-
- ),
- }));
-
- markdownDecorators.push({
- strategy: (contentState, contentBlock, callback) => {
- return findWithRegex(MARKDOWN_REGEX.LINK, contentBlock, callback);
- },
- component: (props) => (
-
- { props.children }
-
- ),
- });
- // markdownDecorators.push(emojiDecorator);
- // TODO Consider renabling "syntax highlighting" when we can do it properly
- return [emojiDecorator];
-}
-
-/**
- * Passes rangeToReplace to modifyFn and replaces it in contentState with the result.
- */
-export function modifyText(contentState: ContentState, rangeToReplace: SelectionState,
- modifyFn: (text: string) => string, inlineStyle, entityKey): ContentState {
- let getText = (key) => contentState.getBlockForKey(key).getText(),
- startKey = rangeToReplace.getStartKey(),
- startOffset = rangeToReplace.getStartOffset(),
- endKey = rangeToReplace.getEndKey(),
- endOffset = rangeToReplace.getEndOffset(),
- text = "";
-
-
- for (let currentKey = startKey;
- currentKey && currentKey !== endKey;
- currentKey = contentState.getKeyAfter(currentKey)) {
- const blockText = getText(currentKey);
- text += blockText.substring(startOffset, blockText.length);
-
- // from now on, we'll take whole blocks
- startOffset = 0;
- }
-
- // add remaining part of last block
- text += getText(endKey).substring(startOffset, endOffset);
-
- return Modifier.replaceText(contentState, rangeToReplace, modifyFn(text), inlineStyle, entityKey);
-}
-
-/**
- * Computes the plaintext offsets of the given SelectionState.
- * Note that this inherently means we make assumptions about what that means (no separator between ContentBlocks, etc)
- * Used by autocomplete to show completions when the current selection lies within, or at the edges of a command.
- */
-export function selectionStateToTextOffsets(selectionState: SelectionState,
- contentBlocks: Array): {start: number, end: number} {
- let offset = 0, start = 0, end = 0;
- for (const block of contentBlocks) {
- if (selectionState.getStartKey() === block.getKey()) {
- start = offset + selectionState.getStartOffset();
- }
- if (selectionState.getEndKey() === block.getKey()) {
- end = offset + selectionState.getEndOffset();
- break;
- }
- offset += block.getLength();
- }
-
- return {
- start,
- end,
- };
-}
-
-export function textOffsetsToSelectionState({start, end}: SelectionRange,
- contentBlocks: Array): SelectionState {
- let selectionState = SelectionState.createEmpty();
- // Subtract block lengths from `start` and `end` until they are less than the current
- // block length (accounting for the NL at the end of each block). Set them to -1 to
- // indicate that the corresponding selection state has been determined.
- for (const block of contentBlocks) {
- const blockLength = block.getLength();
- // -1 indicating that the position start position has been found
- if (start !== -1) {
- if (start < blockLength + 1) {
- selectionState = selectionState.merge({
- anchorKey: block.getKey(),
- anchorOffset: start,
- });
- start = -1; // selection state for the start calculated
- } else {
- start -= blockLength + 1; // +1 to account for newline between blocks
- }
- }
- // -1 indicating that the position end position has been found
- if (end !== -1) {
- if (end < blockLength + 1) {
- selectionState = selectionState.merge({
- focusKey: block.getKey(),
- focusOffset: end,
- });
- end = -1; // selection state for the end calculated
- } else {
- end -= blockLength + 1; // +1 to account for newline between blocks
- }
- }
- }
- return selectionState;
-}
-
-// modified version of https://github.com/draft-js-plugins/draft-js-plugins/blob/master/draft-js-emoji-plugin/src/modifiers/attachImmutableEntitiesToEmojis.js
-export function attachImmutableEntitiesToEmoji(editorState: EditorState): EditorState {
- const contentState = editorState.getCurrentContent();
- const blocks = contentState.getBlockMap();
- let newContentState = contentState;
-
- blocks.forEach((block) => {
- const plainText = block.getText();
-
- const addEntityToEmoji = (start, end) => {
- const existingEntityKey = block.getEntityAt(start);
- if (existingEntityKey) {
- // avoid manipulation in case the emoji already has an entity
- const entity = newContentState.getEntity(existingEntityKey);
- if (entity && entity.get('type') === 'emoji') {
- return;
- }
- }
-
- const selection = SelectionState.createEmpty(block.getKey())
- .set('anchorOffset', start)
- .set('focusOffset', end);
- const emojiText = plainText.substring(start, end);
- newContentState = newContentState.createEntity(
- 'emoji', 'IMMUTABLE', { emojiUnicode: emojiText },
- );
- const entityKey = newContentState.getLastCreatedEntityKey();
- newContentState = Modifier.replaceText(
- newContentState,
- selection,
- emojiText,
- null,
- entityKey,
- );
- };
-
- findWithRegex(EMOJI_REGEX, block, addEntityToEmoji);
- });
-
- if (!newContentState.equals(contentState)) {
- const oldSelection = editorState.getSelection();
- editorState = EditorState.push(
- editorState,
- newContentState,
- 'convert-to-immutable-emojis',
- );
- // this is somewhat of a hack, we're undoing selection changes caused above
- // it would be better not to make those changes in the first place
- editorState = EditorState.forceSelection(editorState, oldSelection);
- }
-
- return editorState;
-}
-
-export function hasMultiLineSelection(editorState: EditorState): boolean {
- const selectionState = editorState.getSelection();
- const anchorKey = selectionState.getAnchorKey();
- const currentContent = editorState.getCurrentContent();
- const currentContentBlock = currentContent.getBlockForKey(anchorKey);
- const start = selectionState.getStartOffset();
- const end = selectionState.getEndOffset();
- const selectedText = currentContentBlock.getText().slice(start, end);
- return selectedText.includes('\n');
}
diff --git a/src/RoomInvite.js b/src/RoomInvite.js
index 0bcc08eb06..a96d1b2f6b 100644
--- a/src/RoomInvite.js
+++ b/src/RoomInvite.js
@@ -191,14 +191,10 @@ function _showAnyInviteErrors(addrs, room) {
function _getDirectMessageRooms(addr) {
const dmRoomMap = new DMRoomMap(MatrixClientPeg.get());
const dmRooms = dmRoomMap.getDMRoomsForUserId(addr);
- const rooms = [];
- dmRooms.forEach((dmRoom) => {
+ const rooms = dmRooms.filter((dmRoom) => {
const room = MatrixClientPeg.get().getRoom(dmRoom);
if (room) {
- const me = room.getMember(MatrixClientPeg.get().credentials.userId);
- if (me.membership == 'join') {
- rooms.push(room);
- }
+ return room.getMyMembership() === 'join';
}
});
return rooms;
diff --git a/src/Rooms.js b/src/Rooms.js
index ffa39141ff..e24b8316b3 100644
--- a/src/Rooms.js
+++ b/src/Rooms.js
@@ -31,27 +31,27 @@ export function getDisplayAliasForRoom(room) {
* If the room contains only two members including the logged-in user,
* return the other one. Otherwise, return null.
*/
-export function getOnlyOtherMember(room, me) {
- const joinedMembers = room.getJoinedMembers();
+export function getOnlyOtherMember(room, myUserId) {
- if (joinedMembers.length === 2) {
- return joinedMembers.filter(function(m) {
- return m.userId !== me.userId;
+ if (room.currentState.getJoinedMemberCount() === 2) {
+ return room.getJoinedMembers().filter(function(m) {
+ return m.userId !== myUserId;
})[0];
}
return null;
}
-function _isConfCallRoom(room, me, conferenceHandler) {
+function _isConfCallRoom(room, myUserId, conferenceHandler) {
if (!conferenceHandler) return false;
- if (me.membership != "join") {
+ const myMembership = room.getMyMembership();
+ if (myMembership != "join") {
return false;
}
- const otherMember = getOnlyOtherMember(room, me);
- if (otherMember === null) {
+ const otherMember = getOnlyOtherMember(room, myUserId);
+ if (!otherMember) {
return false;
}
@@ -68,29 +68,31 @@ const isConfCallRoomCache = {
// $roomId: bool
};
-export function isConfCallRoom(room, me, conferenceHandler) {
+export function isConfCallRoom(room, myUserId, conferenceHandler) {
if (isConfCallRoomCache[room.roomId] !== undefined) {
return isConfCallRoomCache[room.roomId];
}
- const result = _isConfCallRoom(room, me, conferenceHandler);
+ const result = _isConfCallRoom(room, myUserId, conferenceHandler);
isConfCallRoomCache[room.roomId] = result;
return result;
}
-export function looksLikeDirectMessageRoom(room, me) {
- if (me.membership == "join" || me.membership === "ban" ||
- (me.membership === "leave" && me.events.member.getSender() !== me.events.member.getStateKey())) {
+export function looksLikeDirectMessageRoom(room, myUserId) {
+ const myMembership = room.getMyMembership();
+ const me = room.getMember(myUserId);
+
+ if (myMembership == "join" || myMembership === "ban" || (me && me.isKicked())) {
// Used to split rooms via tags
const tagNames = Object.keys(room.tags);
// Used for 1:1 direct chats
- const members = room.currentState.getMembers();
-
// Show 1:1 chats in seperate "Direct Messages" section as long as they haven't
// been moved to a different tag section
- if (members.length === 2 && !tagNames.length) {
+ const totalMemberCount = room.currentState.getJoinedMemberCount() +
+ room.currentState.getInvitedMemberCount();
+ if (totalMemberCount === 2 && !tagNames.length) {
return true;
}
}
@@ -100,10 +102,10 @@ export function looksLikeDirectMessageRoom(room, me) {
export function guessAndSetDMRoom(room, isDirect) {
let newTarget;
if (isDirect) {
- const guessedTarget = guessDMRoomTarget(
- room, room.getMember(MatrixClientPeg.get().credentials.userId),
+ const guessedUserId = guessDMRoomTargetId(
+ room, MatrixClientPeg.get().getUserId()
);
- newTarget = guessedTarget.userId;
+ newTarget = guessedUserId;
} else {
newTarget = null;
}
@@ -159,15 +161,15 @@ export function setDMRoom(roomId, userId) {
* Given a room, estimate which of its members is likely to
* be the target if the room were a DM room and return that user.
*/
-export function guessDMRoomTarget(room, me) {
+function guessDMRoomTargetId(room, myUserId) {
let oldestTs;
let oldestUser;
// Pick the joined user who's been here longest (and isn't us),
for (const user of room.getJoinedMembers()) {
- if (user.userId == me.userId) continue;
+ if (user.userId == myUserId) continue;
- if (oldestTs === undefined || user.events.member.getTs() < oldestTs) {
+ if (oldestTs === undefined || (user.events.member && user.events.member.getTs() < oldestTs)) {
oldestUser = user;
oldestTs = user.events.member.getTs();
}
@@ -176,14 +178,14 @@ export function guessDMRoomTarget(room, me) {
// if there are no joined members other than us, use the oldest member
for (const user of room.currentState.getMembers()) {
- if (user.userId == me.userId) continue;
+ if (user.userId == myUserId) continue;
- if (oldestTs === undefined || user.events.member.getTs() < oldestTs) {
+ if (oldestTs === undefined || (user.events.member && user.events.member.getTs() < oldestTs)) {
oldestUser = user;
oldestTs = user.events.member.getTs();
}
}
- if (oldestUser === undefined) return me;
+ if (oldestUser === undefined) return myUserId;
return oldestUser;
}
diff --git a/src/ScalarMessaging.js b/src/ScalarMessaging.js
index 9457e6ccfb..fa7b8c5b76 100644
--- a/src/ScalarMessaging.js
+++ b/src/ScalarMessaging.js
@@ -1,6 +1,7 @@
/*
Copyright 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -231,11 +232,12 @@ Example:
}
*/
-const SdkConfig = require('./SdkConfig');
-const MatrixClientPeg = require("./MatrixClientPeg");
-const MatrixEvent = require("matrix-js-sdk").MatrixEvent;
-const dis = require("./dispatcher");
-const Widgets = require('./utils/widgets');
+import SdkConfig from './SdkConfig';
+import MatrixClientPeg from './MatrixClientPeg';
+import { MatrixEvent } from 'matrix-js-sdk';
+import dis from './dispatcher';
+import WidgetUtils from './utils/WidgetUtils';
+import RoomViewStore from './stores/RoomViewStore';
import { _t } from './languageHandler';
function sendResponse(event, res) {
@@ -286,51 +288,6 @@ function inviteUser(event, roomId, userId) {
});
}
-/**
- * Returns a promise that resolves when a widget with the given
- * ID has been added as a user widget (ie. the accountData event
- * arrives) or rejects after a timeout
- *
- * @param {string} widgetId The ID of the widget to wait for
- * @param {boolean} add True to wait for the widget to be added,
- * false to wait for it to be deleted.
- * @returns {Promise} that resolves when the widget is available
- */
-function waitForUserWidget(widgetId, add) {
- return new Promise((resolve, reject) => {
- const currentAccountDataEvent = MatrixClientPeg.get().getAccountData('m.widgets');
-
- // Tests an account data event, returning true if it's in the state
- // we're waiting for it to be in
- function eventInIntendedState(ev) {
- if (!ev || !currentAccountDataEvent.getContent()) return false;
- if (add) {
- return ev.getContent()[widgetId] !== undefined;
- } else {
- return ev.getContent()[widgetId] === undefined;
- }
- }
-
- if (eventInIntendedState(currentAccountDataEvent)) {
- resolve();
- return;
- }
-
- function onAccountData(ev) {
- if (eventInIntendedState(currentAccountDataEvent)) {
- MatrixClientPeg.get().removeListener('accountData', onAccountData);
- clearTimeout(timerId);
- resolve();
- }
- }
- const timerId = setTimeout(() => {
- MatrixClientPeg.get().removeListener('accountData', onAccountData);
- reject(new Error("Timed out waiting for widget ID " + widgetId + " to appear"));
- }, 10000);
- MatrixClientPeg.get().on('accountData', onAccountData);
- });
-}
-
function setWidget(event, roomId) {
const widgetId = event.data.widget_id;
const widgetType = event.data.type;
@@ -339,12 +296,6 @@ function setWidget(event, roomId) {
const widgetData = event.data.data; // optional
const userWidget = event.data.userWidget;
- const client = MatrixClientPeg.get();
- if (!client) {
- sendError(event, _t('You need to be logged in.'));
- return;
- }
-
// both adding/removing widgets need these checks
if (!widgetId || widgetUrl === undefined) {
sendError(event, _t("Unable to create widget."), new Error("Missing required widget fields."));
@@ -371,42 +322,8 @@ function setWidget(event, roomId) {
}
}
- let content = {
- type: widgetType,
- url: widgetUrl,
- name: widgetName,
- data: widgetData,
- };
-
if (userWidget) {
- const client = MatrixClientPeg.get();
- const userWidgets = Widgets.getUserWidgets();
-
- // Delete existing widget with ID
- try {
- delete userWidgets[widgetId];
- } catch (e) {
- console.error(`$widgetId is non-configurable`);
- }
-
- // Add new widget / update
- if (widgetUrl !== null) {
- userWidgets[widgetId] = {
- content: content,
- sender: client.getUserId(),
- state_key: widgetId,
- type: 'm.widget',
- id: widgetId,
- };
- }
-
- // This starts listening for when the echo comes back from the server
- // since the widget won't appear added until this happens. If we don't
- // wait for this, the action will complete but if the user is fast enough,
- // the widget still won't actually be there.
- client.setAccountData('m.widgets', userWidgets).then(() => {
- return waitForUserWidget(widgetId, widgetUrl !== null);
- }).then(() => {
+ WidgetUtils.setUserWidget(widgetId, widgetType, widgetUrl, widgetName, widgetData).then(() => {
sendResponse(event, {
success: true,
});
@@ -419,15 +336,7 @@ function setWidget(event, roomId) {
if (!roomId) {
sendError(event, _t('Missing roomId.'), null);
}
-
- if (widgetUrl === null) { // widget is being deleted
- content = {};
- }
- // TODO - Room widgets need to be moved to 'm.widget' state events
- // https://docs.google.com/document/d/1uPF7XWY_dXTKVKV7jZQ2KmsI19wn9-kFRgQ1tFQP7wQ/edit?usp=sharing
- client.sendStateEvent(roomId, "im.vector.modular.widgets", content, widgetId).done(() => {
- // XXX: We should probably wait for the echo of the state event to come back from the server,
- // as we do with user widgets.
+ WidgetUtils.setRoomWidget(roomId, widgetId, widgetType, widgetUrl, widgetName, widgetData).then(() => {
sendResponse(event, {
success: true,
});
@@ -451,21 +360,13 @@ function getWidgets(event, roomId) {
sendError(event, _t('This room is not recognised.'));
return;
}
- // TODO - Room widgets need to be moved to 'm.widget' state events
- // https://docs.google.com/document/d/1uPF7XWY_dXTKVKV7jZQ2KmsI19wn9-kFRgQ1tFQP7wQ/edit?usp=sharing
- const stateEvents = room.currentState.getStateEvents("im.vector.modular.widgets");
- // Only return widgets which have required fields
- if (room) {
- stateEvents.forEach((ev) => {
- if (ev.getContent().type && ev.getContent().url) {
- widgetStateEvents.push(ev.event); // return the raw event
- }
- });
- }
+ // XXX: This gets the raw event object (I think because we can't
+ // send the MatrixEvent over postMessage?)
+ widgetStateEvents = WidgetUtils.getRoomWidgets(room).map((ev) => ev.event);
}
// Add user widgets (not linked to a specific room)
- const userWidgets = Widgets.getUserWidgetsArray();
+ const userWidgets = WidgetUtils.getUserWidgetsArray();
widgetStateEvents = widgetStateEvents.concat(userWidgets);
sendResponse(event, widgetStateEvents);
@@ -579,7 +480,7 @@ function getMembershipCount(event, roomId) {
sendError(event, _t('This room is not recognised.'));
return;
}
- const count = room.getJoinedMembers().length;
+ const count = room.getJoinedMemberCount();
sendResponse(event, count);
}
@@ -596,12 +497,11 @@ function canSendEvent(event, roomId) {
sendError(event, _t('This room is not recognised.'));
return;
}
- const me = client.credentials.userId;
- const member = room.getMember(me);
- if (!member || member.membership !== "join") {
+ if (room.getMyMembership() !== "join") {
sendError(event, _t('You are not in this room.'));
return;
}
+ const me = client.credentials.userId;
let canSend = false;
if (isState) {
@@ -637,19 +537,6 @@ function returnStateEvent(event, roomId, eventType, stateKey) {
sendResponse(event, stateEvent.getContent());
}
-let currentRoomId = null;
-let currentRoomAlias = null;
-
-// Listen for when a room is viewed
-dis.register(onAction);
-function onAction(payload) {
- if (payload.action !== "view_room") {
- return;
- }
- currentRoomId = payload.room_id;
- currentRoomAlias = payload.room_alias;
-}
-
const onMessage = function(event) {
if (!event.origin) { // stupid chrome
event.origin = event.originalEvent.origin;
@@ -700,80 +587,63 @@ const onMessage = function(event) {
return;
}
}
- let promise = Promise.resolve(currentRoomId);
- if (!currentRoomId) {
- if (!currentRoomAlias) {
- sendError(event, _t('Must be viewing a room'));
- return;
- }
- // no room ID but there is an alias, look it up.
- console.log("Looking up alias " + currentRoomAlias);
- promise = MatrixClientPeg.get().getRoomIdForAlias(currentRoomAlias).then((res) => {
- return res.room_id;
- });
+
+ if (roomId !== RoomViewStore.getRoomId()) {
+ sendError(event, _t('Room %(roomId)s not visible', {roomId: roomId}));
+ return;
}
- promise.then((viewingRoomId) => {
- if (roomId !== viewingRoomId) {
- sendError(event, _t('Room %(roomId)s not visible', {roomId: roomId}));
- return;
- }
+ // Get and set room-based widgets
+ if (event.data.action === "get_widgets") {
+ getWidgets(event, roomId);
+ return;
+ } else if (event.data.action === "set_widget") {
+ setWidget(event, roomId);
+ return;
+ }
- // Get and set room-based widgets
- if (event.data.action === "get_widgets") {
- getWidgets(event, roomId);
- return;
- } else if (event.data.action === "set_widget") {
- setWidget(event, roomId);
- return;
- }
+ // These APIs don't require userId
+ if (event.data.action === "join_rules_state") {
+ getJoinRules(event, roomId);
+ return;
+ } else if (event.data.action === "set_plumbing_state") {
+ setPlumbingState(event, roomId, event.data.status);
+ return;
+ } else if (event.data.action === "get_membership_count") {
+ getMembershipCount(event, roomId);
+ return;
+ } else if (event.data.action === "get_room_enc_state") {
+ getRoomEncState(event, roomId);
+ return;
+ } else if (event.data.action === "can_send_event") {
+ canSendEvent(event, roomId);
+ return;
+ }
- // These APIs don't require userId
- if (event.data.action === "join_rules_state") {
- getJoinRules(event, roomId);
- return;
- } else if (event.data.action === "set_plumbing_state") {
- setPlumbingState(event, roomId, event.data.status);
- return;
- } else if (event.data.action === "get_membership_count") {
- getMembershipCount(event, roomId);
- return;
- } else if (event.data.action === "get_room_enc_state") {
- getRoomEncState(event, roomId);
- return;
- } else if (event.data.action === "can_send_event") {
- canSendEvent(event, roomId);
- return;
- }
-
- if (!userId) {
- sendError(event, _t('Missing user_id in request'));
- return;
- }
- switch (event.data.action) {
- case "membership_state":
- getMembershipState(event, roomId, userId);
- break;
- case "invite":
- inviteUser(event, roomId, userId);
- break;
- case "bot_options":
- botOptions(event, roomId, userId);
- break;
- case "set_bot_options":
- setBotOptions(event, roomId, userId);
- break;
- case "set_bot_power":
- setBotPower(event, roomId, userId, event.data.level);
- break;
- default:
- console.warn("Unhandled postMessage event with action '" + event.data.action +"'");
- break;
- }
- }, (err) => {
- console.error(err);
- sendError(event, _t('Failed to lookup current room') + '.');
- });
+ if (!userId) {
+ sendError(event, _t('Missing user_id in request'));
+ return;
+ }
+ switch (event.data.action) {
+ case "membership_state":
+ getMembershipState(event, roomId, userId);
+ break;
+ case "invite":
+ inviteUser(event, roomId, userId);
+ break;
+ case "bot_options":
+ botOptions(event, roomId, userId);
+ break;
+ case "set_bot_options":
+ setBotOptions(event, roomId, userId);
+ break;
+ case "set_bot_power":
+ setBotPower(event, roomId, userId, event.data.level);
+ break;
+ default:
+ console.warn("Unhandled postMessage event with action '" + event.data.action +"'");
+ break;
+ }
};
let listenerCount = 0;
diff --git a/src/SlashCommands.js b/src/SlashCommands.js
index d45e45e84c..9c9573ae21 100644
--- a/src/SlashCommands.js
+++ b/src/SlashCommands.js
@@ -14,28 +14,32 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-import MatrixClientPeg from "./MatrixClientPeg";
-import dis from "./dispatcher";
-import Tinter from "./Tinter";
+
+import React from 'react';
+import MatrixClientPeg from './MatrixClientPeg';
+import dis from './dispatcher';
+import Tinter from './Tinter';
import sdk from './index';
-import { _t } from './languageHandler';
+import {_t, _td} from './languageHandler';
import Modal from './Modal';
-import SettingsStore, {SettingLevel} from "./settings/SettingsStore";
+import SettingsStore, {SettingLevel} from './settings/SettingsStore';
class Command {
- constructor(name, paramArgs, runFn) {
- this.name = name;
- this.paramArgs = paramArgs;
+ constructor({name, args='', description, runFn, hideCompletionAfterSpace=false}) {
+ this.command = '/' + name;
+ this.args = args;
+ this.description = description;
this.runFn = runFn;
+ this.hideCompletionAfterSpace = hideCompletionAfterSpace;
}
getCommand() {
- return "/" + this.name;
+ return this.command;
}
getCommandWithArgs() {
- return this.getCommand() + " " + this.paramArgs;
+ return this.getCommand() + " " + this.args;
}
run(roomId, args) {
@@ -47,16 +51,12 @@ class Command {
}
}
-function reject(msg) {
- return {
- error: msg,
- };
+function reject(error) {
+ return {error};
}
function success(promise) {
- return {
- promise: promise,
- };
+ return {promise};
}
/* Disable the "unexpected this" error for these commands - all of the run
@@ -65,352 +65,410 @@ function success(promise) {
/* eslint-disable babel/no-invalid-this */
-const commands = {
- ddg: new Command("ddg", "", function(roomId, args) {
- const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
- // TODO Don't explain this away, actually show a search UI here.
- Modal.createTrackedDialog('Slash Commands', '/ddg is not a command', ErrorDialog, {
- title: _t('/ddg is not a command'),
- description: _t('To use it, just wait for autocomplete results to load and tab through them.'),
- });
- return success();
+export const CommandMap = {
+ ddg: new Command({
+ name: 'ddg',
+ args: '',
+ description: _td('Searches DuckDuckGo for results'),
+ runFn: function(roomId, args) {
+ const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
+ // TODO Don't explain this away, actually show a search UI here.
+ Modal.createTrackedDialog('Slash Commands', '/ddg is not a command', ErrorDialog, {
+ title: _t('/ddg is not a command'),
+ description: _t('To use it, just wait for autocomplete results to load and tab through them.'),
+ });
+ return success();
+ },
+ hideCompletionAfterSpace: true,
}),
- // Change your nickname
- nick: new Command("nick", "", function(roomId, args) {
- if (args) {
- return success(
- MatrixClientPeg.get().setDisplayName(args),
- );
- }
- return reject(this.getUsage());
- }),
-
- // Changes the colorscheme of your current room
- tint: new Command("tint", " []", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(#([0-9a-fA-F]{3}|[0-9a-fA-F]{6}))( +(#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})))?$/);
- if (matches) {
- Tinter.tint(matches[1], matches[4]);
- const colorScheme = {};
- colorScheme.primary_color = matches[1];
- if (matches[4]) {
- colorScheme.secondary_color = matches[4];
- } else {
- colorScheme.secondary_color = colorScheme.primary_color;
- }
- return success(
- SettingsStore.setValue("roomColor", roomId, SettingLevel.ROOM_ACCOUNT, colorScheme),
- );
+ nick: new Command({
+ name: 'nick',
+ args: '',
+ description: _td('Changes your display nickname'),
+ runFn: function(roomId, args) {
+ if (args) {
+ return success(MatrixClientPeg.get().setDisplayName(args));
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
- // Change the room topic
- topic: new Command("topic", "", function(roomId, args) {
- if (args) {
- return success(
- MatrixClientPeg.get().setRoomTopic(roomId, args),
- );
- }
- return reject(this.getUsage());
- }),
-
- // Invite a user
- invite: new Command("invite", "", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- return success(
- MatrixClientPeg.get().invite(roomId, matches[1]),
- );
- }
- }
- return reject(this.getUsage());
- }),
-
- // Join a room
- join: new Command("join", "#alias:domain", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- let roomAlias = matches[1];
- if (roomAlias[0] !== '#') {
- return reject(this.getUsage());
- }
- if (!roomAlias.match(/:/)) {
- roomAlias += ':' + MatrixClientPeg.get().getDomain();
- }
-
- dis.dispatch({
- action: 'view_room',
- room_alias: roomAlias,
- auto_join: true,
- });
-
- return success();
- }
- }
- return reject(this.getUsage());
- }),
-
- part: new Command("part", "[#alias:domain]", function(roomId, args) {
- let targetRoomId;
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- let roomAlias = matches[1];
- if (roomAlias[0] !== '#') {
- return reject(this.getUsage());
- }
- if (!roomAlias.match(/:/)) {
- roomAlias += ':' + MatrixClientPeg.get().getDomain();
- }
-
- // Try to find a room with this alias
- const rooms = MatrixClientPeg.get().getRooms();
- for (let i = 0; i < rooms.length; i++) {
- const aliasEvents = rooms[i].currentState.getStateEvents(
- "m.room.aliases",
- );
- for (let j = 0; j < aliasEvents.length; j++) {
- const aliases = aliasEvents[j].getContent().aliases || [];
- for (let k = 0; k < aliases.length; k++) {
- if (aliases[k] === roomAlias) {
- targetRoomId = rooms[i].roomId;
- break;
- }
- }
- if (targetRoomId) { break; }
+ tint: new Command({
+ name: 'tint',
+ args: ' []',
+ description: _td('Changes colour scheme of current room'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(#([\da-fA-F]{3}|[\da-fA-F]{6}))( +(#([\da-fA-F]{3}|[\da-fA-F]{6})))?$/);
+ if (matches) {
+ Tinter.tint(matches[1], matches[4]);
+ const colorScheme = {};
+ colorScheme.primary_color = matches[1];
+ if (matches[4]) {
+ colorScheme.secondary_color = matches[4];
+ } else {
+ colorScheme.secondary_color = colorScheme.primary_color;
}
- if (targetRoomId) { break; }
- }
- if (!targetRoomId) {
- return reject(_t("Unrecognised room alias:") + ' ' + roomAlias);
+ return success(
+ SettingsStore.setValue('roomColor', roomId, SettingLevel.ROOM_ACCOUNT, colorScheme),
+ );
}
}
- }
- if (!targetRoomId) targetRoomId = roomId;
- return success(
- MatrixClientPeg.get().leave(targetRoomId).then(
- function() {
- dis.dispatch({action: 'view_next_room'});
- },
- ),
- );
+ return reject(this.getUsage());
+ },
}),
- // Kick a user from the room with an optional reason
- kick: new Command("kick", " []", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+?)( +(.*))?$/);
- if (matches) {
- return success(
- MatrixClientPeg.get().kick(roomId, matches[1], matches[3]),
- );
+ topic: new Command({
+ name: 'topic',
+ args: '',
+ description: _td('Sets the room topic'),
+ runFn: function(roomId, args) {
+ if (args) {
+ return success(MatrixClientPeg.get().setRoomTopic(roomId, args));
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
+ }),
+
+ invite: new Command({
+ name: 'invite',
+ args: '',
+ description: _td('Invites user with given id to current room'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ return success(MatrixClientPeg.get().invite(roomId, matches[1]));
+ }
+ }
+ return reject(this.getUsage());
+ },
+ }),
+
+ join: new Command({
+ name: 'join',
+ args: '',
+ description: _td('Joins room with given alias'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ let roomAlias = matches[1];
+ if (roomAlias[0] !== '#') return reject(this.getUsage());
+
+ if (!roomAlias.includes(':')) {
+ roomAlias += ':' + MatrixClientPeg.get().getDomain();
+ }
+
+ dis.dispatch({
+ action: 'view_room',
+ room_alias: roomAlias,
+ auto_join: true,
+ });
+
+ return success();
+ }
+ }
+ return reject(this.getUsage());
+ },
+ }),
+
+ part: new Command({
+ name: 'part',
+ args: '[]',
+ description: _td('Leave room'),
+ runFn: function(roomId, args) {
+ const cli = MatrixClientPeg.get();
+
+ let targetRoomId;
+ if (args) {
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ let roomAlias = matches[1];
+ if (roomAlias[0] !== '#') return reject(this.getUsage());
+
+ if (!roomAlias.includes(':')) {
+ roomAlias += ':' + cli.getDomain();
+ }
+
+ // Try to find a room with this alias
+ const rooms = cli.getRooms();
+ for (let i = 0; i < rooms.length; i++) {
+ const aliasEvents = rooms[i].currentState.getStateEvents('m.room.aliases');
+ for (let j = 0; j < aliasEvents.length; j++) {
+ const aliases = aliasEvents[j].getContent().aliases || [];
+ for (let k = 0; k < aliases.length; k++) {
+ if (aliases[k] === roomAlias) {
+ targetRoomId = rooms[i].roomId;
+ break;
+ }
+ }
+ if (targetRoomId) break;
+ }
+ if (targetRoomId) break;
+ }
+ if (!targetRoomId) return reject(_t('Unrecognised room alias:') + ' ' + roomAlias);
+ }
+ }
+
+ if (!targetRoomId) targetRoomId = roomId;
+ return success(
+ cli.leave(targetRoomId).then(function() {
+ dis.dispatch({action: 'view_next_room'});
+ }),
+ );
+ },
+ }),
+
+ kick: new Command({
+ name: 'kick',
+ args: ' [reason]',
+ description: _td('Kicks user with given id'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+?)( +(.*))?$/);
+ if (matches) {
+ return success(MatrixClientPeg.get().kick(roomId, matches[1], matches[3]));
+ }
+ }
+ return reject(this.getUsage());
+ },
}),
// Ban a user from the room with an optional reason
- ban: new Command("ban", " []", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+?)( +(.*))?$/);
- if (matches) {
- return success(
- MatrixClientPeg.get().ban(roomId, matches[1], matches[3]),
- );
+ ban: new Command({
+ name: 'ban',
+ args: ' [reason]',
+ description: _td('Bans user with given id'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+?)( +(.*))?$/);
+ if (matches) {
+ return success(MatrixClientPeg.get().ban(roomId, matches[1], matches[3]));
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
- // Unban a user from the room
- unban: new Command("unban", "", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- // Reset the user membership to "leave" to unban him
- return success(
- MatrixClientPeg.get().unban(roomId, matches[1]),
- );
+ // Unban a user from ythe room
+ unban: new Command({
+ name: 'unban',
+ args: '',
+ description: _td('Unbans user with given id'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ // Reset the user membership to "leave" to unban him
+ return success(MatrixClientPeg.get().unban(roomId, matches[1]));
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
- ignore: new Command("ignore", "", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- const userId = matches[1];
- const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers();
- ignoredUsers.push(userId); // de-duped internally in the js-sdk
- return success(
- MatrixClientPeg.get().setIgnoredUsers(ignoredUsers).then(() => {
- const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
- Modal.createTrackedDialog('Slash Commands', 'User ignored', QuestionDialog, {
- title: _t("Ignored user"),
- description: (
-
-
{ _t("You are now ignoring %(userId)s", {userId: userId}) }
-
- ),
- hasCancelButton: false,
- });
- }),
- );
+ ignore: new Command({
+ name: 'ignore',
+ args: '',
+ description: _td('Ignores a user, hiding their messages from you'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const cli = MatrixClientPeg.get();
+
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ const userId = matches[1];
+ const ignoredUsers = cli.getIgnoredUsers();
+ ignoredUsers.push(userId); // de-duped internally in the js-sdk
+ return success(
+ cli.setIgnoredUsers(ignoredUsers).then(() => {
+ const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
+ Modal.createTrackedDialog('Slash Commands', 'User ignored', QuestionDialog, {
+ title: _t('Ignored user'),
+ description:
+
{ _t('You are now ignoring %(userId)s', {userId}) }
+
,
+ hasCancelButton: false,
+ });
+ }),
+ );
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
- unignore: new Command("unignore", "", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- const userId = matches[1];
- const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers();
- const index = ignoredUsers.indexOf(userId);
- if (index !== -1) ignoredUsers.splice(index, 1);
- return success(
- MatrixClientPeg.get().setIgnoredUsers(ignoredUsers).then(() => {
- const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
- Modal.createTrackedDialog('Slash Commands', 'User unignored', QuestionDialog, {
- title: _t("Unignored user"),
- description: (
-
-
{ _t("You are no longer ignoring %(userId)s", {userId: userId}) }
-
- ),
- hasCancelButton: false,
- });
- }),
- );
+ unignore: new Command({
+ name: 'unignore',
+ args: '',
+ description: _td('Stops ignoring a user, showing their messages going forward'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const cli = MatrixClientPeg.get();
+
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ const userId = matches[1];
+ const ignoredUsers = cli.getIgnoredUsers();
+ const index = ignoredUsers.indexOf(userId);
+ if (index !== -1) ignoredUsers.splice(index, 1);
+ return success(
+ cli.setIgnoredUsers(ignoredUsers).then(() => {
+ const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
+ Modal.createTrackedDialog('Slash Commands', 'User unignored', QuestionDialog, {
+ title: _t('Unignored user'),
+ description:
+
{ _t('You are no longer ignoring %(userId)s', {userId}) }
+
,
+ hasCancelButton: false,
+ });
+ }),
+ );
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
// Define the power level of a user
- op: new Command("op", " []", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+?)( +(-?\d+))?$/);
- let powerLevel = 50; // default power level for op
- if (matches) {
- const userId = matches[1];
- if (matches.length === 4 && undefined !== matches[3]) {
- powerLevel = parseInt(matches[3]);
- }
- if (!isNaN(powerLevel)) {
- const room = MatrixClientPeg.get().getRoom(roomId);
- if (!room) {
- return reject("Bad room ID: " + roomId);
+ op: new Command({
+ name: 'op',
+ args: ' []',
+ description: _td('Define the power level of a user'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+?)( +(-?\d+))?$/);
+ let powerLevel = 50; // default power level for op
+ if (matches) {
+ const userId = matches[1];
+ if (matches.length === 4 && undefined !== matches[3]) {
+ powerLevel = parseInt(matches[3]);
+ }
+ if (!isNaN(powerLevel)) {
+ const cli = MatrixClientPeg.get();
+ const room = cli.getRoom(roomId);
+ if (!room) return reject('Bad room ID: ' + roomId);
+
+ const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
+ return success(cli.setPowerLevel(roomId, userId, powerLevel, powerLevelEvent));
}
- const powerLevelEvent = room.currentState.getStateEvents(
- "m.room.power_levels", "",
- );
- return success(
- MatrixClientPeg.get().setPowerLevel(
- roomId, userId, powerLevel, powerLevelEvent,
- ),
- );
}
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
// Reset the power level of a user
- deop: new Command("deop", "", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+)$/);
- if (matches) {
- const room = MatrixClientPeg.get().getRoom(roomId);
- if (!room) {
- return reject("Bad room ID: " + roomId);
- }
+ deop: new Command({
+ name: 'deop',
+ args: '',
+ description: _td('Deops user with given id'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+)$/);
+ if (matches) {
+ const cli = MatrixClientPeg.get();
+ const room = cli.getRoom(roomId);
+ if (!room) return reject('Bad room ID: ' + roomId);
- const powerLevelEvent = room.currentState.getStateEvents(
- "m.room.power_levels", "",
- );
- return success(
- MatrixClientPeg.get().setPowerLevel(
- roomId, args, undefined, powerLevelEvent,
- ),
- );
+ const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
+ return success(cli.setPowerLevel(roomId, args, undefined, powerLevelEvent));
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
}),
- // Open developer tools
- devtools: new Command("devtools", "", function(roomId) {
- const DevtoolsDialog = sdk.getComponent("dialogs.DevtoolsDialog");
- Modal.createDialog(DevtoolsDialog, { roomId });
- return success();
+ devtools: new Command({
+ name: 'devtools',
+ description: _td('Opens the Developer Tools dialog'),
+ runFn: function(roomId) {
+ const DevtoolsDialog = sdk.getComponent('dialogs.DevtoolsDialog');
+ Modal.createDialog(DevtoolsDialog, {roomId});
+ return success();
+ },
}),
// Verify a user, device, and pubkey tuple
- verify: new Command("verify", " ", function(roomId, args) {
- if (args) {
- const matches = args.match(/^(\S+) +(\S+) +(\S+)$/);
- if (matches) {
- const userId = matches[1];
- const deviceId = matches[2];
- const fingerprint = matches[3];
+ verify: new Command({
+ name: 'verify',
+ args: ' ',
+ description: _td('Verifies a user, device, and pubkey tuple'),
+ runFn: function(roomId, args) {
+ if (args) {
+ const matches = args.match(/^(\S+) +(\S+) +(\S+)$/);
+ if (matches) {
+ const cli = MatrixClientPeg.get();
- return success(
- // Promise.resolve to handle transition from static result to promise; can be removed
- // in future
- Promise.resolve(MatrixClientPeg.get().getStoredDevice(userId, deviceId)).then((device) => {
- if (!device) {
- throw new Error(_t(`Unknown (user, device) pair:`) + ` (${userId}, ${deviceId})`);
- }
+ const userId = matches[1];
+ const deviceId = matches[2];
+ const fingerprint = matches[3];
- if (device.isVerified()) {
- if (device.getFingerprint() === fingerprint) {
- throw new Error(_t(`Device already verified!`));
- } else {
- throw new Error(_t(`WARNING: Device already verified, but keys do NOT MATCH!`));
+ return success(
+ // Promise.resolve to handle transition from static result to promise; can be removed
+ // in future
+ Promise.resolve(cli.getStoredDevice(userId, deviceId)).then((device) => {
+ if (!device) {
+ throw new Error(_t('Unknown (user, device) pair:') + ` (${userId}, ${deviceId})`);
}
- }
- if (device.getFingerprint() !== fingerprint) {
- const fprint = device.getFingerprint();
- throw new Error(
- _t('WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device' +
- ' %(deviceId)s is "%(fprint)s" which does not match the provided key' +
- ' "%(fingerprint)s". This could mean your communications are being intercepted!',
- {deviceId: deviceId, fprint: fprint, userId: userId, fingerprint: fingerprint}));
- }
+ if (device.isVerified()) {
+ if (device.getFingerprint() === fingerprint) {
+ throw new Error(_t('Device already verified!'));
+ } else {
+ throw new Error(_t('WARNING: Device already verified, but keys do NOT MATCH!'));
+ }
+ }
- return MatrixClientPeg.get().setDeviceVerified(userId, deviceId, true);
- }).then(() => {
- // Tell the user we verified everything
- const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
- Modal.createTrackedDialog('Slash Commands', 'Verified key', QuestionDialog, {
- title: _t("Verified key"),
- description: (
-
-
- {
- _t("The signing key you provided matches the signing key you received " +
- "from %(userId)s's device %(deviceId)s. Device marked as verified.",
- {userId: userId, deviceId: deviceId})
- }
-
-
- ),
- hasCancelButton: false,
- });
- }),
- );
+ if (device.getFingerprint() !== fingerprint) {
+ const fprint = device.getFingerprint();
+ throw new Error(
+ _t('WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device' +
+ ' %(deviceId)s is "%(fprint)s" which does not match the provided key ' +
+ '"%(fingerprint)s". This could mean your communications are being intercepted!',
+ {
+ fprint,
+ userId,
+ deviceId,
+ fingerprint,
+ }));
+ }
+
+ return cli.setDeviceVerified(userId, deviceId, true);
+ }).then(() => {
+ // Tell the user we verified everything
+ const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
+ Modal.createTrackedDialog('Slash Commands', 'Verified key', QuestionDialog, {
+ title: _t('Verified key'),
+ description:
+
+ {
+ _t('The signing key you provided matches the signing key you received ' +
+ 'from %(userId)s\'s device %(deviceId)s. Device marked as verified.',
+ {userId, deviceId})
+ }
+
+
,
+ hasCancelButton: false,
+ });
+ }),
+ );
+ }
}
- }
- return reject(this.getUsage());
+ return reject(this.getUsage());
+ },
+ }),
+
+ // Command definitions for autocompletion ONLY:
+
+ // /me is special because its not handled by SlashCommands.js and is instead done inside the Composer classes
+ me: new Command({
+ name: 'me',
+ args: '',
+ description: _td('Displays action'),
+ hideCompletionAfterSpace: true,
}),
};
/* eslint-enable babel/no-invalid-this */
@@ -421,50 +479,40 @@ const aliases = {
j: "join",
};
-module.exports = {
- /**
- * Process the given text for /commands and perform them.
- * @param {string} roomId The room in which the command was performed.
- * @param {string} input The raw text input by the user.
- * @return {Object|null} An object with the property 'error' if there was an error
- * processing the command, or 'promise' if a request was sent out.
- * Returns null if the input didn't match a command.
- */
- processInput: function(roomId, input) {
- // trim any trailing whitespace, as it can confuse the parser for
- // IRC-style commands
- input = input.replace(/\s+$/, "");
- if (input[0] === "/" && input[1] !== "/") {
- const bits = input.match(/^(\S+?)( +((.|\n)*))?$/);
- let cmd;
- let args;
- if (bits) {
- cmd = bits[1].substring(1).toLowerCase();
- args = bits[3];
- } else {
- cmd = input;
- }
- if (cmd === "me") return null;
- if (aliases[cmd]) {
- cmd = aliases[cmd];
- }
- if (commands[cmd]) {
- return commands[cmd].run(roomId, args);
- } else {
- return reject(_t("Unrecognised command:") + ' ' + input);
- }
- }
- return null; // not a command
- },
- getCommandList: function() {
- // Return all the commands plus /me and /markdown which aren't handled like normal commands
- const cmds = Object.keys(commands).sort().map(function(cmdKey) {
- return commands[cmdKey];
- });
- cmds.push(new Command("me", "", function() {}));
- cmds.push(new Command("markdown", "", function() {}));
+/**
+ * Process the given text for /commands and perform them.
+ * @param {string} roomId The room in which the command was performed.
+ * @param {string} input The raw text input by the user.
+ * @return {Object|null} An object with the property 'error' if there was an error
+ * processing the command, or 'promise' if a request was sent out.
+ * Returns null if the input didn't match a command.
+ */
+export function processCommandInput(roomId, input) {
+ // trim any trailing whitespace, as it can confuse the parser for
+ // IRC-style commands
+ input = input.replace(/\s+$/, '');
+ if (input[0] !== '/') return null; // not a command
- return cmds;
- },
-};
+ const bits = input.match(/^(\S+?)( +((.|\n)*))?$/);
+ let cmd;
+ let args;
+ if (bits) {
+ cmd = bits[1].substring(1).toLowerCase();
+ args = bits[3];
+ } else {
+ cmd = input;
+ }
+
+ if (aliases[cmd]) {
+ cmd = aliases[cmd];
+ }
+ if (CommandMap[cmd]) {
+ // if it has no runFn then its an ignored/nop command (autocomplete only) e.g `/me`
+ if (!CommandMap[cmd].runFn) return null;
+
+ return CommandMap[cmd].run(roomId, args);
+ } else {
+ return reject(_t('Unrecognised command:') + ' ' + input);
+ }
+}
diff --git a/src/TextForEvent.js b/src/TextForEvent.js
index 712150af4d..15c67526d9 100644
--- a/src/TextForEvent.js
+++ b/src/TextForEvent.js
@@ -129,6 +129,64 @@ function textForRoomNameEvent(ev) {
});
}
+function textForServerACLEvent(ev) {
+ const senderDisplayName = ev.sender && ev.sender.name ? ev.sender.name : ev.getSender();
+ const prevContent = ev.getPrevContent();
+ const changes = [];
+ const current = ev.getContent();
+ const prev = {
+ deny: Array.isArray(prevContent.deny) ? prevContent.deny : [],
+ allow: Array.isArray(prevContent.allow) ? prevContent.allow : [],
+ allow_ip_literals: !(prevContent.allow_ip_literals === false),
+ };
+ let text = "";
+ if (prev.deny.length === 0 && prev.allow.length === 0) {
+ text = `${senderDisplayName} set server ACLs for this room: `;
+ } else {
+ text = `${senderDisplayName} changed the server ACLs for this room: `;
+ }
+
+ if (!Array.isArray(current.allow)) {
+ current.allow = [];
+ }
+ /* If we know for sure everyone is banned, don't bother showing the diff view */
+ if (current.allow.length === 0) {
+ return text + "🎉 All servers are banned from participating! This room can no longer be used.";
+ }
+
+ if (!Array.isArray(current.deny)) {
+ current.deny = [];
+ }
+
+ const bannedServers = current.deny.filter((srv) => typeof(srv) === 'string' && !prev.deny.includes(srv));
+ const unbannedServers = prev.deny.filter((srv) => typeof(srv) === 'string' && !current.deny.includes(srv));
+ const allowedServers = current.allow.filter((srv) => typeof(srv) === 'string' && !prev.allow.includes(srv));
+ const unallowedServers = prev.allow.filter((srv) => typeof(srv) === 'string' && !current.allow.includes(srv));
+
+ if (bannedServers.length > 0) {
+ changes.push(`Servers matching ${bannedServers.join(", ")} are now banned.`);
+ }
+
+ if (unbannedServers.length > 0) {
+ changes.push(`Servers matching ${unbannedServers.join(", ")} were removed from the ban list.`);
+ }
+
+ if (allowedServers.length > 0) {
+ changes.push(`Servers matching ${allowedServers.join(", ")} are now allowed.`);
+ }
+
+ if (unallowedServers.length > 0) {
+ changes.push(`Servers matching ${unallowedServers.join(", ")} were removed from the allowed list.`);
+ }
+
+ if (prev.allow_ip_literals !== current.allow_ip_literals) {
+ const allowban = current.allow_ip_literals ? "allowed" : "banned";
+ changes.push(`Participating from a server using an IP literal hostname is now ${allowban}.`);
+ }
+
+ return text + changes.join(" ");
+}
+
function textForMessageEvent(ev) {
const senderDisplayName = ev.sender && ev.sender.name ? ev.sender.name : ev.getSender();
let message = senderDisplayName + ': ' + ev.getContent().body;
@@ -309,6 +367,7 @@ const stateHandlers = {
'm.room.encryption': textForEncryptionEvent,
'm.room.power_levels': textForPowerEvent,
'm.room.pinned_events': textForPinnedEvent,
+ 'm.room.server_acl': textForServerACLEvent,
'im.vector.modular.widgets': textForWidgetEvent,
};
diff --git a/src/VectorConferenceHandler.js b/src/VectorConferenceHandler.js
index 19081726b2..c53a01d464 100644
--- a/src/VectorConferenceHandler.js
+++ b/src/VectorConferenceHandler.js
@@ -72,7 +72,7 @@ ConferenceCall.prototype._getConferenceUserRoom = function() {
for (var i = 0; i < rooms.length; i++) {
var confUser = rooms[i].getMember(this.confUserId);
if (confUser && confUser.membership === "join" &&
- rooms[i].getJoinedMembers().length === 2) {
+ rooms[i].getJoinedMemberCount() === 2) {
confRoom = rooms[i];
break;
}
@@ -84,7 +84,7 @@ ConferenceCall.prototype._getConferenceUserRoom = function() {
preset: "private_chat",
invite: [this.confUserId]
}).then(function(res) {
- return new Room(res.room_id);
+ return new Room(res.room_id, null, client.getUserId());
});
};
diff --git a/src/WidgetUtils.js b/src/WidgetUtils.js
deleted file mode 100644
index 5f45a8c58c..0000000000
--- a/src/WidgetUtils.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
-Copyright 2017 Vector Creations 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 MatrixClientPeg from './MatrixClientPeg';
-
-export default class WidgetUtils {
- /* Returns true if user is able to send state events to modify widgets in this room
- * (Does not apply to non-room-based / user widgets)
- * @param roomId -- The ID of the room to check
- * @return Boolean -- true if the user can modify widgets in this room
- * @throws Error -- specifies the error reason
- */
- static canUserModifyWidgets(roomId) {
- if (!roomId) {
- console.warn('No room ID specified');
- return false;
- }
-
- const client = MatrixClientPeg.get();
- if (!client) {
- console.warn('User must be be logged in');
- return false;
- }
-
- const room = client.getRoom(roomId);
- if (!room) {
- console.warn(`Room ID ${roomId} is not recognised`);
- return false;
- }
-
- const me = client.credentials.userId;
- if (!me) {
- console.warn('Failed to get user ID');
- return false;
- }
-
- const member = room.getMember(me);
- if (!member || member.membership !== "join") {
- console.warn(`User ${me} is not in room ${roomId}`);
- return false;
- }
-
- return room.currentState.maySendStateEvent('im.vector.modular.widgets', me);
- }
-}
diff --git a/src/autocomplete/AutocompleteProvider.js b/src/autocomplete/AutocompleteProvider.js
index c93ae4fb2a..f9fb61d3a3 100644
--- a/src/autocomplete/AutocompleteProvider.js
+++ b/src/autocomplete/AutocompleteProvider.js
@@ -1,7 +1,7 @@
/*
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -20,13 +20,19 @@ import React from 'react';
import type {Completion, SelectionRange} from './Autocompleter';
export default class AutocompleteProvider {
- constructor(commandRegex?: RegExp) {
+ constructor(commandRegex?: RegExp, forcedCommandRegex?: RegExp) {
if (commandRegex) {
if (!commandRegex.global) {
throw new Error('commandRegex must have global flag set');
}
this.commandRegex = commandRegex;
}
+ if (forcedCommandRegex) {
+ if (!forcedCommandRegex.global) {
+ throw new Error('forcedCommandRegex must have global flag set');
+ }
+ this.forcedCommandRegex = forcedCommandRegex;
+ }
}
destroy() {
@@ -36,11 +42,11 @@ export default class AutocompleteProvider {
/**
* Of the matched commands in the query, returns the first that contains or is contained by the selection, or null.
*/
- getCurrentCommand(query: string, selection: {start: number, end: number}, force: boolean = false): ?string {
+ getCurrentCommand(query: string, selection: SelectionRange, force: boolean = false): ?string {
let commandRegex = this.commandRegex;
if (force && this.shouldForceComplete()) {
- commandRegex = /\S+/g;
+ commandRegex = this.forcedCommandRegex || /\S+/g;
}
if (commandRegex == null) {
@@ -51,14 +57,14 @@ export default class AutocompleteProvider {
let match;
while ((match = commandRegex.exec(query)) != null) {
- let matchStart = match.index,
- matchEnd = matchStart + match[0].length;
- if (selection.start <= matchEnd && selection.end >= matchStart) {
+ const start = match.index;
+ const end = start + match[0].length;
+ if (selection.start <= end && selection.end >= start) {
return {
command: match,
range: {
- start: matchStart,
- end: matchEnd,
+ start,
+ end,
},
};
}
diff --git a/src/autocomplete/Autocompleter.js b/src/autocomplete/Autocompleter.js
index 3d30363d9f..7f91676cc3 100644
--- a/src/autocomplete/Autocompleter.js
+++ b/src/autocomplete/Autocompleter.js
@@ -1,6 +1,6 @@
/*
Copyright 2016 Aviral Dasgupta
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -18,7 +18,9 @@ limitations under the License.
// @flow
import type {Component} from 'react';
+import {Room} from 'matrix-js-sdk';
import CommandProvider from './CommandProvider';
+import CommunityProvider from './CommunityProvider';
import DuckDuckGoProvider from './DuckDuckGoProvider';
import RoomProvider from './RoomProvider';
import UserProvider from './UserProvider';
@@ -27,8 +29,9 @@ import NotifProvider from './NotifProvider';
import Promise from 'bluebird';
export type SelectionRange = {
- start: number,
- end: number
+ beginning: boolean, // whether the selection is in the first block of the editor or not
+ start: number, // byte offset relative to the start anchor of the current editor selection.
+ end: number, // byte offset relative to the end anchor of the current editor selection.
};
export type Completion = {
@@ -47,6 +50,7 @@ const PROVIDERS = [
EmojiProvider,
NotifProvider,
CommandProvider,
+ CommunityProvider,
DuckDuckGoProvider,
];
@@ -54,7 +58,7 @@ const PROVIDERS = [
const PROVIDER_COMPLETION_TIMEOUT = 3000;
export default class Autocompleter {
- constructor(room) {
+ constructor(room: Room) {
this.room = room;
this.providers = PROVIDERS.map((p) => {
return new p(room);
@@ -77,12 +81,12 @@ export default class Autocompleter {
// Array of inspections of promises that might timeout. Instead of allowing a
// single timeout to reject the Promise.all, reflect each one and once they've all
// settled, filter for the fulfilled ones
- this.providers.map((provider) => {
- return provider
+ this.providers.map(provider =>
+ provider
.getCompletions(query, selection, force)
.timeout(PROVIDER_COMPLETION_TIMEOUT)
- .reflect();
- }),
+ .reflect()
+ ),
);
return completionsList.filter(
diff --git a/src/autocomplete/CommandProvider.js b/src/autocomplete/CommandProvider.js
index e33fa7861f..a35a31966a 100644
--- a/src/autocomplete/CommandProvider.js
+++ b/src/autocomplete/CommandProvider.js
@@ -2,6 +2,7 @@
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
Copyright 2017 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -17,103 +18,16 @@ limitations under the License.
*/
import React from 'react';
-import { _t, _td } from '../languageHandler';
+import {_t} from '../languageHandler';
import AutocompleteProvider from './AutocompleteProvider';
import FuzzyMatcher from './FuzzyMatcher';
import {TextualCompletion} from './Components';
+import type {Completion, SelectionRange} from "./Autocompleter";
+import {CommandMap} from '../SlashCommands';
-// TODO merge this with the factory mechanics of SlashCommands?
-// Warning: Since the description string will be translated in _t(result.description), all these strings below must be in i18n/strings/en_EN.json file
-const COMMANDS = [
- {
- command: '/me',
- args: '',
- description: _td('Displays action'),
- },
- {
- command: '/ban',
- args: ' [reason]',
- description: _td('Bans user with given id'),
- },
- {
- command: '/unban',
- args: '',
- description: _td('Unbans user with given id'),
- },
- {
- command: '/op',
- args: ' []',
- description: _td('Define the power level of a user'),
- },
- {
- command: '/deop',
- args: '',
- description: _td('Deops user with given id'),
- },
- {
- command: '/invite',
- args: '',
- description: _td('Invites user with given id to current room'),
- },
- {
- command: '/join',
- args: '',
- description: _td('Joins room with given alias'),
- },
- {
- command: '/part',
- args: '[]',
- description: _td('Leave room'),
- },
- {
- command: '/topic',
- args: '',
- description: _td('Sets the room topic'),
- },
- {
- command: '/kick',
- args: ' [reason]',
- description: _td('Kicks user with given id'),
- },
- {
- command: '/nick',
- args: '',
- description: _td('Changes your display nickname'),
- },
- {
- command: '/ddg',
- args: '',
- description: _td('Searches DuckDuckGo for results'),
- },
- {
- command: '/tint',
- args: ' []',
- description: _td('Changes colour scheme of current room'),
- },
- {
- command: '/verify',
- args: ' ',
- description: _td('Verifies a user, device, and pubkey tuple'),
- },
- {
- command: '/ignore',
- args: '',
- description: _td('Ignores a user, hiding their messages from you'),
- },
- {
- command: '/unignore',
- args: '',
- description: _td('Stops ignoring a user, showing their messages going forward'),
- },
- {
- command: '/devtools',
- args: '',
- description: _td('Opens the Developer Tools dialog'),
- },
- // Omitting `/markdown` as it only seems to apply to OldComposer
-];
+const COMMANDS = Object.values(CommandMap);
-const COMMAND_RE = /(^\/\w*)/g;
+const COMMAND_RE = /(^\/\w*)(?: .*)?/g;
export default class CommandProvider extends AutocompleteProvider {
constructor() {
@@ -123,23 +37,39 @@ export default class CommandProvider extends AutocompleteProvider {
});
}
- async getCompletions(query: string, selection: {start: number, end: number}) {
- let completions = [];
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean): Array {
const {command, range} = this.getCurrentCommand(query, selection);
- if (command) {
- completions = this.matcher.match(command[0]).map((result) => {
- return {
- completion: result.command + ' ',
- component: ( ),
- range,
- };
- });
+ if (!command) return [];
+
+ let matches = [];
+ // check if the full match differs from the first word (i.e. returns false if the command has args)
+ if (command[0] !== command[1]) {
+ // The input looks like a command with arguments, perform exact match
+ const name = command[1].substr(1); // strip leading `/`
+ if (CommandMap[name]) {
+ // some commands, namely `me` and `ddg` don't suit having the usage shown whilst typing their arguments
+ if (CommandMap[name].hideCompletionAfterSpace) return [];
+ matches = [CommandMap[name]];
+ }
+ } else {
+ if (query === '/') {
+ // If they have just entered `/` show everything
+ matches = COMMANDS;
+ } else {
+ // otherwise fuzzy match against all of the fields
+ matches = this.matcher.match(command[1]);
+ }
}
- return completions;
+
+ return matches.map((result) => ({
+ // If the command is the same as the one they entered, we don't want to discard their arguments
+ completion: result.command === command[1] ? command[0] : (result.command + ' '),
+ component: ,
+ range,
+ }));
}
getName() {
diff --git a/src/autocomplete/CommunityProvider.js b/src/autocomplete/CommunityProvider.js
new file mode 100644
index 0000000000..6bcf1a02fd
--- /dev/null
+++ b/src/autocomplete/CommunityProvider.js
@@ -0,0 +1,111 @@
+/*
+Copyright 2018 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
+
+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 React from 'react';
+import { _t } from '../languageHandler';
+import AutocompleteProvider from './AutocompleteProvider';
+import MatrixClientPeg from '../MatrixClientPeg';
+import FuzzyMatcher from './FuzzyMatcher';
+import {PillCompletion} from './Components';
+import sdk from '../index';
+import _sortBy from 'lodash/sortBy';
+import {makeGroupPermalink} from "../matrix-to";
+import type {Completion, SelectionRange} from "./Autocompleter";
+import FlairStore from "../stores/FlairStore";
+
+const COMMUNITY_REGEX = /\B\+\S*/g;
+
+function score(query, space) {
+ const index = space.indexOf(query);
+ if (index === -1) {
+ return Infinity;
+ } else {
+ return index;
+ }
+}
+
+export default class CommunityProvider extends AutocompleteProvider {
+ constructor() {
+ super(COMMUNITY_REGEX);
+ this.matcher = new FuzzyMatcher([], {
+ keys: ['groupId', 'name', 'shortDescription'],
+ });
+ }
+
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean = false): Array {
+ const BaseAvatar = sdk.getComponent('views.avatars.BaseAvatar');
+
+ // Disable autocompletions when composing commands because of various issues
+ // (see https://github.com/vector-im/riot-web/issues/4762)
+ if (/^(\/join|\/leave)/.test(query)) {
+ return [];
+ }
+
+ const cli = MatrixClientPeg.get();
+ let completions = [];
+ const {command, range} = this.getCurrentCommand(query, selection, force);
+ if (command) {
+ const joinedGroups = cli.getGroups().filter(({myMembership}) => myMembership === 'join');
+
+ const groups = (await Promise.all(joinedGroups.map(async ({groupId}) => {
+ try {
+ return FlairStore.getGroupProfileCached(cli, groupId);
+ } catch (e) { // if FlairStore failed, fall back to just groupId
+ return Promise.resolve({
+ name: '',
+ groupId,
+ avatarUrl: '',
+ shortDescription: '',
+ });
+ }
+ })));
+
+ this.matcher.setObjects(groups);
+
+ const matchedString = command[0];
+ completions = this.matcher.match(matchedString);
+ completions = _sortBy(completions, [
+ (c) => score(matchedString, c.groupId),
+ (c) => c.groupId.length,
+ ]).map(({avatarUrl, groupId, name}) => ({
+ completion: groupId,
+ suffix: ' ',
+ href: makeGroupPermalink(groupId),
+ component: (
+
+ } title={name} description={groupId} />
+ ),
+ range,
+ }))
+ .slice(0, 4);
+ }
+ return completions;
+ }
+
+ getName() {
+ return '💬 ' + _t('Communities');
+ }
+
+ renderCompletions(completions: [React.Component]): ?React.Component {
+ return
+ { completions }
+
;
+ }
+}
diff --git a/src/autocomplete/DuckDuckGoProvider.js b/src/autocomplete/DuckDuckGoProvider.js
index 68d4915f56..e25ef16428 100644
--- a/src/autocomplete/DuckDuckGoProvider.js
+++ b/src/autocomplete/DuckDuckGoProvider.js
@@ -1,7 +1,7 @@
/*
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -22,6 +22,7 @@ import AutocompleteProvider from './AutocompleteProvider';
import 'whatwg-fetch';
import {TextualCompletion} from './Components';
+import type {SelectionRange} from "./Autocompleter";
const DDG_REGEX = /\/ddg\s+(.+)$/g;
const REFERRER = 'vector';
@@ -36,7 +37,7 @@ export default class DuckDuckGoProvider extends AutocompleteProvider {
+ `&format=json&no_redirect=1&no_html=1&t=${encodeURIComponent(REFERRER)}`;
}
- async getCompletions(query: string, selection: {start: number, end: number}) {
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean = false) {
const {command, range} = this.getCurrentCommand(query, selection);
if (!query || !command) {
return [];
diff --git a/src/autocomplete/EmojiProvider.js b/src/autocomplete/EmojiProvider.js
index f4e576ea0f..719550d59f 100644
--- a/src/autocomplete/EmojiProvider.js
+++ b/src/autocomplete/EmojiProvider.js
@@ -1,7 +1,7 @@
/*
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -19,11 +19,11 @@ limitations under the License.
import React from 'react';
import { _t } from '../languageHandler';
import AutocompleteProvider from './AutocompleteProvider';
-import {emojioneList, shortnameToImage, shortnameToUnicode, asciiRegexp, unicodeRegexp} from 'emojione';
+import {shortnameToUnicode, asciiRegexp, unicodeRegexp} from 'emojione';
import FuzzyMatcher from './FuzzyMatcher';
import sdk from '../index';
import {PillCompletion} from './Components';
-import type {SelectionRange, Completion} from './Autocompleter';
+import type {Completion, SelectionRange} from './Autocompleter';
import _uniq from 'lodash/uniq';
import _sortBy from 'lodash/sortBy';
import SettingsStore from "../settings/SettingsStore";
@@ -48,7 +48,7 @@ const CATEGORY_ORDER = [
// (^|\s|(emojiUnicode)) to make sure we're either at the start of the string or there's a
// whitespace character or an emoji before the emoji. The reason for unicodeRegexp is
// that we need to support inputting multiple emoji with no space between them.
-const EMOJI_REGEX = new RegExp('(?:^|\\s|' + unicodeRegexp + ')(' + asciiRegexp + '|:\\w*:?)$', 'g');
+const EMOJI_REGEX = new RegExp('(?:^|\\s|' + unicodeRegexp + ')(' + asciiRegexp + '|:[+-\\w]*:?)$', 'g');
// We also need to match the non-zero-length prefixes to remove them from the final match,
// and update the range so that we don't replace the whitespace or the previous emoji.
@@ -65,6 +65,7 @@ const EMOJI_SHORTNAMES = Object.keys(EmojiData).map((key) => EmojiData[key]).sor
return {
name: a.name,
shortname: a.shortname,
+ aliases: a.aliases ? a.aliases.join(' ') : '',
aliases_ascii: a.aliases_ascii ? a.aliases_ascii.join(' ') : '',
// Include the index so that we can preserve the original order
_orderBy: index,
@@ -84,7 +85,7 @@ export default class EmojiProvider extends AutocompleteProvider {
constructor() {
super(EMOJI_REGEX);
this.matcher = new FuzzyMatcher(EMOJI_SHORTNAMES, {
- keys: ['aliases_ascii', 'shortname'],
+ keys: ['aliases_ascii', 'shortname', 'aliases'],
// For matching against ascii equivalents
shouldMatchWordsOnly: false,
});
@@ -95,7 +96,7 @@ export default class EmojiProvider extends AutocompleteProvider {
});
}
- async getCompletions(query: string, selection: SelectionRange) {
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean): Array {
if (SettingsStore.getValue("MessageComposerInput.dontSuggestEmoji")) {
return []; // don't give any suggestions if the user doesn't want them
}
diff --git a/src/autocomplete/NotifProvider.js b/src/autocomplete/NotifProvider.js
index b7ac645525..432388c255 100644
--- a/src/autocomplete/NotifProvider.js
+++ b/src/autocomplete/NotifProvider.js
@@ -20,6 +20,7 @@ import { _t } from '../languageHandler';
import MatrixClientPeg from '../MatrixClientPeg';
import {PillCompletion} from './Components';
import sdk from '../index';
+import type {Completion, SelectionRange} from "./Autocompleter";
const AT_ROOM_REGEX = /@\S*/g;
@@ -29,7 +30,7 @@ export default class NotifProvider extends AutocompleteProvider {
this.room = room;
}
- async getCompletions(query: string, selection: {start: number, end: number}, force = false) {
+ async getCompletions(query: string, selection: SelectionRange, force?:boolean = false): Array {
const RoomAvatar = sdk.getComponent('views.avatars.RoomAvatar');
const client = MatrixClientPeg.get();
@@ -40,6 +41,7 @@ export default class NotifProvider extends AutocompleteProvider {
if (command && command[0] && '@room'.startsWith(command[0]) && command[0].length > 1) {
return [{
completion: '@room',
+ completionId: '@room',
suffix: ' ',
component: (
} title="@room" description={_t("Notify the whole room")} />
diff --git a/src/autocomplete/PlainWithPillsSerializer.js b/src/autocomplete/PlainWithPillsSerializer.js
new file mode 100644
index 0000000000..59cf1bde3b
--- /dev/null
+++ b/src/autocomplete/PlainWithPillsSerializer.js
@@ -0,0 +1,93 @@
+/*
+Copyright 2018 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.
+*/
+
+// Based originally on slate-plain-serializer
+
+import { Block } from 'slate';
+
+/**
+ * Plain text serializer, which converts a Slate `value` to a plain text string,
+ * serializing pills into various different formats as required.
+ *
+ * @type {PlainWithPillsSerializer}
+ */
+
+class PlainWithPillsSerializer {
+
+ /*
+ * @param {String} options.pillFormat - either 'md', 'plain', 'id'
+ */
+ constructor(options = {}) {
+ const {
+ pillFormat = 'plain',
+ } = options;
+ this.pillFormat = pillFormat;
+ }
+
+ /**
+ * Serialize a Slate `value` to a plain text string,
+ * serializing pills as either MD links, plain text representations or
+ * ID representations as required.
+ *
+ * @param {Value} value
+ * @return {String}
+ */
+ serialize = value => {
+ return this._serializeNode(value.document);
+ }
+
+ /**
+ * Serialize a `node` to plain text.
+ *
+ * @param {Node} node
+ * @return {String}
+ */
+ _serializeNode = node => {
+ if (
+ node.object == 'document' ||
+ (node.object == 'block' && Block.isBlockList(node.nodes))
+ ) {
+ return node.nodes.map(this._serializeNode).join('\n');
+ } else if (node.type == 'emoji') {
+ return node.data.get('emojiUnicode');
+ } else if (node.type == 'pill') {
+ const completion = node.data.get('completion');
+ // over the wire the @room pill is just plaintext
+ if (completion === '@room') return completion;
+
+ switch (this.pillFormat) {
+ case 'plain':
+ return completion;
+ case 'md':
+ return `[${ completion }](${ node.data.get('href') })`;
+ case 'id':
+ return node.data.get('completionId') || completion;
+ }
+ } else if (node.nodes) {
+ return node.nodes.map(this._serializeNode).join('');
+ } else {
+ return node.text;
+ }
+ }
+}
+
+/**
+ * Export.
+ *
+ * @type {PlainWithPillsSerializer}
+ */
+
+export default PlainWithPillsSerializer;
diff --git a/src/autocomplete/QueryMatcher.js b/src/autocomplete/QueryMatcher.js
index 762b285685..9d4d4d0598 100644
--- a/src/autocomplete/QueryMatcher.js
+++ b/src/autocomplete/QueryMatcher.js
@@ -1,6 +1,7 @@
//@flow
/*
Copyright 2017 Aviral Dasgupta
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -27,6 +28,10 @@ class KeyMap {
priorityMap = new Map();
}
+function stripDiacritics(str: string): string {
+ return str.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
+}
+
export default class QueryMatcher {
/**
* @param {object[]} objects the objects to perform a match on
@@ -46,10 +51,11 @@ export default class QueryMatcher {
objects.forEach((object, i) => {
const keyValues = _at(object, keys);
for (const keyValue of keyValues) {
- if (!map.hasOwnProperty(keyValue)) {
- map[keyValue] = [];
+ const key = stripDiacritics(keyValue).toLowerCase();
+ if (!map.hasOwnProperty(key)) {
+ map[key] = [];
}
- map[keyValue].push(object);
+ map[key].push(object);
}
keyMap.priorityMap.set(object, i);
});
@@ -82,7 +88,7 @@ export default class QueryMatcher {
}
match(query: String): Array {
- query = query.toLowerCase();
+ query = stripDiacritics(query).toLowerCase();
if (this.options.shouldMatchWordsOnly) {
query = query.replace(/[^\w]/g, '');
}
@@ -91,7 +97,7 @@ export default class QueryMatcher {
}
const results = [];
this.keyMap.keys.forEach((key) => {
- let resultKey = key.toLowerCase();
+ let resultKey = key;
if (this.options.shouldMatchWordsOnly) {
resultKey = resultKey.replace(/[^\w]/g, '');
}
diff --git a/src/autocomplete/RoomProvider.js b/src/autocomplete/RoomProvider.js
index 31599703c2..38e2ab8373 100644
--- a/src/autocomplete/RoomProvider.js
+++ b/src/autocomplete/RoomProvider.js
@@ -1,7 +1,8 @@
/*
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -26,8 +27,9 @@ import {getDisplayAliasForRoom} from '../Rooms';
import sdk from '../index';
import _sortBy from 'lodash/sortBy';
import {makeRoomPermalink} from "../matrix-to";
+import type {Completion, SelectionRange} from "./Autocompleter";
-const ROOM_REGEX = /(?=#)(\S*)/g;
+const ROOM_REGEX = /\B#\S*/g;
function score(query, space) {
const index = space.indexOf(query);
@@ -46,15 +48,9 @@ export default class RoomProvider extends AutocompleteProvider {
});
}
- async getCompletions(query: string, selection: {start: number, end: number}, force = false) {
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean = false): Array {
const RoomAvatar = sdk.getComponent('views.avatars.RoomAvatar');
- // Disable autocompletions when composing commands because of various issues
- // (see https://github.com/vector-im/riot-web/issues/4762)
- if (/^(\/join|\/leave)/.test(query)) {
- return [];
- }
-
const client = MatrixClientPeg.get();
let completions = [];
const {command, range} = this.getCurrentCommand(query, selection, force);
@@ -78,6 +74,7 @@ export default class RoomProvider extends AutocompleteProvider {
const displayAlias = getDisplayAliasForRoom(room.room) || room.roomId;
return {
completion: displayAlias,
+ completionId: displayAlias,
suffix: ' ',
href: makeRoomPermalink(displayAlias),
component: (
diff --git a/src/autocomplete/UserProvider.js b/src/autocomplete/UserProvider.js
index ce8f1020a1..156aac2eb8 100644
--- a/src/autocomplete/UserProvider.js
+++ b/src/autocomplete/UserProvider.js
@@ -2,7 +2,8 @@
/*
Copyright 2016 Aviral Dasgupta
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -23,28 +24,30 @@ import AutocompleteProvider from './AutocompleteProvider';
import {PillCompletion} from './Components';
import sdk from '../index';
import FuzzyMatcher from './FuzzyMatcher';
-import _pull from 'lodash/pull';
import _sortBy from 'lodash/sortBy';
import MatrixClientPeg from '../MatrixClientPeg';
-import type {Room, RoomMember} from 'matrix-js-sdk';
+import type {MatrixEvent, Room, RoomMember, RoomState} from 'matrix-js-sdk';
import {makeUserPermalink} from "../matrix-to";
+import type {Completion, SelectionRange} from "./Autocompleter";
-const USER_REGEX = /@\S*/g;
+const USER_REGEX = /\B@\S*/g;
+
+// used when you hit 'tab' - we allow some separator chars at the beginning
+// to allow you to tab-complete /mat into /(matthew)
+const FORCED_USER_REGEX = /[^/,:; \t\n]\S*/g;
export default class UserProvider extends AutocompleteProvider {
users: Array = null;
room: Room = null;
constructor(room) {
- super(USER_REGEX, {
- keys: ['name'],
- });
+ super(USER_REGEX, FORCED_USER_REGEX);
this.room = room;
this.matcher = new FuzzyMatcher([], {
keys: ['name', 'userId'],
shouldMatchPrefix: true,
- shouldMatchWordsOnly: false
+ shouldMatchWordsOnly: false,
});
this._onRoomTimelineBound = this._onRoomTimeline.bind(this);
@@ -61,7 +64,7 @@ export default class UserProvider extends AutocompleteProvider {
}
}
- _onRoomTimeline(ev, room, toStartOfTimeline, removed, data) {
+ _onRoomTimeline(ev: MatrixEvent, room: Room, toStartOfTimeline: boolean, removed: boolean, data: Object) {
if (!room) return;
if (removed) return;
if (room.roomId !== this.room.roomId) return;
@@ -77,7 +80,7 @@ export default class UserProvider extends AutocompleteProvider {
this.onUserSpoke(ev.sender);
}
- _onRoomStateMember(ev, state, member) {
+ _onRoomStateMember(ev: MatrixEvent, state: RoomState, member: RoomMember) {
// ignore members in other rooms
if (member.roomId !== this.room.roomId) {
return;
@@ -87,15 +90,9 @@ export default class UserProvider extends AutocompleteProvider {
this.users = null;
}
- async getCompletions(query: string, selection: {start: number, end: number}, force = false) {
+ async getCompletions(query: string, selection: SelectionRange, force?: boolean = false): Array {
const MemberAvatar = sdk.getComponent('views.avatars.MemberAvatar');
- // Disable autocompletions when composing commands because of various issues
- // (see https://github.com/vector-im/riot-web/issues/4762)
- if (/^(\/ban|\/unban|\/op|\/deop|\/invite|\/kick|\/verify)/.test(query)) {
- return [];
- }
-
// lazy-load user list into matcher
if (this.users === null) this._makeUsers();
@@ -113,7 +110,8 @@ export default class UserProvider extends AutocompleteProvider {
// Length of completion should equal length of text in decorator. draft-js
// relies on the length of the entity === length of the text in the decoration.
completion: user.rawDisplayName.replace(' (IRC)', ''),
- suffix: range.start === 0 ? ': ' : ' ',
+ completionId: user.userId,
+ suffix: (selection.beginning && range.start === 0) ? ': ' : ' ',
href: makeUserPermalink(user.userId),
component: (
{
- if (member.userId !== currentUserId) return true;
- });
+ this.users = this.room.getJoinedMembers().filter(({userId}) => userId !== currentUserId);
- this.users = _sortBy(this.users, (member) =>
- 1E20 - lastSpoken[member.userId] || 1E20,
- );
+ this.users = _sortBy(this.users, (member) => 1E20 - lastSpoken[member.userId] || 1E20);
this.matcher.setObjects(this.users);
}
diff --git a/src/components/structures/ContextualMenu.js b/src/components/structures/ContextualMenu.js
index daac294d12..7295fd45d3 100644
--- a/src/components/structures/ContextualMenu.js
+++ b/src/components/structures/ContextualMenu.js
@@ -1,5 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
+Copyright 2018 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.
@@ -15,12 +16,10 @@ limitations under the License.
*/
-'use strict';
-
-const classNames = require('classnames');
-const React = require('react');
-const ReactDOM = require('react-dom');
+import React from 'react';
+import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
+import classNames from 'classnames';
// Shamelessly ripped off Modal.js. There's probably a better way
// of doing reusable widgets like dialog boxes & menus where we go and
@@ -61,6 +60,54 @@ export default class ContextualMenu extends React.Component {
// If true, insert an invisible screen-sized element behind the
// menu that when clicked will close it.
hasBackground: PropTypes.bool,
+
+ // The component to render as the context menu
+ elementClass: PropTypes.element.isRequired,
+ // on resize callback
+ windowResize: PropTypes.func,
+ // method to close menu
+ closeMenu: PropTypes.func,
+ };
+
+ constructor() {
+ super();
+ this.state = {
+ contextMenuRect: null,
+ };
+
+ this.onContextMenu = this.onContextMenu.bind(this);
+ this.collectContextMenuRect = this.collectContextMenuRect.bind(this);
+ }
+
+ collectContextMenuRect(element) {
+ // We don't need to clean up when unmounting, so ignore
+ if (!element) return;
+
+ this.setState({
+ contextMenuRect: element.getBoundingClientRect(),
+ });
+ }
+
+ onContextMenu(e) {
+ if (this.props.closeMenu) {
+ this.props.closeMenu();
+
+ e.preventDefault();
+ const x = e.clientX;
+ const y = e.clientY;
+
+ // XXX: This isn't pretty but the only way to allow opening a different context menu on right click whilst
+ // a context menu and its click-guard are up without completely rewriting how the context menus work.
+ setImmediate(() => {
+ const clickEvent = document.createEvent('MouseEvents');
+ clickEvent.initMouseEvent(
+ 'contextmenu', true, true, window, 0,
+ 0, 0, x, y, false, false,
+ false, false, 0, null,
+ );
+ document.elementFromPoint(x, y).dispatchEvent(clickEvent);
+ });
+ }
}
render() {
@@ -83,6 +130,9 @@ export default class ContextualMenu extends React.Component {
chevronFace = 'right';
}
+ const contextMenuRect = this.state.contextMenuRect || null;
+ const padding = 10;
+
const chevronOffset = {};
if (props.chevronFace) {
chevronFace = props.chevronFace;
@@ -90,7 +140,19 @@ export default class ContextualMenu extends React.Component {
if (chevronFace === 'top' || chevronFace === 'bottom') {
chevronOffset.left = props.chevronOffset;
} else {
- chevronOffset.top = props.chevronOffset;
+ const target = position.top;
+
+ // By default, no adjustment is made
+ let adjusted = target;
+
+ // If we know the dimensions of the context menu, adjust its position
+ // such that it does not leave the (padded) window.
+ if (contextMenuRect) {
+ adjusted = Math.min(position.top, document.body.clientHeight - contextMenuRect.height - padding);
+ }
+
+ position.top = adjusted;
+ chevronOffset.top = Math.max(props.chevronOffset, props.chevronOffset + target - adjusted);
}
// To override the default chevron colour, if it's been set
@@ -112,7 +174,7 @@ export default class ContextualMenu extends React.Component {
`;
}
- const chevron =
;
+ const chevron =
;
const className = 'mx_ContextualMenu_wrapper';
const menuClasses = classNames({
@@ -154,17 +216,18 @@ export default class ContextualMenu extends React.Component {
// FIXME: If a menu uses getDefaultProps it clobbers the onFinished
// property set here so you can't close the menu from a button click!
return
-
+
{ chevron }
- { props.hasBackground &&
}
+ { props.hasBackground &&
}
;
}
}
-export function createMenu(ElementClass, props) {
+export function createMenu(ElementClass, props, hasBackground=true) {
const closeMenu = function(...args) {
ReactDOM.unmountComponentAtNode(getOrCreateContainer());
@@ -175,8 +238,8 @@ export function createMenu(ElementClass, props) {
// We only reference closeMenu once per call to createMenu
const menu =
{ _t('Only people who have been invited') }
@@ -1051,7 +1071,7 @@ export default React.createClass({
{ _t('Everyone') }
@@ -1114,10 +1134,6 @@ export default React.createClass({
let avatarNode;
let nameNode;
let shortDescNode;
- const bodyNodes = [
- this._getMembershipSection(),
- this._getGroupSection(),
- ];
const rightButtons = [];
if (this.state.editing && this.state.isUserPrivileged) {
let avatarImage;
@@ -1194,6 +1210,7 @@ export default React.createClass({
shortDescNode =
{ summary.profile.short_description } ;
}
}
+
if (this.state.editing) {
rightButtons.push(
,
);
}
+ rightButtons.push(
+
+
+ ,
+ );
if (this.props.collapsedRhs) {
rightButtons.push(
- { bodyNodes }
+ { this._getMembershipSection() }
+ { this._getGroupSection() }
);
diff --git a/src/components/structures/LeftPanel.js b/src/components/structures/LeftPanel.js
index 5acceb1009..ebe5d7f507 100644
--- a/src/components/structures/LeftPanel.js
+++ b/src/components/structures/LeftPanel.js
@@ -82,17 +82,26 @@ var LeftPanel = React.createClass({
_onKeyDown: function(ev) {
if (!this.focusedElement) return;
- let handled = false;
+ let handled = true;
switch (ev.keyCode) {
+ case KeyCode.TAB:
+ this._onMoveFocus(ev.shiftKey);
+ break;
case KeyCode.UP:
this._onMoveFocus(true);
- handled = true;
break;
case KeyCode.DOWN:
this._onMoveFocus(false);
- handled = true;
break;
+ case KeyCode.ENTER:
+ this._onMoveFocus(false);
+ if (this.focusedElement) {
+ this.focusedElement.click();
+ }
+ break;
+ default:
+ handled = false;
}
if (handled) {
@@ -102,37 +111,33 @@ var LeftPanel = React.createClass({
},
_onMoveFocus: function(up) {
- var element = this.focusedElement;
+ let element = this.focusedElement;
// unclear why this isn't needed
// var descending = (up == this.focusDirection) ? this.focusDescending : !this.focusDescending;
// this.focusDirection = up;
- var descending = false; // are we currently descending or ascending through the DOM tree?
- var classes;
+ let descending = false; // are we currently descending or ascending through the DOM tree?
+ let classes;
do {
- var child = up ? element.lastElementChild : element.firstElementChild;
- var sibling = up ? element.previousElementSibling : element.nextElementSibling;
+ const child = up ? element.lastElementChild : element.firstElementChild;
+ const sibling = up ? element.previousElementSibling : element.nextElementSibling;
if (descending) {
if (child) {
element = child;
- }
- else if (sibling) {
+ } else if (sibling) {
element = sibling;
- }
- else {
+ } else {
descending = false;
element = element.parentElement;
}
- }
- else {
+ } else {
if (sibling) {
element = sibling;
descending = true;
- }
- else {
+ } else {
element = element.parentElement;
}
}
@@ -144,8 +149,7 @@ var LeftPanel = React.createClass({
descending = true;
}
}
-
- } while(element && !(
+ } while (element && !(
classes.contains("mx_RoomTile") ||
classes.contains("mx_SearchBox_search") ||
classes.contains("mx_RoomSubList_ellipsis")));
diff --git a/src/components/structures/LoggedInView.js b/src/components/structures/LoggedInView.js
index 2dd5a75c47..0c4688a411 100644
--- a/src/components/structures/LoggedInView.js
+++ b/src/components/structures/LoggedInView.js
@@ -1,7 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -30,10 +30,16 @@ import dis from '../../dispatcher';
import sessionStore from '../../stores/SessionStore';
import MatrixClientPeg from '../../MatrixClientPeg';
import SettingsStore from "../../settings/SettingsStore";
+import RoomListStore from "../../stores/RoomListStore";
import TagOrderActions from '../../actions/TagOrderActions';
import RoomListActions from '../../actions/RoomListActions';
+// We need to fetch each pinned message individually (if we don't already have it)
+// so each pinned message may trigger a request. Limit the number per room for sanity.
+// NB. this is just for server notices rather than pinned messages in general.
+const MAX_PINNED_NOTICES_PER_ROOM = 2;
+
/**
* This is what our MatrixChat shows when we are logged in. The precise view is
* determined by the page_type property.
@@ -80,6 +86,8 @@ const LoggedInView = React.createClass({
return {
// use compact timeline view
useCompactLayout: SettingsStore.getValue('useCompactLayout'),
+ // any currently active server notice events
+ serverNoticeEvents: [],
};
},
@@ -97,12 +105,18 @@ const LoggedInView = React.createClass({
);
this._setStateFromSessionStore();
+ this._updateServerNoticeEvents();
+
this._matrixClient.on("accountData", this.onAccountData);
+ this._matrixClient.on("sync", this.onSync);
+ this._matrixClient.on("RoomState.events", this.onRoomStateEvents);
},
componentWillUnmount: function() {
document.removeEventListener('keydown', this._onKeyDown);
this._matrixClient.removeListener("accountData", this.onAccountData);
+ this._matrixClient.removeListener("sync", this.onSync);
+ this._matrixClient.removeListener("RoomState.events", this.onRoomStateEvents);
if (this._sessionStoreToken) {
this._sessionStoreToken.remove();
}
@@ -142,6 +156,56 @@ const LoggedInView = React.createClass({
}
},
+ onSync: function(syncState, oldSyncState, data) {
+ const oldErrCode = this.state.syncErrorData && this.state.syncErrorData.error && this.state.syncErrorData.error.errcode;
+ const newErrCode = data && data.error && data.error.errcode;
+ if (syncState === oldSyncState && oldErrCode === newErrCode) return;
+
+ if (syncState === 'ERROR') {
+ this.setState({
+ syncErrorData: data,
+ });
+ } else {
+ this.setState({
+ syncErrorData: null,
+ });
+ }
+
+ if (oldSyncState === 'PREPARED' && syncState === 'SYNCING') {
+ this._updateServerNoticeEvents();
+ }
+ },
+
+ onRoomStateEvents: function(ev, state) {
+ const roomLists = RoomListStore.getRoomLists();
+ if (roomLists['m.server_notice'] && roomLists['m.server_notice'].some(r => r.roomId === ev.getRoomId())) {
+ this._updateServerNoticeEvents();
+ }
+ },
+
+ _updateServerNoticeEvents: async function() {
+ const roomLists = RoomListStore.getRoomLists();
+ if (!roomLists['m.server_notice']) return [];
+
+ const pinnedEvents = [];
+ for (const room of roomLists['m.server_notice']) {
+ const pinStateEvent = room.currentState.getStateEvents("m.room.pinned_events", "");
+
+ if (!pinStateEvent || !pinStateEvent.getContent().pinned) continue;
+
+ const pinnedEventIds = pinStateEvent.getContent().pinned.slice(0, MAX_PINNED_NOTICES_PER_ROOM);
+ for (const eventId of pinnedEventIds) {
+ const timeline = await this._matrixClient.getEventTimeline(room.getUnfilteredTimelineSet(), eventId, 0);
+ const ev = timeline.getEvents().find(ev => ev.getId() === eventId);
+ if (ev) pinnedEvents.push(ev);
+ }
+ }
+ this.setState({
+ serverNoticeEvents: pinnedEvents,
+ });
+ },
+
+
_onKeyDown: function(ev) {
/*
// Remove this for now as ctrl+alt = alt-gr so this breaks keyboards which rely on alt-gr for numbers
@@ -255,6 +319,22 @@ const LoggedInView = React.createClass({
), true);
},
+ _onClick: function(ev) {
+ // When the panels are disabled, clicking on them results in a mouse event
+ // which bubbles to certain elements in the tree. When this happens, close
+ // any settings page that is currently open (user/room/group).
+ if (this.props.leftDisabled && this.props.rightDisabled) {
+ const targetClasses = new Set(ev.target.className.split(' '));
+ if (
+ targetClasses.has('mx_MatrixChat') ||
+ targetClasses.has('mx_MatrixChat_middlePanel') ||
+ targetClasses.has('mx_RoomView')
+ ) {
+ dis.dispatch({ action: 'close_settings' });
+ }
+ }
+ },
+
render: function() {
const LeftPanel = sdk.getComponent('structures.LeftPanel');
const RightPanel = sdk.getComponent('structures.RightPanel');
@@ -270,6 +350,7 @@ const LoggedInView = React.createClass({
const NewVersionBar = sdk.getComponent('globals.NewVersionBar');
const UpdateCheckBar = sdk.getComponent('globals.UpdateCheckBar');
const PasswordNagBar = sdk.getComponent('globals.PasswordNagBar');
+ const ServerLimitBar = sdk.getComponent('globals.ServerLimitBar');
let page_element;
let right_panel = '';
@@ -295,7 +376,7 @@ const LoggedInView = React.createClass({
case PageTypes.UserSettings:
page_element =
{
+ return (
+ e && e.getType() === 'm.room.message' &&
+ e.getContent()['server_notice_type'] === 'm.server_notice.usage_limit_reached'
+ );
+ });
+
let topBar;
const isGuest = this.props.matrixClient.isGuest();
- if (this.props.showCookieBar &&
+ if (this.state.syncErrorData && this.state.syncErrorData.error.errcode === 'M_RESOURCE_LIMIT_EXCEEDED') {
+ topBar = ;
+ } else if (usageLimitEvent) {
+ topBar = ;
+ } else if (this.props.showCookieBar &&
this.props.config.piwik
) {
const policyUrl = this.props.config.piwik.policyUrl || null;
@@ -380,7 +478,7 @@ const LoggedInView = React.createClass({
}
return (
-
+
{ topBar }
diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js
index 4337cdfdbb..31b2783b7d 100644
--- a/src/components/structures/MatrixChat.js
+++ b/src/components/structures/MatrixChat.js
@@ -23,6 +23,7 @@ import PropTypes from 'prop-types';
import Matrix from "matrix-js-sdk";
import Analytics from "../../Analytics";
+import { DecryptionFailureTracker } from "../../DecryptionFailureTracker";
import MatrixClientPeg from "../../MatrixClientPeg";
import PlatformPeg from "../../PlatformPeg";
import SdkConfig from "../../SdkConfig";
@@ -398,6 +399,9 @@ export default React.createClass({
},
startPageChangeTimer() {
+ // Tor doesn't support performance
+ if (!performance || !performance.mark) return null;
+
// This shouldn't happen because componentWillUpdate and componentDidUpdate
// are used.
if (this._pageChanging) {
@@ -409,6 +413,9 @@ export default React.createClass({
},
stopPageChangeTimer() {
+ // Tor doesn't support performance
+ if (!performance || !performance.mark) return null;
+
if (!this._pageChanging) {
console.warn('MatrixChat.stopPageChangeTimer: timer not started');
return;
@@ -560,6 +567,27 @@ export default React.createClass({
this._setPage(PageTypes.UserSettings);
this.notifyNewScreen('settings');
break;
+ case 'close_settings':
+ this.setState({
+ leftDisabled: false,
+ rightDisabled: false,
+ middleDisabled: false,
+ });
+ if (this.state.page_type === PageTypes.UserSettings) {
+ // We do this to get setPage and notifyNewScreen
+ if (this.state.currentRoomId) {
+ this._viewRoom({
+ room_id: this.state.currentRoomId,
+ });
+ } else if (this.state.currentGroupId) {
+ this._viewGroup({
+ group_id: this.state.currentGroupId,
+ });
+ } else {
+ this._viewHome();
+ }
+ }
+ break;
case 'view_create_room':
this._createRoom();
break;
@@ -577,19 +605,10 @@ export default React.createClass({
this.notifyNewScreen('groups');
break;
case 'view_group':
- {
- const groupId = payload.group_id;
- this.setState({
- currentGroupId: groupId,
- currentGroupIsNew: payload.group_is_new,
- });
- this._setPage(PageTypes.GroupView);
- this.notifyNewScreen('group/' + groupId);
- }
+ this._viewGroup(payload);
break;
case 'view_home_page':
- this._setPage(PageTypes.HomePage);
- this.notifyNewScreen('home');
+ this._viewHome();
break;
case 'view_set_mxid':
this._setMxId(payload);
@@ -632,7 +651,8 @@ export default React.createClass({
middleDisabled: payload.middleDisabled || false,
rightDisabled: payload.rightDisabled || payload.sideDisabled || false,
});
- break; }
+ break;
+ }
case 'set_theme':
this._onSetTheme(payload.value);
break;
@@ -781,7 +801,6 @@ export default React.createClass({
// @param {string=} roomInfo.room_id ID of the room to join. One of room_id or room_alias must be given.
// @param {string=} roomInfo.room_alias Alias of the room to join. One of room_id or room_alias must be given.
// @param {boolean=} roomInfo.auto_join If true, automatically attempt to join the room if not already a member.
- // @param {boolean=} roomInfo.show_settings Makes RoomView show the room settings dialog.
// @param {string=} roomInfo.event_id ID of the event in this room to show: this will cause a switch to the
// context of that particular event.
// @param {boolean=} roomInfo.highlighted If true, add event_id to the hash of the URL
@@ -848,6 +867,21 @@ export default React.createClass({
});
},
+ _viewGroup: function(payload) {
+ const groupId = payload.group_id;
+ this.setState({
+ currentGroupId: groupId,
+ currentGroupIsNew: payload.group_is_new,
+ });
+ this._setPage(PageTypes.GroupView);
+ this.notifyNewScreen('group/' + groupId);
+ },
+
+ _viewHome: function() {
+ this._setPage(PageTypes.HomePage);
+ this.notifyNewScreen('home');
+ },
+
_setMxId: function(payload) {
const SetMxIdDialog = sdk.getComponent('views.dialogs.SetMxIdDialog');
const close = Modal.createTrackedDialog('Set MXID', '', SetMxIdDialog, {
@@ -996,10 +1030,20 @@ export default React.createClass({
}, (err) => {
modal.close();
console.error("Failed to leave room " + roomId + " " + err);
+ let title = _t("Failed to leave room");
+ let message = _t("Server may be unavailable, overloaded, or you hit a bug.");
+ if (err.errcode == 'M_CANNOT_LEAVE_SERVER_NOTICE_ROOM') {
+ title = _t("Can't leave Server Notices room");
+ message = _t(
+ "This room is used for important messages from the Homeserver, " +
+ "so you cannot leave it.",
+ );
+ } else if (err && err.message) {
+ message = err.message;
+ }
Modal.createTrackedDialog('Failed to leave room', '', ErrorDialog, {
- title: _t("Failed to leave room"),
- description: (err && err.message ? err.message :
- _t("Server may be unavailable, overloaded, or you hit a bug.")),
+ title: title,
+ description: message,
});
});
}
@@ -1100,11 +1144,6 @@ export default React.createClass({
} else if (this._is_registered) {
this._is_registered = false;
- // Set the display name = user ID localpart
- MatrixClientPeg.get().setDisplayName(
- MatrixClientPeg.get().getUserIdLocalpart(),
- );
-
if (this.props.config.welcomeUserId && getCurrentLanguage().startsWith("en")) {
createRoom({
dmUserId: this.props.config.welcomeUserId,
@@ -1223,6 +1262,7 @@ export default React.createClass({
}, true);
});
cli.on('Session.logged_out', function(call) {
+ if (Lifecycle.isLoggingOut()) return;
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog('Signed out', '', ErrorDialog, {
title: _t('Signed Out'),
@@ -1265,6 +1305,32 @@ export default React.createClass({
}
});
+ const dft = new DecryptionFailureTracker((total, errorCode) => {
+ Analytics.trackEvent('E2E', 'Decryption failure', errorCode, total);
+ }, (errorCode) => {
+ // Map JS-SDK error codes to tracker codes for aggregation
+ switch (errorCode) {
+ case 'MEGOLM_UNKNOWN_INBOUND_SESSION_ID':
+ return 'olm_keys_not_sent_error';
+ case 'OLM_UNKNOWN_MESSAGE_INDEX':
+ return 'olm_index_error';
+ case undefined:
+ return 'unexpected_error';
+ default:
+ return 'unspecified_error';
+ }
+ });
+
+ // Shelved for later date when we have time to think about persisting history of
+ // tracked events across sessions.
+ // dft.loadTrackedEventHashMap();
+
+ dft.start();
+
+ // When logging out, stop tracking failures and destroy state
+ cli.on("Session.logged_out", () => dft.stop());
+ cli.on("Event.decrypted", (e, err) => dft.eventDecrypted(e, err));
+
const krh = new KeyRequestHandler(cli);
cli.on("crypto.roomKeyRequest", (req) => {
krh.handleKeyRequest(req);
@@ -1602,19 +1668,8 @@ export default React.createClass({
this._setPageSubtitle(subtitle);
},
- onUserSettingsClose: function() {
- // XXX: use browser history instead to find the previous room?
- // or maintain a this.state.pageHistory in _setPage()?
- if (this.state.currentRoomId) {
- dis.dispatch({
- action: 'view_room',
- room_id: this.state.currentRoomId,
- });
- } else {
- dis.dispatch({
- action: 'view_home_page',
- });
- }
+ onCloseAllSettings() {
+ dis.dispatch({ action: 'close_settings' });
},
onServerConfigChange(config) {
@@ -1673,7 +1728,7 @@ export default React.createClass({
return (
;
}
diff --git a/src/components/structures/MyGroups.js b/src/components/structures/MyGroups.js
index 7a93cfb886..edb50fcedb 100644
--- a/src/components/structures/MyGroups.js
+++ b/src/components/structures/MyGroups.js
@@ -70,7 +70,7 @@ export default withMatrixClient(React.createClass({
if (this.state.groups) {
const groupNodes = [];
this.state.groups.forEach((g) => {
- groupNodes.push( );
+ groupNodes.push( );
});
contentHeader = groupNodes.length > 0 ? { _t('Your Communities') } :
;
content = groupNodes.length > 0 ?
@@ -124,7 +124,7 @@ export default withMatrixClient(React.createClass({
) }
-
+ {/*
@@ -140,7 +140,7 @@ export default withMatrixClient(React.createClass({
{ 'i': (sub) =>
{ sub } })
}
-
+
*/}
{ contentHeader }
diff --git a/src/components/structures/RightPanel.js b/src/components/structures/RightPanel.js
index 18523ceb59..bd4ed722cb 100644
--- a/src/components/structures/RightPanel.js
+++ b/src/components/structures/RightPanel.js
@@ -280,7 +280,7 @@ module.exports = React.createClass({
const room = cli.getRoom(this.props.roomId);
let isUserInRoom;
if (room) {
- const numMembers = room.getJoinedMembers().length;
+ const numMembers = room.getJoinedMemberCount();
membersTitle = _t('%(count)s Members', { count: numMembers });
membersBadge =
{ formatCount(numMembers) }
;
isUserInRoom = room.hasMembershipState(this.context.matrixClient.credentials.userId, 'join');
diff --git a/src/components/structures/RoomStatusBar.js b/src/components/structures/RoomStatusBar.js
index 8034923158..fec59aadd5 100644
--- a/src/components/structures/RoomStatusBar.js
+++ b/src/components/structures/RoomStatusBar.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -18,13 +18,15 @@ limitations under the License.
import React from 'react';
import PropTypes from 'prop-types';
import Matrix from 'matrix-js-sdk';
-import { _t } from '../../languageHandler';
+import { _t, _td } from '../../languageHandler';
import sdk from '../../index';
import WhoIsTyping from '../../WhoIsTyping';
import MatrixClientPeg from '../../MatrixClientPeg';
import MemberAvatar from '../views/avatars/MemberAvatar';
import Resend from '../../Resend';
import * as cryptodevices from '../../cryptodevices';
+import dis from '../../dispatcher';
+import { messageForResourceLimitError } from '../../utils/ErrorUtils';
const STATUS_BAR_HIDDEN = 0;
const STATUS_BAR_EXPANDED = 1;
@@ -106,6 +108,7 @@ module.exports = React.createClass({
getInitialState: function() {
return {
syncState: MatrixClientPeg.get().getSyncState(),
+ syncStateData: MatrixClientPeg.get().getSyncStateData(),
usersTyping: WhoIsTyping.usersTypingApartFromMe(this.props.room),
unsentMessages: getUnsentMessages(this.props.room),
};
@@ -133,12 +136,13 @@ module.exports = React.createClass({
}
},
- onSyncStateChange: function(state, prevState) {
+ onSyncStateChange: function(state, prevState, data) {
if (state === "SYNCING" && prevState === "SYNCING") {
return;
}
this.setState({
syncState: state,
+ syncStateData: data,
});
},
@@ -157,10 +161,12 @@ module.exports = React.createClass({
_onResendAllClick: function() {
Resend.resendUnsentEvents(this.props.room);
+ dis.dispatch({action: 'focus_composer'});
},
_onCancelAllClick: function() {
Resend.cancelUnsentEvents(this.props.room);
+ dis.dispatch({action: 'focus_composer'});
},
_onShowDevicesClick: function() {
@@ -188,7 +194,7 @@ module.exports = React.createClass({
// changed - so we use '0' to indicate normal size, and other values to
// indicate other sizes.
_getSize: function() {
- if (this.state.syncState === "ERROR" ||
+ if (this._shouldShowConnectionError() ||
(this.state.usersTyping.length > 0) ||
this.props.numUnreadMessages ||
!this.props.atEndOfLiveTimeline ||
@@ -235,7 +241,7 @@ module.exports = React.createClass({
);
}
- if (this.state.syncState === "ERROR") {
+ if (this._shouldShowConnectionError()) {
return null;
}
@@ -282,6 +288,21 @@ module.exports = React.createClass({
return avatars;
},
+ _shouldShowConnectionError: function() {
+ // no conn bar trumps unread count since you can't get unread messages
+ // without a connection! (technically may already have some but meh)
+ // It also trumps the "some not sent" msg since you can't resend without
+ // a connection!
+ // There's one situation in which we don't show this 'no connection' bar, and that's
+ // if it's a resource limit exceeded error: those are shown in the top bar.
+ const errorIsMauError = Boolean(
+ this.state.syncStateData &&
+ this.state.syncStateData.error &&
+ this.state.syncStateData.error.errcode === 'M_RESOURCE_LIMIT_EXCEEDED'
+ );
+ return this.state.syncState === "ERROR" && !errorIsMauError;
+ },
+
_getUnsentMessageContent: function() {
const unsentMessages = this.state.unsentMessages;
if (!unsentMessages.length) return null;
@@ -305,7 +326,43 @@ module.exports = React.createClass({
},
);
} else {
- if (
+ let consentError = null;
+ let resourceLimitError = null;
+ for (const m of unsentMessages) {
+ if (m.error && m.error.errcode === 'M_CONSENT_NOT_GIVEN') {
+ consentError = m.error;
+ break;
+ } else if (m.error && m.error.errcode === 'M_RESOURCE_LIMIT_EXCEEDED') {
+ resourceLimitError = m.error;
+ break;
+ }
+ }
+ if (consentError) {
+ title = _t(
+ "You can't send any messages until you review and agree to " +
+ "
our terms and conditions .",
+ {},
+ {
+ 'consentLink': (sub) =>
+
+ { sub }
+ ,
+ },
+ );
+ } else if (resourceLimitError) {
+ title = messageForResourceLimitError(
+ resourceLimitError.data.limit_type,
+ resourceLimitError.data.admin_contact, {
+ 'monthly_active_user': _td(
+ "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. " +
+ "Please
contact your service administrator to continue using the service.",
+ ),
+ '': _td(
+ "Your message wasn't sent because this homeserver has exceeded a resource limit. " +
+ "Please
contact your service administrator to continue using the service.",
+ ),
+ });
+ } else if (
unsentMessages.length === 1 &&
unsentMessages[0].error &&
unsentMessages[0].error.data &&
@@ -329,11 +386,13 @@ module.exports = React.createClass({
return
-
- { title }
-
-
- { content }
+
+
+ { title }
+
+
+ { content }
+
;
},
@@ -342,19 +401,17 @@ module.exports = React.createClass({
_getContent: function() {
const EmojiText = sdk.getComponent('elements.EmojiText');
- // no conn bar trumps unread count since you can't get unread messages
- // without a connection! (technically may already have some but meh)
- // It also trumps the "some not sent" msg since you can't resend without
- // a connection!
- if (this.state.syncState === "ERROR") {
+ if (this._shouldShowConnectionError()) {
return (
-
- { _t('Connectivity to the server has been lost.') }
-
-
- { _t('Sent messages will be stored until your connection has returned.') }
+
+
+ { _t('Connectivity to the server has been lost.') }
+
+
+ { _t('Sent messages will be stored until your connection has returned.') }
+
);
diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js
index fb82ee067b..d798070659 100644
--- a/src/components/structures/RoomSubList.js
+++ b/src/components/structures/RoomSubList.js
@@ -1,6 +1,7 @@
/*
-Copyright 2017 Vector Creations Ltd
Copyright 2015, 2016 OpenMarket Ltd
+Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -15,56 +16,53 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-
-var React = require('react');
-var ReactDOM = require('react-dom');
-var classNames = require('classnames');
-var sdk = require('../../index');
+import React from 'react';
+import classNames from 'classnames';
+import sdk from '../../index';
import { Droppable } from 'react-beautiful-dnd';
import { _t } from '../../languageHandler';
-var dis = require('../../dispatcher');
-var Unread = require('../../Unread');
-var MatrixClientPeg = require('../../MatrixClientPeg');
-var RoomNotifs = require('../../RoomNotifs');
-var FormattingUtils = require('../../utils/FormattingUtils');
-var AccessibleButton = require('../../components/views/elements/AccessibleButton');
-import Modal from '../../Modal';
+import dis from '../../dispatcher';
+import Unread from '../../Unread';
+import * as RoomNotifs from '../../RoomNotifs';
+import * as FormattingUtils from '../../utils/FormattingUtils';
import { KeyCode } from '../../Keyboard';
+import { Group } from 'matrix-js-sdk';
+import PropTypes from 'prop-types';
// turn this on for drop & drag console debugging galore
-var debug = false;
+const debug = false;
const TRUNCATE_AT = 10;
-var RoomSubList = React.createClass({
+const RoomSubList = React.createClass({
displayName: 'RoomSubList',
debug: debug,
propTypes: {
- list: React.PropTypes.arrayOf(React.PropTypes.object).isRequired,
- label: React.PropTypes.string.isRequired,
- tagName: React.PropTypes.string,
- editable: React.PropTypes.bool,
+ list: PropTypes.arrayOf(PropTypes.object).isRequired,
+ label: PropTypes.string.isRequired,
+ tagName: PropTypes.string,
+ editable: PropTypes.bool,
- order: React.PropTypes.string.isRequired,
+ order: PropTypes.string.isRequired,
// passed through to RoomTile and used to highlight room with `!` regardless of notifications count
- isInvite: React.PropTypes.bool,
+ isInvite: PropTypes.bool,
- startAsHidden: React.PropTypes.bool,
- showSpinner: React.PropTypes.bool, // true to show a spinner if 0 elements when expanded
- collapsed: React.PropTypes.bool.isRequired, // is LeftPanel collapsed?
- onHeaderClick: React.PropTypes.func,
- alwaysShowHeader: React.PropTypes.bool,
- incomingCall: React.PropTypes.object,
- onShowMoreRooms: React.PropTypes.func,
- searchFilter: React.PropTypes.string,
- emptyContent: React.PropTypes.node, // content shown if the list is empty
- headerItems: React.PropTypes.node, // content shown in the sublist header
- extraTiles: React.PropTypes.arrayOf(React.PropTypes.node), // extra elements added beneath tiles
+ startAsHidden: PropTypes.bool,
+ showSpinner: PropTypes.bool, // true to show a spinner if 0 elements when expanded
+ collapsed: PropTypes.bool.isRequired, // is LeftPanel collapsed?
+ onHeaderClick: PropTypes.func,
+ alwaysShowHeader: PropTypes.bool,
+ incomingCall: PropTypes.object,
+ onShowMoreRooms: PropTypes.func,
+ searchFilter: PropTypes.string,
+ emptyContent: PropTypes.node, // content shown if the list is empty
+ headerItems: PropTypes.node, // content shown in the sublist header
+ extraTiles: PropTypes.arrayOf(PropTypes.node), // extra elements added beneath tiles
+ showEmpty: PropTypes.bool,
},
getInitialState: function() {
@@ -77,10 +75,13 @@ var RoomSubList = React.createClass({
getDefaultProps: function() {
return {
- onHeaderClick: function() {}, // NOP
- onShowMoreRooms: function() {}, // NOP
+ onHeaderClick: function() {
+ }, // NOP
+ onShowMoreRooms: function() {
+ }, // NOP
extraTiles: [],
isInvite: false,
+ showEmpty: true,
};
},
@@ -105,15 +106,17 @@ var RoomSubList = React.createClass({
applySearchFilter: function(list, filter) {
if (filter === "") return list;
- return list.filter((room) => {
- return room.name && room.name.toLowerCase().indexOf(filter.toLowerCase()) >= 0
- });
+ const lcFilter = filter.toLowerCase();
+ // case insensitive if room name includes filter,
+ // or if starts with `#` and one of room's aliases starts with filter
+ return list.filter((room) => (room.name && room.name.toLowerCase().includes(lcFilter)) ||
+ (filter[0] === '#' && room.getAliases().some((alias) => alias.toLowerCase().startsWith(lcFilter))));
},
// The header is collapsable if it is hidden or not stuck
// The dataset elements are added in the RoomList _initAndPositionStickyHeaders method
isCollapsableOnClick: function() {
- var stuck = this.refs.header.dataset.stuck;
+ const stuck = this.refs.header.dataset.stuck;
if (this.state.hidden || stuck === undefined || stuck === "none") {
return true;
} else {
@@ -139,12 +142,12 @@ var RoomSubList = React.createClass({
onClick: function(ev) {
if (this.isCollapsableOnClick()) {
// The header isCollapsable, so the click is to be interpreted as collapse and truncation logic
- var isHidden = !this.state.hidden;
- this.setState({ hidden : isHidden });
+ const isHidden = !this.state.hidden;
+ this.setState({hidden: isHidden});
if (isHidden) {
// as good a way as any to reset the truncate state
- this.setState({ truncateAt : TRUNCATE_AT });
+ this.setState({truncateAt: TRUNCATE_AT});
}
this.props.onShowMoreRooms();
@@ -159,7 +162,7 @@ var RoomSubList = React.createClass({
dis.dispatch({
action: 'view_room',
room_id: roomId,
- clear_search: (ev && (ev.keyCode == KeyCode.ENTER || ev.keyCode == KeyCode.SPACE)),
+ clear_search: (ev && (ev.keyCode === KeyCode.ENTER || ev.keyCode === KeyCode.SPACE)),
});
},
@@ -169,17 +172,17 @@ var RoomSubList = React.createClass({
},
_shouldShowMentionBadge: function(roomNotifState) {
- return roomNotifState != RoomNotifs.MUTE;
+ return roomNotifState !== RoomNotifs.MUTE;
},
/**
* Total up all the notification counts from the rooms
*
- * @param {Number} If supplied will only total notifications for rooms outside the truncation number
+ * @param {Number} truncateAt If supplied will only total notifications for rooms outside the truncation number
* @returns {Array} The array takes the form [total, highlight] where highlight is a bool
*/
roomNotificationCount: function(truncateAt) {
- var self = this;
+ const self = this;
if (this.props.isInvite) {
return [0, true];
@@ -187,9 +190,9 @@ var RoomSubList = React.createClass({
return this.props.list.reduce(function(result, room, index) {
if (truncateAt === undefined || index >= truncateAt) {
- var roomNotifState = RoomNotifs.getRoomNotifsState(room.roomId);
- var highlight = room.getUnreadNotificationCount('highlight') > 0;
- var notificationCount = room.getUnreadNotificationCount();
+ const roomNotifState = RoomNotifs.getRoomNotifsState(room.roomId);
+ const highlight = room.getUnreadNotificationCount('highlight') > 0;
+ const notificationCount = room.getUnreadNotificationCount();
const notifBadges = notificationCount > 0 && self._shouldShowNotifBadge(roomNotifState);
const mentionBadges = highlight && self._shouldShowMentionBadge(roomNotifState);
@@ -238,38 +241,83 @@ var RoomSubList = React.createClass({
});
},
+ _onNotifBadgeClick: function(e) {
+ // prevent the roomsublist collapsing
+ e.preventDefault();
+ e.stopPropagation();
+ // find first room which has notifications and switch to it
+ for (const room of this.state.sortedList) {
+ const roomNotifState = RoomNotifs.getRoomNotifsState(room.roomId);
+ const highlight = room.getUnreadNotificationCount('highlight') > 0;
+ const notificationCount = room.getUnreadNotificationCount();
+
+ const notifBadges = notificationCount > 0 && this._shouldShowNotifBadge(roomNotifState);
+ const mentionBadges = highlight && this._shouldShowMentionBadge(roomNotifState);
+
+ if (notifBadges || mentionBadges) {
+ dis.dispatch({
+ action: 'view_room',
+ room_id: room.roomId,
+ });
+ return;
+ }
+ }
+ },
+
+ _onInviteBadgeClick: function(e) {
+ // prevent the roomsublist collapsing
+ e.preventDefault();
+ e.stopPropagation();
+ // switch to first room in sortedList as that'll be the top of the list for the user
+ if (this.state.sortedList && this.state.sortedList.length > 0) {
+ dis.dispatch({
+ action: 'view_room',
+ room_id: this.state.sortedList[0].roomId,
+ });
+ } else if (this.props.extraTiles && this.props.extraTiles.length > 0) {
+ // Group Invites are different in that they are all extra tiles and not rooms
+ // XXX: this is a horrible special case because Group Invite sublist is a hack
+ if (this.props.extraTiles[0].props && this.props.extraTiles[0].props.group instanceof Group) {
+ dis.dispatch({
+ action: 'view_group',
+ group_id: this.props.extraTiles[0].props.group.groupId,
+ });
+ }
+ }
+ },
+
_getHeaderJsx: function() {
- var TintableSvg = sdk.getComponent("elements.TintableSvg");
+ const subListNotifications = this.roomNotificationCount();
+ const subListNotifCount = subListNotifications[0];
+ const subListNotifHighlight = subListNotifications[1];
- var subListNotifications = this.roomNotificationCount();
- var subListNotifCount = subListNotifications[0];
- var subListNotifHighlight = subListNotifications[1];
+ const totalTiles = this.props.list.length + (this.props.extraTiles || []).length;
+ const roomCount = totalTiles > 0 ? totalTiles : '';
- var totalTiles = this.props.list.length + (this.props.extraTiles || []).length;
- var roomCount = totalTiles > 0 ? totalTiles : '';
-
- var chevronClasses = classNames({
+ const chevronClasses = classNames({
'mx_RoomSubList_chevron': true,
'mx_RoomSubList_chevronRight': this.state.hidden,
'mx_RoomSubList_chevronDown': !this.state.hidden,
});
- var badgeClasses = classNames({
+ const badgeClasses = classNames({
'mx_RoomSubList_badge': true,
'mx_RoomSubList_badgeHighlight': subListNotifHighlight,
});
- var badge;
+ let badge;
if (subListNotifCount > 0) {
- badge =
{ FormattingUtils.formatCount(subListNotifCount) }
;
+ badge =
+ { FormattingUtils.formatCount(subListNotifCount) }
+
;
} else if (this.props.isInvite) {
// no notifications but highlight anyway because this is an invite badge
- badge =
!
;
+ badge =
!
;
}
// When collapsed, allow a long hover on the header to show user
// the full tag name and room count
- var title;
+ let title;
if (this.props.collapsed) {
title = this.props.label;
if (roomCount !== '') {
@@ -277,63 +325,66 @@ var RoomSubList = React.createClass({
}
}
- var incomingCall;
+ let incomingCall;
if (this.props.incomingCall) {
- var self = this;
+ const self = this;
// Check if the incoming call is for this section
- var incomingCallRoom = this.props.list.filter(function(room) {
+ const incomingCallRoom = this.props.list.filter(function(room) {
return self.props.incomingCall.roomId === room.roomId;
});
if (incomingCallRoom.length === 1) {
- var IncomingCallBox = sdk.getComponent("voip.IncomingCallBox");
- incomingCall =
;
+ const IncomingCallBox = sdk.getComponent("voip.IncomingCallBox");
+ incomingCall =
+
;
}
}
- var tabindex = this.props.searchFilter === "" ? "0" : "-1";
+ const tabindex = this.props.searchFilter === "" ? "0" : "-1";
+ const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
return (
-
-
- { this.props.collapsed ? '' : this.props.label }
- { roomCount }
-
- { badge }
- { incomingCall }
+
+
+ {this.props.collapsed ? '' : this.props.label}
+ {roomCount}
+
+ {badge}
+ {incomingCall}
);
},
_createOverflowTile: function(overflowCount, totalCount) {
- var content =
;
+ let content =
;
- var overflowNotifications = this.roomNotificationCount(TRUNCATE_AT);
- var overflowNotifCount = overflowNotifications[0];
- var overflowNotifHighlight = overflowNotifications[1];
+ const overflowNotifications = this.roomNotificationCount(TRUNCATE_AT);
+ const overflowNotifCount = overflowNotifications[0];
+ const overflowNotifHighlight = overflowNotifications[1];
if (overflowNotifCount && !this.props.collapsed) {
content = FormattingUtils.formatCount(overflowNotifCount);
}
- var badgeClasses = classNames({
+ const badgeClasses = classNames({
'mx_RoomSubList_moreBadge': true,
'mx_RoomSubList_moreBadgeNotify': overflowNotifCount && !this.props.collapsed,
'mx_RoomSubList_moreBadgeHighlight': overflowNotifHighlight && !this.props.collapsed,
});
+ const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
return (
-
- { _t("more") }
- { content }
+
+ {_t("more")}
+ {content}
);
},
_showFullMemberList: function() {
this.setState({
- truncateAt: -1
+ truncateAt: -1,
});
this.props.onShowMoreRooms();
@@ -341,37 +392,51 @@ var RoomSubList = React.createClass({
},
render: function() {
- var connectDropTarget = this.props.connectDropTarget;
- var TruncatedList = sdk.getComponent('elements.TruncatedList');
-
- var label = this.props.collapsed ? null : this.props.label;
+ const TruncatedList = sdk.getComponent('elements.TruncatedList');
let content;
- if (this.state.sortedList.length === 0 && !this.props.searchFilter && this.props.extraTiles.length === 0) {
- content = this.props.emptyContent;
+
+ if (this.props.showEmpty) {
+ // this is new behaviour with still controversial UX in that in hiding RoomSubLists the drop zones for DnD
+ // are also gone so when filtering users can't DnD rooms to some tags but is a lot cleaner otherwise.
+ if (this.state.sortedList.length === 0 && !this.props.searchFilter && this.props.extraTiles.length === 0) {
+ content = this.props.emptyContent;
+ } else {
+ content = this.makeRoomTiles();
+ content.push(...this.props.extraTiles);
+ }
} else {
- content = this.makeRoomTiles();
- content.push(...this.props.extraTiles);
+ if (this.state.sortedList.length === 0 && this.props.extraTiles.length === 0) {
+ // if no search filter is applied and there is a placeholder defined then show it, otherwise show nothing
+ if (!this.props.searchFilter && this.props.emptyContent) {
+ content = this.props.emptyContent;
+ } else {
+ // don't show an empty sublist
+ return null;
+ }
+ } else {
+ content = this.makeRoomTiles();
+ content.push(...this.props.extraTiles);
+ }
}
if (this.state.sortedList.length > 0 || this.props.extraTiles.length > 0 || this.props.editable) {
- var subList;
- var classes = "mx_RoomSubList";
+ let subList;
+ const classes = "mx_RoomSubList";
if (!this.state.hidden) {
- subList =
- { content }
- ;
- }
- else {
- subList =
- ;
+ subList =
+ {content}
+ ;
+ } else {
+ subList =
+ ;
}
const subListContent =
- { this._getHeaderJsx() }
- { subList }
+ {this._getHeaderJsx()}
+ {subList}
;
return this.props.editable ?
@@ -379,23 +444,26 @@ var RoomSubList = React.createClass({
droppableId={"room-sub-list-droppable_" + this.props.tagName}
type="draggable-RoomTile"
>
- { (provided, snapshot) => (
+ {(provided, snapshot) => (
- { subListContent }
+ {subListContent}
- ) }
+ )}
: subListContent;
- }
- else {
- var Loader = sdk.getComponent("elements.Spinner");
+ } else {
+ const Loader = sdk.getComponent("elements.Spinner");
+ if (this.props.showSpinner) {
+ content = ;
+ }
+
return (
- { this.props.alwaysShowHeader ? this._getHeaderJsx() : undefined }
- { (this.props.showSpinner && !this.state.hidden) ? : undefined }
+ {this.props.alwaysShowHeader ? this._getHeaderJsx() : undefined}
+ { this.state.hidden ? undefined : content }
);
}
- }
+ },
});
module.exports = RoomSubList;
diff --git a/src/components/structures/RoomView.js b/src/components/structures/RoomView.js
index c5f6a75cc5..04ec27d751 100644
--- a/src/components/structures/RoomView.js
+++ b/src/components/structures/RoomView.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -44,7 +45,9 @@ import { KeyCode, isOnlyCtrlOrCmdKeyEvent } from '../../Keyboard';
import RoomViewStore from '../../stores/RoomViewStore';
import RoomScrollStateStore from '../../stores/RoomScrollStateStore';
-import SettingsStore from "../../settings/SettingsStore";
+import WidgetEchoStore from '../../stores/WidgetEchoStore';
+import SettingsStore, {SettingLevel} from "../../settings/SettingsStore";
+import WidgetUtils from '../../utils/WidgetUtils';
const DEBUG = false;
let debuglog = function() {};
@@ -115,6 +118,7 @@ module.exports = React.createClass({
showApps: false,
isAlone: false,
isPeeking: false,
+ showingPinned: false,
// error object, as from the matrix client/server API
// If we failed to load information about the room,
@@ -150,6 +154,8 @@ module.exports = React.createClass({
// Start listening for RoomViewStore updates
this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate);
this._onRoomViewStoreUpdate(true);
+
+ WidgetEchoStore.on('update', this._onWidgetEchoStoreUpdate);
},
_onRoomViewStoreUpdate: function(initial) {
@@ -182,6 +188,8 @@ module.exports = React.createClass({
isInitialEventHighlighted: RoomViewStore.isInitialEventHighlighted(),
forwardingEvent: RoomViewStore.getForwardingEvent(),
shouldPeek: RoomViewStore.shouldPeek(),
+ showingPinned: SettingsStore.getValue("PinnedEvents.isOpen", RoomViewStore.getRoomId()),
+ editingRoomSettings: RoomViewStore.isEditingSettings(),
};
// Temporary logging to diagnose https://github.com/vector-im/riot-web/issues/4307
@@ -238,6 +246,12 @@ module.exports = React.createClass({
}
},
+ _onWidgetEchoStoreUpdate: function() {
+ this.setState({
+ showApps: this._shouldShowApps(this.state.room),
+ });
+ },
+
_setupRoom: function(room, roomId, joining, shouldPeek) {
// if this is an unknown room then we're in one of three states:
// - This is a room we can peek into (search engine) (we can /peek)
@@ -294,11 +308,23 @@ module.exports = React.createClass({
throw err;
}
});
+ } else if (room) {
+ //viewing a previously joined room, try to lazy load members
+
+ // Stop peeking because we have joined this room previously
+ MatrixClientPeg.get().stopPeeking();
+ this.setState({isPeeking: false});
+
+ // lazy load members if enabled
+ if (SettingsStore.isFeatureEnabled('feature_lazyloading')) {
+ room.loadMembersIfNeeded().catch((err) => {
+ const errorMessage = `Fetching room members for ${this.roomId} failed.` +
+ " Room members will appear incomplete.";
+ console.error(errorMessage);
+ console.error(err);
+ });
+ }
}
- } else if (room) {
- // Stop peeking because we have joined this room previously
- MatrixClientPeg.get().stopPeeking();
- this.setState({isPeeking: false});
}
},
@@ -314,14 +340,9 @@ module.exports = React.createClass({
return false;
}
- const appsStateEvents = room.currentState.getStateEvents('im.vector.modular.widgets');
- // any valid widget = show apps
- for (let i = 0; i < appsStateEvents.length; i++) {
- if (appsStateEvents[i].getContent().type && appsStateEvents[i].getContent().url) {
- return true;
- }
- }
- return false;
+ const widgets = WidgetEchoStore.getEchoedRoomWidgets(room.roomId, WidgetUtils.getRoomWidgets(room));
+
+ return widgets.length > 0 || WidgetEchoStore.roomHasPendingWidgets(room.roomId, WidgetUtils.getRoomWidgets(room));
},
componentDidMount: function() {
@@ -342,7 +363,7 @@ module.exports = React.createClass({
// XXX: EVIL HACK to autofocus inviting on empty rooms.
// We use the setTimeout to avoid racing with focus_composer.
if (this.state.room &&
- this.state.room.getJoinedMembers().length == 1 &&
+ this.state.room.getJoinedMemberCount() == 1 &&
this.state.room.getLiveTimeline() &&
this.state.room.getLiveTimeline().getEvents() &&
this.state.room.getLiveTimeline().getEvents().length <= 6) {
@@ -416,6 +437,8 @@ module.exports = React.createClass({
this._roomStoreToken.remove();
}
+ WidgetEchoStore.removeListener('update', this._onWidgetEchoStoreUpdate);
+
// cancel any pending calls to the rate_limited_funcs
this._updateRoomMembers.cancelPendingCall();
@@ -615,9 +638,11 @@ module.exports = React.createClass({
}
},
- _updatePreviewUrlVisibility: function(room) {
+ _updatePreviewUrlVisibility: function({roomId}) {
+ // URL Previews in E2EE rooms can be a privacy leak so use a different setting which is per-room explicit
+ const key = MatrixClientPeg.get().isRoomEncrypted(roomId) ? 'urlPreviewsEnabled_e2ee' : 'urlPreviewsEnabled';
this.setState({
- showUrlPreview: SettingsStore.getValue("urlPreviewsEnabled", room.roomId),
+ showUrlPreview: SettingsStore.getValue(key, roomId),
});
},
@@ -642,19 +667,23 @@ module.exports = React.createClass({
},
onAccountData: function(event) {
- if (event.getType() === "org.matrix.preview_urls" && this.state.room) {
+ const type = event.getType();
+ if ((type === "org.matrix.preview_urls" || type === "im.vector.web.settings") && this.state.room) {
+ // non-e2ee url previews are stored in legacy event type `org.matrix.room.preview_urls`
this._updatePreviewUrlVisibility(this.state.room);
}
},
onRoomAccountData: function(event, room) {
if (room.roomId == this.state.roomId) {
- if (event.getType() === "org.matrix.room.color_scheme") {
+ const type = event.getType();
+ if (type === "org.matrix.room.color_scheme") {
const color_scheme = event.getContent();
// XXX: we should validate the event
console.log("Tinter.tint from onRoomAccountData");
Tinter.tint(color_scheme.primary_color, color_scheme.secondary_color);
- } else if (event.getType() === "org.matrix.room.preview_urls") {
+ } else if (type === "org.matrix.room.preview_urls" || type === "im.vector.web.settings") {
+ // non-e2ee url previews are stored in legacy event type `org.matrix.room.preview_urls`
this._updatePreviewUrlVisibility(room);
}
}
@@ -687,6 +716,7 @@ module.exports = React.createClass({
// refresh the conf call notification state
this._updateConfCallNotification();
this._updateDMState();
+ this._checkIfAlone(this.state.room);
}, 500),
_checkIfAlone: function(room) {
@@ -699,8 +729,8 @@ module.exports = React.createClass({
return;
}
- const joinedMembers = room.currentState.getMembers().filter((m) => m.membership === "join" || m.membership === "invite");
- this.setState({isAlone: joinedMembers.length === 1});
+ const joinedOrInvitedMemberCount = room.getJoinedMemberCount() + room.getInvitedMemberCount();
+ this.setState({isAlone: joinedOrInvitedMemberCount === 1});
},
_updateConfCallNotification: function() {
@@ -728,40 +758,13 @@ module.exports = React.createClass({
},
_updateDMState() {
- const me = this.state.room.getMember(MatrixClientPeg.get().credentials.userId);
- if (!me || me.membership !== "join") {
+ const room = this.state.room;
+ if (room.getMyMembership() != "join") {
return;
}
-
- // The user may have accepted an invite with is_direct set
- if (me.events.member.getPrevContent().membership === "invite" &&
- me.events.member.getPrevContent().is_direct
- ) {
- // This is a DM with the sender of the invite event (which we assume
- // preceded the join event)
- Rooms.setDMRoom(
- this.state.room.roomId,
- me.events.member.getUnsigned().prev_sender,
- );
- return;
- }
-
- const invitedMembers = this.state.room.getMembersWithMembership("invite");
- const joinedMembers = this.state.room.getMembersWithMembership("join");
-
- // There must be one invited member and one joined member
- if (invitedMembers.length !== 1 || joinedMembers.length !== 1) {
- return;
- }
-
- // The user may have sent an invite with is_direct sent
- const other = invitedMembers[0];
- if (other &&
- other.membership === "invite" &&
- other.events.member.getContent().is_direct
- ) {
- Rooms.setDMRoom(this.state.room.roomId, other.userId);
- return;
+ const dmInviter = room.getDMInviter();
+ if (dmInviter) {
+ Rooms.setDMRoom(room.roomId, dmInviter);
}
},
@@ -909,6 +912,8 @@ module.exports = React.createClass({
},
uploadFile: async function(file) {
+ dis.dispatch({action: 'focus_composer'});
+
if (MatrixClientPeg.get().isGuest()) {
dis.dispatch({action: 'view_set_mxid'});
return;
@@ -1135,11 +1140,14 @@ module.exports = React.createClass({
},
onPinnedClick: function() {
- this.setState({showingPinned: !this.state.showingPinned, searching: false});
+ const nowShowingPinned = !this.state.showingPinned;
+ const roomId = this.state.room.roomId;
+ this.setState({showingPinned: nowShowingPinned, searching: false});
+ SettingsStore.setValue("PinnedEvents.isOpen", roomId, SettingLevel.ROOM_DEVICE, nowShowingPinned);
},
onSettingsClick: function() {
- this.showSettings(true);
+ dis.dispatch({ action: 'open_room_settings' });
},
onSettingsSaveClick: function() {
@@ -1172,24 +1180,20 @@ module.exports = React.createClass({
});
// still editing room settings
} else {
- this.setState({
- editingRoomSettings: false,
- });
+ dis.dispatch({ action: 'close_settings' });
}
}).finally(() => {
this.setState({
uploadingRoomSettings: false,
- editingRoomSettings: false,
});
+ dis.dispatch({ action: 'close_settings' });
}).done();
},
onCancelClick: function() {
console.log("updateTint from onCancelClick");
this.updateTint();
- this.setState({
- editingRoomSettings: false,
- });
+ dis.dispatch({ action: 'close_settings' });
if (this.state.forwardingEvent) {
dis.dispatch({
action: 'forward_event',
@@ -1406,13 +1410,6 @@ module.exports = React.createClass({
});*/
},
- showSettings: function(show) {
- // XXX: this is a bit naughty; we should be doing this via props
- if (show) {
- this.setState({editingRoomSettings: true});
- }
- },
-
/**
* called by the parent component when PageUp/Down/etc is pressed.
*
@@ -1510,9 +1507,8 @@ module.exports = React.createClass({
}
}
- const myUserId = MatrixClientPeg.get().credentials.userId;
- const myMember = this.state.room.getMember(myUserId);
- if (myMember && myMember.membership == 'invite') {
+ const myMembership = this.state.room.getMyMembership();
+ if (myMembership == 'invite') {
if (this.state.joining || this.state.rejecting) {
return (
@@ -1520,6 +1516,8 @@ module.exports = React.createClass({
);
} else {
+ const myUserId = MatrixClientPeg.get().credentials.userId;
+ const myMember = this.state.room.getMember(myUserId);
const inviteEvent = myMember.events.member;
var inviterName = inviteEvent.sender ? inviteEvent.sender.name : inviteEvent.getSender();
@@ -1603,7 +1601,7 @@ module.exports = React.createClass({
} else if (this.state.showingPinned) {
hideCancel = true; // has own cancel
aux = ;
- } else if (!myMember || myMember.membership !== "join") {
+ } else if (myMembership !== "join") {
// We do have a room object for this room, but we're not currently in it.
// We may have a 3rd party invite to it.
var inviterName = undefined;
@@ -1645,7 +1643,7 @@ module.exports = React.createClass({
let messageComposer, searchInfo;
const canSpeak = (
// joined and not showing search results
- myMember && (myMember.membership == 'join') && !this.state.searchResults
+ myMembership == 'join' && !this.state.searchResults
);
if (canSpeak) {
messageComposer =
@@ -1780,15 +1778,15 @@ module.exports = React.createClass({
oobData={this.props.oobData}
editing={this.state.editingRoomSettings}
saving={this.state.uploadingRoomSettings}
- inRoom={myMember && myMember.membership === 'join'}
+ inRoom={myMembership === 'join'}
collapsedRhs={this.props.collapsedRhs}
onSearchClick={this.onSearchClick}
onSettingsClick={this.onSettingsClick}
onPinnedClick={this.onPinnedClick}
onSaveClick={this.onSettingsSaveClick}
onCancelClick={(aux && !hideCancel) ? this.onCancelClick : null}
- onForgetClick={(myMember && myMember.membership === "leave") ? this.onForgetClick : null}
- onLeaveClick={(myMember && myMember.membership === "join") ? this.onLeaveClick : null}
+ onForgetClick={(myMembership === "leave") ? this.onForgetClick : null}
+ onLeaveClick={(myMembership === "join") ? this.onLeaveClick : null}
/>
{ auxPanel }
diff --git a/src/components/structures/TagPanel.js b/src/components/structures/TagPanel.js
index 0b6dc9fc75..652211595b 100644
--- a/src/components/structures/TagPanel.js
+++ b/src/components/structures/TagPanel.js
@@ -1,5 +1,5 @@
/*
-Copyright 2017 New Vector Ltd.
+Copyright 2017, 2018 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.
@@ -26,6 +26,7 @@ import dis from '../../dispatcher';
import { _t } from '../../languageHandler';
import { Droppable } from 'react-beautiful-dnd';
+import classNames from 'classnames';
const TagPanel = React.createClass({
displayName: 'TagPanel',
@@ -84,7 +85,10 @@ const TagPanel = React.createClass({
},
onMouseDown(e) {
- dis.dispatch({action: 'deselect_tags'});
+ // only dispatch if its not a no-op
+ if (this.state.selectedTags.length > 0) {
+ dis.dispatch({action: 'deselect_tags'});
+ }
},
onCreateGroupClick(ev) {
@@ -113,17 +117,26 @@ const TagPanel = React.createClass({
/>;
});
- const clearButton = this.state.selectedTags.length > 0 ?
-
:
-
;
+ const itemsSelected = this.state.selectedTags.length > 0;
- return
-
+ let clearButton;
+ if (itemsSelected) {
+ clearButton =
+
+ ;
+ }
+
+ const classes = classNames('mx_TagPanel', {
+ mx_TagPanel_items_selected: itemsSelected,
+ });
+
+ return
+
{ clearButton }
-
+
track.stop());
+ }
+
Promise.resolve().then(() => {
return CallMediaHandler.getDevices();
}).then((mediaDevices) => {
@@ -292,6 +299,7 @@ module.exports = React.createClass({
if (this._unmounted) return;
this.setState({
mediaDevices,
+ activeAudioOutput: SettingsStore.getValueAt(SettingLevel.DEVICE, 'webrtc_audiooutput'),
activeAudioInput: SettingsStore.getValueAt(SettingLevel.DEVICE, 'webrtc_audioinput'),
activeVideoInput: SettingsStore.getValueAt(SettingLevel.DEVICE, 'webrtc_videoinput'),
});
@@ -422,7 +430,6 @@ module.exports = React.createClass({
"push notifications on other devices until you log back in to them",
) + ".",
});
- dis.dispatch({action: 'password_changed'});
},
_onAddEmailEditFinished: function(value, shouldSubmit) {
@@ -837,8 +844,16 @@ module.exports = React.createClass({
SettingsStore.getLabsFeatures().forEach((featureId) => {
// TODO: this ought to be a separate component so that we don't need
// to rebind the onChange each time we render
- const onChange = (e) => {
- SettingsStore.setFeatureEnabled(featureId, e.target.checked);
+ const onChange = async (e) => {
+ const checked = e.target.checked;
+ if (featureId === "feature_lazyloading") {
+ const confirmed = await this._onLazyLoadChanging(checked);
+ if (!confirmed) {
+ e.preventDefault();
+ return;
+ }
+ }
+ await SettingsStore.setFeatureEnabled(featureId, checked);
this.forceUpdate();
};
@@ -848,7 +863,7 @@ module.exports = React.createClass({
type="checkbox"
id={featureId}
name={featureId}
- defaultChecked={SettingsStore.isFeatureEnabled(featureId)}
+ checked={SettingsStore.isFeatureEnabled(featureId)}
onChange={onChange}
/>
{ SettingsStore.getDisplayName(featureId) }
@@ -871,6 +886,30 @@ module.exports = React.createClass({
);
},
+ _onLazyLoadChanging: async function(enabling) {
+ // don't prevent turning LL off when not supported
+ if (enabling) {
+ const supported = await MatrixClientPeg.get().doesServerSupportLazyLoading();
+ if (!supported) {
+ await new Promise((resolve) => {
+ const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
+ Modal.createDialog(QuestionDialog, {
+ title: _t("Lazy loading members not supported"),
+ description:
+
+ { _t("Lazy loading is not supported by your " +
+ "current homeserver.") }
+
,
+ button: _t("OK"),
+ onFinished: resolve,
+ });
+ });
+ return false;
+ }
+ }
+ return true;
+ },
+
_renderDeactivateAccount: function() {
return
{ _t("Deactivate Account") }
@@ -970,6 +1009,11 @@ module.exports = React.createClass({
return devices.map((device) =>
{ device.label } );
},
+ _setAudioOutput: function(deviceId) {
+ this.setState({activeAudioOutput: deviceId});
+ CallMediaHandler.setAudioOutput(deviceId);
+ },
+
_setAudioInput: function(deviceId) {
this.setState({activeAudioInput: deviceId});
CallMediaHandler.setAudioInput(deviceId);
@@ -1010,6 +1054,7 @@ module.exports = React.createClass({
const Dropdown = sdk.getComponent('elements.Dropdown');
+ let speakerDropdown =
{ _t('No Audio Outputs detected') }
;
let microphoneDropdown =
{ _t('No Microphones detected') }
;
let webcamDropdown =
{ _t('No Webcams detected') }
;
@@ -1018,6 +1063,26 @@ module.exports = React.createClass({
label: _t('Default Device'),
};
+ const audioOutputs = this.state.mediaDevices.audiooutput.slice(0);
+ if (audioOutputs.length > 0) {
+ let defaultOutput = '';
+ if (!audioOutputs.some((input) => input.deviceId === 'default')) {
+ audioOutputs.unshift(defaultOption);
+ } else {
+ defaultOutput = 'default';
+ }
+
+ speakerDropdown =
+
{ _t('Audio Output') }
+
+ { this._mapWebRtcDevicesToSpans(audioOutputs) }
+
+ ;
+ }
+
const audioInputs = this.state.mediaDevices.audioinput.slice(0);
if (audioInputs.length > 0) {
let defaultInput = '';
@@ -1059,8 +1124,9 @@ module.exports = React.createClass({
}
return
- { microphoneDropdown }
- { webcamDropdown }
+ { speakerDropdown }
+ { microphoneDropdown }
+ { webcamDropdown }
;
},
@@ -1074,6 +1140,14 @@ module.exports = React.createClass({
;
},
+ onSelfShareClick: function() {
+ const cli = MatrixClientPeg.get();
+ const ShareDialog = sdk.getComponent("dialogs.ShareDialog");
+ Modal.createTrackedDialog('share self dialog', '', ShareDialog, {
+ target: cli.getUser(this._me),
+ });
+ },
+
_showSpoiler: function(event) {
const target = event.target;
target.innerHTML = target.getAttribute('data-spoiler');
@@ -1295,10 +1369,13 @@ module.exports = React.createClass({
- { _t("Logged in as:") } { this._me }
+ { _t("Logged in as:") + ' ' }
+
+ { this._me }
+
- { _t('Access Token:') }
+ { _t('Access Token:') + ' ' }
diff --git a/src/components/structures/login/ForgotPassword.js b/src/components/structures/login/ForgotPassword.js
index ca50b9db6e..7e0cd5da8e 100644
--- a/src/components/structures/login/ForgotPassword.js
+++ b/src/components/structures/login/ForgotPassword.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-
import React from 'react';
import PropTypes from 'prop-types';
import { _t } from '../../../languageHandler';
@@ -45,6 +43,8 @@ module.exports = React.createClass({
enteredHomeserverUrl: this.props.customHsUrl || this.props.defaultHsUrl,
enteredIdentityServerUrl: this.props.customIsUrl || this.props.defaultIsUrl,
progress: null,
+ password: null,
+ password2: null,
};
},
@@ -103,7 +103,7 @@ module.exports = React.createClass({
,
button: _t('Continue'),
extraButtons: [
-
{ _t('Export E2E room keys') }
,
@@ -169,7 +169,8 @@ module.exports = React.createClass({
} else if (this.state.progress === "sent_email") {
resetPasswordJsx = (
- { _t("An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.", { emailAddress: this.state.email }) }
+ { _t("An email has been sent to %(emailAddress)s. Once you've followed the link it contains, " +
+ "click below.", { emailAddress: this.state.email }) }
@@ -179,14 +180,15 @@ module.exports = React.createClass({
resetPasswordJsx = (
{ _t('Your password has been reset') }.
-
{ _t('You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device') }.
+
{ _t('You have been logged out of all devices and will no longer receive push notifications. ' +
+ 'To re-enable notifications, sign in again on each device') }.
);
} else {
let serverConfigSection;
- if (!SdkConfig.get().disable_custom_urls) {
+ if (!SdkConfig.get()['disable_custom_urls']) {
serverConfigSection = (
diff --git a/src/components/structures/login/LanguageSelector.js b/src/components/structures/login/LanguageSelector.js
new file mode 100644
index 0000000000..965d8334d9
--- /dev/null
+++ b/src/components/structures/login/LanguageSelector.js
@@ -0,0 +1,38 @@
+/*
+Copyright 2018 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 SdkConfig from "../../../SdkConfig";
+import {getCurrentLanguage} from "../../../languageHandler";
+import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
+import PlatformPeg from "../../../PlatformPeg";
+import sdk from '../../../index';
+import React from 'react';
+
+function onChange(newLang) {
+ if (getCurrentLanguage() !== newLang) {
+ SettingsStore.setValue("language", null, SettingLevel.DEVICE, newLang);
+ PlatformPeg.get().reload();
+ }
+}
+
+export default function LanguageSelector() {
+ if (SdkConfig.get()['disable_login_language_selector']) return
;
+
+ const LanguageDropdown = sdk.getComponent('views.elements.LanguageDropdown');
+ return
+
+
;
+}
diff --git a/src/components/structures/login/Login.js b/src/components/structures/login/Login.js
index 7f4aa0325a..45f523f141 100644
--- a/src/components/structures/login/Login.js
+++ b/src/components/structures/login/Login.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -19,16 +20,15 @@ limitations under the License.
import React from 'react';
import PropTypes from 'prop-types';
-import { _t } from '../../../languageHandler';
-import * as languageHandler from '../../../languageHandler';
+import { _t, _td } from '../../../languageHandler';
import sdk from '../../../index';
import Login from '../../../Login';
-import PlatformPeg from '../../../PlatformPeg';
import SdkConfig from '../../../SdkConfig';
-import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
+import SettingsStore from "../../../settings/SettingsStore";
+import { messageForResourceLimitError } from '../../../utils/ErrorUtils';
// For validating phone numbers without country codes
-const PHONE_NUMBER_REGEX = /^[0-9\(\)\-\s]*$/;
+const PHONE_NUMBER_REGEX = /^[0-9()\-\s]*$/;
/**
* A wire component which glues together login UI components and Login logic
@@ -94,6 +94,13 @@ module.exports = React.createClass({
this._unmounted = true;
},
+ onPasswordLoginError: function(errorText) {
+ this.setState({
+ errorText,
+ loginIncorrect: Boolean(errorText),
+ });
+ },
+
onPasswordLogin: function(username, phoneCountry, phoneNumber, password) {
this.setState({
busy: true,
@@ -113,10 +120,34 @@ module.exports = React.createClass({
// Some error strings only apply for logging in
const usingEmail = username.indexOf("@") > 0;
- if (error.httpStatus == 400 && usingEmail) {
+ if (error.httpStatus === 400 && usingEmail) {
errorText = _t('This Home Server does not support login using email address.');
+ } else if (error.errcode == 'M_RESOURCE_LIMIT_EXCEEDED') {
+ const errorTop = messageForResourceLimitError(
+ error.data.limit_type,
+ error.data.admin_contact, {
+ 'monthly_active_user': _td(
+ "This homeserver has hit its Monthly Active User limit.",
+ ),
+ '': _td(
+ "This homeserver has exceeded one of its resource limits.",
+ ),
+ });
+ const errorDetail = messageForResourceLimitError(
+ error.data.limit_type,
+ error.data.admin_contact, {
+ '': _td(
+ "Please
contact your service administrator to continue using this service.",
+ ),
+ });
+ errorText = (
+
+
{errorTop}
+
{errorDetail}
+
+ );
} else if (error.httpStatus === 401 || error.httpStatus === 403) {
- if (SdkConfig.get().disable_custom_urls) {
+ if (SdkConfig.get()['disable_custom_urls']) {
errorText = (
{ _t('Incorrect username and/or password.') }
@@ -143,7 +174,7 @@ module.exports = React.createClass({
// but the login API gives a 403 https://matrix.org/jira/browse/SYN-744
// mentions this (although the bug is for UI auth which is not this)
// We treat both as an incorrect password
- loginIncorrect: error.httpStatus === 401 || error.httpStatus == 403,
+ loginIncorrect: error.httpStatus === 401 || error.httpStatus === 403,
});
}).finally(() => {
if (this._unmounted) {
@@ -231,7 +262,7 @@ module.exports = React.createClass({
hsUrl = hsUrl || this.state.enteredHomeserverUrl;
isUrl = isUrl || this.state.enteredIdentityServerUrl;
- const fallbackHsUrl = hsUrl == this.props.defaultHsUrl ? this.props.fallbackHsUrl : null;
+ const fallbackHsUrl = hsUrl === this.props.defaultHsUrl ? this.props.fallbackHsUrl : null;
const loginLogic = new Login(hsUrl, isUrl, fallbackHsUrl, {
defaultDeviceDisplayName: this.props.defaultDeviceDisplayName,
@@ -310,19 +341,27 @@ module.exports = React.createClass({
!this.state.enteredHomeserverUrl.startsWith("http"))
) {
errorText =
- {
- _t("Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. " +
- "Either use HTTPS or enable unsafe scripts .",
- {},
- { 'a': (sub) => { return { sub } ; } },
+ { _t("Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. " +
+ "Either use HTTPS or enable unsafe scripts .", {},
+ {
+ 'a': (sub) => {
+ return
+ { sub }
+ ;
+ },
+ },
) }
;
} else {
errorText =
- {
- _t("Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.",
- {},
- { 'a': (sub) => { return { sub } ; } },
+ { _t("Can't connect to homeserver - please check your connectivity, ensure your " +
+ "homeserver's SSL certificate is trusted, and that a browser extension " +
+ "is not blocking requests.", {},
+ {
+ 'a': (sub) => {
+ return { sub } ;
+ },
+ },
) }
;
}
@@ -350,6 +389,7 @@ module.exports = React.createClass({
return (
-
- ;
- },
-
render: function() {
const Loader = sdk.getComponent("elements.Spinner");
const LoginPage = sdk.getComponent("login.LoginPage");
@@ -399,25 +422,14 @@ module.exports = React.createClass({
if (this.props.enableGuest) {
loginAsGuestJsx =
- { _t('Login as guest') }
+ { _t('Try the app first') }
;
}
- let returnToAppJsx;
- /*
- // with the advent of ILAG I don't think we need this any more
- if (this.props.onCancelClick) {
- returnToAppJsx =
-
- { _t('Return to app') }
- ;
- }
- */
-
let serverConfig;
let header;
- if (!SdkConfig.get().disable_custom_urls) {
+ if (!SdkConfig.get()['disable_custom_urls']) {
serverConfig =
@@ -460,8 +474,7 @@ module.exports = React.createClass({
{ _t('Create an account') }
{ loginAsGuestJsx }
- { returnToAppJsx }
- { !SdkConfig.get().disable_login_language_selector ? this._renderLanguageSetting() : '' }
+
diff --git a/src/components/structures/login/Registration.js b/src/components/structures/login/Registration.js
index 62a3ee4f68..1131218311 100644
--- a/src/components/structures/login/Registration.js
+++ b/src/components/structures/login/Registration.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -22,13 +23,13 @@ import React from 'react';
import PropTypes from 'prop-types';
import sdk from '../../../index';
-import ServerConfig from '../../views/login/ServerConfig';
import MatrixClientPeg from '../../../MatrixClientPeg';
import RegistrationForm from '../../views/login/RegistrationForm';
import RtsClient from '../../../RtsClient';
-import { _t } from '../../../languageHandler';
+import { _t, _td } from '../../../languageHandler';
import SdkConfig from '../../../SdkConfig';
import SettingsStore from "../../../settings/SettingsStore";
+import { messageForResourceLimitError } from '../../../utils/ErrorUtils';
const MIN_PASSWORD_LENGTH = 6;
@@ -62,6 +63,12 @@ module.exports = React.createClass({
onLoginClick: PropTypes.func.isRequired,
onCancelClick: PropTypes.func,
onServerConfigChange: PropTypes.func.isRequired,
+
+ rtsClient: PropTypes.shape({
+ getTeamsConfig: PropTypes.func.isRequired,
+ trackReferral: PropTypes.func.isRequired,
+ getTeam: PropTypes.func.isRequired,
+ }),
},
getInitialState: function() {
@@ -133,7 +140,7 @@ module.exports = React.createClass({
newState.isUrl = config.isUrl;
}
this.props.onServerConfigChange(config);
- this.setState(newState, function() {
+ this.setState(newState, () => {
this._replaceClient();
});
},
@@ -158,12 +165,34 @@ module.exports = React.createClass({
if (!success) {
let msg = response.message || response.toString();
// can we give a better error message?
- if (response.required_stages && response.required_stages.indexOf('m.login.msisdn') > -1) {
- let msisdn_available = false;
+ if (response.errcode == 'M_RESOURCE_LIMIT_EXCEEDED') {
+ const errorTop = messageForResourceLimitError(
+ response.data.limit_type,
+ response.data.admin_contact, {
+ 'monthly_active_user': _td(
+ "This homeserver has hit its Monthly Active User limit.",
+ ),
+ '': _td(
+ "This homeserver has exceeded one of its resource limits.",
+ ),
+ });
+ const errorDetail = messageForResourceLimitError(
+ response.data.limit_type,
+ response.data.admin_contact, {
+ '': _td(
+ "Please contact your service administrator to continue using this service.",
+ ),
+ });
+ msg =
+
{errorTop}
+
{errorDetail}
+
;
+ } else if (response.required_stages && response.required_stages.indexOf('m.login.msisdn') > -1) {
+ let msisdnAvailable = false;
for (const flow of response.available_flows) {
- msisdn_available |= flow.stages.indexOf('m.login.msisdn') > -1;
+ msisdnAvailable |= flow.stages.indexOf('m.login.msisdn') > -1;
}
- if (!msisdn_available) {
+ if (!msisdnAvailable) {
msg = _t('This server does not support authentication with a phone number.');
}
}
@@ -242,7 +271,7 @@ module.exports = React.createClass({
return matrixClient.getPushers().then((resp)=>{
const pushers = resp.pushers;
for (let i = 0; i < pushers.length; ++i) {
- if (pushers[i].kind == 'email') {
+ if (pushers[i].kind === 'email') {
const emailPusher = pushers[i];
emailPusher.data = { brand: this.props.brand };
matrixClient.setPusher(emailPusher).done(() => {
@@ -267,7 +296,7 @@ module.exports = React.createClass({
errMsg = _t('Passwords don\'t match.');
break;
case "RegistrationForm.ERR_PASSWORD_LENGTH":
- errMsg = _t('Password too short (min %(MIN_PASSWORD_LENGTH)s).', {MIN_PASSWORD_LENGTH: MIN_PASSWORD_LENGTH});
+ errMsg = _t('Password too short (min %(MIN_PASSWORD_LENGTH)s).', {MIN_PASSWORD_LENGTH});
break;
case "RegistrationForm.ERR_EMAIL_INVALID":
errMsg = _t('This doesn\'t look like a valid email address.');
@@ -353,7 +382,7 @@ module.exports = React.createClass({
registerBody = ;
} else {
let serverConfigSection;
- if (!SdkConfig.get().disable_custom_urls) {
+ if (!SdkConfig.get()['disable_custom_urls']) {
serverConfigSection = (
- { _t('Return to app') }
-
- );
- }
- */
-
let header;
let errorText;
// FIXME: remove hardcoded Status team tweaks at some point
@@ -418,6 +435,8 @@ module.exports = React.createClass({
);
}
+ const LanguageSelector = sdk.getComponent('structures.login.LanguageSelector');
+
return (
@@ -431,7 +450,7 @@ module.exports = React.createClass({
{ registerBody }
{ signIn }
{ errorText }
- { returnToAppJsx }
+
diff --git a/src/components/views/context_menus/GroupInviteTileContextMenu.js b/src/components/views/context_menus/GroupInviteTileContextMenu.js
new file mode 100644
index 0000000000..e30acca16d
--- /dev/null
+++ b/src/components/views/context_menus/GroupInviteTileContextMenu.js
@@ -0,0 +1,87 @@
+/*
+Copyright 2018 Vector Creations 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 React from 'react';
+import PropTypes from 'prop-types';
+import sdk from '../../../index';
+import { _t } from '../../../languageHandler';
+import Modal from '../../../Modal';
+import {Group} from 'matrix-js-sdk';
+import GroupStore from "../../../stores/GroupStore";
+
+export default class GroupInviteTileContextMenu extends React.Component {
+ static propTypes = {
+ group: PropTypes.instanceOf(Group).isRequired,
+ /* callback called when the menu is dismissed */
+ onFinished: PropTypes.func,
+ };
+
+ constructor(props, context) {
+ super(props, context);
+
+ this._onClickReject = this._onClickReject.bind(this);
+ }
+
+ componentWillMount() {
+ this._unmounted = false;
+ }
+
+ componentWillUnmount() {
+ this._unmounted = true;
+ }
+
+ _onClickReject() {
+ const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
+ Modal.createTrackedDialog('Reject community invite', '', QuestionDialog, {
+ title: _t('Reject invitation'),
+ description: _t('Are you sure you want to reject the invitation?'),
+ onFinished: async (shouldLeave) => {
+ if (!shouldLeave) return;
+
+ // FIXME: controller shouldn't be loading a view :(
+ const Loader = sdk.getComponent("elements.Spinner");
+ const modal = Modal.createDialog(Loader, null, 'mx_Dialog_spinner');
+
+ try {
+ await GroupStore.leaveGroup(this.props.group.groupId);
+ } catch (e) {
+ console.error("Error rejecting community invite: ", e);
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+ Modal.createTrackedDialog('Error rejecting invite', '', ErrorDialog, {
+ title: _t("Error"),
+ description: _t("Unable to reject invite"),
+ });
+ } finally {
+ modal.close();
+ }
+ },
+ });
+
+ // Close the context menu
+ if (this.props.onFinished) {
+ this.props.onFinished();
+ }
+ }
+
+ render() {
+ return
+
+
+ { _t('Reject') }
+
+
;
+ }
+}
diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js
index 99ec493ced..be718050c1 100644
--- a/src/components/views/context_menus/MessageContextMenu.js
+++ b/src/components/views/context_menus/MessageContextMenu.js
@@ -15,10 +15,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-
import React from 'react';
import PropTypes from 'prop-types';
+import {EventStatus} from 'matrix-js-sdk';
import MatrixClientPeg from '../../../MatrixClientPeg';
import dis from '../../../dispatcher';
@@ -179,7 +178,16 @@ module.exports = React.createClass({
onQuoteClick: function() {
dis.dispatch({
action: 'quote',
- text: this.props.eventTileOps.getInnerText(),
+ event: this.props.mxEvent,
+ });
+ this.closeMenu();
+ },
+
+ onPermalinkClick: function(e: Event) {
+ e.preventDefault();
+ const ShareDialog = sdk.getComponent("dialogs.ShareDialog");
+ Modal.createTrackedDialog('share room message dialog', '', ShareDialog, {
+ target: this.props.mxEvent,
});
this.closeMenu();
},
@@ -211,7 +219,10 @@ module.exports = React.createClass({
let replyButton;
let collapseReplyThread;
- if (eventStatus === 'not_sent') {
+ // status is SENT before remote-echo, null after
+ const isSent = !eventStatus || eventStatus === EventStatus.SENT;
+
+ if (eventStatus === EventStatus.NOT_SENT) {
resendButton = (
{ _t('Resend') }
@@ -219,7 +230,7 @@ module.exports = React.createClass({
);
}
- if (!eventStatus && this.state.canRedact) {
+ if (isSent && this.state.canRedact) {
redactButton = (
{ _t('Remove') }
@@ -227,7 +238,7 @@ module.exports = React.createClass({
);
}
- if (eventStatus === "queued" || eventStatus === "not_sent") {
+ if (eventStatus === EventStatus.QUEUED || eventStatus === EventStatus.NOT_SENT) {
cancelButton = (
{ _t('Cancel Sending') }
@@ -235,7 +246,7 @@ module.exports = React.createClass({
);
}
- if (!eventStatus && this.props.mxEvent.getType() === 'm.room.message') {
+ if (isSent && this.props.mxEvent.getType() === 'm.room.message') {
const content = this.props.mxEvent.getContent();
if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) {
forwardButton = (
@@ -244,13 +255,11 @@ module.exports = React.createClass({
);
- if (SettingsStore.isFeatureEnabled("feature_rich_quoting")) {
- replyButton = (
-
- { _t('Reply') }
-
- );
- }
+ replyButton = (
+
+ { _t('Reply') }
+
+ );
if (this.state.canPin) {
pinButton = (
@@ -290,7 +299,7 @@ module.exports = React.createClass({
const permalinkButton = (
{ _t('Permalink') }
+ target="_blank" rel="noopener" onClick={this.onPermalinkClick}>{ _t('Share Message') }
);
diff --git a/src/components/views/context_menus/RoomTileContextMenu.js b/src/components/views/context_menus/RoomTileContextMenu.js
index 77f71fa8fa..ce9895447e 100644
--- a/src/components/views/context_menus/RoomTileContextMenu.js
+++ b/src/components/views/context_menus/RoomTileContextMenu.js
@@ -346,20 +346,18 @@ module.exports = React.createClass({
},
render: function() {
- const myMember = this.props.room.getMember(
- MatrixClientPeg.get().credentials.userId,
- );
+ const myMembership = this.props.room.getMyMembership();
// Can't set notif level or tags on non-join rooms
- if (myMember.membership !== 'join') {
- return this._renderLeaveMenu(myMember.membership);
+ if (myMembership !== 'join') {
+ return this._renderLeaveMenu(myMembership);
}
return (
{ this._renderNotifMenu() }
- { this._renderLeaveMenu(myMember.membership) }
+ { this._renderLeaveMenu(myMembership) }
{ this._renderRoomTagMenu() }
diff --git a/src/components/views/dialogs/AddressPickerDialog.js b/src/components/views/dialogs/AddressPickerDialog.js
index 0d0b7456b5..abc52f7b1d 100644
--- a/src/components/views/dialogs/AddressPickerDialog.js
+++ b/src/components/views/dialogs/AddressPickerDialog.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -17,7 +17,7 @@ limitations under the License.
import React from 'react';
import PropTypes from 'prop-types';
-import { _t } from '../../../languageHandler';
+import { _t, _td } from '../../../languageHandler';
import sdk from '../../../index';
import MatrixClientPeg from '../../../MatrixClientPeg';
import Promise from 'bluebird';
@@ -27,6 +27,13 @@ import GroupStore from '../../../stores/GroupStore';
const TRUNCATE_QUERY_LIST = 40;
const QUERY_USER_DIRECTORY_DEBOUNCE_MS = 200;
+const addressTypeName = {
+ 'mx-user-id': _td("Matrix ID"),
+ 'mx-room-id': _td("Matrix Room ID"),
+ 'email': _td("email address"),
+};
+
+
module.exports = React.createClass({
displayName: "AddressPickerDialog",
@@ -66,7 +73,7 @@ module.exports = React.createClass({
// List of UserAddressType objects representing
// the list of addresses we're going to invite
- userList: [],
+ selectedList: [],
// Whether a search is ongoing
busy: false,
@@ -76,10 +83,9 @@ module.exports = React.createClass({
serverSupportsUserDirectory: true,
// The query being searched for
query: "",
- // List of UserAddressType objects representing
- // the set of auto-completion results for the current search
- // query.
- queryList: [],
+ // List of UserAddressType objects representing the set of
+ // auto-completion results for the current search query.
+ suggestedList: [],
};
},
@@ -91,14 +97,14 @@ module.exports = React.createClass({
},
onButtonClick: function() {
- let userList = this.state.userList.slice();
+ let selectedList = this.state.selectedList.slice();
// Check the text input field to see if user has an unconverted address
- // If there is and it's valid add it to the local userList
+ // If there is and it's valid add it to the local selectedList
if (this.refs.textinput.value !== '') {
- userList = this._addInputToList();
- if (userList === null) return;
+ selectedList = this._addInputToList();
+ if (selectedList === null) return;
}
- this.props.onFinished(true, userList);
+ this.props.onFinished(true, selectedList);
},
onCancel: function() {
@@ -118,18 +124,18 @@ module.exports = React.createClass({
e.stopPropagation();
e.preventDefault();
if (this.addressSelector) this.addressSelector.moveSelectionDown();
- } else if (this.state.queryList.length > 0 && (e.keyCode === 188 || e.keyCode === 13 || e.keyCode === 9)) { // comma or enter or tab
+ } else if (this.state.suggestedList.length > 0 && (e.keyCode === 188 || e.keyCode === 13 || e.keyCode === 9)) { // comma or enter or tab
e.stopPropagation();
e.preventDefault();
if (this.addressSelector) this.addressSelector.chooseSelection();
- } else if (this.refs.textinput.value.length === 0 && this.state.userList.length && e.keyCode === 8) { // backspace
+ } else if (this.refs.textinput.value.length === 0 && this.state.selectedList.length && e.keyCode === 8) { // backspace
e.stopPropagation();
e.preventDefault();
- this.onDismissed(this.state.userList.length - 1)();
+ this.onDismissed(this.state.selectedList.length - 1)();
} else if (e.keyCode === 13) { // enter
e.stopPropagation();
e.preventDefault();
- if (this.refs.textinput.value == '') {
+ if (this.refs.textinput.value === '') {
// if there's nothing in the input box, submit the form
this.onButtonClick();
} else {
@@ -148,7 +154,7 @@ module.exports = React.createClass({
clearTimeout(this.queryChangedDebouncer);
}
// Only do search if there is something to search
- if (query.length > 0 && query != '@' && query.length >= 2) {
+ if (query.length > 0 && query !== '@' && query.length >= 2) {
this.queryChangedDebouncer = setTimeout(() => {
if (this.props.pickerType === 'user') {
if (this.props.groupId) {
@@ -170,7 +176,7 @@ module.exports = React.createClass({
}, QUERY_USER_DIRECTORY_DEBOUNCE_MS);
} else {
this.setState({
- queryList: [],
+ suggestedList: [],
query: "",
searchError: null,
});
@@ -179,11 +185,11 @@ module.exports = React.createClass({
onDismissed: function(index) {
return () => {
- const userList = this.state.userList.slice();
- userList.splice(index, 1);
+ const selectedList = this.state.selectedList.slice();
+ selectedList.splice(index, 1);
this.setState({
- userList: userList,
- queryList: [],
+ selectedList,
+ suggestedList: [],
query: "",
});
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
@@ -197,11 +203,11 @@ module.exports = React.createClass({
},
onSelected: function(index) {
- const userList = this.state.userList.slice();
- userList.push(this.state.queryList[index]);
+ const selectedList = this.state.selectedList.slice();
+ selectedList.push(this.state.suggestedList[index]);
this.setState({
- userList: userList,
- queryList: [],
+ selectedList,
+ suggestedList: [],
query: "",
});
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
@@ -379,10 +385,10 @@ module.exports = React.createClass({
},
_processResults: function(results, query) {
- const queryList = [];
+ const suggestedList = [];
results.forEach((result) => {
if (result.room_id) {
- queryList.push({
+ suggestedList.push({
addressType: 'mx-room-id',
address: result.room_id,
displayName: result.name,
@@ -399,7 +405,7 @@ module.exports = React.createClass({
// Return objects, structure of which is defined
// by UserAddressType
- queryList.push({
+ suggestedList.push({
addressType: 'mx-user-id',
address: result.user_id,
displayName: result.display_name,
@@ -413,18 +419,18 @@ module.exports = React.createClass({
// a perfectly valid address if there are close matches.
const addrType = getAddressType(query);
if (this.props.validAddressTypes.includes(addrType)) {
- queryList.unshift({
+ suggestedList.unshift({
addressType: addrType,
address: query,
isKnown: false,
});
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
- if (addrType == 'email') {
+ if (addrType === 'email') {
this._lookupThreepid(addrType, query).done();
}
}
this.setState({
- queryList,
+ suggestedList,
error: false,
}, () => {
if (this.addressSelector) this.addressSelector.moveSelectionTop();
@@ -442,14 +448,14 @@ module.exports = React.createClass({
if (!this.props.validAddressTypes.includes(addrType)) {
this.setState({ error: true });
return null;
- } else if (addrType == 'mx-user-id') {
+ } else if (addrType === 'mx-user-id') {
const user = MatrixClientPeg.get().getUser(addrObj.address);
if (user) {
addrObj.displayName = user.displayName;
addrObj.avatarMxc = user.avatarUrl;
addrObj.isKnown = true;
}
- } else if (addrType == 'mx-room-id') {
+ } else if (addrType === 'mx-room-id') {
const room = MatrixClientPeg.get().getRoom(addrObj.address);
if (room) {
addrObj.displayName = room.name;
@@ -458,15 +464,15 @@ module.exports = React.createClass({
}
}
- const userList = this.state.userList.slice();
- userList.push(addrObj);
+ const selectedList = this.state.selectedList.slice();
+ selectedList.push(addrObj);
this.setState({
- userList: userList,
- queryList: [],
+ selectedList,
+ suggestedList: [],
query: "",
});
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
- return userList;
+ return selectedList;
},
_lookupThreepid: function(medium, address) {
@@ -492,7 +498,7 @@ module.exports = React.createClass({
if (res === null) return null;
if (cancelled) return null;
this.setState({
- queryList: [{
+ suggestedList: [{
// a UserAddressType
addressType: medium,
address: address,
@@ -510,15 +516,27 @@ module.exports = React.createClass({
const AddressSelector = sdk.getComponent("elements.AddressSelector");
this.scrollElement = null;
+ // map addressType => set of addresses to avoid O(n*m) operation
+ const selectedAddresses = {};
+ this.state.selectedList.forEach(({address, addressType}) => {
+ if (!selectedAddresses[addressType]) selectedAddresses[addressType] = new Set();
+ selectedAddresses[addressType].add(address);
+ });
+
+ // Filter out any addresses in the above already selected addresses (matching both type and address)
+ const filteredSuggestedList = this.state.suggestedList.filter(({address, addressType}) => {
+ return !(selectedAddresses[addressType] && selectedAddresses[addressType].has(address));
+ });
+
const query = [];
// create the invite list
- if (this.state.userList.length > 0) {
+ if (this.state.selectedList.length > 0) {
const AddressTile = sdk.getComponent("elements.AddressTile");
- for (let i = 0; i < this.state.userList.length; i++) {
+ for (let i = 0; i < this.state.selectedList.length; i++) {
query.push(
,
@@ -528,7 +546,7 @@ module.exports = React.createClass({
// Add the query at the end
query.push(
-
;
}
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
return (
@@ -187,7 +190,7 @@ export default class ChatCreateOrReuseDialog extends React.Component {
}
}
-ChatCreateOrReuseDialog.propTyps = {
+ChatCreateOrReuseDialog.propTypes = {
userId: PropTypes.string.isRequired,
// Called when clicking outside of the dialog
onFinished: PropTypes.func.isRequired,
diff --git a/src/components/views/dialogs/CreateGroupDialog.js b/src/components/views/dialogs/CreateGroupDialog.js
index 04f99a0e15..6e14d1cf66 100644
--- a/src/components/views/dialogs/CreateGroupDialog.js
+++ b/src/components/views/dialogs/CreateGroupDialog.js
@@ -56,7 +56,7 @@ export default React.createClass({
_checkGroupId: function(e) {
let error = null;
if (!this.state.groupId) {
- error = _t("Community IDs cannot not be empty.");
+ error = _t("Community IDs cannot be empty.");
} else if (!/^[a-z0-9=_\-\.\/]*$/.test(this.state.groupId)) {
error = _t("Community IDs may only contain characters a-z, 0-9, or '=_-./'");
}
diff --git a/src/components/views/dialogs/CreateRoomDialog.js b/src/components/views/dialogs/CreateRoomDialog.js
index 51693a19c9..3212e53c05 100644
--- a/src/components/views/dialogs/CreateRoomDialog.js
+++ b/src/components/views/dialogs/CreateRoomDialog.js
@@ -26,7 +26,7 @@ export default React.createClass({
onFinished: PropTypes.func.isRequired,
},
- componentDidMount: function() {
+ componentWillMount: function() {
const config = SdkConfig.get();
// Dialog shows inverse of m.federate (noFederate) strict false check to skip undefined check (default = true)
this.defaultNoFederate = config.default_federate === false;
@@ -52,8 +52,8 @@ export default React.createClass({
{ _t('Room name (optional)') }
-
-
+
;
}
@@ -132,17 +132,17 @@ class SendCustomEvent extends GenericEditor {
}
return
-
+
{ this.textInput('eventType', _t('Event Type')) }
{ this.state.isStateEvent && this.textInput('stateKey', _t('State Key')) }
-
+
{ _t('Event Content') }
-
+
@@ -219,15 +219,15 @@ class SendAccountData extends GenericEditor {
}
return
-
+
{ this.textInput('eventType', _t('Event Type')) }
-
+
{ _t('Event Content') }
-
+
@@ -242,6 +242,9 @@ class SendAccountData extends GenericEditor {
}
}
+const INITIAL_LOAD_TILES = 20;
+const LOAD_TILES_STEP_SIZE = 50;
+
class FilteredList extends React.Component {
static propTypes = {
children: PropTypes.any,
@@ -249,31 +252,68 @@ class FilteredList extends React.Component {
onChange: PropTypes.func,
};
+ static filterChildren(children, query) {
+ if (!query) return children;
+ const lcQuery = query.toLowerCase();
+ return children.filter((child) => child.key.toLowerCase().includes(lcQuery));
+ }
+
constructor(props, context) {
super(props, context);
- this.onQuery = this.onQuery.bind(this);
+
+ this.state = {
+ filteredChildren: FilteredList.filterChildren(this.props.children, this.props.query),
+ truncateAt: INITIAL_LOAD_TILES,
+ };
}
- onQuery(ev) {
+ componentWillReceiveProps(nextProps) {
+ if (this.props.children === nextProps.children && this.props.query === nextProps.query) return;
+ this.setState({
+ filteredChildren: FilteredList.filterChildren(nextProps.children, nextProps.query),
+ truncateAt: INITIAL_LOAD_TILES,
+ });
+ }
+
+ showAll = () => {
+ this.setState({
+ truncateAt: this.state.truncateAt + LOAD_TILES_STEP_SIZE,
+ });
+ };
+
+ createOverflowElement = (overflowCount: number, totalCount: number) => {
+ return
+ { _t("and %(count)s others...", { count: overflowCount }) }
+ ;
+ };
+
+ onQuery = (ev) => {
if (this.props.onChange) this.props.onChange(ev.target.value);
- }
+ };
- filterChildren() {
- if (this.props.query) {
- const lowerQuery = this.props.query.toLowerCase();
- return this.props.children.filter((child) => child.key.toLowerCase().includes(lowerQuery));
- }
- return this.props.children;
- }
+ getChildren = (start: number, end: number) => {
+ return this.state.filteredChildren.slice(start, end);
+ };
+
+ getChildCount = (): number => {
+ return this.state.filteredChildren.length;
+ };
render() {
+ const TruncatedList = sdk.getComponent("elements.TruncatedList");
return
- { this.filterChildren() }
+ className="mx_TextInputDialog_input mx_DevTools_RoomStateExplorer_query"
+ // force re-render so that autoFocus is applied when this component is re-used
+ key={this.props.children[0] ? this.props.children[0].key : ''} />
+
;
}
}
@@ -377,10 +417,10 @@ class RoomStateExplorer extends DevtoolsComponent {
const stateKeys = Object.keys(stateGroup);
let onClickFn;
- if (stateKeys.length > 1) {
- onClickFn = this.browseEventType(evType);
- } else if (stateKeys.length === 1) {
+ if (stateKeys.length === 1 && stateKeys[0] === '') {
onClickFn = this.onViewSourceClick(stateGroup[stateKeys[0]]);
+ } else {
+ onClickFn = this.browseEventType(evType);
}
return
@@ -485,7 +525,7 @@ class AccountDataExplorer extends DevtoolsComponent {
}
return
-
+
{ JSON.stringify(this.state.event.event, null, 2) }
diff --git a/src/components/views/dialogs/QuestionDialog.js b/src/components/views/dialogs/QuestionDialog.js
index 21d3a54bc2..ed73bdcbdf 100644
--- a/src/components/views/dialogs/QuestionDialog.js
+++ b/src/components/views/dialogs/QuestionDialog.js
@@ -67,9 +67,10 @@ export default React.createClass({
{ this.props.description }
diff --git a/src/components/views/dialogs/SetEmailDialog.js b/src/components/views/dialogs/SetEmailDialog.js
index d80574804f..e643ddbc34 100644
--- a/src/components/views/dialogs/SetEmailDialog.js
+++ b/src/components/views/dialogs/SetEmailDialog.js
@@ -1,5 +1,6 @@
/*
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -36,7 +37,7 @@ export default React.createClass({
getInitialState: function() {
return {
- emailAddress: null,
+ emailAddress: '',
emailBusy: false,
};
},
@@ -127,6 +128,7 @@ export default React.createClass({
const EditableText = sdk.getComponent('elements.EditableText');
const emailInput = this.state.emailBusy ? : {
- this._onContinueClicked();
+ this.props.onFinished();
},
});
},
- _onContinueClicked: function() {
- this.props.onFinished(true);
- },
-
_onPasswordChangeError: function(err) {
let errMsg = err.error || "";
if (err.httpStatus === 403) {
diff --git a/src/components/views/dialogs/ShareDialog.js b/src/components/views/dialogs/ShareDialog.js
new file mode 100644
index 0000000000..f074d9b1fa
--- /dev/null
+++ b/src/components/views/dialogs/ShareDialog.js
@@ -0,0 +1,224 @@
+/*
+Copyright 2018 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 React from 'react';
+import PropTypes from 'prop-types';
+import {Room, User, Group, RoomMember, MatrixEvent} from 'matrix-js-sdk';
+import sdk from '../../../index';
+import { _t } from '../../../languageHandler';
+import QRCode from 'qrcode-react';
+import {makeEventPermalink, makeGroupPermalink, makeRoomPermalink, makeUserPermalink} from "../../../matrix-to";
+import * as ContextualMenu from "../../structures/ContextualMenu";
+
+const socials = [
+ {
+ name: 'Facebook',
+ img: 'img/social/facebook.png',
+ url: (url) => `https://www.facebook.com/sharer/sharer.php?u=${url}`,
+ }, {
+ name: 'Twitter',
+ img: 'img/social/twitter-2.png',
+ url: (url) => `https://twitter.com/home?status=${url}`,
+ }, /* // icon missing
+ name: 'Google Plus',
+ img: 'img/social/',
+ url: (url) => `https://plus.google.com/share?url=${url}`,
+ },*/ {
+ name: 'LinkedIn',
+ img: 'img/social/linkedin.png',
+ url: (url) => `https://www.linkedin.com/shareArticle?mini=true&url=${url}`,
+ }, {
+ name: 'Reddit',
+ img: 'img/social/reddit.png',
+ url: (url) => `http://www.reddit.com/submit?url=${url}`,
+ }, {
+ name: 'email',
+ img: 'img/social/email-1.png',
+ url: (url) => `mailto:?body=${url}`,
+ },
+];
+
+export default class ShareDialog extends React.Component {
+ static propTypes = {
+ onFinished: PropTypes.func.isRequired,
+ target: PropTypes.oneOfType([
+ PropTypes.instanceOf(Room),
+ PropTypes.instanceOf(User),
+ PropTypes.instanceOf(Group),
+ PropTypes.instanceOf(RoomMember),
+ PropTypes.instanceOf(MatrixEvent),
+ ]).isRequired,
+ };
+
+ constructor(props) {
+ super(props);
+
+ this.onCopyClick = this.onCopyClick.bind(this);
+ this.onLinkSpecificEventCheckboxClick = this.onLinkSpecificEventCheckboxClick.bind(this);
+
+ this.state = {
+ // MatrixEvent defaults to share linkSpecificEvent
+ linkSpecificEvent: this.props.target instanceof MatrixEvent,
+ };
+ }
+
+ static _selectText(target) {
+ const range = document.createRange();
+ range.selectNodeContents(target);
+
+ const selection = window.getSelection();
+ selection.removeAllRanges();
+ selection.addRange(range);
+ }
+
+ static onLinkClick(e) {
+ e.preventDefault();
+ const {target} = e;
+ ShareDialog._selectText(target);
+ }
+
+ onCopyClick(e) {
+ e.preventDefault();
+
+ ShareDialog._selectText(this.refs.link);
+
+ let successful;
+ try {
+ successful = document.execCommand('copy');
+ } catch (err) {
+ console.error('Failed to copy: ', err);
+ }
+
+ const GenericTextContextMenu = sdk.getComponent('context_menus.GenericTextContextMenu');
+ const buttonRect = e.target.getBoundingClientRect();
+
+ // The window X and Y offsets are to adjust position when zoomed in to page
+ const x = buttonRect.right + window.pageXOffset;
+ const y = (buttonRect.top + (buttonRect.height / 2) + window.pageYOffset) - 19;
+ const {close} = ContextualMenu.createMenu(GenericTextContextMenu, {
+ chevronOffset: 10,
+ left: x,
+ top: y,
+ message: successful ? _t('Copied!') : _t('Failed to copy'),
+ }, false);
+ e.target.onmouseleave = close;
+ }
+
+ onLinkSpecificEventCheckboxClick() {
+ this.setState({
+ linkSpecificEvent: !this.state.linkSpecificEvent,
+ });
+ }
+
+ render() {
+ let title;
+ let matrixToUrl;
+
+ let checkbox;
+
+ if (this.props.target instanceof Room) {
+ title = _t('Share Room');
+
+ const events = this.props.target.getLiveTimeline().getEvents();
+ if (events.length > 0) {
+ checkbox =
+
+
+ { _t('Link to most recent message') }
+
+
;
+ }
+
+ if (this.state.linkSpecificEvent) {
+ matrixToUrl = makeEventPermalink(this.props.target.roomId, events[events.length - 1].getId());
+ } else {
+ matrixToUrl = makeRoomPermalink(this.props.target.roomId);
+ }
+ } else if (this.props.target instanceof User || this.props.target instanceof RoomMember) {
+ title = _t('Share User');
+ matrixToUrl = makeUserPermalink(this.props.target.userId);
+ } else if (this.props.target instanceof Group) {
+ title = _t('Share Community');
+ matrixToUrl = makeGroupPermalink(this.props.target.groupId);
+ } else if (this.props.target instanceof MatrixEvent) {
+ title = _t('Share Room Message');
+ checkbox =
+
+
+ { _t('Link to selected message') }
+
+
;
+
+ if (this.state.linkSpecificEvent) {
+ matrixToUrl = makeEventPermalink(this.props.target.getRoomId(), this.props.target.getId());
+ } else {
+ matrixToUrl = makeRoomPermalink(this.props.target.getRoomId());
+ }
+ }
+
+ const encodedUrl = encodeURIComponent(matrixToUrl);
+
+ const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
+ return
+
+
+ { checkbox }
+
+
+
+
+
+
+
+ {
+ socials.map((social) =>
+
+ )
+ }
+
+
+
+ ;
+ }
+}
diff --git a/src/components/views/elements/AppPermission.js b/src/components/views/elements/AppPermission.js
index c45006be3a..6b4536b620 100644
--- a/src/components/views/elements/AppPermission.js
+++ b/src/components/views/elements/AppPermission.js
@@ -2,6 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import url from 'url';
import { _t } from '../../../languageHandler';
+import WidgetUtils from "../../../utils/WidgetUtils";
export default class AppPermission extends React.Component {
constructor(props) {
@@ -19,7 +20,7 @@ export default class AppPermission extends React.Component {
const searchParams = new URLSearchParams(wurl.search);
- if (this.isScalarWurl(wurl) && searchParams && searchParams.get('url')) {
+ if (WidgetUtils.isScalarUrl(wurl) && searchParams && searchParams.get('url')) {
curl = url.parse(searchParams.get('url'));
if (curl) {
curl.search = curl.query = "";
@@ -33,19 +34,6 @@ export default class AppPermission extends React.Component {
return curlString;
}
- isScalarWurl(wurl) {
- if (wurl && wurl.hostname && (
- wurl.hostname === 'scalar.vector.im' ||
- wurl.hostname === 'scalar-staging.riot.im' ||
- wurl.hostname === 'scalar-develop.riot.im' ||
- wurl.hostname === 'demo.riot.im' ||
- wurl.hostname === 'localhost'
- )) {
- return true;
- }
- return false;
- }
-
render() {
let e2eWarningText;
if (this.props.isRoomEncrypted) {
diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js
index 0895ede636..7be0bab33c 100644
--- a/src/components/views/elements/AppTile.js
+++ b/src/components/views/elements/AppTile.js
@@ -1,5 +1,6 @@
/**
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -25,15 +26,15 @@ import PlatformPeg from '../../../PlatformPeg';
import ScalarAuthClient from '../../../ScalarAuthClient';
import WidgetMessaging from '../../../WidgetMessaging';
import TintableSvgButton from './TintableSvgButton';
-import SdkConfig from '../../../SdkConfig';
import Modal from '../../../Modal';
import { _t, _td } from '../../../languageHandler';
import sdk from '../../../index';
import AppPermission from './AppPermission';
import AppWarning from './AppWarning';
import MessageSpinner from './MessageSpinner';
-import WidgetUtils from '../../../WidgetUtils';
+import WidgetUtils from '../../../utils/WidgetUtils';
import dis from '../../../dispatcher';
+import ActiveWidgetStore from '../../../stores/ActiveWidgetStore';
const ALLOWED_APP_URL_SCHEMES = ['https:', 'http:'];
const ENABLE_REACT_PERF = false;
@@ -41,9 +42,13 @@ const ENABLE_REACT_PERF = false;
export default class AppTile extends React.Component {
constructor(props) {
super(props);
+
+ // The key used for PersistedElement
+ this._persistKey = 'widget_' + this.props.id;
+
this.state = this._getNewState(props);
- this._onWidgetAction = this._onWidgetAction.bind(this);
+ this._onAction = this._onAction.bind(this);
this._onMessage = this._onMessage.bind(this);
this._onLoaded = this._onLoaded.bind(this);
this._onEditClick = this._onEditClick.bind(this);
@@ -51,10 +56,10 @@ export default class AppTile extends React.Component {
this._onSnapshotClick = this._onSnapshotClick.bind(this);
this.onClickMenuBar = this.onClickMenuBar.bind(this);
this._onMinimiseClick = this._onMinimiseClick.bind(this);
- this._onInitialLoad = this._onInitialLoad.bind(this);
this._grantWidgetPermission = this._grantWidgetPermission.bind(this);
this._revokeWidgetPermission = this._revokeWidgetPermission.bind(this);
this._onPopoutWidgetClick = this._onPopoutWidgetClick.bind(this);
+ this._onReloadWidgetClick = this._onReloadWidgetClick.bind(this);
}
/**
@@ -66,9 +71,12 @@ export default class AppTile extends React.Component {
_getNewState(newProps) {
const widgetPermissionId = [newProps.room.roomId, encodeURIComponent(newProps.url)].join('_');
const hasPermissionToLoad = localStorage.getItem(widgetPermissionId);
+
+ const PersistedElement = sdk.getComponent("elements.PersistedElement");
return {
initialising: true, // True while we are mangling the widget URL
- loading: this.props.waitForIframeLoad, // True while the iframe content is loading
+ // True while the iframe content is loading
+ loading: this.props.waitForIframeLoad && !PersistedElement.isMounted(this._persistKey),
widgetUrl: this._addWurlParams(newProps.url),
widgetPermissionId: widgetPermissionId,
// Assume that widget has permission to load if we are the user who
@@ -77,9 +85,6 @@ export default class AppTile extends React.Component {
error: null,
deleting: false,
widgetPageTitle: newProps.widgetPageTitle,
- allowedCapabilities: (this.props.whitelistCapabilities && this.props.whitelistCapabilities.length > 0) ?
- this.props.whitelistCapabilities : [],
- requestedCapabilities: [],
};
}
@@ -89,7 +94,7 @@ export default class AppTile extends React.Component {
* @return {Boolean} True if capability supported
*/
_hasCapability(capability) {
- return this.state.allowedCapabilities.some((c) => {return c === capability;});
+ return ActiveWidgetStore.widgetHasCapability(this.props.id, capability);
}
/**
@@ -112,38 +117,15 @@ export default class AppTile extends React.Component {
const params = qs.parse(u.query);
// Append widget ID to query parameters
params.widgetId = this.props.id;
- // Append current / parent URL
- params.parentUrl = window.location.href;
+ // Append current / parent URL, minus the hash because that will change when
+ // we view a different room (ie. may change for persistent widgets)
+ params.parentUrl = window.location.href.split('#', 2)[0];
u.search = undefined;
u.query = params;
return u.format();
}
- /**
- * Returns true if specified url is a scalar URL, typically https://scalar.vector.im/api
- * @param {[type]} url URL to check
- * @return {Boolean} True if specified URL is a scalar URL
- */
- isScalarUrl(url) {
- if (!url) {
- console.error('Scalar URL check failed. No URL specified');
- return false;
- }
-
- let scalarUrls = SdkConfig.get().integrations_widgets_urls;
- if (!scalarUrls || scalarUrls.length == 0) {
- scalarUrls = [SdkConfig.get().integrations_rest_url];
- }
-
- for (let i = 0; i < scalarUrls.length; i++) {
- if (url.startsWith(scalarUrls[i])) {
- return true;
- }
- }
- return false;
- }
-
isMixedContent() {
const parentContentProtocol = window.location.protocol;
const u = url.parse(this.props.url);
@@ -166,30 +148,22 @@ export default class AppTile extends React.Component {
window.addEventListener('message', this._onMessage, false);
// Widget action listeners
- this.dispatcherRef = dis.register(this._onWidgetAction);
- }
-
- componentDidUpdate() {
- // Allow parents to access widget messaging
- if (this.props.collectWidgetMessaging) {
- this.props.collectWidgetMessaging(this.widgetMessaging);
- }
+ this.dispatcherRef = dis.register(this._onAction);
}
componentWillUnmount() {
// Widget action listeners
dis.unregister(this.dispatcherRef);
- // Widget postMessage listeners
- try {
- if (this.widgetMessaging) {
- this.widgetMessaging.stop();
- }
- } catch (e) {
- console.error('Failed to stop listening for widgetMessaging events', e.message);
- }
// Jitsi listener
window.removeEventListener('message', this._onMessage);
+
+ // if it's not remaining on screen, get rid of the PersistedElement container
+ if (!ActiveWidgetStore.getWidgetPersistence(this.props.id)) {
+ ActiveWidgetStore.destroyPersistentWidget();
+ const PersistedElement = sdk.getComponent("elements.PersistedElement");
+ PersistedElement.destroyElement(this._persistKey);
+ }
}
/**
@@ -199,7 +173,7 @@ export default class AppTile extends React.Component {
setScalarToken() {
this.setState({initialising: true});
- if (!this.isScalarUrl(this.props.url)) {
+ if (!WidgetUtils.isScalarUrl(this.props.url)) {
console.warn('Non-scalar widget, not setting scalar token!', url);
this.setState({
error: null,
@@ -269,7 +243,12 @@ export default class AppTile extends React.Component {
event.origin = event.originalEvent.origin;
}
- if (!this.state.widgetUrl.startsWith(event.origin)) {
+ const widgetUrlObj = url.parse(this.state.widgetUrl);
+ const eventOrigin = url.parse(event.origin);
+ if (
+ eventOrigin.protocol !== widgetUrlObj.protocol ||
+ eventOrigin.host !== widgetUrlObj.host
+ ) {
return;
}
@@ -305,7 +284,7 @@ export default class AppTile extends React.Component {
_onSnapshotClick(e) {
console.warn("Requesting widget snapshot");
- this.widgetMessaging.getScreenshot()
+ ActiveWidgetStore.getWidgetMessaging(this.props.id).getScreenshot()
.catch((err) => {
console.error("Failed to get screenshot", err);
})
@@ -338,13 +317,18 @@ export default class AppTile extends React.Component {
return;
}
this.setState({deleting: true});
- MatrixClientPeg.get().sendStateEvent(
+
+ WidgetUtils.setRoomWidget(
this.props.room.roomId,
- 'im.vector.modular.widgets',
- {}, // empty content
this.props.id,
).catch((e) => {
console.error('Failed to delete widget', e);
+ const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
+
+ Modal.createTrackedDialog('Failed to remove widget', '', ErrorDialog, {
+ title: _t('Failed to remove widget'),
+ description: _t('An error ocurred whilst trying to remove the widget from the room'),
+ });
}).finally(() => {
this.setState({deleting: false});
});
@@ -361,19 +345,20 @@ export default class AppTile extends React.Component {
* Called when widget iframe has finished loading
*/
_onLoaded() {
- if (!this.widgetMessaging) {
- this._onInitialLoad();
+ if (!ActiveWidgetStore.getWidgetMessaging(this.props.id)) {
+ this._setupWidgetMessaging();
}
+ ActiveWidgetStore.setRoomId(this.props.id, this.props.room.roomId);
this.setState({loading: false});
}
- /**
- * Called on initial load of the widget iframe
- */
- _onInitialLoad() {
- this.widgetMessaging = new WidgetMessaging(this.props.id, this.props.url, this.refs.appFrame.contentWindow);
- this.widgetMessaging.getCapabilities().then((requestedCapabilities) => {
- console.log(`Widget ${this.props.id} requested capabilities:`, requestedCapabilities);
+ _setupWidgetMessaging() {
+ // FIXME: There's probably no reason to do this here: it should probably be done entirely
+ // in ActiveWidgetStore.
+ const widgetMessaging = new WidgetMessaging(this.props.id, this.props.url, this.refs.appFrame.contentWindow);
+ ActiveWidgetStore.setWidgetMessaging(this.props.id, widgetMessaging);
+ widgetMessaging.getCapabilities().then((requestedCapabilities) => {
+ console.log(`Widget ${this.props.id} requested capabilities: ` + requestedCapabilities);
requestedCapabilities = requestedCapabilities || [];
// Allow whitelisted capabilities
@@ -385,16 +370,15 @@ export default class AppTile extends React.Component {
}, this.props.whitelistCapabilities);
if (requestedWhitelistCapabilies.length > 0 ) {
- console.warn(`Widget ${this.props.id} allowing requested, whitelisted properties:`,
- requestedWhitelistCapabilies);
+ console.warn(`Widget ${this.props.id} allowing requested, whitelisted properties: ` +
+ requestedWhitelistCapabilies,
+ );
}
}
// TODO -- Add UI to warn about and optionally allow requested capabilities
- this.setState({
- requestedCapabilities,
- allowedCapabilities: this.state.allowedCapabilities.concat(requestedWhitelistCapabilies),
- });
+
+ ActiveWidgetStore.setWidgetCapabilities(this.props.id, requestedWhitelistCapabilies);
if (this.props.onCapabilityRequest) {
this.props.onCapabilityRequest(requestedCapabilities);
@@ -404,7 +388,7 @@ export default class AppTile extends React.Component {
});
}
- _onWidgetAction(payload) {
+ _onAction(payload) {
if (payload.widgetId === this.props.id) {
switch (payload.action) {
case 'm.sticker':
@@ -452,6 +436,11 @@ export default class AppTile extends React.Component {
console.warn('Revoking permission to load widget - ', this.state.widgetUrl);
localStorage.removeItem(this.state.widgetPermissionId);
this.setState({hasPermissionToLoad: false});
+
+ // Force the widget to be non-persistent
+ ActiveWidgetStore.destroyPersistentWidget();
+ const PersistedElement = sdk.getComponent("elements.PersistedElement");
+ PersistedElement.destroyElement(this._persistKey);
}
formatAppTileName() {
@@ -519,6 +508,11 @@ export default class AppTile extends React.Component {
{ target: '_blank', href: this._getSafeUrl(), rel: 'noopener noreferrer'}).click();
}
+ _onReloadWidgetClick(e) {
+ // Reload iframe in this way to avoid cross-origin restrictions
+ this.refs.appFrame.src = this.refs.appFrame.src;
+ }
+
render() {
let appTileBody;
@@ -539,6 +533,8 @@ export default class AppTile extends React.Component {
// (see - https://sites.google.com/a/chromium.org/dev/Home/chromium-security/deprecating-permissions-in-cross-origin-iframes and https://wicg.github.io/feature-policy/)
const iframeFeatures = "microphone; camera; encrypted-media;";
+ const appTileBodyClass = 'mx_AppTileBody' + (this.props.miniMode ? '_mini ' : ' ');
+
if (this.props.show) {
const loadingElement = (
@@ -547,20 +543,20 @@ export default class AppTile extends React.Component {
);
if (this.state.initialising) {
appTileBody = (
-
+
{ loadingElement }
);
} else if (this.state.hasPermissionToLoad == true) {
if (this.isMixedContent()) {
appTileBody = (
-
+
);
} else {
appTileBody = (
-
+
{ this.state.loading && loadingElement }
{ /*
The "is" attribute in the following iframe tag is needed in order to enable rendering of the
@@ -577,11 +573,24 @@ export default class AppTile extends React.Component {
>
);
+ // if the widget would be allowed to remian on screen, we must put it in
+ // a PersistedElement from the get-go, otherwise the iframe will be
+ // re-mounted later when we do.
+ if (this.props.whitelistCapabilities.includes('m.always_on_screen')) {
+ const PersistedElement = sdk.getComponent("elements.PersistedElement");
+ // Also wrap the PersistedElement in a div to fix the height, otherwise
+ // AppTile's border is in the wrong place
+ appTileBody =
;
+ }
}
} else {
const isRoomEncrypted = MatrixClientPeg.get().isRoomEncrypted(this.props.room.roomId);
appTileBody = (
-
+
+
{ this.props.showMenubar &&
@@ -624,6 +643,16 @@ export default class AppTile extends React.Component {
{ this.props.showTitle && this._getTileTitle() }
+ { /* Reload widget */ }
+ { this.props.showReload && }
+
{ /* Popout widget */ }
{ this.props.showPopout &&
{ editableItems }
{ this.props.canEdit ?
+ // This is slightly evil; we want a new instance of
+ // EditableItem when the list grows. To make sure it's
+ // reset to its initial state.
{
if (this.value !== this.props.initialValue) {
self.onValueChanged(submit);
}
@@ -204,23 +197,35 @@ module.exports = React.createClass({
const sel = window.getSelection();
sel.removeAllRanges();
- if (this.props.blurToCancel) {this.cancelEdit();} else {this.onFinish(ev, this.props.blurToSubmit);}
+ if (this.props.blurToCancel) {
+ this.cancelEdit();
+ } else {
+ this.onFinish(ev, this.props.blurToSubmit);
+ }
this.showPlaceholder(!this.value);
},
render: function() {
- let editable_el;
+ const {className, editable, initialValue, label, labelClassName} = this.props;
+ let editableEl;
- if (!this.props.editable || (this.state.phase == this.Phases.Display && (this.props.label || this.props.labelClassName) && !this.value)) {
+ if (!editable || (this.state.phase === this.Phases.Display && (label || labelClassName) && !this.value)) {
// show the label
- editable_el = { this.props.label || this.props.initialValue }
;
+ editableEl =
+ { label || initialValue }
+
;
} else {
// show the content editable div, but manually manage its contents as react and contentEditable don't play nice together
- editable_el =
;
+ editableEl =
;
}
- return editable_el;
+ return editableEl;
},
});
diff --git a/src/components/views/elements/PersistedElement.js b/src/components/views/elements/PersistedElement.js
index c4bac27b4e..ff839de2a9 100644
--- a/src/components/views/elements/PersistedElement.js
+++ b/src/components/views/elements/PersistedElement.js
@@ -14,30 +14,34 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-const React = require('react');
-const ReactDOM = require('react-dom');
+import React from 'react';
+import ReactDOM from 'react-dom';
+import PropTypes from 'prop-types';
+
+import ResizeObserver from 'resize-observer-polyfill';
+
+import dis from '../../../dispatcher';
// Shamelessly ripped off Modal.js. There's probably a better way
// of doing reusable widgets like dialog boxes & menus where we go and
// pass in a custom control as the actual body.
-const ContainerId = "mx_PersistedElement";
+function getContainer(containerId) {
+ return document.getElementById(containerId);
+}
-function getOrCreateContainer() {
- let container = document.getElementById(ContainerId);
+function getOrCreateContainer(containerId) {
+ let container = getContainer(containerId);
if (!container) {
container = document.createElement("div");
- container.id = ContainerId;
+ container.id = containerId;
document.body.appendChild(container);
}
return container;
}
-// Greater than that of the ContextualMenu
-const PE_Z_INDEX = 3000;
-
/*
* Class of component that renders its children in a separate ReactDOM virtual tree
* in a container element appended to document.body.
@@ -50,14 +54,57 @@ const PE_Z_INDEX = 3000;
* bounding rect as the parent of PE.
*/
export default class PersistedElement extends React.Component {
+
+ static propTypes = {
+ // Unique identifier for this PersistedElement instance
+ // Any PersistedElements with the same persistKey will use
+ // the same DOM container.
+ persistKey: PropTypes.string.isRequired,
+ };
+
constructor() {
super();
this.collectChildContainer = this.collectChildContainer.bind(this);
this.collectChild = this.collectChild.bind(this);
+ this._repositionChild = this._repositionChild.bind(this);
+ this._onAction = this._onAction.bind(this);
+
+ this.resizeObserver = new ResizeObserver(this._repositionChild);
+ // Annoyingly, a resize observer is insufficient, since we also care
+ // about when the element moves on the screen without changing its
+ // dimensions. Doesn't look like there's a ResizeObserver equivalent
+ // for this, so we bodge it by listening for document resize and
+ // the timeline_resize action.
+ window.addEventListener('resize', this._repositionChild);
+ this._dispatcherRef = dis.register(this._onAction);
+ }
+
+ /**
+ * Removes the DOM elements created when a PersistedElement with the given
+ * persistKey was mounted. The DOM elements will be re-added if another
+ * PeristedElement is mounted in the future.
+ *
+ * @param {string} persistKey Key used to uniquely identify this PersistedElement
+ */
+ static destroyElement(persistKey) {
+ const container = getContainer('mx_persistedElement_' + persistKey);
+ if (container) {
+ container.remove();
+ }
+ }
+
+ static isMounted(persistKey) {
+ return Boolean(getContainer('mx_persistedElement_' + persistKey));
}
collectChildContainer(ref) {
+ if (this.childContainer) {
+ this.resizeObserver.unobserve(this.childContainer);
+ }
this.childContainer = ref;
+ if (ref) {
+ this.resizeObserver.observe(ref);
+ }
}
collectChild(ref) {
@@ -75,6 +122,19 @@ export default class PersistedElement extends React.Component {
componentWillUnmount() {
this.updateChildVisibility(this.child, false);
+ this.resizeObserver.disconnect();
+ window.removeEventListener('resize', this._repositionChild);
+ dis.unregister(this._dispatcherRef);
+ }
+
+ _onAction(payload) {
+ if (payload.action === 'timeline_resize') {
+ this._repositionChild();
+ }
+ }
+
+ _repositionChild() {
+ this.updateChildPosition(this.child, this.childContainer);
}
updateChild() {
@@ -97,18 +157,16 @@ export default class PersistedElement extends React.Component {
left: parentRect.left + 'px',
width: parentRect.width + 'px',
height: parentRect.height + 'px',
- zIndex: PE_Z_INDEX,
});
}
render() {
- const content =
+ const content =
{this.props.children}
;
- ReactDOM.render(content, getOrCreateContainer());
+ ReactDOM.render(content, getOrCreateContainer('mx_persistedElement_'+this.props.persistKey));
return
;
}
}
-
diff --git a/src/components/views/elements/PersistentApp.js b/src/components/views/elements/PersistentApp.js
new file mode 100644
index 0000000000..facf5d1179
--- /dev/null
+++ b/src/components/views/elements/PersistentApp.js
@@ -0,0 +1,96 @@
+/*
+Copyright 2018 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 React from 'react';
+import RoomViewStore from '../../../stores/RoomViewStore';
+import ActiveWidgetStore from '../../../stores/ActiveWidgetStore';
+import WidgetUtils from '../../../utils/WidgetUtils';
+import sdk from '../../../index';
+import MatrixClientPeg from '../../../MatrixClientPeg';
+
+module.exports = React.createClass({
+ displayName: 'PersistentApp',
+
+ getInitialState: function() {
+ return {
+ roomId: RoomViewStore.getRoomId(),
+ persistentWidgetId: ActiveWidgetStore.getPersistentWidgetId(),
+ };
+ },
+
+ componentWillMount: function() {
+ this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate);
+ ActiveWidgetStore.on('update', this._onActiveWidgetStoreUpdate);
+ },
+
+ componentWillUnmount: function() {
+ if (this._roomStoreToken) {
+ this._roomStoreToken.remove();
+ }
+ ActiveWidgetStore.removeListener('update', this._onActiveWidgetStoreUpdate);
+ },
+
+ _onRoomViewStoreUpdate: function(payload) {
+ if (RoomViewStore.getRoomId() === this.state.roomId) return;
+ this.setState({
+ roomId: RoomViewStore.getRoomId(),
+ });
+ },
+
+ _onActiveWidgetStoreUpdate: function() {
+ this.setState({
+ persistentWidgetId: ActiveWidgetStore.getPersistentWidgetId(),
+ });
+ },
+
+ render: function() {
+ if (this.state.persistentWidgetId) {
+ const persistentWidgetInRoomId = ActiveWidgetStore.getRoomId(this.state.persistentWidgetId);
+ if (this.state.roomId !== persistentWidgetInRoomId) {
+ const persistentWidgetInRoom = MatrixClientPeg.get().getRoom(persistentWidgetInRoomId);
+ // get the widget data
+ const appEvent = WidgetUtils.getRoomWidgets(persistentWidgetInRoom).find((ev) => {
+ return ev.getStateKey() === ActiveWidgetStore.getPersistentWidgetId();
+ });
+ const app = WidgetUtils.makeAppConfig(
+ appEvent.getStateKey(), appEvent.getContent(), appEvent.sender, persistentWidgetInRoomId,
+ );
+ const capWhitelist = WidgetUtils.getCapWhitelistForAppTypeInRoomId(app.type, persistentWidgetInRoomId);
+ const AppTile = sdk.getComponent('elements.AppTile');
+ return
;
+ }
+ }
+ return null;
+ },
+});
+
diff --git a/src/components/views/elements/Pill.js b/src/components/views/elements/Pill.js
index 7e5ad379de..e06ed5a22f 100644
--- a/src/components/views/elements/Pill.js
+++ b/src/components/views/elements/Pill.js
@@ -1,5 +1,6 @@
/*
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -22,12 +23,13 @@ import PropTypes from 'prop-types';
import MatrixClientPeg from '../../../MatrixClientPeg';
import { MATRIXTO_URL_PATTERN } from '../../../linkify-matrix';
import { getDisplayAliasForRoom } from '../../../Rooms';
+import FlairStore from "../../../stores/FlairStore";
const REGEX_MATRIXTO = new RegExp(MATRIXTO_URL_PATTERN);
// For URLs of matrix.to links in the timeline which have been reformatted by
// HttpUtils transformTags to relative links. This excludes event URLs (with `[^\/]*`)
-const REGEX_LOCAL_MATRIXTO = /^#\/(?:user|room)\/(([\#\!\@\+])[^\/]*)$/;
+const REGEX_LOCAL_MATRIXTO = /^#\/(?:user|room|group)\/(([#!@+])[^\/]*)$/;
const Pill = React.createClass({
statics: {
@@ -45,6 +47,7 @@ const Pill = React.createClass({
},
TYPE_USER_MENTION: 'TYPE_USER_MENTION',
TYPE_ROOM_MENTION: 'TYPE_ROOM_MENTION',
+ TYPE_GROUP_MENTION: 'TYPE_GROUP_MENTION',
TYPE_AT_ROOM_MENTION: 'TYPE_AT_ROOM_MENTION', // '@room' mention
},
@@ -59,6 +62,8 @@ const Pill = React.createClass({
room: PropTypes.instanceOf(Room),
// Whether to include an avatar in the pill
shouldShowPillAvatar: PropTypes.bool,
+ // Whether to render this pill as if it were highlit by a selection
+ isSelected: PropTypes.bool,
},
@@ -81,12 +86,14 @@ const Pill = React.createClass({
// The member related to the user pill
member: null,
+ // The group related to the group pill
+ group: null,
// The room related to the room pill
room: null,
};
},
- componentWillReceiveProps(nextProps) {
+ async componentWillReceiveProps(nextProps) {
let regex = REGEX_MATRIXTO;
if (nextProps.inMessage) {
regex = REGEX_LOCAL_MATRIXTO;
@@ -109,9 +116,11 @@ const Pill = React.createClass({
'@': Pill.TYPE_USER_MENTION,
'#': Pill.TYPE_ROOM_MENTION,
'!': Pill.TYPE_ROOM_MENTION,
+ '+': Pill.TYPE_GROUP_MENTION,
}[prefix];
let member;
+ let group;
let room;
switch (pillType) {
case Pill.TYPE_AT_ROOM_MENTION: {
@@ -140,8 +149,21 @@ const Pill = React.createClass({
}
}
break;
+ case Pill.TYPE_GROUP_MENTION: {
+ const cli = MatrixClientPeg.get();
+
+ try {
+ group = await FlairStore.getGroupProfileCached(cli, resourceId);
+ } catch (e) { // if FlairStore failed, fall back to just groupId
+ group = {
+ groupId: resourceId,
+ avatarUrl: null,
+ name: null,
+ };
+ }
+ }
}
- this.setState({resourceId, pillType, member, room});
+ this.setState({resourceId, pillType, member, group, room});
},
componentWillMount() {
@@ -165,6 +187,9 @@ const Pill = React.createClass({
getContent: () => {
return {avatar_url: resp.avatar_url};
},
+ getDirectionalContent: function() {
+ return this.getContent();
+ },
};
this.setState({member});
}).catch((err) => {
@@ -179,6 +204,7 @@ const Pill = React.createClass({
});
},
render: function() {
+ const BaseAvatar = sdk.getComponent('views.avatars.BaseAvatar');
const MemberAvatar = sdk.getComponent('avatars.MemberAvatar');
const RoomAvatar = sdk.getComponent('avatars.RoomAvatar');
@@ -229,10 +255,25 @@ const Pill = React.createClass({
}
}
break;
+ case Pill.TYPE_GROUP_MENTION: {
+ if (this.state.group) {
+ const {avatarUrl, groupId, name} = this.state.group;
+ const cli = MatrixClientPeg.get();
+
+ linkText = groupId;
+ if (this.props.shouldShowPillAvatar) {
+ avatar =
;
+ }
+ pillClass = 'mx_GroupPill';
+ }
+ }
+ break;
}
const classes = classNames(pillClass, {
"mx_UserPill_me": userId === MatrixClientPeg.get().credentials.userId,
+ "mx_UserPill_selected": this.props.isSelected,
});
if (this.state.pillType) {
diff --git a/src/components/views/elements/ReplyThread.js b/src/components/views/elements/ReplyThread.js
index 6714de81a4..f9f3f4ca97 100644
--- a/src/components/views/elements/ReplyThread.js
+++ b/src/components/views/elements/ReplyThread.js
@@ -160,7 +160,7 @@ export default class ReplyThread extends React.Component {
}
static makeThread(parentEv, onWidgetLoad, ref) {
- if (!SettingsStore.isFeatureEnabled("feature_rich_quoting") || !ReplyThread.getParentEventId(parentEv)) {
+ if (!ReplyThread.getParentEventId(parentEv)) {
return
;
}
return
;
diff --git a/src/components/views/elements/TagTile.js b/src/components/views/elements/TagTile.js
index fb3ddee093..5bea68e814 100644
--- a/src/components/views/elements/TagTile.js
+++ b/src/components/views/elements/TagTile.js
@@ -1,5 +1,6 @@
/*
Copyright 2017 New Vector Ltd.
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -103,14 +104,27 @@ export default React.createClass({
}
},
- onContextButtonClick: function(e) {
- e.preventDefault();
- e.stopPropagation();
-
+ _openContextMenu: function(x, y, chevronOffset) {
// Hide the (...) immediately
this.setState({ hover: false });
const TagTileContextMenu = sdk.getComponent('context_menus.TagTileContextMenu');
+ ContextualMenu.createMenu(TagTileContextMenu, {
+ chevronOffset: chevronOffset,
+ left: x,
+ top: y,
+ tag: this.props.tag,
+ onFinished: () => {
+ this.setState({ menuDisplayed: false });
+ },
+ });
+ this.setState({ menuDisplayed: true });
+ },
+
+ onContextButtonClick: function(e) {
+ e.preventDefault();
+ e.stopPropagation();
+
const elementRect = e.target.getBoundingClientRect();
// The window X and Y offsets are to adjust position when zoomed in to page
@@ -119,17 +133,14 @@ export default React.createClass({
let y = (elementRect.top + (elementRect.height / 2) + window.pageYOffset);
y = y - (chevronOffset + 8); // where 8 is half the height of the chevron
- const self = this;
- ContextualMenu.createMenu(TagTileContextMenu, {
- chevronOffset: chevronOffset,
- left: x,
- top: y,
- tag: this.props.tag,
- onFinished: function() {
- self.setState({ menuDisplayed: false });
- },
- });
- this.setState({ menuDisplayed: true });
+ this._openContextMenu(x, y, chevronOffset);
+ },
+
+ onContextMenu: function(e) {
+ e.preventDefault();
+
+ const chevronOffset = 12;
+ this._openContextMenu(e.clientX, e.clientY - (chevronOffset + 8), chevronOffset);
},
onMouseOver: function() {
@@ -164,7 +175,7 @@ export default React.createClass({
{ "\u00B7\u00B7\u00B7" }
:
;
- return
+ return
- { _t("Yes please") }
+ { _t("Yes, I want to help!") }
diff --git a/src/components/views/globals/PasswordNagBar.js b/src/components/views/globals/PasswordNagBar.js
index 93f4fe06e5..4233363b95 100644
--- a/src/components/views/globals/PasswordNagBar.js
+++ b/src/components/views/globals/PasswordNagBar.js
@@ -1,5 +1,6 @@
/*
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -14,28 +15,15 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-
import React from 'react';
import sdk from '../../../index';
import Modal from '../../../Modal';
-import dis from '../../../dispatcher';
import { _t } from '../../../languageHandler';
export default React.createClass({
onUpdateClicked: function() {
const SetPasswordDialog = sdk.getComponent('dialogs.SetPasswordDialog');
- Modal.createTrackedDialog('Set Password Dialog', 'Password Nag Bar', SetPasswordDialog, {
- onFinished: (passwordChanged) => {
- if (!passwordChanged) {
- return;
- }
- // Notify SessionStore that the user's password was changed
- dis.dispatch({
- action: 'password_changed',
- });
- },
- });
+ Modal.createTrackedDialog('Set Password Dialog', 'Password Nag Bar', SetPasswordDialog);
},
render: function() {
diff --git a/src/components/views/globals/ServerLimitBar.js b/src/components/views/globals/ServerLimitBar.js
new file mode 100644
index 0000000000..0b924fd2e2
--- /dev/null
+++ b/src/components/views/globals/ServerLimitBar.js
@@ -0,0 +1,98 @@
+/*
+Copyright 2018 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 React from 'react';
+import PropTypes from 'prop-types';
+import classNames from 'classnames';
+import { _td } from '../../../languageHandler';
+import { messageForResourceLimitError } from '../../../utils/ErrorUtils';
+
+export default React.createClass({
+ propTypes: {
+ // 'hard' if the logged in user has been locked out, 'soft' if they haven't
+ kind: PropTypes.string,
+ adminContact: PropTypes.string,
+ // The type of limit that has been hit.
+ limitType: PropTypes.string.isRequired,
+ },
+
+ getDefaultProps: function() {
+ return {
+ kind: 'hard',
+ };
+ },
+
+ render: function() {
+ const toolbarClasses = {
+ 'mx_MatrixToolbar': true,
+ };
+
+ let adminContact;
+ let limitError;
+ if (this.props.kind === 'hard') {
+ toolbarClasses['mx_MatrixToolbar_error'] = true;
+
+ adminContact = messageForResourceLimitError(
+ this.props.limitType,
+ this.props.adminContact,
+ {
+ '': _td("Please contact your service administrator to continue using the service."),
+ },
+ );
+ limitError = messageForResourceLimitError(
+ this.props.limitType,
+ this.props.adminContact,
+ {
+ 'monthly_active_user': _td("This homeserver has hit its Monthly Active User limit."),
+ '': _td("This homeserver has exceeded one of its resource limits."),
+ },
+ );
+ } else {
+ toolbarClasses['mx_MatrixToolbar_info'] = true;
+ adminContact = messageForResourceLimitError(
+ this.props.limitType,
+ this.props.adminContact,
+ {
+ '': _td("Please contact your service administrator to get this limit increased."),
+ },
+ );
+ limitError = messageForResourceLimitError(
+ this.props.limitType,
+ this.props.adminContact,
+ {
+ 'monthly_active_user': _td(
+ "This homeserver has hit its Monthly Active User limit so " +
+ "some users will not be able to log in .",
+ ),
+ '': _td(
+ "This homeserver has exceeded one of its resource limits so " +
+ "some users will not be able to log in .",
+ ),
+ },
+ {'b': sub => {sub} },
+ );
+ }
+ return (
+
+
+ {limitError}
+ {' '}
+ {adminContact}
+
+
+ );
+ },
+});
diff --git a/src/components/views/groups/GroupInviteTile.js b/src/components/views/groups/GroupInviteTile.js
index d97464e8ca..9e28ff5adf 100644
--- a/src/components/views/groups/GroupInviteTile.js
+++ b/src/components/views/groups/GroupInviteTile.js
@@ -1,5 +1,6 @@
/*
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -20,6 +21,9 @@ import { MatrixClient } from 'matrix-js-sdk';
import sdk from '../../../index';
import dis from '../../../dispatcher';
import AccessibleButton from '../elements/AccessibleButton';
+import classNames from 'classnames';
+import MatrixClientPeg from "../../../MatrixClientPeg";
+import {createMenu} from "../../structures/ContextualMenu";
export default React.createClass({
displayName: 'GroupInviteTile',
@@ -32,6 +36,15 @@ export default React.createClass({
matrixClient: PropTypes.instanceOf(MatrixClient),
},
+ getInitialState: function() {
+ return ({
+ hover: false,
+ badgeHover: false,
+ menuDisplayed: false,
+ selected: this.props.group.groupId === null, // XXX: this needs linking to LoggedInView/GroupView state
+ });
+ },
+
onClick: function(e) {
dis.dispatch({
action: 'view_group',
@@ -39,6 +52,69 @@ export default React.createClass({
});
},
+ onMouseEnter: function() {
+ const state = {hover: true};
+ // Only allow non-guests to access the context menu
+ if (!this.context.matrixClient.isGuest()) {
+ state.badgeHover = true;
+ }
+ this.setState(state);
+ },
+
+ onMouseLeave: function() {
+ this.setState({
+ badgeHover: false,
+ hover: false,
+ });
+ },
+
+ _showContextMenu: function(x, y, chevronOffset) {
+ const GroupInviteTileContextMenu = sdk.getComponent('context_menus.GroupInviteTileContextMenu');
+
+ createMenu(GroupInviteTileContextMenu, {
+ chevronOffset,
+ left: x,
+ top: y,
+ group: this.props.group,
+ onFinished: () => {
+ this.setState({ menuDisplayed: false });
+ },
+ });
+ this.setState({ menuDisplayed: true });
+ },
+
+ onContextMenu: function(e) {
+ // Prevent the RoomTile onClick event firing as well
+ e.preventDefault();
+ // Only allow non-guests to access the context menu
+ if (MatrixClientPeg.get().isGuest()) return;
+
+ const chevronOffset = 12;
+ this._showContextMenu(e.clientX, e.clientY - (chevronOffset + 8), chevronOffset);
+ },
+
+ onBadgeClicked: function(e) {
+ // Prevent the RoomTile onClick event firing as well
+ e.stopPropagation();
+ // Only allow non-guests to access the context menu
+ if (MatrixClientPeg.get().isGuest()) return;
+
+ // If the badge is clicked, then no longer show tooltip
+ if (this.props.collapsed) {
+ this.setState({ hover: false });
+ }
+
+ const elementRect = e.target.getBoundingClientRect();
+
+ // The window X and Y offsets are to adjust position when zoomed in to page
+ const x = elementRect.right + window.pageXOffset + 3;
+ const chevronOffset = 12;
+ let y = (elementRect.top + (elementRect.height / 2) + window.pageYOffset);
+ y = y - (chevronOffset + 8); // where 8 is half the height of the chevron
+
+ this._showContextMenu(x, y, chevronOffset);
+ },
+
render: function() {
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
const EmojiText = sdk.getComponent('elements.EmojiText');
@@ -49,19 +125,40 @@ export default React.createClass({
const av = ;
- const label =
+ const nameClasses = classNames('mx_RoomTile_name mx_RoomTile_invite mx_RoomTile_badgeShown', {
+ 'mx_RoomTile_badgeShown': this.state.badgeHover || this.state.menuDisplayed,
+ });
+
+ const label =
{ groupName }
;
- const badge = !
;
+ const badgeEllipsis = this.state.badgeHover || this.state.menuDisplayed;
+ const badgeClasses = classNames('mx_RoomTile_badge mx_RoomTile_highlight', {
+ 'mx_RoomTile_badgeButton': badgeEllipsis,
+ });
+
+ const badgeContent = badgeEllipsis ? '\u00B7\u00B7\u00B7' : '!';
+ const badge = { badgeContent }
;
+
+ let tooltip;
+ if (this.props.collapsed && this.state.hover) {
+ const RoomTooltip = sdk.getComponent("rooms.RoomTooltip");
+ tooltip = ;
+ }
+
+ const classes = classNames('mx_RoomTile mx_RoomTile_highlight', {
+ 'mx_RoomTile_menuDisplayed': this.state.menuDisplayed,
+ 'mx_RoomTile_selected': this.state.selected,
+ });
return (
-
+
{ av }
@@ -69,6 +166,7 @@ export default React.createClass({
{ label }
{ badge }
+ { tooltip }
);
},
diff --git a/src/components/views/groups/GroupMemberInfo.js b/src/components/views/groups/GroupMemberInfo.js
index 4fed293bec..ca59075912 100644
--- a/src/components/views/groups/GroupMemberInfo.js
+++ b/src/components/views/groups/GroupMemberInfo.js
@@ -187,7 +187,7 @@ module.exports = React.createClass({
return (
-
+
diff --git a/src/components/views/groups/GroupPublicityToggle.js b/src/components/views/groups/GroupPublicityToggle.js
index 78522c2f55..ff0fc553b8 100644
--- a/src/components/views/groups/GroupPublicityToggle.js
+++ b/src/components/views/groups/GroupPublicityToggle.js
@@ -69,7 +69,7 @@ export default React.createClass({
render() {
const GroupTile = sdk.getComponent('groups.GroupTile');
const input =
;
const labelText = !this.state.ready ? _t("Loading...") :
diff --git a/src/components/views/groups/GroupTile.js b/src/components/views/groups/GroupTile.js
index c1554cd9ed..509c209baa 100644
--- a/src/components/views/groups/GroupTile.js
+++ b/src/components/views/groups/GroupTile.js
@@ -22,6 +22,7 @@ import sdk from '../../../index';
import dis from '../../../dispatcher';
import FlairStore from '../../../stores/FlairStore';
+function nop() {}
const GroupTile = React.createClass({
displayName: 'GroupTile',
@@ -81,7 +82,7 @@ const GroupTile = React.createClass({
) : null;
// XXX: Use onMouseDown as a workaround for https://github.com/atlassian/react-beautiful-dnd/issues/273
// instead of onClick. Otherwise we experience https://github.com/vector-im/riot-web/issues/6156
- return
+ return
{ (droppableProvided, droppableSnapshot) => (
diff --git a/src/components/views/login/PasswordLogin.js b/src/components/views/login/PasswordLogin.js
index 71dfbe2c36..a0e5ab0ddb 100644
--- a/src/components/views/login/PasswordLogin.js
+++ b/src/components/views/login/PasswordLogin.js
@@ -28,6 +28,7 @@ import SdkConfig from '../../../SdkConfig';
*/
class PasswordLogin extends React.Component {
static defaultProps = {
+ onError: function() {},
onUsernameChanged: function() {},
onPasswordChanged: function() {},
onPhoneCountryChanged: function() {},
@@ -56,33 +57,64 @@ class PasswordLogin extends React.Component {
this.onPhoneCountryChanged = this.onPhoneCountryChanged.bind(this);
this.onPhoneNumberChanged = this.onPhoneNumberChanged.bind(this);
this.onPasswordChanged = this.onPasswordChanged.bind(this);
+ this.isLoginEmpty = this.isLoginEmpty.bind(this);
}
componentWillMount() {
this._passwordField = null;
+ this._loginField = null;
}
componentWillReceiveProps(nextProps) {
if (!this.props.loginIncorrect && nextProps.loginIncorrect) {
- field_input_incorrect(this._passwordField);
+ field_input_incorrect(this.isLoginEmpty() ? this._loginField : this._passwordField);
}
}
onSubmitForm(ev) {
ev.preventDefault();
- if (this.state.loginType === PasswordLogin.LOGIN_FIELD_PHONE) {
- this.props.onSubmit(
- '', // XXX: Synapse breaks if you send null here:
- this.state.phoneCountry,
- this.state.phoneNumber,
- this.state.password,
- );
+
+ let username = ''; // XXX: Synapse breaks if you send null here:
+ let phoneCountry = null;
+ let phoneNumber = null;
+ let error;
+
+ switch (this.state.loginType) {
+ case PasswordLogin.LOGIN_FIELD_EMAIL:
+ username = this.state.username;
+ if (!username) {
+ error = _t('The email field must not be blank.');
+ }
+ break;
+ case PasswordLogin.LOGIN_FIELD_MXID:
+ username = this.state.username;
+ if (!username) {
+ error = _t('The user name field must not be blank.');
+ }
+ break;
+ case PasswordLogin.LOGIN_FIELD_PHONE:
+ phoneCountry = this.state.phoneCountry;
+ phoneNumber = this.state.phoneNumber;
+ if (!phoneNumber) {
+ error = _t('The phone number field must not be blank.');
+ }
+ break;
+ }
+
+ if (error) {
+ this.props.onError(error);
return;
}
+
+ if (!this.state.password) {
+ this.props.onError(_t('The password field must not be blank.'));
+ return;
+ }
+
this.props.onSubmit(
- this.state.username,
- null,
- null,
+ username,
+ phoneCountry,
+ phoneNumber,
this.state.password,
);
}
@@ -93,6 +125,7 @@ class PasswordLogin extends React.Component {
}
onLoginTypeChange(loginType) {
+ this.props.onError(null); // send a null error to clear any error messages
this.setState({
loginType: loginType,
username: "", // Reset because email and username use the same state
@@ -126,8 +159,10 @@ class PasswordLogin extends React.Component {
switch (loginType) {
case PasswordLogin.LOGIN_FIELD_EMAIL:
classes.mx_Login_email = true;
+ classes.error = this.props.loginIncorrect && !this.state.username;
return
{this._loginField = e;}}
key="email_input"
type="text"
name="username" // make it a little easier for browser's remember-password
@@ -139,8 +174,10 @@ class PasswordLogin extends React.Component {
/>;
case PasswordLogin.LOGIN_FIELD_MXID:
classes.mx_Login_username = true;
+ classes.error = this.props.loginIncorrect && !this.state.username;
return
{this._loginField = e;}}
key="username_input"
type="text"
name="username" // make it a little easier for browser's remember-password
@@ -153,14 +190,14 @@ class PasswordLogin extends React.Component {
autoFocus
disabled={disabled}
/>;
- case PasswordLogin.LOGIN_FIELD_PHONE:
+ case PasswordLogin.LOGIN_FIELD_PHONE: {
const CountryDropdown = sdk.getComponent('views.login.CountryDropdown');
classes.mx_Login_phoneNumberField = true;
classes.mx_Login_field_has_prefix = true;
+ classes.error = this.props.loginIncorrect && !this.state.phoneNumber;
return
{this._loginField = e;}}
key="phone_input"
type="text"
name="phoneNumber"
@@ -180,6 +217,17 @@ class PasswordLogin extends React.Component {
disabled={disabled}
/>
;
+ }
+ }
+ }
+
+ isLoginEmpty() {
+ switch (this.state.loginType) {
+ case PasswordLogin.LOGIN_FIELD_EMAIL:
+ case PasswordLogin.LOGIN_FIELD_MXID:
+ return !this.state.username;
+ case PasswordLogin.LOGIN_FIELD_PHONE:
+ return !this.state.phoneCountry || !this.state.phoneNumber;
}
}
@@ -207,7 +255,7 @@ class PasswordLogin extends React.Component {
const pwFieldClass = classNames({
mx_Login_field: true,
mx_Login_field_disabled: matrixIdText === '',
- error: this.props.loginIncorrect,
+ error: this.props.loginIncorrect && !this.isLoginEmpty(), // only error password if error isn't top field
});
const Dropdown = sdk.getComponent('elements.Dropdown');
@@ -258,6 +306,7 @@ PasswordLogin.LOGIN_FIELD_PHONE = "login_field_phone";
PasswordLogin.propTypes = {
onSubmit: PropTypes.func.isRequired, // fn(username, password)
+ onError: PropTypes.func,
onForgotPasswordClick: PropTypes.func, // fn()
initialUsername: PropTypes.string,
initialPhoneCountry: PropTypes.string,
diff --git a/src/components/views/messages/MFileBody.js b/src/components/views/messages/MFileBody.js
index 246ea6891f..292ac25d42 100644
--- a/src/components/views/messages/MFileBody.js
+++ b/src/components/views/messages/MFileBody.js
@@ -327,6 +327,7 @@ module.exports = React.createClass({
// will have the correct name when the user tries to download it.
// We can't provide a Content-Disposition header like we would for HTTP.
download: fileName,
+ rel: "noopener",
target: "_blank",
textContent: _t("Download %(text)s", { text: text }),
}, "*");
diff --git a/src/components/views/messages/MImageBody.js b/src/components/views/messages/MImageBody.js
index 8045d43104..e2ff697e55 100644
--- a/src/components/views/messages/MImageBody.js
+++ b/src/components/views/messages/MImageBody.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2018 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -15,48 +16,43 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-
import React from 'react';
import PropTypes from 'prop-types';
import { MatrixClient } from 'matrix-js-sdk';
import MFileBody from './MFileBody';
-import ImageUtils from '../../../ImageUtils';
import Modal from '../../../Modal';
import sdk from '../../../index';
-import dis from '../../../dispatcher';
import { decryptFile } from '../../../utils/DecryptFile';
import Promise from 'bluebird';
import { _t } from '../../../languageHandler';
import SettingsStore from "../../../settings/SettingsStore";
-export default class extends React.Component {
- displayName: 'MImageBody'
-
+export default class MImageBody extends React.Component {
static propTypes = {
/* the MatrixEvent to show */
mxEvent: PropTypes.object.isRequired,
/* called when the image has loaded */
onWidgetLoad: PropTypes.func.isRequired,
- }
+
+ /* the maximum image height to use */
+ maxImageHeight: PropTypes.number,
+ };
static contextTypes = {
matrixClient: PropTypes.instanceOf(MatrixClient),
- }
+ };
constructor(props) {
super(props);
- this.onAction = this.onAction.bind(this);
this.onImageError = this.onImageError.bind(this);
this.onImageLoad = this.onImageLoad.bind(this);
this.onImageEnter = this.onImageEnter.bind(this);
this.onImageLeave = this.onImageLeave.bind(this);
this.onClientSync = this.onClientSync.bind(this);
this.onClick = this.onClick.bind(this);
- this.fixupHeight = this.fixupHeight.bind(this);
this._isGif = this._isGif.bind(this);
this.state = {
@@ -65,6 +61,9 @@ export default class extends React.Component {
decryptedBlob: null,
error: null,
imgError: false,
+ imgLoaded: false,
+ loadedImageDimensions: null,
+ hover: false,
};
}
@@ -88,7 +87,7 @@ export default class extends React.Component {
}
onClick(ev) {
- if (ev.button == 0 && !ev.metaKey) {
+ if (ev.button === 0 && !ev.metaKey) {
ev.preventDefault();
const content = this.props.mxEvent.getContent();
const httpUrl = this._getContentUrl();
@@ -119,6 +118,8 @@ export default class extends React.Component {
}
onImageEnter(e) {
+ this.setState({ hover: true });
+
if (!this._isGif() || SettingsStore.getValue("autoplayGifsAndVideos")) {
return;
}
@@ -127,6 +128,8 @@ export default class extends React.Component {
}
onImageLeave(e) {
+ this.setState({ hover: false });
+
if (!this._isGif() || SettingsStore.getValue("autoplayGifsAndVideos")) {
return;
}
@@ -142,6 +145,16 @@ export default class extends React.Component {
onImageLoad() {
this.props.onWidgetLoad();
+
+ let loadedImageDimensions;
+
+ if (this.refs.image) {
+ const { naturalWidth, naturalHeight } = this.refs.image;
+
+ loadedImageDimensions = { naturalWidth, naturalHeight };
+ }
+
+ this.setState({ imgLoaded: true, loadedImageDimensions });
}
_getContentUrl() {
@@ -161,9 +174,7 @@ export default class extends React.Component {
return this.state.decryptedThumbnailUrl;
}
return this.state.decryptedUrl;
- } else if (content.info &&
- content.info.mimetype == "image/svg+xml" &&
- content.info.thumbnail_url) {
+ } else if (content.info && content.info.mimetype === "image/svg+xml" && content.info.thumbnail_url) {
// special case to return client-generated thumbnails for SVGs, if any,
// given we deliberately don't thumbnail them serverside to prevent
// billion lol attacks and similar
@@ -176,11 +187,10 @@ export default class extends React.Component {
}
componentDidMount() {
- this.dispatcherRef = dis.register(this.onAction);
const content = this.props.mxEvent.getContent();
if (content.file !== undefined && this.state.decryptedUrl === null) {
let thumbnailPromise = Promise.resolve(null);
- if (content.info.thumbnail_file) {
+ if (content.info && content.info.thumbnail_file) {
thumbnailPromise = decryptFile(
content.info.thumbnail_file,
).then(function(blob) {
@@ -207,7 +217,6 @@ export default class extends React.Component {
});
}).done();
}
- this.fixupHeight();
this._afterComponentDidMount();
}
@@ -218,7 +227,6 @@ export default class extends React.Component {
componentWillUnmount() {
this.unmounted = true;
- dis.unregister(this.dispatcherRef);
this.context.matrixClient.removeListener('sync', this.onClientSync);
this._afterComponentWillUnmount();
@@ -235,59 +243,113 @@ export default class extends React.Component {
_afterComponentWillUnmount() {
}
- onAction(payload) {
- if (payload.action === "timeline_resize") {
- this.fixupHeight();
- }
- }
-
- fixupHeight() {
- if (!this.refs.image) {
- console.warn(`Refusing to fix up height on ${this.displayName} with no image element`);
- return;
- }
-
- const content = this.props.mxEvent.getContent();
- const timelineWidth = this.refs.body.offsetWidth;
- const maxHeight = 600; // let images take up as much width as they can so long as the height doesn't exceed 600px.
- // the alternative here would be 600*timelineWidth/800; to scale them down to fit inside a 4:3 bounding box
-
- // FIXME: this will break on clientside generated thumbnails (as per e2e rooms)
- // which may well be much smaller than the 800x600 bounding box.
-
- // FIXME: It will also break really badly for images with broken or missing thumbnails
-
- // FIXME: Because we don't know what size of thumbnail the server's actually going to send
- // us, we can't even really layout the page nicely for it. Instead we have to assume
- // it'll target 800x600 and we'll downsize if needed to make things fit.
-
- // console.log("trying to fit image into timelineWidth of " + this.refs.body.offsetWidth + " or " + this.refs.body.clientWidth);
- let thumbHeight = null;
- if (content.info) {
- thumbHeight = ImageUtils.thumbHeight(content.info.w, content.info.h, timelineWidth, maxHeight);
- }
- this.refs.image.style.height = thumbHeight + "px";
- // console.log("Image height now", thumbHeight);
- }
-
_messageContent(contentUrl, thumbUrl, content) {
+ let infoWidth;
+ let infoHeight;
+
+ if (content && content.info && content.info.w && content.info.h) {
+ infoWidth = content.info.w;
+ infoHeight = content.info.h;
+ } else {
+ // Whilst the image loads, display nothing.
+ //
+ // Once loaded, use the loaded image dimensions stored in `loadedImageDimensions`.
+ //
+ // By doing this, the image "pops" into the timeline, but is still restricted
+ // by the same width and height logic below.
+ if (!this.state.loadedImageDimensions) {
+ return this.wrapImage(contentUrl,
+
,
+ );
+ }
+ infoWidth = this.state.loadedImageDimensions.naturalWidth;
+ infoHeight = this.state.loadedImageDimensions.naturalHeight;
+ }
+
+ // The maximum height of the thumbnail as it is rendered as an
+ const maxHeight = Math.min(this.props.maxImageHeight || 600, infoHeight);
+ // The maximum width of the thumbnail, as dictated by its natural
+ // maximum height.
+ const maxWidth = infoWidth * maxHeight / infoHeight;
+
+ let img = null;
+ let placeholder = null;
+
+ // e2e image hasn't been decrypted yet
+ if (content.file !== undefined && this.state.decryptedUrl === null) {
+ placeholder =
;
+ } else if (!this.state.imgLoaded) {
+ // Deliberately, getSpinner is left unimplemented here, MStickerBody overides
+ placeholder = this.getPlaceholder();
+ }
+
+ const showPlaceholder = Boolean(placeholder);
+
+ if (thumbUrl && !this.state.imgError) {
+ // Restrict the width of the thumbnail here, otherwise it will fill the container
+ // which has the same width as the timeline
+ // mx_MImageBody_thumbnail resizes img to exactly container size
+ img =
;
+ }
+
const thumbnail = (
-
-
-
+
+ { /* Calculate aspect ratio, using %padding will size _container correctly */ }
+
+
+ { showPlaceholder &&
+
+ }
+
+
+ { img }
+
+
+ { this.state.hover && this.getTooltip() }
+
);
- return (
-
- { thumbUrl && !this.state.imgError ? thumbnail : '' }
-
-
- );
+ return this.wrapImage(contentUrl, thumbnail);
+ }
+
+ // Overidden by MStickerBody
+ wrapImage(contentUrl, children) {
+ return
+ {children}
+ ;
+ }
+
+ // Overidden by MStickerBody
+ getPlaceholder() {
+ // MImageBody doesn't show a placeholder whilst the image loads, (but it could do)
+ return null;
+ }
+
+ // Overidden by MStickerBody
+ getTooltip() {
+ return null;
+ }
+
+ // Overidden by MStickerBody
+ getFileBody() {
+ return
;
}
render() {
@@ -302,25 +364,6 @@ export default class extends React.Component {
);
}
- if (content.file !== undefined && this.state.decryptedUrl === null) {
- // Need to decrypt the attachment
- // The attachment is decrypted in componentDidMount.
- // For now add an img tag with a spinner.
- return (
-
-
-
-
-
- );
- }
-
const contentUrl = this._getContentUrl();
let thumbUrl;
if (this._isGif() && SettingsStore.getValue("autoplayGifsAndVideos")) {
@@ -329,6 +372,12 @@ export default class extends React.Component {
thumbUrl = this._getThumbUrl();
}
- return this._messageContent(contentUrl, thumbUrl, content);
+ const thumbnail = this._messageContent(contentUrl, thumbUrl, content);
+ const fileBody = this.getFileBody();
+
+ return
+ { thumbnail }
+ { fileBody }
+ ;
}
}
diff --git a/src/components/views/messages/MStickerBody.js b/src/components/views/messages/MStickerBody.js
index aaad5ba75e..82a530d503 100644
--- a/src/components/views/messages/MStickerBody.js
+++ b/src/components/views/messages/MStickerBody.js
@@ -16,145 +16,42 @@ limitations under the License.
'use strict';
+import React from 'react';
import MImageBody from './MImageBody';
import sdk from '../../../index';
-import TintableSVG from '../elements/TintableSvg';
export default class MStickerBody extends MImageBody {
- displayName: 'MStickerBody'
-
- constructor(props) {
- super(props);
-
- this._onMouseEnter = this._onMouseEnter.bind(this);
- this._onMouseLeave = this._onMouseLeave.bind(this);
- this._onImageLoad = this._onImageLoad.bind(this);
- }
-
- _onMouseEnter() {
- this.setState({showTooltip: true});
- }
-
- _onMouseLeave() {
- this.setState({showTooltip: false});
- }
-
- _onImageLoad() {
- this.setState({
- placeholderClasses: 'mx_MStickerBody_placeholder_invisible',
- });
- const hidePlaceholderTimer = setTimeout(() => {
- this.setState({
- placeholderVisible: false,
- imageClasses: 'mx_MStickerBody_image_visible',
- });
- }, 500);
- this.setState({hidePlaceholderTimer});
- if (this.props.onWidgetLoad) {
- this.props.onWidgetLoad();
- }
- }
-
- _afterComponentDidMount() {
- if (this.refs.image.complete) {
- // Image already loaded
- this.setState({
- placeholderVisible: false,
- placeholderClasses: '.mx_MStickerBody_placeholder_invisible',
- imageClasses: 'mx_MStickerBody_image_visible',
- });
- } else {
- // Image not already loaded
- this.setState({
- placeholderVisible: true,
- placeholderClasses: '',
- imageClasses: '',
- });
- }
- }
-
- _afterComponentWillUnmount() {
- if (this.state.hidePlaceholderTimer) {
- clearTimeout(this.state.hidePlaceholderTimer);
- this.setState({hidePlaceholderTimer: null});
- }
- }
-
- _messageContent(contentUrl, thumbUrl, content) {
- let tooltip;
- const tooltipBody = (
- this.props.mxEvent &&
- this.props.mxEvent.getContent() &&
- this.props.mxEvent.getContent().body) ?
- this.props.mxEvent.getContent().body : null;
- if (this.state.showTooltip && tooltipBody) {
- const RoomTooltip = sdk.getComponent('rooms.RoomTooltip');
- tooltip =
;
- }
-
- const gutterSize = 0;
- let placeholderSize = 75;
- let placeholderFixupHeight = '100px';
- let placeholderTop = 0;
- let placeholderLeft = 0;
-
- if (content.info) {
- placeholderTop = Math.floor((content.info.h/2) - (placeholderSize/2)) + 'px';
- placeholderLeft = Math.floor((content.info.w/2) - (placeholderSize/2) + gutterSize) + 'px';
- placeholderFixupHeight = content.info.h + 'px';
- }
-
- // The pixel size of sticker images is generally larger than their intended display
- // size so they render at native reolution on HiDPI displays. We therefore need to
- // explicity set the size so they render at the intended size.
- // XXX: This will be clobberred when we run fixupHeight(), but we need to do it
- // here otherwise the stickers are momentarily displayed at the pixel size.
- const imageStyle = {
- height: content.info.h,
- // leave the browser the calculate the width automatically
- };
-
- placeholderSize = placeholderSize + 'px';
-
- // Body 'ref' required by MImageBody
- return (
-
-
- { this.state.placeholderVisible &&
-
-
-
}
-
- { tooltip }
-
-
- );
- }
-
// Empty to prevent default behaviour of MImageBody
onClick() {
}
+
+ // MStickerBody doesn't need a wrapping `
`, but it does need extra padding
+ // which is added by mx_MStickerBody_wrapper
+ wrapImage(contentUrl, children) {
+ return { children }
;
+ }
+
+ // Placeholder to show in place of the sticker image if
+ // img onLoad hasn't fired yet.
+ getPlaceholder() {
+ const TintableSVG = sdk.getComponent('elements.TintableSvg');
+ return ;
+ }
+
+ // Tooltip to show on mouse over
+ getTooltip() {
+ const content = this.props.mxEvent && this.props.mxEvent.getContent();
+
+ if (!content || !content.body || !content.info || !content.info.w) return null;
+
+ const RoomTooltip = sdk.getComponent('rooms.RoomTooltip');
+ return
+
+
;
+ }
+
+ // Don't show "Download this_file.png ..."
+ getFileBody() {
+ return null;
+ }
}
diff --git a/src/components/views/messages/MVideoBody.js b/src/components/views/messages/MVideoBody.js
index 5365daee03..37fc94d1ed 100644
--- a/src/components/views/messages/MVideoBody.js
+++ b/src/components/views/messages/MVideoBody.js
@@ -147,12 +147,7 @@ module.exports = React.createClass({
// For now add an img tag with a spinner.
return (
-
+
diff --git a/src/components/views/messages/MessageEvent.js b/src/components/views/messages/MessageEvent.js
index 7358e297c7..fd51e6074b 100644
--- a/src/components/views/messages/MessageEvent.js
+++ b/src/components/views/messages/MessageEvent.js
@@ -39,8 +39,11 @@ module.exports = React.createClass({
/* callback called when dynamic content in events are loaded */
onWidgetLoad: PropTypes.func,
- /* the shsape of the tile, used */
+ /* the shape of the tile, used */
tileShape: PropTypes.string,
+
+ /* the maximum image height to use, if the event is an image */
+ maxImageHeight: PropTypes.number,
},
getEventTileOps: function() {
@@ -59,17 +62,24 @@ module.exports = React.createClass({
'm.audio': sdk.getComponent('messages.MAudioBody'),
'm.video': sdk.getComponent('messages.MVideoBody'),
};
+ const evTypes = {
+ 'm.sticker': sdk.getComponent('messages.MStickerBody'),
+ };
const content = this.props.mxEvent.getContent();
+ const type = this.props.mxEvent.getType();
const msgtype = content.msgtype;
let BodyType = UnknownBody;
- if (msgtype && bodyTypes[msgtype]) {
- BodyType = bodyTypes[msgtype];
- } else if (this.props.mxEvent.getType() === 'm.sticker') {
- BodyType = sdk.getComponent('messages.MStickerBody');
- } else if (content.url) {
- // Fallback to MFileBody if there's a content URL
- BodyType = bodyTypes['m.file'];
+ if (!this.props.mxEvent.isRedacted()) {
+ // only resolve BodyType if event is not redacted
+ if (type && evTypes[type]) {
+ BodyType = evTypes[type];
+ } else if (msgtype && bodyTypes[msgtype]) {
+ BodyType = bodyTypes[msgtype];
+ } else if (content.url) {
+ // Fallback to MFileBody if there's a content URL
+ BodyType = bodyTypes['m.file'];
+ }
}
return
;
},
});
diff --git a/src/components/views/messages/SenderProfile.js b/src/components/views/messages/SenderProfile.js
index 5ca2fc6ed8..70c9c711fc 100644
--- a/src/components/views/messages/SenderProfile.js
+++ b/src/components/views/messages/SenderProfile.js
@@ -72,14 +72,12 @@ export default React.createClass({
_updateRelatedGroups() {
if (this.unmounted) return;
- const relatedGroupsEvent = this.context.matrixClient
- .getRoom(this.props.mxEvent.getRoomId())
- .currentState
- .getStateEvents('m.room.related_groups', '');
+ const room = this.context.matrixClient.getRoom(this.props.mxEvent.getRoomId());
+ if (!room) return;
+
+ const relatedGroupsEvent = room.currentState.getStateEvents('m.room.related_groups', '');
this.setState({
- relatedGroups: relatedGroupsEvent ?
- relatedGroupsEvent.getContent().groups || []
- : [],
+ relatedGroups: relatedGroupsEvent ? relatedGroupsEvent.getContent().groups || [] : [],
});
},
diff --git a/src/components/views/messages/TextualBody.js b/src/components/views/messages/TextualBody.js
index bc2a715d31..17281dae09 100644
--- a/src/components/views/messages/TextualBody.js
+++ b/src/components/views/messages/TextualBody.js
@@ -36,6 +36,7 @@ import * as ContextualMenu from '../../structures/ContextualMenu';
import SettingsStore from "../../../settings/SettingsStore";
import PushProcessor from 'matrix-js-sdk/lib/pushprocessor';
import ReplyThread from "../elements/ReplyThread";
+import {host as matrixtoHost} from '../../../matrix-to';
linkifyMatrix(linkify);
@@ -202,7 +203,7 @@ module.exports = React.createClass({
// update the current node with one that's now taken its place
node = pillContainer;
}
- } else if (node.nodeType == Node.TEXT_NODE) {
+ } else if (node.nodeType === Node.TEXT_NODE) {
const Pill = sdk.getComponent('elements.Pill');
let currentTextNode = node;
@@ -231,6 +232,12 @@ module.exports = React.createClass({
if (atRoomRule && pushProcessor.ruleMatchesEvent(atRoomRule, this.props.mxEvent)) {
// Now replace all those nodes with Pills
for (const roomNotifTextNode of roomNotifTextNodes) {
+ // Set the next node to be processed to the one after the node
+ // we're adding now, since we've just inserted nodes into the structure
+ // we're iterating over.
+ // Note we've checked roomNotifTextNodes.length > 0 so we'll do this at least once
+ node = roomNotifTextNode.nextSibling;
+
const pillContainer = document.createElement('span');
const room = MatrixClientPeg.get().getRoom(this.props.mxEvent.getRoomId());
const pill =
0 so we'll do this at least once
- node = roomNotifTextNode.nextSibling;
}
// Nothing else to do for a text node (and we don't need to advance
// the loop pointer because we did it above)
@@ -304,7 +305,7 @@ module.exports = React.createClass({
// never preview matrix.to links (if anything we should give a smart
// preview of the room/user they point to: nobody needs to be reminded
// what the matrix.to site looks like).
- if (host == 'matrix.to') return false;
+ if (host === matrixtoHost) return false;
if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) {
// it's a "foo.pl" style link
@@ -336,10 +337,21 @@ module.exports = React.createClass({
left: x,
top: y,
message: successful ? _t('Copied!') : _t('Failed to copy'),
- });
- e.target.onmouseout = close;
+ }, false);
+ e.target.onmouseleave = close;
};
- p.appendChild(button);
+
+ // Wrap a div around so that the copy button can be correctly positioned
+ // when the overflows and is scrolled horizontally.
+ const div = document.createElement("div");
+ div.className = "mx_EventTile_pre_container";
+
+ // Insert containing div in place of block
+ p.parentNode.replaceChild(div, p);
+
+ // Append block and copy button to container
+ div.appendChild(p);
+ div.appendChild(button);
});
},
@@ -422,8 +434,7 @@ module.exports = React.createClass({
const mxEvent = this.props.mxEvent;
const content = mxEvent.getContent();
- const stripReply = SettingsStore.isFeatureEnabled("feature_rich_quoting") &&
- ReplyThread.getParentEventId(mxEvent);
+ const stripReply = ReplyThread.getParentEventId(mxEvent);
let body = HtmlUtils.bodyToHtml(content, this.props.highlights, {
disableBigEmoji: SettingsStore.getValue('TextualBody.disableBigEmoji'),
// Part of Replies fallback support
diff --git a/src/components/views/room_settings/UrlPreviewSettings.js b/src/components/views/room_settings/UrlPreviewSettings.js
index ed58d610aa..fe2a2bacf4 100644
--- a/src/components/views/room_settings/UrlPreviewSettings.js
+++ b/src/components/views/room_settings/UrlPreviewSettings.js
@@ -1,6 +1,7 @@
/*
Copyright 2016 OpenMarket Ltd
Copyright 2017 Travis Ralston
+Copyright 2018 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.
@@ -15,6 +16,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
+import {MatrixClient} from "matrix-js-sdk";
const React = require('react');
import PropTypes from 'prop-types';
const sdk = require("../../../index");
@@ -29,6 +31,10 @@ module.exports = React.createClass({
room: PropTypes.object,
},
+ contextTypes: {
+ matrixClient: PropTypes.instanceOf(MatrixClient).isRequired,
+ },
+
saveSettings: function() {
const promises = [];
if (this.refs.urlPreviewsRoom) promises.push(this.refs.urlPreviewsRoom.save());
@@ -39,42 +45,58 @@ module.exports = React.createClass({
render: function() {
const SettingsFlag = sdk.getComponent("elements.SettingsFlag");
const roomId = this.props.room.roomId;
+ const isEncrypted = this.context.matrixClient.isRoomEncrypted(roomId);
let previewsForAccount = null;
- if (SettingsStore.getValueAt(SettingLevel.ACCOUNT, "urlPreviewsEnabled")) {
- previewsForAccount = (
- _t("You have enabled URL previews by default.", {}, { 'a': (sub)=>{ sub } })
- );
- } else {
- previewsForAccount = (
- _t("You have disabled URL previews by default.", {}, { 'a': (sub)=>{ sub } })
- );
- }
-
let previewsForRoom = null;
- if (SettingsStore.canSetValue("urlPreviewsEnabled", roomId, "room")) {
- previewsForRoom = (
-
-
-
- );
- } else {
- let str = _td("URL previews are enabled by default for participants in this room.");
- if (!SettingsStore.getValueAt(SettingLevel.ROOM, "urlPreviewsEnabled", roomId, /*explicit=*/true)) {
- str = _td("URL previews are disabled by default for participants in this room.");
+
+ if (!isEncrypted) {
+ // Only show account setting state and room state setting state in non-e2ee rooms where they apply
+ const accountEnabled = SettingsStore.getValueAt(SettingLevel.ACCOUNT, "urlPreviewsEnabled");
+ if (accountEnabled) {
+ previewsForAccount = (
+ _t("You have enabled URL previews by default.", {}, {
+ 'a': (sub)=>{ sub } ,
+ })
+ );
+ } else if (accountEnabled) {
+ previewsForAccount = (
+ _t("You have disabled URL previews by default.", {}, {
+ 'a': (sub)=>{ sub } ,
+ })
+ );
}
- previewsForRoom = ({ _t(str) } );
+
+ if (SettingsStore.canSetValue("urlPreviewsEnabled", roomId, "room")) {
+ previewsForRoom = (
+
+
+
+ );
+ } else {
+ let str = _td("URL previews are enabled by default for participants in this room.");
+ if (!SettingsStore.getValueAt(SettingLevel.ROOM, "urlPreviewsEnabled", roomId, /*explicit=*/true)) {
+ str = _td("URL previews are disabled by default for participants in this room.");
+ }
+ previewsForRoom = ({ _t(str) } );
+ }
+ } else {
+ previewsForAccount = (
+ _t("In encrypted rooms, like this one, URL previews are disabled by default to ensure that your " +
+ "homeserver (where the previews are generated) cannot gather information about links you see in " +
+ "this room.")
+ );
}
- const previewsForRoomAccount = (
-
@@ -83,8 +105,13 @@ module.exports = React.createClass({
return (
{ _t("URL Previews") }
-
-
{ previewsForAccount }
+
+ { _t('When someone puts a URL in their message, a URL preview can be shown to give more ' +
+ 'information about that link such as the title, description, and an image from the website.') }
+
+
+ { previewsForAccount }
+
{ previewsForRoom }
{ previewsForRoomAccount }
diff --git a/src/components/views/rooms/AppsDrawer.js b/src/components/views/rooms/AppsDrawer.js
index 8763ea3d7f..e6fe445b45 100644
--- a/src/components/views/rooms/AppsDrawer.js
+++ b/src/components/views/rooms/AppsDrawer.js
@@ -1,5 +1,6 @@
/*
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -27,8 +28,8 @@ import SdkConfig from '../../../SdkConfig';
import ScalarAuthClient from '../../../ScalarAuthClient';
import ScalarMessaging from '../../../ScalarMessaging';
import { _t } from '../../../languageHandler';
-import WidgetUtils from '../../../WidgetUtils';
-import SettingsStore from "../../../settings/SettingsStore";
+import WidgetUtils from '../../../utils/WidgetUtils';
+import WidgetEchoStore from "../../../stores/WidgetEchoStore";
// The maximum number of widgets that can be added in a room
const MAX_WIDGETS = 2;
@@ -57,6 +58,7 @@ module.exports = React.createClass({
componentWillMount: function() {
ScalarMessaging.startListening();
MatrixClientPeg.get().on('RoomState.events', this.onRoomStateEvents);
+ WidgetEchoStore.on('update', this._updateApps);
},
componentDidMount: function() {
@@ -82,6 +84,7 @@ module.exports = React.createClass({
if (MatrixClientPeg.get()) {
MatrixClientPeg.get().removeListener('RoomState.events', this.onRoomStateEvents);
}
+ WidgetEchoStore.removeListener('update', this._updateApps);
dis.unregister(this.dispatcherRef);
},
@@ -94,15 +97,7 @@ module.exports = React.createClass({
const hideWidgetKey = this.props.room.roomId + '_hide_widget_drawer';
switch (action.action) {
case 'appsDrawer':
- // When opening the app drawer when there aren't any apps,
- // auto-launch the integrations manager to skip the awkward
- // click on "Add widget"
if (action.show) {
- const apps = this._getApps();
- if (apps.length === 0) {
- this._launchManageIntegrations();
- }
-
localStorage.removeItem(hideWidgetKey);
} else {
// Store hidden state of widget
@@ -114,55 +109,6 @@ module.exports = React.createClass({
}
},
- /**
- * Encodes a URI according to a set of template variables. Variables will be
- * passed through encodeURIComponent.
- * @param {string} pathTemplate The path with template variables e.g. '/foo/$bar'.
- * @param {Object} variables The key/value pairs to replace the template
- * variables with. E.g. { '$bar': 'baz' }.
- * @return {string} The result of replacing all template variables e.g. '/foo/baz'.
- */
- encodeUri: function(pathTemplate, variables) {
- for (const key in variables) {
- if (!variables.hasOwnProperty(key)) {
- continue;
- }
- pathTemplate = pathTemplate.replace(
- key, encodeURIComponent(variables[key]),
- );
- }
- return pathTemplate;
- },
-
- _initAppConfig: function(appId, app, sender) {
- const user = MatrixClientPeg.get().getUser(this.props.userId);
- const params = {
- '$matrix_user_id': this.props.userId,
- '$matrix_room_id': this.props.room.roomId,
- '$matrix_display_name': user ? user.displayName : this.props.userId,
- '$matrix_avatar_url': user ? MatrixClientPeg.get().mxcUrlToHttp(user.avatarUrl) : '',
-
- // TODO: Namespace themes through some standard
- '$theme': SettingsStore.getValue("theme"),
- };
-
- app.id = appId;
- app.name = app.name || app.type;
-
- if (app.data) {
- Object.keys(app.data).forEach((key) => {
- params['$' + key] = app.data[key];
- });
-
- app.waitForIframeLoad = (app.data.waitForIframeLoad === 'false' ? false : true);
- }
-
- app.url = this.encodeUri(app.url, params);
- app.creatorUserId = (sender && sender.userId) ? sender.userId : null;
-
- return app;
- },
-
onRoomStateEvents: function(ev, state) {
if (ev.getRoomId() !== this.props.room.roomId || ev.getType() !== 'im.vector.modular.widgets') {
return;
@@ -171,15 +117,11 @@ module.exports = React.createClass({
},
_getApps: function() {
- const appsStateEvents = this.props.room.currentState.getStateEvents('im.vector.modular.widgets');
- if (!appsStateEvents) {
- return [];
- }
-
- return appsStateEvents.filter((ev) => {
- return ev.getContent().type && ev.getContent().url;
- }).map((ev) => {
- return this._initAppConfig(ev.getStateKey(), ev.getContent(), ev.sender);
+ const widgets = WidgetEchoStore.getEchoedRoomWidgets(
+ this.props.room.roomId, WidgetUtils.getRoomWidgets(this.props.room),
+ );
+ return widgets.map((ev) => {
+ return WidgetUtils.makeAppConfig(ev.getStateKey(), ev.getContent(), ev.sender);
});
},
@@ -227,26 +169,25 @@ module.exports = React.createClass({
},
render: function() {
- const enableScreenshots = SettingsStore.getValue("enableWidgetScreenshots", this.props.room.room_id);
+ const apps = this.state.apps.map((app, index, arr) => {
+ const capWhitelist = WidgetUtils.getCapWhitelistForAppTypeInRoomId(app.type, this.props.room.roomId);
- const apps = this.state.apps.map(
- (app, index, arr) => {
- return ( );
- });
+ return ( );
+ });
let addWidget;
if (this.props.showApps &&
@@ -265,10 +206,22 @@ module.exports = React.createClass({
;
}
+ let spinner;
+ if (
+ apps.length === 0 && WidgetEchoStore.roomHasPendingWidgets(
+ this.props.room.roomId,
+ WidgetUtils.getRoomWidgets(this.props.room),
+ )
+ ) {
+ const Loader = sdk.getComponent("elements.Spinner");
+ spinner = ;
+ }
+
return (
{ apps }
+ { spinner }
{ this._canUserModify() && addWidget }
diff --git a/src/components/views/rooms/Autocomplete.js b/src/components/views/rooms/Autocomplete.js
index 4fb2a29381..ee6cc66d2d 100644
--- a/src/components/views/rooms/Autocomplete.js
+++ b/src/components/views/rooms/Autocomplete.js
@@ -114,7 +114,7 @@ export default class Autocomplete extends React.Component {
processQuery(query, selection) {
return this.autocompleter.getCompletions(
- query, selection, this.state.forceComplete,
+ query, selection, this.state.forceComplete
).then((completions) => {
// Only ever process the completions for the most recent query being processed
if (query !== this.queryRequested) {
@@ -216,12 +216,12 @@ export default class Autocomplete extends React.Component {
return done.promise;
}
- onCompletionClicked(): boolean {
- if (this.countCompletions() === 0 || this.state.selectionOffset === COMPOSER_SELECTED) {
+ onCompletionClicked(selectionOffset: number): boolean {
+ if (this.countCompletions() === 0 || selectionOffset === COMPOSER_SELECTED) {
return false;
}
- this.props.onConfirm(this.state.completionList[this.state.selectionOffset - 1]);
+ this.props.onConfirm(this.state.completionList[selectionOffset - 1]);
this.hide();
return true;
@@ -263,17 +263,14 @@ export default class Autocomplete extends React.Component {
const componentPosition = position;
position++;
- const onMouseMove = () => this.setSelection(componentPosition);
const onClick = () => {
- this.setSelection(componentPosition);
- this.onCompletionClicked();
+ this.onCompletionClicked(componentPosition);
};
return React.cloneElement(completion.component, {
key: i,
ref: `completion${position - 1}`,
className,
- onMouseMove,
onClick,
});
});
diff --git a/src/components/views/rooms/EventTile.js b/src/components/views/rooms/EventTile.js
index 589524bb9e..7e73c01330 100644
--- a/src/components/views/rooms/EventTile.js
+++ b/src/components/views/rooms/EventTile.js
@@ -34,6 +34,7 @@ const ContextualMenu = require('../../structures/ContextualMenu');
import dis from '../../../dispatcher';
import {makeEventPermalink} from "../../../matrix-to";
import SettingsStore from "../../../settings/SettingsStore";
+import {EventStatus} from 'matrix-js-sdk';
const ObjectUtils = require('../../../ObjectUtils');
@@ -55,6 +56,7 @@ const stateEventTileTypes = {
'm.room.topic': 'messages.TextualEvent',
'm.room.power_levels': 'messages.TextualEvent',
'm.room.pinned_events': 'messages.TextualEvent',
+ 'm.room.server_acl': 'messages.TextualEvent',
'im.vector.modular.widgets': 'messages.TextualEvent',
};
@@ -442,26 +444,27 @@ module.exports = withMatrixClient(React.createClass({
const ev = this.props.mxEvent;
const props = {onClick: this.onCryptoClicked};
-
+ // event could not be decrypted
if (ev.getContent().msgtype === 'm.bad.encrypted') {
return ;
- } else if (ev.isEncrypted()) {
- if (this.state.verified) {
- return ;
- } else {
- return ;
- }
- } else {
- // XXX: if the event is being encrypted (ie eventSendStatus ===
- // encrypting), it might be nice to show something other than the
- // open padlock?
+ }
- // if the event is not encrypted, but it's an e2e room, show the
- // open padlock
- const e2eEnabled = this.props.matrixClient.isRoomEncrypted(ev.getRoomId());
- if (e2eEnabled) {
- return ;
+ // event is encrypted, display padlock corresponding to whether or not it is verified
+ if (ev.isEncrypted()) {
+ return this.state.verified ? : ;
+ }
+
+ if (this.props.matrixClient.isRoomEncrypted(ev.getRoomId())) {
+ // else if room is encrypted
+ // and event is being encrypted or is not_sent (Unknown Devices/Network Error)
+ if (ev.status === EventStatus.ENCRYPTING) {
+ return ;
}
+ if (ev.status === EventStatus.NOT_SENT) {
+ return ;
+ }
+ // if the event is not encrypted, but it's an e2e room, show the open padlock
+ return ;
}
// no padlock needed
@@ -482,15 +485,22 @@ module.exports = withMatrixClient(React.createClass({
// Info messages are basically information about commands processed on a room
const isInfoMessage = (eventType !== 'm.room.message' && eventType !== 'm.sticker');
- const EventTileType = sdk.getComponent(getHandlerTile(this.props.mxEvent));
+ const tileHandler = getHandlerTile(this.props.mxEvent);
// This shouldn't happen: the caller should check we support this type
// before trying to instantiate us
- if (!EventTileType) {
- throw new Error("Event type not supported");
+ if (!tileHandler) {
+ const {mxEvent} = this.props;
+ console.warn(`Event type not supported: type:${mxEvent.getType()} isState:${mxEvent.isState()}`);
+ return
+
+ { _t('This event could not be displayed') }
+
+
;
}
+ const EventTileType = sdk.getComponent(tileHandler);
const isSending = (['sending', 'queued', 'encrypting'].indexOf(this.props.eventSendStatus) !== -1);
- const isRedacted = (eventType === 'm.room.message') && this.props.isRedacted;
+ const isRedacted = isMessageEvent(this.props.mxEvent) && this.props.isRedacted;
const isEncryptionFailure = this.props.mxEvent.isDecryptionFailure();
const classes = classNames({
@@ -608,13 +618,14 @@ module.exports = withMatrixClient(React.createClass({
switch (this.props.tileShape) {
case 'notif': {
+ const EmojiText = sdk.getComponent('elements.EmojiText');
const room = this.props.matrixClient.getRoom(this.props.mxEvent.getRoomId());
return (
{ avatar }
@@ -691,7 +702,6 @@ module.exports = withMatrixClient(React.createClass({
{ readAvatars }
- { avatar }
{ sender }
+ {
+ // The avatar goes after the event tile as it's absolutly positioned to be over the
+ // event tile line, so needs to be later in the DOM so it appears on top (this avoids
+ // the need for further z-indexing chaos)
+ }
+ { avatar }
);
}
@@ -715,9 +731,15 @@ module.exports = withMatrixClient(React.createClass({
},
}));
+// XXX this'll eventually be dynamic based on the fields once we have extensible event types
+const messageTypes = ['m.room.message', 'm.sticker'];
+function isMessageEvent(ev) {
+ return (messageTypes.includes(ev.getType()));
+}
+
module.exports.haveTileForEvent = function(e) {
// Only messages have a tile (black-rectangle) if redacted
- if (e.isRedacted() && e.getType() !== 'm.room.message') return false;
+ if (e.isRedacted() && !isMessageEvent(e)) return false;
const handler = getHandlerTile(e);
if (handler === undefined) return false;
@@ -736,6 +758,14 @@ function E2ePadlockUndecryptable(props) {
);
}
+function E2ePadlockEncrypting(props) {
+ return
;
+}
+
+function E2ePadlockNotSent(props) {
+ return
;
+}
+
function E2ePadlockVerified(props) {
return (
{
+ Modal.createTrackedDialog('Demoting Self', '', QuestionDialog, {
+ title: _t("Demote yourself?"),
+ description:
+
+ { _t("You will not be able to undo this change as you are demoting yourself, " +
+ "if you are the last privileged user in the room it will be impossible " +
+ "to regain privileges.") }
+
,
+ button: _t("Demote"),
+ onFinished: resolve,
+ });
+ });
+ },
+
+ onMuteToggle: async function() {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
const roomId = this.props.member.roomId;
const target = this.props.member.userId;
const room = this.props.matrixClient.getRoom(roomId);
if (!room) return;
+ // if muting self, warn as it may be irreversible
+ if (target === this.props.matrixClient.getUserId()) {
+ try {
+ if (!(await this._warnSelfDemote())) return;
+ } catch (e) {
+ console.error("Failed to warn about self demotion: ", e);
+ return;
+ }
+ }
+
const powerLevelEvent = room.currentState.getStateEvents("m.room.power_levels", "");
if (!powerLevelEvent) return;
@@ -436,7 +463,7 @@ module.exports = withMatrixClient(React.createClass({
}).done();
},
- onPowerChange: function(powerLevel) {
+ onPowerChange: async function(powerLevel) {
const roomId = this.props.member.roomId;
const target = this.props.member.userId;
const room = this.props.matrixClient.getRoom(roomId);
@@ -455,20 +482,12 @@ module.exports = withMatrixClient(React.createClass({
// If we are changing our own PL it can only ever be decreasing, which we cannot reverse.
if (myUserId === target) {
- Modal.createTrackedDialog('Demoting Self', '', QuestionDialog, {
- title: _t("Warning!"),
- description:
-
- { _t("You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.") }
- { _t("Are you sure?") }
-
,
- button: _t("Continue"),
- onFinished: (confirmed) => {
- if (confirmed) {
- this._applyPowerChange(roomId, target, powerLevel, powerLevelEvent);
- }
- },
- });
+ try {
+ if (!(await this._warnSelfDemote())) return;
+ this._applyPowerChange(roomId, target, powerLevel, powerLevelEvent);
+ } catch (e) {
+ console.error("Failed to warn about self demotion: ", e);
+ }
return;
}
@@ -478,7 +497,8 @@ module.exports = withMatrixClient(React.createClass({
title: _t("Warning!"),
description:
- { _t("You will not be able to undo this change as you are promoting the user to have the same power level as yourself.") }
+ { _t("You will not be able to undo this change as you are promoting the user " +
+ "to have the same power level as yourself.") }
{ _t("Are you sure?") }
,
button: _t("Continue"),
@@ -578,7 +598,7 @@ module.exports = withMatrixClient(React.createClass({
onMemberAvatarClick: function() {
const member = this.props.member;
- const avatarUrl = member.user ? member.user.avatarUrl : member.events.member.getContent().avatar_url;
+ const avatarUrl = member.getMxcAvatarUrl();
if (!avatarUrl) return;
const httpUrl = this.props.matrixClient.mxcUrlToHttp(avatarUrl);
@@ -632,6 +652,13 @@ module.exports = withMatrixClient(React.createClass({
);
},
+ onShareUserClick: function() {
+ const ShareDialog = sdk.getComponent("dialogs.ShareDialog");
+ Modal.createTrackedDialog('share room member dialog', '', ShareDialog, {
+ target: this.props.member,
+ });
+ },
+
_renderUserOptions: function() {
const cli = this.props.matrixClient;
const member = this.props.member;
@@ -705,13 +732,18 @@ module.exports = withMatrixClient(React.createClass({
}
}
- if (!ignoreButton && !readReceiptButton && !insertPillButton && !inviteUserButton) return null;
+ const shareUserButton = (
+
+ { _t('Share Link to User') }
+
+ );
return (
{ _t("User Options") }
{ readReceiptButton }
+ { shareUserButton }
{ insertPillButton }
{ ignoreButton }
{ inviteUserButton }
@@ -742,15 +774,15 @@ module.exports = withMatrixClient(React.createClass({
for (const roomId of dmRooms) {
const room = this.props.matrixClient.getRoom(roomId);
if (room) {
- const me = room.getMember(this.props.matrixClient.credentials.userId);
-
+ const myMembership = room.getMyMembership();
// not a DM room if we have are not joined
- if (!me.membership || me.membership !== 'join') continue;
- // not a DM room if they are not joined
+ if (myMembership !== 'join') continue;
+
const them = this.props.member;
+ // not a DM room if they are not joined
if (!them.membership || them.membership !== 'join') continue;
- const highlight = room.getUnreadNotificationCount('highlight') > 0 || me.membership === 'invite';
+ const highlight = room.getUnreadNotificationCount('highlight') > 0;
tiles.push(
,
);
@@ -902,7 +934,9 @@ module.exports = withMatrixClient(React.createClass({
return (
-
+
+
+
diff --git a/src/components/views/rooms/MessageComposer.js b/src/components/views/rooms/MessageComposer.js
index 28a90b375a..eccdfe17af 100644
--- a/src/components/views/rooms/MessageComposer.js
+++ b/src/components/views/rooms/MessageComposer.js
@@ -16,7 +16,7 @@ limitations under the License.
*/
import React from 'react';
import PropTypes from 'prop-types';
-import { _t } from '../../../languageHandler';
+import { _t, _td } from '../../../languageHandler';
import CallHandler from '../../../CallHandler';
import MatrixClientPeg from '../../../MatrixClientPeg';
import Modal from '../../../Modal';
@@ -26,6 +26,17 @@ import RoomViewStore from '../../../stores/RoomViewStore';
import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
import Stickerpicker from './Stickerpicker';
+const formatButtonList = [
+ _td("bold"),
+ _td("italic"),
+ _td("deleted"),
+ _td("underlined"),
+ _td("inline-code"),
+ _td("block-quote"),
+ _td("bulleted-list"),
+ _td("numbered-list"),
+];
+
export default class MessageComposer extends React.Component {
constructor(props, context) {
super(props, context);
@@ -35,7 +46,6 @@ export default class MessageComposer extends React.Component {
this.onUploadFileSelected = this.onUploadFileSelected.bind(this);
this.uploadFiles = this.uploadFiles.bind(this);
this.onVoiceCallClick = this.onVoiceCallClick.bind(this);
- this.onInputContentChanged = this.onInputContentChanged.bind(this);
this._onAutocompleteConfirm = this._onAutocompleteConfirm.bind(this);
this.onToggleFormattingClicked = this.onToggleFormattingClicked.bind(this);
this.onToggleMarkdownClicked = this.onToggleMarkdownClicked.bind(this);
@@ -44,13 +54,10 @@ export default class MessageComposer extends React.Component {
this._onRoomViewStoreUpdate = this._onRoomViewStoreUpdate.bind(this);
this.state = {
- autocompleteQuery: '',
- selection: null,
inputState: {
- style: [],
+ marks: [],
blockType: null,
- isRichtextEnabled: SettingsStore.getValue('MessageComposerInput.isRichTextEnabled'),
- wordCount: 0,
+ isRichTextEnabled: SettingsStore.getValue('MessageComposerInput.isRichTextEnabled'),
},
showFormatting: SettingsStore.getValue('MessageComposer.showFormatting'),
isQuoting: Boolean(RoomViewStore.getQuotingEvent()),
@@ -64,6 +71,23 @@ export default class MessageComposer extends React.Component {
// XXX: fragile as all hell - fixme somehow, perhaps with a dedicated Room.encryption event or something.
MatrixClientPeg.get().on("event", this.onEvent);
this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate);
+ this._waitForOwnMember();
+ }
+
+ _waitForOwnMember() {
+ // if we have the member already, do that
+ const me = this.props.room.getMember(MatrixClientPeg.get().getUserId());
+ if (me) {
+ this.setState({me});
+ return;
+ }
+ // Otherwise, wait for member loading to finish and then update the member for the avatar.
+ // The members should already be loading, and loadMembersIfNeeded
+ // will return the promise for the existing operation
+ this.props.room.loadMembersIfNeeded().then(() => {
+ const me = this.props.room.getMember(MatrixClientPeg.get().getUserId());
+ this.setState({me});
+ });
}
componentWillUnmount() {
@@ -159,61 +183,20 @@ export default class MessageComposer extends React.Component {
});
}
- // _startCallApp(isAudioConf) {
- // dis.dispatch({
- // action: 'appsDrawer',
- // show: true,
- // });
-
- // const appsStateEvents = this.props.room.currentState.getStateEvents('im.vector.modular.widgets', '');
- // let appsStateEvent = {};
- // if (appsStateEvents) {
- // appsStateEvent = appsStateEvents.getContent();
- // }
- // if (!appsStateEvent.videoConf) {
- // appsStateEvent.videoConf = {
- // type: 'jitsi',
- // // FIXME -- This should not be localhost
- // url: 'http://localhost:8000/jitsi.html',
- // data: {
- // confId: this.props.room.roomId.replace(/[^A-Za-z0-9]/g, '_') + Date.now(),
- // isAudioConf: isAudioConf,
- // },
- // };
- // MatrixClientPeg.get().sendStateEvent(
- // this.props.room.roomId,
- // 'im.vector.modular.widgets',
- // appsStateEvent,
- // '',
- // ).then(() => console.log('Sent state'), (e) => console.error(e));
- // }
- // }
-
onCallClick(ev) {
- // NOTE -- Will be replaced by Jitsi code (currently commented)
dis.dispatch({
action: 'place_call',
type: ev.shiftKey ? "screensharing" : "video",
room_id: this.props.room.roomId,
});
- // this._startCallApp(false);
}
onVoiceCallClick(ev) {
- // NOTE -- Will be replaced by Jitsi code (currently commented)
dis.dispatch({
action: 'place_call',
type: "voice",
room_id: this.props.room.roomId,
});
- // this._startCallApp(true);
- }
-
- onInputContentChanged(content: string, selection: {start: number, end: number}) {
- this.setState({
- autocompleteQuery: content,
- selection,
- });
}
onInputStateChanged(inputState) {
@@ -226,7 +209,7 @@ export default class MessageComposer extends React.Component {
}
}
- onFormatButtonClicked(name: "bold" | "italic" | "strike" | "code" | "underline" | "quote" | "bullet" | "numbullet", event) {
+ onFormatButtonClicked(name, event) {
event.preventDefault();
this.messageComposerInput.onFormatButtonClicked(name, event);
}
@@ -238,11 +221,10 @@ export default class MessageComposer extends React.Component {
onToggleMarkdownClicked(e) {
e.preventDefault(); // don't steal focus from the editor!
- this.messageComposerInput.enableRichtext(!this.state.inputState.isRichtextEnabled);
+ this.messageComposerInput.enableRichtext(!this.state.inputState.isRichTextEnabled);
}
render() {
- const me = this.props.room.getMember(MatrixClientPeg.get().credentials.userId);
const uploadInputStyle = {display: 'none'};
const MemberAvatar = sdk.getComponent('avatars.MemberAvatar');
const TintableSvg = sdk.getComponent("elements.TintableSvg");
@@ -250,11 +232,13 @@ export default class MessageComposer extends React.Component {
const controls = [];
- controls.push(
-
-
-
,
- );
+ if (this.state.me) {
+ controls.push(
+
+
+
,
+ );
+ }
let e2eImg, e2eTitle, e2eClass;
const roomIsEncrypted = MatrixClientPeg.get().isRoomEncrypted(this.props.room.roomId);
@@ -314,14 +298,14 @@ export default class MessageComposer extends React.Component {
);
- const formattingButton = (
+ const formattingButton = this.state.inputState.isRichTextEnabled ? (
- );
+ ) : null;
let placeholderText;
if (this.state.isQuoting) {
@@ -348,7 +332,6 @@ export default class MessageComposer extends React.Component {
room={this.props.room}
placeholder={placeholderText}
onFilesPasted={this.uploadFiles}
- onContentChanged={this.onInputContentChanged}
onInputStateChanged={this.onInputStateChanged} />,
formattingButton,
stickerpickerButton,
@@ -365,11 +348,14 @@ export default class MessageComposer extends React.Component {
);
}
- const {style, blockType} = this.state.inputState;
- const formatButtons = ["bold", "italic", "strike", "underline", "code", "quote", "bullet", "numbullet"].map(
- (name) => {
- const active = style.includes(name) || blockType === name;
- const suffix = active ? '-o-n' : '';
+ let formatBar;
+ if (this.state.showFormatting && this.state.inputState.isRichTextEnabled) {
+ const {marks, blockType} = this.state.inputState;
+ const formatButtons = formatButtonList.map((name) => {
+ // special-case to match the md serializer and the special-case in MessageComposerInput.js
+ const markName = name === 'inline-code' ? 'code' : name;
+ const active = marks.some(mark => mark.type === markName) || blockType === name;
+ const suffix = active ? '-on' : '';
const onFormatButtonClicked = this.onFormatButtonClicked.bind(this, name);
const className = 'mx_MessageComposer_format_button mx_filterFlipColor';
return
;
- },
- );
+ },
+ );
+
+ formatBar =
+
+
+ { formatButtons }
+
+
+
+
+
+ }
return (
@@ -388,20 +391,7 @@ export default class MessageComposer extends React.Component {
{ controls }
-
-
- { formatButtons }
-
-
-
-
-
+ { formatBar }
);
}
diff --git a/src/components/views/rooms/MessageComposerInput.js b/src/components/views/rooms/MessageComposerInput.js
index 97e8780f0f..267db89e8c 100644
--- a/src/components/views/rooms/MessageComposerInput.js
+++ b/src/components/views/rooms/MessageComposerInput.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -15,20 +15,26 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import React from 'react';
+import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
import type SyntheticKeyboardEvent from 'react/lib/SyntheticKeyboardEvent';
-import {Editor, EditorState, RichUtils, CompositeDecorator, Modifier,
- getDefaultKeyBinding, KeyBindingUtil, ContentState, ContentBlock, SelectionState,
- Entity} from 'draft-js';
+import { Editor } from 'slate-react';
+import { getEventTransfer } from 'slate-react';
+import { Value, Document, Block, Inline, Text, Range, Node } from 'slate';
+import type { Change } from 'slate';
+
+import Html from 'slate-html-serializer';
+import Md from 'slate-md-serializer';
+import Plain from 'slate-plain-serializer';
+import PlainWithPillsSerializer from "../../../autocomplete/PlainWithPillsSerializer";
import classNames from 'classnames';
-import escape from 'lodash/escape';
import Promise from 'bluebird';
import MatrixClientPeg from '../../../MatrixClientPeg';
import type {MatrixClient} from 'matrix-js-sdk/lib/matrix';
-import SlashCommands from '../../../SlashCommands';
+import {processCommandInput} from '../../../SlashCommands';
import { KeyCode, isOnlyCtrlOrCmdKeyEvent } from '../../../Keyboard';
import Modal from '../../../Modal';
import sdk from '../../../index';
@@ -45,11 +51,10 @@ import Markdown from '../../../Markdown';
import ComposerHistoryManager from '../../../ComposerHistoryManager';
import MessageComposerStore from '../../../stores/MessageComposerStore';
-import {MATRIXTO_URL_PATTERN, MATRIXTO_MD_LINK_PATTERN} from '../../../linkify-matrix';
-const REGEX_MATRIXTO = new RegExp(MATRIXTO_URL_PATTERN);
+import {MATRIXTO_MD_LINK_PATTERN, MATRIXTO_URL_PATTERN} from '../../../linkify-matrix';
const REGEX_MATRIXTO_MARKDOWN_GLOBAL = new RegExp(MATRIXTO_MD_LINK_PATTERN, 'g');
-import {asciiRegexp, shortnameToUnicode, emojioneList, asciiList, mapUnicodeToShort} from 'emojione';
+import {asciiRegexp, unicodeRegexp, shortnameToUnicode, emojioneList, asciiList, mapUnicodeToShort, toShort} from 'emojione';
import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
import {makeUserPermalink} from "../../../matrix-to";
import ReplyPreview from "./ReplyPreview";
@@ -60,22 +65,46 @@ import {ContentHelpers} from 'matrix-js-sdk';
const EMOJI_SHORTNAMES = Object.keys(emojioneList);
const EMOJI_UNICODE_TO_SHORTNAME = mapUnicodeToShort();
const REGEX_EMOJI_WHITESPACE = new RegExp('(?:^|\\s)(' + asciiRegexp + ')\\s$');
+const EMOJI_REGEX = new RegExp(unicodeRegexp, 'g');
const TYPING_USER_TIMEOUT = 10000, TYPING_SERVER_TIMEOUT = 30000;
-const ZWS_CODE = 8203;
-const ZWS = String.fromCharCode(ZWS_CODE); // zero width space
-
const ENTITY_TYPES = {
AT_ROOM_PILL: 'ATROOMPILL',
};
-function stateToMarkdown(state) {
- return __stateToMarkdown(state)
- .replace(
- ZWS, // draft-js-export-markdown adds these
- ''); // this is *not* a zero width space, trust me :)
-}
+// the Slate node type to default to for unstyled text
+const DEFAULT_NODE = 'paragraph';
+
+// map HTML elements through to our Slate schema node types
+// used for the HTML deserializer.
+// (The names here are chosen to match the MD serializer's schema for convenience)
+const BLOCK_TAGS = {
+ p: 'paragraph',
+ blockquote: 'block-quote',
+ ul: 'bulleted-list',
+ h1: 'heading1',
+ h2: 'heading2',
+ h3: 'heading3',
+ h4: 'heading4',
+ h5: 'heading5',
+ h6: 'heading6',
+ li: 'list-item',
+ ol: 'numbered-list',
+ pre: 'code',
+};
+
+const MARK_TAGS = {
+ strong: 'bold',
+ b: 'bold', // deprecated
+ em: 'italic',
+ i: 'italic', // deprecated
+ code: 'code',
+ u: 'underlined',
+ del: 'deleted',
+ strike: 'deleted', // deprecated
+ s: 'deleted', // deprecated
+};
function onSendMessageFailed(err, room) {
// XXX: temporary logging to try to diagnose
@@ -86,6 +115,15 @@ function onSendMessageFailed(err, room) {
});
}
+function rangeEquals(a: Range, b: Range): boolean {
+ return (a.anchorKey === b.anchorKey
+ && a.anchorOffset === b.anchorOffset
+ && a.focusKey === b.focusKey
+ && a.focusOffset === b.focusOffset
+ && a.isFocused === b.isFocused
+ && a.isBackward === b.isBackward);
+}
+
/*
* The textInput part of the MessageComposer
*/
@@ -98,79 +136,170 @@ export default class MessageComposerInput extends React.Component {
// js-sdk Room object
room: PropTypes.object.isRequired,
- // called with current plaintext content (as a string) whenever it changes
- onContentChanged: PropTypes.func,
+ onFilesPasted: PropTypes.func,
onInputStateChanged: PropTypes.func,
};
- static getKeyBinding(ev: SyntheticKeyboardEvent): string {
- const ctrlCmdOnly = isOnlyCtrlOrCmdKeyEvent(ev);
-
- // Restrict a subset of key bindings to ONLY having ctrl/meta* pressed and
- // importantly NOT having alt, shift, meta/ctrl* pressed. draft-js does not
- // handle this in `getDefaultKeyBinding` so we do it ourselves here.
- //
- // * if macOS, read second option
- const ctrlCmdCommand = {
- // C-m => Toggles between rich text and markdown modes
- [KeyCode.KEY_M]: 'toggle-mode',
- [KeyCode.KEY_B]: 'bold',
- [KeyCode.KEY_I]: 'italic',
- [KeyCode.KEY_U]: 'underline',
- [KeyCode.KEY_J]: 'code',
- [KeyCode.KEY_O]: 'split-block',
- }[ev.keyCode];
-
- if (ctrlCmdCommand) {
- if (!ctrlCmdOnly) {
- return null;
- }
- return ctrlCmdCommand;
- }
-
- // Handle keys such as return, left and right arrows etc.
- return getDefaultKeyBinding(ev);
- }
-
- static getBlockStyle(block: ContentBlock): ?string {
- if (block.getType() === 'strikethrough') {
- return 'mx_Markdown_STRIKETHROUGH';
- }
-
- return null;
- }
-
client: MatrixClient;
autocomplete: Autocomplete;
historyManager: ComposerHistoryManager;
constructor(props, context) {
super(props, context);
- this.onAction = this.onAction.bind(this);
- this.handleReturn = this.handleReturn.bind(this);
- this.handleKeyCommand = this.handleKeyCommand.bind(this);
- this.onEditorContentChanged = this.onEditorContentChanged.bind(this);
- this.onUpArrow = this.onUpArrow.bind(this);
- this.onDownArrow = this.onDownArrow.bind(this);
- this.onTab = this.onTab.bind(this);
- this.onEscape = this.onEscape.bind(this);
- this.setDisplayedCompletion = this.setDisplayedCompletion.bind(this);
- this.onMarkdownToggleClicked = this.onMarkdownToggleClicked.bind(this);
- this.onTextPasted = this.onTextPasted.bind(this);
- const isRichtextEnabled = SettingsStore.getValue('MessageComposerInput.isRichTextEnabled');
+ const isRichTextEnabled = SettingsStore.getValue('MessageComposerInput.isRichTextEnabled');
- Analytics.setRichtextMode(isRichtextEnabled);
+ Analytics.setRichtextMode(isRichTextEnabled);
+ this.client = MatrixClientPeg.get();
+
+ // track whether we should be trying to show autocomplete suggestions on the current editor
+ // contents. currently it's only suppressed when navigating history to avoid ugly flashes
+ // of unexpected corrections as you navigate.
+ // XXX: should this be in state?
+ this.suppressAutoComplete = false;
+
+ // track whether we've just pressed an arrowkey left or right in order to skip void nodes.
+ // see https://github.com/ianstormtaylor/slate/issues/762#issuecomment-304855095
+ this.direction = '';
+
+ this.plainWithMdPills = new PlainWithPillsSerializer({ pillFormat: 'md' });
+ this.plainWithIdPills = new PlainWithPillsSerializer({ pillFormat: 'id' });
+ this.plainWithPlainPills = new PlainWithPillsSerializer({ pillFormat: 'plain' });
+
+ this.md = new Md({
+ rules: [
+ {
+ // if serialize returns undefined it falls through to the default hardcoded
+ // serialization rules
+ serialize: (obj, children) => {
+ if (obj.object !== 'inline') return;
+ switch (obj.type) {
+ case 'pill':
+ return `[${ obj.data.get('completion') }](${ obj.data.get('href') })`;
+ case 'emoji':
+ return obj.data.get('emojiUnicode');
+ }
+ },
+ }, {
+ serialize: (obj, children) => {
+ if (obj.object !== 'mark') return;
+ // XXX: slate-md-serializer consumes marks other than bold, italic, code, inserted, deleted
+ switch (obj.type) {
+ case 'underlined':
+ return `${ children } `;
+ case 'deleted':
+ return `${ children }`;
+ case 'code':
+ // XXX: we only ever get given `code` regardless of whether it was inline or block
+ // XXX: workaround for https://github.com/tommoor/slate-md-serializer/issues/14
+ // strip single backslashes from children, as they would have been escaped here
+ return `\`${ children.split('\\').map((v) => v ? v : '\\').join('') }\``;
+ }
+ },
+ },
+ ],
+ });
+
+ this.html = new Html({
+ rules: [
+ {
+ deserialize: (el, next) => {
+ const tag = el.tagName.toLowerCase();
+ let type = BLOCK_TAGS[tag];
+ if (type) {
+ return {
+ object: 'block',
+ type: type,
+ nodes: next(el.childNodes),
+ }
+ }
+ type = MARK_TAGS[tag];
+ if (type) {
+ return {
+ object: 'mark',
+ type: type,
+ nodes: next(el.childNodes),
+ }
+ }
+ // special case links
+ if (tag === 'a') {
+ const href = el.getAttribute('href');
+ let m;
+ if (href) {
+ m = href.match(MATRIXTO_URL_PATTERN);
+ }
+ if (m) {
+ return {
+ object: 'inline',
+ type: 'pill',
+ data: {
+ href,
+ completion: el.innerText,
+ completionId: m[1],
+ },
+ isVoid: true,
+ }
+ }
+ else {
+ return {
+ object: 'inline',
+ type: 'link',
+ data: { href },
+ nodes: next(el.childNodes),
+ }
+ }
+ }
+ },
+ serialize: (obj, children) => {
+ if (obj.object === 'block') {
+ return this.renderNode({
+ node: obj,
+ children: children,
+ });
+ }
+ else if (obj.object === 'mark') {
+ return this.renderMark({
+ mark: obj,
+ children: children,
+ });
+ }
+ else if (obj.object === 'inline') {
+ // special case links, pills and emoji otherwise we
+ // end up with React components getting rendered out(!)
+ switch (obj.type) {
+ case 'pill':
+ return { obj.data.get('completion') } ;
+ case 'link':
+ return { children } ;
+ case 'emoji':
+ // XXX: apparently you can't return plain strings from serializer rules
+ // until https://github.com/ianstormtaylor/slate/pull/1854 is merged.
+ // So instead we temporarily wrap emoji from RTE in an arbitrary tag
+ // ( ). would be nicer, but in practice it causes CSS issues.
+ return { obj.data.get('emojiUnicode') } ;
+ }
+ return this.renderNode({
+ node: obj,
+ children: children,
+ });
+ }
+ }
+ }
+ ]
+ });
+
+ const savedState = MessageComposerStore.getEditorState(this.props.room.roomId);
this.state = {
// whether we're in rich text or markdown mode
- isRichtextEnabled,
+ isRichTextEnabled,
// the currently displayed editor state (note: this is always what is modified on input)
editorState: this.createEditorState(
- isRichtextEnabled,
- MessageComposerStore.getContentState(this.props.room.roomId),
+ isRichTextEnabled,
+ savedState ? savedState.editor_state : undefined,
+ savedState ? savedState.rich_text : undefined,
),
// the original editor state, before we started tabbing through completions
@@ -183,144 +312,113 @@ export default class MessageComposerInput extends React.Component {
// whether there were any completions
someCompletions: null,
};
-
- this.client = MatrixClientPeg.get();
- }
-
- findPillEntities(contentState: ContentState, contentBlock: ContentBlock, callback) {
- contentBlock.findEntityRanges(
- (character) => {
- const entityKey = character.getEntity();
- return (
- entityKey !== null &&
- (
- contentState.getEntity(entityKey).getType() === 'LINK' ||
- contentState.getEntity(entityKey).getType() === ENTITY_TYPES.AT_ROOM_PILL
- )
- );
- }, callback,
- );
}
/*
- * "Does the right thing" to create an EditorState, based on:
+ * "Does the right thing" to create an Editor value, based on:
* - whether we've got rich text mode enabled
* - contentState was passed in
+ * - whether the contentState that was passed in was rich text
*/
- createEditorState(richText: boolean, contentState: ?ContentState): EditorState {
- const decorators = richText ? RichText.getScopedRTDecorators(this.props) :
- RichText.getScopedMDDecorators(this.props);
- const shouldShowPillAvatar = !SettingsStore.getValue("Pill.shouldHidePillAvatar");
- decorators.push({
- strategy: this.findPillEntities.bind(this),
- component: (entityProps) => {
- const Pill = sdk.getComponent('elements.Pill');
- const type = entityProps.contentState.getEntity(entityProps.entityKey).getType();
- const {url} = entityProps.contentState.getEntity(entityProps.entityKey).getData();
- if (type === ENTITY_TYPES.AT_ROOM_PILL) {
- return ;
- } else if (Pill.isPillUrl(url)) {
- return ;
- }
-
- return (
-
- { entityProps.children }
-
- );
- },
- });
- const compositeDecorator = new CompositeDecorator(decorators);
-
- let editorState = null;
- if (contentState) {
- editorState = EditorState.createWithContent(contentState, compositeDecorator);
+ createEditorState(wantRichText: boolean, editorState: ?Value, wasRichText: ?boolean): Value {
+ if (editorState instanceof Value) {
+ if (wantRichText && !wasRichText) {
+ return this.mdToRichEditorState(editorState);
+ }
+ if (wasRichText && !wantRichText) {
+ return this.richToMdEditorState(editorState);
+ }
+ return editorState;
} else {
- editorState = EditorState.createEmpty(compositeDecorator);
+ // ...or create a new one. and explicitly focus it otherwise tab in-out issues
+ const base = Plain.deserialize('', { defaultBlock: DEFAULT_NODE });
+ return base.change().focus().value;
}
-
- return EditorState.moveFocusToEnd(editorState);
}
componentDidMount() {
this.dispatcherRef = dis.register(this.onAction);
- this.historyManager = new ComposerHistoryManager(this.props.room.roomId);
+ this.historyManager = new ComposerHistoryManager(this.props.room.roomId, 'mx_slate_composer_history_');
}
componentWillUnmount() {
dis.unregister(this.dispatcherRef);
}
- componentWillUpdate(nextProps, nextState) {
- // this is dirty, but moving all this state to MessageComposer is dirtier
- if (this.props.onInputStateChanged && nextState !== this.state) {
- const state = this.getSelectionInfo(nextState.editorState);
- state.isRichtextEnabled = nextState.isRichtextEnabled;
- this.props.onInputStateChanged(state);
- }
- }
-
onAction = (payload) => {
const editor = this.refs.editor;
- let contentState = this.state.editorState.getCurrentContent();
+ let editorState = this.state.editorState;
switch (payload.action) {
case 'reply_to_event':
case 'focus_composer':
- editor.focus();
+ this.focusComposer();
break;
- case 'insert_mention': {
- // Pretend that we've autocompleted this user because keeping two code
- // paths for inserting a user pill is not fun
- const selection = this.state.editorState.getSelection();
- const member = this.props.room.getMember(payload.user_id);
- const completion = member ?
- member.rawDisplayName.replace(' (IRC)', '') : payload.user_id;
- this.setDisplayedCompletion({
- completion,
- selection,
- href: makeUserPermalink(payload.user_id),
- suffix: selection.getStartOffset() === 0 ? ': ' : ' ',
+ case 'insert_mention':
+ {
+ // Pretend that we've autocompleted this user because keeping two code
+ // paths for inserting a user pill is not fun
+ const selection = this.getSelectionRange(this.state.editorState);
+ const member = this.props.room.getMember(payload.user_id);
+ const completion = member ?
+ member.rawDisplayName.replace(' (IRC)', '') : payload.user_id;
+ this.setDisplayedCompletion({
+ completion,
+ completionId: payload.user_id,
+ selection,
+ href: makeUserPermalink(payload.user_id),
+ suffix: (selection.beginning && selection.start === 0) ? ': ' : ' ',
+ });
+ }
+ break;
+ case 'quote': {
+ const html = HtmlUtils.bodyToHtml(payload.event.getContent(), null, {
+ forComposerQuote: true,
+ returnString: true,
+ emojiOne: false,
});
- }
- break;
+ const fragment = this.html.deserialize(html);
+ // FIXME: do we want to put in a permalink to the original quote here?
+ // If so, what should be the format, and how do we differentiate it from replies?
- case 'quote': { // old quoting, whilst rich quoting is in labs
- /// XXX: Not doing rich-text quoting from formatted-body because draft-js
- /// has regressed such that when links are quoted, errors are thrown. See
- /// https://github.com/vector-im/riot-web/issues/4756.
- const body = escape(payload.text);
- if (body) {
- let content = RichText.htmlToContentState(`${body} `);
- if (!this.state.isRichtextEnabled) {
- content = ContentState.createFromText(RichText.stateToMarkdown(content));
+ const quote = Block.create('block-quote');
+ if (this.state.isRichTextEnabled) {
+ let change = editorState.change();
+ const anchorText = editorState.anchorText;
+ if ((!anchorText || anchorText.text === '') && editorState.anchorBlock.nodes.size === 1) {
+ // replace the current block rather than split the block
+ // XXX: this destroys our focus by deleting the thing we are anchored/focused on
+ change = change.replaceNodeByKey(editorState.anchorBlock.key, quote);
+ } else {
+ // insert it into the middle of the block (splitting it)
+ change = change.insertBlock(quote);
}
- const blockMap = content.getBlockMap();
- let startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
- contentState = Modifier.splitBlock(contentState, startSelection);
- startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
- contentState = Modifier.replaceWithFragment(contentState,
- startSelection,
- blockMap);
- startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
- if (this.state.isRichtextEnabled) {
- contentState = Modifier.setBlockType(contentState, startSelection, 'blockquote');
+ // XXX: heuristic to strip out wrapping which breaks quoting in RT mode
+ if (fragment.document.nodes.size && fragment.document.nodes.get(0).type === DEFAULT_NODE) {
+ change = change.insertFragmentByKey(quote.key, 0, fragment.document.nodes.get(0));
+ } else {
+ change = change.insertFragmentByKey(quote.key, 0, fragment.document);
}
- let editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
- editorState = EditorState.moveSelectionToEnd(editorState);
- this.onEditorContentChanged(editorState);
- editor.focus();
+
+ // XXX: this is to bring back the focus in a sane place and add a paragraph after it
+ change = change.select({
+ anchorKey: quote.key,
+ focusKey: quote.key,
+ }).collapseToEndOfBlock().insertBlock(Block.create(DEFAULT_NODE)).focus();
+
+ this.onChange(change);
+ } else {
+ let fragmentChange = fragment.change();
+ fragmentChange.moveToRangeOf(fragment.document)
+ .wrapBlock(quote);
+
+ // FIXME: handle pills and use commonmark rather than md-serialize
+ const md = this.md.serialize(fragmentChange.value);
+ let change = editorState.change()
+ .insertText(md + '\n\n')
+ .focus();
+ this.onChange(change);
}
}
break;
@@ -374,7 +472,7 @@ export default class MessageComposerInput extends React.Component {
stopServerTypingTimer() {
if (this.serverTypingTimer) {
- clearTimeout(this.servrTypingTimer);
+ clearTimeout(this.serverTypingTimer);
this.serverTypingTimer = null;
}
}
@@ -394,195 +492,417 @@ export default class MessageComposerInput extends React.Component {
}
}
- // Called by Draft to change editor contents
- onEditorContentChanged = (editorState: EditorState) => {
- editorState = RichText.attachImmutableEntitiesToEmoji(editorState);
+ onChange = (change: Change, originalEditorState?: Value) => {
+ let editorState = change.value;
- const currentBlock = editorState.getSelection().getStartKey();
- const currentSelection = editorState.getSelection();
- const currentStartOffset = editorState.getSelection().getStartOffset();
-
- const block = editorState.getCurrentContent().getBlockForKey(currentBlock);
- const text = block.getText();
-
- const entityBeforeCurrentOffset = block.getEntityAt(currentStartOffset - 1);
- const entityAtCurrentOffset = block.getEntityAt(currentStartOffset);
-
- // If the cursor is on the boundary between an entity and a non-entity and the
- // text before the cursor has whitespace at the end, set the entity state of the
- // character before the cursor (the whitespace) to null. This allows the user to
- // stop editing the link.
- if (entityBeforeCurrentOffset && !entityAtCurrentOffset &&
- /\s$/.test(text.slice(0, currentStartOffset))) {
- editorState = RichUtils.toggleLink(
- editorState,
- currentSelection.merge({
- anchorOffset: currentStartOffset - 1,
- focusOffset: currentStartOffset,
- }),
- null,
- );
- // Reset selection
- editorState = EditorState.forceSelection(editorState, currentSelection);
- }
-
- // Automatic replacement of plaintext emoji to Unicode emoji
- if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
- // The first matched group includes just the matched plaintext emoji
- const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset));
- if (emojiMatch) {
- // plaintext -> hex unicode
- const emojiUc = asciiList[emojiMatch[1]];
- // hex unicode -> shortname -> actual unicode
- const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]);
- const newContentState = Modifier.replaceText(
- editorState.getCurrentContent(),
- currentSelection.merge({
- anchorOffset: currentStartOffset - emojiMatch[1].length - 1,
- focusOffset: currentStartOffset,
- }),
- unicodeEmoji,
- );
- editorState = EditorState.push(
- editorState,
- newContentState,
- 'insert-characters',
- );
- editorState = EditorState.forceSelection(editorState, newContentState.getSelectionAfter());
+ if (this.direction !== '') {
+ const focusedNode = editorState.focusInline || editorState.focusText;
+ if (focusedNode.isVoid) {
+ // XXX: does this work in RTL?
+ const edge = this.direction === 'Previous' ? 'End' : 'Start';
+ if (editorState.isCollapsed) {
+ change = change[`collapseTo${ edge }Of${ this.direction }Text`]();
+ } else {
+ const block = this.direction === 'Previous' ? editorState.previousText : editorState.nextText;
+ if (block) {
+ change = change[`moveFocusTo${ edge }Of`](block);
+ }
+ }
+ editorState = change.value;
}
}
- /* Since a modification was made, set originalEditorState to null, since newState is now our original */
+ // when in autocomplete mode and selection changes hide the autocomplete.
+ // Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
+ if (this.autocomplete.state.completionList.length > 0 && !this.autocomplete.state.hide &&
+ !rangeEquals(this.state.editorState.selection, editorState.selection) &&
+ // XXX: the heuristic failed when inlines like pills weren't taken into account. This is inideal
+ this.state.editorState.document.toJSON() === editorState.document.toJSON())
+ {
+ this.autocomplete.hide();
+ }
+
+ if (!editorState.document.isEmpty) {
+ this.onTypingActivity();
+ } else {
+ this.onFinishedTyping();
+ }
+
+ if (editorState.startText !== null) {
+ const text = editorState.startText.text;
+ const currentStartOffset = editorState.startOffset;
+
+ // Automatic replacement of plaintext emoji to Unicode emoji
+ if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
+ // The first matched group includes just the matched plaintext emoji
+ const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset));
+ if (emojiMatch) {
+ // plaintext -> hex unicode
+ const emojiUc = asciiList[emojiMatch[1]];
+ // hex unicode -> shortname -> actual unicode
+ const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]);
+
+ const range = Range.create({
+ anchorKey: editorState.selection.startKey,
+ anchorOffset: currentStartOffset - emojiMatch[1].length - 1,
+ focusKey: editorState.selection.startKey,
+ focusOffset: currentStartOffset - 1,
+ });
+ change = change.insertTextAtRange(range, unicodeEmoji);
+ editorState = change.value;
+ }
+ }
+ }
+
+ // emojioneify any emoji
+ editorState.document.getTexts().forEach(node => {
+ if (node.text !== '' && HtmlUtils.containsEmoji(node.text)) {
+ let match;
+ while ((match = EMOJI_REGEX.exec(node.text)) !== null) {
+ const range = Range.create({
+ anchorKey: node.key,
+ anchorOffset: match.index,
+ focusKey: node.key,
+ focusOffset: match.index + match[0].length,
+ });
+ const inline = Inline.create({
+ type: 'emoji',
+ data: { emojiUnicode: match[0] },
+ isVoid: true,
+ });
+ change = change.insertInlineAtRange(range, inline);
+ editorState = change.value;
+ }
+ }
+ });
+
+ // work around weird bug where inserting emoji via the macOS
+ // emoji picker can leave the selection stuck in the emoji's
+ // child text. This seems to happen due to selection getting
+ // moved in the normalisation phase after calculating these changes
+ if (editorState.anchorKey &&
+ editorState.document.getParent(editorState.anchorKey).type === 'emoji')
+ {
+ change = change.collapseToStartOfNextText();
+ editorState = change.value;
+ }
+
+ if (this.props.onInputStateChanged && editorState.blocks.size > 0) {
+ let blockType = editorState.blocks.first().type;
+ // console.log("onInputStateChanged; current block type is " + blockType + " and marks are " + editorState.activeMarks);
+
+ if (blockType === 'list-item') {
+ const parent = editorState.document.getParent(editorState.blocks.first().key);
+ if (parent.type === 'numbered-list') {
+ blockType = 'numbered-list';
+ }
+ else if (parent.type === 'bulleted-list') {
+ blockType = 'bulleted-list';
+ }
+ }
+ const inputState = {
+ marks: editorState.activeMarks,
+ isRichTextEnabled: this.state.isRichTextEnabled,
+ blockType
+ };
+ this.props.onInputStateChanged(inputState);
+ }
+
+ // Record the editor state for this room so that it can be retrieved after switching to another room and back
+ MessageComposerStore.setEditorState(this.props.room.roomId, editorState, this.state.isRichTextEnabled);
+
this.setState({
editorState,
- originalEditorState: null,
+ originalEditorState: originalEditorState || null
});
};
- /**
- * We're overriding setState here because it's the most convenient way to monitor changes to the editorState.
- * Doing it using a separate function that calls setState is a possibility (and was the old approach), but that
- * approach requires a callback and an extra setState whenever trying to set multiple state properties.
- *
- * @param state
- * @param callback
- */
- setState(state, callback) {
- if (state.editorState != null) {
- state.editorState = RichText.attachImmutableEntitiesToEmoji(
- state.editorState);
+ mdToRichEditorState(editorState: Value): Value {
+ // for consistency when roundtripping, we could use slate-md-serializer rather than
+ // commonmark, but then we would lose pills as the MD deserialiser doesn't know about
+ // them and doesn't have any extensibility hooks.
+ //
+ // The code looks like this:
+ //
+ // const markdown = this.plainWithMdPills.serialize(editorState);
+ //
+ // // weirdly, the Md serializer can't deserialize '' to a valid Value...
+ // if (markdown !== '') {
+ // editorState = this.md.deserialize(markdown);
+ // }
+ // else {
+ // editorState = Plain.deserialize('', { defaultBlock: DEFAULT_NODE });
+ // }
- // Hide the autocomplete if the cursor location changes but the plaintext
- // content stays the same. We don't hide if the pt has changed because the
- // autocomplete will probably have different completions to show.
- if (
- !state.editorState.getSelection().equals(
- this.state.editorState.getSelection(),
- )
- && state.editorState.getCurrentContent().getPlainText() ===
- this.state.editorState.getCurrentContent().getPlainText()
- ) {
- this.autocomplete.hide();
- }
+ // so, instead, we use commonmark proper (which is arguably more logical to the user
+ // anyway, as they'll expect the RTE view to match what they'll see in the timeline,
+ // but the HTML->MD conversion is anyone's guess).
- if (state.editorState.getCurrentContent().hasText()) {
- this.onTypingActivity();
- } else {
- this.onFinishedTyping();
- }
+ const textWithMdPills = this.plainWithMdPills.serialize(editorState);
+ const markdown = new Markdown(textWithMdPills);
+ // HTML deserialize has custom rules to turn matrix.to links into pill objects.
+ return this.html.deserialize(markdown.toHTML());
+ }
- // Record the editor state for this room so that it can be retrieved after
- // switching to another room and back
- dis.dispatch({
- action: 'content_state',
- room_id: this.props.room.roomId,
- content_state: state.editorState.getCurrentContent(),
- });
-
- if (!state.hasOwnProperty('originalEditorState')) {
- state.originalEditorState = null;
- }
- }
-
- super.setState(state, () => {
- if (callback != null) {
- callback();
- }
-
- const textContent = this.state.editorState.getCurrentContent().getPlainText();
- const selection = RichText.selectionStateToTextOffsets(
- this.state.editorState.getSelection(),
- this.state.editorState.getCurrentContent().getBlocksAsArray());
- if (this.props.onContentChanged) {
- this.props.onContentChanged(textContent, selection);
- }
-
- // Scroll to the bottom of the editor if the cursor is on the last line of the
- // composer. For some reason the editor won't scroll automatically if we paste
- // blocks of text in or insert newlines.
- if (textContent.slice(selection.start).indexOf("\n") === -1) {
- let editorRoot = this.refs.editor.refs.editor.parentNode.parentNode;
- editorRoot.scrollTop = editorRoot.scrollHeight;
- }
- });
+ richToMdEditorState(editorState: Value): Value {
+ // FIXME: this conversion loses pills (turning them into pure MD links).
+ // We need to add a pill-aware deserialize method
+ // to PlainWithPillsSerializer which recognises pills in raw MD and turns them into pills.
+ return Plain.deserialize(
+ // FIXME: we compile the MD out of the RTE state using slate-md-serializer
+ // which doesn't roundtrip symmetrically with commonmark, which we use for
+ // compiling MD out of the MD editor state above.
+ this.md.serialize(editorState),
+ { defaultBlock: DEFAULT_NODE }
+ );
}
enableRichtext(enabled: boolean) {
- if (enabled === this.state.isRichtextEnabled) return;
+ if (enabled === this.state.isRichTextEnabled) return;
- let contentState = null;
+ let editorState = null;
if (enabled) {
- const md = new Markdown(this.state.editorState.getCurrentContent().getPlainText());
- contentState = RichText.htmlToContentState(md.toHTML());
+ editorState = this.mdToRichEditorState(this.state.editorState);
} else {
- let markdown = RichText.stateToMarkdown(this.state.editorState.getCurrentContent());
- if (markdown[markdown.length - 1] === '\n') {
- markdown = markdown.substring(0, markdown.length - 1); // stateToMarkdown tacks on an extra newline (?!?)
- }
- contentState = ContentState.createFromText(markdown);
+ editorState = this.richToMdEditorState(this.state.editorState);
}
Analytics.setRichtextMode(enabled);
this.setState({
- editorState: this.createEditorState(enabled, contentState),
- isRichtextEnabled: enabled,
+ editorState: this.createEditorState(enabled, editorState),
+ isRichTextEnabled: enabled,
+ }, ()=>{
+ this.refs.editor.focus();
});
+
SettingsStore.setValue("MessageComposerInput.isRichTextEnabled", null, SettingLevel.ACCOUNT, enabled);
- }
+ };
+
+ /**
+ * Check if the current selection has a mark with `type` in it.
+ *
+ * @param {String} type
+ * @return {Boolean}
+ */
+
+ hasMark = type => {
+ const { editorState } = this.state
+ return editorState.activeMarks.some(mark => mark.type === type)
+ };
+
+ /**
+ * Check if the any of the currently selected blocks are of `type`.
+ *
+ * @param {String} type
+ * @return {Boolean}
+ */
+
+ hasBlock = type => {
+ const { editorState } = this.state
+ return editorState.blocks.some(node => node.type === type)
+ };
+
+ onKeyDown = (ev: KeyboardEvent, change: Change, editor: Editor) => {
+
+ this.suppressAutoComplete = false;
+
+ // skip void nodes - see
+ // https://github.com/ianstormtaylor/slate/issues/762#issuecomment-304855095
+ if (ev.keyCode === KeyCode.LEFT) {
+ this.direction = 'Previous';
+ }
+ else if (ev.keyCode === KeyCode.RIGHT) {
+ this.direction = 'Next';
+ } else {
+ this.direction = '';
+ }
+
+ switch (ev.keyCode) {
+ case KeyCode.ENTER:
+ return this.handleReturn(ev, change);
+ case KeyCode.BACKSPACE:
+ return this.onBackspace(ev, change);
+ case KeyCode.UP:
+ return this.onVerticalArrow(ev, true);
+ case KeyCode.DOWN:
+ return this.onVerticalArrow(ev, false);
+ case KeyCode.TAB:
+ return this.onTab(ev);
+ case KeyCode.ESCAPE:
+ return this.onEscape(ev);
+ case KeyCode.SPACE:
+ return this.onSpace(ev, change);
+ }
+
+ if (isOnlyCtrlOrCmdKeyEvent(ev)) {
+ const ctrlCmdCommand = {
+ // C-m => Toggles between rich text and markdown modes
+ [KeyCode.KEY_M]: 'toggle-mode',
+ [KeyCode.KEY_B]: 'bold',
+ [KeyCode.KEY_I]: 'italic',
+ [KeyCode.KEY_U]: 'underlined',
+ [KeyCode.KEY_J]: 'inline-code',
+ }[ev.keyCode];
+
+ if (ctrlCmdCommand) {
+ ev.preventDefault(); // to prevent clashing with Mac's minimize window
+ return this.handleKeyCommand(ctrlCmdCommand);
+ }
+ }
+ };
+
+ onSpace = (ev: KeyboardEvent, change: Change): Change => {
+ if (ev.metaKey || ev.altKey || ev.shiftKey || ev.ctrlKey) {
+ return;
+ }
+
+ // drop a point in history so the user can undo a word
+ // XXX: this seems nasty but adding to history manually seems a no-go
+ ev.preventDefault();
+ return change.setOperationFlag("skip", false).setOperationFlag("merge", false).insertText(ev.key);
+ };
+
+ onBackspace = (ev: KeyboardEvent, change: Change): Change => {
+ if (ev.metaKey || ev.altKey || ev.shiftKey) {
+ return;
+ }
+
+ const { editorState } = this.state;
+
+ // Allow Ctrl/Cmd-Backspace when focus starts at the start of the composer (e.g select-all)
+ // for some reason if slate sees you Ctrl-backspace and your anchorOffset=0 it just resets your focus
+ if (!editorState.isCollapsed && editorState.anchorOffset === 0) {
+ return change.delete();
+ }
+
+ if (this.state.isRichTextEnabled) {
+ // let backspace exit lists
+ const isList = this.hasBlock('list-item');
+
+ if (isList && editorState.anchorOffset == 0) {
+ change
+ .setBlocks(DEFAULT_NODE)
+ .unwrapBlock('bulleted-list')
+ .unwrapBlock('numbered-list');
+ return change;
+ }
+ else if (editorState.anchorOffset == 0 && editorState.isCollapsed) {
+ // turn blocks back into paragraphs
+ if ((this.hasBlock('block-quote') ||
+ this.hasBlock('heading1') ||
+ this.hasBlock('heading2') ||
+ this.hasBlock('heading3') ||
+ this.hasBlock('heading4') ||
+ this.hasBlock('heading5') ||
+ this.hasBlock('heading6') ||
+ this.hasBlock('code')))
+ {
+ return change.setBlocks(DEFAULT_NODE);
+ }
+
+ // remove paragraphs entirely if they're nested
+ const parent = editorState.document.getParent(editorState.anchorBlock.key);
+ if (editorState.anchorOffset == 0 &&
+ this.hasBlock('paragraph') &&
+ parent.nodes.size == 1 &&
+ parent.object !== 'document')
+ {
+ return change.replaceNodeByKey(editorState.anchorBlock.key, editorState.anchorText)
+ .collapseToEndOf(parent)
+ .focus();
+ }
+ }
+ }
+ return;
+ };
handleKeyCommand = (command: string): boolean => {
if (command === 'toggle-mode') {
- this.enableRichtext(!this.state.isRichtextEnabled);
+ this.enableRichtext(!this.state.isRichTextEnabled);
return true;
}
- let newState: ?EditorState = null;
+
+ let newState: ?Value = null;
// Draft handles rich text mode commands by default but we need to do it ourselves for Markdown.
- if (this.state.isRichtextEnabled) {
- // These are block types, not handled by RichUtils by default.
- const blockCommands = ['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item'];
- const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState);
+ if (this.state.isRichTextEnabled) {
+ const type = command;
+ const { editorState } = this.state;
+ const change = editorState.change();
+ const { document } = editorState;
+ switch (type) {
+ // list-blocks:
+ case 'bulleted-list':
+ case 'numbered-list': {
+ // Handle the extra wrapping required for list buttons.
+ const isList = this.hasBlock('list-item');
+ const isType = editorState.blocks.some(block => {
+ return !!document.getClosest(block.key, parent => parent.type === type);
+ });
- const shouldToggleBlockFormat = (
- command === 'backspace' ||
- command === 'split-block'
- ) && currentBlockType !== 'unstyled';
-
- if (blockCommands.includes(command)) {
- newState = RichUtils.toggleBlockType(this.state.editorState, command);
- } else if (command === 'strike') {
- // this is the only inline style not handled by Draft by default
- newState = RichUtils.toggleInlineStyle(this.state.editorState, 'STRIKETHROUGH');
- } else if (shouldToggleBlockFormat) {
- const currentStartOffset = this.state.editorState.getSelection().getStartOffset();
- const currentEndOffset = this.state.editorState.getSelection().getEndOffset();
- if (currentStartOffset === 0 && currentEndOffset === 0) {
- // Toggle current block type (setting it to 'unstyled')
- newState = RichUtils.toggleBlockType(this.state.editorState, currentBlockType);
+ if (isList && isType) {
+ change
+ .setBlocks(DEFAULT_NODE)
+ .unwrapBlock('bulleted-list')
+ .unwrapBlock('numbered-list');
+ } else if (isList) {
+ change
+ .unwrapBlock(
+ type === 'bulleted-list' ? 'numbered-list' : 'bulleted-list'
+ )
+ .wrapBlock(type);
+ } else {
+ change.setBlocks('list-item').wrapBlock(type);
+ }
}
+ break;
+
+ // simple blocks
+ case 'paragraph':
+ case 'block-quote':
+ case 'heading1':
+ case 'heading2':
+ case 'heading3':
+ case 'heading4':
+ case 'heading5':
+ case 'heading6':
+ case 'list-item':
+ case 'code': {
+ const isActive = this.hasBlock(type);
+ const isList = this.hasBlock('list-item');
+
+ if (isList) {
+ change
+ .setBlocks(isActive ? DEFAULT_NODE : type)
+ .unwrapBlock('bulleted-list')
+ .unwrapBlock('numbered-list');
+ } else {
+ change.setBlocks(isActive ? DEFAULT_NODE : type);
+ }
+ }
+ break;
+
+ // marks:
+ case 'bold':
+ case 'italic':
+ case 'inline-code':
+ case 'underlined':
+ case 'deleted': {
+ change.toggleMark(type === 'inline-code' ? 'code' : type);
+ }
+ break;
+
+ default:
+ console.warn(`ignoring unrecognised RTE command ${type}`);
+ return false;
}
+
+ this.onChange(change);
+
+ return true;
} else {
+/*
const contentState = this.state.editorState.getCurrentContent();
const multipleLinesSelected = RichText.hasMultiLineSelection(this.state.editorState);
@@ -602,7 +922,7 @@ export default class MessageComposerInput extends React.Component {
'strike': (text) => `${text}`,
// ("code" is triggered by ctrl+j by draft-js by default)
'code': (text) => treatInlineCodeAsBlock ? textMdCodeBlock(text) : `\`${text}\``,
- 'code-block': textMdCodeBlock,
+ 'code': textMdCodeBlock,
'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join('') + '\n',
'unordered-list-item': (text) => text.split('\n').map((line) => `\n- ${line}`).join(''),
'ordered-list-item': (text) => text.split('\n').map((line, i) => `\n${i + 1}. ${line}`).join(''),
@@ -614,20 +934,21 @@ export default class MessageComposerInput extends React.Component {
'underline': -4,
'strike': -6,
'code': treatInlineCodeAsBlock ? -5 : -1,
- 'code-block': -5,
+ 'code': -5,
'blockquote': -2,
}[command];
- // Returns a function that collapses a selectionState to its end and moves it by offset
- const collapseAndOffsetSelection = (selectionState, offset) => {
- const key = selectionState.getEndKey();
- return new SelectionState({
+ // Returns a function that collapses a selection to its end and moves it by offset
+ const collapseAndOffsetSelection = (selection, offset) => {
+ const key = selection.endKey();
+ return new Range({
anchorKey: key, anchorOffset: offset,
focusKey: key, focusOffset: offset,
});
};
if (modifyFn) {
+
const previousSelection = this.state.editorState.getSelection();
const newContentState = RichText.modifyText(contentState, previousSelection, modifyFn);
newState = EditorState.push(
@@ -652,88 +973,106 @@ export default class MessageComposerInput extends React.Component {
}
}
- if (newState == null) {
- newState = RichUtils.handleKeyCommand(this.state.editorState, command);
- }
-
if (newState != null) {
this.setState({editorState: newState});
return true;
}
-
+*/
+ }
return false;
};
- onTextPasted(text: string, html?: string) {
- const currentSelection = this.state.editorState.getSelection();
- const currentContent = this.state.editorState.getCurrentContent();
+ onPaste = (event: Event, change: Change, editor: Editor): Change => {
+ const transfer = getEventTransfer(event);
- let contentState = null;
- if (html && this.state.isRichtextEnabled) {
- contentState = Modifier.replaceWithFragment(
- currentContent,
- currentSelection,
- RichText.htmlToContentState(html).getBlockMap(),
- );
- } else {
- contentState = Modifier.replaceText(currentContent, currentSelection, text);
+ switch (transfer.type) {
+ case 'files':
+ return this.props.onFilesPasted(transfer.files);
+ case 'html': {
+ if (this.state.isRichTextEnabled) {
+ // FIXME: https://github.com/ianstormtaylor/slate/issues/1497 means
+ // that we will silently discard nested blocks (e.g. nested lists) :(
+ const fragment = this.html.deserialize(transfer.html);
+ return change
+ // XXX: this somehow makes Slate barf on undo and get too empty and break entirely
+ // .setOperationFlag("skip", false)
+ // .setOperationFlag("merge", false)
+ .insertFragment(fragment.document);
+ } else {
+ // in MD mode we don't want the rich content pasted as the magic was annoying people so paste plain
+ return change
+ .setOperationFlag("skip", false)
+ .setOperationFlag("merge", false)
+ .insertText(transfer.text);
+ }
+ }
+ case 'text':
+ // don't skip/merge so that multiple consecutive pastes can be undone individually
+ return change
+ .setOperationFlag("skip", false)
+ .setOperationFlag("merge", false)
+ .insertText(transfer.text);
}
+ };
- let newEditorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
-
- newEditorState = EditorState.forceSelection(newEditorState, contentState.getSelectionAfter());
- this.onEditorContentChanged(newEditorState);
- return true;
- }
-
- handleReturn(ev) {
+ handleReturn = (ev, change) => {
if (ev.shiftKey) {
- this.onEditorContentChanged(RichUtils.insertSoftNewline(this.state.editorState));
- return true;
+ return change.insertText('\n');
}
- const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState);
- if (
- ['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item']
- .includes(currentBlockType)
- ) {
- // By returning false, we allow the default draft-js key binding to occur,
- // which in this case invokes "split-block". This creates a new block of the
- // same type, allowing the user to delete it with backspace.
- // See handleKeyCommand (when command === 'backspace')
- return false;
+ const editorState = this.state.editorState;
+
+ const lastBlock = editorState.blocks.last();
+ if (['code', 'block-quote', 'list-item'].includes(lastBlock.type)) {
+ const text = lastBlock.text;
+ if (text === '') {
+ // allow the user to cancel empty block by hitting return, useful in conjunction with below `inBlock`
+ return change
+ .setBlocks(DEFAULT_NODE)
+ .unwrapBlock('bulleted-list')
+ .unwrapBlock('numbered-list');
+ }
+
+ // TODO strip trailing lines from blockquotes/list entries
+ // the below code seemingly works but doesn't account for edge cases like return with caret not at end
+ /* const trailingNewlines = text.match(/\n*$/);
+ if (trailingNewlines && trailingNewlines[0]) {
+ remove trailing newlines at the end of this block before making a new one
+ return change.deleteBackward(trailingNewlines[0].length);
+ }*/
+
+ return;
}
- const contentState = this.state.editorState.getCurrentContent();
- if (!contentState.hasText()) {
- return true;
+ let contentText;
+ let contentHTML;
+
+ // only look for commands if the first block contains simple unformatted text
+ // i.e. no pills or rich-text formatting and begins with a /.
+ let cmd, commandText;
+ const firstChild = editorState.document.nodes.get(0);
+ const firstGrandChild = firstChild && firstChild.nodes.get(0);
+ if (firstChild && firstGrandChild &&
+ firstChild.object === 'block' && firstGrandChild.object === 'text' &&
+ firstGrandChild.text[0] === '/')
+ {
+ commandText = this.plainWithIdPills.serialize(editorState);
+ cmd = processCommandInput(this.props.room.roomId, commandText);
}
-
- let contentText = contentState.getPlainText(), contentHTML;
-
- // Strip MD user (tab-completed) mentions to preserve plaintext mention behaviour.
- // We have to do this now as opposed to after calculating the contentText for MD
- // mode because entity positions may not be maintained when using
- // md.toPlaintext().
- // Unfortunately this means we lose mentions in history when in MD mode. This
- // would be fixed if history was stored as contentState.
- contentText = this.removeMDLinks(contentState, ['@']);
-
- // Some commands (/join) require pills to be replaced with their text content
- const commandText = this.removeMDLinks(contentState, ['#']);
- const cmd = SlashCommands.processInput(this.props.room.roomId, commandText);
if (cmd) {
if (!cmd.error) {
- this.historyManager.save(contentState, this.state.isRichtextEnabled ? 'html' : 'markdown');
+ this.historyManager.save(editorState, this.state.isRichTextEnabled ? 'rich' : 'markdown');
this.setState({
editorState: this.createEditorState(),
+ }, ()=>{
+ this.refs.editor.focus();
});
}
if (cmd.promise) {
- cmd.promise.then(function() {
+ cmd.promise.then(()=>{
console.log("Command success.");
- }, function(err) {
+ }, (err)=>{
console.error("Command failure: %s", err);
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog('Server error', '', ErrorDialog, {
@@ -756,74 +1095,43 @@ export default class MessageComposerInput extends React.Component {
const replyingToEv = RoomViewStore.getQuotingEvent();
const mustSendHTML = Boolean(replyingToEv);
- if (this.state.isRichtextEnabled) {
+ if (this.state.isRichTextEnabled) {
// We should only send HTML if any block is styled or contains inline style
let shouldSendHTML = false;
if (mustSendHTML) shouldSendHTML = true;
- const blocks = contentState.getBlocksAsArray();
- if (blocks.some((block) => block.getType() !== 'unstyled')) {
- shouldSendHTML = true;
- } else {
- const characterLists = blocks.map((block) => block.getCharacterList());
- // For each block of characters, determine if any inline styles are applied
- // and if yes, send HTML
- characterLists.forEach((characters) => {
- const numberOfStylesForCharacters = characters.map(
- (character) => character.getStyle().toArray().length,
- ).toArray();
- // If any character has more than 0 inline styles applied, send HTML
- if (numberOfStylesForCharacters.some((styles) => styles > 0)) {
- shouldSendHTML = true;
- }
- });
- }
if (!shouldSendHTML) {
- const hasLink = blocks.some((block) => {
- return block.getCharacterList().filter((c) => {
- const entityKey = c.getEntity();
- return entityKey && contentState.getEntity(entityKey).getType() === 'LINK';
- }).size > 0;
+ shouldSendHTML = !!editorState.document.findDescendant(node => {
+ // N.B. node.getMarks() might be private?
+ return ((node.object === 'block' && node.type !== 'paragraph') ||
+ (node.object === 'inline') ||
+ (node.object === 'text' && node.getMarks().size > 0));
});
- shouldSendHTML = hasLink;
}
+
+ contentText = this.plainWithPlainPills.serialize(editorState);
+ if (contentText === '') return true;
+
if (shouldSendHTML) {
- contentHTML = HtmlUtils.processHtmlForSending(
- RichText.contentStateToHTML(contentState),
- );
+ contentHTML = HtmlUtils.processHtmlForSending(this.html.serialize(editorState));
}
} else {
- // Use the original contentState because `contentText` has had mentions
- // stripped and these need to end up in contentHTML.
+ const sourceWithPills = this.plainWithMdPills.serialize(editorState);
+ if (sourceWithPills === '') return true;
- // Replace all Entities of type `LINK` with markdown link equivalents.
- // TODO: move this into `Markdown` and do the same conversion in the other
- // two places (toggling from MD->RT mode and loading MD history into RT mode)
- // but this can only be done when history includes Entities.
- const pt = contentState.getBlocksAsArray().map((block) => {
- let blockText = block.getText();
- let offset = 0;
- this.findPillEntities(contentState, block, (start, end) => {
- const entity = contentState.getEntity(block.getEntityAt(start));
- if (entity.getType() !== 'LINK') {
- return;
- }
- const text = blockText.slice(offset + start, offset + end);
- const url = entity.getData().url;
- const mdLink = `[${text}](${url})`;
- blockText = blockText.slice(0, offset + start) + mdLink + blockText.slice(offset + end);
- offset += mdLink.length - text.length;
- });
- return blockText;
- }).join('\n');
+ const mdWithPills = new Markdown(sourceWithPills);
- const md = new Markdown(pt);
// if contains no HTML and we're not quoting (needing HTML)
- if (md.isPlainText() && !mustSendHTML) {
- contentText = md.toPlaintext();
+ if (mdWithPills.isPlainText() && !mustSendHTML) {
+ // N.B. toPlainText is only usable here because we know that the MD
+ // didn't contain any formatting in the first place...
+ contentText = mdWithPills.toPlaintext();
} else {
- contentHTML = md.toHTML();
+ // to avoid ugliness on clients which ignore the HTML body we don't
+ // send pills in the plaintext body.
+ contentText = this.plainWithPlainPills.serialize(editorState);
+ contentHTML = mdWithPills.toHTML();
}
}
@@ -831,11 +1139,11 @@ export default class MessageComposerInput extends React.Component {
let sendTextFn = ContentHelpers.makeTextMessage;
this.historyManager.save(
- contentState,
- this.state.isRichtextEnabled ? 'html' : 'markdown',
+ editorState,
+ this.state.isRichTextEnabled ? 'rich' : 'markdown',
);
- if (contentText.startsWith('/me')) {
+ if (commandText && commandText.startsWith('/me')) {
if (replyingToEv) {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog('Emote Reply Fail', '', ErrorDialog, {
@@ -852,14 +1160,16 @@ export default class MessageComposerInput extends React.Component {
sendTextFn = ContentHelpers.makeEmoteMessage;
}
-
- let content = contentHTML ? sendHtmlFn(contentText, contentHTML) : sendTextFn(contentText);
+ let content = contentHTML ?
+ sendHtmlFn(contentText, contentHTML) :
+ sendTextFn(contentText);
if (replyingToEv) {
const replyContent = ReplyThread.makeReplyMixIn(replyingToEv);
content = Object.assign(replyContent, content);
- // Part of Replies fallback support - prepend the text we're sending with the text we're replying to
+ // Part of Replies fallback support - prepend the text we're sending
+ // with the text we're replying to
const nestedReply = ReplyThread.getNestedReplyText(replyingToEv);
if (nestedReply) {
if (content.formatted_body) {
@@ -876,7 +1186,6 @@ export default class MessageComposerInput extends React.Component {
});
}
-
this.client.sendMessage(this.props.room.roomId, content).then((res) => {
dis.dispatch({
action: 'message_sent',
@@ -887,17 +1196,9 @@ export default class MessageComposerInput extends React.Component {
this.setState({
editorState: this.createEditorState(),
- });
+ }, ()=>{ this.refs.editor.focus() });
return true;
- }
-
- onUpArrow = (e) => {
- this.onVerticalArrow(e, true);
- };
-
- onDownArrow = (e) => {
- this.onVerticalArrow(e, false);
};
onVerticalArrow = (e, up) => {
@@ -907,26 +1208,19 @@ export default class MessageComposerInput extends React.Component {
// Select history only if we are not currently auto-completing
if (this.autocomplete.state.completionList.length === 0) {
- // Don't go back in history if we're in the middle of a multi-line message
- const selection = this.state.editorState.getSelection();
- const blockKey = selection.getStartKey();
- const firstBlock = this.state.editorState.getCurrentContent().getFirstBlock();
- const lastBlock = this.state.editorState.getCurrentContent().getLastBlock();
+ const selection = this.state.editorState.selection;
- let canMoveUp = false;
- let canMoveDown = false;
- if (blockKey === firstBlock.getKey()) {
- canMoveUp = selection.getStartOffset() === selection.getEndOffset() &&
- selection.getStartOffset() === 0;
+ // selection must be collapsed
+ if (!selection.isCollapsed) return;
+ const document = this.state.editorState.document;
+
+ // and we must be at the edge of the document (up=start, down=end)
+ if (up) {
+ if (!selection.isAtStartOf(document)) return;
+ } else {
+ if (!selection.isAtEndOf(document)) return;
}
- if (blockKey === lastBlock.getKey()) {
- canMoveDown = selection.getStartOffset() === selection.getEndOffset() &&
- selection.getStartOffset() === lastBlock.getText().length;
- }
-
- if ((up && !canMoveUp) || (!up && !canMoveDown)) return;
-
const selected = this.selectHistory(up);
if (selected) {
// We're selecting history, so prevent the key event from doing anything else
@@ -959,23 +1253,30 @@ export default class MessageComposerInput extends React.Component {
return;
}
- const newContent = this.historyManager.getItem(delta, this.state.isRichtextEnabled ? 'html' : 'markdown');
- if (!newContent) return false;
- let editorState = EditorState.push(
- this.state.editorState,
- newContent,
- 'insert-characters',
- );
+ let editorState;
+ const historyItem = this.historyManager.getItem(delta);
+ if (!historyItem) return;
+
+ if (historyItem.format === 'rich' && !this.state.isRichTextEnabled) {
+ editorState = this.richToMdEditorState(historyItem.value);
+ } else if (historyItem.format === 'markdown' && this.state.isRichTextEnabled) {
+ editorState = this.mdToRichEditorState(historyItem.value);
+ } else {
+ editorState = historyItem.value;
+ }
// Move selection to the end of the selected history
- let newSelection = SelectionState.createEmpty(newContent.getLastBlock().getKey());
- newSelection = newSelection.merge({
- focusOffset: newContent.getLastBlock().getLength(),
- anchorOffset: newContent.getLastBlock().getLength(),
- });
- editorState = EditorState.forceSelection(editorState, newSelection);
+ const change = editorState.change().collapseToEndOf(editorState.document);
- this.setState({editorState});
+ // We don't call this.onChange(change) now, as fixups on stuff like emoji
+ // should already have been done and persisted in the history.
+ editorState = change.value;
+
+ this.suppressAutoComplete = true;
+
+ this.setState({ editorState }, ()=>{
+ this.refs.editor.focus();
+ });
return true;
};
@@ -1009,6 +1310,14 @@ export default class MessageComposerInput extends React.Component {
await this.setDisplayedCompletion(null); // restore originalEditorState
};
+ onAutocompleteConfirm = (displayedCompletion: ?Completion) => {
+ this.focusComposer();
+ // XXX: this fails if the composer isn't focused so focus it and delay the completion until next tick
+ setImmediate(() => {
+ this.setDisplayedCompletion(displayedCompletion);
+ });
+ };
+
/* If passed null, restores the original editor content from state.originalEditorState.
* If passed a non-null displayedCompletion, modifies state.originalEditorState to compute new state.editorState.
*/
@@ -1018,137 +1327,214 @@ export default class MessageComposerInput extends React.Component {
if (displayedCompletion == null) {
if (this.state.originalEditorState) {
let editorState = this.state.originalEditorState;
- // This is a workaround from https://github.com/facebook/draft-js/issues/458
- // Due to the way we swap editorStates, Draft does not rerender at times
- editorState = EditorState.forceSelection(editorState,
- editorState.getSelection());
this.setState({editorState});
}
return false;
}
- const {range = null, completion = '', href = null, suffix = ''} = displayedCompletion;
- let contentState = activeEditorState.getCurrentContent();
+ const {
+ range = null,
+ completion = '',
+ completionId = '',
+ href = null,
+ suffix = ''
+ } = displayedCompletion;
- let entityKey;
+ let inline;
if (href) {
- contentState = contentState.createEntity('LINK', 'IMMUTABLE', {
- url: href,
- isCompletion: true,
+ inline = Inline.create({
+ type: 'pill',
+ data: { completion, completionId, href },
+ // we can't put text in here otherwise the editor tries to select it
+ isVoid: true,
});
- entityKey = contentState.getLastCreatedEntityKey();
} else if (completion === '@room') {
- contentState = contentState.createEntity(ENTITY_TYPES.AT_ROOM_PILL, 'IMMUTABLE', {
- isCompletion: true,
+ inline = Inline.create({
+ type: 'pill',
+ data: { completion, completionId },
+ // we can't put text in here otherwise the editor tries to select it
+ isVoid: true,
});
- entityKey = contentState.getLastCreatedEntityKey();
}
- let selection;
+ let editorState = activeEditorState;
+
if (range) {
- selection = RichText.textOffsetsToSelectionState(
- range, contentState.getBlocksAsArray(),
- );
- } else {
- selection = activeEditorState.getSelection();
+ const change = editorState.change()
+ .collapseToAnchor()
+ .moveOffsetsTo(range.start, range.end)
+ .focus();
+ editorState = change.value;
}
- contentState = Modifier.replaceText(contentState, selection, completion, null, entityKey);
-
- // Move the selection to the end of the block
- const afterSelection = contentState.getSelectionAfter();
- if (suffix) {
- contentState = Modifier.replaceText(contentState, afterSelection, suffix);
+ let change;
+ if (inline) {
+ change = editorState.change()
+ .insertInlineAtRange(editorState.selection, inline)
+ .insertText(suffix)
+ .focus();
}
+ else {
+ change = editorState.change()
+ .insertTextAtRange(editorState.selection, completion)
+ .insertText(suffix)
+ .focus();
+ }
+ // for good hygiene, keep editorState updated to track the result of the change
+ // even though we don't do anything subsequently with it
+ editorState = change.value;
- let editorState = EditorState.push(activeEditorState, contentState, 'insert-characters');
- editorState = EditorState.forceSelection(editorState, contentState.getSelectionAfter());
- this.setState({editorState, originalEditorState: activeEditorState});
+ this.onChange(change, activeEditorState);
- // for some reason, doing this right away does not update the editor :(
- // setTimeout(() => this.refs.editor.focus(), 50);
return true;
};
- onFormatButtonClicked(name: "bold" | "italic" | "strike" | "code" | "underline" | "quote" | "bullet" | "numbullet", e) {
- e.preventDefault(); // don't steal focus from the editor!
- const command = {
- code: 'code-block',
- quote: 'blockquote',
- bullet: 'unordered-list-item',
- numbullet: 'ordered-list-item',
- }[name] || name;
- this.handleKeyCommand(command);
- }
+ renderNode = props => {
+ const { attributes, children, node, isSelected } = props;
- /* returns inline style and block type of current SelectionState so MessageComposer can render formatting
- buttons. */
- getSelectionInfo(editorState: EditorState) {
- const styleName = {
- BOLD: _td('bold'),
- ITALIC: _td('italic'),
- STRIKETHROUGH: _td('strike'),
- UNDERLINE: _td('underline'),
- };
+ switch (node.type) {
+ case 'paragraph':
+ return
{children}
;
+ case 'block-quote':
+ return {children} ;
+ case 'bulleted-list':
+ return ;
+ case 'heading1':
+ return {children} ;
+ case 'heading2':
+ return {children} ;
+ case 'heading3':
+ return {children} ;
+ case 'heading4':
+ return {children} ;
+ case 'heading5':
+ return {children} ;
+ case 'heading6':
+ return {children} ;
+ case 'list-item':
+ return {children} ;
+ case 'numbered-list':
+ return {children} ;
+ case 'code':
+ return {children} ;
+ case 'link':
+ return {children} ;
+ case 'pill': {
+ const { data } = node;
+ const url = data.get('href');
+ const completion = data.get('completion');
- const originalStyle = editorState.getCurrentInlineStyle().toArray();
- const style = originalStyle
- .map((style) => styleName[style] || null)
- .filter((styleName) => !!styleName);
+ const shouldShowPillAvatar = !SettingsStore.getValue("Pill.shouldHidePillAvatar");
+ const Pill = sdk.getComponent('elements.Pill');
- const blockName = {
- 'code-block': _td('code'),
- 'blockquote': _td('quote'),
- 'unordered-list-item': _td('bullet'),
- 'ordered-list-item': _td('numbullet'),
- };
- const originalBlockType = editorState.getCurrentContent()
- .getBlockForKey(editorState.getSelection().getStartKey())
- .getType();
- const blockType = blockName[originalBlockType] || null;
-
- return {
- style,
- blockType,
- };
- }
-
- getAutocompleteQuery(contentState: ContentState) {
- // Don't send markdown links to the autocompleter
- return this.removeMDLinks(contentState, ['@', '#']);
- }
-
- removeMDLinks(contentState: ContentState, prefixes: string[]) {
- const plaintext = contentState.getPlainText();
- if (!plaintext) return '';
- return plaintext.replace(REGEX_MATRIXTO_MARKDOWN_GLOBAL,
- (markdownLink, text, resource, prefix, offset) => {
- if (!prefixes.includes(prefix)) return markdownLink;
- // Calculate the offset relative to the current block that the offset is in
- let sum = 0;
- const blocks = contentState.getBlocksAsArray();
- let block;
- for (let i = 0; i < blocks.length; i++) {
- block = blocks[i];
- sum += block.getLength();
- if (sum > offset) {
- sum -= block.getLength();
- break;
+ if (completion === '@room') {
+ return ;
+ }
+ else if (Pill.isPillUrl(url)) {
+ return ;
+ }
+ else {
+ const { text } = node;
+ return
+ { text }
+ ;
}
}
- offset -= sum;
-
- const entityKey = block.getEntityAt(offset);
- const entity = entityKey ? contentState.getEntity(entityKey) : null;
- if (entity && entity.getData().isCompletion) {
- // This is a completed mention, so do not insert MD link, just text
- return text;
- } else {
- // This is either a MD link that was typed into the composer or another
- // type of pill (e.g. room pill)
- return markdownLink;
+ case 'emoji': {
+ const { data } = node;
+ const emojiUnicode = data.get('emojiUnicode');
+ const uri = RichText.unicodeToEmojiUri(emojiUnicode);
+ const shortname = toShort(emojiUnicode);
+ const className = classNames('mx_emojione', {
+ mx_emojione_selected: isSelected
+ });
+ return ;
}
- });
+ }
+ };
+
+ renderMark = props => {
+ const { children, mark, attributes } = props;
+ switch (mark.type) {
+ case 'bold':
+ return {children} ;
+ case 'italic':
+ return {children} ;
+ case 'code':
+ return {children}
;
+ case 'underlined':
+ return {children} ;
+ case 'deleted':
+ return {children};
+ }
+ };
+
+ onFormatButtonClicked = (name, e) => {
+ e.preventDefault();
+
+ // XXX: horrible evil hack to ensure the editor is focused so the act
+ // of focusing it doesn't then cancel the format button being pressed
+ // FIXME: can we just tell handleKeyCommand's change to invoke .focus()?
+ if (document.activeElement && document.activeElement.className !== 'mx_MessageComposer_editor') {
+ this.refs.editor.focus();
+ setTimeout(()=>{
+ this.handleKeyCommand(name);
+ }, 500); // can't find any callback to hook this to. onFocus and onChange and willComponentUpdate fire too early.
+ return;
+ }
+
+ this.handleKeyCommand(name);
+ };
+
+ getAutocompleteQuery(editorState: Value) {
+ // We can just return the current block where the selection begins, which
+ // should be enough to capture any autocompletion input, given autocompletion
+ // providers only search for the first match which intersects with the current selection.
+ // This avoids us having to serialize the whole thing to plaintext and convert
+ // selection offsets in & out of the plaintext domain.
+
+ if (editorState.selection.anchorKey) {
+ return editorState.document.getDescendant(editorState.selection.anchorKey).text;
+ }
+ else {
+ return '';
+ }
+ }
+
+ getSelectionRange(editorState: Value) {
+ let beginning = false;
+ const query = this.getAutocompleteQuery(editorState);
+ const firstChild = editorState.document.nodes.get(0);
+ const firstGrandChild = firstChild && firstChild.nodes.get(0);
+ beginning = (firstChild && firstGrandChild &&
+ firstChild.object === 'block' && firstGrandChild.object === 'text' &&
+ editorState.selection.anchorKey === firstGrandChild.key);
+
+ // return a character range suitable for handing to an autocomplete provider.
+ // the range is relative to the anchor of the current editor selection.
+ // if the selection spans multiple blocks, then we collapse it for the calculation.
+ const range = {
+ beginning, // whether the selection is in the first block of the editor or not
+ start: editorState.selection.anchorOffset,
+ end: (editorState.selection.anchorKey == editorState.selection.focusKey) ?
+ editorState.selection.focusOffset : editorState.selection.anchorOffset,
+ }
+ if (range.start > range.end) {
+ const tmp = range.start;
+ range.start = range.end;
+ range.end = tmp;
+ }
+ return range;
}
onMarkdownToggleClicked = (e) => {
@@ -1156,82 +1542,58 @@ export default class MessageComposerInput extends React.Component {
this.handleKeyCommand('toggle-mode');
};
+ focusComposer = () => {
+ this.refs.editor.focus();
+ };
+
render() {
const activeEditorState = this.state.originalEditorState || this.state.editorState;
- // From https://github.com/facebook/draft-js/blob/master/examples/rich/rich.html#L92
- // If the user changes block type before entering any text, we can
- // either style the placeholder or hide it.
- let hidePlaceholder = false;
- const contentState = activeEditorState.getCurrentContent();
- if (!contentState.hasText()) {
- if (contentState.getBlockMap().first().getType() !== 'unstyled') {
- hidePlaceholder = true;
- }
- }
-
const className = classNames('mx_MessageComposer_input', {
- mx_MessageComposer_input_empty: hidePlaceholder,
mx_MessageComposer_input_error: this.state.someCompletions === false,
});
- const content = activeEditorState.getCurrentContent();
- const selection = RichText.selectionStateToTextOffsets(activeEditorState.getSelection(),
- activeEditorState.getCurrentContent().getBlocksAsArray());
+ const isEmpty = this.state.editorState.document.isEmpty;
+
+ let {placeholder} = this.props;
+ // XXX: workaround for placeholder being shown when there is a formatting block e.g blockquote but no text
+ if (isEmpty && this.state.editorState.startBlock && this.state.editorState.startBlock.type !== DEFAULT_NODE) {
+ placeholder = undefined;
+ }
return (
-
+
- { SettingsStore.isFeatureEnabled("feature_rich_quoting") &&
}
+
this.autocomplete = e}
room={this.props.room}
- onConfirm={this.setDisplayedCompletion}
+ onConfirm={this.onAutocompleteConfirm}
onSelectionChange={this.setDisplayedCompletion}
- query={this.getAutocompleteQuery(content)}
- selection={selection}
+ query={ this.suppressAutoComplete ? '' : this.getAutocompleteQuery(activeEditorState) }
+ selection={this.getSelectionRange(activeEditorState)}
/>
+ title={this.state.isRichTextEnabled ? _t("Markdown is disabled") : _t("Markdown is enabled")}
+ src={`img/button-md-${!this.state.isRichTextEnabled}.png`} />
+ className="mx_MessageComposer_editor"
+ placeholder={placeholder}
+ value={this.state.editorState}
+ onChange={this.onChange}
+ onKeyDown={this.onKeyDown}
+ onPaste={this.onPaste}
+ renderNode={this.renderNode}
+ renderMark={this.renderMark}
+ // disable spell check for the placeholder because browsers don't like "unencrypted"
+ spellCheck={!isEmpty}
+ />
);
}
}
-
-MessageComposerInput.propTypes = {
- // a callback which is called when the height of the composer is
- // changed due to a change in content.
- onResize: PropTypes.func,
-
- // js-sdk Room object
- room: PropTypes.object.isRequired,
-
- // called with current plaintext content (as a string) whenever it changes
- onContentChanged: PropTypes.func,
-
- onFilesPasted: PropTypes.func,
-
- onInputStateChanged: PropTypes.func,
-};
diff --git a/src/components/views/rooms/PinnedEventTile.js b/src/components/views/rooms/PinnedEventTile.js
index b63fdde0a8..d0572e489a 100644
--- a/src/components/views/rooms/PinnedEventTile.js
+++ b/src/components/views/rooms/PinnedEventTile.js
@@ -22,6 +22,7 @@ import AccessibleButton from "../elements/AccessibleButton";
import MessageEvent from "../messages/MessageEvent";
import MemberAvatar from "../avatars/MemberAvatar";
import { _t } from '../../../languageHandler';
+import {formatFullDate} from '../../../DateUtils';
module.exports = React.createClass({
displayName: 'PinnedEventTile',
@@ -80,11 +81,20 @@ module.exports = React.createClass({
{ unpinButton }
-
+
+
+
{ sender.name }
-
+
+ { formatFullDate(new Date(this.props.mxEvent.getTs())) }
+
+
+ {}} // we need to give this, apparently
+ />
+
);
},
diff --git a/src/components/views/rooms/PinnedEventsPanel.js b/src/components/views/rooms/PinnedEventsPanel.js
index 4624b3c051..50c40142da 100644
--- a/src/components/views/rooms/PinnedEventsPanel.js
+++ b/src/components/views/rooms/PinnedEventsPanel.js
@@ -39,6 +39,19 @@ module.exports = React.createClass({
componentDidMount: function() {
this._updatePinnedMessages();
+ MatrixClientPeg.get().on("RoomState.events", this._onStateEvent);
+ },
+
+ componentWillUnmount: function() {
+ if (MatrixClientPeg.get()) {
+ MatrixClientPeg.get().removeListener("RoomState.events", this._onStateEvent);
+ }
+ },
+
+ _onStateEvent: function(ev) {
+ if (ev.getRoomId() === this.props.room.roomId && ev.getType() === "m.room.pinned_events") {
+ this._updatePinnedMessages();
+ }
},
_updatePinnedMessages: function() {
diff --git a/src/components/views/rooms/RoomHeader.js b/src/components/views/rooms/RoomHeader.js
index 1851e03383..e40c715052 100644
--- a/src/components/views/rooms/RoomHeader.js
+++ b/src/components/views/rooms/RoomHeader.js
@@ -149,6 +149,13 @@ module.exports = React.createClass({
dis.dispatch({ action: 'show_right_panel' });
},
+ onShareRoomClick: function(ev) {
+ const ShareDialog = sdk.getComponent("dialogs.ShareDialog");
+ Modal.createTrackedDialog('share room dialog', '', ShareDialog, {
+ target: this.props.room,
+ });
+ },
+
_hasUnreadPins: function() {
const currentPinEvent = this.props.room.currentState.getStateEvents("m.room.pinned_events", '');
if (!currentPinEvent) return false;
@@ -379,6 +386,14 @@ module.exports = React.createClass({
;
}
+ let shareRoomButton;
+ if (this.props.inRoom) {
+ shareRoomButton =
+
+
+ ;
+ }
+
let rightPanelButtons;
if (this.props.collapsedRhs) {
rightPanelButtons =
@@ -400,6 +415,7 @@ module.exports = React.createClass({
{ settingsButton }
{ pinnedEventsButton }
+ { shareRoomButton }
{ manageIntegsButton }
{ forgetButton }
{ searchButton }
diff --git a/src/components/views/rooms/RoomList.js b/src/components/views/rooms/RoomList.js
index fc1872249f..3e632ba8ce 100644
--- a/src/components/views/rooms/RoomList.js
+++ b/src/components/views/rooms/RoomList.js
@@ -1,6 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
-Copyright 2017 Vector Creations Ltd
+Copyright 2017, 2018 Vector Creations Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -16,6 +16,8 @@ limitations under the License.
*/
'use strict';
+import SettingsStore from "../../../settings/SettingsStore";
+
const React = require("react");
const ReactDOM = require("react-dom");
import PropTypes from 'prop-types';
@@ -33,7 +35,12 @@ import RoomListStore from '../../../stores/RoomListStore';
import GroupStore from '../../../stores/GroupStore';
const HIDE_CONFERENCE_CHANS = true;
-const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority)|im\.vector\.fake\.(invite|recent|direct|archived))$/;
+const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority|server_notice)|im\.vector\.fake\.(invite|recent|direct|archived))$/;
+
+function labelForTagName(tagName) {
+ if (tagName.startsWith('u.')) return tagName.slice(2);
+ return tagName;
+}
function phraseForSection(section) {
switch (section) {
@@ -90,7 +97,7 @@ module.exports = React.createClass({
};
// All rooms that should be kept in the room list when filtering.
// By default, show all rooms.
- this._visibleRooms = MatrixClientPeg.get().getRooms();
+ this._visibleRooms = MatrixClientPeg.get().getVisibleRooms();
// Listen to updates to group data. RoomList cares about members and rooms in order
// to filter the room list when group tags are selected.
@@ -295,7 +302,7 @@ module.exports = React.createClass({
this._visibleRooms = Array.from(roomSet);
} else {
// Show all rooms
- this._visibleRooms = MatrixClientPeg.get().getRooms();
+ this._visibleRooms = MatrixClientPeg.get().getVisibleRooms();
}
this._delayedRefreshRoomList();
},
@@ -340,8 +347,8 @@ module.exports = React.createClass({
if (!taggedRoom) {
return;
}
- const me = taggedRoom.getMember(MatrixClientPeg.get().credentials.userId);
- if (HIDE_CONFERENCE_CHANS && Rooms.isConfCallRoom(taggedRoom, me, this.props.ConferenceHandler)) {
+ const myUserId = MatrixClientPeg.get().getUserId();
+ if (HIDE_CONFERENCE_CHANS && Rooms.isConfCallRoom(taggedRoom, myUserId, this.props.ConferenceHandler)) {
return;
}
@@ -444,6 +451,8 @@ module.exports = React.createClass({
}
}
+ if (!this.stickies) return;
+
const self = this;
let scrollStuckOffset = 0;
// Scroll to the passed in position, i.e. a header was clicked and in a scroll to state
@@ -583,14 +592,18 @@ module.exports = React.createClass({
}
},
- _makeGroupInviteTiles() {
+ _makeGroupInviteTiles(filter) {
const ret = [];
+ const lcFilter = filter && filter.toLowerCase();
const GroupInviteTile = sdk.getComponent('groups.GroupInviteTile');
for (const group of MatrixClientPeg.get().getGroups()) {
- if (group.myMembership !== 'invite') continue;
-
- ret.push(
);
+ const {groupId, name, myMembership} = group;
+ // filter to only groups in invite state and group_id starts with filter or group name includes it
+ if (myMembership !== 'invite') continue;
+ if (lcFilter && !groupId.toLowerCase().startsWith(lcFilter) &&
+ !(name && name.toLowerCase().includes(lcFilter))) continue;
+ ret.push(
);
}
return ret;
@@ -604,13 +617,17 @@ module.exports = React.createClass({
const RoomSubList = sdk.getComponent('structures.RoomSubList');
const GeminiScrollbarWrapper = sdk.getComponent("elements.GeminiScrollbarWrapper");
+ // XXX: we can't detect device-level (localStorage) settings onChange as the SettingsStore does not notify
+ // so checking on every render is the sanest thing at this time.
+ const showEmpty = SettingsStore.getValue('RoomSubList.showEmpty');
+
const self = this;
return (
+ autoshow={true} onScroll={self._whenScrolling} onResize={self._whenScrolling} wrappedRef={this._collectGemini}>
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />
{ Object.keys(self.state.lists).map((tagName) => {
if (!tagName.match(STANDARD_TAGS_REGEX)) {
return
;
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />;
}
}) }
@@ -698,9 +721,17 @@ module.exports = React.createClass({
collapsed={self.props.collapsed}
searchFilter={self.props.searchFilter}
onHeaderClick={self.onSubListHeaderClick}
- onShowMoreRooms={self.onShowMoreRooms} />
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />
+
+ { _t('You have no historical rooms') }
+
+
+ }
label={_t('Historical')}
editable={false}
order="recent"
@@ -708,10 +739,23 @@ module.exports = React.createClass({
alwaysShowHeader={true}
startAsHidden={true}
showSpinner={self.state.isLoadingLeftRooms}
- onHeaderClick= {self.onArchivedHeaderClick}
+ onHeaderClick={self.onArchivedHeaderClick}
incomingCall={self.state.incomingCall}
searchFilter={self.props.searchFilter}
- onShowMoreRooms={self.onShowMoreRooms} />
+ onShowMoreRooms={self.onShowMoreRooms}
+ showEmpty={showEmpty} />
+
+
);
diff --git a/src/components/views/rooms/RoomPreviewBar.js b/src/components/views/rooms/RoomPreviewBar.js
index 536093807a..5ec19d185e 100644
--- a/src/components/views/rooms/RoomPreviewBar.js
+++ b/src/components/views/rooms/RoomPreviewBar.js
@@ -98,15 +98,11 @@ module.exports = React.createClass({
);
}
- const myMember = this.props.room ? this.props.room.currentState.members[
- MatrixClientPeg.get().credentials.userId
- ] : null;
- const kicked = (
- myMember &&
- myMember.membership == 'leave' &&
- myMember.events.member.getSender() != MatrixClientPeg.get().credentials.userId
- );
- const banned = myMember && myMember.membership == 'ban';
+ const myMember = this.props.room ?
+ this.props.room.getMember(MatrixClientPeg.get().getUserId()) :
+ null;
+ const kicked = myMember && myMember.isKicked();
+ const banned = myMember && myMember && myMember.membership == 'ban';
if (this.props.inviterName) {
let emailMatchBlock;
diff --git a/src/components/views/rooms/RoomSettings.js b/src/components/views/rooms/RoomSettings.js
index 059e07ffdb..3b95fa9905 100644
--- a/src/components/views/rooms/RoomSettings.js
+++ b/src/components/views/rooms/RoomSettings.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
+Copyright 2018 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.
@@ -395,7 +396,17 @@ module.exports = React.createClass({
powerLevels["events"] = Object.assign({}, this.state.powerLevels["events"] || {});
powerLevels["events"][powerLevelKey.slice(eventsLevelPrefix.length)] = value;
} else {
- powerLevels[powerLevelKey] = value;
+ const keyPath = powerLevelKey.split('.');
+ let parentObj;
+ let currentObj = powerLevels;
+ for (const key of keyPath) {
+ if (!currentObj[key]) {
+ currentObj[key] = {};
+ }
+ parentObj = currentObj;
+ currentObj = currentObj[key];
+ }
+ parentObj[keyPath[keyPath.length - 1]] = value;
}
this.setState({
powerLevels,
@@ -664,6 +675,10 @@ module.exports = React.createClass({
desc: _t('To remove other users\' messages, you must be a'),
defaultValue: 50,
},
+ "notifications.room": {
+ desc: _t('To notify everyone in the room, you must be a'),
+ defaultValue: 50,
+ },
};
const banLevel = parseIntWithDefault(powerLevels.ban, powerLevelDescriptors.ban.defaultValue);
@@ -779,15 +794,15 @@ module.exports = React.createClass({
}
let leaveButton = null;
- const myMember = this.props.room.getMember(myUserId);
- if (myMember) {
- if (myMember.membership === "join") {
+ const myMemberShip = this.props.room.getMyMembership();
+ if (myMemberShip) {
+ if (myMemberShip === "join") {
leaveButton = (
{ _t('Leave room') }
);
- } else if (myMember.membership === "leave") {
+ } else if (myMemberShip === "leave") {
leaveButton = (
{ _t('Forget room') }
@@ -865,7 +880,16 @@ module.exports = React.createClass({
const powerSelectors = Object.keys(powerLevelDescriptors).map((key, index) => {
const descriptor = powerLevelDescriptors[key];
- const value = parseIntWithDefault(powerLevels[key], descriptor.defaultValue);
+ const keyPath = key.split('.');
+ let currentObj = powerLevels;
+ for (const prop of keyPath) {
+ if (currentObj === undefined) {
+ break;
+ }
+ currentObj = currentObj[prop];
+ }
+
+ const value = parseIntWithDefault(currentObj, descriptor.defaultValue);
return
{ descriptor.desc }
@@ -1016,7 +1040,8 @@ module.exports = React.createClass({
{ _t('Advanced') }
- { _t('This room\'s internal ID is') } { this.props.room.roomId }
+ { _t('Internal room ID: ') } { this.props.room.roomId }
+ { _t('Room version number: ') } { this.props.room.getVersion() }
);
diff --git a/src/components/views/rooms/RoomTile.js b/src/components/views/rooms/RoomTile.js
index 05aaf79e0b..d73f9b5ccf 100644
--- a/src/components/views/rooms/RoomTile.js
+++ b/src/components/views/rooms/RoomTile.js
@@ -1,6 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 New Vector Ltd
+Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -15,19 +16,17 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-const React = require('react');
-const ReactDOM = require("react-dom");
+import React from 'react';
import PropTypes from 'prop-types';
-const classNames = require('classnames');
+import classNames from 'classnames';
import dis from '../../../dispatcher';
-const MatrixClientPeg = require('../../../MatrixClientPeg');
+import MatrixClientPeg from '../../../MatrixClientPeg';
import DMRoomMap from '../../../utils/DMRoomMap';
-const sdk = require('../../../index');
-const ContextualMenu = require('../../structures/ContextualMenu');
-const RoomNotifs = require('../../../RoomNotifs');
-const FormattingUtils = require('../../../utils/FormattingUtils');
+import sdk from '../../../index';
+import {createMenu} from '../../structures/ContextualMenu';
+import * as RoomNotifs from '../../../RoomNotifs';
+import * as FormattingUtils from '../../../utils/FormattingUtils';
import AccessibleButton from '../elements/AccessibleButton';
import ActiveRoomObserver from '../../../ActiveRoomObserver';
import RoomViewStore from '../../../stores/RoomViewStore';
@@ -72,16 +71,12 @@ module.exports = React.createClass({
},
_shouldShowMentionBadge: function() {
- return this.state.notifState != RoomNotifs.MUTE;
+ return this.state.notifState !== RoomNotifs.MUTE;
},
_isDirectMessageRoom: function(roomId) {
const dmRooms = DMRoomMap.shared().getUserIdForRoomId(roomId);
- if (dmRooms) {
- return true;
- } else {
- return false;
- }
+ return Boolean(dmRooms);
},
onRoomTimeline: function(ev, room) {
@@ -99,7 +94,7 @@ module.exports = React.createClass({
},
onAccountData: function(accountDataEvent) {
- if (accountDataEvent.getType() == 'm.push_rules') {
+ if (accountDataEvent.getType() === 'm.push_rules') {
this.setState({
notifState: RoomNotifs.getRoomNotifsState(this.props.room.roomId),
});
@@ -187,6 +182,32 @@ module.exports = React.createClass({
this.badgeOnMouseLeave();
},
+ _showContextMenu: function(x, y, chevronOffset) {
+ const RoomTileContextMenu = sdk.getComponent('context_menus.RoomTileContextMenu');
+
+ createMenu(RoomTileContextMenu, {
+ chevronOffset,
+ left: x,
+ top: y,
+ room: this.props.room,
+ onFinished: () => {
+ this.setState({ menuDisplayed: false });
+ this.props.refreshSubList();
+ },
+ });
+ this.setState({ menuDisplayed: true });
+ },
+
+ onContextMenu: function(e) {
+ // Prevent the RoomTile onClick event firing as well
+ e.preventDefault();
+ // Only allow non-guests to access the context menu
+ if (MatrixClientPeg.get().isGuest()) return;
+
+ const chevronOffset = 12;
+ this._showContextMenu(e.clientX, e.clientY - (chevronOffset + 8), chevronOffset);
+ },
+
badgeOnMouseEnter: function() {
// Only allow non-guests to access the context menu
// and only change it if it needs to change
@@ -200,43 +221,29 @@ module.exports = React.createClass({
},
onBadgeClicked: function(e) {
- // Only allow none guests to access the context menu
- if (!MatrixClientPeg.get().isGuest()) {
- // If the badge is clicked, then no longer show tooltip
- if (this.props.collapsed) {
- this.setState({ hover: false });
- }
-
- const RoomTileContextMenu = sdk.getComponent('context_menus.RoomTileContextMenu');
- const elementRect = e.target.getBoundingClientRect();
-
- // The window X and Y offsets are to adjust position when zoomed in to page
- const x = elementRect.right + window.pageXOffset + 3;
- const chevronOffset = 12;
- let y = (elementRect.top + (elementRect.height / 2) + window.pageYOffset);
- y = y - (chevronOffset + 8); // where 8 is half the height of the chevron
-
- const self = this;
- ContextualMenu.createMenu(RoomTileContextMenu, {
- chevronOffset: chevronOffset,
- left: x,
- top: y,
- room: this.props.room,
- onFinished: function() {
- self.setState({ menuDisplayed: false });
- self.props.refreshSubList();
- },
- });
- this.setState({ menuDisplayed: true });
- }
// Prevent the RoomTile onClick event firing as well
e.stopPropagation();
+ // Only allow non-guests to access the context menu
+ if (MatrixClientPeg.get().isGuest()) return;
+
+ // If the badge is clicked, then no longer show tooltip
+ if (this.props.collapsed) {
+ this.setState({ hover: false });
+ }
+
+ const elementRect = e.target.getBoundingClientRect();
+
+ // The window X and Y offsets are to adjust position when zoomed in to page
+ const x = elementRect.right + window.pageXOffset + 3;
+ const chevronOffset = 12;
+ let y = (elementRect.top + (elementRect.height / 2) + window.pageYOffset);
+ y = y - (chevronOffset + 8); // where 8 is half the height of the chevron
+
+ this._showContextMenu(x, y, chevronOffset);
},
render: function() {
- const myUserId = MatrixClientPeg.get().credentials.userId;
- const me = this.props.room.currentState.members[myUserId];
-
+ const isInvite = this.props.room.getMyMembership() === "invite";
const notificationCount = this.state.notificationCount;
// var highlightCount = this.props.room.getUnreadNotificationCount("highlight");
@@ -250,7 +257,7 @@ module.exports = React.createClass({
'mx_RoomTile_unread': this.props.unread,
'mx_RoomTile_unreadNotify': notifBadges,
'mx_RoomTile_highlight': mentionBadges,
- 'mx_RoomTile_invited': (me && me.membership == 'invite'),
+ 'mx_RoomTile_invited': isInvite,
'mx_RoomTile_menuDisplayed': this.state.menuDisplayed,
'mx_RoomTile_noBadges': !badges,
'mx_RoomTile_transparent': this.props.transparent,
@@ -268,7 +275,6 @@ module.exports = React.createClass({
let name = this.state.roomName;
name = name.replace(":", ":\u200b"); // add a zero-width space to allow linewrapping after the colon
- let badge;
let badgeContent;
if (this.state.badgeHover || this.state.menuDisplayed) {
@@ -280,7 +286,7 @@ module.exports = React.createClass({
badgeContent = '\u200B';
}
- badge = { badgeContent }
;
+ const badge = { badgeContent }
;
const EmojiText = sdk.getComponent('elements.EmojiText');
let label;
@@ -301,7 +307,7 @@ module.exports = React.createClass({
}
} else if (this.state.hover) {
const RoomTooltip = sdk.getComponent("rooms.RoomTooltip");
- tooltip = ;
+ tooltip = ;
}
//var incomingCallBox;
@@ -312,16 +318,22 @@ module.exports = React.createClass({
const RoomAvatar = sdk.getComponent('avatars.RoomAvatar');
- let directMessageIndicator;
+ let dmIndicator;
if (this._isDirectMessageRoom(this.props.room.roomId)) {
- directMessageIndicator = ;
+ dmIndicator = ;
}
- return
+ return
- { directMessageIndicator }
+ { dmIndicator }
diff --git a/src/components/views/rooms/RoomTooltip.js b/src/components/views/rooms/RoomTooltip.js
index b17f54ef3c..bce0922637 100644
--- a/src/components/views/rooms/RoomTooltip.js
+++ b/src/components/views/rooms/RoomTooltip.js
@@ -14,11 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-'use strict';
-var React = require('react');
-var ReactDOM = require('react-dom');
-var dis = require('../../../dispatcher');
+import React from 'react';
+import ReactDOM from 'react-dom';
+import dis from '../../../dispatcher';
import classNames from 'classnames';
const MIN_TOOLTIP_HEIGHT = 25;
@@ -77,25 +76,21 @@ module.exports = React.createClass({
},
_renderTooltip: function() {
- var label = this.props.room ? this.props.room.name : this.props.label;
-
// Add the parent's position to the tooltips, so it's correctly
// positioned, also taking into account any window zoom
// NOTE: The additional 6 pixels for the left position, is to take account of the
// tooltips chevron
- var parent = ReactDOM.findDOMNode(this).parentNode;
- var style = {};
+ const parent = ReactDOM.findDOMNode(this).parentNode;
+ let style = {};
style = this._updatePosition(style);
style.display = "block";
- const tooltipClasses = classNames(
- "mx_RoomTooltip", this.props.tooltipClassName,
- );
+ const tooltipClasses = classNames("mx_RoomTooltip", this.props.tooltipClassName);
- var tooltip = (
-
-
- { label }
+ const tooltip = (
+
);
diff --git a/src/components/views/rooms/Stickerpicker.js b/src/components/views/rooms/Stickerpicker.js
index 6152809c1a..841cfb9b03 100644
--- a/src/components/views/rooms/Stickerpicker.js
+++ b/src/components/views/rooms/Stickerpicker.js
@@ -15,7 +15,6 @@ limitations under the License.
*/
import React from 'react';
import { _t } from '../../../languageHandler';
-import Widgets from '../../../utils/widgets';
import AppTile from '../elements/AppTile';
import MatrixClientPeg from '../../../MatrixClientPeg';
import Modal from '../../../Modal';
@@ -24,9 +23,15 @@ import SdkConfig from '../../../SdkConfig';
import ScalarAuthClient from '../../../ScalarAuthClient';
import dis from '../../../dispatcher';
import AccessibleButton from '../elements/AccessibleButton';
+import WidgetUtils from '../../../utils/WidgetUtils';
+import ActiveWidgetStore from '../../../stores/ActiveWidgetStore';
const widgetType = 'm.stickerpicker';
+// We sit in a context menu, so the persisted element container needs to float
+// above it, so it needs a greater z-index than the ContextMenu
+const STICKERPICKER_Z_INDEX = 5000;
+
export default class Stickerpicker extends React.Component {
constructor(props) {
super(props);
@@ -39,8 +44,6 @@ export default class Stickerpicker extends React.Component {
this._onResize = this._onResize.bind(this);
this._onFinished = this._onFinished.bind(this);
- this._collectWidgetMessaging = this._collectWidgetMessaging.bind(this);
-
this.popoverWidth = 300;
this.popoverHeight = 300;
@@ -67,7 +70,7 @@ export default class Stickerpicker extends React.Component {
}
this.setState({showStickers: false});
- Widgets.removeStickerpickerWidgets().then(() => {
+ WidgetUtils.removeStickerpickerWidgets().then(() => {
this.forceUpdate();
}).catch((e) => {
console.error('Failed to remove sticker picker widget', e);
@@ -119,7 +122,7 @@ export default class Stickerpicker extends React.Component {
}
_updateWidget() {
- const stickerpickerWidget = Widgets.getStickerpickerWidgets()[0];
+ const stickerpickerWidget = WidgetUtils.getStickerpickerWidgets()[0];
this.setState({
stickerpickerWidget,
widgetId: stickerpickerWidget ? stickerpickerWidget.id : null,
@@ -162,17 +165,11 @@ export default class Stickerpicker extends React.Component {
);
}
- _collectWidgetMessaging(widgetMessaging) {
- this._appWidgetMessaging = widgetMessaging;
-
- // Do this now instead of in componentDidMount because we might not have had the
- // reference to widgetMessaging when mounting
- this._sendVisibilityToWidget(true);
- }
-
_sendVisibilityToWidget(visible) {
- if (this._appWidgetMessaging && visible !== this._prevSentVisibility) {
- this._appWidgetMessaging.sendVisibility(visible);
+ if (!this.state.stickerpickerWidget) return;
+ const widgetMessaging = ActiveWidgetStore.getWidgetMessaging(this.state.stickerpickerWidget.id);
+ if (widgetMessaging && visible !== this._prevSentVisibility) {
+ widgetMessaging.sendVisibility(visible);
this._prevSentVisibility = visible;
}
}
@@ -211,9 +208,8 @@ export default class Stickerpicker extends React.Component {
width: this.popoverWidth,
}}
>
-
+
{
+ // Notify SessionStore that the user's password was changed
+ dis.dispatch({action: 'password_changed'});
+
if (this.props.shouldAskForEmail) {
return this._optionallySetEmail().then((confirmed) => {
this.props.onFinished({
diff --git a/src/components/views/voip/CallPreview.js b/src/components/views/voip/CallPreview.js
index 272e6feb37..5c0a1b4370 100644
--- a/src/components/views/voip/CallPreview.js
+++ b/src/components/views/voip/CallPreview.js
@@ -1,5 +1,5 @@
/*
-Copyright 2017 New Vector Ltd
+Copyright 2017, 2018 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.
@@ -92,7 +92,8 @@ module.exports = React.createClass({
/>
);
}
- return null;
+ const PersistentApp = sdk.getComponent('elements.PersistentApp');
+ return ;
},
});
diff --git a/src/cryptodevices.js b/src/cryptodevices.js
index c0b7e3da6e..246fae3d73 100644
--- a/src/cryptodevices.js
+++ b/src/cryptodevices.js
@@ -16,6 +16,7 @@ limitations under the License.
import Resend from './Resend';
import sdk from './index';
+import dis from './dispatcher';
import Modal from './Modal';
import { _t } from './languageHandler';
@@ -42,27 +43,30 @@ export function markAllDevicesKnown(matrixClient, devices) {
* @return {Promise} A promise which resolves to a map userId->deviceId->{@link
* module:crypto~DeviceInfo|DeviceInfo}.
*/
-export function getUnknownDevicesForRoom(matrixClient, room) {
- const roomMembers = room.getJoinedMembers().map((m) => {
+export async function getUnknownDevicesForRoom(matrixClient, room) {
+ const roomMembers = await room.getEncryptionTargetMembers().map((m) => {
return m.userId;
});
- return matrixClient.downloadKeys(roomMembers, false).then((devices) => {
- const unknownDevices = {};
- // This is all devices in this room, so find the unknown ones.
- Object.keys(devices).forEach((userId) => {
- Object.keys(devices[userId]).map((deviceId) => {
- const device = devices[userId][deviceId];
+ const devices = await matrixClient.downloadKeys(roomMembers, false);
+ const unknownDevices = {};
+ // This is all devices in this room, so find the unknown ones.
+ Object.keys(devices).forEach((userId) => {
+ Object.keys(devices[userId]).map((deviceId) => {
+ const device = devices[userId][deviceId];
- if (device.isUnverified() && !device.isKnown()) {
- if (unknownDevices[userId] === undefined) {
- unknownDevices[userId] = {};
- }
- unknownDevices[userId][deviceId] = device;
+ if (device.isUnverified() && !device.isKnown()) {
+ if (unknownDevices[userId] === undefined) {
+ unknownDevices[userId] = {};
}
- });
+ unknownDevices[userId][deviceId] = device;
+ }
});
- return unknownDevices;
});
+ return unknownDevices;
+}
+
+function focusComposer() {
+ dis.dispatch({action: 'focus_composer'});
}
/**
@@ -86,6 +90,7 @@ export function showUnknownDeviceDialogForMessages(matrixClient, room) {
sendAnywayLabel: _t("Send anyway"),
sendLabel: _t("Send"),
onSend: onSendClicked,
+ onFinished: focusComposer,
}, 'mx_Dialog_unknownDevice');
});
}
diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json
index 24f19a9ce6..13fd49e149 100644
--- a/src/i18n/strings/az.json
+++ b/src/i18n/strings/az.json
@@ -24,5 +24,380 @@
"Notify me for anything else": "Bütün qalan hadisələrdə xəbər vermək",
"Enable notifications for this account": "Bu hesab üçün xəbərdarlıqları qoşmaq",
"All notifications are currently disabled for all targets.": "Bütün qurğular üçün bütün bildirişlər kəsilmişdir.",
- "Add an email address above to configure email notifications": "Email-i bildirişlər üçün ünvanı əlavə edin"
+ "Add an email address above to configure email notifications": "Yuxarı email-i xəbərdarlıqların qurması üçün əlavə edin",
+ "Failed to verify email address: make sure you clicked the link in the email": "Email-i yoxlamağı bacarmadı: əmin olun ki, siz məktubda istinaddakı ünvana keçdiniz",
+ "The platform you're on": "İstifadə edilən platforma",
+ "The version of Riot.im": "Riot.im versiyası",
+ "Whether or not you're logged in (we don't record your user name)": "Siz sistemə girdiniz ya yox (biz sizin istifadəçinin adınızı saxlamırıq)",
+ "Your language of choice": "Seçilmiş dil",
+ "Which officially provided instance you are using, if any": "Hansı rəsmən dəstəklənən müştəri tərəfindən siz istifadə edirsiniz ( əgər istifadə edirsinizsə)",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": "Siz Rich Text Editor redaktorunda Richtext rejimindən istifadə edirsinizmi",
+ "Your homeserver's URL": "Serverin URL-ünvanı",
+ "Your identity server's URL": "Eyniləşdirmənin serverinin URL-ünvanı",
+ "Every page you use in the app": "Hər səhifə, hansını ki, siz proqramda istifadə edirsiniz",
+ "e.g. ": "məs. ",
+ "Your User Agent": "Sizin istifadəçi agentiniz",
+ "Your device resolution": "Sizin cihazınızın qətnaməsi",
+ "The information being sent to us to help make Riot.im better includes:": "Riot.im'i daha yaxşı etmək üçün bizə göndərilən məlumatlar daxildir:",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Əgər bu səhifədə şəxsi xarakterin məlumatları rast gəlinirsə, məsələn otağın, istifadəçinin adının və ya qrupun adı, onlar serverə göndərilmədən əvvəl silinirlər.",
+ "Call Timeout": "Cavab yoxdur",
+ "Unable to capture screen": "Ekranın şəkilini etməyə müvəffəq olmur",
+ "Existing Call": "Cari çağırış",
+ "You are already in a call.": "Danışıq gedir.",
+ "VoIP is unsupported": "Zənglər dəstəklənmir",
+ "You cannot place VoIP calls in this browser.": "Zənglər bu brauzerdə dəstəklənmir.",
+ "You cannot place a call with yourself.": "Siz özünə zəng vura bilmirsiniz.",
+ "Conference calls are not supported in encrypted rooms": "Konfrans-əlaqə şifrlənmiş otaqlarda dəstəklənmir",
+ "Conference calls are not supported in this client": "Bu müştəridə konfrans-əlaqə dəstəklənmir",
+ "Warning!": "Diqqət!",
+ "Conference calling is in development and may not be reliable.": "Konfrans-əlaqə hazırlamadadır və işləməyə bilər.",
+ "Failed to set up conference call": "Konfrans-zəngi etməyi bacarmadı",
+ "Conference call failed.": "Konfrans-zəngin nasazlığı.",
+ "Upload Failed": "Faylın göndərilməsinin nasazlığı",
+ "Failure to create room": "Otağı yaratmağı bacarmadı",
+ "Sun": "Baz",
+ "Mon": "Ber",
+ "Tue": "Çax",
+ "Wed": "Çər",
+ "Thu": "Cax",
+ "Fri": "Cüm",
+ "Sat": "Şən",
+ "Jan": "Yan",
+ "Feb": "Fev",
+ "Mar": "Mar",
+ "Apr": "Apr",
+ "May": "May",
+ "Jun": "Iyun",
+ "Jul": "Iyul",
+ "Aug": "Avg",
+ "Sep": "Sen",
+ "Oct": "Okt",
+ "Nov": "Noy",
+ "Dec": "Dek",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
+ "Unable to enable Notifications": "Xəbərdarlıqları daxil qoşmağı bacarmadı",
+ "Default": "İştirakçı",
+ "Moderator": "Moderator",
+ "Admin": "Administrator",
+ "Start a chat": "Danışığa başlamaq",
+ "Who would you like to communicate with?": "Kimlə siz əlaqə saxlamaq istəyirdiniz?",
+ "Email, name or matrix ID": "Email, ad və ya ZT-ID",
+ "Start Chat": "Danışığa başlamaq",
+ "Invite new room members": "Yeni iştirakçıların otağına dəvət etmək",
+ "Who would you like to add to this room?": "Bu otaqa kimi dəvət etmək istərdiniz?",
+ "You need to be logged in.": "Siz sistemə girməlisiniz.",
+ "You need to be able to invite users to do that.": "Bunun üçün siz istifadəçiləri dəvət etmək imkanına malik olmalısınız.",
+ "Failed to send request.": "Sorğunu göndərməyi bacarmadı.",
+ "Power level must be positive integer.": "Hüquqların səviyyəsi müsbət tam ədəd olmalıdır.",
+ "Missing room_id in request": "Sorğuda room_id yoxdur",
+ "Missing user_id in request": "Sorğuda user_id yoxdur",
+ "Usage": "İstifadə",
+ "/ddg is not a command": "/ddg — bu komanda deyil",
+ "To use it, just wait for autocomplete results to load and tab through them.": "Bu funksiyadan istifadə etmək üçün, avto-əlavənin pəncərəsində nəticələrin yükləməsini gözləyin, sonra burulma üçün Tab-dan istifadə edin.",
+ "Changes your display nickname": "Sizin təxəllüsünüz dəyişdirir",
+ "Invites user with given id to current room": "Verilmiş ID-lə istifadəçini cari otağa dəvət edir",
+ "Joins room with given alias": "Verilmiş təxəllüslə otağa daxil olur",
+ "Leave room": "Otağı tərk etmək",
+ "Kicks user with given id": "Verilmiş ID-lə istifadəçini çıxarır",
+ "Bans user with given id": "Verilmiş ID-lə istifadəçini bloklayır",
+ "Ignores a user, hiding their messages from you": "Sizdən mesajları gizlədərək istifadəçini bloklayır",
+ "Ignored user": "İstifadəçi blokun siyahısına əlavə edilmişdir",
+ "You are now ignoring %(userId)s": "Siz %(userId)s blokladınız",
+ "Stops ignoring a user, showing their messages going forward": "Onların gələcək mesajlarını göstərərək istifadəçinin bloku edilməsi durdurur",
+ "Unignored user": "İstifadəçi blokun siyahısından götürülmüşdür",
+ "You are no longer ignoring %(userId)s": "Siz %(userId)s blokdan çıxardınız",
+ "Deops user with given id": "Verilmiş ID-lə istifadəçidən operatorun səlahiyyətlərini çıxardır",
+ "Displays action": "Hərəkətlərin nümayişi",
+ "Reason": "Səbəb",
+ "%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s %(displayName)s-dən dəvəti qəbul etdi.",
+ "%(targetName)s accepted an invitation.": "%(targetName)s dəvəti qəbul etdi.",
+ "%(senderName)s invited %(targetName)s.": "%(senderName)s %(targetName)s-nı dəvət edir.",
+ "%(senderName)s banned %(targetName)s.": "%(senderName)s %(targetName)s-i blokladı.",
+ "%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s öz görünüş adını sildi (%(oldDisplayName)s).",
+ "%(senderName)s removed their profile picture.": "%(senderName)s avatarını sildi.",
+ "%(senderName)s changed their profile picture.": "%(senderName)s öz avatar-ı dəyişdirdi.",
+ "VoIP conference started.": "Konfrans-zəng başlandı.",
+ "%(targetName)s joined the room.": "%(targetName)s otağa girdi.",
+ "VoIP conference finished.": "Konfrans-zəng qurtarılmışdır.",
+ "%(targetName)s rejected the invitation.": "%(targetName)s dəvəti rədd etdi.",
+ "%(targetName)s left the room.": "%(targetName)s otaqdan çıxdı.",
+ "%(senderName)s unbanned %(targetName)s.": "%(senderName)s %(targetName)s blokdan çıxardı.",
+ "%(senderName)s kicked %(targetName)s.": "%(senderName)s %(targetName)s-nı qovdu.",
+ "%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s öz dəvətini sildi %(targetName)s.",
+ "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s otağın mövzusunu \"%(topic)s\" dəyişdirdi.",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s otağın adını %(roomName)s dəyişdirdi.",
+ "(not supported by this browser)": "(bu brauzerlə dəstəklənmir)",
+ "%(senderName)s answered the call.": "%(senderName)s zəngə cavab verdi.",
+ "%(senderName)s ended the call.": "%(senderName)s zəng qurtardı.",
+ "%(senderName)s placed a %(callType)s call.": "%(senderName)s ) %(callType)s-zəng başladı.",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s dəvət edilmiş iştirakçılar üçün danışıqların tarixini açdı.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s girmiş iştirakçılar üçün danışıqların tarixini açdı.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s iştirakçılar üçün danışıqların tarixini açdı.",
+ "%(senderName)s made future room history visible to anyone.": "%(senderName)s hamı üçün danışıqların tarixini açdı.",
+ "%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s naməlum rejimdə otağın tarixini açdı (%(visibility)s).",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s включил(а) в комнате сквозное шифрование (алгоритм %(algorithm)s).",
+ "%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s üçün %(fromPowerLevel)s-dan %(toPowerLevel)s-lə",
+ "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s hüquqların səviyyələrini dəyişdirdi %(powerLevelDiffText)s.",
+ "%(displayName)s is typing": "%(displayName)s çap edir",
+ "%(names)s and %(lastPerson)s are typing": "%(names)s və %(lastPerson)s çap edirlər",
+ "Failed to join room": "Otağa girməyi bacarmadı",
+ "Disable Emoji suggestions while typing": "Mətnin yığılması vaxtı Emoji-i təklif etməmək",
+ "Hide read receipts": "Oxuma haqqında nişanları gizlətmək",
+ "Always show message timestamps": "Həmişə mesajların göndərilməsi vaxtını göstərmək",
+ "Autoplay GIFs and videos": "GIF animasiyalarını və videolarını avtomatik olaraq oynayır",
+ "Don't send typing notifications": "Nə vaxt ki, mən çap edirəm, o haqda bildirişləri göndərməmək",
+ "Never send encrypted messages to unverified devices from this device": "Heç vaxt (bu qurğudan) yoxlanılmamış qurğulara şifrlənmiş mesajları göndərməmək",
+ "Never send encrypted messages to unverified devices in this room from this device": "Heç vaxt (bu otaqda, bu qurğudan) yoxlanılmamış qurğulara şifrlənmiş mesajları göndərməmək",
+ "Accept": "Qəbul etmək",
+ "Error": "Səhv",
+ "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "Mətn mesajı +%(msisdn)s-a göndərilmişdi. Mesajdan yoxlama kodunu daxil edin",
+ "Incorrect verification code": "Təsdiq etmənin səhv kodu",
+ "Enter Code": "Kodu daxil etmək",
+ "Phone": "Telefon",
+ "Add phone number": "Telefon nömrəsini əlavə etmək",
+ "New passwords don't match": "Yeni şifrlər uyğun gəlmir",
+ "Passwords can't be empty": "Şifrələr boş ola bilməz",
+ "Continue": "Davam etmək",
+ "Export E2E room keys": "Şifrləmənin açarlarının ixracı",
+ "Current password": "Cari şifrə",
+ "Password": "Şifrə",
+ "New Password": "Yeni şifrə",
+ "Confirm password": "Yeni şifrə təsdiq edin",
+ "Change Password": "Şifrəni dəyişdirin",
+ "Authentication": "Müəyyənləşdirilmə",
+ "Device ID": "Qurğunun ID-i",
+ "Failed to set display name": "Görünüş adını təyin etmək bacarmadı",
+ "Notification targets": "Xəbərdarlıqlar üçün qurğular",
+ "On": "Qoşmaq",
+ "Invalid alias format": "Adının yolverilməz formatı",
+ "'%(alias)s' is not a valid format for an alias": "Ad '%(alias)s' yolverilməz formata malikdir",
+ "Invalid address format": "Ünvanın yolverilməz formatı",
+ "'%(alias)s' is not a valid format for an address": "Ünvan '%(alias)s' yolverilməz formata malikdir",
+ "not specified": "qeyd edilmədi",
+ "not set": "qeyd edilmədi",
+ "Local addresses for this room:": "Sizin serverinizdə bu otağın ünvanları:",
+ "New address (e.g. #foo:%(localDomain)s)": "Yeni ünvan (məsələn, #nəsə:%(localDomain)s)",
+ "Blacklisted": "Qara siyahıda",
+ "Disinvite": "Dəvəti geri çağırmaq",
+ "Kick": "Qovmaq",
+ "Failed to kick": "Qovmağı bacarmadı",
+ "Unban": "Blokdan çıxarmaq",
+ "Ban": "Bloklamaq",
+ "Failed to ban user": "İstifadəçini bloklamağı bacarmadı",
+ "Failed to mute user": "İstifadəçini kəsməyi bacarmadı",
+ "Failed to toggle moderator status": "Moderatorun statusunu dəyişdirməyi bacarmadı",
+ "Failed to change power level": "Hüquqların səviyyəsini dəyişdirməyi bacarmadı",
+ "Are you sure?": "Siz əminsiniz?",
+ "No devices with registered encryption keys": "Şifrləmənin qeyd edilmiş açarlarıyla qurğu yoxdur",
+ "Devices": "Qurğular",
+ "Unignore": "Blokdan çıxarmaq",
+ "Ignore": "Bloklamaq",
+ "User Options": "Hərəkətlər",
+ "Direct chats": "Şəxsi çatlar",
+ "Level:": "Səviyyə:",
+ "Invited": "Dəvət edilmişdir",
+ "Filter room members": "İştirakçılara görə axtarış",
+ "Attachment": "Əlavə",
+ "Upload Files": "Faylların göndərilməsi",
+ "Are you sure you want to upload the following files?": "Siz əminsiniz ki, siz bu faylları göndərmək istəyirsiniz?",
+ "Encrypted room": "Şifrlənmiş otaq",
+ "Unencrypted room": "Şifrələnməyən otaq",
+ "Hangup": "Bitirmək",
+ "Voice call": "Səs çağırış",
+ "Video call": "Video çağırış",
+ "Upload file": "Faylı göndərmək",
+ "You do not have permission to post to this room": "Siz bu otağa yaza bilmirsiniz",
+ "Hide Text Formatting Toolbar": "Mətnin formatlaşdırılmasının alətlərini gizlətmək",
+ "Command error": "Komandanın səhvi",
+ "Markdown is disabled": "Markdown kəsilmişdir",
+ "Markdown is enabled": "Markdown qoşulmuşdur",
+ "Join Room": "Otağa girmək",
+ "Upload avatar": "Avatar-ı yükləmək",
+ "Settings": "Qurmalar",
+ "Forget room": "Otağı unutmaq",
+ "Drop here to tag %(section)s": "Bura daşıyın %(section)s nişan qoymaq üçün",
+ "Invites": "Dəvətlər",
+ "Favourites": "Seçilmişlər",
+ "People": "İnsanlar",
+ "Low priority": "Əhəmiyyətsizlər",
+ "Historical": "Arxiv",
+ "Rejoin": "Yenidən girmək",
+ "You are trying to access %(roomName)s.": "Siz %(roomName)s-a girməyə çalışırsınız.",
+ "You are trying to access a room.": "Siz otağa girməyə çalışırsınız.",
+ "Click here to join the discussion!": "Qoşulmaq üçün buraya basın!",
+ "Failed to unban": "Blokdan çıxarmağı bacarmadı",
+ "Banned by %(displayName)s": "%(displayName)s bloklanıb",
+ "Changes to who can read history will only apply to future messages in this room": "Tarixə girişin qaydalarının dəyişikliyi yalnız bu otaqda gələcək mesajlara tətbiq ediləcək",
+ "unknown error code": "naməlum səhv kodu",
+ "Failed to forget room %(errCode)s": "Otağı unutmağı bacarmadı: %(errCode)s",
+ "End-to-end encryption is in beta and may not be reliable": "İki tərəfi açıq şifrləmə indi beta-testdə və işləməyə bilər",
+ "You should not yet trust it to secure data": "Hal-hazırda yazışmalarınızın şifrələnəcəyinə etibar etməməlisiniz",
+ "Devices will not yet be able to decrypt history from before they joined the room": "Qurğular otağa girişinin anına qədər mesajların tarixinin şifrini aça bilməyəcək",
+ "Once encryption is enabled for a room it cannot be turned off again (for now)": "Otaqda şifrləmənin qoşmasından sonra siz o yenidən söndürə bilməyəcəksiniz (müvəqqəti)",
+ "Encrypted messages will not be visible on clients that do not yet implement encryption": "Şifrlənmiş mesajlar daha iki tərəfi açıq şifrləməni dəstəkləməyən müştərilərdə görülməyəcək",
+ "Enable encryption": "Şifrləməni qoşmaq",
+ "(warning: cannot be disabled again!)": "(xəbərdarlıq: dəyişdirmək mümkün olmayacaq!)",
+ "To send messages, you must be a": "Mesajların göndərilməsi üçün, olmaq lazımdır",
+ "To invite users into the room, you must be a": "Otağa iştirakçıları dəvət etmək üçün, olmaq lazımdır",
+ "No users have specific privileges in this room": "Heç bir istifadəçi bu otaqda xüsusi hüquqlara malik deyil",
+ "Banned users": "Bloklanmış istifadəçilər",
+ "Favourite": "Seçilmiş",
+ "Click here to fix": "Düzəltmək üçün, buraya basın",
+ "Who can access this room?": "Kim bu otağa girə bilər?",
+ "Only people who have been invited": "Yalnız dəvət edilmiş iştirakçılar",
+ "Anyone who knows the room's link, apart from guests": "Hamı, kimdə bu otağa istinad var, qonaqlardan başqa",
+ "Anyone who knows the room's link, including guests": "Hamı, kimdə bu otağa istinad var, qonaqlar daxil olmaqla",
+ "Who can read history?": "Kim tarixi oxuya bilər?",
+ "Permissions": "Girişin hüquqları",
+ "Advanced": "Təfərrüatlar",
+ "Close": "Bağlamaq",
+ "Sunday": "Bazar",
+ "Friday": "Cümə",
+ "Today": "Bu gün",
+ "Decrypt %(text)s": "Şifrini açmaq %(text)s",
+ "Download %(text)s": "Yükləmək %(text)s",
+ "Message removed by %(userId)s": "%(userId)s mesajı silinmişdir",
+ "Password:": "Şifrə:",
+ "Username on %(hs)s": "İstifadəçinin adı %(hs)s",
+ "User name": "İstifadəçinin adı",
+ "Mobile phone number": "Mobil telefonun nömrəsi",
+ "Forgot your password?": "Şifrənizi unutmusunuz?",
+ "Sign in with": "Seçmək",
+ "Email address (optional)": "Email (qeyri-məcburi)",
+ "Mobile phone number (optional)": "Mobil telefonun (qeyri-məcburi) nömrəsi",
+ "Register": "Qeydiyyatdan keçmək",
+ "Remove": "Silmək",
+ "You are not receiving desktop notifications": "Siz sistem xəbərdarlıqlarını almırsınız",
+ "What's New": "Nə dəyişdi",
+ "Update": "Yeniləmək",
+ "Create new room": "Otağı yaratmaq",
+ "No results": "Nəticə yoxdur",
+ "Delete": "Silmək",
+ "Home": "Başlanğıc",
+ "Could not connect to the integration server": "İnteqrasiyanın serverinə qoşulmağ mümkün deyil",
+ "Manage Integrations": "İnteqrasiyaları idarə etmə",
+ "%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s",
+ "Room directory": "Otaqların kataloqu",
+ "Start chat": "Çata başlamaq",
+ "Create Room": "Otağı yaratmaq",
+ "Advanced options": "Daha çox seçim",
+ "Block users on other matrix homeservers from joining this room": "Başqa serverlərdən bu otağa daxil olan istifadəçiləri bloklamaq",
+ "This setting cannot be changed later!": "Bu seçim sonra dəyişdirmək olmaz!",
+ "Deactivate Account": "Hesabı bağlamaq",
+ "Send Account Data": "Hesabın məlumatlarını göndərmək",
+ "An error has occurred.": "Səhv oldu.",
+ "Invalid Email Address": "Yanlış email",
+ "Verification Pending": "Gözləmə təsdiq etmələr",
+ "Please check your email and click on the link it contains. Once this is done, click continue.": "Öz elektron poçtunu yoxlayın və olan istinadı basın. Bundan sonra düyməni Davam etməyə basın.",
+ "Unable to add email address": "Email-i əlavə etməyə müvəffəq olmur",
+ "Unable to verify email address.": "Email-i yoxlamağı bacarmadı.",
+ "User names may only contain letters, numbers, dots, hyphens and underscores.": "İstifadəçilərin adları yalnız hərfləri, rəqəmləri, nöqtələri, defisləri və altından xətt çəkmənin simvollarını özündə saxlaya bilər.",
+ "Username not available": "İstifadəçi adı mövcud deyil",
+ "An error occurred: %(error_string)s": "Səhv baş verdi: %(error_string)s",
+ "Username available": "İstifadəçi adı mövcuddur",
+ "Failed to change password. Is your password correct?": "Şifrəni əvəz etməyi bacarmadı. Siz cari şifrə düzgün daxil etdiniz?",
+ "Reject invitation": "Dəvəti rədd etmək",
+ "Are you sure you want to reject the invitation?": "Siz əminsiniz ki, siz dəvəti rədd etmək istəyirsiniz?",
+ "Name": "Ad",
+ "Topic": "Mövzu",
+ "Make this room private": "Bu otağı bağlanmış etmək",
+ "Share message history with new users": "Mesajların tarixinə girişi yeni istifadəçilərə icazə vermək",
+ "Encrypt room": "Otağın şifrələnməsi",
+ "There are no visible files in this room": "Bu otaqda görülən fayl yoxdur",
+ "Featured Users:": "Seçilmiş istifadəçilər:",
+ "Couldn't load home page": "Ana səhifəni yükləməyi bacarmadı",
+ "Failed to reject invitation": "Dəvəti rədd etməyi bacarmadı",
+ "Failed to leave room": "Otaqdan çıxmağı bacarmadı",
+ "For security, this session has been signed out. Please sign in again.": "Təhlükəsizliyin təmin olunması üçün sizin sessiyanız başa çatmışdır idi. Zəhmət olmasa, yenidən girin.",
+ "Logout": "Çıxmaq",
+ "You have no visible notifications": "Görülən xəbərdarlıq yoxdur",
+ "Files": "Fayllar",
+ "Notifications": "Xəbərdarlıqlar",
+ "Hide panel": "Paneli gizlətmək",
+ "#example": "#misal",
+ "Connectivity to the server has been lost.": "Serverlə əlaqə itirilmişdir.",
+ "Sent messages will be stored until your connection has returned.": "Hələ ki serverlə əlaqə bərpa olmayacaq, göndərilmiş mesajlar saxlanacaq.",
+ "Active call": "Aktiv çağırış",
+ "Failed to upload file": "Faylı göndərməyi bacarmadı",
+ "No more results": "Daha çox nəticə yoxdur",
+ "Failed to save settings": "Qurmaları saxlamağı bacarmadı",
+ "Failed to reject invite": "Dəvəti rədd etməyi bacarmadı",
+ "Fill screen": "Ekranı doldurmaq",
+ "Click to unmute video": "Klikləyin, videonu qoşmaq üçün",
+ "Click to mute video": "Klikləyin, videonu söndürmək üçün",
+ "Click to unmute audio": "Klikləyin, səsi qoşmaq üçün",
+ "Click to mute audio": "Klikləyin, səsi söndürmək üçün",
+ "Expand panel": "Paneli açmaq",
+ "Filter room names": "Otaqlar üzrə axtarış",
+ "Failed to load timeline position": "Xronologiyadan nişanı yükləməyi bacarmadı",
+ "Can't load user settings": "İstifadəçi qurmalarını yükləmək mümkün deyil",
+ "Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "Şifrə uğurla dəyişdirildi. Təkrar avtorizasiyaya qədər siz başqa cihazlarda push-xəbərdarlıqları almayacaqsınız",
+ "Remove Contact Information?": "Əlaqə məlumatı silinsin?",
+ "Unable to remove contact information": "Əlaqə məlumatlarının silməyi bacarmadı",
+ "Interface Language": "İnterfeysin dili",
+ "User Interface": "İstifadəçi interfeysi",
+ "": "",
+ "Import E2E room keys": "Şifrləmənin açarlarının idxalı",
+ "Cryptography": "Kriptoqrafiya",
+ "Ignored Users": "Bloklanan istifadəçilər",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Məxfilik bizim üçün əhəmiyyətlidir, buna görə biz bizim analitikamız üçün heç bir şəxsi və ya müəyyən edən məlumat yığmırıq.",
+ "Learn more about how we use analytics.": "O haqda daha ətraflı, necə biz analitikadan istifadə edirik.",
+ "Labs": "Laboratoriya",
+ "Use with caution": "Ehtiyatlılıqla istifadə etmək",
+ "Deactivate my account": "Mənim hesabımı bağlamaq",
+ "Clear Cache": "Keşi təmizləmək",
+ "Clear Cache and Reload": "Keşi təmizləmək və yenidən yükləmək",
+ "Bulk Options": "Qrup parametrləri",
+ "Email": "E-poçt",
+ "Add email address": "Email-i əlavə etmək",
+ "Profile": "Profil",
+ "Display name": "Göstərilən ad",
+ "Account": "Hesab",
+ "Access Token:": "Girişin token-i:",
+ "click to reveal": "açılış üçün basın",
+ "Homeserver is": "Ev serveri bu",
+ "Identity Server is": "Eyniləşdirmənin serveri bu",
+ "matrix-react-sdk version:": "matrix-react-sdk versiyası:",
+ "olm version:": "Olm versiyası:",
+ "Failed to send email": "Email göndərilməsinin səhvi",
+ "A new password must be entered.": "Yeni parolu daxil edin.",
+ "New passwords must match each other.": "Yeni şifrələr uyğun olmalıdır.",
+ "I have verified my email address": "Mən öz email-i təsdiq etdim",
+ "Your password has been reset": "Sizin şifrə sıfırlandı",
+ "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "Siz bütün qurğulardan çıxdınız və push-xəbərdarlıqları almayacaqsınız. Xəbərdarlıq aktivləşdirmək üçün hər cihaza yenidən daxil olun",
+ "Return to login screen": "Girişin ekranına qayıtmaq",
+ "New password": "Yeni şifrə",
+ "Confirm your new password": "Yeni Şifrə təsdiq edin",
+ "Send Reset Email": "Şifrənizi sıfırlamaq üçün istinadla məktubu göndərmək",
+ "Create an account": "Hesabı yaratmaq",
+ "Set a display name:": "Görünüş adını daxil edin:",
+ "Upload an avatar:": "Avatar yüklə:",
+ "This server does not support authentication with a phone number.": "Bu server telefon nömrəsinin köməyi ilə müəyyənləşdirilməni dəstəkləmir.",
+ "Missing password.": "Şifrə yoxdur.",
+ "Passwords don't match.": "Şifrələr uyğun gəlmir.",
+ "Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Şifrə çox qısa (min. %(MIN_PASSWORD_LENGTH)s).",
+ "This doesn't look like a valid email address.": "Bu etibarlı bir e-poçt kimi görünmür.",
+ "This doesn't look like a valid phone number.": "Yanlış telefon nömrəsi.",
+ "An unknown error occurred.": "Bilinməyən bir səhv baş verdi.",
+ "I already have an account": "Məndə hesab var",
+ "Commands": "Komandalar",
+ "Emoji": "Smaylar",
+ "Users": "İstifadəçilər",
+ "unknown device": "naməlum cihaz",
+ "NOT verified": "Yoxlanmamışdır",
+ "verified": "yoxlanmış",
+ "Verification": "Yoxlama",
+ "Ed25519 fingerprint": "Ed25519 iz",
+ "User ID": "İstifadəçinin ID-i",
+ "Curve25519 identity key": "Kimlik açarı Curve25519",
+ "none": "heç kim",
+ "Claimed Ed25519 fingerprint key": "Ed25519-un rəqəmli izinin tələb edilən açarı",
+ "Algorithm": "Alqoritm",
+ "unencrypted": "şifrləməsiz",
+ "Decryption error": "Şifrələmə xətası",
+ "End-to-end encryption information": "İki tərəfi açıq şifrləmə haqqında məlumatlar",
+ "Event information": "Hadisə haqqında informasiya",
+ "Confirm passphrase": "Şifrəni təsdiqləyin"
}
diff --git a/src/i18n/strings/be.json b/src/i18n/strings/be.json
index 7e79f5d355..31360c87f4 100644
--- a/src/i18n/strings/be.json
+++ b/src/i18n/strings/be.json
@@ -31,7 +31,6 @@
"Noisy": "Шумна",
"Resend": "Паўторна",
"On": "Уключыць",
- "Permalink": "Пастаянная спасылка",
"remove %(name)s from the directory.": "выдаліць %(name)s з каталога.",
"Off": "Выключыць",
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Выдаліць псеўданім пакоя %(alias)s і выдаліць %(name)s з каталога?",
diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json
index 20a0832b38..18cdd5afdb 100644
--- a/src/i18n/strings/bg.json
+++ b/src/i18n/strings/bg.json
@@ -136,7 +136,6 @@
"Missing room_id in request": "Липсва room_id в заявката",
"Room %(roomId)s not visible": "Стая %(roomId)s не е видима",
"Missing user_id in request": "Липсва user_id в заявката",
- "Failed to lookup current room": "Неуспешно намиране на текущата стая",
"/ddg is not a command": "/ddg не е команда",
"To use it, just wait for autocomplete results to load and tab through them.": "За използване, изчакайте зареждането на списъка с предложения и изберете от него.",
"Unrecognised room alias:": "Непознат псевдоним на стая:",
@@ -204,9 +203,7 @@
"Not a valid Riot keyfile": "Невалиден файл с ключ за Riot",
"Authentication check failed: incorrect password?": "Неуспешна автентикация: неправилна парола?",
"Failed to join room": "Неуспешно присъединяване към стаята",
- "Message Replies": "Отговори на съобщението",
"Message Pinning": "Функция за закачане на съобщения",
- "Tag Panel": "Панел с етикети",
"Disable Emoji suggestions while typing": "Изключване на предложенията за емотиконите при писане",
"Use compact timeline layout": "Използване на компактно оформление за списъка със съобщения",
"Hide removed messages": "Скриване на премахнати съобщения",
@@ -269,7 +266,7 @@
"Enable Notifications": "Включване на известия",
"Cannot add any more widgets": "Не могат да се добавят повече приспособления",
"The maximum permitted number of widgets have already been added to this room.": "Максимално разрешеният брой приспособления е вече добавен към тази стая.",
- "Add a widget": "Добавяне на приспособление",
+ "Add a widget": "Добави приспособление",
"Drop File Here": "Пусни файла тук",
"Drop file here to upload": "Пуснете файла тук, за да се качи",
" (unsupported)": " (не се поддържа)",
@@ -491,7 +488,6 @@
"Decrypt %(text)s": "Разшифровай %(text)s",
"Download %(text)s": "Изтегли %(text)s",
"(could not connect media)": "(неуспешно свързване на медийните устройства)",
- "Must be viewing a room": "Трябва да извършите това в стая",
"Usage": "Употреба",
"Remove from community": "Премахни от общността",
"Disinvite this user from community?": "Оттегляне на поканата към този потребител от общността?",
@@ -502,7 +498,7 @@
"Failed to remove room from community": "Неуспешно премахване на стаята от общността",
"Only visible to community members": "Видимо само за членове на общността",
"Filter community rooms": "Филтрирай стаи на общността",
- "Community IDs cannot not be empty.": "Идентификаторите на общността не могат да бъдат празни.",
+ "Community IDs cannot be empty.": "Идентификаторите на общността не могат да бъдат празни.",
"Create Community": "Създай общност",
"Community Name": "Име на общност",
"Community ID": "Идентификатор на общност",
@@ -520,8 +516,6 @@
"Community %(groupId)s not found": "Общност %(groupId)s не е намерена",
"Create a new community": "Създаване на нова общност",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Създайте общност, за да групирате потребители и стаи! Изградете персонализирана начална страница, за да маркирате своето пространство в Matrix Вселената.",
- "Join an existing community": "Присъединяване към съществуваща общност",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "За да се присъедините към вече съществуваща общност, трябва да знаете нейния идентификатор; той изглежда нещо подобно на +example:matrix.org .",
"Unknown (user, device) pair:": "Непозната двойка (потребител, устройство):",
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "Подписващият ключ, който сте предоставили, съвпада с подписващия ключ, който сте получили от устройството %(deviceId)s на %(userId)s. Устройството е маркирано като потвърдено.",
"Hide avatars in user and room mentions": "Скриване на аватара на потребители и стаи при споменаването им",
@@ -888,7 +882,6 @@
"This homeserver doesn't offer any login flows which are supported by this client.": "Този Home сървър не предлага методи за влизане, които се поддържат от този клиент.",
"Error: Problem communicating with the given homeserver.": "Грешка: Проблем при комуникацията с дадения Home сървър.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Не е възможно свързване към Home сървъра чрез HTTP, когато има HTTPS адрес в лентата на браузъра Ви. Или използвайте HTTPS или включете функция небезопасни скриптове .",
- "Login as guest": "Влез като гост",
"Sign in to get started": "Влезте в профила си, за да започнете",
"Set a display name:": "Задаване на име:",
"Upload an avatar:": "Качване на профилна снимка:",
@@ -1125,7 +1118,6 @@
"Set Password": "Задаване на парола",
"An error occurred whilst saving your email notification preferences.": "Възникна грешка при запазване на настройките за имейл известяване.",
"Enable audible notifications in web client": "Включване на звукови известия в уеб клиент",
- "Permalink": "Permalink",
"Off": "Изключено",
"Riot does not know how to join a room on this network": "Riot не знае как да се присъедини към стая от тази мрежа",
"Mentions only": "Само при споменаване",
@@ -1157,5 +1149,87 @@
"At this time it is not possible to reply with a file so this will be sent without being a reply.": "В момента не може да се отговаря с файл, така че това ще се изпрати без да бъде отговор.",
"Unable to reply": "Не може да се отговори",
"At this time it is not possible to reply with an emote.": "В момента не може да се отговори с емотикона.",
- "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не може да се зареди събитието, на което е отговорено. Или не съществува или нямате достъп да го видите."
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не може да се зареди събитието, на което е отговорено. Или не съществува или нямате достъп да го видите.",
+ "Popout widget": "Изкарай в нов прозорец",
+ "Log out and remove encryption keys?": "Изход и изтриване на ключовете за шифроване?",
+ "Clear Storage and Sign Out": "Изчисти запазените данни и излез",
+ "Send Logs": "Изпрати логове",
+ "Refresh": "Опресни",
+ "We encountered an error trying to restore your previous session.": "Възникна грешка при възстановяване на предишната Ви сесия.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Изчистване на запазените данни в браузъра може да поправи проблема, но ще Ви изкара от профила и ще направи шифрованите съобщения нечетими.",
+ "Collapse Reply Thread": "Свий отговорите",
+ "Enable widget screenshots on supported widgets": "Включи скрийншоти за поддържащи ги приспособления",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Бъговете по Riot се следят в GitHub: създайте проблем в GitHub .",
+ "e.g. %(exampleValue)s": "напр. %(exampleValue)s",
+ "Reload widget": "Презареди приспособлението",
+ "Send analytics data": "Изпращане на статистически данни",
+ "To notify everyone in the room, you must be a": "За да уведомите всички в стаята, трябва да бъдете",
+ "Muted Users": "Заглушени потребители",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Моля, помогнете за подобряването на Riot.im като изпращате анонимни данни за ползване . Това ще използва бисквитка (моля, вижте нашата политика за бисквитки ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Моля, помогнете за подобряването на Riot.im като изпращате анонимни данни за ползване . Това ще използва бисквитка.",
+ "Yes, I want to help!": "Да, искам да помогна!",
+ "Warning: This widget might use cookies.": "Внимание: това приспособление може да използва бисквитки.",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Това ще направи акаунта Ви неизползваем завинаги. Няма да можете да влезете пак, а регистрирането повторно на същия потребителски идентификатор няма да е възможно. Акаунтът Ви да напусне всички стаи, в които участва. Ще бъдат премахнати и данните за акаунта Ви от сървъра за самоличност. Действието е необратимо. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Деактивирането на акаунта Ви по подразбиране не прави така, че изпратените съобщения да бъдат забравени. Ако искате да забравим съобщенията Ви, моля отбележете с отметка по-долу.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Видимостта на съобщенията в Matrix е подобно на имейл системата. Нашето забравяне означава, че: изпратените от Вас съобщения няма да бъдат споделяни с нови или нерегистрирани потребители, но регистрираните потребители имащи достъп до тях ще продължат да имат достъп до своето копие.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Моля, забравете всички изпратени от мен съобщения, когато акаунта ми се деактивира (Внимание: това ще направи бъдещите потребители да имат само частичен поглед върху кореспонденцията)",
+ "To continue, please enter your password:": "За да продължите, моля въведете паролата си:",
+ "password": "парола",
+ "Can't leave Server Notices room": "Не може да напуснете стая \"Server Notices\"",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Тази стая се използва за важни съобщения от сървъра, така че не можете да я напуснете.",
+ "Terms and Conditions": "Правила и условия",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "За да продължите да ползвате %(homeserverDomain)s е необходимо да прегледате и да се съгласите с правилата и условията за ползване.",
+ "Review terms and conditions": "Прегледай правилата и условията",
+ "Failed to indicate account erasure": "Неуспешно указване на желанието за изтриване на акаунта",
+ "Try the app first": "Първо пробвайте приложението",
+ "Encrypting": "Шифроване",
+ "Encrypted, not sent": "Шифровано, неизпратено",
+ "Share Link to User": "Сподели връзка с потребител",
+ "Share room": "Сподели стая",
+ "Share Room": "Споделяне на стая",
+ "Link to most recent message": "Създай връзка към най-новото съобщение",
+ "Share User": "Споделяне на потребител",
+ "Share Community": "Споделяне на общност",
+ "Share Room Message": "Споделяне на съобщение от стая",
+ "Link to selected message": "Създай връзка към избраното съобщение",
+ "COPY": "КОПИРАЙ",
+ "Share Message": "Сподели съобщението",
+ "No Audio Outputs detected": "Не са открити аудио изходи",
+ "Audio Output": "Аудио изходи",
+ "Jitsi Conference Calling": "Jitsi конферентни разговори",
+ "Call in Progress": "Тече разговор",
+ "A call is already in progress!": "В момента вече тече разговор!",
+ "You have no historical rooms": "Нямате стаи в архива",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "В шифровани стаи като тази, по подразбиране URL прегледите са изключени, за да се подсигури че сървърът (където става генерирането на прегледите) не може да събира информация за връзките споделени в стаята.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Когато някой сподели URL връзка в съобщение, може да бъде показан URL преглед даващ повече информация за връзката (заглавие, описание и картинка от уебсайта).",
+ "The email field must not be blank.": "Имейл полето не може да бъде празно.",
+ "The user name field must not be blank.": "Полето за потребителско име не може да е празно.",
+ "The phone number field must not be blank.": "Полето за телефонен номер не може да е празно.",
+ "The password field must not be blank.": "Полето за парола не може да е празно.",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Не можете да изпращате съобщения докато не прегледате и се съгласите с нашите правила и условия .",
+ "Demote yourself?": "Понижете себе си?",
+ "Demote": "Понижение",
+ "This event could not be displayed": "Това събитие не може да бъде показано",
+ "A conference call could not be started because the intgrations server is not available": "Не може да бъде започнат конферентен разговор, защото сървърът с интеграции не е достъпен",
+ "Permission Required": "Необходимо е разрешение",
+ "A call is currently being placed!": "В момента се осъществява разговор!",
+ "You do not have permission to start a conference call in this room": "Нямате достъп да започнете конферентен разговор в тази стая",
+ "Show empty room list headings": "Показване на заглавия за празни стаи",
+ "deleted": "изтрито",
+ "underlined": "подчертано",
+ "inline-code": "код",
+ "block-quote": "цитат",
+ "bulleted-list": "списък (с тирета)",
+ "numbered-list": "номериран списък",
+ "Failed to remove widget": "Неуспешно премахване на приспособление",
+ "An error ocurred whilst trying to remove the widget from the room": "Възникна грешка при премахването на приспособлението от стаята",
+ "This homeserver has hit its Monthly Active User limit": "Този сървър достигна своя лимит за активни потребители на месец",
+ "Please contact your service administrator to continue using this service.": "Моля, свържете се с администратора на услугата за да продължите да я използвате.",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Този сървър достигна лимита си за активни потребители на месец. Моля, свържете се с администратора на услугата, за да продължите да я използвате.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Съобщението Ви не бе изпратено, защото този сървър достигна лимита си за активни потребители на месец. Моля, свържете се с администратора на услугата, за да продължите да я използвате.",
+ "System Alerts": "Системни уведомления",
+ "Internal room ID: ": "Вътрешен идентификатор на стаята: ",
+ "Room version number: ": "Версия на стаята: ",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Този сървър достигна лимита си за активни потребители на месец. Моля, свържете се с администратора на услугата , за да продължите да я използвате.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Този сървър достигна лимита си за активни потребители на месец и някои потребители няма да успеят да влязат в профила си. Моля, свържете се с администратора на услугата за да се увеличи този лимит."
}
diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json
index 407b9f61d4..3006063df7 100644
--- a/src/i18n/strings/ca.json
+++ b/src/i18n/strings/ca.json
@@ -134,10 +134,8 @@
"You are not in this room.": "No heu entrat a aquesta sala.",
"You do not have permission to do that in this room.": "No teniu el permís per realitzar aquesta acció en aquesta sala.",
"Missing room_id in request": "Falta l'ID de la sala en la vostra sol·licitud",
- "Must be viewing a room": "Hauríeu de veure una sala",
"Room %(roomId)s not visible": "La sala %(roomId)s no és visible",
"Missing user_id in request": "Falta l'ID d'usuari a la vostre sol·licitud",
- "Failed to lookup current room": "No s'ha pogut buscar la sala actual",
"Usage": "Ús",
"/ddg is not a command": "/ddg no és un comandament",
"To use it, just wait for autocomplete results to load and tab through them.": "Per utilitzar-lo, simplement espereu que es completin els resultats automàticament i seleccioneu-ne el desitjat.",
@@ -211,9 +209,7 @@
"Not a valid Riot keyfile": "El fitxer no és un fitxer de claus de Riot valid",
"Authentication check failed: incorrect password?": "Ha fallat l'autenticació: heu introduït correctament la contrasenya?",
"Failed to join room": "No s'ha pogut entrar a la sala",
- "Message Replies": "Respostes del missatge",
"Message Pinning": "Fixació de missatges",
- "Tag Panel": "Tauler d'etiquetes",
"Disable Emoji suggestions while typing": "Desactiva els suggeriments d'Emoji mentre s'escriu",
"Use compact timeline layout": "Utilitza el disseny compacte de la línia de temps",
"Hide join/leave messages (invites/kicks/bans unaffected)": "Amaga els missatges d'entrada i sortida (no afecta a les invitacions, expulsions o prohibicions)",
@@ -579,7 +575,6 @@
"%(nameList)s %(transitionList)s": "%(transitionList)s%(nameList)s",
"%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s han entrat",
"Guest access is disabled on this Home Server.": "L'accés a usuaris d'altres xarxes no està permès en aquest servidor.",
- "Login as guest": "Inicia sessió com a convidat",
"Unblacklist": "Treure de la llista negre",
"%(oneUser)sjoined %(count)s times|one": "%(oneUser)s s'ha unit",
"%(severalUsers)sleft %(count)s times|one": "%(severalUsers)s han sortit",
@@ -659,7 +654,7 @@
"%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s han sortit %(count)s vegades",
"%(oneUser)sleft %(count)s times|other": "%(oneUser)s ha sortit %(count)s vegades",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Les ID de les comunitats només poden contendre caràcters a-z, 0-9, o '=_-./'",
- "Community IDs cannot not be empty.": "Les ID de les comunitats no poden estar buides.",
+ "Community IDs cannot be empty.": "Les ID de les comunitats no poden estar buides.",
"Something went wrong whilst creating your community": "S'ha produït un error al crear la vostra comunitat",
"Create Community": "Crea una comunitat",
"Community Name": "Nom de la comunitat",
@@ -772,8 +767,6 @@
"Error whilst fetching joined communities": "S'ha produït un error en buscar comunitats unides",
"Create a new community": "Crea una nova comunitat",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Crea una comunitat per agrupar usuaris i sales! Creeu una pàgina d'inici personalitzada per definir el vostre espai a l'univers Matrix.",
- "Join an existing community": "Uneix-te a una comunitat existent",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Per unir-se a una comunitat existent, haureu de conèixer l'identificador de la comunitat; això es veurà com +exemple:matrix.org .",
"You have no visible notifications": "No teniu cap notificació visible",
"Scroll to bottom of page": "Desplaça't fins a la part inferior de la pàgina",
"Message not sent due to unknown devices being present": "El missatge no s'ha enviat perquè hi ha dispositius desconeguts presents",
@@ -1004,7 +997,6 @@
"Unable to fetch notification target list": "No s'ha pogut obtenir la llista d'objectius de les notificacions",
"Set Password": "Establiu una contrasenya",
"Enable audible notifications in web client": "Habilita les notificacions d'àudio al client web",
- "Permalink": "Enllaç permanent",
"Off": "Apagat",
"Riot does not know how to join a room on this network": "El Riot no sap com unir-se a una sala en aquesta xarxa",
"Mentions only": "Només mencions",
diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json
index 33c7a3d5f1..9ac753e285 100644
--- a/src/i18n/strings/cs.json
+++ b/src/i18n/strings/cs.json
@@ -239,7 +239,6 @@
"Level:": "Úroveň:",
"Local addresses for this room:": "Místní adresy této místnosti:",
"Logged in as:": "Přihlášen/a jako:",
- "Login as guest": "Přihlášen/a jako host",
"matrix-react-sdk version:": "Verze matrix-react-sdk:",
"Mobile phone number": "Číslo mobilního telefonu",
"Mobile phone number (optional)": "Číslo mobilního telefonu (nepovinné)",
@@ -633,9 +632,7 @@
"Show these rooms to non-members on the community page and room list?": "Zobrazovat tyto místnosti na domovské stránce skupiny a v seznamu místností i pro nečleny?",
"Restricted": "Omezené",
"Missing room_id in request": "V zadání chybí room_id",
- "Must be viewing a room": "Musí být zobrazena místnost",
"Missing user_id in request": "V zadání chybí user_id",
- "Failed to lookup current room": "Nepodařilo se vyhledat aktuální místnost",
"(could not connect media)": "(média se nepodařilo spojit)",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s uskutečnil %(callType)s hovor.",
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s zpřístupnil budoucí historii místnosti neznámým (%(visibility)s).",
@@ -860,8 +857,6 @@
"Error whilst fetching joined communities": "Při získávání vašich skupin se vyskytla chyba",
"Create a new community": "Vytvořit novou skupinu",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Vytvořte skupinu s cílem seskupit uživatele a místnosti! Vytvořte si vlastní domovskou stránku a vymezte tak váš prostor ve světe Matrix.",
- "Join an existing community": "Vstoupit do existující skupiny",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Aby jste mohli vstoupit do existující skupiny, musíte znát její identifikátor; Měl by vypadat asi takto +priklad:matrix.org .",
"You have no visible notifications": "Nejsou dostupná žádná oznámení",
"Connectivity to the server has been lost.": "Spojení se serverem bylo přerušené.",
"Sent messages will be stored until your connection has returned.": "Odeslané zprávy zůstanou uložené, dokud se spojení znovu neobnoví.",
@@ -919,7 +914,6 @@
"Claimed Ed25519 fingerprint key": "Údajný klíč s otiskem prstu Ed25519",
"This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Tento proces vás provede importem šifrovacích klíčů, které jste si stáhli z jiného Matrix klienta. Po úspěšném naimportování budete v tomto klientovi moci dešifrovat všechny zprávy, které jste mohli dešifrovat v původním klientovi.",
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Stažený soubor je chráněn heslem. Soubor můžete naimportovat pouze pokud zadáte odpovídající heslo.",
- "Tag Panel": "Připnout panel",
"Call Failed": "Hovor selhal",
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "V této místnosti jsou neznámá zařízení: Pokud budete pokračovat bez jejich ověření, někdo může Váš hovor odposlouchávat.",
"Review Devices": "Ověřit zařízení",
@@ -1062,7 +1056,6 @@
"Set Password": "Nastavit heslo",
"An error occurred whilst saving your email notification preferences.": "Při ukládání nastavení e-mailových upozornění nastala chyba.",
"Enable audible notifications in web client": "Povolit zvuková upozornění ve webové aplikaci",
- "Permalink": "Trvalý odkaz",
"Off": "Vypnout",
"#example": "#příklad",
"Mentions only": "Pouze zmínky",
@@ -1083,5 +1076,9 @@
"Collapse panel": "Sbalit panel",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Vzhled a chování aplikace může být ve vašem aktuální prohlížeči nesprávné a některé nebo všechny funkce mohou být chybné. Chcete-li i přes to pokračovat, nebudeme vám bránit, ale se všemi problémy, na které narazíte, si musíte poradit sami!",
"Checking for an update...": "Kontrola aktualizací...",
- "There are advanced notifications which are not shown here": "Jsou k dispozici pokročilá upozornění, která zde nejsou zobrazena"
+ "There are advanced notifications which are not shown here": "Jsou k dispozici pokročilá upozornění, která zde nejsou zobrazena",
+ "The platform you're on": "Platforma na které jsi",
+ "The version of Riot.im": "Verze Riot.im",
+ "Whether or not you're logged in (we don't record your user name)": "Jestli jsi, nebo nejsi přihlášen (tvou přezdívku neukládáme)",
+ "Your language of choice": "Tvá jazyková volba"
}
diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json
index 2a59530d5a..e90de5edfc 100644
--- a/src/i18n/strings/da.json
+++ b/src/i18n/strings/da.json
@@ -39,7 +39,6 @@
"Searches DuckDuckGo for results": "Søger DuckDuckGo for resultater",
"Commands": "kommandoer",
"Emoji": "Emoji",
- "Login as guest": "Log ind som gæst",
"Sign in": "Log ind",
"Warning!": "Advarsel!",
"Account": "Konto",
@@ -194,10 +193,8 @@
"You are not in this room.": "Du er ikke i dette rum.",
"You do not have permission to do that in this room.": "Du har ikke tilladelse til at gøre dét i dette rum.",
"Missing room_id in request": "Mangler room_id i forespørgsel",
- "Must be viewing a room": "Du skal være i gang med at se på rummet",
"Room %(roomId)s not visible": "rum %(roomId)s ikke synligt",
"Missing user_id in request": "Manglende user_id i forespørgsel",
- "Failed to lookup current room": "Kunne ikke slå nuværende rum op",
"Usage": "Brug",
"/ddg is not a command": "/ddg er ikke en kommando",
"To use it, just wait for autocomplete results to load and tab through them.": "For at bruge det skal du bare vente på autocomplete resultaterne indlæser og tab'e igennem dem.",
@@ -371,7 +368,6 @@
"Unable to fetch notification target list": "Kan ikke hente meddelelsesmålliste",
"Set Password": "Indstil Password",
"Enable audible notifications in web client": "Aktivér hørbare underretninger i webklienten",
- "Permalink": "Permanent link",
"Resend": "Send igen",
"Riot does not know how to join a room on this network": "Riot ved ikke, hvordan man kan deltage i et rum på dette netværk",
"Mentions only": "Kun nævninger",
diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json
index c8e01819bd..8b63a7b206 100644
--- a/src/i18n/strings/de_DE.json
+++ b/src/i18n/strings/de_DE.json
@@ -40,7 +40,6 @@
"Searches DuckDuckGo for results": "Verwendet DuckDuckGo für Suchergebnisse",
"Commands": "Kommandos",
"Emoji": "Emoji",
- "Login as guest": "Als Gast anmelden",
"Sign in": "Anmelden",
"Warning!": "Warnung!",
"Error": "Fehler",
@@ -126,7 +125,7 @@
"Return to login screen": "Zur Anmeldemaske zurückkehren",
"Room Colour": "Raumfarbe",
"Room name (optional)": "Raumname (optional)",
- "Scroll to unread messages": "Zu den ungelesenen Nachrichten scrollen",
+ "Scroll to unread messages": "Zu den ungelesenen Nachrichten springen",
"Send Invites": "Einladungen senden",
"Send Reset Email": "E-Mail zum Zurücksetzen senden",
"Server may be unavailable or overloaded": "Server ist eventuell nicht verfügbar oder überlastet",
@@ -250,7 +249,6 @@
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s hat das Thema geändert in \"%(topic)s\".",
"/ddg is not a command": "/ddg ist kein Kommando",
"%(senderName)s ended the call.": "%(senderName)s hat den Anruf beendet.",
- "Failed to lookup current room": "Fehler beim Nachschlagen des Raums",
"Failed to send request.": "Anfrage konnte nicht gesendet werden.",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s von %(fromPowerLevel)s zu %(toPowerLevel)s",
"%(senderName)s invited %(targetName)s.": "%(senderName)s hat %(targetName)s eingeladen.",
@@ -265,7 +263,6 @@
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s hat den zukünftigen Chatverlauf sichtbar gemacht für unbekannt (%(visibility)s).",
"Missing room_id in request": "Fehlende room_id in Anfrage",
"Missing user_id in request": "Fehlende user_id in Anfrage",
- "Must be viewing a room": "Muss einen Raum ansehen",
"(not supported by this browser)": "(wird von diesem Browser nicht unterstützt)",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s startete einen %(callType)s-Anruf.",
"Power level must be positive integer.": "Berechtigungslevel muss eine positive ganze Zahl sein.",
@@ -785,8 +782,6 @@
"Failed to load %(groupId)s": "'%(groupId)s' konnte nicht geladen werden",
"Error whilst fetching joined communities": "Fehler beim Laden beigetretener Communities",
"Create a new community": "Neue Community erstellen",
- "Join an existing community": "Einer bestehenden Community beitreten",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Um einer bereits bestehenden Community beitreten zu können, musst dir deren Community-ID bekannt sein. Diese sieht z. B. aus wie +example:matrix.org .",
"Your Communities": "Deine Communities",
"You're not currently a member of any communities.": "Du gehörst aktuell keiner Community an.",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Erstelle eine Community, um Benutzer und Räume miteinander zu verbinden! Erstelle zusätzlich eine eigene Homepage, um deinen individuellen Bereich im Matrix-Universum zu gestalten.",
@@ -940,7 +935,7 @@
"Replying": "Antwortet",
"Minimize apps": "Apps minimieren",
"%(count)s of your messages have not been sent.|one": "Deine Nachricht wurde nicht gesendet.",
- "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Jetzt alle erneut senden oder alle abbrechen . Du kannst auch einzelne Nachrichten auswählen und erneut senden oder abbrechen.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Alle erneut senden oder alle abbrechen . Du kannst auch einzelne Nachrichten erneut senden oder abbrechen.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Nachricht jetzt erneut senden oder senden abbrechen now.",
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Privatsphäre ist uns wichtig, deshalb sammeln wir keine persönlichen oder identifizierbaren Daten für unsere Analysen.",
"The information being sent to us to help make Riot.im better includes:": "Die Informationen, die an uns gesendet werden um Riot.im zu verbessern enthalten:",
@@ -951,16 +946,14 @@
"Your homeserver's URL": "Die URL deines Homeservers",
"Your identity server's URL": "Die URL deines Identitätsservers",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
- "Tag Panel": "Beschriftungsfeld",
- "Message Replies": "Antworten auf Nachrichten",
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Du wirst nicht in der Lage sein, die Änderung zurückzusetzen, da du dich degradierst. Wenn du der letze Nutzer mit Berechtigungen bist, wird es unmöglich sein die Privilegien zurückzubekommen.",
- "Community IDs cannot not be empty.": "Community-IDs können nicht leer sein.",
+ "Community IDs cannot be empty.": "Community-IDs können nicht leer sein.",
"Show devices , send anyway or cancel .": "Geräte anzeigen , trotzdem senden oder abbrechen .",
"Learn more about how we use analytics.": "Lerne mehr darüber, wie wir die Analysedaten nutzen.",
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Wenn diese Seite identifizierbare Informationen sowie Raum, Nutzer oder Gruppen-ID enthalten, werden diese Daten entfernt bevor sie an den Server gesendet werden.",
"Whether or not you're logged in (we don't record your user name)": "Ob oder ob du nicht angemeldet bist (wir zeichnen deinen Benutzernamen nicht auf)",
"Which officially provided instance you are using, if any": "Welche offiziell angebotene Instanz du nutzt, wenn es der Fall ist",
- "In reply to ": "Antwort zu ",
+ "In reply to ": "Als Antwort auf ",
"This room is not public. You will not be able to rejoin without an invite.": "Dies ist kein öffentlicher Raum. Du wirst diesen nicht ohne Einladung wieder beitreten können.",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s änderte den Anzeigenamen auf %(displayName)s.",
"Failed to set direct chat tag": "Fehler beim Setzen der Direkt-Chat-Markierung",
@@ -969,7 +962,7 @@
"Did you know: you can use communities to filter your Riot.im experience!": "Wusstest du: Du kannst Communities nutzen um deine Riot.im-Erfahrung zu filtern!",
"To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Um einen Filter zu setzen, siehe einen Community-Bild auf das Filter-Panel ganz links. Du kannst jederzeit auf einen Avatar im Filter-Panel klicken um nur die Räume und Personen aus der Community zu sehen.",
"Clear filter": "Filter zurücksetzen",
- "Disable Community Filter Panel": "Deaktivere Community-Filter-Panel",
+ "Disable Community Filter Panel": "Deaktiviere Community-Filter-Panel",
"Your key share request has been sent - please check your other devices for key share requests.": "Deine Schlüssel-Teil-Anfragen wurden gesendet. Bitte prüfe deine anderen Geräte auf die Schlüssel-Teil-Anfragen.",
"Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "Schlüssel-Anfragen wurden automatisch zu den anderen Geräten gesendet. Wenn du diese Anfragen auf deinen anderen Geräten abgelehnt oder verpasst hast, klicke hier um die Schlüssel für diese Sitzung erneut anzufragen.",
"If your other devices do not have the key for this message you will not be able to decrypt them.": "Wenn deine anderen Geräte keine Schlüssel für diese Nachricht haben, wirst du diese nicht entschlüsseln können.",
@@ -1126,7 +1119,6 @@
"Unable to fetch notification target list": "Liste der Benachrichtigungsempfänger konnte nicht abgerufen werden",
"Set Password": "Passwort einrichten",
"Enable audible notifications in web client": "Audio-Benachrichtigungen im Web-Client aktivieren",
- "Permalink": "Permanenter Link",
"Off": "Aus",
"Riot does not know how to join a room on this network": "Riot weiß nicht, wie es einem Raum auf diesem Netzwerk beitreten soll",
"Mentions only": "Nur, wenn du erwähnt wirst",
@@ -1167,5 +1159,77 @@
"Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Den Browser-Speicher zu löschen kann das Problem lösen, wird dich aber abmelden und verschlüsselte Chats unlesbar machen.",
"Collapse Reply Thread": "Antwort-Thread zusammenklappen",
"At this time it is not possible to reply with an emote.": "An dieser Stelle ist es nicht möglich mit einer Umschreibung zu antworten.",
- "Enable widget screenshots on supported widgets": "Widget-Screenshots bei unterstützten Widgets aktivieren"
+ "Enable widget screenshots on supported widgets": "Widget-Screenshots bei unterstützten Widgets aktivieren",
+ "Send analytics data": "Analysedaten senden",
+ "e.g. %(exampleValue)s": "z.B. %(exampleValue)s",
+ "Reload widget": "Widget neu laden",
+ "To notify everyone in the room, you must be a": "Notwendiges Berechtigungslevel, um jeden im Raum zu benachrichten:",
+ "Muted Users": "Stummgeschaltete Benutzer",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Bitte helfe uns Riot.im zu verbessern, in dem du anonyme Nutzungsdaten schickst. Dies wird ein Cookie benutzen (bitte beachte auch unsere Cookie-Richtlinie ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Bitte helfe uns Riot.im zu verbessern, in dem du anonyme Nutzungsdaten schickst. Dies wird ein Cookie benutzen.",
+ "Yes, I want to help!": "Ja, ich möchte helfen!",
+ "Warning: This widget might use cookies.": "Warnung: Diese Widget mag Cookies verwenden.",
+ "Failed to indicate account erasure": "Fehler beim Signalisieren der Account-Löschung",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Dies wird deinen Account permanent unbenutzbar machen. Du wirst nicht in der Lage sein, dich anzumelden und keiner wird dieselbe Benutzer-ID erneut registrieren können. Alle Räume, in denen der Account ist, werden verlassen und deine Account-Daten werden vom Identitätsserver gelöscht. Diese Aktion ist irreversibel! ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Standardmäßig werden die von dir gesendeten Nachrichten beim Deaktiveren nicht gelöscht . Wenn du dies von uns möchtest, aktivere das Auswalfeld unten.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Sie Sichtbarkeit der Nachrichten in Matrix ist vergleichbar mit E-Mails: Wenn wir deine Nachrichten vergessen heißt das, dass diese nicht mit neuen oder nicht registrierten Nutzern teilen werden, aber registrierte Nutzer, die bereits zugriff haben, werden Zugriff auf ihre Kopie behalten.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Bitte vergesst alle Nachrichten, die ich gesendet habe, wenn mein Account deaktiviert wird. (Warnung: Zukünftige Nutzer werden eine unvollständige Konversation sehen)",
+ "To continue, please enter your password:": "Um fortzufahren, bitte Password eingeben:",
+ "password": "Passwort",
+ "Can't leave Server Notices room": "Du kannst den Raum für Server-Notizen nicht verlassen",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Du kannst diesen Raum nicht verlassen, da dieser Raum für wichtige Nachrichten vom Heimserver verwendet wird.",
+ "Terms and Conditions": "Geschäftsbedingungen",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Um den %(homeserverDomain)s -Heimserver weiter zu verwenden, musst du die Geschäftsbedingungen sichten und ihnen zustimmen.",
+ "Review terms and conditions": "Geschäftsbedingungen anzeigen",
+ "Encrypting": "Verschlüssele",
+ "Encrypted, not sent": "Verschlüsselt, nicht gesendet",
+ "Share Link to User": "Sende Link an Benutzer",
+ "Share room": "Teile Raum",
+ "Share Room": "Teile Raum",
+ "Link to most recent message": "Link zur aktuellsten Nachricht",
+ "Share User": "Teile Benutzer",
+ "Share Community": "Teile Community",
+ "Share Room Message": "Teile Raumnachricht",
+ "Link to selected message": "Link zur ausgewählten Nachricht",
+ "COPY": "KOPIEREN",
+ "Share Message": "Teile Nachricht",
+ "No Audio Outputs detected": "Keine Ton-Ausgabe erkannt",
+ "Audio Output": "Ton-Ausgabe",
+ "Try the app first": "App erst ausprobieren",
+ "Jitsi Conference Calling": "Jitsi-Konferenz Anruf",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "In verschlüsselten Räumen, wie diesem, ist die Link-Vorschau standardmäßig deaktiviert damit dein Heimserver (auf dem die Vorschau erzeugt wird) keine Informationen über Links in diesem Raum bekommt.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Wenn jemand eine Nachricht mit einem Link schickt, kann die Link-Vorschau mehr Informationen, wie Titel, Beschreibung und Bild der Webseite, über den Link anzeigen.",
+ "The email field must not be blank.": "Das E-Mail-Feld darf nicht leer sein.",
+ "The user name field must not be blank.": "Das Benutzername-Feld darf nicht leer sein.",
+ "The phone number field must not be blank.": "Das Telefonnummern-Feld darf nicht leer sein.",
+ "The password field must not be blank.": "Das Passwort-Feld darf nicht leer sein.",
+ "Call in Progress": "Gespräch läuft",
+ "A call is already in progress!": "Ein Gespräch läuft bereits!",
+ "You have no historical rooms": "Du hast keine historischen Räume",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Du kannst keine Nachrichten senden bis du die unsere Geschläftsbedingungen gelesen und akzeptiert hast.",
+ "Show empty room list headings": "Zeige leere Raumlist-Köpfe",
+ "Demote yourself?": "Selbst zurückstufen?",
+ "Demote": "Zurückstufen",
+ "This event could not be displayed": "Dieses Ereignis konnte nicht angezeigt werden",
+ "A conference call could not be started because the intgrations server is not available": "Ein Konferenzgespräch konnte nicht gestartet werden, da der Integrations-Server nicht verfügbar ist",
+ "A call is currently being placed!": "Ein Anruf wurde schon gestartet!",
+ "Permission Required": "Berechtigung benötigt",
+ "You do not have permission to start a conference call in this room": "Du hast keine Berechtigung um ein Konferenzgespräch in diesem Raum zu starten",
+ "deleted": "gelöscht",
+ "underlined": "unterstrichen",
+ "bulleted-list": "Liste mit Punkten",
+ "numbered-list": "Liste mit Nummern",
+ "Failed to remove widget": "Widget konnte nicht entfernt werden",
+ "An error ocurred whilst trying to remove the widget from the room": "Ein Fehler trat auf, während versucht wurde das Widget aus diesem Raum zu entfernen",
+ "inline-code": "Quellcode im Satz",
+ "block-quote": "Quellcode im Block",
+ "This homeserver has hit its Monthly Active User limit": "Dieser Heimserver hat sein Limit für monatlich aktive Nutzer erreicht",
+ "Please contact your service administrator to continue using this service.": "Bitte kontaktiere deinen Administrator um diesen Dienst weiter zu nutzen.",
+ "System Alerts": "System-Benachrichtigung",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Der Server hat sein monatliches Nutzerlimit erreicht. Bitte kontaktiere deinen Administrator, um den Service weiter nutzen zu können.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Deine Nachricht konnte nicht verschickt werden, weil der Homeserver sein monatliches Nutzerlimit erreicht hat. Bitte kontaktiere deine Administrator, um den Service weiter nutzen zu können.",
+ "Internal room ID: ": "Interne Raum-ID: ",
+ "Room version number: ": "Raum-Versionsnummer: ",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Dieser Heimserver hat sein monatliches Limit an aktiven Benutzern erreicht. Bitte kontaktiere deinen Systemadministrator um mit der Nutzung dieses Services fortzufahren.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Dieser Heimserver hat sein monatliches Limit an aktiven Benutzern erreicht. Bitte kontaktiere deinen Systemadministrator um dieses Limit zu erhöhen."
}
diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json
index fabd88c74a..c4514f629b 100644
--- a/src/i18n/strings/el.json
+++ b/src/i18n/strings/el.json
@@ -107,7 +107,7 @@
"Failed to reject invitation": "Δεν ήταν δυνατή η απόρριψη της πρόσκλησης",
"Failed to save settings": "Δεν ήταν δυνατή η αποθήκευση των ρυθμίσεων",
"Failed to send email": "Δεν ήταν δυνατή η αποστολή ηλ. αλληλογραφίας",
- "Failed to verify email address: make sure you clicked the link in the email": "Δεν ήταν δυνατή η επιβεβαίωση του μηνύματος ηλεκτρονικής αλληλογραφίας βεβαιωθείτε οτι κάνατε κλικ στον σύνδεσμο που σας στάλθηκε",
+ "Failed to verify email address: make sure you clicked the link in the email": "Δεν ήταν δυνατή η επιβεβαίωση της διεύθυνσης ηλεκτρονικής αλληλογραφίας: βεβαιωθείτε οτι κάνατε κλικ στον σύνδεσμο που σας στάλθηκε",
"Favourite": "Αγαπημένο",
"Favourites": "Αγαπημένα",
"Fill screen": "Γέμισε την οθόνη",
@@ -142,7 +142,6 @@
"%(targetName)s left the room.": "Ο χρήστης %(targetName)s έφυγε από το δωμάτιο.",
"Local addresses for this room:": "Τοπική διεύθυνση για το δωμάτιο:",
"Logged in as:": "Συνδεθήκατε ως:",
- "Login as guest": "Σύνδεση ως επισκέπτης",
"Logout": "Αποσύνδεση",
"Low priority": "Χαμηλής προτεραιότητας",
"matrix-react-sdk version:": "Έκδοση matrix-react-sdk:",
@@ -265,7 +264,7 @@
"Room %(roomId)s not visible": "Το δωμάτιο %(roomId)s δεν είναι ορατό",
"%(roomName)s does not exist.": "Το %(roomName)s δεν υπάρχει.",
"Searches DuckDuckGo for results": "Γίνεται αναζήτηση στο DuckDuckGo για αποτελέσματα",
- "Seen by %(userName)s at %(dateTime)s": "Διαβάστηκε από %(userName)s στις %(dateTime)s",
+ "Seen by %(userName)s at %(dateTime)s": "Διαβάστηκε από τον/την %(userName)s στις %(dateTime)s",
"Send anyway": "Αποστολή ούτως ή άλλως",
"Send Invites": "Αποστολή προσκλήσεων",
"Send Reset Email": "Αποστολή μηνύματος επαναφοράς",
@@ -425,7 +424,6 @@
"Failed to ban user": "Δεν ήταν δυνατό ο αποκλεισμός του χρήστη",
"Failed to change power level": "Δεν ήταν δυνατή η αλλαγή του επιπέδου δύναμης",
"Failed to fetch avatar URL": "Δεν ήταν δυνατή η ανάκτηση της διεύθυνσης εικόνας",
- "Failed to lookup current room": "Δεν ήταν δυνατή η εύρεση του τρέχοντος δωματίου",
"Failed to unban": "Δεν ήταν δυνατή η άρση του αποκλεισμού",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s από %(fromPowerLevel)s σε %(toPowerLevel)s",
"Guest access is disabled on this Home Server.": "Έχει απενεργοποιηθεί η πρόσβαση στους επισκέπτες σε αυτόν τον διακομιστή.",
@@ -448,7 +446,6 @@
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "Ο %(senderName)s έκανε το μελλοντικό ιστορικό του δωματίου δημόσιο άγνωστο (%(visibility)s).",
"Missing user_id in request": "Λείπει το user_id στο αίτημα",
"Mobile phone number (optional)": "Αριθμός κινητού τηλεφώνου (προαιρετικό)",
- "Must be viewing a room": "Πρέπει να βλέπετε ένα δωμάτιο",
"Never send encrypted messages to unverified devices from this device": "Να μη γίνει ποτέ αποστολή κρυπτογραφημένων μηνυμάτων σε ανεπιβεβαίωτες συσκευές από αυτή τη συσκευή",
"Never send encrypted messages to unverified devices in this room from this device": "Να μη γίνει ποτέ αποστολή κρυπτογραφημένων μηνυμάτων σε ανεπιβεβαίωτες συσκευές, σε αυτό το δωμάτιο, από αυτή τη συσκευή",
"not set": "δεν έχει οριστεί",
@@ -466,7 +463,7 @@
"%(senderName)s removed their profile picture.": "Ο %(senderName)s αφαίρεσε τη φωτογραφία του προφίλ του.",
"%(senderName)s requested a VoIP conference.": "Ο %(senderName)s αιτήθηκε μια συνδιάσκεψη VoIP.",
"Riot does not have permission to send you notifications - please check your browser settings": "Το Riot δεν έχει δικαιώματα για αποστολή ειδοποιήσεων - παρακαλούμε ελέγξτε τις ρυθμίσεις του περιηγητή σας",
- "Riot was not given permission to send notifications - please try again": "Δεν δόθηκαν δικαιώματα στο Riot να αποστείλει ειδοποιήσεις - παρακαλούμε προσπαθήστε ξανά",
+ "Riot was not given permission to send notifications - please try again": "Δεν δόθηκαν δικαιώματα αποστολής ειδοποιήσεων στο Riot - παρακαλούμε προσπαθήστε ξανά",
"Room contains unknown devices": "Το δωμάτιο περιέχει άγνωστες συσκευές",
"%(roomName)s is not accessible at this time.": "Το %(roomName)s δεν είναι προσβάσιμο αυτή τη στιγμή.",
"Scroll to bottom of page": "Μετάβαση στο τέλος της σελίδας",
@@ -746,7 +743,6 @@
"What's New": "Τι νέο υπάρχει",
"Set Password": "Ορισμός κωδικού πρόσβασης",
"Enable audible notifications in web client": "Ενεργοποίηση ηχητικών ειδοποιήσεων",
- "Permalink": "Μόνιμος σύνδεσμος",
"Off": "Ανενεργό",
"#example": "#παράδειγμα",
"Mentions only": "Μόνο αναφορές",
@@ -774,5 +770,84 @@
"e.g. ": "π.χ. ",
"Your device resolution": "Η ανάλυση της συσκευής σας",
"The information being sent to us to help make Riot.im better includes:": "Οι πληροφορίες που στέλνονται σε εμάς με σκοπό την βελτίωση του Riot.im περιλαμβάνουν:",
- "Call Failed": "Η κλήση απέτυχε"
+ "Call Failed": "Η κλήση απέτυχε",
+ "Whether or not you're logged in (we don't record your user name)": "Εάν είστε συνδεδεμένος/η ή όχι (δεν καταγράφουμε το όνομα χρήστη σας)",
+ "e.g. %(exampleValue)s": "π.χ. %(exampleValue)s",
+ "Review Devices": "Ανασκόπηση συσκευών",
+ "Call Anyway": "Κλήση όπως και να 'χει",
+ "Answer Anyway": "Απάντηση όπως και να 'χει",
+ "Call": "Κλήση",
+ "Answer": "Απάντηση",
+ "AM": "ΠΜ",
+ "PM": "ΜΜ",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
+ "Who would you like to add to this community?": "Ποιον/α θα θέλατε να προσθέσετε σε αυτή την κοινότητα;",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Προσοχή: κάθε άτομο που προσθέτετε στην κοινότητα θε είναι δημοσίως ορατό σε οποιονδήποτε γνωρίζει το αναγνωριστικό της κοινότητας",
+ "Invite new community members": "Προσκαλέστε νέα μέλη στην κοινότητα",
+ "Name or matrix ID": "Όνομα ή αναγνωριστικό του matrix",
+ "Invite to Community": "Πρόσκληση στην κοινότητα",
+ "Which rooms would you like to add to this community?": "Ποια δωμάτια θα θέλατε να προσθέσετε σε αυτή την κοινότητα;",
+ "Add rooms to the community": "Προσθήκη δωματίων στην κοινότητα",
+ "Add to community": "Προσθήκη στην κοινότητα",
+ "Failed to invite the following users to %(groupId)s:": "Αποτυχία πρόσκλησης των ακόλουθων χρηστών στο %(groupId)s :",
+ "Failed to invite users to community": "Αποτυχία πρόσκλησης χρηστών στην κοινότητα",
+ "Failed to invite users to %(groupId)s": "Αποτυχία πρόσκλησης χρηστών στο %(groupId)s",
+ "Failed to add the following rooms to %(groupId)s:": "Αποτυχία προσθήκης των ακόλουθων δωματίων στο %(groupId)s:",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Υπάρχουν άγνωστες συσκευές στο δωμάτιο: εάν συνεχίσετε χωρίς να τις επιβεβαιώσετε, θα μπορούσε κάποιος να κρυφακούει την κλήση σας.",
+ "Show these rooms to non-members on the community page and room list?": "Εμφάνιση αυτών των δωματίων σε μη-μέλη στην σελίδα της κοινότητας και στη λίστα δωματίων;",
+ "Room name or alias": "Όνομα η ψευδώνυμο δωματίου",
+ "Restricted": "Περιορισμένο",
+ "Unable to create widget.": "Αδυναμία δημιουργίας widget.",
+ "Reload widget": "Ανανέωση widget",
+ "You are not in this room.": "Δεν είστε μέλος αυτού του δωματίου.",
+ "You do not have permission to do that in this room.": "Δεν έχετε την άδεια να το κάνετε αυτό σε αυτό το δωμάτιο.",
+ "You are now ignoring %(userId)s": "Τώρα αγνοείτε τον/την %(userId)s",
+ "You are no longer ignoring %(userId)s": "Δεν αγνοείτε πια τον/την %(userId)s",
+ "%(oldDisplayName)s changed their display name to %(displayName)s.": "Ο/Η %(oldDisplayName)s άλλαξε το εμφανιζόμενο όνομά του/της σε %(displayName)s.",
+ "%(senderName)s changed the pinned messages for the room.": "Ο/Η %(senderName)s άλλαξε τα καρφιτσωμένα μηνύματα του δωματίου.",
+ "%(widgetName)s widget modified by %(senderName)s": "Έγινε αλλαγή στο widget %(widgetName)s από τον/την %(senderName)s",
+ "%(widgetName)s widget added by %(senderName)s": "Προστέθηκε το widget %(widgetName)s από τον/την %(senderName)s",
+ "%(widgetName)s widget removed by %(senderName)s": "Το widget %(widgetName)s αφαιρέθηκε από τον/την %(senderName)s",
+ "%(names)s and %(count)s others are typing|other": "Ο/Η %(names)s και άλλοι/ες %(count)s πληκτρολογούν",
+ "%(names)s and %(count)s others are typing|one": "Ο/Η %(names)s και άλλος ένας πληκτρολογούν",
+ "Message Pinning": "Καρφίτσωμα Μηνυμάτων",
+ "Hide avatar changes": "Απόκρυψη αλλαγών εικονιδίων χρηστών",
+ "Hide display name changes": "Απόκρυψη αλλαγών εμφανιζόμενων ονομάτων",
+ "Hide avatars in user and room mentions": "Απόκρυψη εικονιδίων στις αναφορές χρηστών και δωματίων",
+ "Enable URL previews for this room (only affects you)": "Ενεργοποίηση προεπισκόπισης URL για αυτό το δωμάτιο (επηρεάζει μόνο εσάς)",
+ "Delete %(count)s devices|other": "Διαγραφή %(count)s συσκευών",
+ "Delete %(count)s devices|one": "Διαγραφή συσκευής",
+ "Select devices": "Επιλογή συσκευών",
+ "Cannot add any more widgets": "Δεν είναι δυνατή η προσθήκη άλλων widget",
+ "The maximum permitted number of widgets have already been added to this room.": "Ο μέγιστος επιτρεπτός αριθμός widget έχει ήδη προστεθεί σε αυτό το δωμάτιο.",
+ "Add a widget": "Προσθήκη widget",
+ "%(senderName)s sent an image": "Ο/Η %(senderName)s έστειλε μία εικόνα",
+ "%(senderName)s sent a video": "Ο/Η %(senderName)s έστειλε ένα βίντεο",
+ "%(senderName)s uploaded a file": "Ο/Η %(senderName)s αναφόρτωσε ένα αρχείο",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Εάν οι άλλες συσκευές σας δεν έχουν το κλειδί για αυτό το μήνυμα, τότε δεν θα μπορείτε να το αποκρυπτογραφήσετε.",
+ "Disinvite this user?": "Ακύρωση πρόσκλησης αυτού του χρήστη;",
+ "Mention": "Αναφορά",
+ "Invite": "Πρόσκληση",
+ "User Options": "Επιλογές Χρήστη",
+ "Send an encrypted reply…": "Αποστολή κρυπτογραφημένης απάντησης…",
+ "Send a reply (unencrypted)…": "Αποστολή απάντησης (μη κρυπτογραφημένης)…",
+ "Send an encrypted message…": "Αποστολή κρυπτογραφημένου μηνύματος…",
+ "Send a message (unencrypted)…": "Αποστολή μηνύματος (μη κρυπτογραφημένου)…",
+ "Unable to reply": "Αδυναμία απάντησης",
+ "Unpin Message": "Ξεκαρφίτσωμα μηνύματος",
+ "Jump to message": "Πηγαίντε στο μήνυμα",
+ "No pinned messages.": "Κανένα καρφιτσωμένο μήνυμα.",
+ "Loading...": "Φόρτωση...",
+ "Pinned Messages": "Καρφιτσωμένα Μηνύματα",
+ "%(duration)ss": "%(duration)sδ",
+ "%(duration)sm": "%(duration)sλ",
+ "%(duration)sh": "%(duration)sω",
+ "%(duration)sd": "%(duration)sμ",
+ "Online for %(duration)s": "Σε σύνδεση για %(duration)s",
+ "Idle for %(duration)s": "Αδρανής για %(duration)s",
+ "Offline for %(duration)s": "Εκτός σύνδεσης για %(duration)s",
+ "Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "Διαβάστηκε από τον/την %(displayName)s (%(userName)s) στις %(dateTime)s",
+ "Room Notification": "Ειδοποίηση Δωματίου",
+ "Notify the whole room": "Ειδοποιήστε όλο το δωμάτιο",
+ "Sets the room topic": "Ορίζει το θέμα του δωματίου"
}
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index 41f1780425..b560c7e71b 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -33,12 +33,13 @@
"VoIP is unsupported": "VoIP is unsupported",
"You cannot place VoIP calls in this browser.": "You cannot place VoIP calls in this browser.",
"You cannot place a call with yourself.": "You cannot place a call with yourself.",
- "Conference calls are not supported in this client": "Conference calls are not supported in this client",
- "Conference calls are not supported in encrypted rooms": "Conference calls are not supported in encrypted rooms",
- "Warning!": "Warning!",
- "Conference calling is in development and may not be reliable.": "Conference calling is in development and may not be reliable.",
- "Failed to set up conference call": "Failed to set up conference call",
- "Conference call failed.": "Conference call failed.",
+ "Could not connect to the integration server": "Could not connect to the integration server",
+ "A conference call could not be started because the intgrations server is not available": "A conference call could not be started because the intgrations server is not available",
+ "Call in Progress": "Call in Progress",
+ "A call is currently being placed!": "A call is currently being placed!",
+ "A call is already in progress!": "A call is already in progress!",
+ "Permission Required": "Permission Required",
+ "You do not have permission to start a conference call in this room": "You do not have permission to start a conference call in this room",
"The file '%(fileName)s' failed to upload": "The file '%(fileName)s' failed to upload",
"The file '%(fileName)s' exceeds this home server's size limit for uploads": "The file '%(fileName)s' exceeds this home server's size limit for uploads",
"Upload Failed": "Upload Failed",
@@ -111,24 +112,39 @@
"You are not in this room.": "You are not in this room.",
"You do not have permission to do that in this room.": "You do not have permission to do that in this room.",
"Missing room_id in request": "Missing room_id in request",
- "Must be viewing a room": "Must be viewing a room",
"Room %(roomId)s not visible": "Room %(roomId)s not visible",
"Missing user_id in request": "Missing user_id in request",
- "Failed to lookup current room": "Failed to lookup current room",
"Usage": "Usage",
+ "Searches DuckDuckGo for results": "Searches DuckDuckGo for results",
"/ddg is not a command": "/ddg is not a command",
"To use it, just wait for autocomplete results to load and tab through them.": "To use it, just wait for autocomplete results to load and tab through them.",
+ "Changes your display nickname": "Changes your display nickname",
+ "Changes colour scheme of current room": "Changes colour scheme of current room",
+ "Sets the room topic": "Sets the room topic",
+ "Invites user with given id to current room": "Invites user with given id to current room",
+ "Joins room with given alias": "Joins room with given alias",
+ "Leave room": "Leave room",
"Unrecognised room alias:": "Unrecognised room alias:",
+ "Kicks user with given id": "Kicks user with given id",
+ "Bans user with given id": "Bans user with given id",
+ "Unbans user with given id": "Unbans user with given id",
+ "Ignores a user, hiding their messages from you": "Ignores a user, hiding their messages from you",
"Ignored user": "Ignored user",
"You are now ignoring %(userId)s": "You are now ignoring %(userId)s",
+ "Stops ignoring a user, showing their messages going forward": "Stops ignoring a user, showing their messages going forward",
"Unignored user": "Unignored user",
"You are no longer ignoring %(userId)s": "You are no longer ignoring %(userId)s",
+ "Define the power level of a user": "Define the power level of a user",
+ "Deops user with given id": "Deops user with given id",
+ "Opens the Developer Tools dialog": "Opens the Developer Tools dialog",
+ "Verifies a user, device, and pubkey tuple": "Verifies a user, device, and pubkey tuple",
"Unknown (user, device) pair:": "Unknown (user, device) pair:",
"Device already verified!": "Device already verified!",
"WARNING: Device already verified, but keys do NOT MATCH!": "WARNING: Device already verified, but keys do NOT MATCH!",
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!",
"Verified key": "Verified key",
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.",
+ "Displays action": "Displays action",
"Unrecognised command:": "Unrecognised command:",
"Reason": "Reason",
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s accepted the invitation for %(displayName)s.",
@@ -187,10 +203,11 @@
"Your browser does not support the required cryptography extensions": "Your browser does not support the required cryptography extensions",
"Not a valid Riot keyfile": "Not a valid Riot keyfile",
"Authentication check failed: incorrect password?": "Authentication check failed: incorrect password?",
+ "Sorry, your homeserver is too old to participate in this room.": "Sorry, your homeserver is too old to participate in this room.",
+ "Please contact your homeserver administrator.": "Please contact your homeserver administrator.",
"Failed to join room": "Failed to join room",
- "Message Replies": "Message Replies",
"Message Pinning": "Message Pinning",
- "Tag Panel": "Tag Panel",
+ "Increase performance by only loading room members on first view": "Increase performance by only loading room members on first view",
"Disable Emoji suggestions while typing": "Disable Emoji suggestions while typing",
"Use compact timeline layout": "Use compact timeline layout",
"Hide removed messages": "Hide removed messages",
@@ -218,6 +235,7 @@
"Enable URL previews by default for participants in this room": "Enable URL previews by default for participants in this room",
"Room Colour": "Room Colour",
"Enable widget screenshots on supported widgets": "Enable widget screenshots on supported widgets",
+ "Show empty room list headings": "Show empty room list headings",
"Collecting app version information": "Collecting app version information",
"Collecting logs": "Collecting logs",
"Uploading report": "Uploading report",
@@ -249,6 +267,7 @@
"No display name": "No display name",
"New passwords don't match": "New passwords don't match",
"Passwords can't be empty": "Passwords can't be empty",
+ "Warning!": "Warning!",
"Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.",
"Continue": "Continue",
"Export E2E room keys": "Export E2E room keys",
@@ -305,6 +324,7 @@
" (unsupported)": " (unsupported)",
"Join as voice or video .": "Join as voice or video .",
"Ongoing conference call%(supportedText)s.": "Ongoing conference call%(supportedText)s.",
+ "This event could not be displayed": "This event could not be displayed",
"%(senderName)s sent an image": "%(senderName)s sent an image",
"%(senderName)s sent a video": "%(senderName)s sent a video",
"%(senderName)s uploaded a file": "%(senderName)s uploaded a file",
@@ -315,6 +335,8 @@
"Key request sent.": "Key request sent.",
"Re-request encryption keys from your other devices.": "Re-request encryption keys from your other devices.",
"Undecryptable": "Undecryptable",
+ "Encrypting": "Encrypting",
+ "Encrypted, not sent": "Encrypted, not sent",
"Encrypted by a verified device": "Encrypted by a verified device",
"Encrypted by an unverified device": "Encrypted by an unverified device",
"Unencrypted message": "Unencrypted message",
@@ -333,12 +355,14 @@
"Unban this user?": "Unban this user?",
"Ban this user?": "Ban this user?",
"Failed to ban user": "Failed to ban user",
+ "Demote yourself?": "Demote yourself?",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.",
+ "Demote": "Demote",
"Failed to mute user": "Failed to mute user",
"Failed to toggle moderator status": "Failed to toggle moderator status",
"Failed to change power level": "Failed to change power level",
- "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.",
- "Are you sure?": "Are you sure?",
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.",
+ "Are you sure?": "Are you sure?",
"No devices with registered encryption keys": "No devices with registered encryption keys",
"Devices": "Devices",
"Unignore": "Unignore",
@@ -346,6 +370,7 @@
"Jump to read receipt": "Jump to read receipt",
"Mention": "Mention",
"Invite": "Invite",
+ "Share Link to User": "Share Link to User",
"User Options": "User Options",
"Direct chats": "Direct chats",
"Unmute": "Unmute",
@@ -359,6 +384,14 @@
"Invited": "Invited",
"Filter room members": "Filter room members",
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (power %(powerLevelNumber)s)",
+ "bold": "bold",
+ "italic": "italic",
+ "deleted": "deleted",
+ "underlined": "underlined",
+ "inline-code": "inline-code",
+ "block-quote": "block-quote",
+ "bulleted-list": "bulleted-list",
+ "numbered-list": "numbered-list",
"Attachment": "Attachment",
"At this time it is not possible to reply with a file so this will be sent without being a reply.": "At this time it is not possible to reply with a file so this will be sent without being a reply.",
"Upload Files": "Upload Files",
@@ -383,14 +416,6 @@
"Command error": "Command error",
"Unable to reply": "Unable to reply",
"At this time it is not possible to reply with an emote.": "At this time it is not possible to reply with an emote.",
- "bold": "bold",
- "italic": "italic",
- "strike": "strike",
- "underline": "underline",
- "code": "code",
- "quote": "quote",
- "bullet": "bullet",
- "numbullet": "numbullet",
"Markdown is disabled": "Markdown is disabled",
"Markdown is enabled": "Markdown is enabled",
"Unpin Message": "Unpin Message",
@@ -427,6 +452,7 @@
"Settings": "Settings",
"Forget room": "Forget room",
"Search": "Search",
+ "Share room": "Share room",
"Show panel": "Show panel",
"Drop here to favourite": "Drop here to favourite",
"Drop here to tag direct chat": "Drop here to tag direct chat",
@@ -441,7 +467,9 @@
"People": "People",
"Rooms": "Rooms",
"Low priority": "Low priority",
+ "You have no historical rooms": "You have no historical rooms",
"Historical": "Historical",
+ "System Alerts": "System Alerts",
"Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Unable to ascertain that the address this invite was sent to matches one associated with your account.",
"This invitation was sent to an email address which is not associated with this account:": "This invitation was sent to an email address which is not associated with this account:",
"You may wish to login with a different account, or add this email to this account.": "You may wish to login with a different account, or add this email to this account.",
@@ -490,13 +518,13 @@
"To kick users, you must be a": "To kick users, you must be a",
"To ban users, you must be a": "To ban users, you must be a",
"To remove other users' messages, you must be a": "To remove other users' messages, you must be a",
+ "To notify everyone in the room, you must be a": "To notify everyone in the room, you must be a",
"No users have specific privileges in this room": "No users have specific privileges in this room",
"%(user)s is a %(userRole)s": "%(user)s is a %(userRole)s",
"Privileged Users": "Privileged Users",
"Muted Users": "Muted Users",
"Banned users": "Banned users",
"This room is not accessible by remote Matrix servers": "This room is not accessible by remote Matrix servers",
- "Leave room": "Leave room",
"Favourite": "Favourite",
"Tagged as: ": "Tagged as: ",
"To link to a room it must have an address .": "To link to a room it must have an address .",
@@ -515,7 +543,8 @@
"Members only (since they joined)": "Members only (since they joined)",
"Permissions": "Permissions",
"Advanced": "Advanced",
- "This room's internal ID is": "This room's internal ID is",
+ "Internal room ID: ": "Internal room ID: ",
+ "Room version number: ": "Room version number: ",
"Add a topic": "Add a topic",
"Search…": "Search…",
"This Room": "This Room",
@@ -551,7 +580,9 @@
"You have disabled URL previews by default.": "You have disabled URL previews by default.",
"URL previews are enabled by default for participants in this room.": "URL previews are enabled by default for participants in this room.",
"URL previews are disabled by default for participants in this room.": "URL previews are disabled by default for participants in this room.",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.",
"URL Previews": "URL Previews",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.",
"Sunday": "Sunday",
"Monday": "Monday",
"Tuesday": "Tuesday",
@@ -596,6 +627,10 @@
"Code": "Code",
"Start authentication": "Start authentication",
"powered by Matrix": "powered by Matrix",
+ "The email field must not be blank.": "The email field must not be blank.",
+ "The user name field must not be blank.": "The user name field must not be blank.",
+ "The phone number field must not be blank.": "The phone number field must not be blank.",
+ "The password field must not be blank.": "The password field must not be blank.",
"Username on %(hs)s": "Username on %(hs)s",
"User name": "User name",
"Mobile phone number": "Mobile phone number",
@@ -636,9 +671,9 @@
"Something went wrong when trying to get your communities.": "Something went wrong when trying to get your communities.",
"Display your community flair in rooms configured to show it.": "Display your community flair in rooms configured to show it.",
"You're not currently a member of any communities.": "You're not currently a member of any communities.",
- "Help improve Riot by sending usage data ? This will use a cookie. (See our cookie and privacy policies ).": "Help improve Riot by sending usage data ? This will use a cookie. (See our cookie and privacy policies ).",
- "Help improve Riot by sending usage data? This will use a cookie.": "Help improve Riot by sending usage data? This will use a cookie.",
- "Yes please": "Yes please",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.",
+ "Yes, I want to help!": "Yes, I want to help!",
"You are not receiving desktop notifications": "You are not receiving desktop notifications",
"Enable them now": "Enable them now",
"What's New": "What's New",
@@ -647,6 +682,12 @@
"A new version of Riot is available.": "A new version of Riot is available.",
"To return to your account in future you need to set a password ": "To return to your account in future you need to set a password ",
"Set Password": "Set Password",
+ "Please contact your service administrator to continue using the service.": "Please contact your service administrator to continue using the service.",
+ "This homeserver has hit its Monthly Active User limit.": "This homeserver has hit its Monthly Active User limit.",
+ "This homeserver has exceeded one of its resource limits.": "This homeserver has exceeded one of its resource limits.",
+ "Please contact your service administrator to get this limit increased.": "Please contact your service administrator to get this limit increased.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in .": "This homeserver has hit its Monthly Active User limit so some users will not be able to log in .",
+ "This homeserver has exceeded one of its resource limits so some users will not be able to log in .": "This homeserver has exceeded one of its resource limits so some users will not be able to log in .",
"Error encountered (%(errorDetail)s).": "Error encountered (%(errorDetail)s).",
"Checking for an update...": "Checking for an update...",
"No update available.": "No update available.",
@@ -660,8 +701,11 @@
"Delete Widget": "Delete Widget",
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?",
"Delete widget": "Delete widget",
+ "Failed to remove widget": "Failed to remove widget",
+ "An error ocurred whilst trying to remove the widget from the room": "An error ocurred whilst trying to remove the widget from the room",
"Revoke widget access": "Revoke widget access",
"Minimize apps": "Minimize apps",
+ "Reload widget": "Reload widget",
"Popout widget": "Popout widget",
"Picture": "Picture",
"Edit": "Edit",
@@ -678,7 +722,6 @@
"Uploaded on %(date)s by %(user)s": "Uploaded on %(date)s by %(user)s",
"Download this file": "Download this file",
"Integrations Error": "Integrations Error",
- "Could not connect to the integration server": "Could not connect to the integration server",
"Manage Integrations": "Manage Integrations",
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
"%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)sjoined %(count)s times",
@@ -746,8 +789,8 @@
"Matrix ID": "Matrix ID",
"Matrix Room ID": "Matrix Room ID",
"email address": "email address",
- "Try using one of the following valid address types: %(validTypesList)s.": "Try using one of the following valid address types: %(validTypesList)s.",
"You have entered an invalid address.": "You have entered an invalid address.",
+ "Try using one of the following valid address types: %(validTypesList)s.": "Try using one of the following valid address types: %(validTypesList)s.",
"Preparing to send logs": "Preparing to send logs",
"Logs sent": "Logs sent",
"Thank you!": "Thank you!",
@@ -768,7 +811,7 @@
"Start Chatting": "Start Chatting",
"Confirm Removal": "Confirm Removal",
"Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.",
- "Community IDs cannot not be empty.": "Community IDs cannot not be empty.",
+ "Community IDs cannot be empty.": "Community IDs cannot be empty.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Community IDs may only contain characters a-z, 0-9, or '=_-./'",
"Something went wrong whilst creating your community": "Something went wrong whilst creating your community",
"Create Community": "Create Community",
@@ -854,6 +897,13 @@
"(HTTP status %(httpStatus)s)": "(HTTP status %(httpStatus)s)",
"Please set a password!": "Please set a password!",
"This will allow you to return to your account after signing out, and sign in on other devices.": "This will allow you to return to your account after signing out, and sign in on other devices.",
+ "Share Room": "Share Room",
+ "Link to most recent message": "Link to most recent message",
+ "Share User": "Share User",
+ "Share Community": "Share Community",
+ "Share Room Message": "Share Room Message",
+ "Link to selected message": "Link to selected message",
+ "COPY": "COPY",
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.",
"We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.",
"Room contains unknown devices": "Room contains unknown devices",
@@ -863,6 +913,10 @@
"Public Chat": "Public Chat",
"Custom": "Custom",
"Alias (optional)": "Alias (optional)",
+ "Reject invitation": "Reject invitation",
+ "Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
+ "Unable to reject invite": "Unable to reject invite",
+ "Reject": "Reject",
"You cannot delete this message. (%(code)s)": "You cannot delete this message. (%(code)s)",
"Resend": "Resend",
"Cancel Sending": "Cancel Sending",
@@ -872,7 +926,7 @@
"View Source": "View Source",
"View Decrypted Source": "View Decrypted Source",
"Unhide Preview": "Unhide Preview",
- "Permalink": "Permalink",
+ "Share Message": "Share Message",
"Quote": "Quote",
"Source URL": "Source URL",
"Collapse Reply Thread": "Collapse Reply Thread",
@@ -882,7 +936,6 @@
"Mentions only": "Mentions only",
"Leave": "Leave",
"Forget": "Forget",
- "Reject": "Reject",
"Low Priority": "Low Priority",
"Direct Chat": "Direct Chat",
"View Community": "View Community",
@@ -917,7 +970,6 @@
"Failed to upload image": "Failed to upload image",
"Failed to update community": "Failed to update community",
"Unable to accept invite": "Unable to accept invite",
- "Unable to reject invite": "Unable to reject invite",
"Unable to join community": "Unable to join community",
"Leave Community": "Leave Community",
"Leave %(groupName)s?": "Leave %(groupName)s?",
@@ -943,12 +995,12 @@
"Failed to load %(groupId)s": "Failed to load %(groupId)s",
"Couldn't load home page": "Couldn't load home page",
"Login": "Login",
- "Reject invitation": "Reject invitation",
- "Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
"Failed to reject invitation": "Failed to reject invitation",
"This room is not public. You will not be able to rejoin without an invite.": "This room is not public. You will not be able to rejoin without an invite.",
"Are you sure you want to leave the room '%(roomName)s'?": "Are you sure you want to leave the room '%(roomName)s'?",
"Failed to leave room": "Failed to leave room",
+ "Can't leave Server Notices room": "Can't leave Server Notices room",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "This room is used for important messages from the Homeserver, so you cannot leave it.",
"Signed Out": "Signed Out",
"For security, this session has been signed out. Please sign in again.": "For security, this session has been signed out. Please sign in again.",
"Terms and Conditions": "Terms and Conditions",
@@ -963,8 +1015,6 @@
"Error whilst fetching joined communities": "Error whilst fetching joined communities",
"Create a new community": "Create a new community",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.",
- "Join an existing community": "Join an existing community",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .",
"You have no visible notifications": "You have no visible notifications",
"Members": "Members",
"%(count)s Members|other": "%(count)s Members",
@@ -995,6 +1045,9 @@
"Scroll to bottom of page": "Scroll to bottom of page",
"Message not sent due to unknown devices being present": "Message not sent due to unknown devices being present",
"Show devices , send anyway or cancel .": "Show devices , send anyway or cancel .",
+ "You can't send any messages until you review and agree to our terms and conditions .": "You can't send any messages until you review and agree to our terms and conditions .",
+ "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.",
+ "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.",
"%(count)s of your messages have not been sent.|other": "Some of your messages have not been sent.",
"%(count)s of your messages have not been sent.|one": "Your message was not sent.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Resend all or cancel all now. You can also select individual messages to resend or cancel.",
@@ -1061,6 +1114,8 @@
"Labs": "Labs",
"These are experimental features that may break in unexpected ways": "These are experimental features that may break in unexpected ways",
"Use with caution": "Use with caution",
+ "Lazy loading members not supported": "Lazy loading members not supported",
+ "Lazy loading is not supported by your current homeserver.": "Lazy loading is not supported by your current homeserver.",
"Deactivate my account": "Deactivate my account",
"Clear Cache": "Clear Cache",
"Clear Cache and Reload": "Clear Cache and Reload",
@@ -1073,9 +1128,11 @@
"No media permissions": "No media permissions",
"You may need to manually permit Riot to access your microphone/webcam": "You may need to manually permit Riot to access your microphone/webcam",
"Missing Media Permissions, click here to request.": "Missing Media Permissions, click here to request.",
+ "No Audio Outputs detected": "No Audio Outputs detected",
"No Microphones detected": "No Microphones detected",
"No Webcams detected": "No Webcams detected",
"Default Device": "Default Device",
+ "Audio Output": "Audio Output",
"Microphone": "Microphone",
"Camera": "Camera",
"VoIP": "VoIP",
@@ -1109,6 +1166,7 @@
"Send Reset Email": "Send Reset Email",
"Create an account": "Create an account",
"This Home Server does not support login using email address.": "This Home Server does not support login using email address.",
+ "Please contact your service administrator to continue using this service.": "Please contact your service administrator to continue using this service.",
"Incorrect username and/or password.": "Incorrect username and/or password.",
"Please note you are logging into the %(hs)s server, not matrix.org.": "Please note you are logging into the %(hs)s server, not matrix.org.",
"Guest access is disabled on this Home Server.": "Guest access is disabled on this Home Server.",
@@ -1117,7 +1175,7 @@
"Error: Problem communicating with the given homeserver.": "Error: Problem communicating with the given homeserver.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.",
- "Login as guest": "Login as guest",
+ "Try the app first": "Try the app first",
"Sign in to get started": "Sign in to get started",
"Failed to fetch avatar URL": "Failed to fetch avatar URL",
"Set a display name:": "Set a display name:",
@@ -1131,22 +1189,6 @@
"You need to enter a user name.": "You need to enter a user name.",
"An unknown error occurred.": "An unknown error occurred.",
"I already have an account": "I already have an account",
- "Displays action": "Displays action",
- "Bans user with given id": "Bans user with given id",
- "Unbans user with given id": "Unbans user with given id",
- "Define the power level of a user": "Define the power level of a user",
- "Deops user with given id": "Deops user with given id",
- "Invites user with given id to current room": "Invites user with given id to current room",
- "Joins room with given alias": "Joins room with given alias",
- "Sets the room topic": "Sets the room topic",
- "Kicks user with given id": "Kicks user with given id",
- "Changes your display nickname": "Changes your display nickname",
- "Searches DuckDuckGo for results": "Searches DuckDuckGo for results",
- "Changes colour scheme of current room": "Changes colour scheme of current room",
- "Verifies a user, device, and pubkey tuple": "Verifies a user, device, and pubkey tuple",
- "Ignores a user, hiding their messages from you": "Ignores a user, hiding their messages from you",
- "Stops ignoring a user, showing their messages going forward": "Stops ignoring a user, showing their messages going forward",
- "Opens the Developer Tools dialog": "Opens the Developer Tools dialog",
"Commands": "Commands",
"Results from DuckDuckGo": "Results from DuckDuckGo",
"Emoji": "Emoji",
diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json
index 43e2041020..6f0708f0c2 100644
--- a/src/i18n/strings/en_US.json
+++ b/src/i18n/strings/en_US.json
@@ -135,7 +135,6 @@
"Failed to kick": "Failed to kick",
"Failed to leave room": "Failed to leave room",
"Failed to load timeline position": "Failed to load timeline position",
- "Failed to lookup current room": "Failed to lookup current room",
"Failed to mute user": "Failed to mute user",
"Failed to reject invite": "Failed to reject invite",
"Failed to reject invitation": "Failed to reject invitation",
@@ -209,7 +208,6 @@
"Publish this room to the public in %(domain)s's room directory?": "Publish this room to the public in %(domain)s's room directory?",
"Local addresses for this room:": "Local addresses for this room:",
"Logged in as:": "Logged in as:",
- "Login as guest": "Login as guest",
"Logout": "Logout",
"Low priority": "Low priority",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s made future room history visible to all room members, from the point they are invited.",
@@ -228,7 +226,6 @@
"Mobile phone number": "Mobile phone number",
"Mobile phone number (optional)": "Mobile phone number (optional)",
"Moderator": "Moderator",
- "Must be viewing a room": "Must be viewing a room",
"Mute": "Mute",
"Name": "Name",
"Never send encrypted messages to unverified devices from this device": "Never send encrypted messages to unverified devices from this device",
@@ -816,7 +813,6 @@
"Unable to fetch notification target list": "Unable to fetch notification target list",
"Set Password": "Set Password",
"Enable audible notifications in web client": "Enable audible notifications in web client",
- "Permalink": "Permalink",
"Off": "Off",
"Riot does not know how to join a room on this network": "Riot does not know how to join a room on this network",
"Mentions only": "Mentions only",
diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json
index 68645ffd9c..754751b0fd 100644
--- a/src/i18n/strings/eo.json
+++ b/src/i18n/strings/eo.json
@@ -90,10 +90,8 @@
"You are not in this room.": "Vi ne estas en tiu ĉi ĉambro.",
"You do not have permission to do that in this room.": "Vi ne havas permeson fari tion en tiu ĉi ĉambro.",
"Missing room_id in request": "En peto mankas «room_id»",
- "Must be viewing a room": "Necesas vidi ĉambron",
"Room %(roomId)s not visible": "Ĉambro %(roomId)s ne videblas",
"Missing user_id in request": "En peto mankas «user_id»",
- "Failed to lookup current room": "Malsukcesis trovi nunan ĉambron",
"Usage": "Uzo",
"/ddg is not a command": "/ddg ne estas komando",
"To use it, just wait for autocomplete results to load and tab through them.": "Por uzi ĝin, atendu aperon de sugestaj rezultoj, kaj tabu tra ili.",
@@ -165,7 +163,6 @@
"Authentication check failed: incorrect password?": "Aŭtentiga kontrolo malsukcesis: ĉu pro malĝusta pasvorto?",
"Failed to join room": "Malsukcesis aliĝi al ĉambro",
"Message Pinning": "Fikso de mesaĝoj",
- "Tag Panel": "Etikeda panelo",
"Disable Emoji suggestions while typing": "Malŝalti mienetajn sugestojn dum tajpado",
"Use compact timeline layout": "Uzi densan okazordan aranĝon",
"Hide removed messages": "Kaŝi forigitajn mesaĝojn",
@@ -363,7 +360,7 @@
"Drop here to demote": "Demeti tien ĉi por malpligravigi",
"Drop here to tag %(section)s": "Demeti tien ĉi por marki %(section)s",
"Press to start a chat with someone": "Premu por komenci babilon kun iu",
- "You're not in any rooms yet! Press to make a room or to browse the directory": "Vi ankoraŭ estas en neniuj ĉambroj! Premu por fari ĉambron aŭ por esplori la ĉambrujon",
+ "You're not in any rooms yet! Press to make a room or to browse the directory": "Vi ankoraŭ estas en neniu ĉambro! Premu por krei ĉambron aŭ por esplori la ĉambrujon",
"Community Invites": "Komunumaj invitoj",
"Invites": "Invitoj",
"Favourites": "Ŝatataj",
@@ -661,7 +658,7 @@
"I verify that the keys match": "Mi kontrolas, ke la ŝlosiloj kongruas",
"An error has occurred.": "Eraro okazis.",
"OK": "Bone",
- "You added a new device '%(displayName)s', which is requesting encryption keys.": "Vi aldonis novan aparaton ‹%(displayName)s›, kiu petas ĉifrajn ŝlasilojn.",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Vi aldonis novan aparaton “%(displayName)s”, kiu petas ĉifrajn ŝlosilojn.",
"Your unverified device '%(displayName)s' is requesting encryption keys.": "Via nekontrolita aparato ‹%(displayName)s› petas ĉifrajn ŝlosilojn.",
"Start verification": "Komenci kontrolon",
"Share without verifying": "Kunhavigi sen kontrolo",
@@ -746,8 +743,6 @@
"Error whilst fetching joined communities": "Okazis eraro dum venigado de viaj komunumoj",
"Create a new community": "Krei novan komunumon",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Kreu komunumon por kunigi uzantojn kaj ĉambrojn! Fari propran hejmpaĝon por montri vian spacon en la universo de Matrix.",
- "Join an existing community": "Aliĝi al jama komunumo",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Por aliĝi al jama komunumo, vi devos scii ĝian komunuman identigilon; ĝi aspektas proksimume tiel ĉi: +ekzemplo:matrix.org .",
"You have no visible notifications": "Neniuj videblaj sciigoj",
"Scroll to bottom of page": "Rulumi al susbo de la paĝo",
"Message not sent due to unknown devices being present": "Mesaĝoj ne sendiĝis pro ĉeesto de nekonataj aparatoj",
@@ -862,7 +857,6 @@
"Error: Problem communicating with the given homeserver.": "Eraro: Estas problemo en komunikado kun la hejmservilo.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Hejmservilo ne alkonekteblas per HTTP kun HTTPS URL en via adresbreto. Aŭ uzu HTTPS aŭ ŝaltu malsekurajn skriptojn .",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Ne eblas konekti al hejmservilo – bonvolu kontroli vian konekton, certigi ke la SSL-atestilo de via hejmservilo estas fidata, kaj ke neniu foliumila kromprogramo baras petojn.",
- "Login as guest": "Saluti kiel gasto",
"Sign in to get started": "Komencu per saluto",
"Failed to fetch avatar URL": "Malsukcesis venigi adreson de profilbildo",
"Set a display name:": "Agordi vidigan nomon:",
@@ -1077,7 +1071,6 @@
"Unable to fetch notification target list": "Malsukcesis akiri la liston de celoj por sciigoj",
"Set Password": "Agordi pasvorton",
"Enable audible notifications in web client": "Ŝalti aŭdeblajn sciigojn en la retkliento",
- "Permalink": "Konstanta ligilo",
"Off": "For",
"Riot does not know how to join a room on this network": "Riot ne scias aliĝi al ĉambroj en tiu ĉi reto",
"Mentions only": "Nur mencioj",
@@ -1103,5 +1096,19 @@
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Sencimigaj protokoloj enhavas informojn pri uzo de aplikaĵo, inkluzive vian salutnomon, la identigilojn aŭ nomojn de la ĉambroj aŭ grupoj kiujn vi vizitis, kaj la salutnomojn de aliaj uzantoj. Ili ne enhavas mesaĝojn.",
"Failed to send logs: ": "Malsukcesis sendi protokolon: ",
"Notes:": "Rimarkoj:",
- "Preparing to send logs": "Pretiganta sendon de protokolo"
+ "Preparing to send logs": "Pretiganta sendon de protokolo",
+ "e.g. %(exampleValue)s": "ekz. %(exampleValue)s",
+ "Every page you use in the app": "Ĉiu paĝo kiun vi uzas en la aplikaĵo",
+ "e.g. ": "ekz. ",
+ "Your User Agent": "Via klienta aplikaĵo",
+ "Your device resolution": "La distingivo de via aparato",
+ "Call in Progress": "Voko farata",
+ "A call is already in progress!": "Voko estas jam farata!",
+ "Always show encryption icons": "Ĉiam montri bildetojn de ĉifrado",
+ "Send analytics data": "Sendi statistikajn datumojn",
+ "Key request sent.": "Demando de ŝlosilo sendita.",
+ "Re-request encryption keys from your other devices.": "Redemandi ĉifroŝlosilojn el viaj aliaj aparatoj.",
+ "Encrypting": "Ĉifranta",
+ "Encrypted, not sent": "Ĉifrita, ne sendita",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Se viaj aliaj aparatoj ne havas la ŝlosilon por ĉi tiu mesaĝo, vi ne povos malĉifri ĝin."
}
diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json
index 8e7925ba36..6c2ce3bf11 100644
--- a/src/i18n/strings/es.json
+++ b/src/i18n/strings/es.json
@@ -53,9 +53,9 @@
"Command error": "Error de comando",
"Commands": "Comandos",
"Conference call failed.": "La llamada de conferencia falló.",
- "Conference calling is in development and may not be reliable.": "La llamada en conferencia esta en desarrollo y no podría ser segura.",
- "Conference calls are not supported in encrypted rooms": "Las llamadas en conferencia no son soportadas en salas encriptadas",
- "Conference calls are not supported in this client": "Las llamadas en conferencia no son soportadas en este navegador",
+ "Conference calling is in development and may not be reliable.": "La llamada en conferencia está en desarrollo y puede no ser fiable.",
+ "Conference calls are not supported in encrypted rooms": "Las llamadas en conferencia no son soportadas en salas cifradas",
+ "Conference calls are not supported in this client": "Las llamadas en conferencia no están soportadas en este cliente",
"Confirm password": "Confirmar clave",
"Confirm your new password": "Confirma tu nueva clave",
"Continue": "Continuar",
@@ -108,7 +108,6 @@
"Failed to kick": "Falló al expulsar",
"Failed to leave room": "Falló al dejar la sala",
"Failed to load timeline position": "Falló al cargar el historico",
- "Failed to lookup current room": "Falló al buscar la actual sala",
"Failed to mute user": "Falló al silenciar el usuario",
"Failed to reject invite": "Falló al rechazar invitación",
"Failed to reject invitation": "Falló al rechazar la invitación",
@@ -166,7 +165,6 @@
"%(targetName)s left the room.": "%(targetName)s ha dejado la sala.",
"Local addresses for this room:": "Direcciones locales para esta sala:",
"Logged in as:": "Sesión iniciada como:",
- "Login as guest": "Iniciar sesión como invitado",
"Logout": "Cerrar Sesión",
"Low priority": "Baja prioridad",
"Accept": "Aceptar",
@@ -314,7 +312,6 @@
"Mobile phone number": "Número de teléfono móvil",
"Mobile phone number (optional)": "Número de teléfono móvil (opcional)",
"Moderator": "Moderador",
- "Must be viewing a room": "Debe estar viendo una sala",
"Mute": "Silenciar",
"%(serverName)s Matrix ID": "%(serverName)s ID de Matrix",
"Name": "Nombre",
@@ -382,10 +379,10 @@
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar el tiempo en formato 12h (am/pm)",
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "La clave de firma que usted ha proporcionado coincide con la recibida del dispositivo %(deviceId)s de %(userId)s. Dispositivo verificado.",
"This email address is already in use": "Dirección e-mail en uso",
- "This email address was not found": "Dirección e-mail no encontrada",
+ "This email address was not found": "Esta dirección de correo electrónico no se encontró",
"The email address linked to your account must be entered.": "Debe introducir el e-mail asociado a su cuenta.",
- "The file '%(fileName)s' exceeds this home server's size limit for uploads": "El fichero '%(fileName)s' excede el tamaño máximo permitido en este servidor",
- "The file '%(fileName)s' failed to upload": "Se produjo un fallo al enviar '%(fileName)s'",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "El fichero '%(fileName)s' supera el tamaño máximo permitido en este servidor",
+ "The file '%(fileName)s' failed to upload": "No se pudo subir '%(fileName)s'",
"The remote side failed to pick up": "El sitio remoto falló al sincronizar",
"This Home Server does not support login using email address.": "Este servidor no permite identificarse con direcciones e-mail.",
"This invitation was sent to an email address which is not associated with this account:": "Se envió la invitación a un e-mail no asociado con esta cuenta:",
@@ -485,7 +482,7 @@
"Who can access this room?": "¿Quién puede acceder a esta sala?",
"Who can read history?": "¿Quién puede leer el historial?",
"Who would you like to add to this room?": "¿A quién quiere añadir a esta sala?",
- "Who would you like to communicate with?": "¿Con quién quiere comunicar?",
+ "Who would you like to communicate with?": "¿Con quién quiere comunicarse?",
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s ha retirado la invitación de %(targetName)s.",
"Would you like to accept or decline this invitation?": "¿Quiere aceptar o rechazar esta invitación?",
"You already have existing direct chats with this user:": "Ya tiene chats directos con este usuario:",
@@ -512,7 +509,7 @@
"Unrecognised room alias:": "alias de sala no reconocido:",
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nivel de permisos %(powerLevelNumber)s)",
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "Atención: VERIFICACIÓN DE CLAVE FALLO\" La clave de firma para %(userId)s y el dispositivo %(deviceId)s es \"%(fprint)s\" la cual no concuerda con la clave provista por \"%(fingerprint)s\". Esto puede significar que sus comunicaciones están siendo interceptadas!",
- "You cannot place VoIP calls in this browser.": "no puede realizar llamadas de voz en este navegador.",
+ "You cannot place VoIP calls in this browser.": "No puede realizar llamadas VoIP en este navegador.",
"You do not have permission to post to this room": "no tiene permiso para publicar en esta sala",
"You have been banned from %(roomName)s by %(userName)s.": "Ha sido expulsado de %(roomName)s por %(userName)s.",
"You have been invited to join this room by %(inviterName)s": "Ha sido invitado a entrar a esta sala por %(inviterName)s",
@@ -526,7 +523,7 @@
"You need to be able to invite users to do that.": "Usted debe ser capaz de invitar usuarios para hacer eso.",
"You need to be logged in.": "Necesita estar autenticado.",
"You need to enter a user name.": "Tiene que ingresar un nombre de usuario.",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Su e-mail parece no estar asociado con una Id Matrix en este Homeserver.",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Su correo electrónico parece no estar asociado con una ID de Matrix en este Homeserver.",
"Your password has been reset": "Su contraseña ha sido restablecida",
"Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "Su contraseña a sido cambiada exitosamente. No recibirá notificaciones en otros dispositivos hasta que ingrese de nuevo en ellos",
"You seem to be in a call, are you sure you want to quit?": "Parece estar en medio de una llamada, ¿esta seguro que desea salir?",
@@ -548,7 +545,7 @@
"May": "May",
"Jun": "Jun",
"Jul": "Jul",
- "Aug": "August",
+ "Aug": "Ago",
"Add rooms to this community": "Agregar salas a esta comunidad",
"Call Failed": "La llamada falló",
"Review Devices": "Revisar Dispositivos",
@@ -568,14 +565,14 @@
"The version of Riot.im": "La versión de Riot.im",
"Whether or not you're logged in (we don't record your user name)": "Estés identificado o no (no almacenamos tu nombre de usuario)",
"Your language of choice": "El idioma que has elegido",
- "Your homeserver's URL": "La URL de tu homeserver",
+ "Your homeserver's URL": "La URL de tu servidor",
"Your identity server's URL": "La URL de tu servidor de identidad",
"The information being sent to us to help make Riot.im better includes:": "La información remitida a nosotros para ayudar a mejorar Riot.im incluye:",
"Drop here to demote": "Suelta aquí para degradar",
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Estés o no usando el modo Richtext del Editor de Texto Enriquecido",
"Who would you like to add to this community?": "¿A quién deseas añadir a esta comunidad?",
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Aviso: cualquier persona que añadas a una comunidad será públicamente visible a cualquiera que conozca el ID de la comunidad",
- "Invite new community members": "Invita nuevos miembros de la comunidad",
+ "Invite new community members": "Invita nuevos miembros a la comunidad",
"Name or matrix ID": "Nombre o ID de matrix",
"Invite to Community": "Invitar a la comunidad",
"Which rooms would you like to add to this community?": "¿Qué salas deseas añadir a esta comunidad?",
@@ -717,7 +714,6 @@
"Riot does not know how to join a room on this network": "Riot no sabe cómo unirse a una sala en esta red",
"Set Password": "Establecer contraseña",
"Enable audible notifications in web client": "Habilitar notificaciones audibles en el cliente web",
- "Permalink": "Enlace permanente",
"Off": "Apagado",
"#example": "#ejemplo",
"Mentions only": "Sólo menciones",
@@ -740,5 +736,485 @@
"Collapse panel": "Colapsar panel",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "En su navegador actual, la apariencia y comportamiento de la aplicación puede ser completamente incorrecta, y algunas de las características podrían no funcionar. Si aún desea probarlo puede continuar, pero ¡no podremos ofrecer soporte por cualquier problema que pudiese tener!",
"Checking for an update...": "Comprobando actualizaciones...",
- "There are advanced notifications which are not shown here": "Hay notificaciones avanzadas que no se muestran aquí"
+ "There are advanced notifications which are not shown here": "Hay notificaciones avanzadas que no se muestran aquí",
+ "Every page you use in the app": "Todas las páginas que usas en la aplicación",
+ "Your User Agent": "Tu Agente de Usuario",
+ "Your device resolution": "La resolución de tu dispositivo",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Hay dispositivos desconocidos en esta sala: si procede sin verificarlos, será posible que alguien escuche su llamada.",
+ "Which officially provided instance you are using, if any": "Cuál instancia ofrecida oficialmente está usando, si existe",
+ "e.g. %(exampleValue)s": "e.g %(exampleValue)s",
+ "e.g. ": "e.g. ",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Donde esta página incluye información identificable, como sala, usuario o ID del grupo, esa información se elimina antes de enviarla al servidor.",
+ "A conference call could not be started because the intgrations server is not available": "No se pudo iniciar una llamada de conferencia porque el servidor de integraciones no está disponible",
+ "Call in Progress": "Llamada en Curso",
+ "A call is currently being placed!": "¡Se está realizando una llamada en este momento!",
+ "A call is already in progress!": "¡Ya hay una llamada en curso!",
+ "Permission Required": "Permiso Requerido",
+ "You do not have permission to start a conference call in this room": "No tiene permiso para comenzar una llamada de conferencia en esta sala",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
+ "Show these rooms to non-members on the community page and room list?": "¿Mostrar estas salas a personas no registradas en la página de la comunidad y la lista de salas?",
+ "Add rooms to the community": "Agregar salas a la comunidad",
+ "Room name or alias": "Nombre o alias de la sala",
+ "Add to community": "Agregar a comunidad",
+ "Failed to invite the following users to %(groupId)s:": "No se pudo invitar a los usuarios siguientes a %(groupId)s:",
+ "Failed to invite users to community": "Falló la invitación de usuarios a la comunidad",
+ "Failed to invite users to %(groupId)s": "Falló la invitación de usuarios a %(groupId)s",
+ "Failed to add the following rooms to %(groupId)s:": "Falló la a agregación de las salas siguientes a %(groupId)s:",
+ "Restricted": "Restringido",
+ "Missing roomId.": "Id de sala ausente.",
+ "Ignores a user, hiding their messages from you": "Ignora a un usuario, ocultando sus mensajes",
+ "Ignored user": "Usuario ignorado",
+ "You are now ignoring %(userId)s": "Ahora está ignorando a %(userId)s",
+ "Stops ignoring a user, showing their messages going forward": "Deja de ignorar a un usuario, mostrando en adelante sus mensajes",
+ "Unignored user": "Usuario no ignorado",
+ "You are no longer ignoring %(userId)s": "Ya no está ignorando a %(userId)s",
+ "Opens the Developer Tools dialog": "Abre el diálogo de Herramientas de Desarrollador",
+ "Verifies a user, device, and pubkey tuple": "Verifica a un usuario, dispositivo, y tupla de clave pública",
+ "%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s cambió su nombre visible a %(displayName)s.",
+ "%(senderName)s changed the pinned messages for the room.": "%(senderName)s cambió los mensajes con chincheta en la sala.",
+ "%(widgetName)s widget modified by %(senderName)s": "el widget %(widgetName)s fue modificado por %(senderName)s",
+ "%(widgetName)s widget added by %(senderName)s": "el widget %(widgetName)s fue agregado por %(senderName)s",
+ "%(widgetName)s widget removed by %(senderName)s": "el %(widgetName)s fue eliminado por %(senderName)s",
+ "%(names)s and %(count)s others are typing|other": "%(names)s y otros %(count)s están escribiendo",
+ "%(names)s and %(count)s others are typing|one": "%(names)s y uno más están escribiendo",
+ "Your browser does not support the required cryptography extensions": "Su navegador no soporta las extensiones de criptografía requeridas",
+ "Not a valid Riot keyfile": "No es un archivo de claves de Riot válido",
+ "Message Pinning": "Mensajes con chincheta",
+ "Jitsi Conference Calling": "Llamadas de conferencia Jitsi",
+ "Disable Emoji suggestions while typing": "Desactivar sugerencias de Emoji mientras escribe",
+ "Hide avatar changes": "Ocultar cambios del avatar",
+ "Hide display name changes": "Ocultar cambios del nombre visible",
+ "Always show encryption icons": "Mostrar siempre iconos de cifrado",
+ "Hide avatars in user and room mentions": "Ocultar avatares en las menciones de usuarios y salas",
+ "Disable big emoji in chat": "Desactivar emoji grande en la conversación",
+ "Automatically replace plain text Emoji": "Sustituir automáticamente Emojis de texto",
+ "Mirror local video feed": "Clonar transmisión de video local",
+ "Disable Community Filter Panel": "Desactivar Panel de Filtro de la Comunidad",
+ "Disable Peer-to-Peer for 1:1 calls": "Desactivar pares para llamadas 1:1",
+ "Send analytics data": "Enviar información de estadísticas",
+ "Enable inline URL previews by default": "Activar vistas previas de las URLs por defecto",
+ "Enable URL previews for this room (only affects you)": "Activar vista previa de URL en esta sala (sólo le afecta a ud.)",
+ "Enable URL previews by default for participants in this room": "Activar vista previa de URL por defecto para los participantes en esta sala",
+ "Enable widget screenshots on supported widgets": "Activar capturas de pantalla de widget en los widgets soportados",
+ "Show empty room list headings": "Mostrar encabezados de listas de sala vacíos",
+ "Delete %(count)s devices|other": "Borrar %(count)s dispositivos",
+ "Delete %(count)s devices|one": "Borrar dispositivo",
+ "Select devices": "Seleccionar dispositivos",
+ "Drop file here to upload": "Soltar aquí el fichero a subir",
+ " (unsupported)": " (no soportado)",
+ "Ongoing conference call%(supportedText)s.": "Llamada de conferencia en curso%(supportedText)s",
+ "This event could not be displayed": "No se pudo mostrar este evento",
+ "%(senderName)s sent an image": "%(senderName)s envió una imagen",
+ "%(senderName)s sent a video": "%(senderName)s envió un video",
+ "%(senderName)s uploaded a file": "%(senderName)s subió un fichero",
+ "Your key share request has been sent - please check your other devices for key share requests.": "Se envió su solicitud para compartir la clave - por favor, compruebe sus otros dispositivos para solicitudes de compartir clave.",
+ "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "Las solicitudes para compartir la clave se envían a sus otros dispositivos automáticamente. Si rechazó o descartó la solicitud en sus otros dispositivos, pulse aquí para solicitar otra vez las claves durante esta sesión.",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Si sus otros dispositivos no tienen la clave para este mensaje no podrá descifrarlos.",
+ "Key request sent.": "Solicitud de clave enviada.",
+ "Re-request encryption keys from your other devices.": "Volver a solicitar claves de cifrado de sus otros dispositivos.",
+ "Encrypting": "Cifrando",
+ "Encrypted, not sent": "Cifrado, no enviado",
+ "Disinvite this user?": "¿Dejar de invitar a este usuario?",
+ "Kick this user?": "¿Echar a este usuario?",
+ "Unban this user?": "¿Dejar de bloquear a este usuario?",
+ "Ban this user?": "¿Proscribir a este usuario?",
+ "Demote yourself?": "¿Degradarse a ud mismo?",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "No podrá deshacer este cambio ya que está degradándose a usted mismo, si es el usuario con menos privilegios de la sala le resultará imposible recuperarlos.",
+ "Demote": "Degradar",
+ "Unignore": "Dejar de ignorar",
+ "Ignore": "Ignorar",
+ "Jump to read receipt": "Saltar a recibo leído",
+ "Mention": "Mención",
+ "Invite": "Invitar",
+ "Share Link to User": "Compartir Enlace con Usuario",
+ "User Options": "Opciones de Usuario",
+ "Make Moderator": "Convertir en Moderador",
+ "bold": "negrita",
+ "italic": "cursiva",
+ "deleted": "borrado",
+ "underlined": "subrayado",
+ "inline-code": "código en línea",
+ "block-quote": "cita extensa",
+ "bulleted-list": "lista con viñetas",
+ "numbered-list": "lista numerada",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "En este momento no es posible responder con un fichero así que esto se enviará sin que sea una respuesta.",
+ "Send an encrypted reply…": "Enviar una respuesta cifrada…",
+ "Send a reply (unencrypted)…": "Enviar una respuesta (sin cifrar)…",
+ "Send an encrypted message…": "Enviar un mensaje cifrado…",
+ "Send a message (unencrypted)…": "Enviar un mensaje (sin cifrar)…",
+ "Unable to reply": "No se pudo responder",
+ "At this time it is not possible to reply with an emote.": "En este momento no es posible responder con un emoticono.",
+ "Jump to message": "Ir a mensaje",
+ "No pinned messages.": "No hay mensajes con chincheta.",
+ "Loading...": "Cargando...",
+ "Pinned Messages": "Mensajes con chincheta",
+ "%(duration)ss": "%(duration)ss",
+ "%(duration)sm": "%(duration)sm",
+ "%(duration)sh": "%(duration)sh",
+ "%(duration)sd": "%(duration)sd",
+ "Online for %(duration)s": "En línea para %(duration)s",
+ "Idle for %(duration)s": "En reposo durante %(duration)s",
+ "Offline for %(duration)s": "Desconectado durante %(duration)s",
+ "Unknown for %(duration)s": "Desconocido durante %(duration)s",
+ "Idle": "En reposo",
+ "Offline": "Desconectado",
+ "Unknown": "Desconocido",
+ "Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "Visto por %(displayName)s %(userName)s a las %(dateTime)s",
+ "Replying": "Respondiendo",
+ "(~%(count)s results)|other": "(~%(count)s resultados)",
+ "(~%(count)s results)|one": "(~%(count)s resultado)",
+ "Remove avatar": "Eliminar avatar",
+ "Share room": "Compartir sala",
+ "Drop here to favourite": "Soltar aquí para agregar a favoritos",
+ "Drop here to tag direct chat": "Soltar aquí para etiquetar la conversación",
+ "Drop here to restore": "Soltar aquí para restaurar",
+ "Community Invites": "Invitaciones a comunidades",
+ "You have no historical rooms": "No tiene salas en su historial",
+ "You have been kicked from this room by %(userName)s.": "Ha sido echado de esta sala por %(userName)s.",
+ "You have been banned from this room by %(userName)s.": "Ha sido proscrito de esta sala por %(userName)s.",
+ "You are trying to access a room.": "Está intentando acceder a una sala.",
+ "To change the room's avatar, you must be a": "Para cambiar el avatar de la sala, debe ser un",
+ "To change the room's name, you must be a": "Para cambiar el nombre de la sala, debe ser un",
+ "To change the room's main address, you must be a": "Para cambiar la dirección principal de la sala, debe ser un",
+ "To change the room's history visibility, you must be a": "Para cambiar la visibilidad del historial de la sala, debe ser un",
+ "To change the permissions in the room, you must be a": "Para cambiar los permisos de la sala, debe ser un",
+ "To change the topic, you must be a": "Para cambiar el tema, debe ser un",
+ "To modify widgets in the room, you must be a": "Para modificar los widgets de la sala, debe ser un",
+ "Banned by %(displayName)s": "Proscrito por %(displayName)s",
+ "To send messages, you must be a": "Para cambiar mensajes, debe ser un",
+ "To invite users into the room, you must be a": "Para cambiar usuarios a la sala, debe ser un",
+ "To configure the room, you must be a": "Para configurar la sala, debe ser un",
+ "To kick users, you must be a": "Para echar a usuarios, debe ser un",
+ "To ban users, you must be a": "Para proscribir a usuarios, debe ser un",
+ "To remove other users' messages, you must be a": "Para eliminar los mensajes de otros usuarios, debe ser un",
+ "To notify everyone in the room, you must be a": "Para notificar a todos en la sala, debe ser un",
+ "%(user)s is a %(userRole)s": "%(user)s es un %(userRole)s",
+ "Muted Users": "Usuarios Silenciados",
+ "To send events of type , you must be a": "Para enviar eventos del tipo , debe ser un",
+ "Members only (since the point in time of selecting this option)": "Sólo miembros (desde el instante desde que se selecciona esta opción)",
+ "Members only (since they were invited)": "Sólo miembros (desde que fueron invitados)",
+ "Members only (since they joined)": "Sólo miembros (desde que se unieron)",
+ "You don't currently have any stickerpacks enabled": "En este momento no tiene pegatinas activadas",
+ "Add a stickerpack": "Añadir un lote de pegatinas",
+ "Stickerpack": "Lote de pegatinas",
+ "Hide Stickers": "Ocultar pegatinas",
+ "Show Stickers": "Mostrar pegatinas",
+ "Addresses": "Direcciones",
+ "Invalid community ID": "ID de comunidad no válido",
+ "'%(groupId)s' is not a valid community ID": "'%(groupId)s' no es un ID de comunidad válido",
+ "Flair": "Insignia",
+ "Showing flair for these communities:": "Mostrar insignias de estas comunidades:",
+ "This room is not showing flair for any communities": "Esta sala no está mostrando las insignias de las comunidades",
+ "New community ID (e.g. +foo:%(localDomain)s)": "Nuevo ID de comunidad (e.g. +foo:%(localDomain)s)",
+ "URL previews are enabled by default for participants in this room.": "La vista previa de URL se activa por defecto en los participantes de esta sala.",
+ "URL previews are disabled by default for participants in this room.": "La vista previa se desactiva por defecto para los participantes de esta sala.",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "En salas cifradas, como ésta, la vista previa de la URL se desactivan por defecto para asegurar que el homeserver (donde se generan) no puede recopilar información de los enlaces que vea en esta sala.",
+ "URL Previews": "Vista previa de URL",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Cuando alguien pone una URL en su mensaje, una vista previa se mostrará para ofrecer información sobre el enlace, tal como título, descripción, y una imagen del sitio Web.",
+ "Error decrypting audio": "Error al descifrar el sonido",
+ "Error decrypting image": "Error al descifrar imagen",
+ "Error decrypting video": "Error al descifrar video",
+ "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s cambió el avatar para %(roomName)s",
+ "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s eliminó el avatar de la sala.",
+ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s cambió el avatar de la sala a ",
+ "Copied!": "¡Copiado!",
+ "Failed to copy": "Falló la copia",
+ "Add an Integration": "Añadir una Integración",
+ "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Está a punto de ir a un sitio de terceros de modo que pueda autenticar su cuenta para usarla con %(integrationsUrl)s. ¿Desea continuar?",
+ "Removed or unknown message type": "Tipo de mensaje desconocido o eliminado",
+ "Message removed by %(userId)s": "Mensaje eliminado por %(userId)s",
+ "Message removed": "Mensaje eliminado",
+ "Robot check is currently unavailable on desktop - please use a web browser ": "La comprobación de robot no está actualmente disponible en escritorio - por favor, use un navegador Web ",
+ "This Home Server would like to make sure you are not a robot": "A este Home Server le gustaría asegurarse de que no es un robot",
+ "Sign in with CAS": "Ingresar con CAS",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Puede usar las opciones personalizadas del servidor para ingresar en otros servidores de Matrix especificando una URL del Home server diferente.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Esto le permite usar esta aplicación con una cuenta de Matrix ya existente en un home server diferente.",
+ "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Puede también usar un servidor de identidad personalizado, pero esto habitualmente evitará la interacción con usuarios mediante dirección de correo electrónico.",
+ "An email has been sent to %(emailAddress)s": "Se envió un correo electrónico a %(emailAddress)s",
+ "Please check your email to continue registration.": "Por favor compruebe su correo electrónico para continuar con el registro.",
+ "Token incorrect": "Token incorrecto",
+ "A text message has been sent to %(msisdn)s": "Se envió un mensaje de texto a %(msisdn)s",
+ "Please enter the code it contains:": "Por favor introduzca el código que contiene:",
+ "Code": "Código",
+ "The email field must not be blank.": "El campo de correo electrónico no debe estar en blanco.",
+ "The user name field must not be blank.": "El campo de nombre de usuario no debe estar en blanco.",
+ "The phone number field must not be blank.": "El campo de número de teléfono no debe estar en blanco.",
+ "The password field must not be blank.": "El campo de contraseña no debe estar en blanco.",
+ "Username on %(hs)s": "Nombre de usuario en %(hs)s",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Si no indica una dirección de correo electrónico, no podrá reiniciar su contraseña. ¿Está seguro?",
+ "You are registering with %(SelectedTeamName)s": "Está registrándose con %(SelectedTeamName)s",
+ "Default server": "Servidor por defecto",
+ "Custom server": "Servidor personalizado",
+ "Home server URL": "URL del Home server",
+ "Identity server URL": "URL del servidor de Identidad",
+ "What does this mean?": "¿Qué significa esto?",
+ "Remove from community": "Eliminar de la comunidad",
+ "Disinvite this user from community?": "¿Quitar como invitado a este usuario de la comunidad?",
+ "Remove this user from community?": "¿Eliminar a este usuario de la comunidad?",
+ "Failed to withdraw invitation": "Falló la retirada de la invitación",
+ "Failed to remove user from community": "Falló la eliminación de este usuario de la comunidad",
+ "Filter community members": "Filtrar miembros de la comunidad",
+ "Flair will appear if enabled in room settings": "La insignia aparecerá si se activa en la configuración de la sala",
+ "Flair will not appear": "La insignia no aparecerá",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "¿Está seguro de querer eliminar '%(roomName)s' de %(groupId)s?",
+ "Removing a room from the community will also remove it from the community page.": "Al eliminar una sala de la comunidad también se eliminará de su página.",
+ "Failed to remove room from community": "Falló la eliminación de la sala de la comunidad",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "Falló la eliminación de '%(roomName)s' de %(groupId)s",
+ "The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "La visibilidad de '%(roomName)s' en %(groupId)s no se pudo actualizar.",
+ "Visibility in Room List": "Visibilidad en la Lista de Salas",
+ "Visible to everyone": "Visible a todo el mundo",
+ "Only visible to community members": "Sólo visible a los miembros de la comunidad",
+ "Filter community rooms": "Filtrar salas de la comunidad",
+ "Something went wrong when trying to get your communities.": "Algo fue mal cuando se intentó obtener sus comunidades.",
+ "Display your community flair in rooms configured to show it.": "Muestra la insignia de su comunidad en las salas configuradas a tal efecto.",
+ "You're not currently a member of any communities.": "Actualmente no es miembro de una comunidad.",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Por favor, ayude a mejorar Riot.im enviando información anónima de uso . Esto usará una cookie (por favor, vea nuestra Política de cookies ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Por favor, ayude a mejorar Riot.im enviando información anónima de uso . Esto usará una cookie.",
+ "Yes, I want to help!": "¡Sí, quiero ayudar!",
+ "Unknown Address": "Dirección desconocida",
+ "Warning: This widget might use cookies.": "Advertencia: Este widget puede usar cookies.",
+ "Delete Widget": "Borrar widget",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Al borrar un widget se elimina para todos usuarios de la sala. ¿Está seguro?",
+ "Failed to remove widget": "Falló la eliminación del widget",
+ "An error ocurred whilst trying to remove the widget from the room": "Ocurrió un error mientras se intentaba eliminar el widget de la sala",
+ "Minimize apps": "Minimizar apps",
+ "Reload widget": "Recargar widget",
+ "Popout widget": "Widget en ventana externa",
+ "Picture": "Fotografía",
+ "Unblacklist": "Lista de no bloqueados",
+ "Blacklist": "Lista negra",
+ "Unverify": "No verificar",
+ "Verify...": "Verificar...",
+ "Communities": "Comunidades",
+ "%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
+ "%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s se unieron %(count)s veces",
+ "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s se unieron",
+ "%(oneUser)sjoined %(count)s times|other": "%(oneUser)s se unió %(count)s veces",
+ "%(oneUser)sjoined %(count)s times|one": "%(oneUser)s se unió",
+ "%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s se fueron %(count)s veces",
+ "%(severalUsers)sleft %(count)s times|one": "%(severalUsers)s se fueron",
+ "%(oneUser)sleft %(count)s times|other": "%(oneUser)s se fue %(count)s veces",
+ "%(oneUser)sleft %(count)s times|one": "%(oneUser)s se fue",
+ "%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)s se unieron y fueron %(count)s veces",
+ "%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)s se unieron y fueron",
+ "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)s se unió y fue %(count)s veces",
+ "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s se unió y fue",
+ "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s se fue y volvió a unirse %(count)s veces",
+ "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s se fue y volvió a unirse",
+ "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s se fue y volvió a unirse %(count)s veces",
+ "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s se fue y volvió a unirse",
+ "%(severalUsers)srejected their invitations %(count)s times|other": "%(severalUsers)s rechazó sus invitaciones %(count)s veces",
+ "%(severalUsers)srejected their invitations %(count)s times|one": "%(severalUsers)s rechazó sus invitaciones",
+ "%(oneUser)srejected their invitation %(count)s times|other": "%(oneUser)s rechazó su invitación %(count)s veces",
+ "%(oneUser)srejected their invitation %(count)s times|one": "%(oneUser)s rechazó su invitación",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|other": "%(severalUsers)s se les retiraron sus invitaciones %(count)s veces",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|one": "%(severalUsers)s se les retiraron sus invitaciones",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|other": "%(oneUser)s se le retiró su invitación %(count)s veces",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|one": "%(oneUser)s se les retiraron sus invitaciones",
+ "were invited %(count)s times|other": "se les invitó %(count)s veces",
+ "were invited %(count)s times|one": "se les invitó",
+ "was invited %(count)s times|other": "fue invitado %(count)s veces",
+ "was invited %(count)s times|one": "fue invitado",
+ "were banned %(count)s times|other": "fue proscrito %(count)s veces",
+ "were banned %(count)s times|one": "fueron proscritos",
+ "was banned %(count)s times|other": "fue proscrito %(count)s veces",
+ "was banned %(count)s times|one": "fue proscrito",
+ "were unbanned %(count)s times|other": "fueron proscritos %(count)s veces",
+ "were unbanned %(count)s times|one": "dejaron de ser proscritos",
+ "was unbanned %(count)s times|other": "dejaron de ser proscritos %(count)s veces",
+ "was unbanned %(count)s times|one": "dejó de ser proscrito",
+ "were kicked %(count)s times|other": "fueron echados %(count)s veces",
+ "were kicked %(count)s times|one": "fueron echados",
+ "was kicked %(count)s times|other": "fue echado %(count)s veces",
+ "was kicked %(count)s times|one": "fue echado",
+ "%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)s cambiaron su nombre %(count)s veces",
+ "%(severalUsers)schanged their name %(count)s times|one": "%(severalUsers)s cambiaron su nombre",
+ "%(oneUser)schanged their name %(count)s times|other": "%(oneUser)s cambió su nombre %(count)s veces",
+ "%(oneUser)schanged their name %(count)s times|one": "%(oneUser)s cambió su nombre",
+ "%(severalUsers)schanged their avatar %(count)s times|other": "%(severalUsers)s cambió su avatar %(count)s veces",
+ "%(severalUsers)schanged their avatar %(count)s times|one": "%(severalUsers)s cambiaron su avatar",
+ "%(oneUser)schanged their avatar %(count)s times|other": "%(oneUser)s cambió su avatar %(count)s veces",
+ "%(oneUser)schanged their avatar %(count)s times|one": "%(oneUser)s cambió su avatar",
+ "%(items)s and %(count)s others|other": "%(items)s y otros %(count)s",
+ "%(items)s and %(count)s others|one": "%(items)s y otro más",
+ "collapse": "colapsar",
+ "expand": "expandir",
+ "Custom of %(powerLevel)s": "Personalizado de %(powerLevel)s",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "No se pudo cargar el evento al que se respondió, bien porque no existe o no tiene permiso para verlo.",
+ "In reply to ": "En respuesta a ",
+ "And %(count)s more...|other": "Y %(count)s más...",
+ "ex. @bob:example.com": "ej. @bob:ejemplo.com",
+ "Add User": "Agregar Usuario",
+ "Matrix ID": "ID de Matrix",
+ "Matrix Room ID": "ID de Sala de Matrix",
+ "email address": "dirección de correo electrónico",
+ "You have entered an invalid address.": "No ha introducido una dirección correcta.",
+ "Try using one of the following valid address types: %(validTypesList)s.": "Intente usar uno de los tipos de direcciones válidos: %(validTypesList)s.",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Los fallos de Riot se rastrean en GitHun: crear un suceso en GitHub .",
+ "Start chatting": "Comenzar conversación",
+ "Click on the button below to start chatting!": "Pulsar en el botón inferior para comenzar a conversar",
+ "Start Chatting": "Comenzar Conversación",
+ "Confirm Removal": "Confirmar Eliminación",
+ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "¿Está seguro de querer eliminar (borrar) este evento? Tenga en cuenta que si borra el nombre de una sala o cambia el tema, podría deshacer el cambio.",
+ "Community IDs cannot be empty.": "Los IDs de comunidad no pueden estar vacíos.",
+ "Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Los IDs de comunidad sólo pueden contener caracteres a-z, 0-9, ó '=_-./'",
+ "Something went wrong whilst creating your community": "Algo fue mal mientras se creaba la comunidad",
+ "Create Community": "Crear Comunidad",
+ "Community Name": "Nombre de la Comunidad",
+ "Example": "Ejemplo",
+ "Community ID": "ID de la Comunidad",
+ "example": "ejemplo",
+ "Create": "Crear",
+ "Advanced options": "Opciones avanzadas",
+ "Block users on other matrix homeservers from joining this room": "Impedir que usuarios de otros homeservers se unan a esta sala",
+ "This setting cannot be changed later!": "Este ajuste no se puede cambiar posteriormente",
+ "Failed to indicate account erasure": "Falló la indicación de eliminado de la cuenta",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Una vez realizada esta acción, la cuenta no será posible utilizarla de forma permanente. No podrá ingresar con ella, y nadie será capaz de volver a registrar el mismo ID de usuario. También abandonará todas las salas en las que participaba,y eliminará los detalles del servidor de identidad. Esta acción es irreversible. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "La desactivación de su cuenta no supone por defecto que los mensajes enviados se olviden. Si así lo desea, por favor, active la caja de selección inferior.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "La visibilidad de los mensajes en la red es similar al correo electrónico. El olvido de los mismos implica que los mensajes que haya enviado no se compartirán con ningún usuario nuevo o no registrado, pero aquellos usuarios registrados que ya tenían acceso a los mensajes seguirán teniendo acceso a su copia.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Por favor, olvide todos los mensajes enviados cuando se desactive mi cuenta. (Advertencia: esto provocará que los usuarios futuros vean conversaciones incompletas)",
+ "To continue, please enter your password:": "Para continuar, por favor introduzca su contraseña:",
+ "password": "contraseña",
+ "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "Para verificar que este dispositivo es de confianza, por favor, contacte con su propietario usando otros medios (e.g. en persona o por llamada telefónica) y pregúnteles si la clave que ven su Configuración de Usuario para este dispositivo concuerda con la inferior:",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Si son la misma, presione el botón inferior de verificar. Si no lo son, entonces alguien más está interceptando este dispositivo y probablemente quiera presionar el botón de lista negra en su lugar.",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Agregó un dispositivo nuevo '%(displayName)s', el cual está solicitando claves de cifrado.",
+ "Your unverified device '%(displayName)s' is requesting encryption keys.": "Su dispositivo sin verificar '%(displayName)s' está solicitando claves de cifrado.",
+ "Loading device info...": "Cargando información del dispositivo...",
+ "Encryption key request": "Solicitud de clave de cifrado",
+ "Log out and remove encryption keys?": "¿Salir y eliminar claves de cifrado?",
+ "Clear Storage and Sign Out": "Limpiar Almacenamiento y Desconectar",
+ "Send Logs": "Enviar Registros",
+ "Refresh": "Refrescar",
+ "We encountered an error trying to restore your previous session.": "Encontramos un error al intentar restaurar su sesión anterior.",
+ "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Si ha usado anteriormente una versión más reciente de Riot, su sesión puede ser incompatible con ésta. Cierre la ventana y vuelva a la versión más reciente.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Limpiando el almacenamiento del navegador puede arreglar el problema, pero le desconectará y cualquier historial de conversación cifrado se volverá ilegible.",
+ "User names may only contain letters, numbers, dots, hyphens and underscores.": "Los nombres de usuario pueden contener letras, números, punto, guiones y subrayado.",
+ "Username not available": "Nombre de usuario no disponible",
+ "An error occurred: %(error_string)s": "Ocurrió un error: %(error_string)s",
+ "Username available": "Nombre de usuario disponible",
+ "This will be your account name on the homeserver, or you can pick a different server .": "Este será el nombre de su cuenta en el homeserver, o puede elegir un servidor diferente .",
+ "If you already have a Matrix account you can log in instead.": "Si ya tiene una cuenta de Matrix puede conectarse: log in .",
+ "Share Room": "Compartir Sala",
+ "Link to most recent message": "Enlazar a mensaje más reciente",
+ "Share User": "Compartir Usuario",
+ "Share Community": "Compartir Comunidad",
+ "Share Room Message": "Compartir Mensaje de Sala",
+ "Link to selected message": "Enlazar a mensaje seleccionado",
+ "COPY": "COPIAR",
+ "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Está actualmente poniendo en lista negra dispositivos no verificados; para enviar mensajes a los mismos deber verificarlos.",
+ "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Le recomendamos que efectúe el proceso de verificación con cada dispositivo para confirmar que pertenecen a su propietario legítimo, pero si lo prefiere puede reenviar el mensaje sin verificar.",
+ "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" contiene dispositivos que no ha visto antes.",
+ "Unknown devices": "Dispositivos desconocidos",
+ "Unable to reject invite": "No se pudo rechazar la invitación",
+ "Share Message": "Compartir Mensaje",
+ "Collapse Reply Thread": "Colapsar Hilo de Respuestas",
+ "Topic": "Tema",
+ "Make this room private": "Hacer privada esta sala",
+ "Share message history with new users": "Compartir historial de mensajes con nuevos usuarios",
+ "Encrypt room": "Cifrar sala",
+ "There are no visible files in this room": "No hay archivos visibles en esta sala",
+ "HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "HTML para la página de tu comunidad. Usa la descripción larga para su presentación, o distribuir enlaces de interés. Puedes incluso usar etiquetas 'img'\n",
+ "Add rooms to the community summary": "Agregar salas al resumen de la comunidad",
+ "Which rooms would you like to add to this summary?": "¿Cuáles salas desea agregar a este resumen?",
+ "Add to summary": "Agregar a resumen",
+ "Failed to add the following rooms to the summary of %(groupId)s:": "Falló la agregación de las salas siguientes al resumen de %(groupId)s:",
+ "Add a Room": "Agregar una Sala",
+ "Failed to remove the room from the summary of %(groupId)s": "Falló la eliminación de la sala del resumen de %(groupId)s",
+ "The room '%(roomName)s' could not be removed from the summary.": "La sala '%(roomName)s' no se pudo eliminar del resumen.",
+ "Add users to the community summary": "Agregar usuario al resumen de la comunidad",
+ "Who would you like to add to this summary?": "¿A quién le gustaría agregar a este resumen?",
+ "Failed to add the following users to the summary of %(groupId)s:": "Falló la adición de los usuarios siguientes al resumen de %(groupId)s:",
+ "Add a User": "Agregar un Usuario",
+ "Failed to remove a user from the summary of %(groupId)s": "Falló la eliminación de un usuario del resumen de %(groupId)s",
+ "The user '%(displayName)s' could not be removed from the summary.": "No se pudo eliminar al usuario '%(displayName)s' del resumen.",
+ "Failed to upload image": "Falló la subida de la imagen",
+ "Failed to update community": "Falló la actualización de la comunidad",
+ "Unable to accept invite": "No se pudo aceptar la invitación",
+ "Unable to join community": "No se pudo unir a comunidad",
+ "Leave Community": "Abandonar Comunidad",
+ "Leave %(groupName)s?": "¿Abandonar %(groupName)s?",
+ "Unable to leave community": "No se pudo abandonar la comunidad",
+ "Community Settings": "Configuración de la Comunidad",
+ "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "Las modificaciones realizadas al nombre y avatar de la comunidad pueden no mostrarse a otros usuarios hasta dentro de 30 minutos.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Estas salas se muestran a los miembros de la comunidad en la página de la misma. Los miembros pueden unirse a las salas pulsando sobre ellas.",
+ "Featured Rooms:": "Salas Destacadas:",
+ "Featured Users:": "Usuarios Destacados:",
+ "%(inviter)s has invited you to join this community": "%(inviter)s le ha invitado a unirse a esta comunidad",
+ "Join this community": "Unirse a esta comunidad",
+ "Leave this community": "Abandonar esta comunidad",
+ "You are an administrator of this community": "Usted es un administrador de esta comunidad",
+ "You are a member of this community": "Usted es un miembro de esta comunidad",
+ "Who can join this community?": "¿Quién puede unirse a esta comunidad?",
+ "Everyone": "Todo el mundo",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "Su comunidad no tiene una descripción larga, una página HTML para mostrar a sus miembros. Pulse aquí para abrir los ajustes y definirla",
+ "Long Description (HTML)": "Descripción Larga (HTML)",
+ "Description": "Descripción",
+ "Community %(groupId)s not found": "No se encontraron %(groupId)s de la comunidad",
+ "This Home server does not support communities": "Este Home server no soporta comunidades",
+ "Failed to load %(groupId)s": "Falló la carga de %(groupId)s",
+ "This room is not public. You will not be able to rejoin without an invite.": "Esta sala no es pública. No podrá volver a unirse sin una invitación.",
+ "Can't leave Server Notices room": "No puede abandonar la sala Avisos del Servidor",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "La sala se usa para mensajes importantes del Homeserver, así que no puede abandonarla.",
+ "Terms and Conditions": "Términos y condiciones",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Para continuar usando el homeserver %(homeserverDomain)s debe revisar y estar de acuerdo con nuestros términos y condiciones.",
+ "Review terms and conditions": "Revisar términos y condiciones",
+ "Old cryptography data detected": "Se detectó información criptográfica antigua",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Se detectó una versión más antigua de Riot. Esto habrá provocado que la criptografía de extremo a extremo funcione incorrectamente en la versión más antigua. Los mensajes cifrados de extremo a extremo intercambiados recientemente mientras usaba la versión más antigua puede que no sean descifrables con esta versión. Esto también puede hacer que fallen con la más reciente. Si experimenta problemas, desconecte y vuelva a ingresar. Para conservar el historial de mensajes, exporte y vuelva a importar sus claves.",
+ "Your Communities": "Sus Comunidades",
+ "Did you know: you can use communities to filter your Riot.im experience!": "Sabía que: puede usar comunidades para filtrar su experiencia con Riot.im",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Para configurar un filtro, arrastre un avatar de comunidad sobre el panel de filtro en la parte izquierda de la pantalla. Puede pulsar sobre un avatar en el panel de filtro en cualquier momento para ver solo las salas y personas asociadas con esa comunidad.",
+ "Error whilst fetching joined communities": "Se produjo un error al recuperar las comunidades suscritas",
+ "Create a new community": "Crear una comunidad nueva",
+ "Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Crear una comunidad para agrupar usuarios y salas. Construye una página de inicio personalizada para destacarla.",
+ "Show devices , send anyway or cancel .": "Mostrar dispositivos , enviar de todas formas o cancelar .",
+ "You can't send any messages until you review and agree to our terms and conditions .": "No puede enviar ningún mensaje hasta que revise y esté de acuerdo con nuestros términos y condiciones .",
+ "%(count)s of your messages have not been sent.|one": "No se envió su mensaje.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Reenviar todo o cancelar todo ahora. También puede seleccionar mensajes sueltos o reenviar o cancelar.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Reemviar mensaje o cancelar mensaje ahora.",
+ "Connectivity to the server has been lost.": "Se perdió la conexión con el servidor.",
+ "Sent messages will be stored until your connection has returned.": "Los mensajes enviados se almacenarán hasta que vuelva su conexión.",
+ "Active call": "Llamada activa",
+ "There's no one else here! Would you like to invite others or stop warning about the empty room ?": "¡No hay nadie aquí! ¿Le gustaría invitar a otros o dejar de avisar de la sala vacía ?",
+ "Room": "Sala",
+ "Clear filter": "Limpiar filtro",
+ "Light theme": "Tema ligero",
+ "Dark theme": "Tema oscuro",
+ "Status.im theme": "Tema Status.im",
+ "Autocomplete Delay (ms):": "Retraso del completado automático (en ms):",
+ "Ignored Users": "Usuarios ignorados",
+ "Debug Logs Submission": "Envío de registros para depuración",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Si ha envíado un error a GitHub, estos registros pueden ayudar a localizar el problema. Contienen información de uso de la aplicación, incluido el nombre de usuario, IDs o alias de las salas o grupos visitados y los nombres de otros usuarios. No contienen mensajes.",
+ "Riot collects anonymous analytics to allow us to improve the application.": "El programa recopila estadísticas de forma anónima para mejorarlo.",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "La privacidad es importante, por lo que no se recopila información personal o identificable en las estadísticas.",
+ "Learn more about how we use analytics.": "Más información sobre el uso de las estadísticas.",
+ "Updates": "Actualizaciones",
+ "Check for update": "Comprobar actualizaciones",
+ "Desktop specific": "Específico del escritorio",
+ "Start automatically after system login": "Iniciar automáticamente después de ingresar en el sistema",
+ "No Audio Outputs detected": "No se detectaron Salidas de Sonido",
+ "Audio Output": "Salida de Sonido",
+ "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "Se envió un correo electrónico a %(emailAddress)s. Una vez haya seguido el enlace en él, pulse debajo.",
+ "Please note you are logging into the %(hs)s server, not matrix.org.": "Por favor, tenga en cuenta que está ingresando en el servidor %(hs)s, no en matrix.org.",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Este homeserver no ofrece flujos de ingreso soportados por este cliente.",
+ "Try the app first": "Probar primero la app",
+ "Sign in to get started": "Ingresar para comenzar",
+ "Set a display name:": "Ajuste un nombre en pantalla:",
+ "Upload an avatar:": "Subir un avatar:",
+ "This server does not support authentication with a phone number.": "Este servidor no soporta autenticación mediante número de teléfono.",
+ "Missing password.": "Falta la contraseña.",
+ "Passwords don't match.": "Las contraseñas no coinciden.",
+ "Password too short (min %(MIN_PASSWORD_LENGTH)s).": "La contraseña es demasiado corta (mín %(MIN_PASSWORD_LENGTH)s).",
+ "This doesn't look like a valid email address.": "Ésta no parece una dirección de correo electrónico válida.",
+ "This doesn't look like a valid phone number.": "Éste no parece un número de teléfono válido.",
+ "An unknown error occurred.": "Ocurrió un error desconocido.",
+ "I already have an account": "Ya tengo una cuenta",
+ "Notify the whole room": "Notificar a toda la sala",
+ "Room Notification": "Notificación de Salas",
+ "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Este proceso le permite exportar las claves para los mensajes que haya recibido en salas cifradas a un fichero local. Entonces podrá importar el fichero en otro cliente de Matrix en el futuro, de modo que dicho cliente será capaz de descifrar dichos mensajes.",
+ "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "El fichero exportado permitirá a cualquiera que pueda leerlo la tarea de descifrar todo mensaje cifrado que usted pueda ver, así que debe ser cuidadoso en mantenerlo seguro. Para ayudarle, debería introducir una contraseña debajo, la cual usará para cifrar la información exportada. Sólo será posible importar dicha información usando la misma contraseña.",
+ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Este proceso permite importar claves de cifrado que había exportado previamente desde otro cliente de Matrix. Entonces será capaz de descifrar todos los mensajes que el otro cliente así hacía.",
+ "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "El fichero de exportación se protegerá con una contraseña. Debería introducir aquí la contraseña para descifrar el fichero."
}
diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json
index 0c143bb597..c89f0b44f0 100644
--- a/src/i18n/strings/eu.json
+++ b/src/i18n/strings/eu.json
@@ -140,7 +140,6 @@
"Identity Server is": "Identitate zerbitzaria:",
"Mobile phone number (optional)": "Mugikor zenbakia (aukerazkoa)",
"Moderator": "Moderatzailea",
- "Must be viewing a room": "Gela bat ikusten egon behar da",
"Account": "Kontua",
"Access Token:": "Sarbide tokena:",
"Active call (%(roomName)s)": "Dei aktiboa (%(roomName)s)",
@@ -243,7 +242,6 @@
"Failed to kick": "Huts egin du kanporatzean",
"Failed to leave room": "Huts egin du gelatik ateratzean",
"Failed to load timeline position": "Huts egin du denbora-lerroko puntua kargatzean",
- "Failed to lookup current room": "Huts egin du uneko gela bilatzean",
"Failed to mute user": "Huts egin du erabiltzailea mututzean",
"Failed to reject invite": "Huts egin du gonbidapena baztertzean",
"Failed to reject invitation": "Huts egin du gonbidapena baztertzean",
@@ -298,7 +296,6 @@
"Level:": "Maila:",
"Local addresses for this room:": "Gela honen tokiko helbideak:",
"Logged in as:": "Saioa hasteko erabiltzailea:",
- "Login as guest": "Hasi saioa bisitari gisa",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s erabiltzaileak etorkizuneko gelaren historiala ikusgai jarri du gelako kide guztientzat, gonbidapena egiten zaienetik.",
"%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s erabiltzaileak etorkizuneko gelaren historiala ikusgai jarri du gelako kide guztientzat, elkartzen direnetik.",
"%(senderName)s made future room history visible to all room members.": "%(senderName)s erabiltzaileak etorkizuneko gelaren historiala ikusgai jarri du gelako kide guztientzat.",
@@ -587,7 +584,7 @@
"Please enter the code it contains:": "Sartu dakarren kodea:",
"If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Ez baduzu e-mail helbide bat zehazten, ezin izango duzu zure pasahitza berrezarri. Ziur zaude?",
"You are registering with %(SelectedTeamName)s": "%(SelectedTeamName)s erabiliz erregistratzen ari zara",
- "Default server": "Zerbitzari lenetetsia",
+ "Default server": "Zerbitzari lehenetsia",
"Custom server": "Zerbitzari aukeratua",
"Home server URL": "Hasiera zerbitzariaren URLa",
"Identity server URL": "Identitate zerbitzariaren URLa",
@@ -723,7 +720,6 @@
"%(names)s and %(count)s others are typing|one": "%(names)s eta beste bat idazten ari dira",
"Send": "Bidali",
"Message Pinning": "Mezuak finkatzea",
- "Tag Panel": "Etiketen panela",
"Hide avatar changes": "Ezkutatu abatar aldaketak",
"Hide display name changes": "Ezkutatu pantaila izenen aldaketak",
"Disable big emoji in chat": "Desgaitu emoji handiak txatean",
@@ -808,7 +804,6 @@
"Old cryptography data detected": "Kriptografia datu zaharrak atzeman dira",
"Your Communities": "Zure komunitateak",
"Create a new community": "Sortu komunitate berria",
- "Join an existing community": "Elkartu badagoen komunitate batetara",
"Warning": "Abisua",
"Please note you are logging into the %(hs)s server, not matrix.org.": "Kontuan izan %(hs)s zerbitzarira elkartu zarela, ez matrix.org.",
"Sign in to get started": "Hasi saioa hasteko",
@@ -845,8 +840,8 @@
"were unbanned %(count)s times|one": "debekua kendu zaie",
"was unbanned %(count)s times|other": "%(count)s aldiz kendu zaio debekua",
"was unbanned %(count)s times|one": "debekua kendu zaio",
- "were kicked %(count)s times|other": "%(count)s kanporatu zaie",
- "were kicked %(count)s times|one": "kanporatu zaie",
+ "were kicked %(count)s times|other": "%(count)s aldiz kanporatu zaie",
+ "were kicked %(count)s times|one": "(r) kanporatu zaie",
"was kicked %(count)s times|other": "%(count)s aldiz kanporatu zaio",
"was kicked %(count)s times|one": "kanporatu zaio",
"%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)s erabiltzaileek bere izena aldatu dute %(count)s aldiz",
@@ -893,7 +888,7 @@
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Trepeta ezabatzean gelako kide guztientzat kentzen da. Ziur trepeta ezabatu nahi duzula?",
"%(nameList)s %(transitionList)s": "%(nameList)s%(transitionList)s",
"%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s %(count)s aldiz elkartu dira",
- "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s elkartu da",
+ "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s elkartu dira",
"%(oneUser)sjoined %(count)s times|other": "%(oneUser)s%(count)s aldiz elkartu da",
"%(oneUser)sjoined %(count)s times|one": "%(oneUser)s elkartu da",
"%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s%(count)s aldiz atera dira",
@@ -904,7 +899,7 @@
"%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)s elkartu eta atera da",
"%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)s elkartu eta atera da %(count)s aldiz",
"%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s elkartu eta atera da",
- "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s atera eta berriz elkartu da %(count)s aldiz",
+ "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s atera eta berriz elkartu dira %(count)s aldiz",
"%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s atera eta berriz elkartu da",
"%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s atera eta berriz elkartu da %(count)s aldiz",
"%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s atera eta berriz elkartu da",
@@ -927,7 +922,6 @@
"Custom of %(powerLevel)s": "%(powerLevel)s pertsonalizatua",
"Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Riot bertsio zahar batek datuak antzeman dira. Honek bertsio zaharrean muturretik muturrerako zifratzea ez funtzionatzea eragingo du. Azkenaldian bertsio zaharrean bidali edo jasotako zifratutako mezuak agian ezin izango dira deszifratu bertsio honetan. Honek ere Bertsio honekin egindako mezu trukeak huts egitea ekar dezake. Arazoak badituzu, amaitu saioa eta hasi berriro saioa. Mezuen historiala gordetzeko, esportatu eta berriro inportatu zure gakoak.",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Sortu komunitate bat erabiltzaileak eta gelak biltzeko! Sortu zure hasiera orria eta markatu zure espazioa Matrix unibertsoan.",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Bdagoen komunitate batera elkartzeko, komunitatearen identifikatzailea jakin behar duzu; honen antza izango du +adibidea:matrix.org .",
"There's no one else here! Would you like to invite others or stop warning about the empty room ?": "Ez dago beste inor hemen! Beste batzuk gonbidatu nahi dituzu edo gela hutsik dagoela abisatzeari utzi ?",
"Light theme": "Itxura argia",
"Dark theme": "Itxura iluna",
@@ -938,7 +932,6 @@
"%(count)s of your messages have not been sent.|one": "Zure mezua ez da bidali.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Birbidali guztiak edo baztertu guztiak orain. Mezuak banaka birbidali edo baztertu ditzakezu ere.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Birbidali mezua edo baztertu mezua orain.",
- "Message Replies": "Mezuei erantzunak",
"Send an encrypted reply…": "Bidali zifratutako erantzun bat…",
"Send a reply (unencrypted)…": "Bidali erantzun bat (zifratu gabea)…",
"Send an encrypted message…": "Bidali zifratutako mezu bat…",
@@ -959,7 +952,7 @@
"Your identity server's URL": "Zure identitate zerbitzariaren URL-a",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(fullYear)s(e)ko %(monthName)sk %(day)sa",
"This room is not public. You will not be able to rejoin without an invite.": "Gela hau ez da publikoa. Ezin izango zara berriro elkartu gonbidapenik gabe.",
- "Community IDs cannot not be empty.": "Komunitate ID-ak ezin dira hutsik egon.",
+ "Community IDs cannot be empty.": "Komunitate ID-ak ezin dira hutsik egon.",
"Show devices , send anyway or cancel .": "Erakutsi gailuak , bidali hala ere edo ezeztatu .",
"In reply to ": "honi erantzunez: ",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s erabiltzaileak bere pantaila izena aldatu du %(displayName)s izatera.",
@@ -1127,7 +1120,6 @@
"Unable to fetch notification target list": "Ezin izan da jakinarazpen helburuen zerrenda eskuratu",
"Set Password": "Ezarri pasahitza",
"Enable audible notifications in web client": "Gaitu jakinarazpen entzungarriak web bezeroan",
- "Permalink": "Esteka iraunkorra",
"Off": "Ez",
"Riot does not know how to join a room on this network": "Riotek ez daki nola elkartu gela batetara sare honetan",
"Mentions only": "Aipamenak besterik ez",
@@ -1166,5 +1158,78 @@
"Unable to reply": "Ezin erantzun",
"At this time it is not possible to reply with an emote.": "Une honetan ezin da irriabartxo batekin erantzun.",
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Ezin izan da erantzundako gertaera kargatu, edo ez dago edo ez duzu ikusteko baimenik.",
- "Collapse Reply Thread": "Tolestu erantzun-haria"
+ "Collapse Reply Thread": "Tolestu erantzun-haria",
+ "Enable widget screenshots on supported widgets": "Gaitu trepeten pantaila-argazkiak onartzen duten trepetetan",
+ "Send analytics data": "Bidali datu analitikoak",
+ "Muted Users": "Mutututako erabiltzaileak",
+ "Warning: This widget might use cookies.": "Abisua: Trepeta honek cookie-ak erabili litzake.",
+ "Terms and Conditions": "Termino eta baldintzak",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "%(homeserverDomain)s hasiera-zerbitzaria erabiltzen jarraitzeko gure termino eta baldintzak irakurri eta onartu behar dituzu.",
+ "Review terms and conditions": "Irakurri termino eta baldintzak",
+ "Failed to indicate account erasure": "Ezin izan da kontuaren ezabaketa jakinarazi",
+ "To continue, please enter your password:": "Jarraitzeko, sartu zure pasahitza:",
+ "password": "pasahitza",
+ "e.g. %(exampleValue)s": "adib. %(exampleValue)s",
+ "Reload widget": "Birkargatu trepeta",
+ "To notify everyone in the room, you must be a": "Gelan dauden guztiei jakinarazteko",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Hobetu Riot.im erabilera-datu anonimoak bidaliz. Honek coockie bat erabiliko du (Ikusi gure Cookie politika ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Hobetu Riot.im erabilera-datu anonimoak bidaliz. Honek cookie bat erabiliko du.",
+ "Yes, I want to help!": "Bai, lagundu nahi dut!",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Honek kontua behin betirako erabilgaitza bihurtuko du. Ezin izango duzu saioa hasi, eta ezin izango du beste inork ID hori erabili. Kontua dagoen gela guztietatik aterako da, eta kontuaren xehetasunak identitate-zerbitzaritik ezabatuko dira. Ekintza hau ezin da desegin. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Kontua desaktibatzean ez dira zuk bidalitako mezuak ahaztuko. Mezuak ahaztea nahi baduzu markatu beheko kutxa.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Matrix-eko mezuen ikusgaitasuna e-mail sistemaren antekoa da. Guk zure mezuak ahaztean ez dizkiogu erabiltzaile berriei edo izena eman ez dutenei erakutsiko, baina jada zure mezuak jaso dituzten erregistratutako erabiltzaileen bere kopia izaten jarraituko dute.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Ahaztu bidali ditudan mezu guztiak kontua desaktibatzean (Abisua: Honekin etorkizuneko erabiltzaileek elkarrizketaren bertsio ez oso bat ikusiko dute)",
+ "Can't leave Server Notices room": "Ezin zara Server Notices gelatik atera",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Gela hau mezu hasiera zerbitzariaren garrantzitsuak bidaltzeko erabiltzen da, eta ezin zara atera.",
+ "Try the app first": "Probatu aplikazioa aurretik",
+ "Encrypting": "Zifratzen",
+ "Encrypted, not sent": "Zifratua, bidali gabe",
+ "Share Link to User": "Partekatu esteka erabiltzailearekin",
+ "Share room": "Partekatu gela",
+ "Share Room": "Partekatu gela",
+ "Link to most recent message": "Esteka azken mezura",
+ "Share User": "Partekatu erabiltzailea",
+ "Share Community": "Partekatu komunitatea",
+ "Share Room Message": "Partekatu gelako mezua",
+ "Link to selected message": "Esteka hautatutako mezura",
+ "COPY": "KOPIATU",
+ "Share Message": "Partekatu mezua",
+ "No Audio Outputs detected": "Ez da audio irteerarik antzeman",
+ "Audio Output": "Audio irteera",
+ "Jitsi Conference Calling": "Jitsi konferentzia deia",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Zifratutako gelatan, honetan esaterako, URL-en aurrebistak lehenetsita desgaituta daude zure hasiera-zerbitzariak gela honetan ikusten dituzun estekei buruzko informaziorik jaso ez dezan, hasiera-zerbitzarian sortzen baitira aurrebistak.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Norbaitek mezu batean URL bat jartzen duenean, URL aurrebista bat erakutsi daiteke estekaren informazio gehiago erakusteko, adibidez webgunearen izenburua, deskripzioa eta irudi bat.",
+ "The email field must not be blank.": "E-mail eremua ezin da hutsik laga.",
+ "The user name field must not be blank.": "Erabiltzaile-izen eremua ezin da hutsik laga.",
+ "The phone number field must not be blank.": "Telefono zenbakia eremua ezin da hutsik laga.",
+ "The password field must not be blank.": "Pasahitza eremua ezin da hutsik laga.",
+ "Call in Progress": "Deia abian",
+ "A call is already in progress!": "Badago dei bat abian!",
+ "You have no historical rooms": "Ez duzu gelen historialik",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Ezin duzu mezurik bidali gure termino eta baldintzak irakurri eta onartu arte.",
+ "Show empty room list headings": "Erakutsi gela hutsen zerrenda-goiburuak",
+ "Demote yourself?": "Jaitsi zure burua mailaz?",
+ "Demote": "Jaitzi mailaz",
+ "A conference call could not be started because the intgrations server is not available": "Ezin izan da konferentzia dei bat hasi integrazio zerbitzaria ez dagoelako eskuragarri",
+ "A call is currently being placed!": "Dei bat ezartzen ari da orain!",
+ "Permission Required": "Baimena beharrezkoa",
+ "You do not have permission to start a conference call in this room": "Ez duzu baimenik konferentzia dei bat hasteko gela honetan",
+ "This event could not be displayed": "Ezin izan da gertakari hau bistaratu",
+ "deleted": "ezabatuta",
+ "underlined": "azpimarratuta",
+ "inline-code": "lineako kodea",
+ "block-quote": "aipamen blokea",
+ "bulleted-list": "buletdun zerrenda",
+ "numbered-list": "zenbakidun zerrenda",
+ "Failed to remove widget": "Huts egin du trepeta kentzean",
+ "An error ocurred whilst trying to remove the widget from the room": "Trepeta gelatik kentzen saiatzean errore bat gertatu da",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Hasiera zerbitzari honek bere hilabeteko erabiltzaile aktiboen muga jo du. Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzua erabiltzen jarraitzeko.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Zure mezua ez da bidali hasiera zerbitzari honek bere hilabeteko erabiltzaile aktiboen muga jo duelako. Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzua erabiltzen jarraitzeko.",
+ "This homeserver has hit its Monthly Active User limit": "Hasiera zerbitzari honek bere hilabeteko erabiltzaile aktiboen muga jo du",
+ "Please contact your service administrator to continue using this service.": "Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzua erabiltzen jarraitzeko.",
+ "System Alerts": "Sistemaren alertak",
+ "Internal room ID: ": "Gelaren barne IDa: ",
+ "Room version number: ": "Gelaren bertsio zenbakia: ",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Hasiera zerbitzari honek hileko erabiltzaile aktiboen muga jo du. Jarri zerbitzuaren administratzailearekin kontaktuan zerbitzua erabiltzen jarraitzeko.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Hasiera zerbitzari honek hileko erabiltzaile aktiboen muga jo du eta ezin izango duzu saioa hasi. Jarri zerbitzuaren administratzailearekin kontaktuan muga hau handitu dezan."
}
diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json
index 0e532d9483..2b18ba7693 100644
--- a/src/i18n/strings/fa.json
+++ b/src/i18n/strings/fa.json
@@ -124,7 +124,6 @@
"Set Password": "پسوردتان را انتخاب کنید",
"An error occurred whilst saving your email notification preferences.": "خطایی در حین ذخیرهی ترجیجات شما دربارهی رایانامه رخ داد.",
"Enable audible notifications in web client": "آگاهسازی صدادار را در کارگزار وب فعال کن",
- "Permalink": "پایاپیوند",
"Off": "خاموش",
"Riot does not know how to join a room on this network": "رایوت از چگونگی ورود به یک گپ در این شبکه اطلاعی ندارد",
"Mentions only": "فقط نامبردنها",
diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json
index e5787ab561..d39091b619 100644
--- a/src/i18n/strings/fi.json
+++ b/src/i18n/strings/fi.json
@@ -198,7 +198,6 @@
"Level:": "Taso:",
"Local addresses for this room:": "Tämän huoneen paikalliset osoitteet:",
"Logged in as:": "Kirjautunut käyttäjänä:",
- "Login as guest": "Kirjaudu vieraana",
"Logout": "Kirjaudu ulos",
"Low priority": "Alhainen prioriteetti",
"Manage Integrations": "Hallinoi integraatioita",
@@ -451,7 +450,6 @@
"End-to-end encryption is in beta and may not be reliable": "Päästä päähän salaus on vielä testausvaiheessa ja saattaa toimia epävarmasti",
"Error: Problem communicating with the given homeserver.": "Virhe: Ongelma yhteydenpidossa kotipalvelimeen.",
"Existing Call": "Käynnissä oleva puhelu",
- "Failed to lookup current room": "Nykyisen huoneen löytäminen epäonnistui",
"Join as voice or video .": "Liity käyttäen ääntä tai videota .",
"%(targetName)s joined the room.": "%(targetName)s liittyi huoneeseen.",
"%(senderName)s kicked %(targetName)s.": "%(senderName)s poisti käyttäjän %(targetName)s huoneesta.",
@@ -459,7 +457,6 @@
"Publish this room to the public in %(domain)s's room directory?": "Julkaise tämä huone domainin %(domain)s huoneluettelossa?",
"Missing room_id in request": "room_id puuttuu kyselystä",
"Missing user_id in request": "user_id puuttuu kyselystä",
- "Must be viewing a room": "Pakko olla huoneessa",
"Never send encrypted messages to unverified devices from this device": "Älä koskaa lähetä salattuja viestejä varmentamattomiin laitteisiin tältä laitteelta",
"Never send encrypted messages to unverified devices in this room from this device": "Älä koskaa lähetä salattuja viestejä varmentamattomiin laitteisiin tässä huoneessa tältä laitteelta",
"New address (e.g. #foo:%(localDomain)s)": "Uusi osoite (esim. #foo:%(localDomain)s)",
@@ -790,7 +787,6 @@
"You're not currently a member of any communities.": "Et ole minkään yhteisön jäsen tällä hetkellä.",
"Error whilst fetching joined communities": "Virhe ladatessa listaa yhteistöistä joihin olet liittynyt",
"Create a new community": "Luo uusi yhteisö",
- "Join an existing community": "Liity olemassaolevaan yhteisöön",
"Light theme": "Vaalea ulkoasu",
"Dark theme": "Tumma ulkoasu",
"Status.im theme": "Status.im ulkoasu",
@@ -824,7 +820,6 @@
"%(widgetName)s widget added by %(senderName)s": "%(widgetName)s pienoisohjelman lisännyt %(senderName)s",
"%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s pienoisohjelman poistanut %(senderName)s",
"Send": "Lähetä",
- "Tag Panel": "Tagit",
"Delete %(count)s devices|other": "Poista %(count)s laitetta",
"Delete %(count)s devices|one": "Poista laite",
"Select devices": "Valitse laitteet",
@@ -1050,7 +1045,6 @@
"Set Password": "Aseta salasana",
"An error occurred whilst saving your email notification preferences.": "Sähköposti-ilmoitusasetuksia tallettaessa tapahtui virhe.",
"Enable audible notifications in web client": "Ota käyttöön äänelliset ilmoitukset",
- "Permalink": "Pysyvä linkki",
"remove %(name)s from the directory.": "poista %(name)s hakemistosta.",
"Off": "Pois päältä",
"Riot does not know how to join a room on this network": "Riot ei tiedä miten liittya huoneeseen tässä verkossa",
diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json
index 7dbcff2c9a..3e0d253020 100644
--- a/src/i18n/strings/fr.json
+++ b/src/i18n/strings/fr.json
@@ -105,7 +105,6 @@
"Failed to kick": "Échec de l'exclusion",
"Failed to leave room": "Échec du départ du salon",
"Failed to load timeline position": "Échec du chargement de la position dans l'historique",
- "Failed to lookup current room": "Échec de la recherche du salon actuel",
"Failed to mute user": "Échec de la mise en sourdine de l'utilisateur",
"Failed to reject invite": "Échec du rejet de l'invitation",
"Failed to reject invitation": "Échec du rejet de l'invitation",
@@ -166,7 +165,6 @@
"%(targetName)s left the room.": "%(targetName)s a quitté le salon.",
"Local addresses for this room:": "Adresses locales pour ce salon :",
"Logged in as:": "Identifié en tant que :",
- "Login as guest": "Se connecter en tant que visiteur",
"Logout": "Se déconnecter",
"Low priority": "Priorité basse",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s a rendu l'historique visible à tous les membres du salon, depuis le moment où ils ont été invités.",
@@ -183,7 +181,6 @@
"Missing user_id in request": "Absence du user_id dans la requête",
"Mobile phone number": "Numéro de téléphone mobile",
"Moderator": "Modérateur",
- "Must be viewing a room": "Doit être en train de visualiser un salon",
"%(serverName)s Matrix ID": "%(serverName)s identifiant Matrix",
"Name": "Nom",
"Never send encrypted messages to unverified devices from this device": "Ne jamais envoyer de message chiffré aux appareils non vérifiés depuis cet appareil",
@@ -714,17 +711,17 @@
"To change the topic, you must be a": "Pour changer le sujet, vous devez être un",
"To modify widgets in the room, you must be a": "Pour modifier les widgets, vous devez être un",
"Banned by %(displayName)s": "Banni par %(displayName)s",
- "To send messages, you must be a": "Pour envoyer des messages, vous devez être un",
+ "To send messages, you must be a": "Pour envoyer des messages, vous devez être un(e)",
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s a changé les messages épinglés du salon.",
"%(names)s and %(count)s others are typing|other": "%(names)s et %(count)s autres écrivent",
"Jump to read receipt": "Aller à l'accusé de lecture",
"World readable": "Lisible publiquement",
"Guests can join": "Les invités peuvent rejoindre le salon",
- "To invite users into the room, you must be a": "Pour inviter des utilisateurs dans le salon, vous devez être un",
- "To configure the room, you must be a": "Pour configurer le salon, vous devez être un",
- "To kick users, you must be a": "Pour exclure des utilisateurs, vous devez être un",
- "To ban users, you must be a": "Pour bannir des utilisateurs, vous devez être un",
- "To remove other users' messages, you must be a": "Pour supprimer les messages d'autres utilisateurs, vous devez être un",
+ "To invite users into the room, you must be a": "Pour inviter des utilisateurs dans le salon, vous devez être un(e)",
+ "To configure the room, you must be a": "Pour configurer le salon, vous devez être un(e)",
+ "To kick users, you must be a": "Pour exclure des utilisateurs, vous devez être un(e)",
+ "To ban users, you must be a": "Pour bannir des utilisateurs, vous devez être un(e)",
+ "To remove other users' messages, you must be a": "Pour supprimer les messages d'autres utilisateurs, vous devez être un(e)",
"To send events of type , you must be a": "Pour envoyer des évènements du type , vous devez être un",
"Invalid community ID": "Identifiant de communauté non valide",
"'%(groupId)s' is not a valid community ID": "\"%(groupId)s\" n'est pas un identifiant de communauté valide",
@@ -860,12 +857,10 @@
"This Home server does not support communities": "Ce serveur d'accueil ne prend pas en charge les communautés",
"Failed to load %(groupId)s": "Échec du chargement de %(groupId)s",
"Your Communities": "Vos communautés",
- "You're not currently a member of any communities.": "Vous n'ếtes actuellement membre d'aucune communauté.",
+ "You're not currently a member of any communities.": "Vous n'êtes actuellement membre d'aucune communauté.",
"Error whilst fetching joined communities": "Erreur lors de l'obtention des communautés rejointes",
"Create a new community": "Créer une nouvelle communauté",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Créez une communauté pour grouper des utilisateurs et des salons ! Construisez une page d'accueil personnalisée pour distinguer votre espace dans l'univers Matrix.",
- "Join an existing community": "Rejoindre une communauté existante",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Pour rejoindre une communauté existante, vous devrez connaître son identifiant. Cela ressemblera à +exemple:matrix.org .",
"Disable Emoji suggestions while typing": "Désactiver les suggestions d'emojis lors de la saisie",
"Disable big emoji in chat": "Désactiver les gros emojis dans les discussions",
"Mirror local video feed": "Refléter le flux vidéo local",
@@ -888,7 +883,7 @@
"Show these rooms to non-members on the community page and room list?": "Afficher ces salons aux non-membres sur la page de communauté et la liste des salons ?",
"Sign in to get started": "Connectez-vous pour commencer",
"Status.im theme": "Thème Status.im",
- "Please note you are logging into the %(hs)s server, not matrix.org.": "Veuillez noter que vous vous connecter au serveur %(hs)s, pas à matrix.org.",
+ "Please note you are logging into the %(hs)s server, not matrix.org.": "Veuillez noter que vous vous connectez au serveur %(hs)s, pas à matrix.org.",
"Username on %(hs)s": "Nom d'utilisateur sur %(hs)s",
"Restricted": "Restreint",
"Custom of %(powerLevel)s": "Personnalisé de %(powerLevel)s",
@@ -912,14 +907,13 @@
"Delete %(count)s devices|other": "Supprimer %(count)s appareils",
"Select devices": "Sélectionner les appareils",
"Something went wrong when trying to get your communities.": "Une erreur est survenue lors de l'obtention de vos communautés.",
- "This homeserver doesn't offer any login flows which are supported by this client.": "Ce serveur d'accueil n'offre aucun flux compatible avec ce client.",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Ce serveur d'accueil n'offre aucune méthode d'identification compatible avec ce client.",
"Flair": "Badge",
"Showing flair for these communities:": "Ce salon affichera les badges pour ces communautés :",
"This room is not showing flair for any communities": "Ce salon n'affiche de badge pour aucune communauté",
"Flair will appear if enabled in room settings": "Les badges n'apparaîtront que s'ils sont activés dans les paramètres de chaque salon",
"Flair will not appear": "Les badges n'apparaîtront pas",
"Display your community flair in rooms configured to show it.": "Sélectionnez les badges dans les paramètres de chaque salon pour les afficher.",
- "Tag Panel": "Panneau des étiquettes",
"Addresses": "Adresses",
"expand": "développer",
"collapse": "réduire",
@@ -938,7 +932,6 @@
"%(count)s of your messages have not been sent.|one": "Votre message n'a pas été envoyé.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Tout renvoyer ou tout annuler maintenant. Vous pouvez aussi choisir des messages individuels à renvoyer ou annuler.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Renvoyer le message ou annuler le message maintenant.",
- "Message Replies": "Réponses",
"Send an encrypted reply…": "Envoyer une réponse chiffrée…",
"Send a reply (unencrypted)…": "Envoyer une réponse (non chiffrée)…",
"Send an encrypted message…": "Envoyer un message chiffré…",
@@ -959,7 +952,7 @@
"Your identity server's URL": "L'URL de votre serveur d'identité",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s %(day)s %(monthName)s %(fullYear)s",
"This room is not public. You will not be able to rejoin without an invite.": "Ce salon n'est pas public. Vous ne pourrez pas y revenir sans invitation.",
- "Community IDs cannot not be empty.": "Les identifiants de communauté ne peuvent pas être vides.",
+ "Community IDs cannot be empty.": "Les identifiants de communauté ne peuvent pas être vides.",
"Show devices , send anyway or cancel .": "Afficher les appareils , envoyer quand même ou annuler .",
"In reply to ": "En réponse à ",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s a changé son nom affiché en %(displayName)s.",
@@ -1094,7 +1087,7 @@
"Downloading update...": "Mise à jour en cours de téléchargement...",
"State Key": "Clé d'état",
"Failed to send custom event.": "Échec de l'envoi de l'événement personnalisé.",
- "What's new?": "Nouveautés ?",
+ "What's new?": "Nouveautés",
"Notify me for anything else": "Me notifier pour tout le reste",
"View Source": "Voir la source",
"Can't update user notification settings": "Impossible de mettre à jour les paramètres de notification de l'utilisateur",
@@ -1121,7 +1114,6 @@
"Unable to fetch notification target list": "Impossible de récupérer la liste des appareils recevant les notifications",
"Set Password": "Définir un mot de passe",
"Enable audible notifications in web client": "Activer les notifications sonores pour le client web",
- "Permalink": "Permalien",
"Off": "Désactivé",
"Riot does not know how to join a room on this network": "Riot ne peut pas joindre un salon sur ce réseau",
"Mentions only": "Seulement les mentions",
@@ -1166,6 +1158,78 @@
"Unable to reply": "Impossible de répondre",
"At this time it is not possible to reply with an emote.": "Pour le moment il n'est pas possible de répondre avec un émoji.",
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Impossible de charger l'événement auquel il a été répondu, soit il n'existe pas, soit vous n'avez pas l'autorisation de le voir.",
- "Collapse Reply Thread": "Dévoiler le fil de réponse",
- "Enable widget screenshots on supported widgets": "Activer les captures d'écran des widgets pris en charge"
+ "Collapse Reply Thread": "Masquer le fil de réponse",
+ "Enable widget screenshots on supported widgets": "Activer les captures d'écran des widgets pris en charge",
+ "Send analytics data": "Envoyer les données analytiques",
+ "Muted Users": "Utilisateurs ignorés",
+ "Warning: This widget might use cookies.": "Avertissement : ce widget utilise peut-être des cookies.",
+ "Terms and Conditions": "Conditions générales",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Pour continuer à utiliser le serveur d'accueil %(homeserverDomain)s, vous devez lire et accepter nos conditions générales.",
+ "Review terms and conditions": "Voir les conditions générales",
+ "Failed to indicate account erasure": "Échec de notification de la suppression du compte",
+ "To continue, please enter your password:": "Pour continuer, veuillez renseigner votre mot de passe :",
+ "password": "mot de passe",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Votre compte sera inutilisable de façon permanente. Vous ne pourrez plus vous reconnecter et personne ne pourra se réenregistrer avec le même identifiant d'utilisateur. Votre compte quittera tous les salons auxquels il participe et tous ses détails seront supprimés du serveur d'identité. Cette action est irréversible. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "La désactivation du compte ne nous fait pas oublier les messages que vous avez envoyés par défaut. Si vous souhaitez que nous les oubliions, cochez la case ci-dessous.",
+ "e.g. %(exampleValue)s": "par ex. %(exampleValue)s",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "La visibilité des messages dans Matrix est la même que celle des e-mails. Quand nous oublions vos messages, cela signifie que les messages que vous avez envoyés ne seront partagés avec aucun nouvel utilisateur ou avec les utilisateurs non enregistrés, mais les utilisateurs enregistrés qui ont déjà eu accès à ces messages en conserveront leur propre copie.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Veuillez oublier tous les messages que j'ai envoyé quand mon compte sera désactivé (Avertissement : les futurs utilisateurs verront des conversations incomplètes)",
+ "Reload widget": "Recharger le widget",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Veuillez aider Riot.im à s'améliorer en envoyant des données d'utilisation anonymes . Cela utilisera un cookie (veuillez voir notre politique de cookie ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Veuillez aider Riot.im à s'améliorer en envoyant des données d'utilisation anonymes . Cela utilisera un cookie.",
+ "Yes, I want to help!": "Oui, je veux aider !",
+ "Can't leave Server Notices room": "Impossible de quitter le salon des Annonces du serveur",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Ce salon est utilisé pour les messages importants du serveur d'accueil, donc vous ne pouvez pas en partir.",
+ "To notify everyone in the room, you must be a": "Pour notifier tout le monde dans le salon, vous devez être un(e)",
+ "Try the app first": "Essayer d'abord l'application",
+ "Encrypting": "Chiffrement en cours",
+ "Encrypted, not sent": "Chiffré, pas envoyé",
+ "No Audio Outputs detected": "Aucune sortie audio détectée",
+ "Audio Output": "Sortie audio",
+ "Share Link to User": "Partager le lien vers l'utilisateur",
+ "Share room": "Partager le salon",
+ "Share Room": "Partager le salon",
+ "Link to most recent message": "Lien vers le message le plus récent",
+ "Share User": "Partager l'utilisateur",
+ "Share Community": "Partager la communauté",
+ "Share Room Message": "Partager le message du salon",
+ "Link to selected message": "Lien vers le message sélectionné",
+ "COPY": "COPIER",
+ "Share Message": "Partager le message",
+ "Jitsi Conference Calling": "Appel en téléconférence Jitsi",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Dans les salons chiffrés, comme celui-ci, l'aperçu des liens est désactivé par défaut pour s'assurer que le serveur d'accueil (où sont générés les aperçus) ne puisse pas collecter d'informations sur les liens qui apparaissent dans ce salon.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Quand quelqu'un met un lien dans son message, un aperçu du lien peut être affiché afin de fournir plus d'informations sur ce lien comme le titre, la description et une image du site.",
+ "The email field must not be blank.": "Le champ de l'adresse e-mail ne doit pas être vide.",
+ "The user name field must not be blank.": "Le champ du nom d'utilisateur ne doit pas être vide.",
+ "The phone number field must not be blank.": "Le champ du numéro de téléphone ne doit pas être vide.",
+ "The password field must not be blank.": "Le champ du mot de passe ne doit pas être vide.",
+ "Call in Progress": "Appel en cours",
+ "A call is already in progress!": "Un appel est déjà en cours !",
+ "You have no historical rooms": "Vous n'avez aucun salon historique",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Vous ne pouvez voir aucun message tant que vous ne lisez et n'acceptez pas nos conditions générales .",
+ "Demote yourself?": "Vous rétrograder ?",
+ "Demote": "Rétrograder",
+ "Show empty room list headings": "Afficher les en-têtes de la liste des salons vides",
+ "This event could not be displayed": "Cet événement n'a pas pu être affiché",
+ "deleted": "barré",
+ "underlined": "souligné",
+ "inline-code": "code",
+ "block-quote": "citation",
+ "bulleted-list": "liste à puces",
+ "numbered-list": "liste à numéros",
+ "A conference call could not be started because the intgrations server is not available": "L'appel en téléconférence n'a pas pu aboutir car le serveur d'intégrations n'est pas disponible",
+ "Permission Required": "Permission requise",
+ "You do not have permission to start a conference call in this room": "Vous n'avez pas la permission de lancer un appel en téléconférence dans ce salon",
+ "A call is currently being placed!": "Un appel est en cours !",
+ "Failed to remove widget": "Échec de la suppression du widget",
+ "An error ocurred whilst trying to remove the widget from the room": "Une erreur est survenue lors de la suppression du widget du salon",
+ "This homeserver has hit its Monthly Active User limit": "Ce serveur d'accueil a atteint sa limite mensuelle d'utilisateurs actifs",
+ "Please contact your service administrator to continue using this service.": "Veuillez contacter l'administrateur de votre service pour continuer à l'utiliser.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Votre message n'a pas été envoyé car ce serveur d'accueil a atteint sa limite mensuelle d'utilisateurs actifs. Veuillez contacter l'administrateur de votre service pour continuer à l'utiliser.",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Ce serveur d'accueil a atteint sa limite mensuelle d'utilisateurs actifs. Veuillez contacter l'administrateur de votre service pour continuer à l'utiliser.",
+ "System Alerts": "Alertes système",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Ce serveur d'accueil a atteint sa limite mensuelle d'utilisateurs actifs. Veuillez contacter l'administrateur de votre service pour continuer à l'utiliser.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Ce serveur d'accueil a atteint sa limite mensuelle d'utilisateurs actifs donc certains utilisateurs ne pourront pas se connecter. Veuillez contacter l'administrateur de votre service pour augmenter cette limite.",
+ "Internal room ID: ": "Identifiant interne du salon : ",
+ "Room version number: ": "Numéro de version du salon : "
}
diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json
index fdab066031..41ab6a54d0 100644
--- a/src/i18n/strings/gl.json
+++ b/src/i18n/strings/gl.json
@@ -1,31 +1,31 @@
{
- "This email address is already in use": "Este enderezo de correo xa está a ser utilizado",
- "This phone number is already in use": "Este número de teléfono xa está a ser utilizado",
+ "This email address is already in use": "Xa se está a usar este correo",
+ "This phone number is already in use": "Xa se está a usar este teléfono",
"Failed to verify email address: make sure you clicked the link in the email": "Fallo na verificación do enderezo de correo: asegúrese de ter picado na ligazón do correo",
"The remote side failed to pick up": "O interlocutor non respondeu",
- "Unable to capture screen": "Non se puido pillar a pantalla",
- "Existing Call": "Chamada existente",
+ "Unable to capture screen": "Non se puido capturar a pantalla",
+ "Existing Call": "Rexistro de chamadas",
"You are already in a call.": "Xa está nunha chamada.",
- "VoIP is unsupported": "VoIP non admitida",
- "You cannot place VoIP calls in this browser.": "Non pode establecer chamadas VoIP en este navegador.",
- "You cannot place a call with yourself.": "Non pode chamarse a vostede mesma.",
- "Conference calls are not supported in this client": "Non pode establecer chamadas de Reunión en este cliente",
- "Conference calls are not supported in encrypted rooms": "Nas salas cifradas non se pode establecer Chamadas de Reunión",
+ "VoIP is unsupported": "Sen soporte para VoIP",
+ "You cannot place VoIP calls in this browser.": "Non pode establecer chamadas VoIP neste navegador.",
+ "You cannot place a call with yourself.": "Non pode facer unha chamada a si mesmo.",
+ "Conference calls are not supported in this client": "Non pode establecer chamadas de reunión neste cliente",
+ "Conference calls are not supported in encrypted rooms": "Nas salas cifradas non se pode establecer chamadas de reunión",
"Warning!": "Aviso!",
- "Conference calling is in development and may not be reliable.": "As chamadas de Reunión poderían non ser totalmente estables xa que están en desenvolvemento.",
+ "Conference calling is in development and may not be reliable.": "As chamadas de reunión poderían non ser totalmente estables xa que están en desenvolvemento.",
"Failed to set up conference call": "Fallo ao establecer a chamada de reunión",
"Conference call failed.": "Fallo na chamada de reunión.",
"Call Failed": "Fallou a chamada",
- "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Hai dispositivos descoñecidos en esta sala: si sigue adiante sen verificalos, pode ser posible que alguén bote un ollo a súa chamada.",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Hai dispositivos descoñecidos en esta sala: se segue adiante sen verificalos, pode ser posible que alguén bote un ollo a súa chamada.",
"Review Devices": "Revisar dispositivos",
"Call Anyway": "Chamar igualmente",
- "Answer Anyway": "Respostar igualmente",
+ "Answer Anyway": "Responder igualmente",
"Call": "Chamar",
- "Answer": "Respostar",
- "Call Timeout": "Finou a chamada",
- "The file '%(fileName)s' failed to upload": "O ficheiro '%(fileName)s' non se puido subir",
- "The file '%(fileName)s' exceeds this home server's size limit for uploads": "O ficheiro '%(fileName)s' excede o límite establecido polo servidor para subidas",
- "Upload Failed": "Fallou a subida",
+ "Answer": "Resposta",
+ "Call Timeout": "Tempo de resposta de chamada",
+ "The file '%(fileName)s' failed to upload": "Non se puido subir o ficheiro '%(fileName)s'",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "O ficheiro '%(fileName)s' excede o límite de tamaño establecido para este servidor",
+ "Upload Failed": "Fallou o envío",
"Sun": "Dom",
"Mon": "Lun",
"Tue": "Mar",
@@ -50,66 +50,65 @@
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(time)s",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s %(time)s",
- "Who would you like to add to this community?": "A quén lle gustaría engadir a esta comunidade?",
- "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Aviso: calquer persoa que vostede engada a unha comunidade será públicamente visible para calquera que coñeza o ID da comunidade",
- "Invite new community members": "Convidar a novos membros da comunidade",
+ "Who would you like to add to this community?": "A quen quere engadir a esta comunidade?",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Aviso: calquera persoa que engada a unha comunidade estará publicamente visible para calquera que coñeza a ID da comunidade",
+ "Invite new community members": "Convidará comunidade a novos participantes",
"Name or matrix ID": "Nome ou ID matrix",
- "Invite to Community": "Convide a comunidade",
- "Which rooms would you like to add to this community?": "Qué salas desexaría engadir a esta comunidade?",
- "Show these rooms to non-members on the community page and room list?": "Mostrar estas salas a non-membros na páxina da comunidade e lista de salas?",
- "Add rooms to the community": "Engadir salas a comunidade",
+ "Invite to Community": "Convidar á comunidade",
+ "Which rooms would you like to add to this community?": "Que salas desexaría engadir a esta comunidade?",
+ "Show these rooms to non-members on the community page and room list?": "Quere que estas salas se lle mostren a outros membros de fóra da comunidade na lista de salas?",
+ "Add rooms to the community": "Engadir salas á comunidade",
"Room name or alias": "Nome da sala ou alcume",
- "Add to community": "Engadir a comunidade",
- "Failed to invite the following users to %(groupId)s:": "Fallo ao convidar as seguintes usuarias a %(groupId)s:",
- "Failed to invite users to community": "Fallou o convite de usuarias a comunidade",
- "Failed to invite users to %(groupId)s": "Fallou o convite de usuarias a %(groupId)s",
+ "Add to community": "Engadir á comunidade",
+ "Failed to invite the following users to %(groupId)s:": "Fallo ao convidar os seguintes usuarios a %(groupId)s:",
+ "Failed to invite users to community": "Houbo un fallo convidando usuarios á comunidade",
+ "Failed to invite users to %(groupId)s": "Houbo un fallo convidando usuarios a %(groupId)s",
"Failed to add the following rooms to %(groupId)s:": "Fallo ao engadir as seguintes salas a %(groupId)s:",
- "Riot does not have permission to send you notifications - please check your browser settings": "Riot non ten permiso para enviarlle notificacións - por favor comprobe os axustes do navegador",
- "Riot was not given permission to send notifications - please try again": "Riot non ten permiso para enviar notificacións - inténteo de novo",
- "Unable to enable Notifications": "Non se puideron habilitar as notificacións",
+ "Riot does not have permission to send you notifications - please check your browser settings": "Riot non ten permiso para enviarlle notificacións: comprobe os axustes do navegador",
+ "Riot was not given permission to send notifications - please try again": "Riot non ten permiso para enviar notificacións: inténteo de novo",
+ "Unable to enable Notifications": "Non se puideron activar as notificacións",
"This email address was not found": "Non se atopou este enderezo de correo",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "O seu enderezo de correo semella non estar asociado a un ID Matrix en este servidor.",
- "Default": "Por omisión",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "O seu enderezo de correo semella non estar asociado a un ID Matrix neste servidor.",
+ "Default": "Por defecto",
"Restricted": "Restrinxido",
"Moderator": "Moderador",
"Admin": "Administrador",
"Start a chat": "Iniciar unha conversa",
- "Who would you like to communicate with?": "Con quén desexa comunicarse?",
+ "Who would you like to communicate with?": "Con quen desexa comunicarse?",
"Email, name or matrix ID": "Correo, nome ou ID matrix",
"Start Chat": "Iniciar conversa",
- "Invite new room members": "Convidar a sala a novos membros",
- "Who would you like to add to this room?": "A quén desexaría engadir a esta sala?",
+ "Invite new room members": "Convidar a novos participantes",
+ "Who would you like to add to this room?": "A quen desexaría engadir a esta sala?",
"Send Invites": "Enviar convites",
"Failed to invite user": "Fallo ao convidar usuaria",
"Operation failed": "Fallou a operación",
"Failed to invite": "Fallou o convite",
- "Failed to invite the following users to the %(roomName)s room:": "Non se puideron convidar as seguintes usuarias a sala %(roomName)s:",
+ "Failed to invite the following users to the %(roomName)s room:": "Houbo un fallo convidando os seguintes usuarios á sala %(roomName)s:",
"You need to be logged in.": "Precisa estar conectada.",
- "You need to be able to invite users to do that.": "Vostede precisa estar autorizada a convidar usuarias para facer iso.",
- "Unable to create widget.": "Non se puido crear o widget.",
+ "You need to be able to invite users to do that.": "Precisa autorización para convidar a outros usuarias para poder facer iso.",
+ "Unable to create widget.": "Non se puido crear o trebello.",
"Failed to send request.": "Fallo ao enviar a petición.",
"This room is not recognised.": "Non se recoñece esta sala.",
"Power level must be positive integer.": "O nivel de poder ten que ser un enteiro positivo.",
- "You are not in this room.": "Vostede non está en esta sala.",
- "You do not have permission to do that in this room.": "Non ten permiso para facer eso en esta sala.",
+ "You are not in this room.": "Non está nesta sala.",
+ "You do not have permission to do that in this room.": "Non ten permiso para facer iso nesta sala.",
"Missing room_id in request": "Falta o room_id na petición",
- "Must be viewing a room": "Debería estar vendo unha sala",
"Room %(roomId)s not visible": "A sala %(roomId)s non é visible",
- "Missing user_id in request": "Falata o user_id na petición",
+ "Missing user_id in request": "Falta o user_id na petición",
"Usage": "Uso",
"/ddg is not a command": "/ddg non é unha orde",
"To use it, just wait for autocomplete results to load and tab through them.": "Para utilizala, agarde que carguen os resultados de autocompletado e escolla entre eles.",
"Unrecognised room alias:": "Alcumes de sala non recoñecidos:",
"Ignored user": "Usuaria ignorada",
"You are now ignoring %(userId)s": "Agora está a ignorar %(userId)s",
- "Unignored user": "Usuarias non ignorada",
+ "Unignored user": "Usuarios non ignorados",
"You are no longer ignoring %(userId)s": "Xa non está a ignorar a %(userId)s",
"Unknown (user, device) pair:": "Parella descoñecida (dispositivo, usuaria):",
"Device already verified!": "Dispositivo xa verificado!",
- "WARNING: Device already verified, but keys do NOT MATCH!": "AVISO: o dispositivo xa está verificado, que as chaves NON CONCORDAN!",
- "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "AVISO: FALLOU A VERIFICACIÓN DE CHAVES! A chave de firma para %(userId)s e dispositivo %(deviceId)s é \"%(fprint)s\" que non concorda coa chave proporcionada \"%(fingerprint)s\". Esto podería significar que as súas comunicacións están a ser interceptadas!",
+ "WARNING: Device already verified, but keys do NOT MATCH!": "Aviso: o dispositivo xa está verificado só que as chaves NON CONCORDAN!",
+ "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "AVISO: FALLOU A VERIFICACIÓN DE CHAVES! A chave de firma para o %(userId)s e dispositivo %(deviceId)s é \"%(fprint)s\" que non concorda coa chave proporcionada \"%(fingerprint)s\". Isto podería significar que as súas comunicacións están a ser interceptadas!",
"Verified key": "Chave verificada",
- "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "A chave de firma que proporcionou concorda coa chave de firma que recibeu do dispositivo %(deviceId)s de %(userId)s. Dispositivo marcado como verificado.",
+ "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "A chave de firma que proporcionou concorda coa chave de firma que recibiu do dispositivo %(deviceId)s de %(userId)s. Dispositivo marcado como verificado.",
"Unrecognised command:": "Orde non recoñecida:",
"Reason": "Razón",
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s aceptou o convite para %(displayName)s.",
@@ -123,7 +122,7 @@
"%(senderName)s changed their profile picture.": "%(senderName)s cambiou a súa imaxe de perfil.",
"%(senderName)s set a profile picture.": "%(senderName)s estableceu a imaxe de perfil.",
"VoIP conference started.": "Comezou a conferencia VoIP.",
- "%(targetName)s joined the room.": "%(targetName)s uneuse a sala.",
+ "%(targetName)s joined the room.": "%(targetName)s uniuse a sala.",
"VoIP conference finished.": "Rematou a conferencia VoIP.",
"%(targetName)s rejected the invitation.": "%(targetName)s rexeitou a invitación.",
"%(targetName)s left the room.": "%(targetName)s deixou a sala.",
@@ -143,25 +142,25 @@
"%(senderName)s ended the call.": "%(senderName)s rematou a chamada.",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s estableceu unha chamada %(callType)s.",
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s enviou un convite a %(targetDisplayName)s para unirse a sala.",
- "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s fixo o historial da sala visible para toda a membresía, desde o punto en que foron convidadas.",
- "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s estableceu o historial futuro visible a toda a membresía, desde o punto en que se uniron.",
- "%(senderName)s made future room history visible to all room members.": "%(senderName)s fixo visible para toda a membresía o historial futuro da sala.",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s fixo o historial da sala visible para todos os participantes, desde o punto en que foron convidadas.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s estableceu o historial futuro visible a todos os participantes, desde o punto en que se uniron.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s fixo visible para todos participantes o historial futuro da sala.",
"%(senderName)s made future room history visible to anyone.": "%(senderName)s fixo visible para calquera o historial futuro da sala.",
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s fixo visible o historial futuro da sala para descoñecidos (%(visibility)s).",
- "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s activou o cifrado extremo-a-extremo (algoritmo %(algorithm)s).",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s activou o cifrado de par-a-par (algoritmo %(algorithm)s).",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s desde %(fromPowerLevel)s a %(toPowerLevel)s",
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s cambiou o nivel de autoridade a %(powerLevelDiffText)s.",
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s cambiou as mensaxes fixadas para a sala.",
- "%(widgetName)s widget modified by %(senderName)s": "O engadido %(widgetName)s modificado por %(senderName)s",
- "%(widgetName)s widget added by %(senderName)s": "O %(widgetName)s engadido por %(senderName)s",
+ "%(widgetName)s widget modified by %(senderName)s": "O trebello %(widgetName)s modificado por %(senderName)s",
+ "%(widgetName)s widget added by %(senderName)s": "O trebello %(widgetName)s engadido por %(senderName)s",
"%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s eliminado por %(senderName)s",
"%(displayName)s is typing": "%(displayName)s está a escribir",
"%(names)s and %(count)s others are typing|other": "%(names)s e %(count)s outras están a escribir",
"%(names)s and %(count)s others are typing|one": "%(names)s e outra está a escribir",
"%(names)s and %(lastPerson)s are typing": "%(names)s e %(lastPerson)s están a escribir",
- "Failure to create room": "Fallo ao crear a sala",
+ "Failure to create room": "Fallou a creación da sala",
"Server may be unavailable, overloaded, or you hit a bug.": "O servidor podería non estar dispoñible, con sobrecarga ou ter un fallo.",
- "Send anyway": "Enviar de todos xeitos",
+ "Send anyway": "Enviar de todos os xeitos",
"Send": "Enviar",
"Unnamed Room": "Sala sen nome",
"Your browser does not support the required cryptography extensions": "O seu navegador non soporta as extensións de criptografía necesarias",
@@ -169,8 +168,7 @@
"Authentication check failed: incorrect password?": "Fallou a comprobación de autenticación: contrasinal incorrecto?",
"Failed to join room": "Non se puido unir a sala",
"Message Pinning": "Fixando mensaxe",
- "Tag Panel": "Panel de etiquetas",
- "Disable Emoji suggestions while typing": "Deshabilitar a suxestión de Emoji mentras escribe",
+ "Disable Emoji suggestions while typing": "Desactivar a suxestión de Emoji mentres escribe",
"Use compact timeline layout": "Utilizar a disposición compacta da liña temporal",
"Hide removed messages": "Ocultar mensaxes eliminadas",
"Hide join/leave messages (invites/kicks/bans unaffected)": "Ocultar mensaxes de unión/saída (convites/expulsións/bloqueos non afectados)",
@@ -178,19 +176,19 @@
"Hide display name changes": "Ocultar cambios no nome público",
"Hide read receipts": "Ocultar avisos de recepción",
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar marcas de tempo con formato 12 horas (ex. 2:30pm)",
- "Always show message timestamps": "Mostar sempre marcas de tempo",
+ "Always show message timestamps": "Mostrar sempre marcas de tempo",
"Autoplay GIFs and videos": "Reprodución automática de GIFs e vídeos",
- "Enable automatic language detection for syntax highlighting": "Habilitar a detección automática de idioma para o resalte da sintaxe",
+ "Enable automatic language detection for syntax highlighting": "Activar a detección automática de idioma para o resalte da sintaxe",
"Hide avatars in user and room mentions": "Ocultar avatares nas mencións de usuarios e salas",
- "Disable big emoji in chat": "Deshabilitar emojis grandes nas conversas",
+ "Disable big emoji in chat": "Desactivar emojis grandes nas conversas",
"Don't send typing notifications": "Non enviar notificacións de escritura",
"Automatically replace plain text Emoji": "Substituír automaticamente Emoji en texto plano",
- "Disable Peer-to-Peer for 1:1 calls": "Deshabilitar Peer-to-Peer para chamadas 1:1",
- "Never send encrypted messages to unverified devices from this device": "Non enviar mensaxes cifradas a dispositivos non verificados desde este dispositivo",
- "Never send encrypted messages to unverified devices in this room from this device": "Non enviar mensaxes cifradas a dispositivos non verificados en esta sala desde este dispositivo",
- "Enable inline URL previews by default": "Habilitar por omisión vistas previas en liña de URL",
- "Enable URL previews for this room (only affects you)": "Habilitar vista previa de URL en esta sala (só lle afecta a vostede)",
- "Enable URL previews by default for participants in this room": "Habilitar vista previa de URL por omisión para as participantes en esta sala",
+ "Disable Peer-to-Peer for 1:1 calls": "Desactivar Peer-to-Peer para chamadas 1:1",
+ "Never send encrypted messages to unverified devices from this device": "Nunca enviar mensaxes cifradas aos dispositivos que non estean verificados neste dispositivo",
+ "Never send encrypted messages to unverified devices in this room from this device": "Nunca enviar mensaxes cifradas aos dispositivos que non estean verificados nesta sala desde este dispositivo",
+ "Enable inline URL previews by default": "Activar por defecto as vistas previas en liña de URL",
+ "Enable URL previews for this room (only affects you)": "Activar avista previa de URL nesta sala (só lle afecta a vostede)",
+ "Enable URL previews by default for participants in this room": "Activar a vista previa de URL por defecto para as participantes nesta sala",
"Room Colour": "Cor da sala",
"Active call (%(roomName)s)": "Chamada activa (%(roomName)s)",
"unknown caller": "interlocutora descoñecida",
@@ -211,8 +209,8 @@
"Upload new:": "Subir nova:",
"No display name": "Sen nome público",
"New passwords don't match": "Os contrasinais novos non coinciden",
- "Passwords can't be empty": "Os contranais non poden estar baldeiros",
- "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Ao cambiar o contrasinal restablecerá todas as chaves de cifrado extremo-a-extremo en todos os dispositivos, facendo ilexible o historial da conversa a menos que primeiro exporte as chaves da sala e posteriormente as importe. No futuro melloraremos esto.",
+ "Passwords can't be empty": "Os contrasinais non poden estar baleiros",
+ "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Ao cambiar o contrasinal restablecerá todas as chaves de cifrado extremo-a-extremo en todos os dispositivos, facendo ilexible o historial da conversa a menos que primeiro exporte as chaves da sala e posteriormente as importe. No futuro melloraremos isto.",
"Continue": "Continuar",
"Export E2E room keys": "Exportar chaves E2E da sala",
"Do you want to set an email address?": "Quere establecer un enderezo de correo electrónico?",
@@ -231,14 +229,13 @@
"Last seen": "Visto por última vez",
"Select devices": "Escolla dispositivos",
"Failed to set display name": "Fallo ao establecer o nome público",
- "Disable Notifications": "Deshabilitar notificacións",
- "Enable Notifications": "Habilitar notificacións",
+ "Disable Notifications": "Desactivar notificacións",
+ "Enable Notifications": "Activar ass notificacións",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
- "Message Replies": "Respostas a mensaxe",
"Mirror local video feed": "Copiar fonte de vídeo local",
- "Cannot add any more widgets": "Non pode engadir máis widgets",
- "The maximum permitted number of widgets have already been added to this room.": "Xa se engadeu o número máximo de widgets a esta sala.",
- "Add a widget": "Engadir widget",
+ "Cannot add any more widgets": "Non pode engadir máis trebellos",
+ "The maximum permitted number of widgets have already been added to this room.": "Xa se lle engadiron o número máximo de trebellos a esta sala.",
+ "Add a widget": "Engadir un trebello",
"Drop File Here": "Solte aquí o ficheiro",
"Drop file here to upload": "Solte aquí o ficheiro para subilo",
" (unsupported)": " (non soportado)",
@@ -246,7 +243,7 @@
"Ongoing conference call%(supportedText)s.": "Chamada de conferencia en curso%(supportedText)s.",
"%(senderName)s sent an image": "%(senderName)s enviou unha imaxe",
"%(senderName)s sent a video": "%(senderName)s enviou un vídeo",
- "%(senderName)s uploaded a file": "%(senderName)s subeu un ficheiro",
+ "%(senderName)s uploaded a file": "%(senderName)s subiu un ficheiro",
"Options": "Axustes",
"Undecryptable": "Non descifrable",
"Encrypted by a verified device": "Cifrado por un dispositivo verificado",
@@ -271,7 +268,7 @@
"Failed to toggle moderator status": "Fallo ao mudar a estado de moderador",
"Failed to change power level": "Fallo ao cambiar o nivel de permisos",
"Are you sure?": "Está segura?",
- "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Non poderá desfacer este cambio xa que está promovendo a usaria a ter o mesmo nivel de permisos que vostede.",
+ "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Non poderá desfacer este cambio xa que lle estará promocionando e outorgándolle a outra persoa os mesmos permisos que os seus.",
"No devices with registered encryption keys": "Sen dispositivos con chaves de cifrado rexistradas",
"Devices": "Dispositivos",
"Unignore": "Non ignorar",
@@ -290,7 +287,7 @@
"and %(count)s others...|other": "e %(count)s outras...",
"and %(count)s others...|one": "e outra máis...",
"Invited": "Convidada",
- "Filter room members": "Filtrar membros da conversa",
+ "Filter room members": "Filtrar os participantes da conversa",
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (permiso %(powerLevelNumber)s)",
"Attachment": "Anexo",
"Upload Files": "Subir ficheiros",
@@ -306,9 +303,9 @@
"Send a reply (unencrypted)…": "Enviar unha resposta (non cifrada)…",
"Send an encrypted message…": "Enviar unha mensaxe cifrada…",
"Send a message (unencrypted)…": "Enviar unha mensaxe (non cifrada)…",
- "You do not have permission to post to this room": "Non ten permiso para comentar en esta sala",
- "Turn Markdown on": "Habilitar Markdown",
- "Turn Markdown off": "Deshabilitar Markdown",
+ "You do not have permission to post to this room": "Non ten permiso para comentar nesta sala",
+ "Turn Markdown on": "Activar Markdown",
+ "Turn Markdown off": "Desactivar Markdown",
"Hide Text Formatting Toolbar": "Agochar barra de formato de texto",
"Server error": "Fallo no servidor",
"Server unavailable, overloaded, or something else went wrong.": "Servidor non dispoñible, sobrecargado, ou outra cousa puido fallar.",
@@ -321,8 +318,8 @@
"quote": "cita",
"bullet": "lista",
"numbullet": "lista numerada",
- "Markdown is disabled": "Markdown deshabilitado",
- "Markdown is enabled": "Markdown habilitado",
+ "Markdown is disabled": "Markdown desactivado",
+ "Markdown is enabled": "Markdown activado",
"Unpin Message": "Desfixar mensaxe",
"Jump to message": "Ir a mensaxe",
"No pinned messages.": "Sen mensaxes fixadas.",
@@ -340,7 +337,7 @@
"Idle": "En pausa",
"Offline": "Fóra de liña",
"Unknown": "Descoñecido",
- "Replying": "Respostando",
+ "Replying": "Respondendo",
"Seen by %(userName)s at %(dateTime)s": "Visto por %(userName)s as %(dateTime)s",
"No rooms to show": "Sen salas que mostrar",
"Unnamed room": "Sala sen nome",
@@ -357,11 +354,11 @@
"Forget room": "Esquecer sala",
"Search": "Busca",
"Show panel": "Mostra panel",
- "Drop here to favourite": "Solte aqui para favorito",
+ "Drop here to favourite": "Solte aquí para favorito",
"Drop here to tag direct chat": "Solte aquí para etiquetar chat directo",
"Drop here to restore": "Solte aquí para restablecer",
"Drop here to tag %(section)s": "Solte aquí para etiquetar %(section)s",
- "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Non poderá desfacer este cambio xa que está a diminuír a súa autoridade, si vostede é a única usuaria con autorización na sala será imposible voltar a obter privilexios.",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Non poderá desfacer este cambio xa que está a diminuír a súa autoridade, se é a única persoa con autorización na sala será imposible volver a obter privilexios.",
"Drop here to demote": "Arrastre aquí para degradar",
"Press to start a chat with someone": "Pulse para iniciar a conversa con alguén",
"You're not in any rooms yet! Press to make a room or to browse the directory": "Aínda non está en ningunha sala! Pulse para crear unha sala ou para buscar no directorio",
@@ -377,75 +374,75 @@
"You have been invited to join this room by %(inviterName)s": "Foi convidada por %(inviterName)s a unirse a esta sala",
"Would you like to accept or decline this invitation?": "Quere aceptar ou rexeitar este convite?",
"Reason: %(reasonText)s": "Razón: %(reasonText)s",
- "Rejoin": "Voltar a unirse",
+ "Rejoin": "Volver a unirse",
"You have been kicked from %(roomName)s by %(userName)s.": "Foi expulsada de %(roomName)s por %(userName)s.",
- "You have been kicked from this room by %(userName)s.": "Foi expulsada de esta sala por %(userName)s.",
+ "You have been kicked from this room by %(userName)s.": "Foi expulsada desta sala por %(userName)s.",
"You have been banned from %(roomName)s by %(userName)s.": "Non se lle permite acceder a %(roomName)s por %(userName)s.",
"You have been banned from this room by %(userName)s.": "Non se lle permite o acceso a esta sala por %(userName)s.",
"This room": "Esta sala",
"%(roomName)s does not exist.": "%(roomName)s non existe.",
- "%(roomName)s is not accessible at this time.": "%(roomName)s non está accesible en este momento.",
+ "%(roomName)s is not accessible at this time.": "%(roomName)s non está accesible neste momento.",
"You are trying to access %(roomName)s.": "Está intentando acceder a %(roomName)s.",
"You are trying to access a room.": "Está intentando acceder a unha sala.",
"Click here to join the discussion!": "Pulse aquí para unirse a conversa!",
- "This is a preview of this room. Room interactions have been disabled": "Esta é unha vista previa de esta sala. Desactiváronse as interaccións coa sala",
+ "This is a preview of this room. Room interactions have been disabled": "Esta é unha vista previa desta sala. Desactiváronse as interaccións coa sala",
"To change the room's avatar, you must be a": "Para cambiar o avatar da sala, debe ser",
"To change the room's name, you must be a": "Para cambiar o nome da sala, debe ser",
"To change the room's main address, you must be a": "Para cambiar o enderezo principal da sala, debe ser",
"To change the room's history visibility, you must be a": "Para cambiar a visibilidade do histórico da sala, debe ser",
"To change the permissions in the room, you must be a": "Para cambiar os permisos na sala, debe ser",
"To change the topic, you must be a": "Para cambiar o asunto, debe ser",
- "To modify widgets in the room, you must be a": "Para modificar os widgets da sala, debe ser",
+ "To modify widgets in the room, you must be a": "Para modificar os trebellos da sala, debe ser",
"Failed to unban": "Fallou eliminar a prohibición",
"Banned by %(displayName)s": "Non aceptado por %(displayName)s",
"Privacy warning": "Aviso de intimidade",
- "Changes to who can read history will only apply to future messages in this room": "Os cambios sobre quen pode ler o histórico serán de aplicación a futuras mensaxes en esta sala",
+ "Changes to who can read history will only apply to future messages in this room": "Os cambios sobre quen pode ler o histórico serán de aplicación para as futuras mensaxes nesta sala",
"The visibility of existing history will be unchanged": "A visibilidade do histórico existente non cambiará",
"unknown error code": "código de fallo descoñecido",
"Failed to forget room %(errCode)s": "Fallo ao esquecer sala %(errCode)s",
- "End-to-end encryption is in beta and may not be reliable": "O cifrado de extremo-a-extremo está en beta e podería non ser fiable",
+ "End-to-end encryption is in beta and may not be reliable": "O cifrado de par-a-par está en beta e podería non ser fiable",
"You should not yet trust it to secure data": "Polo de agora non debería confiarlle datos seguros",
"Devices will not yet be able to decrypt history from before they joined the room": "Os dispositivos non poderán descifrar o histórico anterior a que se uniron a sala",
- "Once encryption is enabled for a room it cannot be turned off again (for now)": "Unha vez habilitado o cifrado para unha sala non se poderá desactivar (por agora)",
+ "Once encryption is enabled for a room it cannot be turned off again (for now)": "Unha vez activou o cifrado para unha sala non se poderá desactivar (por agora)",
"Encrypted messages will not be visible on clients that do not yet implement encryption": "As mensaxes cifradas non será visibles en clientes que non aínda non teñan implementado o cifrado",
- "Enable encryption": "Habilitar cifrado",
- "(warning: cannot be disabled again!)": "(aviso: non se pode deshabilitar!)",
- "Encryption is enabled in this room": "O cifrado está habilitado en esta sala",
- "Encryption is not enabled in this room": "O cifrado non se habilitou para esta sala",
+ "Enable encryption": "Activar o cifrado",
+ "(warning: cannot be disabled again!)": "(aviso: non se pode desactivar!)",
+ "Encryption is enabled in this room": "O cifrado está activado nesta sala",
+ "Encryption is not enabled in this room": "Non se activou o cifrado nesta sala",
"Privileged Users": "Usuarios con privilexios",
- "No users have specific privileges in this room": "Non hai usuarias con privilexios específicos en esta sala",
- "Banned users": "Usuarias non permitidas",
+ "No users have specific privileges in this room": "Non hai usuarios con privilexios específicos nesta sala",
+ "Banned users": "Usuarios excluídos",
"This room is not accessible by remote Matrix servers": "Esta sala non é accesible por servidores Matrix remotos",
"Leave room": "Deixar a sala",
"Favourite": "Favorita",
"Tagged as: ": "Etiquetada como: ",
"To link to a room it must have an address .": "Para ligar a unha sala deberá ter un enderezo .",
- "Guests cannot join this room even if explicitly invited.": "As convidadas non se poden unir a esta sala incluso se foro explicitamente convidadas.",
+ "Guests cannot join this room even if explicitly invited.": "Os convidados non se poden unir a esta sala inda que fosen convidados explicitamente.",
"Click here to fix": "Pulse aquí para solución",
- "Who can access this room?": "Quén pode acceder a esta sala?",
+ "Who can access this room?": "Quen pode acceder a esta sala?",
"Only people who have been invited": "Só persoas que foron convidadas",
"Anyone who knows the room's link, apart from guests": "Calquera que coñeza o enderezo da sala, aparte das convidadas",
"Anyone who knows the room's link, including guests": "Calquera que coñeza a ligazón a sala, incluíndo as convidadas",
"Publish this room to the public in %(domain)s's room directory?": "Publicar esta sala no directorio público de salas de %(domain)s?",
- "Who can read history?": "Quén pode ler o histórico?",
+ "Who can read history?": "Quen pode ler o histórico?",
"Anyone": "Calquera",
"Members only (since the point in time of selecting this option)": "Só membros (desde o momento en que se selecciona esta opción)",
"Members only (since they were invited)": "Só membros (desde que foron convidados)",
"Members only (since they joined)": "Só membros (desde que se uniron)",
"Permissions": "Permisos",
- "The default role for new room members is": "Por omisión o rol na sala para novos membros é",
+ "The default role for new room members is": "O rol por defecto na sala para novos participantes é",
"To send messages, you must be a": "Para enviar mensaxes, deberá ser",
- "To invite users into the room, you must be a": "Para convidar a usuarias a esta sala, debe ser",
+ "To invite users into the room, you must be a": "Para convidar a usuarios a esta sala, debe ser",
"To configure the room, you must be a": "Para configurar a sala, debe ser",
- "To kick users, you must be a": "Para expulsar usuarias, debe ser",
- "To ban users, you must be a": "Para prohibir usuarias, debe ser",
- "To remove other users' messages, you must be a": "Para eliminar mensaxes de outras usuarias, debe ser",
+ "To kick users, you must be a": "Para expulsar usuarios, debe ser",
+ "To ban users, you must be a": "Para prohibir usuarios, debe ser",
+ "To remove other users' messages, you must be a": "Para eliminar mensaxes doutras usuarios, debe ser",
"To send events of type , you must be a": "Para enviar eventos de tipo , debe ser",
"Advanced": "Avanzado",
- "This room's internal ID is": "O ID interno de esta sala é",
+ "This room's internal ID is": "O ID interno desta sala é",
"Add a topic": "Engadir asunto",
"Cancel": "Cancelar",
- "Scroll to unread messages": "Desplace ate mensaxes non lidas",
+ "Scroll to unread messages": "Desprazarse ate mensaxes non lidas",
"Jump to first unread message.": "Ir a primeira mensaxe non lida.",
"Close": "Pechar",
"Invalid alias format": "Formato de alias non válido",
@@ -463,10 +460,10 @@
"Invalid community ID": "ID da comunidade non válido",
"'%(groupId)s' is not a valid community ID": "'%(groupId)s' non é un ID de comunidade válido",
"New community ID (e.g. +foo:%(localDomain)s)": "Novo ID da comunidade (ex. +foo:%(localDomain)s)",
- "You have enabled URL previews by default.": "Vostede habilitou a vista previa de URL por omisión.",
- "You have disabled URL previews by default.": "Vostede desactivou a vista previa de URL por omisión.",
- "URL previews are enabled by default for participants in this room.": "As vistas previas de URL están habilitadas por omisión para os participantes de esta sala.",
- "URL previews are disabled by default for participants in this room.": "As vistas previas de URL están desactivadas por omisión para os participantes de esta sala.",
+ "You have enabled URL previews by default.": "Activou a vista previa de URL por defecto.",
+ "You have disabled URL previews by default.": "Desactivou a vista previa de URL por defecto.",
+ "URL previews are enabled by default for participants in this room.": "As vistas previas de URL están activas por defecto para os participantes desta sala.",
+ "URL previews are disabled by default for participants in this room.": "As vistas previas de URL están desactivadas por defecto para os participantes desta sala.",
"URL Previews": "Vista previa de URL",
"Error decrypting audio": "Fallo ao descifrar audio",
"Error decrypting attachment": "Fallo descifrando o anexo",
@@ -486,17 +483,17 @@
"Message removed by %(userId)s": "Mensaxe eliminada por %(userId)s",
"Message removed": "Mensaxe eliminada",
"Robot check is currently unavailable on desktop - please use a web browser ": "Comprobación por Robot non está dispoñible en escritorio - por favor utilice un navegador web ",
- "This Home Server would like to make sure you are not a robot": "Este Servidor quere asegurarse de que vostede non é un robot",
+ "This Home Server would like to make sure you are not a robot": "Este servidor quere asegurarse de que vostede non é un robot",
"Sign in with CAS": "Conectarse con CAS",
"Custom Server Options": "Opcións personalizadas do servidor",
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Pode utilizar as opcións personalizadas do servidor para conectarse a outros servidores Matrix indicando un URL de servidor de inicio diferente.",
- "This allows you to use this app with an existing Matrix account on a different home server.": "Así pode utilizar este aplicativo con unha conta Matrix existente en un servidor de incio diferente.",
- "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Tamén pode establecer un servidor de identidade personalizado pero esto normalmente dificulta a interacción con usuarias basándose non enderezo de correo.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Así pode utilizar este aplicativo con unha conta Matrix existente en un servidor de inicio diferente.",
+ "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Tamén pode establecer un servidor de identidade personalizado pero isto normalmente dificulta a interacción con usuarios baseándose non enderezo de correo.",
"Dismiss": "Rexeitar",
"To continue, please enter your password.": "Para continuar, por favor introduza o seu contrasinal.",
"Password:": "Contrasinal:",
"An email has been sent to %(emailAddress)s": "Enviouse un correo a %(emailAddress)s",
- "Please check your email to continue registration.": "Por favor comprobe o seu correo para continuar co rexistro.",
+ "Please check your email to continue registration.": "Comprobe o seu correo para continuar co rexistro.",
"Token incorrect": "Testemuño incorrecto",
"A text message has been sent to %(msisdn)s": "Enviouse unha mensaxe de texto a %(msisdn)s",
"Please enter the code it contains:": "Por favor introduza o código que contén:",
@@ -510,22 +507,22 @@
"Sign in with": "Conectarse con",
"Email address": "Enderezo de correo",
"Sign in": "Conectar",
- "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Si non indica un enderezo de correo non poderá restablecer o contrasinal, está segura?",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Se non indica un enderezo de correo non poderá restablecer o contrasinal, está seguro?",
"Email address (optional)": "Enderezo de correo (opcional)",
"You are registering with %(SelectedTeamName)s": "Estase a rexistrar con %(SelectedTeamName)s",
"Mobile phone number (optional)": "Número de teléfono móbil (opcional)",
- "Register": "Rexistar",
- "Default server": "Servidor por omisión",
+ "Register": "Rexistrar",
+ "Default server": "Servidor por defecto",
"Custom server": "Servidor personalizado",
"Home server URL": "URL do servidor de inicio",
"Identity server URL": "URL do servidor de identidade",
- "What does this mean?": "Qué significa esto?",
+ "What does this mean?": "Que significa isto?",
"Remove from community": "Eliminar da comunidade",
"Disinvite this user from community?": "Retirar o convite a comunidade a esta usuaria?",
"Remove this user from community?": "Quitar a esta usuaria da comunidade?",
"Failed to withdraw invitation": "Fallo ao retirar o convite",
"Failed to remove user from community": "Fallo ao quitar a usuaria da comunidade",
- "Filter community members": "Filtrar membros da comunidade",
+ "Filter community members": "Filtrar participantes na comunidade",
"Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Está segura de que quere eliminar '%(roomName)s' de %(groupId)s?",
"Removing a room from the community will also remove it from the community page.": "Eliminar unha sala da comunidade tamén a quitará da páxina da comunidade.",
"Remove": "Eliminar",
@@ -535,18 +532,18 @@
"The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "A visibilidade de '%(roomName)s' en %(groupId)s non se puido actualizar.",
"Visibility in Room List": "Visibilidade na Lista de Salas",
"Visible to everyone": "Visible para todo o mundo",
- "Only visible to community members": "Só visible para membros da comunidade",
+ "Only visible to community members": "Só visible para os participantes da comunidade",
"Filter community rooms": "Filtrar salas da comunidade",
"Something went wrong when trying to get your communities.": "Algo fallou ao intentar obter as súas comunidades.",
"You're not currently a member of any communities.": "Ate o momento non é membro de ningunha comunidade.",
"Unknown Address": "Enderezo descoñecido",
- "NOTE: Apps are not end-to-end encrypted": "NOTA: As Apps non están cifradas de extremo-a-extremo",
- "Do you want to load widget from URL:": "Quere cargar o widget da URL:",
+ "NOTE: Apps are not end-to-end encrypted": "NOTA: As Apps non están cifradas de par-a-par",
+ "Do you want to load widget from URL:": "Quere cargar o trebello da URL:",
"Allow": "Permitir",
- "Delete Widget": "Eliminar Widget",
- "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un widget eliminao para todas as usuarias de esta sala. Está segura de querer eliminar este widget?",
- "Delete widget": "Eliminar widget",
- "Revoke widget access": "Retirar acceso ao widget",
+ "Delete Widget": "Eliminar trebello",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un trebello elimínao para todas os usuarios desta sala. Está seguro de querer eliminar este trebello?",
+ "Delete widget": "Eliminar trebello",
+ "Revoke widget access": "Retirar acceso ao trebello",
"Minimize apps": "Minimizar apps",
"Edit": "Editar",
"Create new room": "Crear unha nova sala",
@@ -565,25 +562,25 @@
"%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s uníronse %(count)s veces",
"%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s uníronse",
"%(oneUser)sjoined %(count)s times|other": "%(oneUser)s uniuse %(count)s veces",
- "%(oneUser)sjoined %(count)s times|one": "%(oneUser)s uníuse",
+ "%(oneUser)sjoined %(count)s times|one": "%(oneUser)s uniuse",
"%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s saíron %(count)s veces",
"%(severalUsers)sleft %(count)s times|one": "%(severalUsers)s saíron",
- "%(oneUser)sleft %(count)s times|other": "%(oneUser)s saiu %(count)s veces",
- "%(oneUser)sleft %(count)s times|one": "%(oneUser)s saiu",
+ "%(oneUser)sleft %(count)s times|other": "%(oneUser)s saíu %(count)s veces",
+ "%(oneUser)sleft %(count)s times|one": "%(oneUser)s saio",
"%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)s uníronse e saíron %(count)s veces",
"%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)s uníronse e saíron",
- "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)s uniuse e saiu %(count)s veces",
- "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s uníuse e saiu",
- "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s saíron e voltaron %(count)s veces",
- "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s saíron e voltaron",
- "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s saiu e voltou %(count)s veces",
- "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s saiu e voltou",
+ "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)s uniuse e saio %(count)s veces",
+ "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s uniuse e saíu",
+ "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s saíron e volveron %(count)s veces",
+ "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s saíron e votaron",
+ "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s saíu e volveu %(count)s veces",
+ "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s saíu e volveu",
"%(severalUsers)srejected their invitations %(count)s times|other": "%(severalUsers)s rexeitaron convites %(count)s veces",
"%(severalUsers)srejected their invitations %(count)s times|one": "%(severalUsers)s rexeitaron os seus convites",
"%(oneUser)srejected their invitation %(count)s times|other": "%(oneUser)s rexeitou o seu convite %(count)s veces",
"%(oneUser)srejected their invitation %(count)s times|one": "%(oneUser)s rexeitou o seu convite",
"%(severalUsers)shad their invitations withdrawn %(count)s times|other": "retiróuselle o convite a %(severalUsers)s %(count)s veces",
- "%(severalUsers)shad their invitations withdrawn %(count)s times|one": "retirouselle o convite a %(severalUsers)s",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|one": "retiróuselle o convite a %(severalUsers)s",
"%(oneUser)shad their invitation withdrawn %(count)s times|other": "retiróuselle o convite a %(oneUser)s %(count)s veces",
"%(oneUser)shad their invitation withdrawn %(count)s times|one": "retiróuselle o convite a %(oneUser)s",
"were invited %(count)s times|other": "foron convidados %(count)s veces",
@@ -594,9 +591,9 @@
"were banned %(count)s times|one": "foron prohibidas",
"was banned %(count)s times|other": "foi prohibida %(count)s veces",
"was banned %(count)s times|one": "foi prohibida",
- "were unbanned %(count)s times|other": "retirouselle a prohibición %(count)s veces",
- "were unbanned %(count)s times|one": "retirouselle a prohibición",
- "was unbanned %(count)s times|other": "retirouselle a prohibición %(count)s veces",
+ "were unbanned %(count)s times|other": "retiróuselle a prohibición %(count)s veces",
+ "were unbanned %(count)s times|one": "retrouseille a prohibición",
+ "was unbanned %(count)s times|other": "retrouseille a prohibición %(count)s veces",
"was unbanned %(count)s times|one": "retiróuselle a prohibición",
"were kicked %(count)s times|other": "foron expulsadas %(count)s veces",
"were kicked %(count)s times|one": "foron expulsadas",
@@ -626,7 +623,7 @@
"Matrix Room ID": "ID sala Matrix",
"email address": "enderezo de correo",
"Try using one of the following valid address types: %(validTypesList)s.": "Intentar utilizar algún dos seguintes tipos de enderezo válidos: %(validTypesList)s.",
- "You have entered an invalid address.": "Introduxo un enderezo non válido.",
+ "You have entered an invalid address.": "Introduciu un enderezo non válido.",
"Create a new chat or reuse an existing one": "Crear un novo chat ou reutilizar un xa existente",
"Start new chat": "Iniciar un novo chat",
"You already have existing direct chats with this user:": "Xa ten unha conversa directa con esta usuaria:",
@@ -634,10 +631,10 @@
"Click on the button below to start chatting!": "Pulse non botón inferior para iniciar a conversar!",
"Start Chatting": "Iniciar a conversa",
"Confirm Removal": "Confirme a retirada",
- "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Está certa de que quere quitar (eliminar) este evento? Sepa que si elimina un nome de sala ou cambia o asunto, podería desfacer o cambio.",
+ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Está certa de que quere quitar (eliminar) este evento? Saiba que si elimina un nome de sala ou cambia o asunto, podería desfacer o cambio.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Os ID de comunidade só poden conter caracteres a-z, 0-9, or '=_-./'",
- "Community IDs cannot not be empty.": "O ID de comunidade non pode quedar baldeiro.",
- "Something went wrong whilst creating your community": "Algo fallou mentras se creaba a súa comunidade",
+ "Community IDs cannot be empty.": "O ID de comunidade non pode quedar baldeiro.",
+ "Something went wrong whilst creating your community": "Algo fallou mentres se creaba a súa comunidade",
"Create Community": "Crear comunidade",
"Community Name": "Nome da comunidade",
"Example": "Exemplo",
@@ -647,37 +644,37 @@
"Create Room": "Crear sala",
"Room name (optional)": "Nome da sala (opcional)",
"Advanced options": "Axustes avanzados",
- "Block users on other matrix homeservers from joining this room": "Evitar que usuarias de outros servidores matrix se unan a esta sala",
+ "Block users on other matrix homeservers from joining this room": "Evitar que usuarios doutros servidores matrix se unan a esta sala",
"This setting cannot be changed later!": "Esta preferencia non se pode cambiar máis tarde!",
"Unknown error": "Fallo descoñecido",
"Incorrect password": "Contrasinal incorrecto",
"Deactivate Account": "Desactivar conta",
"Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Non se pode determinar si o enderezo ao que foi enviado este convite coincide con un dos asociados a súa conta.",
- "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "Para verificar que se pode confiar en este dispositivo, contacte co seu dono utilizando algún outro medio (ex. en persoa ou chamada de teléfono) e pregúntelle si a chave que ven nos Axustes de Usuaria do se dispositivo coincide coa chave inferior:",
+ "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "Para verificar que se pode confiar neste dispositivo, contacte co seu dono utilizando algún outro medio (ex. en persoa ou chamada de teléfono) e pregúntelle se a clave que ven nos axustes de usuario do se dispositivo coincide coa clave inferior:",
"Device name": "Nome do dispositivo",
"Device key": "Chave do dispositivo",
- "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Si concorda, pulse o botón verificar. Si non, entón alguén está interceptando este dispositivo e probablemente vostede desexe pulsar o botón lista negra.",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Se concorda, pulse o botón verificar. Si non, entón alguén está interceptando este dispositivo e probablemente vostede desexe pulsar o botón lista negra.",
"In future this verification process will be more sophisticated.": "No futuro este proceso de verificación será máis sofisticado.",
"Verify device": "Verificar dispositivo",
"I verify that the keys match": "Certifico que coinciden as chaves",
"An error has occurred.": "Algo fallou.",
"OK": "OK",
- "You added a new device '%(displayName)s', which is requesting encryption keys.": "Engadeu un novo dispositivo '%(displayName)s', que está a solicitar as chaves de cifrado.",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Engadiu un novo dispositivo '%(displayName)s', que está a solicitar as chaves de cifrado.",
"Your unverified device '%(displayName)s' is requesting encryption keys.": "O seu dispositivo non verificado '%(displayName)s' está solicitando chaves de cifrado.",
"Start verification": "Iniciar verificación",
- "Share without verifying": "Compartir sin verificar",
+ "Share without verifying": "Compartir sen verificar",
"Ignore request": "Ignorar petición",
"Loading device info...": "Cargando información do dispositivo...",
"Encryption key request": "Petición de chave de cifrado",
"Unable to restore session": "Non se puido restaurar a sesión",
- "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Si anteriormente utilizou unha versión máis recente de Riot, a súa sesión podería non ser compatible con esta versión. Peche esta ventá e volte a versión máis recente.",
- "Invalid Email Address": "Enderezo de email non válido",
- "This doesn't appear to be a valid email address": "Este non semella ser un enderezo de email válido",
+ "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Si anteriormente utilizou unha versión máis recente de Riot, a súa sesión podería non ser compatible con esta versión. Peche esta ventá e volva a versión máis recente.",
+ "Invalid Email Address": "Enderezo de correo non válido",
+ "This doesn't appear to be a valid email address": "Este non semella ser un enderezo de correo válido",
"Verification Pending": "Verificación pendente",
- "Please check your email and click on the link it contains. Once this is done, click continue.": "Por favor comprobe o seu email e pulse na ligazón que contén. Unha vez feito, pulse continuar.",
- "Unable to add email address": "Non se puido engadir enderezo de email",
- "Unable to verify email address.": "Non se puido verificar enderezo de email.",
- "This will allow you to reset your password and receive notifications.": "Esto permitiralle restablecer o seu contrasinal e recibir notificacións.",
+ "Please check your email and click on the link it contains. Once this is done, click continue.": "Comprobe o seu correo electrónico e pulse na ligazón que contén. Unha vez feito iso prema continuar.",
+ "Unable to add email address": "Non se puido engadir enderezo de correo",
+ "Unable to verify email address.": "Non se puido verificar enderezo de correo electrónico.",
+ "This will allow you to reset your password and receive notifications.": "Isto permitiralle restablecer o seu contrasinal e recibir notificacións.",
"Skip": "Saltar",
"User names may only contain letters, numbers, dots, hyphens and underscores.": "Os nomes de usuaria só poden conter letras, números, puntos e guión alto e baixo.",
"Username not available": "Nome de usuaria non dispoñible",
@@ -686,8 +683,8 @@
"Username available": "Nome de usuaria dispoñible",
"To get started, please pick a username!": "Para comezar, escolla un nome de usuaria!",
"This will be your account name on the homeserver, or you can pick a different server .": "Este será o nome da súa conta no servidor, ou pode escoller un servidor diferente .",
- "If you already have a Matrix account you can log in instead.": "Si xa ten unha conta Matrix entón pode conectarse .",
- "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "En este momento está por na lista negra os dispositivos non verificados; para enviar mensaxes a eses dispositivos debe verificalos.",
+ "If you already have a Matrix account you can log in instead.": "Se xa ten unha conta Matrix entón pode conectarse .",
+ "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Neste momento está por na lista negra os dispositivos non verificados; para enviar mensaxes a eses dispositivos debe verificalos.",
"We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Recomendámoslle que vaia ao proceso de verificación para cada dispositivo para confirmar que pertencen ao seu dono lexítimos, pero se o prefire pode enviar a mensaxe sen ter verificado.",
"Room contains unknown devices": "A sala contén dispositivos descoñecidos",
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" contén dispositivos que vostede non vira antes.",
@@ -699,22 +696,22 @@
"Name": "Nome",
"Topic": "Asunto",
"Make this room private": "Facer que esta sala sexa privada",
- "Share message history with new users": "Compartir o histórico de mensaxes coas novas usuarias",
- "Encrypt room": "Cifrar sala",
+ "Share message history with new users": "Compartir o histórico de mensaxes cos novos usuarios",
+ "Encrypt room": "Cifrar a sala",
"You must register to use this functionality": "Debe rexistrarse para utilizar esta función",
"You must join the room to see its files": "Debe unirse a sala para ver os seus ficheiros",
- "There are no visible files in this room": "Non hai ficheiros visibles en esta sala",
+ "There are no visible files in this room": "Non hai ficheiros visibles nesta sala",
"HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "HTML para a páxina da súa comunidade \n\n Utilice a descrición longa para presentar novos membros a comunidade, ou publicar algunha ligazón importante\n \n
\n\n Tamén pode utilizar etiquetas 'img'\n
\n",
"Add rooms to the community summary": "Engadir salas ao resumo da comunidade",
- "Which rooms would you like to add to this summary?": "Qué salas desexa engadir a este resumo?",
+ "Which rooms would you like to add to this summary?": "Que salas desexa engadir a este resumo?",
"Add to summary": "Engadir ao resumo",
"Failed to add the following rooms to the summary of %(groupId)s:": "Algo fallou ao engadir estas salas ao resumo de %(groupId)s:",
"Add a Room": "Engadir unha sala",
"Failed to remove the room from the summary of %(groupId)s": "Algo fallou ao quitar a sala do resumo de %(groupId)s",
"The room '%(roomName)s' could not be removed from the summary.": "A sala '%(roomName)s' non se puido eliminar do resumo.",
- "Add users to the community summary": "Engadir usuarias ao resumo da comunidade",
- "Who would you like to add to this summary?": "A quén desexa engadir a este resumo?",
- "Failed to add the following users to the summary of %(groupId)s:": "Algo fallou ao engadir as seguintes usuarias ao resumo de %(groupId)s:",
+ "Add users to the community summary": "Engadir usuarios ao resumo da comunidade",
+ "Who would you like to add to this summary?": "A quen desexa engadir a este resumo?",
+ "Failed to add the following users to the summary of %(groupId)s:": "Algo fallou ao engadir aos seguintes usuarios ao resumo de %(groupId)s:",
"Add a User": "Engadir unha usuaria",
"Failed to remove a user from the summary of %(groupId)s": "Algo fallou ao eliminar a usuaria do resumo de %(groupId)s",
"The user '%(displayName)s' could not be removed from the summary.": "A usuaria '%(displayName)s' non se puido eliminar do resumo.",
@@ -726,14 +723,14 @@
"Leave %(groupName)s?": "Deixar %(groupName)s?",
"Leave": "Saír",
"Community Settings": "Axustes da comunidade",
- "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Estas salas son mostradas aos membros da comunidade na páxina da comunidade. Os membros da comunidade poden unirse as salas pulsando en elas.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Estas salas móstranselle aos membros da comunidade na páxina da comunidade.Os participantes da comunidade poden unirse ás salas premendo nelas.",
"Add rooms to this community": "Engadir salas a esta comunidade",
"Featured Rooms:": "Salas destacadas:",
- "Featured Users:": "Usuarias destacadas:",
+ "Featured Users:": "Usuarios destacados:",
"%(inviter)s has invited you to join this community": "%(inviter)s convidouna a unirse a esta comunidade",
"You are an administrator of this community": "Vostede administra esta comunidade",
- "You are a member of this community": "Vostede é membro de esta comunidade",
- "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "A súa comunidade non ten unha Descrición Longa, unha páxina HTML para mostrar aos membros. Pulse aquí para abrir os axustes e publicar unha!",
+ "You are a member of this community": "É membro desta comunidade",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "A súa comunidade non ten unha descrición longa, ou unha páxina HTML que lle mostrar aos seus participantes. Pulse aquí para abrir os axustes e publicar unha!",
"Long Description (HTML)": "Descrición longa (HTML)",
"Description": "Descrición",
"Community %(groupId)s not found": "Non se atopou a comunidade %(groupId)s",
@@ -749,13 +746,11 @@
"Old cryptography data detected": "Detectouse o uso de criptografía sobre datos antigos",
"Logout": "Desconectar",
"Your Communities": "As súas Comunidades",
- "Error whilst fetching joined communities": "Fallo mentras se obtiñas as comunidades unidas",
+ "Error whilst fetching joined communities": "Fallo mentres se obtiñas as comunidades unidas",
"Create a new community": "Crear unha nova comunidade",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Crear unha comunidade para agrupar usuarias e salas! Poña unha páxina de inicio personalizada para destacar o seu lugar no universo Matrix.",
- "Join an existing community": "Unirse a unha comunidade existente",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Para unirse a unha comunidade existente deberá coñecer o identificador de esa comunidade; terá un aspecto como +exemplo:matrix.org .",
"You have no visible notifications": "Non ten notificacións visibles",
- "Scroll to bottom of page": "Desplácese ate o final da páxina",
+ "Scroll to bottom of page": "Desprácese ate o final da páxina",
"Message not sent due to unknown devices being present": "Non se enviou a mensaxe porque hai dispositivos non coñecidos",
"Show devices , send anyway or cancel .": "Mostrar dispositivos , enviar igualmente ou cancelar .",
"%(count)s of your messages have not been sent.|other": "Algunha das súas mensaxes non foron enviadas.",
@@ -764,7 +759,7 @@
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Reenviar mensaxe ou cancelar mensaxe agora.",
"Warning": "Aviso",
"Connectivity to the server has been lost.": "Perdeuse a conexión ao servidor.",
- "Sent messages will be stored until your connection has returned.": "As mensaxes enviadas gardaránse ate que retome a conexión.",
+ "Sent messages will be stored until your connection has returned.": "As mensaxes enviadas gardaranse ate que retome a conexión.",
"%(count)s new messages|other": "%(count)s novas mensaxes",
"%(count)s new messages|one": "%(count)s nova mensaxe",
"Active call": "Chamada activa",
@@ -785,19 +780,19 @@
"Click to mute video": "Pulse para acalar video",
"Click to unmute audio": "Pulse para escoitar audio",
"Click to mute audio": "Pulse para acalar audio",
- "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Intentouse cargar un punto concreto do historial de esta sala, pero vostede non ten permiso para ver a mensaxe en cuestión.",
- "Tried to load a specific point in this room's timeline, but was unable to find it.": "Intentouse cargar un punto específico do historial de esta sala, pero non se puido atopar.",
+ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Intentouse cargar un punto concreto do historial desta sala, pero non ten permiso para ver a mensaxe en cuestión.",
+ "Tried to load a specific point in this room's timeline, but was unable to find it.": "Intentouse cargar un punto específico do historial desta sala, pero non se puido atopar.",
"Failed to load timeline position": "Fallo ao cargar posición da liña temporal",
"Uploading %(filename)s and %(count)s others|other": "Subindo %(filename)s e %(count)s máis",
"Uploading %(filename)s and %(count)s others|zero": "Subindo %(filename)s",
"Uploading %(filename)s and %(count)s others|one": "Subindo %(filename)s e %(count)s máis",
"Light theme": "Decorado claro",
- "Dark theme": "Decorado oscuro",
+ "Dark theme": "Decorado escuro",
"Status.im theme": "Decorado Status.im",
"Can't load user settings": "Non se puideron cargar os axustes de usuaria",
"Server may be unavailable or overloaded": "O servidor podería non está dispoñible ou sobrecargado",
"Sign out": "Desconectar",
- "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "Por seguridade, ao desconectarse borrará todas as chaves de cifrado extremo-a-extremo en este navegador. Si quere poder descifrar o historial da conversa en futuras sesións en Riot, por favor exporte as chaves da sala e gárdeas en lugar seguro.",
+ "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "Por seguridade, ao desconectarse borrará todas as chaves de cifrado par-a-par ste navegador. Se quere poder descifrar o historial da conversa en futuras sesións en Riot, por favor exporte as chaves da sala e gárdeas en lugar seguro.",
"Failed to change password. Is your password correct?": "Fallo ao cambiar o contrasinal. É correcto o contrasinal?",
"Success": "Parabéns",
"Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "O seu contrasinal cambiouse correctamente. Non recibirá notificacións tipo push en outros dispositivos ate que se conecte novamente en eles",
@@ -807,17 +802,17 @@
"Refer a friend to Riot:": "Convide a un amigo a Riot:",
"Interface Language": "Idioma da Interface",
"User Interface": "Interface de usuaria",
- "Autocomplete Delay (ms):": "Retraso no autocompletado (ms):",
+ "Autocomplete Delay (ms):": "Atraso no autocompletado (ms):",
"": "",
"Import E2E room keys": "Importar chaves E2E da sala",
"Cryptography": "Criptografía",
"Device ID:": "ID de dispositivo:",
"Device key:": "Chave do dispositivo:",
- "Ignored Users": "Usuarias ignoradas",
+ "Ignored Users": "Usuarios ignorados",
"Analytics": "Analytics",
"Riot collects anonymous analytics to allow us to improve the application.": "Riot recolle información analítica anónima para permitirnos mellorar o aplicativo.",
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "A intimidade impórtanos, así que non recollemos información personal ou identificable nos datos dos nosos análises.",
- "Learn more about how we use analytics.": "Saber máis sobre cómo utilizamos analytics.",
+ "Learn more about how we use analytics.": "Saber máis sobre como utilizamos analytics.",
"Labs": "Labs",
"These are experimental features that may break in unexpected ways": "Estas son características experimentais que poderían dar lugar a fallos non agardados",
"Use with caution": "Utilice con precaución",
@@ -828,24 +823,24 @@
"Check for update": "Comprobar actualización",
"Reject all %(invitedRooms)s invites": "Rexeitar todos os %(invitedRooms)s convites",
"Bulk Options": "Opcións en bloque",
- "Desktop specific": "Específicas de escritorio",
- "Start automatically after system login": "Iniciar automáticamente despóis de iniciar sesión",
+ "Desktop specific": "Configuracións de escritorio",
+ "Start automatically after system login": "Iniciar automaticamente despois de iniciar sesión",
"No media permissions": "Sen permisos de medios",
"You may need to manually permit Riot to access your microphone/webcam": "Igual ten que permitir manualmente a Riot acceder ao seus micrófono e cámara",
"Missing Media Permissions, click here to request.": "Faltan permisos de medios, pulse aquí para solicitalos.",
"No Microphones detected": "Non se detectaron micrófonos",
"No Webcams detected": "Non se detectaron cámaras",
- "Default Device": "Dispositivo por omisión",
+ "Default Device": "Dispositivo por defecto",
"Microphone": "Micrófono",
"Camera": "Cámara",
"VoIP": "VoIP",
- "Email": "Correo-e",
- "Add email address": "Engadir enderezo correo-e",
+ "Email": "Correo electrónico",
+ "Add email address": "Engadir enderezo correo electrónico",
"Notifications": "Notificacións",
"Profile": "Perfil",
"Display name": "Nome mostrado",
"Account": "Conta",
- "To return to your account in future you need to set a password": "Estableza un contrasinal para voltar a súa conta con posterioridade",
+ "To return to your account in future you need to set a password": "Estableza un contrasinal para volver a súa conta con posterioridade",
"Logged in as:": "Conectada como:",
"Access Token:": "Testemuño de acceso:",
"click to reveal": "pulse para revelar",
@@ -854,32 +849,31 @@
"matrix-react-sdk version:": "versión matrix-react-sdk:",
"riot-web version:": "versión riot-web:",
"olm version:": "versión olm:",
- "Failed to send email": "Fallo ao enviar correo-e",
- "The email address linked to your account must be entered.": "Debe introducir o correo-e ligado a súa conta.",
+ "Failed to send email": "Fallo ao enviar correo electrónico",
+ "The email address linked to your account must be entered.": "Debe introducir o correo electrónico ligado a súa conta.",
"A new password must be entered.": "Debe introducir un novo contrasinal.",
"New passwords must match each other.": "Os novos contrasinais deben ser coincidentes.",
- "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Detectáronse datos de una versión anterior de Riot. Esto causará un mal funcionamento da criptografía extremo-a-extremo na versión antiga. As mensaxes cifradas extremo-a-extremo intercambiadas mentras utilizaba a versión anterior poderían non ser descifrables en esta versión. Esto tamén podería causar que mensaxes intercambiadas con esta versión tampouco funcionasen. Si ten problemas, desconéctese e conéctese de novo. Para manter o historial de mensaxes, exporte e reimporte as súas chaves.",
- "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "O restablecemento do contrasinal restablecerá tamén as chaves de cifrado extremo-a-extremo en todos os dispositivos, facendo o historial de chat cifrado non lexible, a menos que primeiro exporte as chaves da sala e as reimporte posteriormente. No futuro melloraremos esto.",
- "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "Enviouse un email a %(emailAddress)s. Unha vez siga a ligazón que contén, pulse abaixo.",
- "I have verified my email address": "Validei o meu enderezo de correo-e",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Detectáronse datos de una versión anterior de Riot. Isto causará un mal funcionamento da criptografía extremo-a-extremo na versión antiga. As mensaxes cifradas extremo-a-extremo intercambiadas mentres utilizaba a versión anterior poderían non ser descifrables en esta versión. Isto tamén podería causar que mensaxes intercambiadas con esta versión tampouco funcionasen. Se ten problemas, desconéctese e conéctese de novo. Para manter o historial de mensaxes, exporte e reimporte as súas chaves.",
+ "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "O restablecemento do contrasinal restablecerá tamén as chaves de cifrado extremo-a-extremo en todos os dispositivos, facendo o historial de chat cifrado non lexible, a menos que primeiro exporte as chaves da sala e as reimporte posteriormente. No futuro melloraremos isto.",
+ "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "Enviouse un correo a %(emailAddress)s. Unha vez siga a ligazón que contén, pulse abaixo.",
+ "I have verified my email address": "Validei o meu enderezo de correo electrónico",
"Your password has been reset": "Restableceuse o seu contrasinal",
"You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "Foi desconectado de todos os seus dispositivos e xa non recibirá notificacións push. Para reactivar as notificacións, conéctese de novo en cada dispositivo",
- "Return to login screen": "Voltar a pantalla de conexión",
+ "Return to login screen": "Volver a pantalla de conexión",
"To reset your password, enter the email address linked to your account": "Para restablecer o seu contrasinal, introduza o enderezo de correo electrónico ligado a súa conta",
"New password": "Novo contrasinal",
"Confirm your new password": "Confirme o seu novo contrasinal",
- "Send Reset Email": "Enviar correo-e de restablecemento",
+ "Send Reset Email": "Enviar correo electrónico de restablecemento",
"Create an account": "Crear unha conta",
- "This Home Server does not support login using email address.": "Este servidor non soporta a conexión utilizando un enderezo de correo-e.",
+ "This Home Server does not support login using email address.": "Este servidor non soporta a conexión utilizando un enderezo de correo electrónico.",
"Incorrect username and/or password.": "Nome de usuaria ou contrasinal non válidos.",
"Please note you are logging into the %(hs)s server, not matrix.org.": "Teña en conta que se está a conectar ao servidor %(hs)s, non a matrix.org.",
- "Guest access is disabled on this Home Server.": "O acceso de convidados está deshabilitado en este servidor de inicio.",
+ "Guest access is disabled on this Home Server.": "O acceso de convidados está desactivado neste servidor de inicio.",
"The phone number entered looks invalid": "O número de teléfono introducido non semella ser válido",
"This homeserver doesn't offer any login flows which are supported by this client.": "Este servidor non ofrece ningún sistema de conexión que soporte este cliente.",
"Error: Problem communicating with the given homeserver.": "Fallo: problema ao comunicarse con servidor proporcionado.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Non se pode conectar ao servidor vía HTTP cando na barra de enderezos do navegador está HTTPS. Utilice HTTPS ou active scripts non seguros .",
- "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Non se conectou ao servidor - por favor comprobe a conexión, asegúrese de o certificado SSL do servidor é de confianza, e que ningún engadido do navegador está bloqueando as peticións.",
- "Login as guest": "Conexión como convidado",
+ "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Non se conectou ao servidor - por favor comprobe a conexión, asegúrese de que ocertificado SSL do servidor sexa de confianza, e que ningún engadido do navegador estea bloqueando as peticións.",
"Sign in to get started": "Conéctese para iniciar",
"Failed to fetch avatar URL": "Fallo ao obter o URL do avatar",
"Set a display name:": "Establecer nome público:",
@@ -888,7 +882,7 @@
"Missing password.": "Falta contrasinal.",
"Passwords don't match.": "Non coinciden os contrasinais.",
"Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Contrasinal demasiado curto (min %(MIN_PASSWORD_LENGTH)s).",
- "This doesn't look like a valid email address.": "Non semella ser un enderezo de correo-e válido.",
+ "This doesn't look like a valid email address.": "Non semella ser un enderezo de correo electrónico válido.",
"This doesn't look like a valid phone number.": "Non semella ser un número de teléfono válido.",
"You need to enter a user name.": "É preciso que introduza un nome de usuaria.",
"An unknown error occurred.": "Aconteceu un erro descoñecido.",
@@ -911,8 +905,8 @@
"Results from DuckDuckGo": "Resultados desde DuckDuckGo",
"Emoji": "Emoji",
"Notify the whole room": "Notificar a toda a sala",
- "Room Notification": "Notificación da Sala",
- "Users": "Usuarias",
+ "Room Notification": "Notificación da sala",
+ "Users": "Usuarios",
"unknown device": "dispositivo descoñecido",
"NOT verified": "Non validado",
"verified": "validado",
@@ -932,86 +926,85 @@
"Passphrases must match": "As frases de paso deben coincidir",
"Passphrase must not be empty": "A frase de paso non pode quedar baldeira",
"Export room keys": "Exportar chaves da sala",
- "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Este proceso permítelle exportar a un ficheiro local as chaves para as mensaxes que recibeu en salas cifradas. Posteriormente permitiralle importar as chaves en outro cliente Matrix no futuro, así o cliente poderá descifrar esas mensaxes.",
- "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "O ficheiro exportado permitiralle a calquera que poida lelo descifrar e cifrar mensaxes que vostede ve, así que debería ter coidado e gardalo de xeito seguro. Para axudarlle, debe introducir unha frase de paso aquí abaixo que será utilizada para cifrar os datos exportados. Só será posible importar os datos utilizando a misma frase de paso.",
+ "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Este proceso permítelle exportar a un ficheiro local as chaves para as mensaxes que recibiu en salas cifradas. Posteriormente permitiralle importar as chaves en outro cliente Matrix no futuro, así o cliente poderá descifrar esas mensaxes.",
+ "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "O ficheiro exportado permitiralle a calquera que poida lelo descifrar e cifrar mensaxes que vostede ve, así que debería ter coidado e gardalo de xeito seguro. Para axudarlle, debe introducir unha frase de paso aquí abaixo que será utilizada para cifrar os datos exportados. Só será posible importar os datos utilizando a mesma frase de paso.",
"Enter passphrase": "Introduza a frase de paso",
"Confirm passphrase": "Confirme a frase de paso",
"Export": "Exportar",
"Import room keys": "Importar chaves de sala",
- "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Este proceso permítelle importar chaves de cifrado que vostede exportou de outro cliente Matrix. Así poderá descifrar calquer mensaxe que o outro cliente puidese cifrar.",
+ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Este proceso permítelle importar chaves de cifrado que vostede exportou de outro cliente Matrix. Así poderá descifrar calquera mensaxe que o outro cliente puidese cifrar.",
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O ficheiro exportado estará protexido con unha frase de paso. Debe introducir aquí esa frase de paso para descifrar o ficheiro.",
"File to import": "Ficheiro a importar",
"Import": "Importar",
"The information being sent to us to help make Riot.im better includes:": "A información enviada a Riot.im para axudarnos a mellorar inclúe:",
- "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Si esta páxina inclúe información identificable como ID de grupo, usuario ou sala, estes datos son eliminados antes de ser enviados ao servidor.",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Se esta páxina inclúe información identificable como ID de grupo, usuario ou sala, estes datos son eliminados antes de ser enviados ao servidor.",
"The platform you're on": "A plataforma na que está",
"The version of Riot.im": "A versión de Riot.im",
- "Whether or not you're logged in (we don't record your user name)": "Si está ou non conectada (non gardamos o nome de usuaria)",
+ "Whether or not you're logged in (we don't record your user name)": "Se está ou non conectado/a (non gardamos os nomes de usuarios)",
"Your language of choice": "A súa preferencia de idioma",
- "Which officially provided instance you are using, if any": "Qué instancia oficial está a utilizar, si algunha",
- "Whether or not you're using the Richtext mode of the Rich Text Editor": "Si utiliza o modo Richtext ou non do Editor Rich Text",
+ "Which officially provided instance you are using, if any": "Se a houbese, que instancia oficial está a utilizar",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": "Se utiliza o modo Richtext ou non do editor de texto enriquecido",
"Your homeserver's URL": "O URL do seu servidor de inicio",
"Your identity server's URL": "O URL da súa identidade no servidor",
"In reply to ": "En resposta a ",
- "This room is not public. You will not be able to rejoin without an invite.": "Esta sala non é pública. Non poderá voltar a ela sin un convite.",
+ "This room is not public. You will not be able to rejoin without an invite.": "Esta sala non é pública. Non poderá volver a ela sen un convite.",
"This room is not showing flair for any communities": "Esta sala non mostra popularidade para as comunidades",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s cambiou o seu nome mostrado a %(displayName)s.",
"Clear filter": "Quitar filtro",
"Failed to set direct chat tag": "Fallo ao establecer etiqueta do chat directo",
"Failed to remove tag %(tagName)s from room": "Fallo ao eliminar a etiqueta %(tagName)s da sala",
"Failed to add tag %(tagName)s to room": "Fallo ao engadir a etiqueta %(tagName)s a sala",
- "Failed to lookup current room": "Fallo ao bloquear a sala actual",
"Disable Community Filter Panel": "Deshabilitar o panel de filtro de comunidades",
"Your key share request has been sent - please check your other devices for key share requests.": "Enviouse a solicitude de compartir chave - por favor comprobe as peticións de compartir chaves nos seus outros dispositivos.",
- "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "As peticións de compartir chaves envíanse de xeito automático aos seus outros dispositivos. Si rexeita o obvia estas peticións nos outros dispositivos, pulse aquí para solicitar novamente as chaves para esta sesión.",
- "If your other devices do not have the key for this message you will not be able to decrypt them.": "Si os seus outros dispositivos non teñen as chaves para est mensaxe non poderán descifrala.",
+ "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "As peticións de compartir chaves envíanse de xeito automático aos seus outros dispositivos. Se rexeita o obvia estas peticións nos outros dispositivos, pulse aquí para solicitar novamente as chaves para esta sesión.",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Se os seus outros dispositivos non teñen as chaves para este mensaxe non poderán descifrala.",
"Key request sent.": "Petición de chave enviada.",
- "Re-request encryption keys from your other devices.": "Voltar a pedir chaves de cifrado desde os outros dispositivos.",
+ "Re-request encryption keys from your other devices.": "Volver a pedir chaves de cifrado desde os outros dispositivos.",
"%(user)s is a %(userRole)s": "%(user)s é %(userRole)s",
"Flair": "Aura",
- "Showing flair for these communities:": "Mostrar o aura para estas comunidades:",
- "Flair will appear if enabled in room settings": "O Aura aparecerá si está habilitada nas preferencias da sala",
- "Flair will not appear": "O Aura non aparecerá",
- "Display your community flair in rooms configured to show it.": "Mostrar o aura da súa comunidade en salas configuradas para mostralo.",
+ "Showing flair for these communities:": "Mostrar a aura para estas comunidades:",
+ "Flair will appear if enabled in room settings": "A aura aparecerá se está activada nas preferencias da sala",
+ "Flair will not appear": "A aura non aparecerá",
+ "Display your community flair in rooms configured to show it.": "Mostrar a aura da súa comunidade nas salas configuradas para que a mostren.",
"Did you know: you can use communities to filter your Riot.im experience!": "Sabía que pode utilizar as comunidades para mellorar a súa experiencia con Riot.im!",
- "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Para establecer un filtro, arrastre un avatar da comunidade sobre o panel de filtros na parte esquerda da pantalla. Pode pulsar nun avatar no panel de filtrado en calquer moemento para ver só salas e xente asociada a esa comunidade.",
- "Deops user with given id": "Degradar usuaria co id dado",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Para establecer un filtro, arrastre un avatar da comunidade sobre o panel de filtros na parte esquerda da pantalla. Pode pulsar nun avatar no panel de filtrado en calquera momento para ver só salas e xente asociada a esa comunidade.",
+ "Deops user with given id": "Degradar o usuario con esa ID",
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "Visto por %(displayName)s(%(userName)s en %(dateTime)s",
"Code": "Código",
"Unable to join community": "Non se puido unir a comunidade",
"Unable to leave community": "Non se puido deixar a comunidade",
- "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "Os cambios realizados a súa comunidade name e avatar name and avatar might not be seen by other users for up to 30 minutes.": "Os cambios realizados a súa comunidade name e avatar poida que non os vexan outros usuarios ate dentro de 30 minutos.",
"Join this community": "Únase a esta comunidade",
"Leave this community": "Deixar esta comunidade",
"Debug Logs Submission": "Envío de rexistro de depuración",
- "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Si enviou un reporte de fallo a través de GitHub, os informes poden axudarnos a examinar o problema. Os informes de fallo conteñen datos do uso do aplicativo incluíndo o seu nome de usuaria, os IDs ou alcumes das salas e grupos que visitou e os nomes de usuaria de outras personas. Non conteñen mensaxes.",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Si enviou un reporte de fallo a través de GitHub, os informes poden axudarnos a examinar o problema. Os informes de fallo conteñen datos do uso do aplicativo incluíndo o seu nome de usuaria, os IDs ou alcumes das salas e grupos que visitou e os nomes de usuaria de outras persoas. Non conteñen mensaxes.",
"Submit debug logs": "Enviar informes de depuración",
- "Opens the Developer Tools dialog": "Abre o cadro de Ferramentas de Desenvolvedoras",
- "Stickerpack": "Peganitas",
- "You don't currently have any stickerpacks enabled": "Non ten paquetes de pegatinas habilitados",
- "Add a stickerpack": "Engadir un paquete de pegatinas",
- "Hide Stickers": "Agochar pegatinas",
- "Show Stickers": "Mostrar pegatinas",
- "Who can join this community?": "Quén pode unirse a esta comunidade?",
+ "Opens the Developer Tools dialog": "Abre o cadro de Ferramentas de desenvolvemento",
+ "Stickerpack": "Iconas",
+ "You don't currently have any stickerpacks enabled": "Non ten paquetes de iconas activados",
+ "Add a stickerpack": "Engadir un paquete de iconas",
+ "Hide Stickers": "Agochar iconas",
+ "Show Stickers": "Mostrar iconas",
+ "Who can join this community?": "Quen pode unirse a esta comunidade?",
"Everyone": "Todo o mundo",
"Fetching third party location failed": "Fallo ao obter a localización de terceiros",
"A new version of Riot is available.": "Está dispoñible unha nova versión de Riot.",
"Couldn't load home page": "Non se cargou a páxina de inicio",
"Send Account Data": "Enviar datos da conta",
- "All notifications are currently disabled for all targets.": "Todas as notificacións están deshabilitadas para todos os destinos.",
+ "All notifications are currently disabled for all targets.": "Todas as notificacións están desactivadas para todos os destinos.",
"Uploading report": "Informe da subida",
"Sunday": "Domingo",
- "Notification targets": "Obxetivos das notificacións",
+ "Notification targets": "Obxectivos das notificacións",
"Today": "Hoxe",
"Failed to get protocol list from Home Server": "Fallo ao obter a lista de protocolo desde o servidor",
"You are not receiving desktop notifications": "Non está a recibir notificacións de escritorio",
"Friday": "Venres",
"Update": "Actualizar",
- "What's New": "Qué hai de novo",
+ "What's New": "Que hai de novo",
"Add an email address above to configure email notifications": "Engada un enderezo de correo electrónico para configurar as notificacións",
"Expand panel": "Expandir panel",
"On": "On",
- "%(count)s Members|other": "%(count)s Membros",
+ "%(count)s Members|other": "%(count)s participantes",
"Filter room names": "Filtrar nomes de sala",
"Changelog": "Rexistro de cambios",
"Waiting for response from server": "Agardando pola resposta do servidor",
@@ -1019,14 +1012,14 @@
"Advanced notification settings": "Axustes avanzados de notificación",
"Failed to send logs: ": "Fallo ao enviar os informes: ",
"delete the alias.": "borrar alcume.",
- "To return to your account in future you need to set a password ": "Para voltar a súa conta no futuro debe establecer un contrasinal>/u>",
+ "To return to your account in future you need to set a password ": "Para volver a súa conta no futuro debe establecer un contrasinal>/u>",
"Forget": "Esquecer",
"#example": "#exemplo",
"Hide panel": "Agochar panel",
"You cannot delete this image. (%(code)s)": "Non pode eliminar esta imaxe. (%(code)s)",
"Cancel Sending": "Cancelar o envío",
"This Room": "Esta sala",
- "The Home Server may be too old to support third party networks": "O servidor de inicio podería ser demasiando antigo como para aceptar redes de terceiros",
+ "The Home Server may be too old to support third party networks": "O servidor de inicio podería ser demasiado antigo como para aceptar redes de terceiros",
"Noisy": "Ruidoso",
"Error saving email notification preferences": "Fallo ao cargar os axustes de notificacións",
"Messages containing my display name": "Mensaxes que conteñen o meu nome público",
@@ -1036,25 +1029,25 @@
"Failed to update keywords": "Fallo ao actualizar as palabras chave",
"Notes:": "Notas:",
"remove %(name)s from the directory.": "eliminar %(name)s do directorio.",
- "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificacións das reglas de seguimento das seguintes palabras que non se mostrarán aquí:",
+ "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificacións das regras de seguimento das seguintes palabras que non se mostrarán aquí:",
"Safari and Opera work too.": "Safari e Opera tamén funcionan.",
"Please set a password!": "Por favor estableza un contrasinal!",
"You have successfully set a password!": "Mudou con éxito o seu contrasinal!",
- "An error occurred whilst saving your email notification preferences.": "Algo fallou mentras se gardaban as súas preferencias de notificaicón.",
+ "An error occurred whilst saving your email notification preferences.": "Algo fallou mentres se gardaban as súas preferencias de notificación.",
"Explore Room State": "Explorar estado da sala",
"Search for a room": "Buscar unha sala",
"Source URL": "URL fonte",
"Messages sent by bot": "Mensaxes enviadas por bot",
"Filter results": "Filtrar resultados",
- "Members": "Membresía",
+ "Members": "Participantes",
"No update available.": "Sen actualizacións.",
- "Resend": "Voltar a enviar",
+ "Resend": "Volver a enviar",
"Files": "Ficheiros",
"Collecting app version information": "Obtendo información sobre a versión da app",
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Eliminar o alcume da sala %(alias)s e borrar %(name)s do directorio?",
- "This will allow you to return to your account after signing out, and sign in on other devices.": "Esto permitiralle voltar a súa conta tras desconectarse, e conectarse en outros dispositivos.",
+ "This will allow you to return to your account after signing out, and sign in on other devices.": "Isto permitiralle volver a súa conta tras desconectarse, e conectarse en outros dispositivos.",
"Keywords": "Palabras chave",
- "Enable notifications for this account": "Habilitar notificacións para esta conta",
+ "Enable notifications for this account": "Activar notificacións para esta conta",
"Directory": "Directorio",
"Invite to this community": "Convidar a esta comunidade",
"Failed to get public room list": "Fallo ao obter a lista de salas públicas",
@@ -1064,22 +1057,22 @@
"Enter keywords separated by a comma:": "Introduza palabras chave separadas por vírgulas:",
"Search…": "Buscar…",
"Remove %(name)s from the directory?": "Eliminar %(name)s do directorio?",
- "Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot utiliza características avanzadas do navegador, algunhas das cales non están dispoñibles ou son experimentales no seu navegador actual.",
+ "Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot utiliza características avanzadas do navegador, algunhas das cales non están dispoñibles ou son experimentais no seu navegador actual.",
"Developer Tools": "Ferramentas para desenvolver",
"Preparing to send logs": "Preparándose para enviar informe",
- "Enable desktop notifications": "Habilitar notificacións de escritorio",
- "Remember, you can always set an email address in user settings if you change your mind.": "Lembre, sempre poderá poñer un enderezo de correo nos axustes de usuario si cambia de idea.",
+ "Enable desktop notifications": "Activar as notificacións de escritorio",
+ "Remember, you can always set an email address in user settings if you change your mind.": "Lembre que sempre poderá poñer un enderezo de correo nos axustes de usuario se cambiase de idea.",
"Explore Account Data": "Explorar datos da conta",
"All messages (noisy)": "Todas as mensaxes (alto)",
"Saturday": "Sábado",
- "I understand the risks and wish to continue": "Entendos os riscos e desexo continuar",
+ "I understand the risks and wish to continue": "Entendo os riscos e desexo continuar",
"Direct Chat": "Chat directo",
"The server may be unavailable or overloaded": "O servidor podería non estar dispoñible ou sobrecargado",
"Reject": "Rexeitar",
"Failed to set Direct Message status of room": "Fallo ao establecer o estado Mensaxe Directa da sala",
"Monday": "Luns",
"Remove from Directory": "Eliminar do directorio",
- "Enable them now": "Habilitalas agora",
+ "Enable them now": "Activalos agora",
"Messages containing my user name": "Mensaxes que conteñen o meu nome de usuaria",
"Toolbox": "Ferramentas",
"Collecting logs": "Obtendo rexistros",
@@ -1098,10 +1091,10 @@
"Downloading update...": "Descargando actualización...",
"You have successfully set a password and an email address!": "Estableceu correctamente un contrasinal e enderezo de correo!",
"Failed to send custom event.": "Fallo ao enviar evento personalizado.",
- "What's new?": "Qué hai de novo?",
- "Notify me for anything else": "Notificarme todo o demáis",
+ "What's new?": "Que hai de novo?",
+ "Notify me for anything else": "Notificarme todo o demais",
"When I'm invited to a room": "Cando son convidado a unha sala",
- "Can't update user notification settings": "Non se poden actualizar os axutes de notificación",
+ "Can't update user notification settings": "Non se poden actualizar os axustes de notificación",
"Notify for all other messages/rooms": "Notificar para todas as outras mensaxes/salas",
"Unable to look up room ID from server": "Non se puido atopar o ID da sala do servidor",
"Couldn't find a matching Matrix room": "Non coincide con ningunha sala de Matrix",
@@ -1113,8 +1106,8 @@
"Back": "Atrás",
"Reply": "Resposta",
"Show message in desktop notification": "Mostrar mensaxe nas notificacións de escritorio",
- "Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Os informes de depuración conteñen datos de utilización do aplicativo como o seu nome de usuaria, os IDs ou alcumes de salas e grupos que vostede visitou e os nomes de usuaria de outras usuarias. Non conteñen mensaxes.",
- "Unhide Preview": "Desagochar a vista previsa",
+ "Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Os informes de depuración conteñen datos de utilización do aplicativo como o seu nome de usuario, os IDs ou alcumes de salas e grupos que vostede visitou e os nomes de usuarios doutras usuarias. Non conteñen mensaxes.",
+ "Unhide Preview": "Desagochar a vista previa",
"Unable to join network": "Non se puido conectar a rede",
"You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Pode que os configurase nun cliente diferente de Riot. Non pode establecelos desde Riot pero aínda así aplicaranse",
"Sorry, your browser is not able to run Riot.": "Desculpe, o seu navegador non pode executar Riot.",
@@ -1124,41 +1117,40 @@
"Error encountered (%(errorDetail)s).": "Houbo un erro (%(errorDetail)s).",
"Login": "Conectar",
"Low Priority": "Baixa prioridade",
- "Unable to fetch notification target list": "Non se puido procesar a lista de obxetivo de notificacións",
+ "Unable to fetch notification target list": "Non se puido procesar a lista de obxectivo de notificacións",
"Set Password": "Establecer contrasinal",
- "Enable audible notifications in web client": "Habilitar notificacións audibles no cliente web",
- "Permalink": "Ligazón permanente",
+ "Enable audible notifications in web client": "Activar as notificacións audibles no cliente web",
"Off": "Off",
- "Riot does not know how to join a room on this network": "Riot non sabe cómo conectar con unha sala en esta rede",
+ "Riot does not know how to join a room on this network": "Riot non sabe como conectar cunha sala nesta rede",
"Mentions only": "Só mencións",
- "You can now return to your account after signing out, and sign in on other devices.": "Pode voltar a súa contra tras desconectarse, e conectarse en outros dispositivos.",
- "Enable email notifications": "Habilitar notificacións de correo",
+ "You can now return to your account after signing out, and sign in on other devices.": "Pode volver a súa contra tras desconectarse, e conectarse en outros dispositivos.",
+ "Enable email notifications": "Activar notificacións de correo",
"Event Type": "Tipo de evento",
"Download this file": "Descargue este ficheiro",
"Pin Message": "Fixar mensaxe",
"Failed to change settings": "Fallo ao cambiar os axustes",
"View Community": "Ver Comunidade",
- "%(count)s Members|one": "%(count)s Membro",
+ "%(count)s Members|one": "%(count)s participante",
"Event sent!": "Evento enviado!",
"View Source": "Ver fonte",
"Event Content": "Contido do evento",
"Thank you!": "Grazas!",
"Collapse panel": "Agochar panel",
- "With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Co seu navegador actual a apareciencia e uso do aplicativo poderían estar totalmente falseadas, e algunhas características poderían non funcionar. Se quere pode continuar, pero debe ser consciente de que poden haber fallos!",
+ "With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Co seu navegador actual a aparencia e uso do aplicativo poderían estar totalmente falseadas, e algunhas características poderían non funcionar. Se quere pode continuar, pero debe ser consciente de que poden haber fallos!",
"Checking for an update...": "Comprobando as actualizacións...",
"There are advanced notifications which are not shown here": "Existen notificacións avanzadas que non se mostran aquí",
- "Every page you use in the app": "Cada páxina que vostede utiliza no aplicativo",
- "e.g. ": "ex. ",
- "Your User Agent": "User Agent",
+ "Every page you use in the app": "Cada páxina que use na aplicación",
+ "e.g. ": "p.ex. ",
+ "Your User Agent": "Axente de usuario",
"Your device resolution": "Resolución do dispositivo",
- "Missing roomId.": "Falta o id da sala.",
+ "Missing roomId.": "Falta o ID da sala.",
"Always show encryption icons": "Mostra sempre iconas de cifrado",
- "At this time it is not possible to reply with a file so this will be sent without being a reply.": "En este intre non é posible respostar con un ficheiro así que este será enviado sin ser considerado resposta.",
- "Unable to reply": "Non puido respostar",
- "At this time it is not possible to reply with an emote.": "En este intre non é posible respostar con un emote.",
- "Popout widget": "Widget emerxente",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "Neste intre non é posible responder con un ficheiro así que este será enviado sen ser considerado resposta.",
+ "Unable to reply": "Non puido responder",
+ "At this time it is not possible to reply with an emote.": "Neste intre non é posible responder con un emote.",
+ "Popout widget": "trebello emerxente",
"Picture": "Imaxe",
- "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Non se cargou o evento ao que respostaba, ou non existe ou non ten permiso para velo.",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Non se cargou o evento ao que respondía, ou non existe ou non ten permiso para velo.",
"Riot bugs are tracked on GitHub: create a GitHub issue .": "Os fallos de Riot séguense en GitHub: crear un informe en GitHub .",
"Log out and remove encryption keys?": "Desconectar e eliminar as chaves de cifrado?",
"Send Logs": "Enviar informes",
@@ -1166,5 +1158,66 @@
"Refresh": "Actualizar",
"We encountered an error trying to restore your previous session.": "Atopamos un fallo intentando restablecer a súa sesión anterior.",
"Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Limpando o almacenamento do navegador podería resolver o problema, pero desconectarao e non poderá ler o historial cifrado da conversa.",
- "Collapse Reply Thread": "Comprimir o fío de respostas"
+ "Collapse Reply Thread": "Comprimir o fío de respostas",
+ "e.g. %(exampleValue)s": "p.ex. %(exampleValue)s",
+ "Send analytics data": "Enviar datos de análises",
+ "Enable widget screenshots on supported widgets": "Activar as capturas de trebellos para aqueles que as permiten",
+ "Encrypting": "Cifrando",
+ "Encrypted, not sent": "Cifrado, sen enviar",
+ "Share Link to User": "Compartir a ligazón co usuario",
+ "Share room": "Compartir sala",
+ "To notify everyone in the room, you must be a": "Para avisar a todos os da sala ten que ser",
+ "Muted Users": "Usuarios silenciados",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Mellore Riot.im enviando os datos anónimos de uso . Iso suporá o emprego dunha cookie (véxase a nosa Política de Cookies ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Mellore Riot.im enviando o uso de datos anónimo . Iso usará unha cookie.",
+ "Yes, I want to help!": "Si, quero axuda",
+ "Warning: This widget might use cookies.": "Aviso: este trebello podería usar algunha cookie.",
+ "Reload widget": "Volver a cargar o trebello",
+ "Failed to indicate account erasure": "Non se deu indicado a eliminación de conta",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Iso fará que a súa deixe de ter uso de xeito permanente. Non poderá acceder e ninguén vai a poder volver a rexistrar esa mesma ID de usuario. Suporá que saía de todas as salas de conversas nas que estaba e eliminará os detalles da súa conta do servidores de identificación.Isto non se poderá desfacer ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Desactivando a súa conta non supón que por defecto esquezamos as súas mensaxes enviadas. Se quere que nos esquezamos das súas mensaxes, prema na caixa de embaixo.",
+ "To continue, please enter your password:": "Para continuar introduza o seu contrasinal:",
+ "password": "contrasinal",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "A visibilidade das mensaxes en Matrix é parecida ás dos correos electrónicos. Que esquezamos as súas mensaxes significa que as súas mensaxes non se van a compartir con ningún novo membro ou usuario que non estea rexistrado. Mais aqueles usuarios que xa tiveron acceso a estas mensaxes si que seguirán tendo acceso as súas propias copias desas mensaxes.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Esquezan todas as mensaxes que eu enviara no momento en que elimine a miña conta. (Aviso : iso suporá que os seguintes participantes só verán unha versión incompleta das conversas.)",
+ "Share Room": "Compartir sala",
+ "Link to most recent message": "Ligazón ás mensaxes máis recentes",
+ "Share User": "Compartir usuario",
+ "Share Community": "Compartir comunidade",
+ "Share Room Message": "Compartir unha mensaxe da sala",
+ "Link to selected message": "Ligazón á mensaxe escollida",
+ "COPY": "Copiar",
+ "Share Message": "Compartir mensaxe",
+ "Can't leave Server Notices room": "Non se pode saír da sala de información do servidor",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Esta sala emprégase para mensaxes importantes do servidor da sala, as que non pode saír dela.",
+ "Terms and Conditions": "Termos e condicións",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Para continuar usando o servidor %(homeserverDomain)s ten que revisar primeiro os seus termos e condicións e logo aceptalos.",
+ "Review terms and conditions": "Revise os termos e condicións",
+ "No Audio Outputs detected": "Non se detectou unha saída de audio",
+ "Audio Output": "Saída de audio",
+ "Try the app first": "Probe a aplicación primeiro",
+ "Jitsi Conference Calling": "Chamada para conferencia con Jitsi",
+ "A conference call could not be started because the intgrations server is not available": "Non se puido comezar a chamada por mor de que o servidor de integración non está activo",
+ "Call in Progress": "Chamada en progreso",
+ "A call is already in progress!": "Xa hai unha chamada en progreso!",
+ "Permission Required": "Precísase de permisos",
+ "You do not have permission to start a conference call in this room": "Non ten permisos para comezar unha chamada de conferencia nesta sala",
+ "Show empty room list headings": "Amosar a cabeceira da lista de salas baleiras",
+ "This event could not be displayed": "Non se puido amosar este evento",
+ "Demote yourself?": "Baixarse a si mesmo de rango?",
+ "Demote": "Baixar de rango",
+ "deleted": "eliminado",
+ "underlined": "subliñado",
+ "inline-code": "código en liña",
+ "block-quote": "bloque de citas",
+ "bulleted-list": "lista de puntos",
+ "numbered-list": "lista numérica",
+ "You have no historical rooms": "Ton ten salas anteriores",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Nas salas cifradas, como é esta, está desactivado por defecto a previsualización das URL co fin de asegurarse de que o servidor local (que é onde se gardan as previsualizacións) non poida recoller información sobre das ligazóns que se ven nesta sala.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Cando alguén pon unha URL na mensaxe, esta previsualízarase para que así se coñezan xa cousas delas como o título, a descrición ou as imaxes que inclúe ese sitio web.",
+ "The email field must not be blank.": "Este campo de correo non pode quedar en branco.",
+ "The user name field must not be blank.": "O campo de nome de usuario non pode quedar en branco.",
+ "The phone number field must not be blank.": "O número de teléfono non pode quedar en branco.",
+ "The password field must not be blank.": "O campo do contrasinal non pode quedar en branco.",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Non vai poder enviar mensaxes ata que revise e acepte os nosos termos e condicións ."
}
diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json
index dbae2858a9..7d96dfa089 100644
--- a/src/i18n/strings/he.json
+++ b/src/i18n/strings/he.json
@@ -221,7 +221,6 @@
"Unable to fetch notification target list": "לא ניתן לאחזר רשימת יעדי התראה",
"Set Password": "הגדר סיסמא",
"Enable audible notifications in web client": "אפשר התראות קוליות בדפדפן",
- "Permalink": "קישור קבוע",
"Off": "סגור",
"Riot does not know how to join a room on this network": "Riot אינו יודע כיצד להצטרף לחדר ברשת זו",
"Mentions only": "מאזכר בלבד",
diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json
index d63b6055a3..6ccf70f077 100644
--- a/src/i18n/strings/hu.json
+++ b/src/i18n/strings/hu.json
@@ -71,8 +71,8 @@
"Blacklisted": "Fekete listára téve",
"Bulk Options": "Tömeges beállítások",
"Call Timeout": "Hívás időtúllépés",
- "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Nem lehet kapcsolódni a saját szerverhez - ellenőrizd a kapcsolatot, biztosítsd, hogy a saját szerver tanúsítványa hiteles legyen, és a böngésző kiterjesztések ne blokkolják a kéréseket.",
- "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Nem lehet csatlakozni a saját szerverhez HTTP-n keresztül ha HTTPS van a böngésző címsorában. Vagy használj HTTPS-t vagy engedélyezd a nem biztonságos script-et .",
+ "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Nem lehet kapcsolódni a Matrix szerverhez - ellenőrizd a kapcsolatot, biztosítsd, hogy a Matrix szerver tanúsítványa hiteles legyen, és a böngésző kiterjesztések ne blokkolják a kéréseket.",
+ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Nem lehet csatlakozni a Matrix szerverhez HTTP-n keresztül ha HTTPS van a böngésző címsorában. Vagy használj HTTPS-t vagy engedélyezd a nem biztonságos script-et .",
"Can't load user settings": "A felhasználói beállítások nem tölthetők be",
"Change Password": "Jelszó megváltoztatása",
"%(senderName)s changed their profile picture.": "%(senderName)s megváltoztatta a profil képét.",
@@ -156,7 +156,7 @@
"Enter Code": "Kód megadása",
"Enter passphrase": "Jelmondat megadása",
"Error decrypting attachment": "Csatolmány visszafejtése sikertelen",
- "Error: Problem communicating with the given homeserver.": "Hiba: Probléma van az saját szerverrel való kommunikációval.",
+ "Error: Problem communicating with the given homeserver.": "Hiba: Probléma van a Matrix szerverrel való kommunikációval.",
"Event information": "Esemény információ",
"Existing Call": "Hívás folyamatban",
"Export": "Mentés",
@@ -168,7 +168,6 @@
"Failed to kick": "Kirúgás nem sikerült",
"Failed to leave room": "A szobát nem sikerült elhagyni",
"Failed to load timeline position": "Az idővonal pozíciót nem sikerült betölteni",
- "Failed to lookup current room": "Az aktuális szoba felkeresése sikertelen",
"Failed to mute user": "A felhasználót nem sikerült hallgatásra bírni",
"Failed to reject invite": "A meghívót nem sikerült elutasítani",
"Failed to reject invitation": "A meghívót nem sikerült elutasítani",
@@ -192,14 +191,14 @@
"For security, this session has been signed out. Please sign in again.": "A biztonság érdekében ez a kapcsolat le lesz bontva. Légy szíves jelentkezz be újra.",
"For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "A biztonság érdekében a kilépéskor a ponttól pontig való (E2E) titkosításhoz szükséges kulcsok törlésre kerülnek a böngészőből. Ha a régi üzeneteket továbbra is el szeretnéd olvasni, kérlek mentsed ki a szobákhoz tartozó kulcsot.",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s : %(fromPowerLevel)s -> %(toPowerLevel)s",
- "Guest access is disabled on this Home Server.": "Vendég belépés tiltva van a Saját szerveren.",
+ "Guest access is disabled on this Home Server.": "Vendég belépés tiltva van a Matrix szerveren.",
"Guests cannot join this room even if explicitly invited.": "Vendégek akkor sem csatlakozhatnak ehhez a szobához ha külön meghívók kaptak.",
"Hangup": "Megszakít",
"Hide read receipts": "Olvasási visszajelzés elrejtése",
"Hide Text Formatting Toolbar": "Szövegformázási menü elrejtése",
"Historical": "Archív",
"Home": "Kezdőlap",
- "Homeserver is": "Saját szerver:",
+ "Homeserver is": "Matrix szerver:",
"Identity Server is": "Azonosítási szerver:",
"I have verified my email address": "Ellenőriztem az e-mail címemet",
"Import": "Betöltés",
@@ -238,7 +237,6 @@
"Level:": "Szint:",
"Local addresses for this room:": "A szoba helyi címe:",
"Logged in as:": "Bejelentkezve mint:",
- "Login as guest": "Belépés vendégként",
"Logout": "Kilép",
"Low priority": "Alacsony prioritás",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s elérhetővé tette a szoba új üzeneteit nekik minden résztvevő a szobában, amióta meg van hívva.",
@@ -256,7 +254,6 @@
"Mobile phone number": "Mobil telefonszám",
"Mobile phone number (optional)": "Mobill telefonszám (opcionális)",
"Moderator": "Moderátor",
- "Must be viewing a room": "Meg kell nézni a szobát",
"%(serverName)s Matrix ID": "%(serverName)s Matrix azonosítóm",
"Name": "Név",
"Never send encrypted messages to unverified devices from this device": "Soha ne küldj titkosított üzenetet ellenőrizetlen eszközre erről az eszközről",
@@ -362,10 +359,10 @@
"The email address linked to your account must be entered.": "A fiókodhoz kötött e-mail címet add meg.",
"Press to start a chat with someone": "Nyomd meg a gombot ha szeretnél csevegni valakivel",
"Privacy warning": "Adatvédelmi figyelmeztetés",
- "The file '%(fileName)s' exceeds this home server's size limit for uploads": "'%(fileName)s' fájl túllépte a Saját szerverben beállított feltöltési méret határt",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "'%(fileName)s' fájl túllépte a Matrix szerverben beállított feltöltési méret határt",
"The file '%(fileName)s' failed to upload": "'%(fileName)s' fájl feltöltése sikertelen",
"The remote side failed to pick up": "A hívott fél nem vette fel",
- "This Home Server does not support login using email address.": "A Saját szerver nem támogatja a belépést e-mail címmel.",
+ "This Home Server does not support login using email address.": "A Matrix szerver nem támogatja a belépést e-mail címmel.",
"This invitation was sent to an email address which is not associated with this account:": "A meghívó olyan e-mail címre lett küldve ami nincs összekötve ezzel a fiókkal:",
"This room has no local addresses": "Ennek a szobának nincs helyi címe",
"This room is not recognised.": "Ez a szoba nem ismerős.",
@@ -464,7 +461,7 @@
"You need to be able to invite users to do that.": "Hogy ezt csinálhasd meg kell tudnod hívni felhasználókat.",
"You need to be logged in.": "Be kell jelentkezz.",
"You need to enter a user name.": "Be kell írnod a felhasználói nevet.",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ez az e-mail cím, úgy néz ki, nincs összekötve a Matrix azonosítóval ezen a saját szerveren.",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ez az e-mail cím, úgy néz ki, nincs összekötve a Matrix azonosítóval ezen a Matrix szerveren.",
"Your password has been reset": "A jelszavad visszaállítottuk",
"Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "A jelszavadat sikeresen megváltoztattuk. Nem kapsz \"push\" értesítéseket amíg a többi eszközön vissza nem jelentkezel",
"Unable to ascertain that the address this invite was sent to matches one associated with your account.": "A címről amire a meghívót elküldtük nem állapítható meg, hogy a fiókoddal összeköttetésben áll-e.",
@@ -472,7 +469,7 @@
"You seem to be uploading files, are you sure you want to quit?": "Úgy tűnik fájlokat töltesz fel, biztosan kilépsz?",
"You should not yet trust it to secure data": "Még ne bízz meg a titkosításban",
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Nem leszel képes visszavonni ezt a változtatást mivel a felhasználót ugyanarra a szintre emeled amin te vagy.",
- "Your home server does not support device management.": "A Saját szervered nem támogatja az eszközök kezelését.",
+ "Your home server does not support device management.": "A Matrix szervered nem támogatja az eszközök kezelését.",
"Sun": "Vas",
"Mon": "Hé",
"Tue": "K",
@@ -567,7 +564,7 @@
"Verify...": "Ellenőrzés...",
"ex. @bob:example.com": "pl.: @bob:example.com",
"Add User": "Felhasználó hozzáadás",
- "This Home Server would like to make sure you are not a robot": "A Saját szerver meg szeretne győződni arról, hogy nem vagy robot",
+ "This Home Server would like to make sure you are not a robot": "A Matrix szerver meg szeretne győződni arról, hogy nem vagy robot",
"Sign in with CAS": "Belépés CAS-sal",
"Please check your email to continue registration.": "Ellenőrizd az e-mailedet a regisztráció folytatásához.",
"Token incorrect": "Helytelen token",
@@ -575,7 +572,7 @@
"You are registering with %(SelectedTeamName)s": "%(SelectedTeamName)s névvel regisztrálsz",
"Default server": "Alapértelmezett szerver",
"Custom server": "Egyedi szerver",
- "Home server URL": "Saját szerver URL",
+ "Home server URL": "Matrix szerver URL",
"Identity server URL": "Azonosítási szerver URL",
"What does this mean?": "Ez mit jelent?",
"Error decrypting audio": "Hiba a hang visszafejtésénél",
@@ -617,12 +614,12 @@
"If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Ha egy újabb Riot verziót használtál valószínűleg ez kapcsolat nem lesz kompatibilis vele. Zárd be az ablakot és térj vissza az újabb verzióhoz.",
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Jelenleg fekete listára teszel minden ismeretlen eszközt. Ha üzenetet szeretnél küldeni ezekre az eszközökre először ellenőrizned kell őket.",
"We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Azt javasoljuk, hogy menj végig ellenőrző folyamaton minden eszköznél, hogy meg megerősítsd minden eszköz a jogos tulajdonosához tartozik, de újraküldheted az üzenetet ellenőrzés nélkül, ha úgy szeretnéd.",
- "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Használhatod az Otthoni szerver opciót, hogy más Matrix szerverre csatlakozz Saját szerver URL megadásával.",
- "This allows you to use this app with an existing Matrix account on a different home server.": "Ezzel használhatod ezt az alkalmazást a meglévő Matrix fiókoddal és másik Saját szerveren.",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Használhatod az Matrix szerver opciót, hogy más Matrix szerverre csatlakozz Matrix szerver URL megadásával.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Ezzel használhatod ezt az alkalmazást a meglévő Matrix fiókoddal és másik Matrix szerveren.",
"You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Beállíthatsz egy egyedi azonosító szervert is de ez tulajdonképpen meggátolja az együttműködést e-mail címmel azonosított felhasználókkal.",
"If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Ha nem állítasz be e-mail címet nem fogod tudni a jelszavadat alaphelyzetbe állítani. Biztos vagy benne?",
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Azonosítás céljából egy harmadik félhez leszel irányítva (%(integrationsUrl)s). Folytatod?",
- "This will be your account name on the homeserver, or you can pick a different server .": "Ez lesz a felhasználói neved a saját szerveren, vagy választhatsz egy másik szervert .",
+ "This will be your account name on the homeserver, or you can pick a different server .": "Ez lesz a felhasználói neved a Matrix szerveren, vagy választhatsz egy másik szervert .",
"Disable Peer-to-Peer for 1:1 calls": "Közvetlen kapcsolat tiltása az 1:1 hívásoknál",
"To return to your account in future you need to set a password": "Ahhoz hogy később visszatérj a fiókodba be kell állítanod egy jelszót",
"Skip": "Kihagy",
@@ -780,11 +777,9 @@
"Long Description (HTML)": "Hosszú leírás (HTML)",
"Community Settings": "Közösségi beállítások",
"Community %(groupId)s not found": "%(groupId)s közösség nem található",
- "This Home server does not support communities": "Ez a saját szerver nem támogatja a közösségeket",
+ "This Home server does not support communities": "Ez a Matrix szerver nem támogatja a közösségeket",
"Error whilst fetching joined communities": "Hiba a csatlakozott közösségek betöltésénél",
"Create a new community": "Új közösség létrehozása",
- "Join an existing community": "Meglévő közösséghez csatlakozás",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Ahhoz hogy csatlakozni tudj egy meglévő közösséghez ismerned kell a közösségi azonosítót ami például így nézhet ki: +pelda:matrix.org .",
"example": "példa",
"Failed to load %(groupId)s": "Nem sikerült betölteni: %(groupId)s",
"Your Communities": "Közösségeid",
@@ -918,8 +913,7 @@
"Flair will not appear": "Jelvények nem jelennek meg",
"Something went wrong when trying to get your communities.": "Valami nem sikerült a közösségeid elérésénél.",
"Display your community flair in rooms configured to show it.": "Közösségi jelvényeid megjelenítése azokban a szobákban ahol ez engedélyezett.",
- "This homeserver doesn't offer any login flows which are supported by this client.": "Ez a saját szerver egyetlen bejelentkezési metódust sem támogat amit ez a kliens ismer.",
- "Tag Panel": "Címke panel",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Ez a Matrix szerver egyetlen bejelentkezési metódust sem támogat amit ez a kliens ismer.",
"Addresses": "Címek",
"collapse": "becsuk",
"expand": "kinyit",
@@ -938,7 +932,6 @@
"%(count)s of your messages have not been sent.|one": "Az üzeneted nem lett elküldve.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Újraküldöd mind vagy elveted mind . Az üzeneteket egyenként is elküldheted vagy elvetheted.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Üzenet újraküldése vagy üzenet elvetése most.",
- "Message Replies": "Üzenet válaszok",
"Send an encrypted reply…": "Titkosított válasz küldése…",
"Send a reply (unencrypted)…": "Válasz küldése (titkosítatlanul)…",
"Send an encrypted message…": "Titkosított üzenet küldése…",
@@ -955,12 +948,12 @@
"Your language of choice": "A használt nyelv",
"Which officially provided instance you are using, if any": "Milyen hivatalosan nyújtott verziót használsz",
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Használod-e a Richtext módot a szerkesztőben vagy nem",
- "Your homeserver's URL": "Az egyedi szerver URL-t",
+ "Your homeserver's URL": "A Matrix szerver URL-t",
"Your identity server's URL": "Az azonosítási szerver URL-t",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(fullYear)s. %(monthName)s %(day)s, %(weekDayName)s",
"This room is not public. You will not be able to rejoin without an invite.": "Ez a szoba nem nyilvános. Kilépés után csak újabb meghívóval tudsz újra belépni a szobába.",
"Show devices , send anyway or cancel .": "Eszközök listája , mindenképpen küld vagy szakítsd meg .",
- "Community IDs cannot not be empty.": "A közösségi azonosító nem lehet üres.",
+ "Community IDs cannot be empty.": "A közösségi azonosító nem lehet üres.",
"In reply to ": "Válaszolva neki ",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s megváltoztatta a nevét erre: %(displayName)s.",
"Failed to set direct chat tag": "Nem sikerült a közvetlen beszélgetés jelzést beállítani",
@@ -1026,7 +1019,7 @@
"You cannot delete this image. (%(code)s)": "Nem törölheted ezt a képet. (%(code)s)",
"Cancel Sending": "Küldés megszakítása",
"This Room": "Ebben a szobában",
- "The Home Server may be too old to support third party networks": "Lehet, hogy a saját szerver túl régi és nem támogatja a csatlakozást más hálózatokhoz",
+ "The Home Server may be too old to support third party networks": "Lehet, hogy a Matrix szerver túl régi és nem támogatja a csatlakozást más hálózatokhoz",
"Resend": "Küldés újra",
"Room not found": "A szoba nem található",
"Messages containing my display name": "A profilnevemet tartalmazó üzenetek",
@@ -1048,7 +1041,7 @@
"Members": "Résztvevők",
"No update available.": "Nincs elérhető frissítés.",
"Noisy": "Hangos",
- "Failed to get protocol list from Home Server": "Nem sikerült a protokoll listát lekérni a saját szerverről",
+ "Failed to get protocol list from Home Server": "Nem sikerült a protokoll listát lekérni a Matrix szerverről",
"Collecting app version information": "Alkalmazás verzió információk összegyűjtése",
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Törlöd a szoba nevét (%(alias)s) és eltávolítod a listából ezt: %(name)s?",
"This will allow you to return to your account after signing out, and sign in on other devices.": "Így kijelentkezés után is vissza tudsz lépni a fiókodba, illetve más készülékekről is be tudsz lépni.",
@@ -1126,7 +1119,6 @@
"Unable to fetch notification target list": "Nem sikerült letölteni az értesítési célok listáját",
"Set Password": "Jelszó beállítása",
"Enable audible notifications in web client": "Hangértesítések engedélyezése a webkliensben",
- "Permalink": "Állandó hivatkozás",
"Off": "Ki",
"Riot does not know how to join a room on this network": "A Riot nem tud csatlakozni szobához ezen a hálózaton",
"Mentions only": "Csak ha megemlítenek",
@@ -1167,5 +1159,77 @@
"At this time it is not possible to reply with an emote.": "Jelenleg nem lehet emodzsival válaszolni.",
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Nem lehet betölteni azt az eseményt amire válaszoltál, mert vagy nem létezik, vagy nincs jogod megnézni.",
"Collapse Reply Thread": "Beszélgetés szál becsukása",
- "Enable widget screenshots on supported widgets": "Ahol az a kisalkalmazásban támogatott ott képernyőkép készítés engedélyezése"
+ "Enable widget screenshots on supported widgets": "Ahol az a kisalkalmazásban támogatott ott képernyőkép készítés engedélyezése",
+ "Send analytics data": "Analitikai adatok küldése",
+ "Muted Users": "Elnémított felhasználók",
+ "Warning: This widget might use cookies.": "Figyelmeztetés: Ez a kisalkalmazás sütiket (cookies) használhat.",
+ "Terms and Conditions": "Általános Szerződési Feltételek",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "A %(homeserverDomain)s szerver használatának folytatásához el kell olvasnod és el kell fogadnod az általános szerződési feltételeket.",
+ "Review terms and conditions": "Általános Szerződési Feltételek elolvasása",
+ "Failed to indicate account erasure": "A fiók törlésének jelzése sikertelen",
+ "To continue, please enter your password:": "Folytatáshoz add meg a jelszavad:",
+ "password": "jelszó",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Ez végleg használhatatlanná teszi a fiókodat. Ezután nem fogsz tudni bejelentkezni, és más sem tud majd ezzel az azonosítóval fiókot létrehozni. Minden szobából amibe beléptél ki fogsz lépni, és törölni fogja minden fiók adatod az \"identity\" szerverről. Ez a művelet visszafordíthatatlan. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "A fiókod felfüggesztése nem jelenti alapértelmezetten azt, hogy az általad küldött üzenetek elfelejtődnek. Ha törölni szeretnéd az általad küldött üzeneteket, pipáld be a jelölőnégyzetet alul.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Az üzenetek láthatósága a Matrixban hasonlít az emailhez. Az általad küldött üzenet törlése azt jelenti, hogy nem osztjuk meg új-, vagy vendég felhasználóval de a már regisztrált felhasználók akik már hozzáfértek az üzenethez továbbra is elérik a saját másolatukat.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Kérlek töröld az összes általam küldött üzenetet amikor a fiókomat felfüggesztem (Figyelem: ez azt eredményezheti, hogy a jövőbeni felhasználók csak részleges beszélgetést látnak majd)",
+ "e.g. %(exampleValue)s": "pl. %(exampleValue)s",
+ "Reload widget": "Kisalkalmazás újratöltése",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Kérlek segíts javítani a Riot.im-et azzal, hogy anonim felhasználási adatokat küldesz. Ez szütit (cookie) fog használni (lásd a sütire vonatkozó szabályozásunkat ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Kérlek segíts javítani a Riot.im-et azzal, hogy anonim felhasználási adatokat küldesz. Ez szütit (cookie) fog használni.",
+ "Yes, I want to help!": "Igen, segítek!",
+ "Can't leave Server Notices room": "Nem lehet elhagyni a Szerver Üzenetek szobát",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Ez a szoba fontos szerverüzenetek közlésére jött létre, nem tudsz kilépni belőle.",
+ "To notify everyone in the room, you must be a": "Hogy mindenkinek tudj üzenni ahhoz ilyen szinten kell lenned:",
+ "Try the app first": "Először próbáld ki az alkalmazást",
+ "Encrypting": "Titkosít",
+ "Encrypted, not sent": "Titkosítva, de nincs elküldve",
+ "No Audio Outputs detected": "Nem található hang kimenet",
+ "Audio Output": "Hang kimenet",
+ "Share Link to User": "Hivatkozás megosztása felhasználóval",
+ "Share room": "Szoba megosztása",
+ "Share Room": "Szoba megosztása",
+ "Link to most recent message": "A legfrissebb üzenetre hivatkozás",
+ "Share User": "Felhasználó megosztás",
+ "Share Community": "Közösség megosztás",
+ "Share Room Message": "Szoba üzenet megosztás",
+ "Link to selected message": "Hivatkozás a kijelölt üzenetre",
+ "COPY": "Másol",
+ "Share Message": "Üzenet megosztása",
+ "Jitsi Conference Calling": "Jitsi konferencia hívás",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Az olyan titkosított szobákban, mint ez is, az URL előnézet alapértelmezetten ki van kapcsolva, hogy biztosított legyen, hogy a matrix szerver (ahol az előnézet készül) ne tudjon információt gyűjteni arról, hogy milyen linkeket látsz ebben a szobában.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Ha valaki URL linket helyez az üzenetébe, lehetőség van egy előnézet megjelenítésére amivel további információt kaphatunk a linkről, mint cím, leírás és a weboldal képe.",
+ "The email field must not be blank.": "Az e-mail mező nem lehet üres.",
+ "The user name field must not be blank.": "A felhasználói név mező nem lehet üres.",
+ "The phone number field must not be blank.": "A telefonszám mező nem lehet üres.",
+ "The password field must not be blank.": "A jelszó mező nem lehet üres.",
+ "Call in Progress": "Hívás folyamatban",
+ "A call is already in progress!": "A hívás már folyamatban van!",
+ "You have no historical rooms": "Nincsenek archív szobáid",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Nem tudsz üzenetet küldeni amíg nem olvasod el és nem fogadod el a felhasználási feltételeket .",
+ "Demote yourself?": "Lefokozod magad?",
+ "Demote": "Lefokozás",
+ "Show empty room list headings": "Üres szobalista fejléc mutatása",
+ "This event could not be displayed": "Az eseményt nem lehet megjeleníteni",
+ "deleted": "törölt",
+ "underlined": "aláhúzott",
+ "inline-code": "kód",
+ "block-quote": "idézet",
+ "bulleted-list": "rendezetlen lista",
+ "numbered-list": "rendezett lista",
+ "A conference call could not be started because the intgrations server is not available": "A konferencia hívást nem lehet elkezdeni mert az integrációs szerver nem érhető el",
+ "Permission Required": "Engedély szükséges",
+ "You do not have permission to start a conference call in this room": "Nincs jogosultságod konferencia hívást kezdeményezni ebben a szobában",
+ "A call is currently being placed!": "A hívás indítás alatt!",
+ "Failed to remove widget": "A kisalkalmazás törlése sikertelen",
+ "An error ocurred whilst trying to remove the widget from the room": "A kisalkalmazás szobából való törlése közben hiba történt",
+ "System Alerts": "Rendszer figyelmeztetések",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Ez a matrix szerver elérte a havi aktív felhasználói korlátot. Kérlek vedd fel a kapcsolatot a szolgáltatás adminisztrátorával ha a továbbiakban is igénybe szeretnéd venni a szolgáltatást.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Az üzeneted nem lett elküldve mert a Matrix szerver elérte a havi aktív felhasználói korlátot. Kérlek vedd fel a kapcsolatot a szolgáltatás adminisztrátorával ha a továbbiakban is igénybe szeretnéd venni a szolgáltatást.",
+ "This homeserver has hit its Monthly Active User limit": "Ez a Matrix szerver elérte a havi aktív felhasználói korlátot",
+ "Please contact your service administrator to continue using this service.": "Kérlek vedd fel a kapcsolatot a szolgáltatás adminisztrátorával ha a továbbiakban is igénybe szeretnéd venni a szolgáltatást.",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Ez a Matrix szerver elérte a havi aktív felhasználói korlátot. Kérlek vedd fel a kapcsolatot a szolgáltatás adminisztrátorával a szolgáltatás további használatához.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Ez a Matrix szerver elérte a havi aktív felhasználói korlátot, így néhány felhasználó nem fog tudni bejelentkezni. Kérlek vedd fel a kapcsolatot a szolgáltatás adminisztrátorával , hogy a korlátot felemeljék.",
+ "Internal room ID: ": "Belső szoba azonosító: ",
+ "Room version number: ": "Szoba verziószáma: "
}
diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json
index 9db1a4a99c..86605c1d41 100644
--- a/src/i18n/strings/id.json
+++ b/src/i18n/strings/id.json
@@ -62,7 +62,6 @@
"Sign in with": "Masuk dengan",
"Leave room": "Meninggalkan ruang",
"Level:": "Tingkat:",
- "Login as guest": "Masuk sebagai tamu",
"Logout": "Keluar",
"Low priority": "Prioritas rendah",
"Markdown is disabled": "Markdown dinonaktifkan",
@@ -324,7 +323,6 @@
"Unable to fetch notification target list": "Tidak dapat mengambil daftar notifikasi target",
"Set Password": "Ubah Password",
"Enable audible notifications in web client": "Aktifkan notifikasi suara di klien web",
- "Permalink": "Permalink",
"Off": "Mati",
"Riot does not know how to join a room on this network": "Riot tidak tau bagaimana gabung ruang di jaringan ini",
"Mentions only": "Hanya jika disinggung",
diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json
new file mode 100644
index 0000000000..6770a0ea25
--- /dev/null
+++ b/src/i18n/strings/is.json
@@ -0,0 +1,645 @@
+{
+ "This email address is already in use": "Þetta tölvupóstfang er nú þegar í notkun",
+ "This phone number is already in use": "Þetta símanúmer er nú þegar í notkun",
+ "Failed to verify email address: make sure you clicked the link in the email": "Gat ekki sannprófað tölvupóstfang: gakktu úr skugga um að þú hafir smellt á tengilinn í tölvupóstinum",
+ "e.g. %(exampleValue)s": "t.d. %(exampleValue)s",
+ "e.g. ": "t.d. ",
+ "Your User Agent": "Kennisstrengur þinn",
+ "Your device resolution": "Skjáupplausn tækisins þíns",
+ "Analytics": "Greiningar",
+ "Call Anyway": "hringja samt",
+ "Answer Anyway": "Svara samt",
+ "Call": "Samtal",
+ "Answer": "Svara",
+ "The remote side failed to pick up": "Ekki var svarað á fjartengda endanum",
+ "VoIP is unsupported": "Enginn stuðningur við VoIP",
+ "Conference calls are not supported in encrypted rooms": "Símafundir eru ekki studdir í dulrituðum spjallrásum",
+ "Warning!": "Aðvörun!",
+ "Conference calling is in development and may not be reliable.": "Símafundir eru í þróun og gætu verið óáreiðanlegir.",
+ "Upload Failed": "Upphleðsla mistókst",
+ "Sun": "sun",
+ "Mon": "mán",
+ "Tue": "þri",
+ "Wed": "mið",
+ "Thu": "fim",
+ "Fri": "fös",
+ "Sat": "lau",
+ "Jan": "jan",
+ "Feb": "feb",
+ "Mar": "mar",
+ "Apr": "apr",
+ "May": "maí",
+ "Jun": "jún",
+ "Jul": "júl",
+ "Aug": "ágú",
+ "Sep": "sep",
+ "Oct": "okt",
+ "Nov": "nóv",
+ "Dec": "des",
+ "PM": "e.h.",
+ "AM": "f.h.",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
+ "Room name or alias": "Nafn eða samnefni spjallrásar",
+ "Default": "Sjálfgefið",
+ "Restricted": "Takmarkað",
+ "Moderator": "Umsjónarmaður",
+ "Admin": "Stjórnandi",
+ "Start a chat": "Hefja spjall",
+ "Email, name or matrix ID": "Tölvupóstfang, nafn eða Matrix-auðkenni",
+ "Start Chat": "Hefja spjall",
+ "Operation failed": "Aðgerð tókst ekki",
+ "You need to be logged in.": "Þú þarft að vera skráð/ur inn.",
+ "Unable to create widget.": "Gat ekki búið til viðmótshluta.",
+ "Failed to send request.": "Mistókst að senda beiðni.",
+ "This room is not recognised.": "Spjallrás er ekki þekkt.",
+ "Power level must be positive integer.": "Völd verða að vera jákvæð heiltala.",
+ "You are not in this room.": "Þú ert ekki á þessari spjallrás.",
+ "You do not have permission to do that in this room.": "Þú hefur ekki réttindi til þess að gera þetta á þessari spjallrás.",
+ "Missing room_id in request": "Vantar spjallrásarauðkenni í beiðni",
+ "Missing user_id in request": "Vantar notandaauðkenni í beiðni",
+ "Usage": "Notkun",
+ "Reason": "Ástæða",
+ "VoIP conference started.": "VoIP-símafundur hafinn.",
+ "VoIP conference finished.": "VoIP-símafundi lokið.",
+ "Someone": "Einhver",
+ "(not supported by this browser)": "(Ekki stutt af þessum vafra)",
+ "(no answer)": "(ekkert svar)",
+ "Send anyway": "Senda samt",
+ "Send": "Senda",
+ "Unnamed Room": "Nafnlaus spjallrás",
+ "Hide join/leave messages (invites/kicks/bans unaffected)": "Fela taka-þátt/hætta skilaboð (hefur ekki áhrif á boð/spörk/bönn)",
+ "Hide read receipts": "Fela leskvittanir",
+ "Show timestamps in 12 hour format (e.g. 2:30pm)": "Birta tímamerki á 12 stunda sniði (t.d. 2:30 fh)",
+ "Always show message timestamps": "Alltaf birta tímamerki skilaboða",
+ "Send analytics data": "Senda greiningargögn",
+ "Never send encrypted messages to unverified devices from this device": "Aldrei senda dulrituð skilaboð af þessu tæki til ósannvottaðra tækja",
+ "Never send encrypted messages to unverified devices in this room from this device": "Aldrei senda dulrituð skilaboð af þessu tæki til ósannvottaðra tækja á þessari spjallrás",
+ "Enable inline URL previews by default": "Sjálfgefið virkja forskoðun innfelldra vefslóða",
+ "Room Colour": "Litur spjallrásar",
+ "Collecting app version information": "Safna upplýsingum um útgáfu forrits",
+ "Collecting logs": "Safna atvikaskrám",
+ "Uploading report": "Sendi inn skýrslu",
+ "Waiting for response from server": "Bíð eftir svari frá vefþjóni",
+ "Messages containing my display name": "Skilaboð sem innihalda birtingarnafn mitt",
+ "Messages containing my user name": "Skilaboð sem innihalda notandanafn mitt",
+ "Messages in one-to-one chats": "Skilaboð í maður-á-mann spjalli",
+ "Messages in group chats": "Skilaboð í hópaspjalli",
+ "When I'm invited to a room": "Þegar mér er boðið á spjallrás",
+ "Call invitation": "Boð um þátttöku",
+ "Messages sent by bot": "Skilaboð send af vélmennum",
+ "unknown caller": "Óþekktur símnotandi",
+ "Incoming voice call from %(name)s": "Innhringing raddsamtals frá %(name)s",
+ "Incoming video call from %(name)s": "Innhringing myndsamtals frá %(name)s",
+ "Decline": "Hafna",
+ "Accept": "Samþykkja",
+ "Error": "Villa",
+ "Enter Code": "Settu inn kóða",
+ "Submit": "Senda inn",
+ "Phone": "Sími",
+ "Add phone number": "Bæta við símanúmeri",
+ "Add": "Bæta við",
+ "Continue": "Halda áfram",
+ "Export E2E room keys": "Flytja út E2E dulritunarlykla spjallrásar",
+ "Current password": "Núverandi lykilorð",
+ "Password": "Lykilorð",
+ "New Password": "Nýtt lykilorð",
+ "Confirm password": "Staðfestu lykilorðið",
+ "Change Password": "Breyta lykilorði",
+ "Authentication": "Auðkenning",
+ "Delete %(count)s devices|other": "Eyða %(count)s tækjum",
+ "Delete %(count)s devices|one": "Eyða tæki",
+ "Device ID": "Auðkenni tækis",
+ "Device Name": "Heiti tækis",
+ "Last seen": "Sást síðast",
+ "Enable Notifications": "Virkja tilkynningar",
+ "Error saving email notification preferences": "Villa við að vista valkosti pósttilkynninga",
+ "An error occurred whilst saving your email notification preferences.": "Villa kom upp við að vista valkosti tilkynninga í tölvupósti.",
+ "Keywords": "Stikkorð",
+ "Enter keywords separated by a comma:": "Settu inn stikkorð aðskilin með kommu:",
+ "OK": "Í lagi",
+ "Failed to change settings": "Mistókst að breyta stillingum",
+ "Can't update user notification settings": "Gat ekki uppfært stillingar á tilkynningum notandans",
+ "Failed to update keywords": "Mistókst að uppfæra stikkorð",
+ "Messages containing keywords ": "Skilaboð sem innihalda kstikkorð ",
+ "Notify for all other messages/rooms": "Senda tilkynningar fyrir öll önnur skilaboð/spjallrásir",
+ "Notify me for anything else": "Senda mér tilkynningar fyrir allt annað",
+ "Enable notifications for this account": "Virkja tilkynningar fyrir þennan notandaaðgang",
+ "Add an email address above to configure email notifications": "Settu inn tölvupóstfang hér fyrir ofan til að stilla tilkynningar með tölvupósti",
+ "Enable email notifications": "Virkja tilkynningar í tölvupósti",
+ "Notification targets": "Markmið tilkynninga",
+ "Advanced notification settings": "Ítarlegar stillingar á tilkynningum",
+ "Enable desktop notifications": "Virkja tilkynningar á skjáborði",
+ "Show message in desktop notification": "Birta tilkynningu í innbyggðu kerfistilkynningakerfi",
+ "Enable audible notifications in web client": "Virkja hljóðtilkynningar í vefviðmóti",
+ "Off": "Slökkt",
+ "On": "Kveikt",
+ "Noisy": "Hávært",
+ "Add a widget": "Bæta við viðmótshluta",
+ "Drop File Here": "Slepptu skrá hérna",
+ "Drop file here to upload": "Slepptu hér skrá til að senda inn",
+ " (unsupported)": " (óstutt)",
+ "%(senderName)s sent an image": "%(senderName)s sendi mynd",
+ "%(senderName)s sent a video": "%(senderName)s sendi myndskeið",
+ "%(senderName)s uploaded a file": "%(senderName)s sendi inn skrá",
+ "Options": "Valkostir",
+ "Unencrypted message": "Ódulrituð skilaboð",
+ "Blacklisted": "Á bannlista",
+ "Verified": "Sannreynt",
+ "Unverified": "Óstaðfest",
+ "device id: ": "Auðkenni tækis: ",
+ "Kick": "Sparka",
+ "Unban": "Afbanna",
+ "Ban": "Banna",
+ "Unban this user?": "Taka þennan notanda úr banni?",
+ "Ban this user?": "Banna þennan notanda?",
+ "Are you sure?": "Ertu viss?",
+ "Devices": "Tæki",
+ "Unignore": "Byrja að fylgjast með á ný",
+ "Ignore": "Hunsa",
+ "Mention": "Minnst á",
+ "Invite": "Bjóða",
+ "User Options": "User Options",
+ "Direct chats": "Beint spjall",
+ "Unmute": "Kveikja á hljóði",
+ "Mute": "Þagga hljóð",
+ "Make Moderator": "Gera að umsjónarmanni",
+ "Admin Tools": "Kerfisstjóratól",
+ "Level:": "Stig:",
+ "Invited": "Boðið",
+ "Filter room members": "Sía meðlimi spjallrásar",
+ "Attachment": "Viðhengi",
+ "Upload Files": "Senda inn skrár",
+ "Hangup": "Leggja á",
+ "Voice call": "Raddsamtal",
+ "Video call": "_Myndsímtal",
+ "Upload file": "Hlaða inn skrá",
+ "Send an encrypted message…": "Senda dulrituð skilaboð…",
+ "Send a message (unencrypted)…": "Senda skilaboð (ódulrituð)…",
+ "You do not have permission to post to this room": "Þú hefur ekki heimild til að senda skilaboð á þessa spjallrás",
+ "Server error": "Villa á þjóni",
+ "Command error": "Skipanavilla",
+ "bold": "feitletrað",
+ "italic": "skáletrað",
+ "strike": "yfirstrikað",
+ "underline": "undirstrikað",
+ "code": "kóði",
+ "quote": "tilvitnun",
+ "bullet": "áherslumerki",
+ "Loading...": "Hleð inn...",
+ "Online": "Nettengt",
+ "Idle": "Iðjulaust",
+ "Offline": "Ónettengt",
+ "Unknown": "Óþekkt",
+ "No rooms to show": "Engar spjallrásir sem hægt er að birta",
+ "Unnamed room": "Nafnlaus spjallrás",
+ "World readable": "Lesanlegt öllum",
+ "Guests can join": "Gestir geta tekið þátt",
+ "Save": "Vista",
+ "Join Room": "Taka þátt í spjallrás",
+ "Settings": "Stillingar",
+ "Forget room": "Gleyma spjallrás",
+ "Search": "Leita",
+ "Invites": "Boðsgestir",
+ "Favourites": "Eftirlæti",
+ "People": "Fólk",
+ "Rooms": "Spjallrásir",
+ "Low priority": "Lítill forgangur",
+ "Historical": "Ferilskráning",
+ "Rejoin": "Taka þátt aftur",
+ "This room": "Þessi spjallrás",
+ "This is a preview of this room. Room interactions have been disabled": "Þetta er forskoðun á spjallrásinni. Samskipti spjallrásarinnar hafa verið gerð óvirk",
+ "Privacy warning": "Aðvörun vegna gagnaleyndar",
+ "unknown error code": "óþekktur villukóði",
+ "Failed to forget room %(errCode)s": "Mistókst að gleyma spjallrásinni %(errCode)s",
+ "Encryption is enabled in this room": "Dulritun er virk í þessari spjallrás",
+ "Encryption is not enabled in this room": "Dulritun er ekki virk í þessari spjallrás",
+ "Banned users": "Bannaðir notendur",
+ "Leave room": "Fara af spjallrás",
+ "Favourite": "Eftirlæti",
+ "Tagged as: ": "Merkt sem: ",
+ "To link to a room it must have an address .": "Til að tengja við spjallrás verður hún að vera með vistfang .",
+ "Who can access this room?": "Hver hefur aðgang að þessari spjallrás?",
+ "Only people who have been invited": "Aðeins fólk sem hefur verið boðið",
+ "Anyone who knows the room's link, apart from guests": "Hver sá sem þekkir slóðina á spjallrásina, fyrir utan gesti",
+ "Anyone who knows the room's link, including guests": "Hver sá sem þekkir slóðina á spjallrásina, að gestum meðtöldum",
+ "Who can read history?": "Hver getur lesið ferilskráningu?",
+ "Anyone": "Hver sem er",
+ "Members only (since the point in time of selecting this option)": "Einungis meðlimir (síðan þessi kostur var valinn)",
+ "Members only (since they were invited)": "Einungis meðlimir (síðan þeim var boðið)",
+ "Members only (since they joined)": "Einungis meðlimir (síðan þeir skráðu sig)",
+ "Permissions": "Heimildir",
+ "Advanced": "Nánar",
+ "Search…": "Leita…",
+ "This Room": "Þessi spjallrás",
+ "All Rooms": "Allar spjallrásir",
+ "Cancel": "Hætta við",
+ "Jump to first unread message.": "Fara í fyrstu ólesin skilaboð.",
+ "Close": "Loka",
+ "Invalid alias format": "Ógilt snið samnefnis",
+ "not specified": "ekki tilgreint",
+ "not set": "ekki stillt",
+ "Addresses": "Vistföng",
+ "Invalid community ID": "Ógilt auðkenni samfélags",
+ "Flair": "Hlutverksmerki",
+ "This room is not showing flair for any communities": "Þessi spjallrás sýnir ekki hlutverksmerki fyrir nein samfélög",
+ "Sunday": "Sunnudagur",
+ "Monday": "Mánudagur",
+ "Tuesday": "Þriðjudagur",
+ "Wednesday": "Miðvikudagur",
+ "Thursday": "Fimmtudagur",
+ "Friday": "Föstudagur",
+ "Saturday": "Laugardagur",
+ "Today": "Í dag",
+ "Yesterday": "Í gær",
+ "Error decrypting attachment": "Villa við afkóðun viðhengis",
+ "Copied!": "Afritað",
+ "This Home Server would like to make sure you are not a robot": "Þessi heimavefþjónn vill ganga úr skugga um að þú sért ekki vélmenni",
+ "Custom Server Options": "Sérsniðnir valkostir vefþjóns",
+ "Dismiss": "Hunsa",
+ "To continue, please enter your password.": "Til að halda áfram, settu inn lykilorðið þitt.",
+ "Password:": "Lykilorð:",
+ "Please check your email to continue registration.": "Skoðaðu tölvupóstinn þinn til að geta haldið áfram með skráningu.",
+ "Code": "Kóði",
+ "powered by Matrix": "keyrt með Matrix",
+ "User name": "Notandanafn",
+ "Forgot your password?": "Gleymdirðu lykilorðinu?",
+ "Email address": "Tölvupóstfang",
+ "Sign in": "Skrá inn",
+ "Email address (optional)": "Tölvupóstfang (valfrjálst)",
+ "Register": "Nýskrá",
+ "Home server URL": "Slóð á heimaþjón",
+ "Identity server URL": "Slóð á auðkennisþjón",
+ "What does this mean?": "Hvað þýðir þetta?",
+ "Filter community members": "Sía meðlimi samfélags",
+ "Remove": "Fjarlægja",
+ "Something went wrong!": "Eitthvað fór úrskeiðis!",
+ "Filter community rooms": "Sía spjallrásir samfélags",
+ "Yes, I want to help!": "Já, ég vil hjálpa til",
+ "You are not receiving desktop notifications": "Þú færð ekki tilkynningar á skjáborði",
+ "Enable them now": "Virkja þetta núna",
+ "What's New": "Nýtt á döfinni",
+ "Update": "Uppfæra",
+ "What's new?": "Hvað er nýtt á döfinni?",
+ "A new version of Riot is available.": "Ný útgáfa af Riot er tiltæk.",
+ "Set Password": "Setja lykilorð",
+ "Error encountered (%(errorDetail)s).": "Villa fannst (%(errorDetail)s).",
+ "Checking for an update...": "Athuga með uppfærslu...",
+ "No update available.": "Engin uppfærsla tiltæk.",
+ "Downloading update...": "Sæki uppfærslu...",
+ "Warning": "Aðvörun",
+ "Allow": "Leyfa",
+ "Picture": "Mynd",
+ "Edit": "Breyta",
+ "Unblacklist": "Taka af bannlista",
+ "Blacklist": "Bannlisti",
+ "Unverify": "Afturkalla sannvottun",
+ "Verify...": "Sannreyna...",
+ "No results": "Engar niðurstöður",
+ "Delete": "Eyða",
+ "Communities": "Samfélög",
+ "Home": "Heim",
+ "You cannot delete this image. (%(code)s)": "Þú getur ekki eytt þessari mynd. (%(code)s)",
+ "Uploaded on %(date)s by %(user)s": "Sent inn %(date)s af %(user)s",
+ "Download this file": "Sækja þessa skrá",
+ "collapse": "fella saman",
+ "expand": "fletta út",
+ "In reply to ": "Sem svar til ",
+ "Room directory": "Skrá yfir spjallrásir",
+ "Start chat": "Hefja spjall",
+ "Add User": "Bæta við notanda",
+ "email address": "tölvupóstfang",
+ "Preparing to send logs": "Undirbý sendingu atvikaskráa",
+ "Logs sent": "Sendi atvikaskrár",
+ "Thank you!": "Takk fyrir!",
+ "Failed to send logs: ": "Mistókst að senda atvikaskrár: ",
+ "Submit debug logs": "Senda inn aflúsunarannála",
+ "GitHub issue link:": "Slóð villutilkynningar á GitHub:",
+ "Notes:": "Athugasemdir:",
+ "Send logs": "Senda atvikaskrá",
+ "Unavailable": "Ekki tiltækt",
+ "Changelog": "Breytingaskrá",
+ "Start new chat": "Hefja nýtt spjall",
+ "Start Chatting": "Hefja spjall",
+ "Confirm Removal": "Staðfesta fjarlægingu",
+ "Create Community": "Búa til samfélag",
+ "Community Name": "Heiti samfélags",
+ "Example": "Dæmi",
+ "Community ID": "Auðkenni samfélags",
+ "example": "dæmi",
+ "Create": "Búa til",
+ "Create Room": "Búa til spjallrás",
+ "Room name (optional)": "Heiti spjallrásar (valkvætt)",
+ "Advanced options": "Ítarlegir valkostir",
+ "Unknown error": "Óþekkt villa",
+ "Incorrect password": "Rangt lykilorð",
+ "Deactivate Account": "Gera notandaaðgang óvirkann",
+ "To continue, please enter your password:": "Til að halda áfram, settu inn lykilorðið þitt:",
+ "password": "lykilorð",
+ "Device name": "Heiti tækis",
+ "Device key": "Dulritunarlykill tækis",
+ "Verify device": "Sannreyna tæki",
+ "I verify that the keys match": "Ég staðfesti að dulritunarlyklarnir samsvari",
+ "Back": "Til baka",
+ "Send Account Data": "Senda upplýsingar um notandaaðgang",
+ "Filter results": "Sía niðurstöður",
+ "Toolbox": "Verkfærakassi",
+ "Developer Tools": "Forritunartól",
+ "An error has occurred.": "Villa kom upp.",
+ "Start verification": "Hefja sannvottun",
+ "Share without verifying": "Deila án sannvottunar",
+ "Ignore request": "Hunsa beiðni",
+ "Encryption key request": "Beiðni um dulritunarlykil",
+ "Sign out": "Skrá út",
+ "Send Logs": "Senda atvikaskrár",
+ "Refresh": "Endurlesa",
+ "Invalid Email Address": "Ógilt tölvupóstfang",
+ "Verification Pending": "Sannvottun í bið",
+ "Please check your email and click on the link it contains. Once this is done, click continue.": "Skoðaðu tölvupóstinn þinn og smelltu á tengilinn sem hann inniheldur. Þegar því er lokið skaltu smella á að halda áfram.",
+ "Skip": "Sleppa",
+ "User names may only contain letters, numbers, dots, hyphens and underscores.": "Notendanöfn mega einungis innihalda bókstafi, tölustafi, punkta, bandstrik eða undirstrik.",
+ "Username not available": "Notandanafnið er ekki tiltækt",
+ "Username available": "Notandanafnið er tiltækt",
+ "You have successfully set a password!": "Þér tókst að setja lykilorð!",
+ "You have successfully set a password and an email address!": "Þér tókst að setja lykilorð og tölvupóstfang!",
+ "Failed to change password. Is your password correct?": "Mistókst að breyta lykilorðinu. Er lykilorðið rétt?",
+ "(HTTP status %(httpStatus)s)": "(HTTP staða %(httpStatus)s)",
+ "Please set a password!": "Stilltu lykilorð!",
+ "Room contains unknown devices": "Spjallrás inniheldur óþekkt tæki",
+ "Unknown devices": "Óþekkt tæki",
+ "Custom": "Sérsniðið",
+ "Alias (optional)": "Samnefni (valfrjálst)",
+ "You cannot delete this message. (%(code)s)": "Þú getur ekki eytt þessum skilaboðum. (%(code)s)",
+ "Resend": "Endursenda",
+ "Cancel Sending": "Hætta við sendingu",
+ "Forward Message": "Áframsenda skeyti",
+ "Reply": "Svara",
+ "Pin Message": "Festa skeyti",
+ "View Source": "Skoða frumkóða",
+ "View Decrypted Source": "Skoða afkóðaða upprunaskrá",
+ "Unhide Preview": "Birta forskoðun",
+ "Quote": "Tilvitnun",
+ "Source URL": "Upprunaslóð",
+ "All messages (noisy)": "Öll skilaboð (hávært)",
+ "All messages": "Öll skilaboð",
+ "Mentions only": "Aðeins minnst á",
+ "Leave": "Fara út",
+ "Forget": "Gleyma",
+ "Reject": "Hafna",
+ "Low Priority": "Lítill forgangur",
+ "Direct Chat": "Beint spjall",
+ "View Community": "Skoða samfélag",
+ "Please install Chrome or Firefox for the best experience.": "Endilega settu upp Chrome eða Firefox til að þetta gangi sem best.",
+ "Safari and Opera work too.": "Safari og Opera virka líka ágætlega.",
+ "I understand the risks and wish to continue": "Ég skil áhættuna og vil halda áfram",
+ "Name": "Nafn",
+ "Topic": "Umfjöllunarefni",
+ "Failed to upload image": "Gat ekki sent inn mynd",
+ "Add rooms to this community": "Bæta spjallrásum í þetta samfélag",
+ "Featured Users:": "Notendur í sviðsljósinu:",
+ "Everyone": "Allir",
+ "Description": "Lýsing",
+ "Login": "Innskráning",
+ "Signed Out": "Skráð/ur út",
+ "Terms and Conditions": "Skilmálar og kvaðir",
+ "Logout": "Útskráning",
+ "Members": "Meðlimir",
+ "%(count)s Members|other": "%(count)s þátttakendur",
+ "%(count)s Members|one": "%(count)s þátttakandi",
+ "Invite to this room": "Bjóða inn á þessa spjallrás",
+ "Files": "Skrár",
+ "Notifications": "Tilkynningar",
+ "Hide panel": "Fela spjald",
+ "Invite to this community": "Bjóða í þetta samfélag",
+ "The server may be unavailable or overloaded": "Netþjónninn gæti verið undir miklu álagi eða ekki til taks",
+ "Room not found": "Spjallrás fannst ekki",
+ "Directory": "Efnisskrá",
+ "Search for a room": "Leita að spjallrás",
+ "#example": "#dæmi",
+ "Connectivity to the server has been lost.": "Tenging við vefþjón hefur rofnað.",
+ "Active call": "Virkt samtal",
+ "more": "meira",
+ "Failed to upload file": "Gat ekki sent inn skrá",
+ "Search failed": "Leit mistókst",
+ "Room": "Spjallrás",
+ "Fill screen": "Fylla skjáinn",
+ "Expand panel": "Fletta út spjaldi",
+ "Collapse panel": "Fella saman spjald",
+ "Filter room names": "Sía heiti spjallrása",
+ "Clear filter": "Hreinsa síu",
+ "Light theme": "Ljóst þema",
+ "Dark theme": "Dökkt þema",
+ "Success": "Tókst",
+ "Interface Language": "Tungumál notandaviðmóts",
+ "User Interface": "Notandaviðmót",
+ "Import E2E room keys": "Flytja inn E2E dulritunarlykla spjallrásar",
+ "Cryptography": "Dulritun",
+ "Device ID:": "Auðkenni tækis:",
+ "Device key:": "Dulritunarlykill tækis:",
+ "Ignored Users": "Hunsaðir notendur",
+ "Riot collects anonymous analytics to allow us to improve the application.": "Riot safnar nafnlausum greiningargögnum til að gera okkur kleift að bæta forritið.",
+ "Labs": "Tilraunir",
+ "Deactivate my account": "Gera notandaaðganginn minn óvirkann",
+ "Clear Cache": "Hreinsa skyndiminni",
+ "Updates": "Uppfærslur",
+ "Check for update": "Athuga með uppfærslu",
+ "Default Device": "Sjálfgefið tæki",
+ "Microphone": "Hljóðnemi",
+ "Camera": "Myndavél",
+ "VoIP": "VoIP",
+ "Email": "Tölvupóstfang",
+ "Add email address": "Bæta við tölvupóstfangi",
+ "Profile": "Notandasnið",
+ "Display name": "Birtingarnafn",
+ "Account": "Notandaaðgangur",
+ "Logged in as:": "Skráð inn sem:",
+ "Access Token:": "Aðgangsteikn:",
+ "click to reveal": "smelltu til að birta",
+ "Identity Server is": "Auðkennisþjónn er",
+ "matrix-react-sdk version:": "Útgáfa matrix-react-sdk:",
+ "riot-web version:": "Útgáfa riot-web:",
+ "olm version:": "Útgáfa olm:",
+ "Failed to send email": "Mistókst að senda tölvupóst",
+ "The email address linked to your account must be entered.": "Það þarf að setja inn tölvupóstfangið sem tengt er notandaaðgangnum þínum.",
+ "A new password must be entered.": "Það verður að setja inn nýtt lykilorð.",
+ "New passwords must match each other.": "Nýju lykilorðin verða að vera þau sömu.",
+ "I have verified my email address": "Ég hef staðfest tölvupóstfangið mitt",
+ "Return to login screen": "Fara aftur í innskráningargluggann",
+ "To reset your password, enter the email address linked to your account": "Til að endursetja lykilorðið þitt, settu þá inn tölvupóstfangið sem tengt er notandaaðgangnum þínum",
+ "New password": "Nýtt lykilorð",
+ "Confirm your new password": "Staðfestu nýtt lykilorð",
+ "Send Reset Email": "Senda endurstillingarpóst",
+ "Create an account": "Stofna notandaaðgang",
+ "Incorrect username and/or password.": "Rangt notandanafn og/eða lykilorð.",
+ "Upload an avatar:": "Hlaða inn auðkennismynd:",
+ "Missing password.": "Lykilorð vantar.",
+ "Passwords don't match.": "Lykilorðin samsvara ekki.",
+ "This doesn't look like a valid email address.": "Þetta lítur ekki út eins og gilt tölvupóstfang.",
+ "This doesn't look like a valid phone number.": "Þetta lítur ekki út eins og gilt símanúmer.",
+ "An unknown error occurred.": "Óþekkt villa kom upp.",
+ "Commands": "Skipanir",
+ "Users": "Notendur",
+ "unknown device": "óþekkt tæki",
+ "NOT verified": "EKKI sannreynt",
+ "verified": "sannreynt",
+ "Verification": "Sannvottun",
+ "Ed25519 fingerprint": "Ed25519 fingrafar",
+ "User ID": "Notandaauðkenni",
+ "Curve25519 identity key": "Curve25519 auðkennislykill",
+ "none": "ekkert",
+ "Claimed Ed25519 fingerprint key": "Tilkynnti Ed25519 fingrafarslykil",
+ "Algorithm": "Reiknirit",
+ "unencrypted": "ódulritað",
+ "Decryption error": "Afkóðunarvilla",
+ "Session ID": "Auðkenni setu",
+ "End-to-end encryption information": "Enda-í-enda dulritunarupplýsingar",
+ "Event information": "Upplýsingar um atburð",
+ "Sender device information": "Upplýsingar um tæki sendanda",
+ "Export room keys": "Flytja út dulritunarlykla spjallrásar",
+ "Enter passphrase": "Settu inn lykilsetningu (passphrase)",
+ "Confirm passphrase": "Staðfestu lykilsetningu",
+ "Export": "Flytja út",
+ "Import room keys": "Flytja inn dulritunarlykla spjallrásar",
+ "File to import": "Skrá til að flytja inn",
+ "Import": "Flytja inn",
+ "The platform you're on": "Stýrikerfið sem þú ert á",
+ "The version of Riot.im": "Útgáfan af Riot.im",
+ "Your language of choice": "Tungumálið þitt",
+ "Your homeserver's URL": "Vefslóð á heimaþjóninn þinn",
+ "Your identity server's URL": "Vefslóð á auðkenningarþjóninn þinn",
+ "Review Devices": "Yfirfara tæki",
+ "Call Timeout": "Tímamörk hringingar",
+ "Unable to capture screen": "Get ekki tekið skjámynd",
+ "Name or matrix ID": "Nafn eða Matrix-auðkenni",
+ "Invite to Community": "Bjóða í samfélag",
+ "Add rooms to the community": "Bæta spjallrásum í þetta samfélag",
+ "Add to community": "Bæta í samfélag",
+ "Unable to enable Notifications": "Tekst ekki að virkja tilkynningar",
+ "This email address was not found": "Tölvupóstfangið fannst ekki",
+ "Existing Call": "Fyrirliggjandi samtal",
+ "You are already in a call.": "Þú ert nú þegar í samtali.",
+ "Failed to set up conference call": "Mistókst að setja upp símafund",
+ "Invite new community members": "Bjóða nýjum meðlimum í samfélag",
+ "Which rooms would you like to add to this community?": "Hvaða spjallrásum myndir þú vilja bæta í þetta samfélag?",
+ "Invite new room members": "Bjóða nýjum meðlimum á spjallrás",
+ "Who would you like to add to this room?": "Hverjum myndir þú vilja bæta á þessa spjallrás?",
+ "Send Invites": "Senda boðskort",
+ "Failed to invite user": "Mistókst að bjóða notanda",
+ "Failed to invite": "Mistókst að bjóða",
+ "Reload widget": "Endurlesa viðmótshluta",
+ "Missing roomId.": "Vantar spjallrásarauðkenni.",
+ "/ddg is not a command": "/ddg er ekki skipun",
+ "Ignored user": "Hunsaður notandi",
+ "Device already verified!": "Tæki er þegar sannreynt!",
+ "Verified key": "Staðfestur dulritunarlykill",
+ "Unrecognised command:": "Óþekkt skipun:",
+ "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s breytti umræðuefninu í \"%(topic)s\".",
+ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s fjarlægði heiti spjallrásarinnar.",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s breytti heiti spjallrásarinnar í %(roomName)s.",
+ "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s sendi mynd.",
+ "%(senderName)s answered the call.": "%(senderName)s svaraði símtalinu.",
+ "Disinvite": "Taka boð til baka",
+ "Unknown Address": "Óþekkt vistfang",
+ "Delete Widget": "Eyða viðmótshluta",
+ "Delete widget": "Eyða viðmótshluta",
+ "Create new room": "Búa til nýja spjallrás",
+ "were invited %(count)s times|one": "var boðið",
+ "was invited %(count)s times|one": "var boðið",
+ "And %(count)s more...|other": "Og %(count)s til viðbótar...",
+ "ex. @bob:example.com": "t.d. @jon:netfang.is",
+ "Matrix ID": "Matrix-auðkenni",
+ "Matrix Room ID": "Matrix-auðkenni spjallrásar",
+ "Start chatting": "Hefja spjall",
+ "This setting cannot be changed later!": "Ekki er hægt að breyta þessari stillingu síðar!",
+ "Send Custom Event": "Senda sérsniðið atvik",
+ "Event sent!": "Atvik sent!",
+ "State Key": "Stöðulykill",
+ "Explore Room State": "Skoða stöðu spjallrásar",
+ "Explore Account Data": "Skoða aðgangsgögn",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Þú bættir við nýju tæki '%(displayName)s', sem er að krefjast dulritunarlykla.",
+ "Your unverified device '%(displayName)s' is requesting encryption keys.": "ósannvottaða tækið þitt '%(displayName)s' er að krefjast dulritunarlykla.",
+ "Loading device info...": "Hleð inn upplýsingum um tæki...",
+ "Log out and remove encryption keys?": "Skrá út og fjarlægja dulritunarlykla?",
+ "Clear Storage and Sign Out": "Hreinsa gagnageymslu og skrá út",
+ "Unable to restore session": "Tókst ekki að endurheimta setu",
+ "This doesn't appear to be a valid email address": "Þetta lítur ekki út eins og gilt tölvupóstfang",
+ "Unable to add email address": "Get ekki bætt við tölvupóstfangi",
+ "Unable to verify email address.": "Get ekki sannreynt tölvupóstfang.",
+ "Username invalid: %(errMessage)s": "Notandanafn er ógilt: %(errMessage)s",
+ "An error occurred: %(error_string)s": "Villa kom upp: %(error_string)s",
+ "To get started, please pick a username!": "Til að komast í gang, veldu fyrst notandanafn!",
+ "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" inniheldur tæki sem þú hefur ekki séð áður.",
+ "Private Chat": "Einkaspjall",
+ "Public Chat": "Opinbert spjall",
+ "Collapse Reply Thread": "Fella saman svarþráð",
+ "Sorry, your browser is not able to run Riot.": "Því miður, vafrinn þinn getur ekki keyrt Riot.",
+ "Make this room private": "Gera þessa spjallrás einka",
+ "Encrypt room": "Dulrita spjallrás",
+ "Add a Room": "Bæta við spjallrás",
+ "Add a User": "Bæta við notanda",
+ "Unable to accept invite": "Mistókst að þiggja boð",
+ "Unable to reject invite": "Mistókst að hafna boði",
+ "Unable to join community": "Tókst ekki að ganga í samfélag",
+ "Leave Community": "Hætta í samfélagi",
+ "Leave %(groupName)s?": "Hætta í %(groupName)s?",
+ "Unable to leave community": "Tókst ekki að hætta í samfélagi",
+ "Community Settings": "Samfélagsstillingar",
+ "Featured Rooms:": "Spjallrásir í sviðsljósinu:",
+ "%(inviter)s has invited you to join this community": "%(inviter)s hefur boðið þér að taka þátt í þessu samfélagi",
+ "Join this community": "Taka þátt í þessu samfélagi",
+ "Leave this community": "Hætta í þessu samfélagi",
+ "You are an administrator of this community": "Þú ert kerfisstjóri í þessu samfélagi",
+ "You are a member of this community": "Þú ert meðlimur í þessum hópi",
+ "Who can join this community?": "Hverjir geta tekið þátt í þessu samfélagi?",
+ "Long Description (HTML)": "Tæmandi lýsing (HTML)",
+ "Failed to load %(groupId)s": "Mistókst að hlaða inn %(groupId)s",
+ "Couldn't load home page": "Gat ekki hlaðið inn heimasíðu",
+ "Reject invitation": "Hafna boði",
+ "Are you sure you want to reject the invitation?": "Ertu viss um að þú viljir hafna þessu boði?",
+ "Failed to reject invitation": "Mistókst að hafna boði",
+ "Scroll to bottom of page": "Skruna neðst á síðu",
+ "No more results": "Ekki fleiri niðurstöður",
+ "Unknown room %(roomId)s": "Óþekkt spjallrás %(roomId)s",
+ "Failed to save settings": "Mistókst að vista stillingar",
+ "Failed to reject invite": "Mistókst að hafna boði",
+ "Click to unmute video": "Smelltu til að virkja hljóð í myndskeiði",
+ "Click to mute video": "Smelltu til að þagga niður í myndskeiði",
+ "Click to unmute audio": "Smelltu til að virkja hljóð",
+ "Click to mute audio": "Smelltu til að þagga niður hljóð",
+ "Failed to load timeline position": "Mistókst að hlaða inn staðsetningu á tímalínu",
+ "Uploading %(filename)s and %(count)s others|other": "Sendi inn %(filename)s og %(count)s til viðbótar",
+ "Uploading %(filename)s and %(count)s others|zero": "Sendi inn %(filename)s",
+ "Uploading %(filename)s and %(count)s others|one": "Sendi inn %(filename)s og %(count)s til viðbótar",
+ "Status.im theme": "Status.im þema",
+ "Can't load user settings": "Gat ekki hlaði inn notandastillingum",
+ "Server may be unavailable or overloaded": "Netþjónninn gæti verið undir miklu álagi eða ekki til taks",
+ "Remove Contact Information?": "Fjarlægja upplýsingar um tengilið?",
+ "Remove %(threePid)s?": "Fjarlægja %(threePid)s?",
+ "Unable to remove contact information": "Ekki tókst að fjarlægja upplýsingar um tengilið",
+ "Refer a friend to Riot:": "Mæla með Riot við vin:",
+ "Autocomplete Delay (ms):": "Töf við sjálfvirka klárun (msek):",
+ "": "",
+ "These are experimental features that may break in unexpected ways": "Þetta eru eiginleikar á tilraunastigi sem gætu bilað á óvæntan hátt",
+ "Use with caution": "Notist með varúð",
+ "Clear Cache and Reload": "Hreinsa skyndiminni og endurhlaða",
+ "No Microphones detected": "Engir hljóðnemar fundust",
+ "No Webcams detected": "Engar vefmyndavélar fundust",
+ "Homeserver is": "Heimanetþjónn er",
+ "Sign in to get started": "Skráðu þig inn til að komast í gang",
+ "Failed to fetch avatar URL": "Ekki tókst að sækja slóð á auðkennismynd",
+ "Set a display name:": "Stilltu birtingarnafn:",
+ "Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Lykilorð er of stutt (lágmark %(MIN_PASSWORD_LENGTH)s).",
+ "You need to enter a user name.": "Þú þarft að setja inn notandanafn.",
+ "I already have an account": "Ég er nú þegar með notandaaðgang",
+ "Displays action": "Birtir aðgerð",
+ "Changes your display nickname": "Breytir birtu gælunafni þínu",
+ "Searches DuckDuckGo for results": "Leitar í DuckDuckGo að niðurstöðum",
+ "Results from DuckDuckGo": "Leitarniðurstöður frá DuckDuckGo",
+ "Emoji": "Tjáningartáknmynd",
+ "Notify the whole room": "Tilkynna öllum á spjallrásinni",
+ "Room Notification": "Tilkynning á spjallrás",
+ "Passphrases must match": "Lykilfrasar verða að stemma",
+ "Passphrase must not be empty": "Lykilfrasi má ekki vera auður"
+}
diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json
index 50121c7059..6b2a41f4fb 100644
--- a/src/i18n/strings/it.json
+++ b/src/i18n/strings/it.json
@@ -160,10 +160,8 @@
"You are not in this room.": "Non sei in questa stanza.",
"You do not have permission to do that in this room.": "Non hai l'autorizzazione per farlo in questa stanza.",
"Missing room_id in request": "Manca l'id_stanza nella richiesta",
- "Must be viewing a room": "Devi vedere una stanza",
"Room %(roomId)s not visible": "Stanza %(roomId)s non visibile",
"Missing user_id in request": "Manca l'id_utente nella richiesta",
- "Failed to lookup current room": "Impossibile cercare la stanza attuale",
"Usage": "Utilizzo",
"/ddg is not a command": "/ddg non è un comando",
"To use it, just wait for autocomplete results to load and tab through them.": "Per usarlo, attendi l'autocompletamento dei risultati e selezionali con tab.",
@@ -212,9 +210,9 @@
"%(senderName)s made future room history visible to all room members.": "%(senderName)s ha reso visibile la futura cronologia della stanza a tutti i membri della stanza.",
"%(senderName)s made future room history visible to anyone.": "%(senderName)s ha reso visibile la futura cronologia della stanza a tutti.",
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s ha reso visibile la futura cronologia della stanza a (%(visibility)s) sconosciuto.",
- "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s ha attivato la crottografia end-to-end (algoritmo %(algorithm)s).",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s ha attivato la crittografia end-to-end (algoritmo %(algorithm)s).",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s da %(fromPowerLevel)s a %(toPowerLevel)s",
- "%(senderName)s changed the pinned messages for the room.": "%(senderName)s ha cambiato il messaggio ancorato della stanza.",
+ "%(senderName)s changed the pinned messages for the room.": "%(senderName)s ha cambiato i messaggi ancorati della stanza.",
"%(widgetName)s widget modified by %(senderName)s": "Widget %(widgetName)s modificato da %(senderName)s",
"%(widgetName)s widget added by %(senderName)s": "Widget %(widgetName)s aggiunto da %(senderName)s",
"%(widgetName)s widget removed by %(senderName)s": "Widget %(widgetName)s rimosso da %(senderName)s",
@@ -231,7 +229,6 @@
"Not a valid Riot keyfile": "Non è una chiave di Riot valida",
"Authentication check failed: incorrect password?": "Controllo di autenticazione fallito: password sbagliata?",
"Failed to join room": "Accesso alla stanza fallito",
- "Tag Panel": "Pannello etichette",
"Disable Emoji suggestions while typing": "Disattiva i suggerimenti delle emoji durante la digitazione",
"Use compact timeline layout": "Usa impaginazione cronologia compatta",
"Hide join/leave messages (invites/kicks/bans unaffected)": "Nascondi i messaggi di entrata/uscita (inviti/kick/ban esclusi)",
@@ -677,7 +674,7 @@
"Start Chatting": "Inizia a chattare",
"Confirm Removal": "Conferma la rimozione",
"Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Sei sicuro di volere rimuovere (eliminare) questo evento? Nota che se elimini il nome di una stanza o la modifica di un argomento, potrebbe annullare la modifica.",
- "Community IDs cannot not be empty.": "Gli ID della comunità non possono essere vuoti.",
+ "Community IDs cannot be empty.": "Gli ID della comunità non possono essere vuoti.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Gli ID della comunità devono contenere solo caratteri a-z, 0-9, or '=_-./'",
"Something went wrong whilst creating your community": "Qualcosa è andato storto nella creazione della tua comunità",
"Create Community": "Crea una comunità",
@@ -794,8 +791,6 @@
"Error whilst fetching joined communities": "Errore nella rilevazione delle comunità a cui ti sei unito",
"Create a new community": "Crea una nuova comunità",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Crea una comunità per raggruppare utenti e stanze! Crea una pagina iniziale personalizzata per stabilire il tuo spazio nell'universo di Matrix.",
- "Join an existing community": "Unisciti ad una comunità esistente",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Per unirti ad una comunità esistente devi conoscere il suo identificativo; è qualcosa del tipo +esempio:matrix.org .",
"You have no visible notifications": "Non hai alcuna notifica visibile",
"Scroll to bottom of page": "Scorri in fondo alla pagina",
"Message not sent due to unknown devices being present": "Messaggio non inviato data la presenza di dispositivi sconosciuti",
@@ -909,7 +904,6 @@
"Error: Problem communicating with the given homeserver.": "Errore: problema di comunicazione con l'homeserver dato.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Impossibile connettersi all'homeserver via HTTP quando c'è un URL HTTPS nella barra del tuo browser. Usa HTTPS o attiva gli script non sicuri .",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Impossibile connettersi all'homeserver - controlla la tua connessione, assicurati che il certificato SSL dell'homeserver sia fidato e che un'estensione del browser non stia bloccando le richieste.",
- "Login as guest": "Accedi come ospite",
"Sign in to get started": "Accedi per iniziare",
"Failed to fetch avatar URL": "Ricezione URL dell'avatar fallita",
"Set a display name:": "Imposta un nome visualizzato:",
@@ -1122,7 +1116,6 @@
"What's New": "Novità",
"Set Password": "Imposta Password",
"Enable audible notifications in web client": "Abilita notifiche audio nel client web",
- "Permalink": "Link permanente",
"Off": "Spento",
"#example": "#esempio",
"Mentions only": "Solo le citazioni",
@@ -1141,5 +1134,101 @@
"Collapse panel": "Riduci pannello",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Con il tuo attuale browser, l'aspetto e la sensazione generale dell'applicazione potrebbero essere completamente sbagliati e alcune delle funzionalità potrebbero non funzionare. Se vuoi provare comunque puoi continuare, ma non riceverai aiuto per qualsiasi problema tu possa riscontrare!",
"Checking for an update...": "Controllo aggiornamenti...",
- "There are advanced notifications which are not shown here": "Ci sono notifiche avanzate che non sono mostrate qui"
+ "There are advanced notifications which are not shown here": "Ci sono notifiche avanzate che non sono mostrate qui",
+ "Every page you use in the app": "Ogni pagina che usi nell'app",
+ "e.g. ": "es. ",
+ "Your User Agent": "Il tuo User Agent",
+ "Your device resolution": "La risoluzione del dispositivo",
+ "Missing roomId.": "ID stanza mancante.",
+ "Always show encryption icons": "Mostra sempre icone di cifratura",
+ "Enable widget screenshots on supported widgets": "Attiva le schermate dei widget sui widget supportati",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "Al momento non è possibile rispondere con un file quindi verrà inviato senza essere una risposta.",
+ "Unable to reply": "Impossibile rispondere",
+ "At this time it is not possible to reply with an emote.": "Al momento non è possibile rispondere con una emoticon.",
+ "Picture": "Immagine",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Impossibile caricare l'evento a cui si è risposto, o non esiste o non hai il permesso di visualizzarlo.",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Gli errori di Riot sono monitorati su GitHub: segnala un problema su GitHub .",
+ "Log out and remove encryption keys?": "Disconnettere e rimuovere le chiavi di cifratura?",
+ "Refresh": "Aggiorna",
+ "We encountered an error trying to restore your previous session.": "Abbiamo riscontrato un errore tentando di ripristinare la tua sessione precedente.",
+ "Send analytics data": "Invia dati statistici",
+ "Clear Storage and Sign Out": "Elimina lo storage e disconnetti",
+ "Send Logs": "Invia i log",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Eliminare lo storage del browser potrebbe risolvere il problema, ma verrai disconnesso e la cronologia delle chat criptate sarà illeggibile.",
+ "Collapse Reply Thread": "Riduci finestra di risposta",
+ "e.g. %(exampleValue)s": "es. %(exampleValue)s",
+ "Reload widget": "Ricarica widget",
+ "To notify everyone in the room, you must be a": "Per notificare chiunque nella stanza, devi essere un",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Per favore aiuta a migliorare Riot.im inviando dati di utilizzo anonimi . Verrà usato un cookie (vedi la nostra politica sui cookie ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Per favore aiutaci a migliorare Riot.im inviando dati di utilizzo anonimi . Verrà usato un cookie.",
+ "Yes, I want to help!": "Sì, voglio aiutare!",
+ "Warning: This widget might use cookies.": "Attenzione: questo widget potrebbe usare cookie.",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Il tuo account sarà permanentemente inutilizzabile. Non potrai accedere e nessuno potrà ri-registrare lo stesso ID utente. Il tuo account abbandonerà tutte le stanze a cui partecipa e i dettagli del tuo account saranno rimossi dal server di identità. Questa azione è irreversibile. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Disattivare il tuo account non eliminerà in modo predefinito i messaggi che hai inviato . Se vuoi che noi dimentichiamo i tuoi messaggi, seleziona la casella sotto.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "La visibilità dei messaggi in Matrix è simile alle email. Se dimentichiamo i messaggi significa che quelli che hai inviato non verranno condivisi con alcun utente nuovo o non registrato, ma gli utenti registrati che avevano già accesso ai messaggi avranno ancora accesso alla loro copia.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Per favore dimenticate tutti i messaggi che ho inviato quando il mio account viene disattivato (Attenzione: gli utenti futuri vedranno un elenco incompleto di conversazioni)",
+ "To continue, please enter your password:": "Per continuare, inserisci la tua password:",
+ "password": "password",
+ "Can't leave Server Notices room": "Impossibile abbandonare la stanza Notifiche Server",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Questa stanza viene usata per messaggi importanti dall'homeserver, quindi non puoi lasciarla.",
+ "Terms and Conditions": "Termini e condizioni",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Per continuare a usare l'homeserver %(homeserverDomain)s devi leggere e accettare i nostri termini e condizioni.",
+ "Review terms and conditions": "Leggi i termini e condizioni",
+ "Muted Users": "Utenti silenziati",
+ "Message Pinning": "Messaggi appuntati",
+ "Mirror local video feed": "Feed video dai ripetitori locali",
+ "Replying": "Rispondere",
+ "Popout widget": "Oggetto a comparsa",
+ "Failed to indicate account erasure": "Impossibile indicare la cancellazione dell'account",
+ "Bulk Options": "Opzioni applicate in massa",
+ "Encrypting": "Cifratura...",
+ "Encrypted, not sent": "Cifrato, non inviato",
+ "Share Link to User": "Condividi link con utente",
+ "Share room": "Condividi stanza",
+ "Share Room": "Condividi stanza",
+ "Link to most recent message": "Link al messaggio più recente",
+ "Share User": "Condividi utente",
+ "Share Community": "Condividi comunità",
+ "Share Room Message": "Condividi messaggio stanza",
+ "Link to selected message": "Link al messaggio selezionato",
+ "COPY": "COPIA",
+ "Share Message": "Condividi messaggio",
+ "No Audio Outputs detected": "Nessuna uscita audio rilevata",
+ "Audio Output": "Uscita audio",
+ "Try the app first": "Prova prima l'app",
+ "A conference call could not be started because the intgrations server is not available": "La chiamata di gruppo non può essere iniziata perchè il server di integrazione non è disponibile",
+ "Call in Progress": "Chiamata in corso",
+ "A call is already in progress!": "Una chiamata è già in corso!",
+ "Permission Required": "Permesso richiesto",
+ "You do not have permission to start a conference call in this room": "Non hai il permesso di iniziare una chiamata di gruppo in questa stanza",
+ "Jitsi Conference Calling": "Chiamata di gruppo Jitsi",
+ "Show empty room list headings": "Mostra le intestazioni dell'elenco delle stanze vuote",
+ "This event could not be displayed": "Questo evento non può essere mostrato",
+ "Demote yourself?": "Retrocedi?",
+ "Demote": "Retrocedi",
+ "deleted": "cancellato",
+ "underlined": "sottolineato",
+ "inline-code": "codice in linea",
+ "block-quote": "citazione",
+ "bulleted-list": "lista a punti",
+ "numbered-list": "lista a numeri",
+ "You have no historical rooms": "Non ci sono stanze storiche",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Nelle stanze criptate, come questa, le anteprime degli URL sono disabilitate di default per garantire che il tuo server di casa (dove vengono generate le anteprime) non possa raccogliere informazioni sui collegamenti che vedi in questa stanza.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Quando qualcuno inserisce un URL nel proprio messaggio, è possibile mostrare un'anteprima dell'URL per fornire maggiori informazioni su quel collegamento, come il titolo, la descrizione e un'immagine dal sito web.",
+ "The email field must not be blank.": "Il campo email non deve essere vuoto.",
+ "The user name field must not be blank.": "Il campo nome utente non deve essere vuoto.",
+ "The phone number field must not be blank.": "Il campo telefono non deve essere vuoto.",
+ "The password field must not be blank.": "Il campo passwordl non deve essere vuoto.",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Non è possibile inviare alcun messaggio fino a quando non si esaminano e si accettano i nostri termini e condizioni permissionLink>.",
+ "A call is currently being placed!": "Attualmente è in corso una chiamata!",
+ "System Alerts": "Avvisi di sistema",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "L'homeserver ha raggiunto il suo limite di utenti attivi mensili. Contatta l'amministratore del servizio per continuare ad usarlo.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Questo homeserver ha raggiunto il suo limite di utenti attivi mensili, perciò alcuni utenti non potranno accedere. Contatta l'amministratore del servizio per fare aumentare questo limite.",
+ "Failed to remove widget": "Rimozione del widget fallita",
+ "An error ocurred whilst trying to remove the widget from the room": "Si è verificato un errore tentando di rimuovere il widget dalla stanza",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Il tuo messaggio non è stato inviato perchè questo homeserver ha raggiunto il suo limite di utenti attivi mensili. Contatta l'amministratore del servizio per continuare ad usarlo.",
+ "This homeserver has hit its Monthly Active User limit": "Questo homeserver ha raggiunto il suo limite di utenti attivi mensili",
+ "Please contact your service administrator to continue using this service.": "Contatta l'amministratore del servizio per continuare ad usarlo.",
+ "Internal room ID: ": "ID interno della stanza: ",
+ "Room version number: ": "Numero di versione della stanza: "
}
diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json
index 80bd4f1ff5..741de4b551 100644
--- a/src/i18n/strings/ja.json
+++ b/src/i18n/strings/ja.json
@@ -223,7 +223,6 @@
"Event Type": "イベントの形式",
"What's New": "新着",
"Enable audible notifications in web client": "ウェブクライアントで音による通知を有効化",
- "Permalink": "パーマリンク",
"remove %(name)s from the directory.": "ディレクトリから %(name)s を消去する。",
"Riot does not know how to join a room on this network": "Riotはこのネットワークで部屋に参加する方法を知りません",
"You can now return to your account after signing out, and sign in on other devices.": "サインアウト後にあなたの\nアカウントに戻る、また、他の端末でサインインすることができます。",
diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json
index 4e0a988223..cad2a0b441 100644
--- a/src/i18n/strings/ko.json
+++ b/src/i18n/strings/ko.json
@@ -5,16 +5,16 @@
"Custom Server Options": "사용자 지정 서버 설정",
"Dismiss": "없애기",
"Error": "오류",
- "Mute": "알림 끄기",
+ "Mute": "음소거",
"Notifications": "알림",
- "powered by Matrix": "매트릭스의 지원을 받고 있어요",
- "Remove": "지우기",
+ "powered by Matrix": "Matrix의 지원을 받고 있습니다",
+ "Remove": "제거",
"Room directory": "방 목록",
"Search": "찾기",
"Settings": "설정",
- "Start chat": "이야기하기",
+ "Start chat": "대화하기",
"unknown error code": "알 수 없는 오류 코드",
- "OK": "알았어요",
+ "OK": "네",
"Continue": "게속하기",
"Accept": "수락",
"Account": "계정",
@@ -23,306 +23,303 @@
"Add phone number": "전화번호 추가하기",
"Admin": "관리자",
"Admin Tools": "관리 도구",
- "VoIP": "인터넷전화",
- "No Microphones detected": "마이크를 찾지 못했어요",
- "No Webcams detected": "카메라를 찾지 못했어요",
- "No media permissions": "저장소 권한이 없어요",
- "Default Device": "기본 장치",
+ "VoIP": "VoIP",
+ "No Microphones detected": "마이크를 찾지 못했습니다.",
+ "No Webcams detected": "카메라를 찾지 못했습니다.",
+ "No media permissions": "미디어 권한이 없습니다.",
+ "Default Device": "기본 기기",
"Microphone": "마이크",
"Camera": "카메라",
"Advanced": "고급",
"Algorithm": "알고리즘",
- "Hide removed messages": "지운 메시지 숨기기",
- "Always show message timestamps": "항상 메시지에 시간을 보이기",
+ "Hide removed messages": "제거된 메시지 숨기기",
+ "Always show message timestamps": "항상 메시지의 시간을 보여주기",
"Authentication": "인증",
"Alias (optional)": "별명 (선택)",
"A new password must be entered.": "새 비밀번호를 입력해주세요.",
- "An error has occurred.": "오류가 일어났어요.",
+ "An error has occurred.": "오류가 일어났습니다.",
"Anyone": "누구나",
"Are you sure?": "정말이세요?",
"Are you sure you want to leave the room '%(roomName)s'?": "정말로 '%(roomName)s'를 떠나시겠어요?",
"Attachment": "붙이기",
"Are you sure you want to upload the following files?": "다음 파일들을 올리시겠어요?",
"Autoplay GIFs and videos": "GIF와 동영상을 자동으로 재생하기",
- "Ban": "차단",
- "Banned users": "차단한 사용자",
- "Blacklisted": "요주의",
- "Can't load user settings": "사용사 설정을 불러올 수 없어요",
+ "Ban": "차단하기",
+ "Banned users": "차단된 사용자",
+ "Blacklisted": "블랙리스트에 올려짐",
+ "Can't load user settings": "사용사 설정을 불러올 수 없습니다.",
"Change Password": "비밀번호 바꾸기",
- "Changes your display nickname": "보여줄 별명을 바꾸기",
- "Clear Cache and Reload": "캐시를 지우고 다시 불러오기",
+ "Changes your display nickname": "별명 바꾸기",
+ "Clear Cache and Reload": "캐시 지우고 다시 시작하기",
"Clear Cache": "캐시 지우기",
"Confirm password": "비밀번호 확인",
"Confirm your new password": "새 비밀번호 확인",
"Create Room": "방 만들기",
"Create an account": "게정 만들기",
"Custom": "사용자 지정",
- "Device ID": "장치 ID",
+ "Device ID": "기기 ID",
"Default": "기본",
- "Device already verified!": "장치를 이미 확인했어요!",
- "device id: ": "장치 id: ",
- "Devices": "장치",
- "Direct chats": "직접 여러 명에게 이야기하기",
+ "Device already verified!": "이미 인증한 기기입니다!",
+ "device id: ": "기기 id: ",
+ "Devices": "기기",
+ "Direct chats": "직접 대화하기",
"Disable Notifications": "알림 끄기",
"Display name": "별명",
"Don't send typing notifications": "입력 중이라는 알림 보내지 않기",
"Email": "이메일",
"Email address": "이메일 주소",
"Email, name or matrix ID": "이메일, 이름 혹은 매트릭스 ID",
- "Failed to forget room %(errCode)s": "방 %(errCode)s를 잊지 못했어요",
+ "Failed to forget room %(errCode)s": "%(errCode)s 방을 지우지 못했습니다.",
"Favourite": "즐겨찾기",
"Operation failed": "작업 실패",
- "Failed to change password. Is your password correct?": "비밀번호를 바꾸지 못했어요. 이 비밀번호가 정말 맞으세요?",
- "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "+%(msisdn)s로 문자 메시지를 보냈어요. 인증 번호를 입력해주세요",
- "%(targetName)s accepted an invitation.": "%(targetName)s님이 초대를 수락했어요.",
- "%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s님이 %(displayName)s님에게서 초대를 수락했어요.",
+ "Failed to change password. Is your password correct?": "비밀번호를 바꾸지 못했습니다. 이 비밀번호가 맞나요?",
+ "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "+%(msisdn)s로 문자 메시지를 보냈습니다. 인증 번호를 입력해주세요.",
+ "%(targetName)s accepted an invitation.": "%(targetName)s님이 초대를 수락했습니다.",
+ "%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s님이 %(displayName)s 초대를 수락했습니다.",
"Access Token:": "접근 토큰:",
- "Active call (%(roomName)s)": "(%(roomName)s)에서 전화를 걸고 받을 수 있어요",
+ "Active call (%(roomName)s)": "(%(roomName)s)에서 전화를 걸고 받을 수 있습니다.",
"Add a topic": "주제 추가",
- "Missing Media Permissions, click here to request.": "저장소 권한을 잃었어요, 여기를 눌러 다시 요청해주세요.",
- "You may need to manually permit Riot to access your microphone/webcam": "수동으로 라이엇에 마이크와 카메라를 허용해야 할 수도 있어요",
+ "Missing Media Permissions, click here to request.": "미디어 권한이 없습니다. 여기를 눌러 다시 요청해주세요.",
+ "You may need to manually permit Riot to access your microphone/webcam": "수동으로 Riot에 마이크와 카메라를 허용할 수도 있습니다",
"%(items)s and %(lastItem)s": "%(items)s과 %(lastItem)s",
"and %(count)s others...|one": "그리고 다른 하나...",
"and %(count)s others...|other": "그리고 %(count)s...",
"%(names)s and %(lastPerson)s are typing": "%(names)s님과 %(lastPerson)s님이 입력중",
- "%(senderName)s answered the call.": "%(senderName)s님이 전화를 받았어요.",
+ "%(senderName)s answered the call.": "%(senderName)s님이 전화를 받았습니다.",
"Anyone who knows the room's link, apart from guests": "손님을 제외하고, 방의 주소를 아는 누구나",
"Anyone who knows the room's link, including guests": "손님을 포함하여, 방의 주소를 아는 누구나",
"Are you sure you want to reject the invitation?": "초대를 거절하시겠어요?",
- "%(senderName)s banned %(targetName)s.": "%(senderName)s님이 %(targetName)s님을 차단하셨어요.",
+ "%(senderName)s banned %(targetName)s.": "%(senderName)s님이 %(targetName)s님을 차단했습니다.",
"Bans user with given id": "받은 ID로 사용자 차단하기",
"Bulk Options": "대규모 설정",
"Call Timeout": "전화 대기 시간 초과",
- "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "홈 서버에 연결할 수 없어요 - 연결을 확인해주시고, 홈 서버의 SSL 인증서 가 믿을 수 있는지 확인하시고, 브라우저 확장기능이 요청을 차단하고 있는지 확인해주세요.",
- "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "주소창에 HTTPS URL이 있을 때는 HTTP로 홈 서버를 연결할 수 없어요. HTTPS를 쓰거나 안전하지 않은 스크립트를 허용해주세요 .",
- "%(senderName)s changed their profile picture.": "%(senderName)s님이 자기 소개 사진을 바꾸셨어요.",
- "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s님이 %(powerLevelDiffText)s의 권한 등급을 바꾸셨어요.",
- "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s님이 방 이름을 %(roomName)s로 바꾸셨어요.",
- "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s님이 방 이름을 지우셨어요.",
- "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s님이 주제를 \"%(topic)s\"로 바꾸셨어요.",
- "Changes to who can read history will only apply to future messages in this room": "방의 이후 메시지부터 기록을 읽을 수 있는 조건의 변화가 적용되어요",
- "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "비밀번호를 바꾸면 현재 모든 장치의 종단간 암호화 키가 다시 설정되고, 먼저 방의 키를 내보내고 나중에 다시 불러오지 않는 한, 암호화한 이야기 기록을 읽을 수 없게 되어요. 앞으로는 이 기능을 더 좋게 만들 거에요.",
+ "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "홈 서버에 연결할 수 없으니 연결을 확인하고, 홈 서버의 SSL 인증서 가 믿을 수 있는지 확인하고, 브라우저 확장기능이 요청을 차단하고 있는지 확인해 주세요.",
+ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "주소창에 HTTPS URL이 있을 때는 HTTP로 홈 서버를 연결할 수 없습니다. HTTPS를 쓰거나 안전하지 않은 스크립트를 허용해주세요 .",
+ "%(senderName)s changed their profile picture.": "%(senderName)s님이 프로필 사진을 바꿨습니다.",
+ "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s님이 %(powerLevelDiffText)s의 권한 등급을 바꿨습니다.",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s님이 방 이름을 %(roomName)s(으)로 바꿨습니다.",
+ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s님이 방 이름을 제거했습니다.",
+ "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s님이 주제를 \"%(topic)s\"로 바꿨습니다.",
+ "Changes to who can read history will only apply to future messages in this room": "이제부터의 메시지에만 이 방에서 누가 기록을 읽을 수 있는지에 대한 변경 내역이 적용됩니다",
+ "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "비밀번호를 바꾸면 현재 모든 기기의 종단 간 암호화 키가 다시 설정되고, 먼저 방의 키를 내보내고 나중에 다시 불러오지 않는 한, 암호화한 대화 기록을 읽을 수 없게 됩니다. 이 부분은 향상시키겠습니다.",
"Claimed Ed25519 fingerprint key": "Ed25519 지문 키가 필요",
"Click here to join the discussion!": "여기 를 눌러서 같이 논의해요!",
"Click here to fix": "해결하려면 여기를 누르세요",
- "Click to mute audio": "소리를 끄려면 누르세요",
- "Click to mute video": "동영상 소리를 끄려면 누르세요",
+ "Click to mute audio": "음소거하려면 누르세요",
+ "Click to mute video": "동영상을 음소거하려면 누르세요",
"click to reveal": "누르면 나타나요",
- "Click to unmute video": "동영상 소리를 켜려면 누르세요",
- "Click to unmute audio": "소리를 켜려면 누르세요",
+ "Click to unmute video": "동영상 음소거를 끄려면 누르세요",
+ "Click to unmute audio": "음소거를 끄려면 누르세요",
"Command error": "명령 오류",
"Commands": "명령",
- "Conference call failed.": "전화 회의를 실패했어요.",
- "Conference calling is in development and may not be reliable.": "전화 회의는 개발 중이며 믿을 수 없어요.",
- "Conference calls are not supported in encrypted rooms": "암호화한 방에서는 전화 회의를 할 수 없어요",
- "Conference calls are not supported in this client": "이 클라이언트에서는 전화 회의를 할 수 없어요",
- "Could not connect to the integration server": "통합 서버에 연결할 수 없어요",
+ "Conference call failed.": "전화 회의를 실패했습니다.",
+ "Conference calling is in development and may not be reliable.": "전화 회의는 개발 중이고, 따라서 신뢰하기 힘들 수 있습니다.",
+ "Conference calls are not supported in encrypted rooms": "암호화된 방에서는 전화 회의가 지원되지 않습니다",
+ "Conference calls are not supported in this client": "이 클라이언트에서는 전화 회의가 지원되지 않습니다",
+ "Could not connect to the integration server": "통합 서버에 연결할 수 없습니다.",
"%(count)s new messages|one": "%(count)s 새 메시지",
"%(count)s new messages|other": "%(count)s 새 메시지",
- "Create a new chat or reuse an existing one": "새 이야기를 시작하거나 기존에 하던 이야기를 이어하세요",
+ "Create a new chat or reuse an existing one": "새 대화를 시작하거나 전에 하던 대화를 계속하세요.",
"Cryptography": "암호화",
"Current password": "현재 비밀번호",
"Curve25519 identity key": "Curve25519 신원 키",
"Custom level": "사용자 지정 단계",
- "/ddg is not a command": "/ddg 는 없는 명령이에요",
+ "/ddg is not a command": "/ddg는 없는 명령입니다",
"Deactivate Account": "계정 정지",
- "Deactivate my account": "내 계정 정지하기",
+ "Deactivate my account": "계정 정지하기",
"Decline": "거절",
"Decrypt %(text)s": "해독 %(text)s",
"Decryption error": "해독 오류",
"Delete": "지우기",
"Deops user with given id": "받은 ID로 사용자의 등급을 낮추기",
- "Device ID:": "장치 ID:",
- "Device key:": "장치 키:",
- "Devices will not yet be able to decrypt history from before they joined the room": "방에 들어가기 전에는 장치에서 기록을 해독할 수 없어요",
+ "Device ID:": "기기 ID:",
+ "Device key:": "기기 열쇠:",
+ "Devices will not yet be able to decrypt history from before they joined the room": "아직 방에 들어가기 전의 기록은 복호화 하지 못 합니다",
"Disinvite": "초대 취소",
"Displays action": "활동 보이기",
"Download %(text)s": "%(text)s 받기",
"Drop File Here": "여기에 파일을 놓아주세요",
- "Drop here to tag %(section)s": "%(section)s 지정하려면 여기에 놓아주세요",
+ "Drop here to tag %(section)s": "%(section)s를(을) 태그하려면 여기에 놓아주세요.",
"Ed25519 fingerprint": "Ed25519 지문",
"Email address (optional)": "이메일 주소 (선택)",
"Emoji": "이모지",
- "Enable encryption": "암호화 켜기",
- "Enable Notifications": "알림 켜기",
- "Encrypted by a verified device": "인증한 장치로 암호화했어요",
- "Encrypted by an unverified device": "인증하지 않은 장치로 암호화했어요",
- "Encrypted messages will not be visible on clients that do not yet implement encryption": "암호화한 메시지는 아직 암호화를 구현하지 않은 클라이언트에서는 볼 수 없어요",
+ "Enable encryption": "암호화 사용하기",
+ "Enable Notifications": "알림 사용하기",
+ "Encrypted by a verified device": "인증된 기기에서 암호화 됐습니다.",
+ "Encrypted by an unverified device": "인증하지 않은 기기에서 암호화 됐습니다.",
+ "Encrypted messages will not be visible on clients that do not yet implement encryption": "암호화 한 메시지는 아직 암호화를 구현하지 않은 클라이언트에서는 볼 수 없습니다.",
"Encrypted room": "암호화한 방",
- "Encryption is enabled in this room": "이 방은 암호화중이에요",
- "Encryption is not enabled in this room": "이 방은 암호화하고 있지 않아요",
- "%(senderName)s ended the call.": "%(senderName)s님이 전화를 끊었어요.",
+ "Encryption is enabled in this room": "이 방에서는 암호화 사용 중입니다.",
+ "Encryption is not enabled in this room": "이 방에서는 암호화를 사용하고 있지 않습니다.",
+ "%(senderName)s ended the call.": "%(senderName)s님이 전화를 끊었습니다.",
"End-to-end encryption information": "종단간 암호화 정보",
- "End-to-end encryption is in beta and may not be reliable": "종단간 암호화는 시험중이며 믿을 수 없어요",
+ "End-to-end encryption is in beta and may not be reliable": "종단 간 암호화는 베타 테스트 중이며 신뢰하기 힘들 수 있습니다.",
"Enter Code": "코드를 입력하세요",
"Enter passphrase": "암호를 입력하세요",
- "Error decrypting attachment": "첨부 파일 해독중 문제가 일어났어요",
- "Error: Problem communicating with the given homeserver.": "오류: 지정한 홈 서버와 통신에 문제가 있어요.",
- "Event information": "사건 정보",
+ "Error decrypting attachment": "첨부 파일 해독중 문제가 일어났습니다",
+ "Error: Problem communicating with the given homeserver.": "오류: 지정한 홈 서버와 통신에 문제가 있습니다.",
+ "Event information": "이벤트 정보",
"Existing Call": "기존 전화",
"Export": "내보내기",
- "Export E2E room keys": "종단간 암호화 방 키 내보내기",
- "Failed to ban user": "사용자를 차단하지 못했어요",
- "Failed to change power level": "권한 등급을 바꾸지 못했어요",
- "Failed to fetch avatar URL": "아바타 URL을 불러오지 못했어요",
- "Failed to join room": "방에 들어가지 못했어요",
- "Failed to kick": "내쫓지 못했어요",
- "Failed to leave room": "방을 떠나지 못했어요",
- "Failed to load timeline position": "타임라인 위치를 불러오지 못했어요",
- "Failed to lookup current room": "현재 방을 찾지 못했어요",
- "Failed to mute user": "사용자의 알림을 끄지 못했어요",
- "Failed to reject invite": "초대를 거절하지 못했어요",
- "Failed to reject invitation": "초대를 거절하지 못했어요",
- "Failed to save settings": "설정을 저장하지 못했어요",
- "Failed to send email": "이메일을 보내지 못했어요",
- "Failed to send request.": "요청을 보내지 못했어요.",
- "Failed to set avatar.": "아바타를 설정하지 못했어요.",
- "Failed to set display name": "별명을 설정하지 못했어요",
- "Failed to set up conference call": "전화 회의를 시작하지 못했어요",
- "Failed to toggle moderator status": "조정자 상태를 설정하지 못했어요",
- "Failed to unban": "차단을 풀지 못했어요",
- "Failed to upload file": "파일을 올리지 못했어요",
- "Failed to upload profile picture!": "자기 소개에 사진을 올리지 못했어요!",
- "Failed to verify email address: make sure you clicked the link in the email": "이메일 주소를 확인하지 못했어요: 메일의 주소를 눌렀는지 확인해보세요",
- "Failure to create room": "방을 만들지 못했어요",
+ "Export E2E room keys": "종단 간 암호화 방 열쇠 내보내기",
+ "Failed to ban user": "사용자를 차단하지 못했습니다",
+ "Failed to change power level": "권한 등급을 바꾸지 못했습니다",
+ "Failed to fetch avatar URL": "아바타 URL을 불러오지 못했습니다.",
+ "Failed to join room": "방에 들어가지 못했습니다",
+ "Failed to kick": "추방하지 못했습니다.",
+ "Failed to leave room": "방을 떠나지 못했습니다",
+ "Failed to load timeline position": "타임라인 위치를 불러오지 못했습니다.",
+ "Failed to mute user": "사용자를 음소거하지 못했습니다.",
+ "Failed to reject invite": "초대를 거절하지 못했습니다.",
+ "Failed to reject invitation": "초대를 거절하지 못했습니다",
+ "Failed to save settings": "설정을 저장하지 못했습니다.",
+ "Failed to send email": "이메일을 보내지 못했습니다.",
+ "Failed to send request.": "요청을 보내지 못했습니다.",
+ "Failed to set avatar.": "아바타를 설정하지 못했습니다.",
+ "Failed to set display name": "별명을 설정하지 못했습니다",
+ "Failed to set up conference call": "전화 회의를 시작하지 못했습니다.",
+ "Failed to toggle moderator status": "조정자 상태를 설정하지 못했습니다",
+ "Failed to unban": "차단을 해제하지 못했습니다.",
+ "Failed to upload file": "파일을 올리지 못했습니다.",
+ "Failed to upload profile picture!": "프로필 사진을 올리지 못했어요!",
+ "Failed to verify email address: make sure you clicked the link in the email": "이메일 주소를 인증하지 못했습니다. 메일에 나온 주소를 눌렀는지 확인해 보세요",
+ "Failure to create room": "방을 만들지 못했습니다",
"Favourites": "즐겨찾기",
"Fill screen": "화면 채우기",
- "Filter room members": "방 구성원 거르기",
- "Forget room": "방 잊기",
+ "Filter room members": "방 구성원 찾기",
+ "Forget room": "방 지우기",
"Forgot your password?": "비밀번호를 잊어버리셨어요?",
- "For security, this session has been signed out. Please sign in again.": "보안을 위해서, 이 세션에서 로그아웃했어요. 다시 로그인해주세요.",
- "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "보안을 위해서, 로그아웃하면 이 브라우저에서 모든 종단간 암호화 키를 없앨 거에요. 이후 라이엇에서 이야기를 해독하고 싶으시면, 방 키를 내보내서 안전하게 보관하세요.",
+ "For security, this session has been signed out. Please sign in again.": "안전을 위해서 이 세션에서 로그아웃했습니다. 다시 로그인해주세요.",
+ "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "로그아웃하시면 보안을 위해 이 브라우저에 저장된 모든 종단 간 암호화 열쇠가 삭제됩니다. 다음에 Riot을 사용할 때 대화 기록을 복호화할 수 있길 원한다면, 방 열쇠를 내보내서 안전하게 보관하세요.",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s를 %(fromPowerLevel)s에서 %(toPowerLevel)s로",
- "Guest access is disabled on this Home Server.": "손님은 이 홈 서버에 접근하실 수 없어요.",
- "Guests cannot join this room even if explicitly invited.": "손님은 분명하게 초대받았어도 이 방에 들어가실 수 없어요.",
+ "Guest access is disabled on this Home Server.": "이 홈 서버는 손님으로서 접근하실 수 없습니다.",
+ "Guests cannot join this room even if explicitly invited.": "명시적으로 초대 받은 손님이라도 이 방에는 들어가실 수 없습니다.",
"Hangup": "전화 끊기",
"Hide read receipts": "읽음 확인 표시 숨기기",
"Hide Text Formatting Toolbar": "문자 서식 도구 숨기기",
- "Historical": "보관",
- "Home": "중심",
- "Homeserver is": "홈 서버는",
- "Identity Server is": "ID 서버는",
- "I have verified my email address": "제 이메일 주소를 확인했어요",
+ "Historical": "보관한 방",
+ "Home": "홈",
+ "Homeserver is": "홈 서버:",
+ "Identity Server is": "ID 서버:",
+ "I have verified my email address": "제 이메일 주소를 확인했습니다.",
"Import": "불러오기",
- "Import E2E room keys": "종단간 암호화 방 키 불러오기",
+ "Import E2E room keys": "종단 간 암호화 방 키 불러오기",
"Import room keys": "방 키 불러오기",
- "Incoming call from %(name)s": "%(name)s님이 전화를 걸어왔어요",
- "Incoming video call from %(name)s": "%(name)s님이 영상 통화를 걸어왔어요",
- "Incoming voice call from %(name)s": "%(name)s님이 음성 통화를 걸어왔어요",
+ "Incoming call from %(name)s": "%(name)s님에게서 전화가 왔습니다.",
+ "Incoming video call from %(name)s": "%(name)s님으로부터 영상 통화가 왔습니다.",
+ "Incoming voice call from %(name)s": "%(name)s님으로부터 음성 통화가 왔습니다.",
"Incorrect username and/or password.": "사용자 이름 혹은 비밀번호가 맞지 않아요.",
"Incorrect verification code": "인증 번호가 맞지 않아요",
"Interface Language": "인터페이스 언어",
- "Invalid alias format": "가명 형식이 맞지 않아요",
- "Invalid address format": "주소 형식이 맞지 않아요",
- "Invalid Email Address": "이메일 주소가 맞지 않아요",
- "Invalid file%(extra)s": "파일%(extra)s이 맞지 않아요",
- "%(senderName)s invited %(targetName)s.": "%(senderName)s님이 %(targetName)s님을 초대하셨어요.",
+ "Invalid alias format": "잘못된 별칭 형식입니다",
+ "Invalid address format": "잘못된 주소 형식입니다",
+ "Invalid Email Address": "잘못된 이메일 주소입니다",
+ "Invalid file%(extra)s": "잘못된 %(extra)s 파일입니다.",
+ "%(senderName)s invited %(targetName)s.": "%(senderName)s님이 %(targetName)s님을 초대했습니다.",
"Invite new room members": "새 구성원 초대하기",
"Invited": "초대받기",
- "Invites": "초대하기",
+ "Invites": "초대",
"Invites user with given id to current room": "받은 ID로 사용자를 현재 방에 초대하기",
"'%(alias)s' is not a valid format for an address": "'%(alias)s'는 주소에 맞는 형식이 아니에요",
"'%(alias)s' is not a valid format for an alias": "'%(alias)s'는 가명에 맞는 형식이 아니에요",
- "%(displayName)s is typing": "%(displayName)s님이 입력중",
+ "%(displayName)s is typing": "%(displayName)s님이 입력 중",
"Sign in with": "로그인",
"Join as voice or video .": "음성 또는 영상 으로 참여하세요.",
"Join Room": "방에 들어가기",
- "%(targetName)s joined the room.": "%(targetName)s님이 방에 들어오셨어요.",
- "Joins room with given alias": "받은 가명으로 방에 들어가기",
- "Jump to first unread message.": "읽지 않은 첫 메시지로 이동할래요.",
- "%(senderName)s kicked %(targetName)s.": "%(senderName)s님이 %(targetName)s을 내쫓았어요.",
- "Kick": "내쫓기",
- "Kicks user with given id": "받은 ID로 사용자 내쫓기",
+ "%(targetName)s joined the room.": "%(targetName)s님이 방에 들어왔습니다.",
+ "Joins room with given alias": "받은 별칭으로 방에 들어가기",
+ "Jump to first unread message.": "읽지 않은 첫 메시지로 이동하려면 누르세요.",
+ "%(senderName)s kicked %(targetName)s.": "%(senderName)s님이 %(targetName)s님을 추방했습니다.",
+ "Kick": "추방",
+ "Kicks user with given id": "받은 ID로 사용자 추방하기",
"Labs": "실험실",
- "Last seen": "마지막으로 본 곳",
+ "Last seen": "마지막 위치",
"Leave room": "방 떠나기",
- "%(targetName)s left the room.": "%(targetName)s님이 방을 떠나셨어요.",
+ "%(targetName)s left the room.": "%(targetName)s님이 방을 떠났습니다.",
"Level:": "등급:",
"Local addresses for this room:": "이 방의 로컬 주소:",
- "Logged in as:": "로그인:",
- "Login as guest": "손님으로 로그인",
+ "Logged in as:": "아이디:",
"Logout": "로그아웃",
- "Low priority": "낮은 우선순위",
- "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s님이 이후 방의 기록을 볼 수 있게 하셨어요 방 구성원 모두, 초대받은 시점부터.",
- "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s님이 이후 방의 기록을 볼 수 있게 하셨어요 방 구성원 모두, 방에 들어온 시점부터.",
- "%(senderName)s made future room history visible to all room members.": "%(senderName)s님이 이후 방의 기록을 볼 수 있게 하셨어요 방 구성원 모두.",
- "%(senderName)s made future room history visible to anyone.": "%(senderName)s님이 이후 방의 기록을 볼 수 있게 하셨어요 누구나.",
- "%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s님이 이후 방의 기록을 볼 수 있게 하셨어요 알 수 없음 (%(visibility)s).",
+ "Low priority": "숨긴 방",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s님이 이후 방 구성원 모두, 초대받은 시점부터 방의 기록을 볼 수 있게 했습니다.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s님이 이후 방 구성원 모두, 들어온 시점부터 방의 기록을 볼 수 있게 했습니다.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s님이 이후 방 구성원 모두 방의 기록을 볼 수 있게 했습니다.",
+ "%(senderName)s made future room history visible to anyone.": "%(senderName)s님이 이후 누구나 방의 기록을 볼 수 있게 했습니다.",
+ "%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s님이 이후 알 수 없음(%(visibility)s)이 방의 기록을 볼 수 있게 했습니다.",
"Manage Integrations": "통합 관리",
- "Markdown is disabled": "마크다운이 꺼져있어요",
- "Markdown is enabled": "마크다운이 켜져있어요",
+ "Markdown is disabled": "마크다운이 꺼져 있습니다.",
+ "Markdown is enabled": "마크다운이 켜져 있습니다.",
"matrix-react-sdk version:": "matrix-react-sdk 버전:",
- "Message not sent due to unknown devices being present": "알 수 없는 장치가 있어 메시지를 보내지 못했어요",
- "Missing room_id in request": "요청에서 방_id가 빠졌어요",
- "Missing user_id in request": "요청에서 사용자_id가 빠졌어요",
+ "Message not sent due to unknown devices being present": "알 수 없는 기기가 있어 메시지를 보내지 못했습니다.",
+ "Missing room_id in request": "요청에서 room_id가 빠졌습니다.",
+ "Missing user_id in request": "요청에서 user_id가 빠졌습니다",
"Mobile phone number": "휴대 전화번호",
"Mobile phone number (optional)": "휴대 전화번호 (선택)",
"Moderator": "조정자",
- "Must be viewing a room": "방을 둘러봐야만 해요",
"Name": "이름",
- "Never send encrypted messages to unverified devices from this device": "이 장치에서 인증받지 않은 장치로 암호화한 메시지를 보내지 마세요",
- "Never send encrypted messages to unverified devices in this room from this device": "이 장치에서 이 방의 인증받지 않은 장치로 암호화한 메시지를 보내지 마세요",
+ "Never send encrypted messages to unverified devices from this device": "이 기기에서는 절대 인증받지 않은 기기에게 암호화한 메시지를 보내지 않기",
+ "Never send encrypted messages to unverified devices in this room from this device": "이 기기에서 이 방의 인증받지 않은 기기로 암호화한 메시지를 보내지 마세요",
"New address (e.g. #foo:%(localDomain)s)": "새 주소 (예. #foo:%(localDomain)s)",
"New password": "새 비밀번호",
"New passwords don't match": "새 비밀번호가 맞지 않아요",
"New passwords must match each other.": "새 비밀번호는 서로 같아야 해요.",
"none": "없음",
- "not set": "설정하지 않았어요",
- "not specified": "지정하지 않았어요",
- "(not supported by this browser)": "(이 브라우저에서는 지원하지 않아요)",
+ "not set": "설정하지 않았습니다.",
+ "not specified": "지정하지 않았습니다.",
+ "(not supported by this browser)": "(이 브라우저에서 지원하지 않습니다.)",
"": "<지원하지 않아요>",
"NOT verified": "확인하지 않음",
- "No devices with registered encryption keys": "등록한 암호화 키가 있는 장치가 없어요",
- "No display name": "별명이 없어요",
- "No more results": "더 이상 결과가 없어요",
+ "No devices with registered encryption keys": "등록된 암호화 열쇠가 있는 기기가 없습니다.",
+ "No display name": "별명이 없습니다.",
+ "No more results": "더 이상 결과가 없습니다.",
"No results": "결과 없음",
- "No users have specific privileges in this room": "이 방에 지정한 권한의 사용자가 없어요",
+ "No users have specific privileges in this room": "이 방에 지정한 권한의 사용자가 없습니다.",
"olm version:": "olm 버전:",
"Password": "비밀번호",
"Password:": "비밀번호:",
- "Passwords can't be empty": "비밀번호는 비울 수 없어요",
+ "Passwords can't be empty": "비밀번호를 입력해 주세요.",
"Permissions": "권한",
"People": "사람들",
"Phone": "전화",
- "Once encryption is enabled for a room it cannot be turned off again (for now)": "방을 암호화하면 암호화를 도중에 끌 수 없어요. (현재로서는)",
+ "Once encryption is enabled for a room it cannot be turned off again (for now)": "(현재로서는) 방을 암호화하면 되돌릴 수 없습니다",
"Only people who have been invited": "초대받은 사람만",
- "%(senderName)s placed a %(callType)s call.": "%(senderName)s님이 %(callType)s 전화를 걸었어요.",
+ "%(senderName)s placed a %(callType)s call.": "%(senderName)s님이 %(callType)s 전화를 걸었습니다.",
"Please check your email and click on the link it contains. Once this is done, click continue.": "이메일을 확인하시고 그 안에 있는 주소를 누르세요. 이 일을 하고 나서, 계속하기를 누르세요.",
"Power level must be positive integer.": "권한 등급은 양의 정수여야만 해요.",
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (권한 %(powerLevelNumber)s)",
- "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "사용자를 자신과 같은 권한 등급으로 승급시키면 되돌릴 수 없어요.",
+ "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "사용자를 자신과 같은 권한 등급으로 승급시는 것이기에 되돌릴 수 없습니다.",
"Privacy warning": "개인정보 경고",
- "Private Chat": "비공개 이야기",
+ "Private Chat": "비공개 대화",
"Privileged Users": "권한 있는 사용자",
- "Profile": "자기 소개",
- "%(senderName)s removed their profile picture.": "%(senderName)s님이 자기 소개 사진을 지우셨어요.",
- "%(senderName)s set a profile picture.": "%(senderName)s님이 자기 소개 사진을 설정하셨어요.",
- "Public Chat": "공개 이야기",
+ "Profile": "프로필",
+ "%(senderName)s removed their profile picture.": "%(senderName)s님이 프로필 사진을 제거했습니다.",
+ "%(senderName)s set a profile picture.": "%(senderName)s님이 프로필 사진을 설정했습니다.",
+ "Public Chat": "공개 대화",
"Reason": "이유",
"Reason: %(reasonText)s": "이유: %(reasonText)s",
"Revoke Moderator": "조정자 철회",
- "Refer a friend to Riot:": "라이엇을 친구에게 추천해주세요:",
+ "Refer a friend to Riot:": "Riot을 친구에게 추천해주세요:",
"Register": "등록",
- "%(targetName)s rejected the invitation.": "%(targetName)s님이 초대를 거절하셨어요.",
+ "%(targetName)s rejected the invitation.": "%(targetName)s님이 초대를 거절했습니다.",
"Reject invitation": "초대 거절",
"Rejoin": "다시 들어가기",
"Remote addresses for this room:": "이 방의 원격 주소:",
- "Remove Contact Information?": "연락처를 지우시겠어요?",
- "%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s님이 별명 (%(oldDisplayName)s)을 지우셨어요.",
- "Remove %(threePid)s?": "%(threePid)s 지우시겠어요?",
- "%(senderName)s requested a VoIP conference.": "%(senderName)s님이 인터넷전화 회의를 요청하셨어요.",
- "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "비밀번호를 다시 설정하면 현재 모든 장치의 종단간 암호화 키가 다시 설정되고, 먼저 방의 키를 내보내고 나중에 다시 불러오지 않는 한, 암호화한 이야기 기록을 읽을 수 없게 되어요. 앞으로는 이 기능을 더 좋게 만들 거에요.",
+ "Remove Contact Information?": "연락처 정보를 제거하시겠어요?",
+ "%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s님이 별명(%(oldDisplayName)s)을 제거했습니다.",
+ "Remove %(threePid)s?": "%(threePid)s를(을) 제거하시겠어요?",
+ "%(senderName)s requested a VoIP conference.": "%(senderName)s님이 VoIP 회의를 요청했습니다.",
+ "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "비밀번호를 다시 설정하면 현재 모든 기기의 종단 간 암호화 키가 다시 설정되고, 먼저 방의 키를 내보내고 나중에 다시 불러오지 않는 한, 암호화한 대화 기록을 읽을 수 없게 됩니다. 이 부분은 향상시키겠습니다.",
"Results from DuckDuckGo": "덕덕고에서 검색한 결과",
"Return to login screen": "로그인 화면으로 돌아가기",
- "Riot does not have permission to send you notifications - please check your browser settings": "라이엇에게 알릴 권한이 없어요 - 브라우저 설정을 확인해주세요",
- "Riot was not given permission to send notifications - please try again": "라이엇이 알릴 권한을 받지 못했어요 - 다시 해주세요",
- "riot-web version:": "라이엇 웹 버전:",
+ "Riot does not have permission to send you notifications - please check your browser settings": "Riot은 알림을 보낼 권한을 가지고 있지 않습니다. 브라우저 설정을 확인해주세요",
+ "Riot was not given permission to send notifications - please try again": "Riot이 알림을 보낼 권한을 받지 못했습니다. 다시 해주세요",
+ "riot-web version:": "Riot 웹 버전:",
"Room %(roomId)s not visible": "방 %(roomId)s은 보이지 않아요",
- "Room Colour": "방 색상",
- "Room contains unknown devices": "방에 알 수 없는 장치가 있어요",
+ "Room Colour": "방 색",
+ "Room contains unknown devices": "방에 알 수 없는 기기가 있습니다.",
"Room name (optional)": "방 이름 (선택)",
"%(roomName)s does not exist.": "%(roomName)s은 없는 방이에요.",
- "%(roomName)s is not accessible at this time.": "현재는 %(roomName)s에 들어갈 수 없어요.",
+ "%(roomName)s is not accessible at this time.": "현재는 %(roomName)s에 들어갈 수 없습니다.",
"Rooms": "방",
"Save": "저장",
"Scroll to bottom of page": "화면 맨 아래로 이동",
@@ -331,90 +328,90 @@
"Searches DuckDuckGo for results": "덕덕고에서 검색",
"Seen by %(userName)s at %(dateTime)s": "%(userName)s님이 %(dateTime)s에 확인",
"Send anyway": "그래도 보내기",
- "Sender device information": "보낸 장치의 정보",
+ "Sender device information": "보낸 기기의 정보",
"Send Invites": "초대 보내기",
"Send Reset Email": "재설정 이메일 보내기",
- "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s님이 사진을 보냈어요.",
- "%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s님이 %(targetDisplayName)s님에게 들어오라는 초대를 보냈어요.",
+ "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s님이 사진을 보냈습니다.",
+ "%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "방에 들어오라고 %(senderName)s님이 %(targetDisplayName)s님에게 초대를 보냈습니다.",
"Server error": "서버 오류",
- "Server may be unavailable or overloaded": "서버를 쓸 수 없거나 과부하일 수 있어요",
+ "Server may be unavailable or overloaded": "서버가 사용 불가하거나 과부하가 걸렸을 수 있습니다.",
"Server may be unavailable, overloaded, or search timed out :(": "서버를 쓸 수 없거나 과부하거나, 검색 시간을 초과했어요 :(",
"Server may be unavailable, overloaded, or the file too big": "서버를 쓸 수 없거나 과부하거나, 파일이 너무 커요",
- "Server may be unavailable, overloaded, or you hit a bug.": "서버를 쓸 수 없거나 과부하거나, 오류에요.",
- "Server unavailable, overloaded, or something else went wrong.": "서버를 쓸 수 없거나 과부하거나, 다른 문제가 있어요.",
+ "Server may be unavailable, overloaded, or you hit a bug.": "서버를 쓸 수 없거나 과부하거나, 오류입니다.",
+ "Server unavailable, overloaded, or something else went wrong.": "서버를 쓸 수 없거나 과부하거나, 다른 문제가 있습니다.",
"Session ID": "세션 ID",
- "%(senderName)s set their display name to %(displayName)s.": "%(senderName)s님이 별명을 %(displayName)s로 바꾸셨어요.",
+ "%(senderName)s set their display name to %(displayName)s.": "%(senderName)s님이 별명을 %(displayName)s로 설정했습니다.",
"Show panel": "패널 보이기",
"Show Text Formatting Toolbar": "문자 서식 도구 보이기",
- "Show timestamps in 12 hour format (e.g. 2:30pm)": "시간을 12시간제로 보이기 (예. 오후 2:30)",
+ "Show timestamps in 12 hour format (e.g. 2:30pm)": "시간을 12시간제로 보여 주기(예. 오후 2:30)",
"Signed Out": "로그아웃함",
"Sign in": "로그인",
"Sign out": "로그아웃",
- "%(count)s of your messages have not been sent.|other": "일부 메시지는 보내지 못했어요.",
+ "%(count)s of your messages have not been sent.|other": "일부 메시지는 보내지 못했습니다.",
"Someone": "다른 사람",
- "Start a chat": "이야기하기",
+ "Start a chat": "대화 시작하기",
"Start authentication": "인증하기",
- "Start Chat": "이야기하기",
+ "Start Chat": "대화하기",
"Submit": "보내기",
"Success": "성공",
- "Tagged as: ": "지정함: ",
+ "Tagged as: ": "태그: ",
"The default role for new room members is": "방 새 구성원의 기본 역할",
"The main address for this room is": "이 방의 주요 주소",
- "The phone number entered looks invalid": "입력한 전화번호가 잘못된 거 같아요",
- "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "입력한 서명 키는 %(userId)s님의 장치 %(deviceId)s에서 받은 서명 키와 일치하네요. 인증한 장치로 표시할게요.",
- "This email address is already in use": "이 이메일 주소는 사용중이에요",
- "This email address was not found": "이 이메일 주소를 찾지 못했어요",
+ "The phone number entered looks invalid": "입력된 전화번호가 잘못된 것 같습니다",
+ "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "입력한 서명 키는 %(userId)s님의 기기 %(deviceId)s에서 받은 서명 키와 일치하네요. 인증한 기기라고 표시했습니다.",
+ "This email address is already in use": "이 이메일 주소는 이미 사용 중입니다",
+ "This email address was not found": "이 이메일 주소를 찾지 못했습니다.",
"The email address linked to your account must be entered.": "계정에 연결한 이메일 주소를 입력해야 해요.",
- "The file '%(fileName)s' exceeds this home server's size limit for uploads": "'%(fileName)s' 파일이 홈 서버에 올릴 수 있는 한계 크기를 초과했어요",
- "The file '%(fileName)s' failed to upload": "'%(fileName)s' 파일을 올리지 못했어요",
- "The remote side failed to pick up": "원격 측에서 찾지 못했어요",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "'%(fileName)s' 파일이 홈 서버에 올릴 수 있는 한계 크기를 초과했습니다.",
+ "The file '%(fileName)s' failed to upload": "'%(fileName)s' 파일을 올리지 못했습니다.",
+ "The remote side failed to pick up": "상대방이 받지 못했습니다",
"This Home Server does not support login using email address.": "이 홈 서버는 이메일 주소 로그인을 지원하지 않아요.",
- "This invitation was sent to an email address which is not associated with this account:": "이 초대는 이 계정과 연결되지 않은 이메일 주소로 보냈어요:",
- "This room has no local addresses": "이 방은 로컬 주소가 없어요",
+ "This invitation was sent to an email address which is not associated with this account:": "이 초대는 이 계정과 연결되지 않은 이메일 주소로 보냈습니다:",
+ "This room has no local addresses": "이 방은 로컬 주소가 없습니다.",
"This room is not recognised.": "이 방은 드러나지 않아요.",
- "These are experimental features that may break in unexpected ways": "예상치 못한 방법으로 망가질 지도 모르는 실험 기능이에요",
- "The visibility of existing history will be unchanged": "기존 기록은 볼 수 있는 대상이 바뀌지 않아요",
+ "These are experimental features that may break in unexpected ways": "예상치 못하게 망가질 수 있는 실험적인 기능입니다",
+ "The visibility of existing history will be unchanged": "기존 기록은 이전처럼 계속 볼 수 있습니다",
"This doesn't appear to be a valid email address": "올바르지 않은 이메일 주소로 보여요",
- "This is a preview of this room. Room interactions have been disabled": "방을 미리보는 거에요. 상호작용은 보이지 않아요",
- "This phone number is already in use": "이 전화번호는 사용중이에요",
+ "This is a preview of this room. Room interactions have been disabled": "방을 미리 보고 있습니다. 방에 들어가셔야 방 구성원들과 소통하실 수 있습니다.",
+ "This phone number is already in use": "이 전화번호는 이미 사용 중입니다",
"This room": "이 방",
- "This room is not accessible by remote Matrix servers": "이 방은 원격 매트릭스 서버에 접근할 수 없어요",
+ "This room is not accessible by remote Matrix servers": "이 방은 원격 매트릭스 서버에 접근할 수 없습니다.",
"This room's internal ID is": "방의 내부 ID",
"To link to a room it must have an address .": "방에 연결하려면 주소 가 있어야 해요.",
"To reset your password, enter the email address linked to your account": "비밀번호을 다시 설정하려면, 계정과 연결한 이메일 주소를 입력해주세요",
"To use it, just wait for autocomplete results to load and tab through them.": "이 기능을 사용하시려면, 자동완성 결과가 나오길 기다리신 뒤에 탭으로 움직여주세요.",
- "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "이 방의 타임라인에서 특정 시점을 불러오려고 했지만, 문제의 메시지를 볼 수 있는 권한이 없어요.",
- "Tried to load a specific point in this room's timeline, but was unable to find it.": "이 방의 타임라인에서 특정 시점을 불러오려고 했지만, 찾을 수 없었어요.",
+ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "이 방의 타임라인에서 특정 시점을 불러오려고 했지만, 문제의 메시지를 볼 수 있는 권한이 없습니다.",
+ "Tried to load a specific point in this room's timeline, but was unable to find it.": "이 방의 타임라인에서 특정 시점을 불러오려고 했지만, 찾을 수 없었습니다.",
"Turn Markdown off": "마크다운 끄기",
"Turn Markdown on": "마크다운 켜기",
- "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s님이 종단간 암호화를 켜셨어요 (알고리즘 %(algorithm)s).",
- "Unable to add email address": "이메일 주소를 추가할 수 없어요",
- "Unable to remove contact information": "연락처를 지울 수 없어요",
- "Unable to verify email address.": "이메일 주소를 인증할 수 없어요.",
- "Unban": "차단풀기",
- "%(senderName)s unbanned %(targetName)s.": "%(senderName)s님이 %(targetName)s님의 차단을 푸셨어요.",
- "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "이 이매알 주소가 초대를 받은 계정과 연결된 주소가 맞는지 확인할 수 없어요.",
- "Unable to capture screen": "화면을 찍을 수 없어요",
- "Unable to enable Notifications": "알림을 켤 수 없어요",
- "Unable to load device list": "장치 목록을 불러올 수 없어요",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s님이 종단 간 암호화를 켰습니다(%(algorithm)s 알고리즘).",
+ "Unable to add email address": "이메일 주소를 추가할 수 없습니다.",
+ "Unable to remove contact information": "연락처 정보를 제거할 수 없습니다.",
+ "Unable to verify email address.": "이메일 주소를 인증할 수 없습니다.",
+ "Unban": "차단 해제",
+ "%(senderName)s unbanned %(targetName)s.": "%(senderName)s님이 %(targetName)s님에 대한 차단을 해제했습니다.",
+ "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "이 이매알 주소가 초대를 받은 계정과 연결된 주소가 맞는지 확인할 수 없습니다.",
+ "Unable to capture screen": "화면을 찍을 수 없습니다",
+ "Unable to enable Notifications": "알림을 사용할 수 없습니다.",
+ "Unable to load device list": "기기 목록을 불러올 수 없습니다.",
"Undecryptable": "해독할 수 없는",
"Unencrypted room": "암호화하지 않은 방",
"unencrypted": "암호화하지 않음",
"Unencrypted message": "암호화하지 않은 메시지",
"unknown caller": "알 수 없는 발신자",
- "unknown device": "알 수 없는 장치",
+ "unknown device": "알 수 없는 기기",
"Unknown room %(roomId)s": "알 수 없는 방 %(roomId)s",
- "Unknown (user, device) pair:": "알 수 없는 (사용자, 장치) 연결:",
- "Unmute": "소리 켜기",
+ "Unknown (user, device) pair:": "알 수 없는 (사용자, 기기) 연결:",
+ "Unmute": "음소거 끄기",
"Unnamed Room": "이름 없는 방",
"Unrecognised command:": "인식 할 수 없는 명령:",
- "Unrecognised room alias:": "인식할 수 없는 방 가명:",
+ "Unrecognised room alias:": "인식할 수 없는 방 별칭:",
"Unverified": "인증하지 않음",
"Uploading %(filename)s and %(count)s others|zero": "%(filename)s 올리는 중",
"Uploading %(filename)s and %(count)s others|one": "%(filename)s 외 %(count)s 올리는 중",
"Uploading %(filename)s and %(count)s others|other": "%(filename)s 외 %(count)s 올리는 중",
"Upload avatar": "아바타 올리기",
- "Upload Failed": "파일을 올리지 못했어요",
+ "Upload Failed": "파일을 올리지 못했습니다.",
"Upload Files": "파일 올리기",
"Upload file": "파일 올리기",
"Upload new:": "새로 올리기:",
@@ -424,58 +421,58 @@
"User ID": "사용자 ID",
"User Interface": "사용자 인터페이스",
"User name": "사용자 이름",
- "Username invalid: %(errMessage)s": "사용자 이름을 인식할 수 없어요: %(errMessage)s",
+ "Username invalid: %(errMessage)s": "잘못된 사용자 이름입니다: %(errMessage)s",
"Users": "사용자들",
"Verification Pending": "인증을 기다리는 중",
"Verification": "인증",
"verified": "인증함",
"Verified": "인증함",
- "Verified key": "인증한 키",
- "Video call": "영상통화",
- "Voice call": "음성통화",
- "VoIP conference finished.": "인터넷전화 회의를 마쳤어요.",
- "VoIP conference started.": "인터넷전화 회의를 시작했어요.",
- "VoIP is unsupported": "인터넷전화를 지원하지 않아요",
- "(could not connect media)": "(미디어에 연결할 수 없어요)",
+ "Verified key": "인증한 열쇠",
+ "Video call": "영상 통화하기",
+ "Voice call": "음성 통화하기",
+ "VoIP conference finished.": "VoIP 회의를 마쳤습니다.",
+ "VoIP conference started.": "VoIP 회의를 시작했습니다.",
+ "VoIP is unsupported": "VoIP는 지원하지 않습니다",
+ "(could not connect media)": "(미디어에 연결할 수 없었습니다.)",
"(no answer)": "(응답 없음)",
"(unknown failure: %(reason)s)": "(알 수 없는 오류: %(reason)s)",
"(warning: cannot be disabled again!)": "(주의: 다시 끌 수 없어요!)",
"Warning!": "주의!",
- "WARNING: Device already verified, but keys do NOT MATCH!": "주의: 장치는 이미 인증했지만, 키가 맞지 않아요!",
+ "WARNING: Device already verified, but keys do NOT MATCH!": "주의: 기기는 이미 인증했지만, 열쇠가 맞지 않아요!",
"Who can access this room?": "누가 이 방에 들어올 수 있나요?",
"Who can read history?": "누가 기록을 읽을 수 있나요?",
"Who would you like to add to this room?": "이 방에 누구를 초대하고 싶으세요?",
- "Who would you like to communicate with?": "누구와 이야기하고 싶으세요?",
- "%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s님이 %(targetName)s니의 초대를 취소하셨어요.",
+ "Who would you like to communicate with?": "누구와 대화하고 싶으세요?",
+ "%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s님이 %(targetName)s님의 초대를 거절했습니다.",
"Would you like to accept or decline this invitation?": "초대를 받아들이거나 거절 하시겠어요?",
- "You already have existing direct chats with this user:": "이미 이 사용자와 직접 이야기하는 중이에요:",
- "You are already in a call.": "이미 자신이 통화 중이네요.",
- "Press to start a chat with someone": "다른 사람과 이야기하려면 을 누르세요",
- "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "주의: 키 확인 실패! %(userId)s와 장치 %(deviceId)s의 서명 키 \"%(fprint)s\"는 주어진 키 \"%(fingerprint)s\"와 맞지 않아요. 누가 이야기를 가로채는 중일 수도 있어요!",
- "You're not in any rooms yet! Press to make a room or to browse the directory": "어떤 방에도 들어가 있지 않으세요! 을 눌러서 방을 만들거나 를 눌러 목록에서 방을 찾아보세요",
- "You are trying to access %(roomName)s.": "%(roomName)s에 들어가려고 하는 중이에요.",
- "You cannot place a call with yourself.": "자신에게 전화를 걸 수는 없어요.",
- "You cannot place VoIP calls in this browser.": "이 브라우저에서는 인터넷전화를 걸 수 없어요.",
- "You do not have permission to post to this room": "이 방에서 글을 올릴 권한이 없어요",
- "You have been banned from %(roomName)s by %(userName)s.": "%(userName)s님이 %(roomName)s에서 차단하셨어요.",
- "You have been invited to join this room by %(inviterName)s": "%(inviterName)s님이 이 방에 초대하셨어요",
- "You have been kicked from %(roomName)s by %(userName)s.": "%(userName)s님이 %(roomName)s에서 추방하셨어요.",
- "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "모든 장치에서 로그아웃되었고 더 이상 알림을 받지 않으실 거에요. 다시 알림을 받으시려면, 각 장치에 로그인해주세요",
- "You have disabled URL previews by default.": "URL 미리보기 쓰지 않기 를 기본으로 하셨어요.",
- "You have enabled URL previews by default.": "URL 미리보기 쓰기 를 기본으로 하셨어요.",
- "You have no visible notifications": "보여드릴 알림이 없어요",
- "You may wish to login with a different account, or add this email to this account.": "다른 계정으로 로그인하거나, 이 이메일을 이 계정에 추가할 수도 있어요.",
+ "You already have existing direct chats with this user:": "이미 직접 대화 중인 사용자:",
+ "You are already in a call.": "이미 통화하고 계시잖아요.",
+ "Press to start a chat with someone": "다른 사람과 대화하려면 을 누르세요.",
+ "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "주의: 열쇠 확인에 실패했습니다! %(userId)s와 %(deviceId)s 기기의 서명 키 \"%(fprint)s\"는 주어진 키 \"%(fingerprint)s\"와 맞지 않습니다. 누군가 대화를 엿듣는 중일 수도 있습니다!",
+ "You're not in any rooms yet! Press to make a room or to browse the directory": "아직 어떤 방에도 들어가 있지 않아요! 을 눌러서 방을 만들거나 을 눌러 목록에서 방을 찾아보세요",
+ "You are trying to access %(roomName)s.": "%(roomName)s에 들어가려고 하는 중입니다.",
+ "You cannot place a call with yourself.": "자기 자신에게는 전화를 걸 수 없습니다.",
+ "You cannot place VoIP calls in this browser.": "이 브라우저에서는 VoIP 전화를 걸 수 없습니다.",
+ "You do not have permission to post to this room": "이 방에서 글을 올릴 권한이 없습니다.",
+ "You have been banned from %(roomName)s by %(userName)s.": "%(userName)s님에 의해 %(roomName)s에서 차단당했습니다.",
+ "You have been invited to join this room by %(inviterName)s": "%(inviterName)s님이 이 방에 초대하셨습니다.",
+ "You have been kicked from %(roomName)s by %(userName)s.": "%(userName)s님에 의해 %(roomName)s에서 추방당했습니다.",
+ "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "모든 기기에서 로그아웃되었고 더 이상 알림을 받지 않으실 거에요. 다시 알림을 받으시려면, 각 기기에 로그인해주세요.",
+ "You have disabled URL previews by default.": "기본으로 URL 미리보기를 사용 중지 했습니다.",
+ "You have enabled URL previews by default.": "URL 미리보기를 기본으로 사용 했습니다.",
+ "You have no visible notifications": "보여줄 수 있는 알림이 없습니다.",
+ "You may wish to login with a different account, or add this email to this account.": "다른 계정으로 로그인하거나, 이 이메일을 이 계정에 추가할 수도 있습니다.",
"You must register to use this functionality": "이 기능을 쓰시려면 계정을 등록 하셔야 해요",
"You need to be able to invite users to do that.": "그러려면 사용자를 초대하실 수 있어야 해요.",
"You need to be logged in.": "로그인하셔야 해요.",
"You need to enter a user name.": "사용자 이름을 입력하셔야 해요.",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "이메일 주소가 이 홈 서버의 매트릭스 ID와 관련이 없어요.",
- "Your password has been reset": "비밀번호를 다시 설정했어요",
- "Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "비밀번호를 바꾸었어요. 다른 장치에서 다시 로그인할 때까지 알림을 받지 않을 거에요",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "이메일 주소가 이 홈 서버의 매트릭스 ID와 관련이 없는 것 같습니다.",
+ "Your password has been reset": "비밀번호를 다시 설정했습니다.",
+ "Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "비밀번호를 바꿨습니다. 다른 기기에서는 다시 로그인할 때까지 푸시 알림을 받지 않을 겁니다",
"You seem to be in a call, are you sure you want to quit?": "전화 중인데, 끊으시겠어요?",
"You seem to be uploading files, are you sure you want to quit?": "파일을 올리는 중인데, 그만두시겠어요?",
"You should not yet trust it to secure data": "안전한 자료를 위해서는 아직 믿으시면 안돼요",
- "Your home server does not support device management.": "홈 서버가 장치 관리를 지원하지 않아요.",
+ "Your home server does not support device management.": "홈 서버가 기기 관리를 지원하지 않습니다.",
"Sun": "일",
"Mon": "월",
"Tue": "화",
@@ -495,29 +492,29 @@
"Oct": "10월",
"Nov": "11월",
"Dec": "12월",
- "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s일 %(time)s",
- "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s일 %(fullYear)s년 %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(monthName)s %(day)s일 %(weekDayName)s요일 %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s년 %(monthName)s %(day)s일 %(weekDayName)s요일 %(time)s",
"%(weekDayName)s %(time)s": "%(weekDayName)s, %(time)s",
- "Set a display name:": "별명 설정:",
+ "Set a display name:": "별명 설정하기:",
"Upload an avatar:": "아바타 올리기:",
- "This server does not support authentication with a phone number.": "이 서버는 전화번호 인증을 지원하지 않아요.",
- "Missing password.": "비밀번호를 틀렸어요.",
+ "This server does not support authentication with a phone number.": "이 서버는 전화번호 인증을 지원하지 않습니다.",
+ "Missing password.": "비밀번호가 없습니다.",
"Passwords don't match.": "비밀번호가 맞지 않아요.",
"Password too short (min %(MIN_PASSWORD_LENGTH)s).": "비밀번호가 너무 짧아요 (min %(MIN_PASSWORD_LENGTH)s).",
"This doesn't look like a valid email address.": "유효한 이메일 주소가 아니에요.",
"This doesn't look like a valid phone number.": "유효한 전화번호가 아니에요.",
- "User names may only contain letters, numbers, dots, hyphens and underscores.": "사용자 이름은 문자, 숫자, 점, -(붙임표), _(밑줄 문자)만 쓸 수 있어요.",
- "An unknown error occurred.": "알 수 없는 오류가 일어났어요.",
- "I already have an account": "이미 계정이 있어요",
- "An error occurred: %(error_string)s": "오류가 일어났어요: %(error_string)s",
+ "User names may only contain letters, numbers, dots, hyphens and underscores.": "사용자 이름은 문자, 숫자, 점, -(붙임표), _(밑줄 문자)만 쓸 수 있습니다.",
+ "An unknown error occurred.": "알 수 없는 오류가 일어났습니다.",
+ "I already have an account": "이미 계정이 있습니다.",
+ "An error occurred: %(error_string)s": "%(error_string)s 오류가 일어났습니다.",
"Topic": "주제",
"Make Moderator": "조정자 임명하기",
"Make this room private": "이 방을 비공개로 만들기",
"Share message history with new users": "메시지 기록을 새 사용자와 공유하기",
"Encrypt room": "암호화한 방",
- "There are no visible files in this room": "이 방에서 보여드릴 파일이 없어요",
+ "There are no visible files in this room": "이 방에는 보여줄 수 있는 파일이 없습니다.",
"Room": "방",
- "Connectivity to the server has been lost.": "서버 연결이 끊어졌어요.",
+ "Connectivity to the server has been lost.": "서버 연결이 끊어졌습니다.",
"Sent messages will be stored until your connection has returned.": "보내신 메시지는 다시 연결될 때까지 저장할 거에요.",
"(~%(count)s results)|one": "(~%(count)s 결과)",
"(~%(count)s results)|other": "(~%(count)s 결과)",
@@ -534,61 +531,61 @@
"New Password": "새 비밀번호",
"Start automatically after system login": "컴퓨터를 시작할 때 자동으로 실행하기",
"Desktop specific": "컴퓨터 설정",
- "Analytics": "정보 수집",
+ "Analytics": "정보 분석",
"Options": "선택권",
- "Riot collects anonymous analytics to allow us to improve the application.": "라이엇은 익명의 정보를 수집해 응용 프로그램을 개선한답니다.",
+ "Riot collects anonymous analytics to allow us to improve the application.": "Riot은 이 앱을 발전시키기 위해 익명으로 정보 분석을 수집합니다.",
"Passphrases must match": "암호가 일치해야 해요",
- "Passphrase must not be empty": "암호를 비우시면 안돼요",
+ "Passphrase must not be empty": "암호를 입력해 주세요.",
"Export room keys": "방 키를 내보내기",
"Confirm passphrase": "암호 확인",
"File to import": "가져올 파일",
"You must join the room to see its files": "파일을 보려면 방에 들어가야만 해요",
"Reject all %(invitedRooms)s invites": "모든 %(invitedRooms)s의 초대를 거절하기",
- "Start new chat": "새로 이야기하기",
- "Failed to invite": "초대하지 못했어요",
- "Failed to invite user": "사용자를 초대하지 못했어요",
- "Failed to invite the following users to the %(roomName)s room:": "다음 사용자들을 %(roomName)s 방으로 초대하지 못했어요:",
+ "Start new chat": "새로 대화하기",
+ "Failed to invite": "초대하지 못했습니다.",
+ "Failed to invite user": "사용자를 초대하지 못했습니다.",
+ "Failed to invite the following users to the %(roomName)s room:": "다음 사용자들을 %(roomName)s 방으로 초대하지 못했습니다:",
"Confirm Removal": "삭제 확인",
"Unknown error": "알 수 없는 오류",
"Incorrect password": "맞지 않는 비밀번호",
"To continue, please enter your password.": "계속하시려면, 비밀번호를 입력해주세요.",
- "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "이 과정으로 암호화한 방에서 받은 메시지의 키를 로컬 파일로 내보낼 수 있어요. 너중에 다른 매트릭스 클라이언트로 파일을 불러올 수 있기 때문에, 그 클라이언트에서 메시지를 해독할 수도 있지요.",
- "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "내보낸 파일은 누구든지 암호화한 메시지를 해독해서 읽을 수 있게 하므로, 보안에 신경 써 주세요. 이를 위해, 내보낸 파일을 암호화하려하니, 아래에 암호를 입력해주세요. 같은 암호를 쓰셔야만 자료를 불러올 수 있어요.",
- "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "이 과정으로 전에 다른 매트릭스 클라이언트에서 내보낸 암호화 키를 불러올 수 있어요. 그 다음에는 다른 클라이언트에서 해독할 수 있던 어떤 메시지라도 해독할 수 있을 거에요.",
- "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "내보낸 파일은 암호로 보호하고 있어요. 파일을 해독하려면, 여기에 암호를 입력해주세요.",
- "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "이 사건을 지우길 (없애길) 원하세요? 방 이름을 지우거나 주제를 바꾸시면, 되돌릴 수 없다는 걸 명심해주세요.",
- "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "이 장치를 믿을 수 있는지 확인하시려면, 몇 가지 방법(예를 들자면 직접 만나거나 전화를 걸어서)으로 소유자에게 연락하시고 그들이 사용자 설정에서 보는 키와 아래 키가 같은지 물어보세요:",
- "Device name": "장치 이름",
- "Device Name": "장치 이름",
- "Device key": "장치 키",
- "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "맞다면, 아래 인증 버튼을 누르세요. 맞지 않다면, 다른 사람이 이 장치를 가로채고 있으니 요주의 버튼을 누르시고 싶으실 거 같네요.",
- "In future this verification process will be more sophisticated.": "앞으로는 이 확인 과정이 더 정교해질 거에요.",
- "Verify device": "인증한 장치",
- "I verify that the keys match": "키가 맞는 걸 확인했어요",
- "Unable to restore session": "세션을 복구할 수 없어요",
- "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "이전에 더 최근 버전의 라이엇을 쓰셨다면, 이 버전과 맞지 않을 거에요. 창을 닫고 더 최근 버전으로 돌아가세요.",
- "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "현재 인증하지 않은 장치를 요주의로 지정하셨어요. 이 장치들에 메시지를 보내려면 인증을 해야 해요.",
- "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "각 장치가 알맞은 소유자에게 속해 있는지 인증 과정을 거치길 추천하지만, 원하신다면 그러지 않고 메시지를 다시 보내실 수 있어요.",
- "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\"에 본 적 없는 장치가 있어요.",
- "Unknown devices": "알 수 없는 장치",
+ "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "이 과정으로 암호화한 방에서 받은 메시지의 키를 로컬 파일로 내보낼 수 있습니다. 너중에 다른 매트릭스 클라이언트로 파일을 불러올 수 있기 때문에, 그 클라이언트에서 메시지를 해독할 수도 있죠.",
+ "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "내보낸 파일이 있으면 누구든 암호화한 메시지를 해독해서 읽을 수 있으므로, 보안에 신경 써 주세요. 이런 이유로 인해, 아래에 암호를 입력해 내보낸 파일을 암호화하는 걸 추천합니다. 같은 암호를 사용해야만 자료를 불러올 수 있습니다.",
+ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "이 과정으로 전에 다른 매트릭스 클라이언트에서 내보낸 암호화 키를 불러올 수 있습니다. 그 다음에는 다른 클라이언트에서 해독할 수 있던 어떤 메시지라도 해독할 수 있습니다.",
+ "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "내보낸 파일은 암호로 보호하고 있습니다. 파일을 해독하려면, 여기에 암호를 입력해주세요.",
+ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "이 이벤트를 제거(삭제)하길 원하세요? 방 이름을 삭제하거나 주제를 바꾸면, 다시 복귀될 수도 있습니다.",
+ "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "이 기기를 믿을 수 있는지 인증하시려면, 다른 방법(예를 들자면 직접 만나거나 전화를 걸어서)으로 소유자 분에게 연락해, 사용자 설정에 있는 키가 아래 키와 같은지 물어보세요:",
+ "Device name": "기기 이름",
+ "Device Name": "기기 이름",
+ "Device key": "기기 열쇠",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "키가 동일하다면, 아래의 인증하기 버튼을 누르세요. 혹시 키가 다르다면, 이 기기가 중간자 공격을 받고 있는 중인 것이므로 블랙리스트에 올려야 합니다.",
+ "In future this verification process will be more sophisticated.": "이 인증 과정은 앞으로 더 정교하게 개선시키겠습니다.",
+ "Verify device": "기기 인증하기",
+ "I verify that the keys match": "열쇠가 맞는지 인증합니다",
+ "Unable to restore session": "세션을 복구할 수 없습니다.",
+ "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "이전에 더 최근 버전의 Riot을 쓰셨다면, 이 버전과 맞지 않을 거에요. 창을 닫고 더 최근 버전으로 돌아가세요.",
+ "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "인증되지 않은 기기를 블랙리스트에 올리고 있습니다. 메시지를 보내려면 인증해야 합니다.",
+ "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "각 기기가 알맞은 소유자에게 속해 있는지 인증 과정을 거치길 추천하지만, 원하신다면 그러지 않고도 메시지를 다시 보내실 수 있습니다.",
+ "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\"에 본 적이 없는 기기가 있습니다.",
+ "Unknown devices": "알 수 없는 기기",
"Unknown Address": "알 수 없는 주소",
- "Unblacklist": "요주의 취소",
- "Blacklist": "요주의",
- "Unverify": "확인 취소",
- "Verify...": "확인...",
+ "Unblacklist": "블랙리스트에서 빼기",
+ "Blacklist": "블랙리스트에 올리기",
+ "Unverify": "인증 취소",
+ "Verify...": "인증하기...",
"ex. @bob:example.com": "예. @bob:example.com",
"Add User": "사용자 추가",
- "This Home Server would like to make sure you are not a robot": "이 홈 서버는 당신이 로봇이 아닌지 확인하고 싶다네요",
+ "This Home Server would like to make sure you are not a robot": "이 홈 서버는 당신이 로봇이 아닌지 확인하고 싶다고 합니다.",
"Sign in with CAS": "CAS로 로그인 하기",
"Please check your email to continue registration.": "등록하시려면 이메일을 확인해주세요.",
"Token incorrect": "토큰이 안 맞아요",
"Please enter the code it contains:": "들어있던 코드를 입력해주세요:",
- "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "이메일 주소를 정하지 않으시면, 비밀번호를 다시 설정하실 수 없어요. 괜찮으신가요?",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "이메일 주소를 정하지 않으면, 비밀번호를 다시 설정할 수 없습니다. 괜찮으신가요?",
"You are registering with %(SelectedTeamName)s": "%(SelectedTeamName)s로 등록할게요",
"Default server": "기본 서버",
"What does this mean?": "무슨 뜻인가요?",
- "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "사용자 지정 서버 설정에서 다른 홈 서버 URL을 지정해 다른 매트릭스 서버에 로그인 할 수 있어요.",
- "This allows you to use this app with an existing Matrix account on a different home server.": "이를 통해 이 앱과 다른 홈 서버의 기존 매트릭스 계정을 함께 쓸 수 있죠.",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "사용자 지정 서버 설정에서 다른 홈 서버 URL을 지정해 다른 매트릭스 서버에 로그인 할 수 있습니다.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "이를 통해 이 앱과 다른 홈 서버의 기존 매트릭스 계정을 함께 쓸 수 있습니다.",
"You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "사용자 지정 ID 서버를 설정할 수도 있지만 보통 그런 경우엔 이메일 주소를 기반으로 한 사용자와 상호작용이 막힐 거에요.",
"Custom server": "사용자 지정 서버",
"Home server URL": "홈 서버 URL",
@@ -597,8 +594,8 @@
"Error decrypting image": "사진 해독 오류",
"Error decrypting video": "영상 해독 오류",
"Add an Integration": "통합 추가",
- "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "타사 사이트로 이동하는데 %(integrationsUrl)s에서 쓰도록 계정을 인증할 수 있어요. 계속하시겠어요?",
- "Removed or unknown message type": "지웠거나 알 수 없는 메시지 유형",
+ "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "%(integrationsUrl)s에서 쓸 수 있도록 계정을 인증하려고 다른 사이트로 이동하고 있습니다. 계속하시겠어요?",
+ "Removed or unknown message type": "제거했거나 알 수 없는 메시지 유형",
"URL Previews": "URL 미리보기",
"Drop file here to upload": "올릴 파일을 여기에 놓으세요",
" (unsupported)": " (지원하지 않음)",
@@ -608,168 +605,585 @@
"Offline": "미접속",
"Updates": "업데이트",
"Check for update": "업데이트 확인",
- "Start chatting": "이야기하기",
- "Start Chatting": "이야기하기",
- "Click on the button below to start chatting!": "이야기하려면 아래 버튼을 누르세요!",
- "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s님이 방 아바타를 로 바꾸셨어요",
- "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s님이 방 아바타를 지우셨어요.",
- "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s가 %(roomName)s 방의 아바타를 바꾸셨어요",
+ "Start chatting": "대화하기",
+ "Start Chatting": "대화하기",
+ "Click on the button below to start chatting!": "대화하려면 아래 버튼을 누르세요!",
+ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s님이 방 아바타를 로 바꿨습니다",
+ "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s님이 방 아바타를 제거했습니다.",
+ "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s님이 %(roomName)s의 아바타를 바꿨습니다",
"Username available": "쓸 수 있는 사용자 이름",
"Username not available": "쓸 수 없는 사용자 이름",
"Something went wrong!": "문제가 생겼어요!",
"This will be your account name on the homeserver, or you can pick a different server .": "이건 홈 서버의 계정 이름이에요, 다른 서버 를 고를 수도 있다는 거죠.",
"If you already have a Matrix account you can log in instead.": "매트릭스 계정을 가지고 계시면 로그인 하실 수도 있죠.",
- "Your browser does not support the required cryptography extensions": "브라우저가 필요한 암호화 확장 기능을 지원하지 않아요",
- "Not a valid Riot keyfile": "올바른 라이엇 키 파일이 아니에요",
- "Authentication check failed: incorrect password?": "인증 확인 실패: 비밀번호를 틀리셨나요?",
- "Disable Peer-to-Peer for 1:1 calls": "1:1 통화는 P2P 끄기",
+ "Your browser does not support the required cryptography extensions": "필요한 암호화 확장 기능을 브라우저가 지원하지 않습니다",
+ "Not a valid Riot keyfile": "올바른 Riot 열쇠 파일이 아닙니다",
+ "Authentication check failed: incorrect password?": "검증 확인 실패: 비밀번호를 틀리셨나요?",
+ "Disable Peer-to-Peer for 1:1 calls": "1:1 통화할 때는 P2P 비활성화하기",
"Do you want to set an email address?": "이메일 주소를 설정하시겠어요?",
- "This will allow you to reset your password and receive notifications.": "이렇게 하면 비밀번호를 다시 설정하고 알림을 받으실 수 있어요.",
+ "This will allow you to reset your password and receive notifications.": "이렇게 하면 비밀번호를 다시 설정하고 알림을 받으실 수 있습니다.",
"To return to your account in future you need to set a password": "나중에 계정으로 돌아가려면 비밀번호를 설정하셔야 해요",
"Skip": "건너뛰기",
"Start verification": "인증 시작",
"Share without verifying": "인증하지 않고 공유하기",
"Ignore request": "요청 무시하기",
- "You added a new device '%(displayName)s', which is requesting encryption keys.": "새 장치 '%(displayName)s'를 추가했고 암호화 키를 요청하고 있어요.",
- "Your unverified device '%(displayName)s' is requesting encryption keys.": "인증하지 않은 장치 '%(displayName)s'가 암호화 키를 요청하고 있어요.",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "암호화 열쇠를 요청하고 있는 새 기기 '%(displayName)s'를(을) 추가했습니다.",
+ "Your unverified device '%(displayName)s' is requesting encryption keys.": "인증되지 않은 기기 '%(displayName)s'가(이) 암호화 키를 요청하고 있습니다.",
"Encryption key request": "암호화 키 요청",
"Edit": "수정하기",
- "Fetching third party location failed": "타사 위치를 불러오지 못했어요",
- "A new version of Riot is available.": "라이엇의 새 버전을 사용하실 수 있어요.",
- "Couldn't load home page": "중심 화면을 불러올 수 없어요",
- "All notifications are currently disabled for all targets.": "현재 모든 알림이 모든 상대에게서 꺼졌어요.",
+ "Fetching third party location failed": "타사 위치를 불러오지 못했습니다.",
+ "A new version of Riot is available.": "Riot의 새 버전을 사용하실 수 있습니다.",
+ "Couldn't load home page": "홈 페이지를 불러올 수 없었습니다",
+ "All notifications are currently disabled for all targets.": "현재 모든 알림이 모든 대상에 대해 비활성화 돼 있습니다.",
"Uploading report": "보고를 올리는 중",
"Sunday": "일요일",
- "Guests can join": "손님이 들어올 수 있어요",
- "Messages sent by bot": "봇이 보낸 메시지",
+ "Guests can join": "손님이 들어올 수 있습니다",
+ "Messages sent by bot": "봇이 보낸 메시지를 받을 때",
"Notification targets": "알림 대상",
- "Failed to set direct chat tag": "직접 이야기 지정을 설정하지 못했어요",
+ "Failed to set direct chat tag": "직접 대화 태그를 설정하지 못했습니다.",
"Today": "오늘",
- "Failed to get protocol list from Home Server": "홈 서버에서 프로토콜 목록을 얻지 못했어요",
- "You are not receiving desktop notifications": "컴퓨터 알림을 받지 않고 있어요",
+ "Failed to get protocol list from Home Server": "홈 서버에서 프로토콜 목록을 얻지 못했습니다.",
+ "You are not receiving desktop notifications": "컴퓨터 알림을 받지 않고 있습니다",
"Friday": "금요일",
"Update": "업데이트",
"What's New": "새로운 점",
"Add an email address above to configure email notifications": "이메일 알림을 설정하기 위해 이메일 주소를 추가해주세요",
"Expand panel": "확장 패널",
"On": "켜기",
- "Filter room names": "방 이름 거르기",
+ "Filter room names": "방 이름 찾기",
"Changelog": "바뀐 점",
"Waiting for response from server": "서버에서 응답을 기다리는 중",
"Leave": "떠나기",
"Advanced notification settings": "고급 알림 설정",
"delete the alias.": "가명을 지울게요.",
"To return to your account in future you need to set a password ": "나중에 계정으로 돌아가려면 비밀번호 설정 을 해야만 해요",
- "Forget": "잊기",
+ "Forget": "지우기",
"World readable": "세계에 보이기",
"Hide panel": "패널 숨기기",
- "You cannot delete this image. (%(code)s)": "이 사진을 지우실 수 없어요. (%(code)s)",
+ "You cannot delete this image. (%(code)s)": "이 사진을 삭제하실 수 없습니다. (%(code)s)",
"Cancel Sending": "보내기 취소",
"Warning": "주의",
"This Room": "방",
- "The Home Server may be too old to support third party networks": "타사 네트워크를 지원하기에는 홈 서버가 너무 오래된 걸 수 있어요",
+ "The Home Server may be too old to support third party networks": "타사 네트워크를 지원하기에는 홈 서버가 너무 오래된 걸 수 있어요.",
"Resend": "다시 보내기",
- "Error saving email notification preferences": "이메일 알림을 설정하는데 오류가 일어났어요",
- "Messages containing my display name": "내 별명이 적힌 메시지",
- "Messages in one-to-one chats": "1:1 이야기의 메시지",
+ "Error saving email notification preferences": "이메일 알림을 설정하는 중에 오류가 났습니다.",
+ "Messages containing my display name": "내 별명이 포함된 메시지를 받을 때",
+ "Messages in one-to-one chats": "1:1 대화 메시지 받을 때",
"Unavailable": "이용할 수 없음",
"View Decrypted Source": "해독된 출처 보기",
"Send": "보내기",
- "remove %(name)s from the directory.": "목록에서 %(name)s을 지웠어요.",
- "Notifications on the following keywords follow rules which can’t be displayed here:": "여기 표시될 수 없는 규칙에 따라 다음 키워드는 알리지 않아요:",
+ "remove %(name)s from the directory.": "목록에서 %(name)s를(을) 제거했습니다.",
+ "Notifications on the following keywords follow rules which can’t be displayed here:": "여기에 표시될 수 없는 규칙에 따르는 다음 키워드에 대한 알림:",
"Please set a password!": "비밀번호를 설정해주세요!",
- "You have successfully set a password!": "비밀번호를 설정했어요!",
- "An error occurred whilst saving your email notification preferences.": "이메일 알림을 설정하다가 오류가 일어났어요.",
+ "You have successfully set a password!": "비밀번호를 설정하셨어요!",
+ "An error occurred whilst saving your email notification preferences.": "이메일 알림 설정을 저장하는 중에 오류가 났습니다.",
"Source URL": "출처 URL",
- "Failed to add tag %(tagName)s to room": "방에 %(tagName)s로 지정하지 못했어요",
+ "Failed to add tag %(tagName)s to room": "방에 %(tagName)s 태그를 달지 못했습니다.",
"Members": "구성원",
- "No update available.": "업데이트가 없어요.",
+ "No update available.": "업데이트가 없습니다.",
"Noisy": "소리",
"Files": "파일",
"Collecting app version information": "앱 버전 정보를 수집하는 중",
- "Delete the room alias %(alias)s and remove %(name)s from the directory?": "방 가명 %(alias)s 을 지우고 목록에서 %(name)s를 지우시겠어요?",
- "This will allow you to return to your account after signing out, and sign in on other devices.": "이런 식으로 로그아웃한 뒤 계정으로 돌아가, 다른 장치에서 로그인하실 수 있어요.",
- "Enable notifications for this account": "이 계정의 알림 받기",
+ "Delete the room alias %(alias)s and remove %(name)s from the directory?": "방 별칭 %(alias)s를(을) 삭제하고 목록에서 %(name)s를(을) 제거하시겠어요?",
+ "This will allow you to return to your account after signing out, and sign in on other devices.": "이런 식으로 로그아웃한 뒤 계정으로 돌아가, 다른 기기에서 로그인하실 수 있습니다.",
+ "Enable notifications for this account": "이 계정의 알림 사용하기",
"Directory": "목록",
"Search for a room": "방에서 찾기",
"Messages containing keywords ": "키워드 가 적힌 메시지",
- "Room not found": "방을 찾지 못했어요",
+ "Room not found": "방을 찾지 못했습니다",
"Tuesday": "화요일",
"Enter keywords separated by a comma:": "키워드를 쉼표로 구분해 입력해주세요:",
"Search…": "찾기…",
- "Remove %(name)s from the directory?": "목록에서 %(name)s을 지우시겠어요?",
- "Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "라이엇은 많은 고급 브라우저 기능을 사용해요. 일부는 현재 브라우저에서 쓸 수 없거나 실험적이에요.",
+ "Remove %(name)s from the directory?": "목록에서 %(name)s를(을) 제거하시겠어요?",
+ "Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot은 많은 고급 브라우저 기능을 사용해요. 일부는 현재 브라우저에서 쓸 수 없거나 실험적이에요.",
"Developer Tools": "개발자 도구",
- "Enable desktop notifications": "컴퓨터에서 알림 받기",
+ "Enable desktop notifications": "컴퓨터에서 알림 사용하기",
"Unnamed room": "이름없는 방",
- "Remove from Directory": "목록에서 지우기",
+ "Remove from Directory": "목록에서 제거하기",
"Saturday": "토요일",
"Remember, you can always set an email address in user settings if you change your mind.": "잊지마세요, 마음이 바뀌면 언제라도 사용자 설정에서 이메일 주소를 바꾸실 수 있다는 걸요.",
- "Direct Chat": "직접 이야기하기",
- "The server may be unavailable or overloaded": "서버를 쓸 수 없거나 과부하일 수 있어요",
+ "Direct Chat": "직접 대화하기",
+ "The server may be unavailable or overloaded": "서버가 사용 불가하거나 과부하가 걸렸을 수 있습니다.",
"Reject": "거절하기",
- "Failed to set Direct Message status of room": "방의 쪽지 상태를 설정하지 못했어요",
+ "Failed to set Direct Message status of room": "방의 쪽지 상태를 설정하지 못했습니다.",
"Monday": "월요일",
"All messages (noisy)": "모든 메시지 (크게)",
"Enable them now": "지금 켜기",
"Forward Message": "메시지 전달",
- "Messages containing my user name": "내 사용자 이름이 적힌 메시지",
+ "Messages containing my user name": "내 사용자 이름이 적힌 메시지를 받을 때",
"Toolbox": "도구상자",
"Collecting logs": "로그 수집 중",
"more": "더 보기",
"(HTTP status %(httpStatus)s)": "(HTTP 상태 %(httpStatus)s)",
"All Rooms": "모든 방",
- "Failed to get public room list": "공개한 방 목록을 얻지 못했어요",
+ "Failed to get public room list": "공개한 방 목록을 얻지 못했습니다.",
"Quote": "인용하기",
- "Failed to update keywords": "키워드를 갱신하지 못했어요",
+ "Failed to update keywords": "키워드를 갱신하지 못했습니다.",
"Send logs": "로그 보내기",
"All messages": "모든 메시지",
- "Call invitation": "전화가 왔어요",
+ "Call invitation": "전화가 올 때",
"Downloading update...": "업데이트를 받는 중...",
- "You have successfully set a password and an email address!": "비밀번호와 이메일 주소를 설정했어요!",
+ "You have successfully set a password and an email address!": "비밀번호와 이메일 주소를 설정하셨어요!",
"What's new?": "새로운 점은?",
"Notify me for anything else": "모든 걸 알리기",
"When I'm invited to a room": "방에 초대받았을 때",
"Keywords": "키워드",
- "Can't update user notification settings": "사용자 알림 설정을 갱신할 수 없어요",
+ "Can't update user notification settings": "사용자 알림 설정을 갱신할 수 없습니다.",
"Notify for all other messages/rooms": "다른 모든 메시지/방 알리기",
- "Unable to look up room ID from server": "서버에서 방 ID를 찾아볼 수 없어요",
- "Couldn't find a matching Matrix room": "일치하는 매트릭스 방을 찾을 수 없어요",
+ "Unable to look up room ID from server": "서버에서 방 ID를 찾아볼 수 없습니다.",
+ "Couldn't find a matching Matrix room": "일치하는 매트릭스 방을 찾을 수 없었습니다",
"Invite to this room": "이 방에 초대하기",
- "You cannot delete this message. (%(code)s)": "이 메시지를 지우실 수 없어요. (%(code)s)",
+ "You cannot delete this message. (%(code)s)": "이 메시지를 삭제하실 수 없습니다. (%(code)s)",
"Thursday": "목요일",
"I understand the risks and wish to continue": "위험할 수 있는 걸 알고 계속하기를 바라요",
"Back": "돌아가기",
- "Failed to change settings": "설정을 바꾸지 못했어요",
+ "Failed to change settings": "설정을 바꾸지 못했습니다.",
"Show message in desktop notification": "컴퓨터 알림에서 내용 보이기",
"Unhide Preview": "미리보기를 숨기지 않기",
- "Unable to join network": "네트워크에 들어갈 수 없어요",
- "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "라이엇이 아닌 다른 클라이언트에서 구성하셨을 수도 있어요. 라이엇에서 조정할 수는 없지만 여전히 적용되있을 거에요",
- "Sorry, your browser is not able to run Riot.": "죄송해요. 브라우저에서 라이엇을 켤 수가 없어요 .",
+ "Unable to join network": "네트워크에 들어갈 수 없습니다.",
+ "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Riot이 아닌 다른 클라이언트에서 설정하셨을 수도 있습니다. Riot에서 바꿀 수는 없지만, 여전히 적용돼 있습니다.",
+ "Sorry, your browser is not able to run Riot.": "죄송합니다. 쓰고 계신 브라우저에서는 Riot를 사용할 수 없습니다 .",
"Uploaded on %(date)s by %(user)s": "by %(user)s가 %(date)s에 올림",
- "Messages in group chats": "이야기 모임의 메시지",
+ "Messages in group chats": "그룹 대화 메시지를 받을 때",
"Yesterday": "어제",
- "Error encountered (%(errorDetail)s).": "오류가 일어났어요 (%(errorDetail)s).",
+ "Error encountered (%(errorDetail)s).": "오류가 일어났습니다 (%(errorDetail)s).",
"Low Priority": "낮은 우선순위",
- "Riot does not know how to join a room on this network": "라이엇이 이 네트워크에서 방에 들어가는 법을 알 수 없어요",
+ "Riot does not know how to join a room on this network": "Riot이 이 네트워크에서 방에 들어가는 법을 알 수 없습니다.",
"Set Password": "비밀번호 설정",
- "Enable audible notifications in web client": "웹 클라이언트에서 알림 소리 켜기",
- "Permalink": "고유주소",
+ "Enable audible notifications in web client": "웹 클라이언트에서 알림 소리 사용하기",
"Off": "끄기",
"#example": "#예",
"Mentions only": "답만 하기",
- "Failed to remove tag %(tagName)s from room": "방에서 %(tagName)s 지정을 지우지 못했어요",
+ "Failed to remove tag %(tagName)s from room": "방에서 %(tagName)s 태그를 제거하지 못했습니다.",
"Wednesday": "수요일",
- "You can now return to your account after signing out, and sign in on other devices.": "계정을 로그아웃하신 뒤에 계정으로 돌아가, 다른 장치에서 로그인하실 수 있어요.",
- "Enable email notifications": "이메일로 알림 받기",
+ "You can now return to your account after signing out, and sign in on other devices.": "이제 계정을 로그아웃하신 뒤에 계정으로 돌아가, 다른 기기에서 로그인할 수 있습니다.",
+ "Enable email notifications": "이메일로 알림 사용하기",
"Login": "로그인",
- "No rooms to show": "보여드릴 방이 없어요",
+ "No rooms to show": "보여줄 수 있는 방이 없습니다.",
"Download this file": "이 파일 받기",
"Thank you!": "감사합니다!",
"View Source": "출처 보기",
- "Unable to fetch notification target list": "알림 대상 목록을 불러올 수 없어요",
+ "Unable to fetch notification target list": "알림 대상 목록을 불러올 수 없습니다.",
"Collapse panel": "패널 접기",
- "With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "현재 브라우저에서는, 응용 프로그램의 모양과 기능이 완벽하게 맞지 않거나, 일부 혹은 모든 기능이 작동하지 않을 수 있어요. 계속할 수는 있지만, 맞닥뜨리는 모든 문제는 직접 해결하셔야해요!",
+ "With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "현재 쓰고 계신 브라우저에서는, 보고 느끼기에 응용 프로그램이 완전히 맞지 않거나, 일부 혹은 모든 기능이 작동하지 않을 수 있습니다. 어쨋든 사용하고 싶으시다면 계속할 수는 있지만, 부딛치는 모든 문제는 직접 해결하셔야 해요!",
"Checking for an update...": "업데이트를 확인하는 중...",
- "There are advanced notifications which are not shown here": "여기 보이지 않는 고급 알림이 있어요"
+ "There are advanced notifications which are not shown here": "여기에는 보여지지 않는 고급 알림이 있습니다.",
+ "%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s님이 별명을 %(displayName)s(으)로 바꿨습니다.",
+ "%(senderName)s changed the pinned messages for the room.": "%(senderName)s가 방의 고정된 메시지를 바꿨습니다.",
+ "%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)s님이 이름을 %(count)s번 바꿨습니다",
+ "%(severalUsers)schanged their name %(count)s times|one": "%(severalUsers)s님이 이름을 바꿨습니다",
+ "%(oneUser)schanged their name %(count)s times|other": "%(oneUser)s님이 이름을 %(count)s번 바꿨습니다",
+ "%(oneUser)schanged their name %(count)s times|one": "%(oneUser)s님이 이름을 바꿨습니다",
+ "%(severalUsers)schanged their avatar %(count)s times|other": "%(severalUsers)s님이 아바타를 %(count)s번 바꿨습니다",
+ "%(severalUsers)schanged their avatar %(count)s times|one": "%(severalUsers)s님이 아바타를 바꿨습니다",
+ "%(oneUser)schanged their avatar %(count)s times|other": "%(oneUser)s님이 아바타를 %(count)s번 바꿨습니다",
+ "%(oneUser)schanged their avatar %(count)s times|one": "%(oneUser)s님이 아바타를 바꿨습니다",
+ "This setting cannot be changed later!": "이 설정은 나중에 바꿀 수 없습니다!",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "이전 버전 Riot의 데이터가 발견됐습니다. 이전 버전에서는 종단 간 암호화에 오작동을 일으켰을 겁니다. 이전 버전을 사용한 최근의 종단 간 암호화된 메시지는 이 버전에서 복호화가 불가능할 수 있습니다. 이 버전과 메시지를 주고받지 못할 수도 있습니다. 문제가 생긴다면 로그아웃하고 다시 로그인 해 보세요. 메시지 기록을 유지하고 싶다면 키를 내보냈다가 다시 불러오세요.",
+ "Hide display name changes": "별명 변경 내역 숨기기",
+ "This event could not be displayed": "이 이벤트는 표시될 수 없었습니다.",
+ "Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "%(displayName)s(%(userName)s)님이 %(dateTime)s에 봄",
+ "Banned by %(displayName)s": "%(displayName)s님이 차단함",
+ "Display your community flair in rooms configured to show it.": "커뮤니티 재능이 보이도록 설정된 방에서 커뮤니티 재능을 표시할 수 있습니다.",
+ "The user '%(displayName)s' could not be removed from the summary.": "사용자 %(displayName)s님을 요약에서 제거하지 못했습니다.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "이 방들은 커뮤니티 페이지에서 커뮤니티 구성원에게 보여집니다. 커뮤니티 구성원은 방을 클릭해 들어갈 수 있습니다.",
+ "Pinned Messages": "고정된 메시지",
+ "You're not currently a member of any communities.": "지금은 어떤 커뮤니티에도 속해 있지 않습니다.",
+ "Flair": "재능",
+ "Showing flair for these communities:": "이 커뮤니티에 재능을 공개 중:",
+ "This room is not showing flair for any communities": "이 방은 어떤 커뮤니티에도 재능을 보여주지 않습니다",
+ "Flair will appear if enabled in room settings": "방 설정에서 사용하면 재능이 나타날 겁니다.",
+ "Flair will not appear": "재능은 나타나지 않을 겁니다",
+ "The platform you're on": "당신이 사용 중인 플랫폼",
+ "The version of Riot.im": "Riot 버전",
+ "Whether or not you're logged in (we don't record your user name)": "로그인 돼 있는지(사용자 이름을 기록)",
+ "Your language of choice": "선택한 언어",
+ "Which officially provided instance you are using, if any": "(만일 있다면) 사용하고 있는 공식 프로그램",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": "Rich Text Editor의 Richtext mode를 사용하고 있는지",
+ "Your homeserver's URL": "홈 서버의 URL",
+ "Your identity server's URL": "ID 서버의 URL",
+ "e.g. %(exampleValue)s": "예시: %(exampleValue)s",
+ "Every page you use in the app": "앱에서 이용하는 모든 페이지",
+ "e.g. ": "예시: ",
+ "Your User Agent": "사용자 에이전트",
+ "Your device resolution": "기기 해상도",
+ "The information being sent to us to help make Riot.im better includes:": "Riot을 발전시키기 위해 저희에게 보내는 정보는 다음을 포함합니다:",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "이 페이지에서 방, 사용자, 혹은 그룹 ID와 같은 식별 가능한 정보를 포함하는 부분이 있는 데이터는 서버에 보내지기 전에 제거됩니다.",
+ "Call Failed": "전화할 수 없었습니다",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "이 방에는 모르는 기기가 있습니다. 인증하지 않고 계속하면 전화를 도청할 수도 있을 겁니다.",
+ "Review Devices": "기기 검증하기",
+ "Call Anyway": "그냥 걸기",
+ "Answer Anyway": "그냥 받기",
+ "Call": "전화하기",
+ "Answer": "받기",
+ "Call in Progress": "전화 거는 중",
+ "A call is already in progress!": "이미 전화 걸고 계세요!",
+ "PM": "오후",
+ "AM": "오전",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(fullYear)s년 %(monthName)s %(day)s일 (%(weekDayName)s)",
+ "Who would you like to add to this community?": "이 커뮤니티에 누구를 추가하고 싶으세요?",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "경고: 커뮤니티에 추가한 사람은 커뮤니티 ID를 아는 누구에게나 공개됩니다",
+ "Invite new community members": "새 커뮤니티 구성원 초대하기",
+ "Name or matrix ID": "이름이나 Matrix ID",
+ "Invite to Community": "커뮤니티에 초대하기",
+ "Which rooms would you like to add to this community?": "어떤 방을 이 커뮤니티에 추가하고 싶으세요?",
+ "Show these rooms to non-members on the community page and room list?": "이 방들을 구성원이 아닌 커뮤니티 페이지와 방 리스트에 공개할까요?",
+ "Add rooms to the community": "커뮤니티에 방 추가하기",
+ "Room name or alias": "방 이름 또는 별칭",
+ "Add to community": "커뮤니티에 추가하기",
+ "Failed to invite the following users to %(groupId)s:": "해당 사용자를 %(groupId)s에 초대하지 못했습니다:",
+ "Failed to invite users to community": "사용자를 커뮤니티에 초대하지 못했습니다",
+ "Failed to invite users to %(groupId)s": "%(groupId)s에 사용자를 초대하지 못했습니다",
+ "Failed to add the following rooms to %(groupId)s:": "%(groupId)s에 해당 방을 추가하지 못했습니다:",
+ "Restricted": "제한됨",
+ "Unable to create widget.": "위젯을 만들지 못합니다.",
+ "Missing roomId.": "roomID가 빠졌습니다.",
+ "You are not in this room.": "이 방의 구성원이 아닙니다.",
+ "You do not have permission to do that in this room.": "이 방에서 그걸 할 수 있는 권한이 없습니다.",
+ "Changes colour scheme of current room": "현재 방의 색 구성 바꾸기",
+ "Sets the room topic": "방 주제 설정하기",
+ "Unbans user with given id": "주어진 ID로 사용자 차단 해제하기",
+ "Ignores a user, hiding their messages from you": "사용자 무시하고, 메시지 보지 말기",
+ "Ignored user": "무시당한 사용자",
+ "You are now ignoring %(userId)s": "%(userId)s님을 이제 무시합니다",
+ "Stops ignoring a user, showing their messages going forward": "사용자를 그만 무시하고 이제부터 메시지 보기",
+ "Unignored user": "무시하지 않게 된 사용자",
+ "You are no longer ignoring %(userId)s": "%(userId)s님을 더 이상 무시하고 있지 않습니다",
+ "Define the power level of a user": "사용자의 권한 등급 정의하기",
+ "Opens the Developer Tools dialog": "개발자 도구 대화 열기",
+ "Verifies a user, device, and pubkey tuple": "사용자, 기기, 그리고 공개키 튜플 인증하기",
+ "%(widgetName)s widget modified by %(senderName)s": "%(senderName)s님이 수정한 %(widgetName)s 위젯",
+ "%(widgetName)s widget added by %(senderName)s": "%(senderName)s님이 추가한 %(widgetName)s 위젯",
+ "%(widgetName)s widget removed by %(senderName)s": "%(senderName)s님이 제거한 %(widgetName)s 위젯",
+ "Remove avatar": "아바타 제거하기",
+ "To remove other users' messages, you must be a": "다른 사용자의 메시지를 제거하기 위해서는, 당신은 -가 돼야 한다",
+ "Message removed by %(userId)s": "%(userId)s님에 의해 제거된 메시지",
+ "Message removed": "메시지가 제거됐습니다",
+ "Remove from community": "커뮤니티에서 제거하기",
+ "Remove this user from community?": "이 사용자를 커뮤니티에서 제거하시겠어요?",
+ "Failed to remove user from community": "유저를 커뮤니티에서 제거하지 못했습니다",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "확실히 %(roomName)s를(을) %(groupId)s로부터 제거하고 싶으세요?",
+ "Removing a room from the community will also remove it from the community page.": "방을 커뮤니티로부터 삭제하면 커뮤니티 페이지에서도 제거됩니다.",
+ "Failed to remove room from community": "커뮤니티로부터 방을 제거하지 못했습니다",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "%(roomName)s를(을) %(groupId)s(으)로부터 제거하지 못했습니다.",
+ "%(names)s and %(count)s others are typing|other": "%(names)s님과 %(count)s명 더 입력하는 중",
+ "%(names)s and %(count)s others are typing|one": "%(names)s님 외 1명이 입력하는 중",
+ "Message Pinning": "메시지 고정",
+ "Jitsi Conference Calling": "Jitsi 회의 전화",
+ "Disable Emoji suggestions while typing": "입력 중에는 이모지 추천 비활성화하기",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "저희는 프라이버시를 중요하게 여기기 때문에, 그 어떤 개인적이거나 특정할 수 있는 정보도 정보 분석을 위해 수집하지 않습니다.",
+ "Send analytics data": "정보 분석 데이터 보내기",
+ "Learn more about how we use analytics.": "저희가 어떻게 정보 분석을 이용하는지 알아보세요.",
+ "Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "디버그 로그는 사용자 이름, 방문한 방이나 그룹의 ID나 별칭, 그리고 다른 사용자의 사용자 이름을 포함한 앱 이용 데이터를 포함합니다. 메시지는 포함하지 않습니다.",
+ "Debug Logs Submission": "디버그 로그 제출",
+ "Submit debug logs": "디버그 로그 전송하기",
+ "Select devices": "기기 선택하기",
+ "Enable inline URL previews by default": "기본으로 바로 URL 미리보기 사용하기",
+ "Always show encryption icons": "암호화 아이콘을 언제나 보여주기",
+ "Enable automatic language detection for syntax highlighting": "구문 강조를 위해 자동 언어 감지 사용하기",
+ "Hide avatars in user and room mentions": "사용자와 방 언급할 때 아바타 숨기기",
+ "Disable big emoji in chat": "대화에서 큰 이모지 비활성화하기",
+ "Automatically replace plain text Emoji": "일반 텍스트로 된 이모지 자동으로 변환하기",
+ "Mirror local video feed": "보고 있는 비디오 전송 상태 비추기",
+ "Disable Community Filter Panel": "커뮤니티 필터판 비활성화하기",
+ "Hide avatar changes": "아바타 변경 내역 숨기기",
+ "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "커뮤니티 이름 과 아바타 변경 내역은 최장 30분까지 다른 사용자가 보지 못할 수 있습니다.",
+ "Delete %(count)s devices|one": "기기 지우기",
+ "Addresses": "주소",
+ "Invalid community ID": "잘못된 커뮤니티 ID입니다",
+ "'%(groupId)s' is not a valid community ID": "\"%(groupId)s\"는 바른 커뮤니티 ID가 아닙니다",
+ "New community ID (e.g. +foo:%(localDomain)s)": "새 커뮤니티 ID(예시: +foo:%(localDomain)s)",
+ "URL previews are enabled by default for participants in this room.": "이 방에 참여한 분에게는 URL 미리보기가 기본입니다.",
+ "URL previews are disabled by default for participants in this room.": "이 방에 참여한 분에게는 URL 미리보기가 기본으로 비활성화 돼 있습니다.",
+ "Cannot add any more widgets": "더 이상 위젯을 추가할 수 없습니다",
+ "The maximum permitted number of widgets have already been added to this room.": "이미 이 방에는 허용된 최대 수의 위젯이 추가됐습니다.",
+ "Add a widget": "위젯 추가하기",
+ "%(senderName)s sent an image": "%(senderName)s가 이미지를 보냈습니다",
+ "%(senderName)s sent a video": "%(senderName)s가 비디오를 보냈습니다",
+ "%(senderName)s uploaded a file": "%(senderName)s가 파일을 보냈습니다",
+ "Key request sent.": "키 요청을 보냈습니다.",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "다른 기기에",
+ "Encrypting": "암호화 중",
+ "Encrypted, not sent": "암호화 됨, 보내지지 않음",
+ "Disinvite this user?": "이 사용자에 대한 초대를 취소할까요?",
+ "Kick this user?": "이 사용자를 추방할까요?",
+ "Unban this user?": "이 사용자를 차단 해제할까요?",
+ "%(duration)ss": "%(duration)s초",
+ "%(duration)sm": "%(duration)s분",
+ "%(duration)sh": "%(duration)s시간",
+ "%(duration)sd": "%(duration)s일",
+ "Online for %(duration)s": "%(duration)s 동안 온라인",
+ "Idle for %(duration)s": "%(duration)s 동안 대기 중",
+ "Offline for %(duration)s": "%(duration)s 동안 오프라인",
+ "Unknown for %(duration)s": "%(duration)s 동안 어떤지 모름",
+ "Unknown": "모름",
+ "Replying": "답장 중",
+ "Loading...": "로딩 중...",
+ "Unpin Message": "메시지 고정 해제하기",
+ "No pinned messages.": "고정된 메시지가 없습니다.",
+ "At this time it is not possible to reply with an emote.": "지금은 이모트로 답장할 수 없습니다.",
+ "Send a message (unencrypted)…": "(암호화 안 된) 메시지를 보내세요…",
+ "Send an encrypted message…": "메시지를 보내세요…",
+ "Unable to reply": "답장할 수 없습니다",
+ "Send an encrypted reply…": "답장을 보내세요…",
+ "Send a reply (unencrypted)…": "(암호화 안 된) 답장을 보내세요…",
+ "User Options": "사용자 옵션",
+ "Share Link to User": "사용자에게 링크 공유하기",
+ "Invite": "초대하기",
+ "Mention": "언급하기",
+ "Ignore": "무시하기",
+ "Unignore": "그만 무시하기",
+ "Ignored Users": "무시된 사용자",
+ "Demote": "강등하기",
+ "Demote yourself?": "자신을 강등하시겠어요?",
+ "Ban this user?": "이 사용자를 차단할까요?",
+ "To ban users, you must be a": "사용자를 차단하기 위해서 필요한 권한:",
+ "were banned %(count)s times|other": "님은 %(count)s번 차단됐습니다",
+ "were banned %(count)s times|one": "님은 차단됐습니다",
+ "was banned %(count)s times|other": "님은 %(count)s번 차단됐습니다",
+ "was banned %(count)s times|one": "님은 차단됐습니다",
+ "were unbanned %(count)s times|other": "님은 %(count)s번 차단 해제됐습니다",
+ "were unbanned %(count)s times|one": "님은 차단 해제됐습니다",
+ "was unbanned %(count)s times|other": "님은 %(count)s번 차단 해제됐습니다",
+ "was unbanned %(count)s times|one": "는 차단 해제됐습니다",
+ "Delete %(count)s devices|other": "%(count)s개 기기 지우기",
+ "Drop here to restore": "복원하려면 여기에 떨어뜨리세요",
+ "Drop here to favourite": "즐겨찾으시려면 여기에 떨어뜨리세요.",
+ "Drop here to tag direct chat": "직접 대화를 태그하려면 여기에 떨어뜨리세요.",
+ "You have entered an invalid address.": "잘못된 주소를 입력했습니다.",
+ "This room is not public. You will not be able to rejoin without an invite.": "이 방은 공개되지 않았습니다. 초대 없이는 다시 들어올 수 없습니다.",
+ "Enable URL previews for this room (only affects you)": "이 방에 대해 URL 미리보기 사용하기",
+ "Enable URL previews by default for participants in this room": "이 방에 참여한 모두에게 기본으로 URL 미리보기 사용하기",
+ "Enable widget screenshots on supported widgets": "지원되는 위젯에 대해 위젯 스크린샷 사용하기",
+ "Hide join/leave messages (invites/kicks/bans unaffected)": "들어오거나 떠나는 메시지 숨기기(초대/추방/차단은 그대로)",
+ "Show empty room list headings": "빈 방 목록 표제 보이게 하기",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "누군가 메시지에 URL을 넣으면 URL 미리보기가 보여져 웹사이트에서 온 제목, 설명, 그리고 이미지 등 그 링크에 대해 더 알 수 있습니다.",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "지금 이 방처럼, 암호화된 방에서는 홈 서버(미리보기가 만들어지는 곳)에서 이 방에서 보여지는 링크에 대해 알 수 없도록 URL 미리보기가 기본적으로 비활성화돼 있습니다.",
+ "Your key share request has been sent - please check your other devices for key share requests.": "키 공유 요청이 보내졌습니다. 키 공유 요청을 다른 기기에서 받아주세요.",
+ "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "자동으로 다른 기기에 키 공유 요청을 보냈습니다. 다른 기기에서 키 공유 요청을 거절하거나 묵살하셨으면, 여기를 눌러 이번 세션에 다시 키를 요청하세요.",
+ "Re-request encryption keys from your other devices.": "다른 기기로부터 암호화 키 재요청 ",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "자기 자신을 강등시키는 것은 다시 되돌릴 수 없고, 자신이 마지막으로 이 방에서 특권을 가진 사용자라면 다시 특권을 얻는 건 불가능합니다.",
+ "Jump to read receipt": "수신 확인으로 건너뛰기",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "현재로서는 파일을 답장할 수 없으므로 답장이 아닌 파일로 보내질 겁니다.",
+ "Jump to message": "메세지로 건너뛰기",
+ "Share room": "방 공유하기",
+ "Drop here to demote": "강등하려면 여기에 떨어뜨리세요",
+ "Community Invites": "커뮤니티 초대",
+ "You have no historical rooms": "보관하고 있는 방이 없습니다",
+ "You have been kicked from this room by %(userName)s.": "%(userName)s님에 의해 추방당했습니다.",
+ "You have been banned from this room by %(userName)s.": "%(userName)s님에 의해 이 방에서 차단당했습니다.",
+ "You are trying to access a room.": "방에 접근하고 있습니다.",
+ "To change the room's avatar, you must be a": "방의 아바타를 바꾸려면, -여야 합니다",
+ "To change the room's name, you must be a": "방 이름을 바꾸려면, -여야 합니다.",
+ "To change the room's main address, you must be a": "방의 매인 주소를 바꾸려면, -여야 합니다.",
+ "Members only (since they joined)": "구성원만(??한 시점부터)",
+ "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s님이 들어왔습니다",
+ "%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s님이 %(count)s번 들어왔습니다",
+ "%(oneUser)sjoined %(count)s times|other": "%(oneUser)s님이 %(count)s번 들어왔습니다",
+ "%(oneUser)sjoined %(count)s times|one": "%(oneUser)s님이 들어왔습니다",
+ "%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)s님이 %(count)s번 들어왔다가 나갔습니다",
+ "%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)s님이 들어왔다가 나갔습니다",
+ "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)님이 %(count)s번 들어왔다가 나갔습니다",
+ "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s님이 들어왔다가 나갔습니다",
+ "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s님이 나갔다가 다시 들어왔습니다",
+ "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s님이 %(count)s번 나갔다가 다시 들어왔습니다",
+ "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s님이 나갔다가 다시 들어왔습니다",
+ "%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s님이 %(count)s번 나갔습니다",
+ "%(severalUsers)sleft %(count)s times|one": "%(severalUsers)s님이 나갔습니다",
+ "%(oneUser)sleft %(count)s times|other": "%(oneUser)s님이 %(count)s번 나갔다가 들어왔습니다",
+ "%(oneUser)sleft %(count)s times|one": "%(oneUser)s님이 나갔습니다",
+ "%(items)s and %(count)s others|one": "%(items)s, 그리고 하나 더.",
+ "A call is currently being placed!": "전화 걸고 있습니다.",
+ "Permission Required": "권한이 필요합니다.",
+ "A conference call could not be started because the intgrations server is not available": "서버가 연결되지 않아 전화 회의를 시작하지 못했습니다.",
+ "You do not have permission to start a conference call in this room": "이 방에서는 전화 회의를 시작할 권한이 없습니다.",
+ "deleted": "삭제됐습니다.",
+ "underlined": "밑줄 쳤습니다.",
+ "HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "커뮤니티 페이지를 위한 HTML \n\n 커뮤니티에 새 구성원을 소개할 때 길게 설명하거나\n 좀 중요한 링크 로 배포할 수 있습니다.\n
\n\n 'img' 태그를 사용할 수도 있습니다.\n
\n",
+ "Copied!": "복사했습니다!",
+ "Failed to copy": "복사하지 못했습니다.",
+ "Show Stickers": "스티커 보내기",
+ "Hide Stickers": "스티커 숨기기",
+ "Stickerpack": "스티커 팩",
+ "Add a stickerpack": "스티커 팩 추가하기",
+ "You don't currently have any stickerpacks enabled": "사용하고 있는 스티커 팩이 없습니다.",
+ "An email has been sent to %(emailAddress)s": "%(emailAddress)s에 이메일을 보냈습니다.",
+ "Code": "코드",
+ "The email field must not be blank.": "이메일을 써 주십시오.",
+ "The user name field must not be blank.": "사용자 이름을 써 주십시오.",
+ "The phone number field must not be blank.": "전화번호를 써 주십시오.",
+ "The password field must not be blank.": "비밀번호를 써 주십시오.",
+ "Username on %(hs)s": "%(hs)s 사용자 이름",
+ "%(serverName)s Matrix ID": "%(serverName)s의 Matrix ID",
+ "Disinvite this user from community?": "이 사용자에게 보낸 커뮤니티 초대를 취소할까요?",
+ "Failed to withdraw invitation": "초대를 취소하지 못했습니다.",
+ "Filter community members": "커뮤니티 구성원 찾기",
+ "Filter results": "검색 결과",
+ "Filter community rooms": "커뮤니티 방 찾기",
+ "Clear filter": "검색 초기화하기",
+ "Did you know: you can use communities to filter your Riot.im experience!": "모르고 계셨다면: Riot에서의 경험을 커뮤니티 별로 정리할 수 있어요!",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "필터를 사용하고 싶으시다면, 커뮤니티 아바타를 스크린 왼쪽의 필터판에 끌어다 놓으면 됩니다. 언제든지, 필터판에 있는 아바타를 누르면 그 커뮤니티와 괸련된 방과 사람만 볼 수 있습니다.",
+ "Muted Users": "음소거된 사용자",
+ "Delete Widget": "위젯 지우기",
+ "An error ocurred whilst trying to remove the widget from the room": "방에서 위젯을 제거하는 동안 에러가 났습니다.",
+ "Failed to remove widget": "위젯을 제거하지 못했습니다.",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "위젯을 삭제하면 이 방의 모든 사용자에게도 제거됩니다. 정말 이 위젯을 삭제하고 싶으세요?",
+ "The room '%(roomName)s' could not be removed from the summary.": "'%(roomName)s' 방을 요약에서 제거하지 못했습니다.",
+ "Failed to remove the room from the summary of %(groupId)s": "방을 %(groupId)s의 요약에서 제거하지 못했습니다.",
+ "Log out and remove encryption keys?": "로그아웃하고 암호화 열쇠를 제거하시겠어요?",
+ "Failed to remove a user from the summary of %(groupId)s": "한 사용자를 %(groupId)s의 요약에서 제거하지 못했습니다.",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "계정을 일시적으로 사용할 수 없게 됩니다. 로그인할 수 없고, 누구도 같은 사용자 ID를 다시 등록할 수 없습니다. 들어가 있던 모든 방에서 나오게 되고, ID 서버에서 계정 상세 정보도 제거됩니다. 이 결정은 돌이킬 수 없습니다. ",
+ "Yes, I want to help!": "네, 돕고 싶어요!",
+ "NOTE: Apps are not end-to-end encrypted": "참고: 앱은 종단 간 암호화가 돼 있지 않습니다.",
+ "Integrations Error": "통합 에러",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Github를 통해 버그를 신고하셨다면, 디버그 로그가 문제를 해결하는데 도움을 줍니다. 디버그 로그에는 사용자 이름과 방문했던 방이나 그룹의 ID와 별칭, 그리고 다른 사용자의 사용자 이름이 포함됩니다. 대화 내용은 포함되지 않습니다.",
+ "Warning: This widget might use cookies.": "경고: 이 위젯은 쿠키를 사용할 수도 있습니다.",
+ "Delete widget": "위젯 삭제하기",
+ "Minimize apps": "앱 최소화하기",
+ "Reload widget": "위젯 다시 시작하기",
+ "Popout widget": "위젯 팝업",
+ "Picture": "사진",
+ "Communities": "커뮤니티",
+ "%(severalUsers)srejected their invitations %(count)s times|one": "%(severalUsers)s님이 초대를 거절했습니다.",
+ "%(oneUser)srejected their invitation %(count)s times|other": "%(oneUser)s님이 초대를 %(count)s번 거절했습니다.",
+ "%(oneUser)srejected their invitation %(count)s times|one": "%(oneUser)s님이 초대를 거절했습니다.",
+ "were invited %(count)s times|other": "님이 %(count)s번 초대받았습니다.",
+ "were invited %(count)s times|one": "님이 초대받았습니다.",
+ "%(user)s is a %(userRole)s": "%(user)s님은 %(userRole)s입니다.",
+ "To notify everyone in the room, you must be a": "방의 모두에게 알림을 보내기 위한 권한:",
+ "To kick users, you must be a": "사용자를 추방하기 위한 권한:",
+ "To configure the room, you must be a": "방을 설정하기 위한 권한:",
+ "To invite users into the room, you must be a": "사용자를 방에 초대하기 위한 권한:",
+ "To send messages, you must be a": "메시지를 보내기 위한 권한:",
+ "To modify widgets in the room, you must be a": "방의 위젯을 변경하기 위한 권한:",
+ "To change the topic, you must be a": "주제를 바꾸기 위한 권한:",
+ "To change the permissions in the room, you must be a": "방에서의 권한을 바꾸기 위한 권한:",
+ "To change the room's history visibility, you must be a": "방의 기록을 보이게 하기 위한 권한:",
+ "inline-code": "인라인 코드",
+ "block-quote": "인용 블록",
+ "bulleted-list": "글머리 기호 목록",
+ "numbered-list": "숫자 목록",
+ "To send events of type , you must be a": " 종류의 이벤트를 보내기 위한 권한:",
+ "Event Content": "이벤트 내용",
+ "Event Type": "이벤트 종류",
+ "Failed to send custom event.": "맞춤 이벤트를 보내지 못했습니다.",
+ "Event sent!": "이벤트를 보냈어요!",
+ "You must specify an event type!": "이벤트 종류를 명시해야 해요!",
+ "Send Custom Event": "맞춤 이벤트 보내기",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "답장 온 이벤트를 가져오지 못했습니다. 이벤트가 아예 없거나, 이벤트를 볼 권한이 없으신 것 같습니다.",
+ "Autocomplete Delay (ms):": "자동입력 지연 시간(ms):",
+ "Light theme": "밝은 테마",
+ "Dark theme": "어두운 테마",
+ "Status.im theme": "Status.im식 테마",
+ "A text message has been sent to %(msisdn)s": "%(msisdn)s님에게 문자 메시지를 보냈습니다.",
+ "Something went wrong when trying to get your communities.": "커뮤니티를 받는 중에 뭔가 잘못됐습니다.",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "익명으로 사용 데이터 를 보내 Riot의 발전을 도와주세요. 이 과정에서 쿠키를 사용합니다.",
+ "Allow": "허가하기",
+ "Visible to everyone": "모두에게 보여짐",
+ "Only visible to community members": "커뮤니티 구성원에게만 보여짐",
+ "Visibility in Room List": "방 목록에서의 가시성",
+ "The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "%(groupId)s에 있는 %(roomName)s 방에서의 가시성이 업데이트 되지 않았습니다.",
+ "was invited %(count)s times|one": "님이 초대됐습니다.",
+ "was invited %(count)s times|other": "님이 %(count)s번 초대됐습니다.",
+ "collapse": "줄이기",
+ "expand": "늘이기",
+ "Matrix ID": "Matrix ID",
+ "email address": "이메일 주소",
+ "Matrix Room ID": "Matrix 방 ID",
+ "Preparing to send logs": "로그 보내려고 준비 중",
+ "Logs sent": "로그 보냈습니다.",
+ "Failed to send logs: ": "다음 로그를 보내지 못했습니다: ",
+ "GitHub issue link:": "GitHub 이슈 링크:",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Riot의 버그는 Github에서 트랙됩니다. Github 이슈 만들기 ",
+ "Notes:": "참고:",
+ "Community IDs cannot be empty.": "커뮤니티 ID를 입력해 주세요.",
+ "Community IDs may only contain characters a-z, 0-9, or '=_-./'": "커뮤니티 ID에는 a-z, 0-9, 혹은 '=_-.'만 사용할 수 있습니다.",
+ "Something went wrong whilst creating your community": "커뮤니티를 생성하는 동안 뭔가 잘못됐습니다.",
+ "Create Community": "커뮤니티 만들기",
+ "Community Name": "커뮤니티 이름",
+ "Example": "예시",
+ "Community ID": "커뮤니티 ID",
+ "example": "예시",
+ "Create": "만들기",
+ "Advanced options": "고급 설정",
+ "Block users on other matrix homeservers from joining this room": "다른 Matrix 홈 서버에서 이 방에 들어오려는 사용자 막기",
+ "Failed to indicate account erasure": "계정이 지워졌다는 것을 표시하지 못했습니다.",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "계정을 비활성화한다고 해서 보내셨던 메시지가 기본으로 지워지는 건 아닙니다. 저희가 갖고 있는 메시지를 지우시려면 밑의 박스를 눌러주세요.",
+ "There's no one else here! Would you like to invite others or stop warning about the empty room ?": "다른 사람이 아무도 없군요! 다른 사람을 초대하거나 방이 비었다는 걸 그만 알려드릴까요 ?",
+ "To continue, please enter your password:": "계속하려면 비밀번호를 입력해 주세요:",
+ "password": "비밀번호",
+ "Refresh": "새로고침",
+ "To get started, please pick a username!": "시작하시려면, 사용자 이름을 골라주세요!",
+ "Share Room": "방 공유하기",
+ "Share User": "사용자 공유하기",
+ "Share Community": "커뮤니티 공유하기",
+ "Share Room Message": "방 메시지 공유하기",
+ "Link to selected message": "선택한 메시지로 연결하기",
+ "COPY": "복사",
+ "Unable to reject invite": "초대를 거절하지 못했습니다.",
+ "Reply": "답장",
+ "Pin Message": "메시지 고정하기",
+ "Share Message": "메시지 공유하기",
+ "Collapse Reply Thread": "이어지는 답장 줄이기",
+ "View Community": "커뮤니티 보기",
+ "Please install Chrome or Firefox for the best experience.": "크롬 이나 파이어폭스 를 설치하면 가장 좋은 경험을 하실 수 있습니다.",
+ "Safari and Opera work too.": "사파리 나 오페라 도 가능합니다.",
+ "Add rooms to the community summary": "커뮤니티 요약에 방 추가하기",
+ "Everyone": "모두",
+ "were kicked %(count)s times|other": "님은 %(count)s번 추방당했습니다.",
+ "were kicked %(count)s times|one": "님은 추방당했습니다.",
+ "was kicked %(count)s times|other": "님은 %(count)s번 추방당했습니다.",
+ "was kicked %(count)s times|one": "님은 추방당했습니다.",
+ "Custom of %(powerLevel)s": "",
+ "And %(count)s more...|other": "%(count)s개 더...",
+ "Add a User": "사용자 추가하기",
+ "Failed to upload image": "이미지를 업로드하지 못했습니다.",
+ "Failed to update community": "커뮤니티를 업데이트하지 못했습니다.",
+ "Unable to accept invite": "초대를 승락하지 못했습니다.",
+ "Unable to join community": "커뮤니티에 들어갈 수 없습니다.",
+ "Leave Community": "커뮤니티 나가기",
+ "Leave %(groupName)s?": "%(groupName)s를(을) 나가시겠어요?",
+ "Unable to leave community": "커뮤니티를 나갈 수 없습니다.",
+ "Community Settings": "커뮤니티 설정",
+ "Add rooms to this community": "이 커뮤니티에 방 추가하기",
+ "Featured Rooms:": "추천하는 방:",
+ "Featured Users:": "추천하는 사용자:",
+ "Join this community": "이 커뮤니티에 들어가기",
+ "Leave this community": "이 커뮤니티에서 나오기",
+ "%(inviter)s has invited you to join this community": "%(inviter)s님이 이 커뮤니티에 초대했습니다.",
+ "You are an administrator of this community": "이 커뮤니티의 관리자이십니다.",
+ "You are a member of this community": "이 커뮤니티의 구성원이십니다.",
+ "Who can join this community?": "누가 이 커뮤니티에 들어올 수 있나요?",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "커뮤니티에 긴 설명, 즉 커뮤니티 구성원에게 보여줄 HTML 페이지가 없습니다. 여기를 눌러 설정을 열고 설명을 부여하세요!",
+ "Long Description (HTML)": "긴 설명(HTML)",
+ "Description": "설명",
+ "Community %(groupId)s not found": "%(groupId)s 커뮤니티를 찾지 못했습니다.",
+ "This Home server does not support communities": "이 홈 서버는 커뮤니티를 지원하지 않습니다.",
+ "Failed to load %(groupId)s": "%(groupId)s를 받지 못했습니다.",
+ "Can't leave Server Notices room": "서버 알림 방을 떠날 수 없습니다.",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "이 방은 홈 서버로부터 중요한 메시지를 받는 데 쓰이므로 떠나실 수 없습니다.",
+ "Terms and Conditions": "이용 약관",
+ "Review terms and conditions": "이용 약관 읽기",
+ "Old cryptography data detected": "오래된 암호 데이터를 발견했습니다.",
+ "Your Communities": "속한 커뮤니티",
+ "Create a new community": "새 커뮤니티 만들기",
+ "Error whilst fetching joined communities": "속한 커뮤니티를 받는 중, 에러가 났습니다.",
+ "Room Notification": "방 알림",
+ "Notify the whole room": "방 모두에게 알리기",
+ "Sign in to get started": "시작하시려면 로그인하세요.",
+ "Try the app first": "앱을 먼저 써 보세요.",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "이 홈 서버는 이 클라이언트에서 지원되는 로그인 방식을 지원하지 않습니다.",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "홈 서버 %(homeserverDomain)s를(을) 계속 사용하기 위해서는 저희 이용 약관을 읽어보시고 동의하셔야 합니다.",
+ "State Key": "상태 키",
+ "Send Account Data": "계정 정보 보내기",
+ "Loading device info...": "기기 정보 받는 중...",
+ "Clear Storage and Sign Out": "저장소 지우고 로그아웃하기",
+ "Send Logs": "로그 보내기",
+ "We encountered an error trying to restore your previous session.": "저번 활동을 복구하던 중 에러가 났습니다.",
+ "Add to summary": "요약에 추가하기",
+ "Which rooms would you like to add to this summary?": "이 요약에 어떤 방을 추가하시겠어요?",
+ "Add a Room": "방 추가하기",
+ "Add users to the community summary": "커뮤니티 요약에 사용자 추가하기",
+ "Who would you like to add to this summary?": "이 요약에 누구를 추가하고 싶으세요?",
+ "Link to most recent message": "가장 최근 메시지로 링크 걸기"
}
diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json
index bd46c25ed8..0e98596e12 100644
--- a/src/i18n/strings/lt.json
+++ b/src/i18n/strings/lt.json
@@ -13,7 +13,7 @@
"Analytics": "Statistika",
"The information being sent to us to help make Riot.im better includes:": "Informacijoje, kuri yra siunčiama Riot.im tobulinimui yra:",
"Fetching third party location failed": "Nepavyko gauti trečios šalies vietos",
- "A new version of Riot is available.": "Yra nauja Riot versija.",
+ "A new version of Riot is available.": "Yra prieinama nauja Riot versija.",
"I understand the risks and wish to continue": "Aš suprantu riziką ir noriu tęsti",
"Couldn't load home page": "Nepavyksta užkrauti namų puslapio",
"Send Account Data": "Siųsti paskyros duomenis",
@@ -43,7 +43,7 @@
"All notifications are currently disabled for all targets.": "Šiuo metu visi pranešimai visiems objektams yra išjungti.",
"Operation failed": "Operacija nepavyko",
"delete the alias.": "ištrinti slapyvardį.",
- "To return to your account in future you need to set a password ": "Ateityje norėdami prisijungti prie savo paskyros turite susigalvoti slaptažodį ",
+ "To return to your account in future you need to set a password ": "Ateityje, norėdami grįžti prie savo paskyros turite nusistatyti slaptažodį ",
"Forget": "Pamiršti",
"World readable": "Visiems skaitomas",
"Mute": "Užtildyti",
@@ -64,7 +64,7 @@
"Notifications on the following keywords follow rules which can’t be displayed here:": "Pranešimai šiems raktažodžiams yra uždrausti taisyklėmis:",
"Safari and Opera work too.": "Naudojant Safari ir Opera taip pat gerai veikia.",
"Please set a password!": "Prašau įrašykite slaptažodį!",
- "powered by Matrix": "palaikomas Matrix",
+ "powered by Matrix": "veikia su Matrix",
"You have successfully set a password!": "Jūs sėkmingai įrašėte slaptažodį!",
"Favourite": "Svarbūs",
"All Rooms": "Visi pokalbių kambariai",
@@ -97,7 +97,7 @@
"Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot naudoja daug išplėstinių naršyklės funkcionalumų, kai kurie iš jų yra neprieinami ar eksperimentinei Jūsų naršyklėje.",
"Event sent!": "Įvykis išsiųstas!",
"Unnamed room": "Kambarys be pavadinimo",
- "Dismiss": "Nutraukti",
+ "Dismiss": "Atmesti",
"Explore Account Data": "Peržiūrėti paskyros duomenis",
"Remove from Directory": "Šalinti iš katalogo",
"Download this file": "Atsisiųsti šį failą",
@@ -109,7 +109,7 @@
"Failed to set Direct Message status of room": "Nepavyko nustatyti tiesioginio pranešimo kambario būklės",
"Monday": "Pirmadienis",
"All messages (noisy)": "Visos žinutės (triukšmingas)",
- "Enable them now": "Įgalinti juos dabar",
+ "Enable them now": "Įjungti juos dabar",
"Enable audible notifications in web client": "Įgalinti garsinius pranešimus internetinėje aplinkoje",
"Messages containing my user name": "Žinutės, kuriose paminėtas mano naudotojo vardas",
"Toolbox": "Įrankinė",
@@ -154,14 +154,13 @@
"Quote": "Citata",
"Messages in group chats": "Žinutės grupės pokalbiuose",
"Yesterday": "Vakar",
- "Error encountered (%(errorDetail)s).": "Gauta klaida (%(errorDetail)s).",
+ "Error encountered (%(errorDetail)s).": "Susidurta su klaida (%(errorDetail)s).",
"Login": "Prisijungti",
"Low Priority": "Nesvarbūs",
"Riot does not know how to join a room on this network": "Riot nežino kaip prisijungti prie kambario šiame tinkle",
"Set Password": "Nustatyti slaptažodį",
"An error occurred whilst saving your email notification preferences.": "Įrašant pranešimų el. paštu nuostatas, įvyko klaida.",
"Unable to join network": "Nepavyko prisijungti prie tinklo",
- "Permalink": "Pastovioji nuoroda",
"Register": "Registruotis",
"Off": "Išjungta",
"Edit": "Koreguoti",
@@ -182,11 +181,276 @@
"%(count)s Members|one": "%(count)s narys",
"Developer Tools": "Programuotojo įrankiai",
"Unhide Preview": "Rodyti paržiūrą",
- "Custom Server Options": "Pasirinktiniai serverio nustatymai",
+ "Custom Server Options": "Tinkinto serverio parametrai",
"Event Content": "Įvykio turinys",
"Thank you!": "Ačiū!",
"Collapse panel": "Suskleisti skydelį",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Naudojant šią naršyklę aplikacija gali atrodyti ir reaguoti neteisingai. Kai kurios arba visos funkcijos gali neveikti. Jei vis tiek norite pabandyti gali tęsti, tačiau iškilusios problemos yra jūsų pačių reikalas!",
"Checking for an update...": "Tikrinama ar yra atnaujinimų...",
- "There are advanced notifications which are not shown here": "Yra išplėstinių pranešimų, kurie nėra čia rodomi"
+ "There are advanced notifications which are not shown here": "Yra išplėstinių pranešimų, kurie nėra čia rodomi",
+ "e.g. %(exampleValue)s": "pvz., %(exampleValue)s",
+ "e.g. ": "pvz., ",
+ "Your device resolution": "Jūsų įrenginio raiška",
+ "Call Failed": "Skambutis nepavyko",
+ "Call Anyway": "Vis tiek skambinti",
+ "Answer Anyway": "Vis tiek atsiliepti",
+ "Call": "Skambinti",
+ "Answer": "Atsiliepti",
+ "Unable to capture screen": "Nepavyko nufotografuoti ekraną",
+ "You are already in a call.": "Jūs jau dalyvaujate skambutyje.",
+ "VoIP is unsupported": "VoIP yra nepalaikoma",
+ "Could not connect to the integration server": "Nepavyko prisijungti prie integracijos serverio",
+ "Permission Required": "Reikalingas leidimas",
+ "The file '%(fileName)s' failed to upload": "Nepavyko įkelti failo \"%(fileName)s\"",
+ "Upload Failed": "Įkėlimas nepavyko",
+ "Sun": "Sek",
+ "Mon": "Pir",
+ "Tue": "Ant",
+ "Wed": "Tre",
+ "Thu": "Ket",
+ "Fri": "Pen",
+ "Sat": "Šeš",
+ "Jan": "Sau",
+ "Feb": "Vas",
+ "Mar": "Kov",
+ "Apr": "Bal",
+ "May": "Geg",
+ "Jun": "Bir",
+ "Jul": "Lie",
+ "Aug": "Rgp",
+ "Sep": "Rgs",
+ "Oct": "Spa",
+ "Nov": "Lap",
+ "Dec": "Gru",
+ "PM": "PM",
+ "AM": "AM",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(fullYear)s %(monthName)s %(day)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(fullYear)s %(monthName)s %(day)s %(time)s",
+ "Who would you like to add to this community?": "Ką norėtumėte pridėti į šią bendruomenę?",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Įspėjimas: bet kuris pridėtas asmuo bus matomas visiems, žinantiems bendruomenės ID",
+ "Name or matrix ID": "Vardas ar matrix ID",
+ "Invite to Community": "Pakviesti į bendruomenę",
+ "Which rooms would you like to add to this community?": "Kuriuos kambarius norėtumėte pridėti į šią bendruomenę?",
+ "Add rooms to the community": "Pridėti kambarius į bendruomenę",
+ "Add to community": "Pridėti į bendruomenę",
+ "Failed to invite the following users to %(groupId)s:": "Nepavyko pakviesti šių naudotojų į %(groupId)s:",
+ "Failed to invite users to community": "Nepavyko pakviesti naudotojus į bendruomenę",
+ "Failed to invite users to %(groupId)s": "Nepavyko pakviesti naudotojų į %(groupId)s",
+ "Failed to add the following rooms to %(groupId)s:": "Nepavyko pridėti šiuos kambarius į %(groupId)s:",
+ "Riot does not have permission to send you notifications - please check your browser settings": "Riot neturi leidimo siųsti jums pranešimus - patikrinkite savo naršyklės nustatymus",
+ "Riot was not given permission to send notifications - please try again": "Riot nebuvo suteiktas leidimas siųsti pranešimus - bandykite dar kartą",
+ "Unable to enable Notifications": "Nepavyko įjungti Pranešimus",
+ "This email address was not found": "Šis el. pašto adresas nebuvo rastas",
+ "Admin": "Administratorius",
+ "Start a chat": "Pradėti pokalbį",
+ "Email, name or matrix ID": "El. paštas, vardas ar matrix ID",
+ "Start Chat": "Pradėti pokalbį",
+ "Who would you like to add to this room?": "Ką norėtumėte pridėti į šį kambarį?",
+ "Send Invites": "Siųsti pakvietimus",
+ "Failed to invite user": "Nepavyko pakviesti naudotojo",
+ "Failed to invite": "Nepavyko pakviesti",
+ "Failed to invite the following users to the %(roomName)s room:": "Nepavyko pakviesti šių naudotojų į kambarį %(roomName)s :",
+ "You need to be logged in.": "Turite būti prisijungę.",
+ "Unable to create widget.": "Nepavyko sukurti valdiklio.",
+ "Failed to send request.": "Nepavyko išsiųsti užklausos.",
+ "This room is not recognised.": "Šis kambarys neatpažintas.",
+ "You are not in this room.": "Jūs nesate šiame kambaryje.",
+ "You do not have permission to do that in this room.": "Jūs neturite leidimo tai atlikti šiame kambaryje.",
+ "Room %(roomId)s not visible": "Kambarys %(roomId)s nematomas",
+ "/ddg is not a command": "/ddg nėra komanda",
+ "Changes your display nickname": "Pakeičia jūsų rodomą slapyvardį",
+ "Sets the room topic": "Nustato kambario temą",
+ "Invites user with given id to current room": "Pakviečia naudotoją su nurodytu id į esamą kambarį",
+ "You are now ignoring %(userId)s": "Dabar nepaisote %(userId)s",
+ "Opens the Developer Tools dialog": "Atveria kūrėjo įrankių dialogą",
+ "Unknown (user, device) pair:": "Nežinoma pora (naudotojas, įrenginys):",
+ "Device already verified!": "Įrenginys jau patvirtintas!",
+ "WARNING: Device already verified, but keys do NOT MATCH!": "ĮSPĖJIMAS: Įrenginys jau patvirtintas, tačiau raktai NESUTAMPA!",
+ "Verified key": "Patvirtintas raktas",
+ "Displays action": "Rodo veiksmą",
+ "Unrecognised command:": "Neatpažinta komanda:",
+ "Reason": "Priežastis",
+ "%(targetName)s accepted an invitation.": "%(targetName)s priėmė pakvietimą.",
+ "%(senderName)s invited %(targetName)s.": "%(senderName)s pakvietė naudotoją %(targetName)s.",
+ "%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s pasikeitė savo rodomą vardą į %(displayName)s.",
+ "%(senderName)s set their display name to %(displayName)s.": "%(senderName)s nusistatė savo rodomą vardą į %(displayName)s.",
+ "%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s pašalino savo rodomą vardą (%(oldDisplayName)s).",
+ "%(senderName)s removed their profile picture.": "%(senderName)s pašalino savo profilio paveikslą.",
+ "%(senderName)s changed their profile picture.": "%(senderName)s pasikeitė savo profilio paveikslą.",
+ "%(senderName)s set a profile picture.": "%(senderName)s nusistatė profilio paveikslą.",
+ "%(targetName)s rejected the invitation.": "%(targetName)s atmetė pakvietimą.",
+ "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s pakeitė temą į \"%(topic)s\".",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s pakeitė kambario pavadinimą į %(roomName)s.",
+ "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s išsiuntė paveikslą.",
+ "Someone": "Kažkas",
+ "%(senderName)s answered the call.": "%(senderName)s atsiliepė į skambutį.",
+ "(unknown failure: %(reason)s)": "(nežinoma lemtingoji klaida: %(reason)s)",
+ "%(senderName)s ended the call.": "%(senderName)s užbaigė skambutį.",
+ "%(displayName)s is typing": "%(displayName)s rašo",
+ "%(names)s and %(count)s others are typing|other": "%(names)s ir dar kiti %(count)s rašo",
+ "%(names)s and %(lastPerson)s are typing": "%(names)s ir %(lastPerson)s rašo",
+ "Send anyway": "Vis tiek siųsti",
+ "Unnamed Room": "Kambarys be pavadinimo",
+ "Hide removed messages": "Slėpti pašalintas žinutes",
+ "Hide display name changes": "Slėpti rodomo vardo pakeitimus",
+ "Show timestamps in 12 hour format (e.g. 2:30pm)": "Rodyti laiko žymas 12 valandų formatu (pvz., 2:30pm)",
+ "Always show message timestamps": "Visada rodyti žinučių laiko žymas",
+ "Always show encryption icons": "Visada rodyti šifravimo piktogramas",
+ "Room Colour": "Kambario spalva",
+ "Decline": "Atmesti",
+ "Accept": "Priimti",
+ "Incorrect verification code": "Neteisingas patvirtinimo kodas",
+ "Submit": "Pateikti",
+ "Phone": "Telefonas",
+ "Add phone number": "Pridėti telefono numerį",
+ "Add": "Pridėti",
+ "Failed to upload profile picture!": "Nepavyko įkelti profilio paveikslą!",
+ "Upload new:": "Įkelti naują:",
+ "No display name": "Nėra rodomo vardo",
+ "New passwords don't match": "Nauji slaptažodžiai nesutampa",
+ "Passwords can't be empty": "Slaptažodžiai negali būti tušti",
+ "Warning!": "Įspėjimas!",
+ "Do you want to set an email address?": "Ar norite nustatyti el. pašto adresą?",
+ "Current password": "Dabartinis slaptažodis",
+ "Password": "Slaptažodis",
+ "New Password": "Naujas slaptažodis",
+ "Unable to load device list": "Nepavyko įkelti įrenginių sąrašo",
+ "Delete %(count)s devices|one": "Ištrinti įrenginį",
+ "Device ID": "Įrenginio ID",
+ "Device Name": "Įrenginio pavadinimas",
+ "Failed to set display name": "Nepavyko nustatyti rodomą vardą",
+ "Disable Notifications": "Išjungti pranešimus",
+ "Enable Notifications": "Įjungti pranešimus",
+ "Cannot add any more widgets": "Nepavyksta pridėti daugiau valdiklių",
+ "Add a widget": "Pridėti valdiklį",
+ "Drop File Here": "Vilkite failą čia",
+ "Drop file here to upload": "Norėdami įkelti, vilkite failą čia",
+ " (unsupported)": " (nepalaikoma)",
+ "%(senderName)s sent an image": "%(senderName)s išsiuntė paveikslą",
+ "%(senderName)s sent a video": "%(senderName)s išsiuntė vaizdo įrašą",
+ "%(senderName)s uploaded a file": "%(senderName)s įkėlė failą",
+ "Options": "Parametrai",
+ "Key request sent.": "Rakto užklausa išsiųsta.",
+ "Unencrypted message": "Nešifruota žinutė",
+ "device id: ": "įrenginio id: ",
+ "Failed to mute user": "Nepavyko nutildyti naudotoją",
+ "Are you sure?": "Ar tikrai?",
+ "Devices": "Įrenginiai",
+ "Ignore": "Nepaisyti",
+ "Invite": "Pakviesti",
+ "User Options": "Naudotojo parametrai",
+ "Admin Tools": "Administratoriaus įrankiai",
+ "bold": "pusjuodis",
+ "italic": "kursyvas",
+ "Attachment": "Priedas",
+ "Upload Files": "Įkelti failus",
+ "Are you sure you want to upload the following files?": "Ar tikrai norite įkelti šiuos failus?",
+ "Encrypted room": "Šifruotas kambarys",
+ "Unencrypted room": "Nešifruotas kambarys",
+ "Voice call": "Balso skambutis",
+ "Video call": "Vaizdo skambutis",
+ "Upload file": "Įkelti failą",
+ "Show Text Formatting Toolbar": "Rodyti teksto formatavimo įrankių juostą",
+ "Send an encrypted reply…": "Siųsti šifruotą atsakymą…",
+ "Send a reply (unencrypted)…": "Siųsti atsakymą (nešifruotą)…",
+ "Send an encrypted message…": "Siųsti šifruotą žinutę…",
+ "Send a message (unencrypted)…": "Siųsti žinutę (nešifruotą)…",
+ "Hide Text Formatting Toolbar": "Slėpti teksto formatavimo įrankių juostą",
+ "Server error": "Serverio klaida",
+ "Command error": "Komandos klaida",
+ "Unable to reply": "Nepavyko atsakyti",
+ "Loading...": "Įkeliama...",
+ "Pinned Messages": "Prisegtos žinutės",
+ "Unknown": "Nežinoma",
+ "Save": "Įrašyti",
+ "(~%(count)s results)|other": "(~%(count)s rezultatų(-ai))",
+ "(~%(count)s results)|one": "(~%(count)s rezultatas)",
+ "Upload avatar": "Įkelti avatarą",
+ "Remove avatar": "Šalinti avatarą",
+ "Settings": "Nustatymai",
+ "Show panel": "Rodyti skydelį",
+ "Press to start a chat with someone": "Norėdami pradėti su kuo nors pokalbį, paspauskite ",
+ "Community Invites": "",
+ "People": "Žmonės",
+ "Reason: %(reasonText)s": "Priežastis: %(reasonText)s",
+ "%(roomName)s does not exist.": "%(roomName)s nėra.",
+ "%(roomName)s is not accessible at this time.": "%(roomName)s šiuo metu nėra pasiekiamas.",
+ "Click here to join the discussion!": "Spustelėkite čia , norėdami prisijungti prie diskusijos!",
+ "To change the topic, you must be a": "Norėdami pakeisti temą, privalote būti",
+ "Enable encryption": "Įjungti šifravimą",
+ "To send messages, you must be a": "Norėdami siųsti žinutes, privalote būti",
+ "To invite users into the room, you must be a": "Norėdami pakviesti naudotojus į kambarį, privalote būti",
+ "To configure the room, you must be a": "Norėdami konfigūruoti kambarį, privalote būti",
+ "To remove other users' messages, you must be a": "Norėdami šalinti kitų naudotojų žinutes, privalote būti",
+ "%(user)s is a %(userRole)s": "%(user)s yra %(userRole)s",
+ "Muted Users": "Nutildyti naudotojai",
+ "Click here to fix": "Spustelėkite čia, norėdami pataisyti",
+ "To send events of type , you must be a": "Norėdami siųsti tipo įvykius, privalote būti",
+ "Only people who have been invited": "Tik žmonės, kurie buvo pakviesti",
+ "Anyone who knows the room's link, apart from guests": "Bet kas, žinantis kambario nuorodą, išskyrus svečius",
+ "Anyone who knows the room's link, including guests": "Bet kas, žinantis kambario nuorodą, įskaitant svečius",
+ "Anyone": "Bet kas",
+ "Permissions": "Leidimai",
+ "Advanced": "Išplėstiniai",
+ "This room's internal ID is": "Šio kambario vidinis ID yra",
+ "Add a topic": "Pridėti temą",
+ "Invalid address format": "Neteisingas adreso formatas",
+ "Addresses": "Adresai",
+ "The main address for this room is": "Pagrindinis šio kambario adresas yra",
+ "Local addresses for this room:": "Vietiniai šio kambario adresai:",
+ "This room has no local addresses": "Šis kambarys neturi jokių vietinių adresų",
+ "New address (e.g. #foo:%(localDomain)s)": "Naujas adresas (pvz., #betkoks:%(localDomain)s)",
+ "Invalid community ID": "Neteisingas bendruomenės ID",
+ "'%(groupId)s' is not a valid community ID": "\"%(groupId)s\" nėra teisingas bendruomenės ID",
+ "New community ID (e.g. +foo:%(localDomain)s)": "Naujas bendruomenės ID (pvz., +betkoks:%(localDomain)s)",
+ "URL Previews": "URL nuorodų peržiūros",
+ "Error decrypting audio": "Klaida iššifruojant garsą",
+ "Error decrypting attachment": "Klaida iššifruojant priedą",
+ "Decrypt %(text)s": "Iššifruoti %(text)s",
+ "Download %(text)s": "Atsisiųsti %(text)s",
+ "Error decrypting image": "Klaida iššifruojant paveikslą",
+ "Error decrypting video": "Klaida iššifruojant vaizdo įrašą",
+ "Copied!": "Nukopijuota!",
+ "Failed to copy": "Nepavyko nukopijuoti",
+ "Message removed by %(userId)s": "Žinutę pašalino %(userId)s",
+ "Message removed": "Žinutė pašalinta",
+ "To continue, please enter your password.": "Norėdami tęsti, įveskite savo slaptažodį.",
+ "Password:": "Slaptažodis:",
+ "An email has been sent to %(emailAddress)s": "El. laiškas buvo išsiųstas į %(emailAddress)s",
+ "Please check your email to continue registration.": "Norėdami tęsti registraciją, patikrinkite savo el. paštą.",
+ "A text message has been sent to %(msisdn)s": "Tekstinė žinutė buvo išsiųsta į %(msisdn)s",
+ "Please enter the code it contains:": "Įveskite joje esantį kodą:",
+ "Code": "Kodas",
+ "The email field must not be blank.": "El. pašto laukas negali būti tuščias.",
+ "The user name field must not be blank.": "Naudotojo vardo laukas negali būti tuščias.",
+ "The phone number field must not be blank.": "Telefono numerio laukas negali būti tuščias.",
+ "The password field must not be blank.": "Slaptažodžio laukas negali būti tuščias.",
+ "User name": "Naudotojo vardas",
+ "Mobile phone number": "Mobiliojo telefono numeris",
+ "Forgot your password?": "Pamiršote slaptažodį?",
+ "Email address": "El. pašto adresas",
+ "Email address (optional)": "El. pašto adresas (nebūtinas)",
+ "Mobile phone number (optional)": "Mobiliojo telefono numeris (nebūtinas)",
+ "Default server": "Numatytasis serveris",
+ "Custom server": "Tinkintas serveris",
+ "What does this mean?": "Ką tai reiškia?",
+ "Remove from community": "Šalinti iš bendruomenės",
+ "Remove this user from community?": "Šalinti šį naudotoją iš bendruomenės?",
+ "Failed to remove user from community": "Nepavyko pašalinti naudotoją iš bendruomenės",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Ar tikrai norite pašalinti \"%(roomName)s\" iš %(groupId)s?",
+ "Failed to remove room from community": "Nepavyko pašalinti kambarį iš bendruomenės",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "Nepavyko pašalinti \"%(roomName)s\" iš %(groupId)s",
+ "Something went wrong!": "Kažkas nutiko!",
+ "Visibility in Room List": "Matomumas kambarių sąraše",
+ "Visible to everyone": "Matomas visiems",
+ "Yes, I want to help!": "Taip, aš noriu padėti!",
+ "Unknown Address": "Nežinomas adresas",
+ "Warning: This widget might use cookies.": "Įspėjimas: Šis valdiklis gali naudoti slapukus.",
+ "Do you want to load widget from URL:": "Ar norite įkelti valdiklį iš URL:",
+ "Allow": "Leisti",
+ "Delete Widget": "Ištrinti valdiklį",
+ "Delete widget": "Ištrinti valdiklį",
+ "Failed to remove widget": "Nepavyko pašalinti valdiklį"
}
diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json
index 01e3ae5c6d..09182ed776 100644
--- a/src/i18n/strings/lv.json
+++ b/src/i18n/strings/lv.json
@@ -153,7 +153,6 @@
"Failed to kick": "Neizdevās izspert/padzīt (kick)",
"Failed to leave room": "Neizdevās pamest istabu",
"Failed to load timeline position": "Neizdevās ielādēt laikpaziņojumu pozīciju",
- "Failed to lookup current room": "Neizdevās uziet pašreizējo istabu",
"Failed to mute user": "Neizdevās apklusināt lietotāju",
"Failed to reject invite": "Neizdevās noraidīt uzaicinājumu",
"Failed to reject invitation": "Neizdevās noraidīt uzaicinājumu",
@@ -224,7 +223,6 @@
"Level:": "Līmenis:",
"Local addresses for this room:": "Šīs istabas lokālās adreses:",
"Logged in as:": "Pierakstījās kā:",
- "Login as guest": "Pierakstīties kā viesim",
"Logout": "Izrakstīties",
"Low priority": "Zemas prioritātes",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas biedriem no brīža, kad tie tika uzaicināti.",
@@ -245,7 +243,6 @@
"Mobile phone number": "Mobilā telefona numurs",
"Mobile phone number (optional)": "Mobilā telefona numurs (nav obligāts)",
"Moderator": "Moderators",
- "Must be viewing a room": "Jāapskata istaba",
"Mute": "Noklusināt (izslēgt skaņu)",
"%(serverName)s Matrix ID": "%(serverName)s Matrix Id",
"Name": "Vārds",
@@ -720,9 +717,7 @@
"%(widgetName)s widget modified by %(senderName)s": "%(widgetName)s vidžets, kuru mainīja %(senderName)s",
"%(names)s and %(count)s others are typing|other": "%(names)s un %(count)s citi raksta",
"%(names)s and %(count)s others are typing|one": "%(names)s un vēl kāds raksta",
- "Message Replies": "Atbildes uz ziņām",
"Message Pinning": "Ziņu piekabināšana",
- "Tag Panel": "Birku panelis",
"Disable Emoji suggestions while typing": "Atspējot Emoji ieteikumus teksta rakstīšanas laikā",
"Hide avatar changes": "Slēpt avatara izmaiņas",
"Hide display name changes": "Slēpt attēlojamā/redzamā vārda izmaiņas",
@@ -867,7 +862,7 @@
"email address": "e-pasta adrese",
"Try using one of the following valid address types: %(validTypesList)s.": "Mēģiniet izmantot vienu no sekojošiem pieļautajiem adrešu tipiem: %(validTypesList)s.",
"You have entered an invalid address.": "Ievadīta nederīga adrese.",
- "Community IDs cannot not be empty.": "Kopienu IDs nevar būt tukši.",
+ "Community IDs cannot be empty.": "Kopienu IDs nevar būt tukši.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Kopienas ID var saturēt tikai simbolus a-z, 0-9, or '=_-./'",
"Something went wrong whilst creating your community": "Radot Tavu kopienu kaut kas nogāja greizi",
"Create Community": "Radīt kopienu",
@@ -973,8 +968,6 @@
"Did you know: you can use communities to filter your Riot.im experience!": "Vai zināji: Tu vari izmantot kopienas, lai filtrētu (atlasītu) savu Riot.im pieredzi!",
"To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Lai uzstādītu filtru, uzvelc kopienas avataru uz filtru paneļa ekrāna kreisajā malā. Lai redzētu tikai istabas un cilvēkus, kas saistīti ar šo kopienu, Tu vari klikšķināt uz avatara filtru panelī jebkurā brīdī.",
"Create a new community": "Izveidot jaunu kopienu",
- "Join an existing community": "Pievienoties esošai kopienai",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Lai pievienotos esošai kopienai Tev jāzina tā ID; tas izskatīties piemēram šādi +paraugs:matrix.org .",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Tagadvisas atkārtoti sūtīt vai visas atcelt . Tu vari atzīmēt arī individuālas ziņas, kuras atkārtoti sūtīt vai atcelt.",
"Clear filter": "Attīrīt filtru",
"Debug Logs Submission": "Iesniegt atutošanas logfailus",
@@ -1115,7 +1108,6 @@
"Unable to fetch notification target list": "Neizdevās iegūt paziņojumu mērķu sarakstu",
"Set Password": "Iestatīt paroli",
"Enable audible notifications in web client": "Iespējot skaņus paziņojumus web klientā",
- "Permalink": "Pastāvīgā saite",
"Off": "izslēgts",
"Riot does not know how to join a room on this network": "Riot nezin kā pievienoties šajā tīklā esošajai istabai",
"Mentions only": "Vienīgi atsauces",
diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json
index 6de7e92df7..a4bf0b421a 100644
--- a/src/i18n/strings/ml.json
+++ b/src/i18n/strings/ml.json
@@ -137,7 +137,6 @@
"Unable to fetch notification target list": "നോട്ടിഫിക്കേഷന് ടാര്ഗെറ്റ് ലിസ്റ്റ് നേടാനായില്ല",
"Set Password": "രഹസ്യവാക്ക് സജ്ജീകരിക്കുക",
"Enable audible notifications in web client": "വെബ് പതിപ്പിലെ അറിയിപ്പുകള് കേള്ക്കാവുന്നതാക്കുക",
- "Permalink": "പെര്മാലിങ്ക്",
"remove %(name)s from the directory.": "%(name)s ഡയറക്റ്ററിയില് നിന്ന് നീക്കം ചെയ്യുക.",
"Off": "ഓഫ്",
"Riot does not know how to join a room on this network": "ഈ നെറ്റ്വര്ക്കിലെ ഒരു റൂമില് എങ്ങനെ അംഗമാകാമെന്ന് റയട്ടിന് അറിയില്ല",
diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json
index 47da50122c..9a2b859854 100644
--- a/src/i18n/strings/nb_NO.json
+++ b/src/i18n/strings/nb_NO.json
@@ -98,7 +98,6 @@
"Riot does not know how to join a room on this network": "Riot vet ikke hvordan man kan komme inn på et rom på dette nettverket",
"An error occurred whilst saving your email notification preferences.": "En feil oppsto i forbindelse med lagring av epost varsel innstillinger.",
"Enable audible notifications in web client": "Aktiver lyd-varsel i webklient",
- "Permalink": "Permanent lenke",
"remove %(name)s from the directory.": "fjern %(name)s fra katalogen.",
"Off": "Av",
"#example": "#eksempel",
diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json
index 0df2cf1bd7..cfe67273f0 100644
--- a/src/i18n/strings/nl.json
+++ b/src/i18n/strings/nl.json
@@ -4,7 +4,7 @@
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s heeft de uitnodiging voor %(displayName)s geaccepteerd.",
"Account": "Account",
"Access Token:": "Toegangstoken:",
- "Add email address": "Voeg een email address toe",
+ "Add email address": "Voeg een e-mailadres toe",
"Add phone number": "Voeg een telefoonnummer toe",
"Admin": "Beheerder",
"Advanced": "Geavanceerd",
@@ -18,8 +18,8 @@
"A new password must be entered.": "Er moet een nieuw wachtwoord worden ingevoerd.",
"%(senderName)s answered the call.": "%(senderName)s heeft deelgenomen aan het audiogesprek.",
"An error has occurred.": "Er is een fout opgetreden.",
- "Anyone who knows the room's link, apart from guests": "Iedereen die de kamerlink weet, behalve gasten",
- "Anyone who knows the room's link, including guests": "Iedereen die de kamerlink weet, inclusief gasten",
+ "Anyone who knows the room's link, apart from guests": "Iedereen die de link van de ruimte weet, behalve gasten",
+ "Anyone who knows the room's link, including guests": "Iedereen die link van de ruimte weet, inclusief gasten",
"Are you sure?": "Weet je het zeker?",
"Are you sure you want to reject the invitation?": "Weet je zeker dat je de uitnodiging wilt weigeren?",
"Attachment": "Bijlage",
@@ -36,13 +36,13 @@
"Change Password": "Wachtwoord veranderen",
"%(senderName)s changed their profile picture.": "%(senderName)s heeft zijn of haar profielfoto veranderd.",
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s heeft het machtsniveau van %(powerLevelDiffText)s gewijzigd.",
- "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s heeft de kamernaam van %(roomName)s gewijzigd.",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s heeft de ruimtenaam van %(roomName)s gewijzigd.",
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s heeft het onderwerp gewijzigd naar \"%(topic)s\".",
"Changes to who can read history will only apply to future messages in this room": "Veranderingen aan wie de geschiedenis kan lezen worden alleen maar toegepast op toekomstige berichten in deze ruimte",
"Changes your display nickname": "Verandert jouw weergavenaam",
"Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Het veranderen van het wachtwoord zal op het moment alle eind-tot-eind encryptie sleutels resetten, wat alle versleutelde gespreksgeschiedenis onleesbaar zou maken, behalve als je eerst je ruimtesleutels exporteert en achteraf opnieuw importeert. Dit zal worden verbeterd in de toekomst.",
- "Clear Cache and Reload": "Legen cache en herlaad",
- "Clear Cache": "Legen cache",
+ "Clear Cache and Reload": "Cache Legen en Herladen",
+ "Clear Cache": "Cache Legen",
"Click here to fix": "Klik hier om op te lossen",
"Click to mute audio": "Klik om audio te dempen",
"Click to mute video": "Klik om de video te dempen",
@@ -53,7 +53,7 @@
"Commands": "Opdrachten",
"Conference call failed.": "Conferentiegesprek mislukt.",
"Conference calling is in development and may not be reliable.": "Conferentiegesprekken zijn nog in ontwikkelingen en kunnen onbetrouwbaar zijn.",
- "Conference calls are not supported in encrypted rooms": "Conferentiegesprekken worden niet ondersteunt in versleutelde kamers",
+ "Conference calls are not supported in encrypted rooms": "Conferentiegesprekken worden niet ondersteunt in versleutelde ruimtes",
"Conference calls are not supported in this client": "Conferentiegesprekken worden niet ondersteunt in deze client",
"Confirm password": "Bevestigen wachtwoord",
"Confirm your new password": "Bevestig je nieuwe wachtwoord",
@@ -64,7 +64,7 @@
"Active call (%(roomName)s)": "Actief gesprek (%(roomName)s)",
"Add": "Toevoegen",
"Add a topic": "Een onderwerp toevoegen",
- "Admin Tools": "Beheerhulpmiddelen",
+ "Admin Tools": "Beheerdershulpmiddelen",
"VoIP": "VoiP",
"Missing Media Permissions, click here to request.": "Ontbrekende mediatoestemmingen, klik hier om aan te vragen.",
"No Microphones detected": "Geen microfoons gevonden",
@@ -93,7 +93,7 @@
"Operation failed": "Actie mislukt",
"powered by Matrix": "mogelijk gemaakt door Matrix",
"Remove": "Verwijderen",
- "Room directory": "Kamerlijst",
+ "Room directory": "Ruimtelijst",
"Settings": "Instellingen",
"Start chat": "Gesprek starten",
"unknown error code": "onbekende foutcode",
@@ -101,7 +101,6 @@
"OK": "OK",
"Failed to change password. Is your password correct?": "Wachtwoord wijzigen mislukt. Is uw wachtwoord juist?",
"Moderator": "Moderator",
- "Must be viewing a room": "Moet een ruimte weergeven",
"%(serverName)s Matrix ID": "%(serverName)s Matrix-ID",
"Name": "Naam",
"New password": "Nieuw wachtwoord",
@@ -238,7 +237,6 @@
"Failed to join room": "Niet gelukt om tot de ruimte toe te treden",
"Failed to leave room": "Niet gelukt om de ruimte te verlaten",
"Failed to load timeline position": "Niet gelukt om de tijdlijnpositie te laden",
- "Failed to lookup current room": "Niet gelukt om de huidige ruimte op te zoeken",
"Failed to mute user": "Niet gelukt om de gebruiker te dempen",
"Failed to reject invite": "Niet gelukt om de uitnodiging te weigeren",
"Failed to reject invitation": "Niet gelukt om de uitnodiging te weigeren",
@@ -267,7 +265,7 @@
"Hangup": "Ophangen",
"Hide read receipts": "Leesbewijzen verbergen",
"Hide Text Formatting Toolbar": "Tekstopmaakgereedschapsbalk verbergen",
- "Historical": "Historische",
+ "Historical": "Historisch",
"Home": "Home",
"Homeserver is": "Thuisserver is",
"Identity Server is": "Identiteitsserver is",
@@ -295,7 +293,7 @@
"Sign in with": "Inloggen met",
"Join as voice or video .": "Toetreden als spraak of video .",
"Join Room": "Ruimte toetreden",
- "%(targetName)s joined the room.": "%(targetName)s is aan de ruimte toegevoegd.",
+ "%(targetName)s joined the room.": "%(targetName)s is tot de ruimte toegetreden.",
"Joins room with given alias": "Treed de ruimte toe met een gegeven naam",
"Jump to first unread message.": "Spring naar het eerste ongelezen bericht.",
"Labs": "Labs",
@@ -305,12 +303,11 @@
"Level:": "Niveau:",
"Local addresses for this room:": "Lokale adressen voor deze ruimte:",
"Logged in as:": "Ingelogd als:",
- "Login as guest": "Als gast inloggen",
"Logout": "Uitloggen",
"Low priority": "Lage prioriteit",
- "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s heeft de toekomstige ruimtegeschiedenis zichtbaar gemaakt voor alle kamerleden, vanaf het moment dat ze uitgenodigt zijn.",
- "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor alle kamerleden, vanaf het moment dat ze toegetreden zijn.",
- "%(senderName)s made future room history visible to all room members.": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor alle kamerleden.",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s heeft de toekomstige ruimtegeschiedenis zichtbaar gemaakt voor alle ruimte deelnemers, vanaf het moment dat ze uitgenodigd zijn.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor alle ruimte deelnemers, vanaf het moment dat ze toegetreden zijn.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor alle ruimte deelnemers.",
"%(senderName)s made future room history visible to anyone.": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor iedereen.",
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s heeft de toekomstige ruimte geschiedenis zichtbaar gemaakt voor onbekend (%(visibility)s).",
"Manage Integrations": "Integraties beheren",
@@ -349,7 +346,7 @@
"Room name (optional)": "Ruimtenaam (optioneel)",
"%(roomName)s does not exist.": "%(roomName)s bestaat niet.",
"%(roomName)s is not accessible at this time.": "%(roomName)s is niet toegankelijk op dit moment.",
- "Rooms": "Kamers",
+ "Rooms": "Ruimtes",
"Save": "Opslaan",
"Scroll to bottom of page": "Scroll naar de onderkant van de pagina",
"Scroll to unread messages": "Scroll naar ongelezen berichten",
@@ -410,7 +407,7 @@
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Het is niet gelukt om een specifiek punt in de tijdlijn van deze ruimte te laden.",
"Turn Markdown off": "Zet Markdown uit",
"Turn Markdown on": "Zet Markdown aan",
- "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s heeft eind-tot-eind versleuteling aangezet (algoritme %(algorithm)s).",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s heeft end-to-endbeveiliging aangezet (algoritme %(algorithm)s).",
"Unable to add email address": "Niet mogelijk om e-mailadres toe te voegen",
"Unable to remove contact information": "Niet mogelijk om contactinformatie te verwijderen",
"Unable to verify email address.": "Niet mogelijk om het e-mailadres te verifiëren.",
@@ -562,8 +559,8 @@
"Device name": "Apparaat naam",
"Device Name": "Apparaat Naam",
"Device key": "Apparaat sleutel",
- "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Als het overeenkomt, druk op de verifiëren knop hieronder. Als het niet overeenkomt, dan is er iemand anders die dit apparaat onderschept en dan zal je waarschijnlijk in plaats daarvan op de 'buitensluiten' knop willen drukken.",
- "Blacklist": "Buitensluiten",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Als het overeenkomt, druk op de verifiëren knop hieronder. Als het niet overeenkomt, dan is er iemand anders die dit apparaat onderschept en dan zal je waarschijnlijk in plaats daarvan op de 'blokkeren' knop willen drukken.",
+ "Blacklist": "Blokkeren",
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Je bent momenteel geverifieerde apparaten aan het buitensluiten; om berichten naar deze apparaten te versturen moet je ze verifiëren.",
"Unblacklist": "Niet buitensluiten",
"In future this verification process will be more sophisticated.": "In de toekomst zal dit verificatie proces meer geraffineerd zijn.",
@@ -581,7 +578,7 @@
"Add User": "Gebruiker Toevoegen",
"This Home Server would like to make sure you are not a robot": "Deze thuisserver wil er zeker van zijn dat je geen robot bent",
"Sign in with CAS": "Inloggen met CAS",
- "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Je kan de aangepaste server opties gebruiken om bij andere Matrix-servers in te loggen door een andere thuisserver-URL te specificeren.",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Je kan de alternatieve-serverinstellingen gebruiken om bij andere Matrix-servers in te loggen door een andere thuisserver-URL te specificeren.",
"This allows you to use this app with an existing Matrix account on a different home server.": "Dit maakt het mogelijk om deze applicatie te gebruiken met een bestaand Matrix-account op een andere thuisserver.",
"You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Je kan ook een aangepaste identiteitsserver instellen maar dit zal waarschijnlijk interactie met gebruikers gebaseerd op een e-mailadres voorkomen.",
"Please check your email to continue registration.": "Bekijk je e-mail om door te gaan met de registratie.",
@@ -590,7 +587,7 @@
"If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Als je geen e-mailadres specificeert zal je niet je wachtwoord kunnen resetten. Weet je het zeker?",
"You are registering with %(SelectedTeamName)s": "Je registreert je met %(SelectedTeamName)s",
"Default server": "Standaardserver",
- "Custom server": "Aangepaste server",
+ "Custom server": "Alternatieve server",
"Home server URL": "Thuisserver-URL",
"Identity server URL": "Identiteitsserver-URL",
"What does this mean?": "Wat betekent dit?",
@@ -603,7 +600,7 @@
"URL Previews": "URL-Voorvertoningen",
"Drop file here to upload": "Bestand hier laten vallen om te uploaden",
" (unsupported)": " (niet ondersteund)",
- "Ongoing conference call%(supportedText)s.": "Lopend vergaderingsgesprek %(supportedText)s.",
+ "Ongoing conference call%(supportedText)s.": "Lopend groepsgesprek%(supportedText)s.",
"Online": "Online",
"Idle": "Afwezig",
"Offline": "Offline",
@@ -674,17 +671,17 @@
"Copied!": "Gekopieerd!",
"Failed to copy": "Kopiëren mislukt",
"Unpin Message": "Maak pin los",
- "Add rooms to this community": "Voeg kamers toe aan deze community",
+ "Add rooms to this community": "Voeg ruimtes toe aan deze gemeenschap",
"Call Failed": "Oproep mislukt",
"Call": "Bel",
"Answer": "Antwoord",
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Opgepast: elke persoon die je toevoegt aan een community zal publiek zichtbaar zijn voor iedereen die het community ID kent",
"Invite new community members": "Nodig nieuwe community leden uit",
"Name or matrix ID": "Naam of Matrix ID",
- "Which rooms would you like to add to this community?": "Welke kamers wil je toevoegen aan deze community?",
+ "Which rooms would you like to add to this community?": "Welke ruimtes wil je toevoegen aan deze community?",
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Een widget verwijderen doet dat voor alle gebruikers in deze ruimte. Ben je zeker dat je het widget wil verwijderen?",
"Delete Widget": "Widget verwijderen",
- "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Er zijn onbekende toestellen in deze kamer: als je verder gaat zonder ze te verifieren zal het mogelijk zijn dat iemand je oproep afluistert.",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Er zijn onbekende toestellen in deze ruimte: als je verder gaat zonder ze te verifiëren zal het mogelijk zijn dat iemand je oproep afluistert.",
"Review Devices": "Toestellen nakijken",
"Call Anyway": "Bel toch",
"Answer Anyway": "Antwoord toch",
@@ -708,8 +705,6 @@
"%(names)s and %(count)s others are typing|one": "%(names)s en iemand anders is aan het typen",
"Send": "Verstuur",
"Message Pinning": "Boodschap vastpinnen",
- "Message Replies": "Antwoorden op bericht",
- "Tag Panel": "Label Paneel",
"Disable Emoji suggestions while typing": "Emoji suggesties tijdens het typen uitzetten",
"Hide avatar changes": "Avatar veranderingen verbergen",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
@@ -759,7 +754,7 @@
"World readable": "Leesbaar voor iedereen",
"Guests can join": "Gasten kunnen toetreden",
"Remove avatar": "Avatar verwijderen",
- "To change the room's avatar, you must be a": "Om de avatar van de ruimte te verwijderen, moet het volgende zijn:",
+ "To change the room's avatar, you must be a": "Om de avatar van de ruimte te verwijderen, moet je het volgende zijn:",
"Drop here to favourite": "Hier laten vallen om aan favorieten toe te voegen",
"Drop here to tag direct chat": "Hier laten vallen om als privégesprek te markeren",
"Drop here to restore": "Hier laten vallen om te herstellen",
@@ -882,7 +877,7 @@
"Try using one of the following valid address types: %(validTypesList)s.": "Probeer één van de volgende geldige adrestypes: %(validTypesList)s.",
"You have entered an invalid address.": "Je hebt een ongeldig adres ingevoerd.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Een gemeenschaps-ID mag alleen de karakters a-z, 0-9, of '=_-./' bevatten.",
- "Community IDs cannot not be empty.": "Een gemeenschaps-ID kan niet leeg zijn.",
+ "Community IDs cannot be empty.": "Een gemeenschaps-ID kan niet leeg zijn.",
"Something went wrong whilst creating your community": "Er is iets fout gegaan tijdens het aanmaken van je gemeenschap",
"Create Community": "Gemeenschap Aanmaken",
"Community Name": "Gemeenschapsnaam",
@@ -923,13 +918,11 @@
"This Home server does not support communities": "Deze Thuisserver ondersteunt geen gemeenschappen",
"Failed to load %(groupId)s": "Het is niet gelukt om %(groupId)s te laden",
"Old cryptography data detected": "Oude cryptografie gegevens gedetecteerd",
- "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Er zijn gegevens van een oudere versie van Riot gedetecteerd. Dit zal eind-tot-eind versleuteling laten storen in de oudere versie. Eind-tot-eind berichten dat recent zijn uitgewisseld zal misschien niet ontsleutelbaar zijn in deze versie. Dit zou er misschien ook voor kunnen zorgen dat berichten die zijn uitgewisseld in deze versie falen. Indien je problemen ervaart, log opnieuw in. Om de berichtgeschiedenis te behouden, exporteer de sleutels en importeer ze achteraf weer.",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Er zijn gegevens van een oudere versie van Riot gedetecteerd. Dit verstoorde end-to-endbeveiliging in de oude versie. End-to-endbeveiligde berichten die recent uitgewisseld zijn met de oude versie zijn wellicht niet te ontsleutelen in deze versie. Dit zou er ook voor kunnen zorgen dat berichten die zijn uitgewisseld in deze versie falen. Log opnieuw in als je problemen ervaart. Exporteer de sleutels en importeer ze achteraf weer om de berichtgeschiedenis te behouden.",
"Your Communities": "Jouw Gemeenschappen",
"Error whilst fetching joined communities": "Er is een fout opgetreden tijdens het ophalen van de gemeenschappen waar je lid van bent",
"Create a new community": "Maak een nieuwe gemeenschap aan",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Maak een gemeenschap aan om gebruikers en ruimtes samen te groeperen! Bouw een aangepaste homepagina om je eigen plek in het Matrix universum te maken.",
- "Join an existing community": "Treed tot een bestaande gemeenschap toe",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Je moet het gemeenschaps-ID weten om tot de gemeenschap toe te treden; dit zal er uitzien zoals +voorbeeld:matrix.org .",
"Show devices , send anyway or cancel .": "Toon apparaten , Toch versturen of annuleren .",
"%(count)s of your messages have not been sent.|one": "Je bericht was niet verstuurd.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Nu alles opnieuw versturen of annuleren . Je kan ook individuele berichten selecteren om opnieuw te versturen of te annuleren.",
@@ -1014,7 +1007,7 @@
"Expand panel": "Paneel uitklappen",
"On": "Aan",
"%(count)s Members|other": "%(count)s Deelnemers",
- "Filter room names": "Filter kamernamen",
+ "Filter room names": "Filter ruimtenamen",
"Changelog": "Logboek van wijzigingen",
"Waiting for response from server": "Wachten op antwoord van de server",
"Send Custom Event": "Verzend aangepast evenement",
@@ -1026,7 +1019,7 @@
"Hide panel": "Paneel verbergen",
"You cannot delete this image. (%(code)s)": "Je kunt deze afbeelding niet verwijderen. (%(code)s)",
"Cancel Sending": "Versturen annuleren",
- "This Room": "Deze kamer",
+ "This Room": "Deze Ruimte",
"The Home Server may be too old to support third party networks": "De thuisserver is misschien te oud om netwerken van derde partijen te ondersteunen",
"Resend": "Opnieuw verzenden",
"Error saving email notification preferences": "Fout bij het opslaan van de meldingsvoorkeuren voor e-mail",
@@ -1035,7 +1028,7 @@
"Unavailable": "Niet beschikbaar",
"View Decrypted Source": "Bekijk ontsleutelde bron",
"Failed to update keywords": "Trefwoorden bijwerken mislukt",
- "remove %(name)s from the directory.": "verwijder %(name)s uit de kamerlijst.",
+ "remove %(name)s from the directory.": "verwijder %(name)s uit de ruimtelijst.",
"Notifications on the following keywords follow rules which can’t be displayed here:": "Meldingen op de volgende trefwoorden volgen regels die hier niet kunnen worden getoond:",
"Safari and Opera work too.": "Safari en Opera werken ook.",
"Please set a password!": "Stel een wachtwoord in!",
@@ -1050,31 +1043,31 @@
"Noisy": "Luidruchtig",
"Failed to get protocol list from Home Server": "Protocollijst ophalen van de homeserver mislukt",
"Collecting app version information": "App-versieinformatie verzamelen",
- "Delete the room alias %(alias)s and remove %(name)s from the directory?": "De alias %(alias)s verwijderen en %(name)s uit de kamerlijst verwijderen?",
+ "Delete the room alias %(alias)s and remove %(name)s from the directory?": "De alias %(alias)s verwijderen en %(name)s uit de ruimtelijst verwijderen?",
"This will allow you to return to your account after signing out, and sign in on other devices.": "Hiermee kunt u naar uw account terugkeren nadat u zich heeft afgemeld, en u aanmelden op andere apparaten.",
"Keywords": "Trefwoorden",
"Enable notifications for this account": "Meldingen voor dit account aanzetten",
- "Directory": "Kamerlijst",
+ "Directory": "Ruimtelijst",
"Invite to this community": "Nodig uit in deze community",
- "Search for a room": "Een kamer opzoeken",
+ "Search for a room": "Een ruimte opzoeken",
"Messages containing keywords ": "Berichten die trefwoorden bevatten",
- "Room not found": "De kamer is niet gevonden",
+ "Room not found": "De ruimte is niet gevonden",
"Tuesday": "Dinsdag",
"Enter keywords separated by a comma:": "Voeg trefwoorden toe, gescheiden door een komma:",
"Search…": "Zoeken…",
"You have successfully set a password and an email address!": "Het instellen van een wachtwoord en e-mailadres is geslaagd!",
- "Remove %(name)s from the directory?": "%(name)s uit de kamerlijst verwijderen?",
+ "Remove %(name)s from the directory?": "%(name)s uit de ruimtelijst verwijderen?",
"Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot gebrukt veel geavanceerde browserfuncties, waarvan enkele niet (of experimenteel) in uw webbrowser beschikbaar zijn.",
"Developer Tools": "Ontwikkelaarsgereedschap",
"Enable desktop notifications": "Desktopmeldingen aanzetten",
"Explore Account Data": "Bekijk account informatie",
- "Remove from Directory": "Uit de kamerlijst verwijderen",
+ "Remove from Directory": "Uit de ruimtelijst verwijderen",
"Saturday": "Zaterdag",
"Remember, you can always set an email address in user settings if you change your mind.": "Onthoud dat u altijd een e-mailadres in kan stellen in de gebruikersinstellingen als u zich bedenkt.",
"Direct Chat": "Privégesprek",
"The server may be unavailable or overloaded": "De server is misschien niet beschikbaar of overbelast",
"Reject": "Afwijzen",
- "Failed to set Direct Message status of room": "Het is mislukt om de directe-berichtenstatus van de kamer in te stellen",
+ "Failed to set Direct Message status of room": "Het is niet gelukt om de privéchat status van de ruimte in te stellen",
"Monday": "Maandag",
"All messages (noisy)": "Alle berichten (luid)",
"Enable them now": "Deze nu aanzetten",
@@ -1084,9 +1077,9 @@
"more": "meer",
"You must specify an event type!": "Je moet een event-type specificeren!",
"(HTTP status %(httpStatus)s)": "(HTTP-status %(httpStatus)s)",
- "Invite to this room": "Uitnodigen voor deze kamer",
+ "Invite to this room": "Uitnodigen voor deze ruimte",
"Please install Chrome or Firefox for the best experience.": "Installeer alstublieft Chrome of Firefox voor de beste gebruikerservaring.",
- "Failed to get public room list": "Lijst met publieke kamers ophalen mislukt",
+ "Failed to get public room list": "Lijst met publieke ruimtes ophalen mislukt",
"Send logs": "Logboeken versturen",
"All messages": "Alle berichten",
"Call invitation": "Oproep-uitnodiging",
@@ -1095,12 +1088,12 @@
"Failed to send custom event.": "Aangepast Event verzenden mislukt.",
"What's new?": "Wat is er nieuw?",
"Notify me for anything else": "Stuur een melding voor al het andere",
- "When I'm invited to a room": "Wanneer ik uitgenodigd word voor een kamer",
+ "When I'm invited to a room": "Wanneer ik uitgenodigd word voor een ruimte",
"Can't update user notification settings": "Het is niet gelukt om de meldingsinstellingen van de gebruiker bij te werken",
- "Notify for all other messages/rooms": "Stuur een melding voor alle andere berichten/kamers",
- "Unable to look up room ID from server": "Het is mislukt om de kamer-ID op te halen van de server",
- "Couldn't find a matching Matrix room": "Het is niet gelukt om een bijbehorende Matrix-kamer te vinden",
- "All Rooms": "Alle kamers",
+ "Notify for all other messages/rooms": "Stuur een melding voor alle andere berichten/ruimtes",
+ "Unable to look up room ID from server": "Het is mislukt om het ruimte-ID op te halen van de server",
+ "Couldn't find a matching Matrix room": "Het is niet gelukt om een bijbehorende Matrix-ruimte te vinden",
+ "All Rooms": "Alle Ruimtes",
"You cannot delete this message. (%(code)s)": "Je kunt dit bericht niet verwijderen. (%(code)s)",
"Thursday": "Donderdag",
"Forward Message": "Bericht doorsturen",
@@ -1120,9 +1113,8 @@
"Unable to fetch notification target list": "Het is mislukt om de lijst van notificatiedoelen op te halen",
"Set Password": "Wachtwoord instellen",
"Enable audible notifications in web client": "Geluidsmeldingen in de webclient aanzetten",
- "Permalink": "Permanente link",
"Off": "Uit",
- "Riot does not know how to join a room on this network": "Riot weet niet hoe het moet deelnemen in een kamer op dit netwerk",
+ "Riot does not know how to join a room on this network": "Riot weet niet hoe het moet deelnemen in een ruimte op dit netwerk",
"Mentions only": "Alleen vermeldingen",
"Wednesday": "Woensdag",
"You can now return to your account after signing out, and sign in on other devices.": "U kunt nu terugkeren naar uw account nadat u bent afgemeld, en u aanmelden op andere apparaten.",
@@ -1146,5 +1138,93 @@
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Debug logs bevatten applicatie-gebruik data inclusief je gebruikersnaam, de ID's of namen van de ruimtes en groepen die je hebt bezocht en de gebruikersnamen van andere gebruikers. Ze bevatten geen berichten.",
"Failed to send logs: ": "Het is niet gelukt om de logs te versturen: ",
"Notes:": "Constateringen:",
- "Preparing to send logs": "Voorbereiden om logs te versturen"
+ "Preparing to send logs": "Voorbereiden om logs te versturen",
+ "e.g. %(exampleValue)s": "bijv. %(exampleValue)s",
+ "Every page you use in the app": "Elke pagina die je in de applicatie gebruikt",
+ "e.g. ": "bijv. ",
+ "Your User Agent": "Je gebruikersagent",
+ "Your device resolution": "De resolutie van je apparaat",
+ "Reload widget": "Widget herladen",
+ "Missing roomId.": "roomId mist.",
+ "Always show encryption icons": "Altijd versleutelingsiconen weergeven",
+ "Send analytics data": "Statistische gegevens (analytics) versturen",
+ "Enable widget screenshots on supported widgets": "Widget schermafbeeldingen op ondersteunde widgets aanzetten",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "Op dit moment is het niet mogelijk om te reageren met een bestand het zal dus als een normaal bericht worden verstuurd.",
+ "Unable to reply": "Niet mogelijk om te reageren",
+ "At this time it is not possible to reply with an emote.": "Op dit moment is het niet mogelijk om met een emote te reageren.",
+ "To notify everyone in the room, you must be a": "Om iedereen in de ruimte te notificeren moet je het volgende zijn:",
+ "Muted Users": "Gedempte Gebruikers",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Help Riot.im te verbeteren door het versturen van anonieme gebruiksgegevens . Dit zal een cookie gebruiken (zie ons Cookiebeleid ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Help Riot.im te verbeteren door het versturen van anonieme gebruiksgegevens . Dit zal een cookie gebruiken.",
+ "Yes, I want to help!": "Ja, ik wil helpen!",
+ "Warning: This widget might use cookies.": "Waarschuwing: deze widget gebruikt misschien cookies.",
+ "Popout widget": "Widget in nieuw venster openen",
+ "Picture": "Afbeelding",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Niet mogelijk om de gebeurtenis te laden waar op gereageerd was. Het kan zijn dat het niet bestaat of dat je niet toestemming hebt om het te bekijken.",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Riot fouten worden bijgehouden op GitHub: maak een GitHub melding .",
+ "Failed to indicate account erasure": "Niet gelukt om de accountverwijdering aan te geven",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Dit zal je account voorgoed onbruikbaar maken. Je zal niet meer in kunnen loggen en niemand anders zal met dezelfde gebruikers ID kunnen registreren. Dit zal er voor zorgen dat je account alle ruimtes verlaat waar het momenteel onderdeel van is en het verwijderd de accountgegevens van de identiteitsserver. Deze actie is onomkeerbaar. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Het deactiveren van je account zal er niet standaard voor zorgen dat de berichten die je verzonden hebt vergeten worden. Als je wilt dat wij de berichten vergeten, klik alsjeblieft op het vakje hieronder.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "De zichtbaarheid van berichten in Matrix is hetzelfde als in e-mail. Het vergeten van je berichten betekent dat berichten die je hebt verstuurd niet meer gedeeld worden met nieuwe of ongeregistreerde gebruikers, maar geregistreerde gebruikers die al toegang hebben tot deze berichten zullen alsnog toegang hebben tot hun eigen kopie van het bericht.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Vergeet alle berichten die ik heb verstuurd wanneer mijn account gedeactiveerd is (Waarschuwing: dit zal er voor zorgen dat toekomstige gebruikers een incompleet beeld krijgen van gesprekken)",
+ "To continue, please enter your password:": "Om verder te gaan, vul alsjeblieft je wachtwoord in:",
+ "password": "wachtwoord",
+ "Log out and remove encryption keys?": "Uitloggen en versleutelingssleutels verwijderen?",
+ "Clear Storage and Sign Out": "Leeg Opslag en Log Uit",
+ "Send Logs": "Logboek Versturen",
+ "Refresh": "Herladen",
+ "We encountered an error trying to restore your previous session.": "Er is een fout opgetreden tijdens het herstellen van je vorige sessie.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Het opschonen van je browser's opslag zal het probleem misschien oplossen, maar zal je uitloggen en ervoor zorgen dat alle versleutelde chat geschiedenis onleesbaar wordt.",
+ "Collapse Reply Thread": "Reactieketting Inklappen",
+ "Can't leave Server Notices room": "Kan de Server Meldingen ruimte niet verlaten",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Deze ruimte wordt gebruikt voor belangrijke berichten van de thuisserver, dus je kan het niet verlaten.",
+ "Terms and Conditions": "Voorwaarden",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Om de %(homeserverDomain)s thuisserver te blijven gebruiken zal je de voorwaarden moeten lezen en ermee akkoord moeten gaan.",
+ "Review terms and conditions": "Voorwaarden lezen",
+ "A conference call could not be started because the intgrations server is not available": "Een groepsgesprek kon niet worden gestart omdat de integratieserver niet beschikbaar is",
+ "Call in Progress": "Lopend gesprek",
+ "A call is currently being placed!": "Een gesprek wordt gestart!",
+ "A call is already in progress!": "Er loopt al een gesprek!",
+ "Permission Required": "Toestemming benodigd",
+ "You do not have permission to start a conference call in this room": "Je hebt niet de toestemming om in deze ruimte een groepsgesprek te starten",
+ "Show empty room list headings": "Lege koppen in ruimtelijst weergeven",
+ "This event could not be displayed": "Deze gebeurtenis kon niet worden weergegeven",
+ "Encrypting": "Versleutelen",
+ "Encrypted, not sent": "Versleuteld, niet verstuurd",
+ "Demote yourself?": "Jezelf degraderen?",
+ "Demote": "Degraderen",
+ "Share Link to User": "Link met gebruiker delen",
+ "deleted": "verwijderd",
+ "underlined": "onderstreept",
+ "inline-code": "code in de regel",
+ "block-quote": "citaat",
+ "bulleted-list": "lijst met opsommingstekens",
+ "numbered-list": "genummerde lijst",
+ "Share room": "Ruimte delen",
+ "System Alerts": "Systeemmeldingen",
+ "You have no historical rooms": "Je hebt geen historische ruimtes",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "In versleutelde ruimtes, zoals deze, zijn URL-voorvertoningen standaard uitgeschakeld om ervoor te zorgen dat jouw thuisserver (waar de voorvertoningen worden gemaakt) geen informatie kan verzamelen over de links die je in deze ruimte ziet.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Als iemand een URL in zijn of haar bericht zet, kan er een URL-voorvertoning weergegeven worden om meer informatie over de link te geven, zoals de titel, omschrijving en een afbeelding van de website.",
+ "The email field must not be blank.": "Het e-mailveld mag niet leeg zijn.",
+ "The user name field must not be blank.": "Het gebruikersnaamveld mag niet leeg zijn.",
+ "The phone number field must not be blank.": "Het telefoonnummerveld mag niet leeg zijn.",
+ "The password field must not be blank.": "Het wachtwoordveld mag niet leeg zijn.",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Deze thuisserver heeft zijn maandelijkse gebruikerslimiet bereikt. Neem contact op met de beheerder van je thuisserver om de dienst weer te kunnen gebruiken.",
+ "Failed to remove widget": "Widget kon niet worden verwijderd",
+ "An error ocurred whilst trying to remove the widget from the room": "Er is een fout opgetreden tijdens het verwijderen van de widget uit deze ruimte",
+ "Share Room": "Ruimte delen",
+ "Link to most recent message": "Link naar meest recente bericht",
+ "Share User": "Gebruiker delen",
+ "Share Community": "Gemeenschap delen",
+ "Share Room Message": "Bericht uit ruimte delen",
+ "Link to selected message": "Link naar geselecteerde bericht",
+ "COPY": "KOPIËREN",
+ "Share Message": "Bericht delen",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Je kunt geen berichten sturen totdat je onze algemene voorwaarden hebt gelezen en geaccepteerd.",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Je bericht is niet verstuurd omdat deze thuisserver zijn maandelijkse gebruikerslimiet heeft bereikt. Neem contact op met de beheerder van je thuisserver om de dienst te kunnen blijven gebruiken.",
+ "No Audio Outputs detected": "Geen geluidsuitgangen gedetecteerd",
+ "Audio Output": "Geluidsuitgang",
+ "This homeserver has hit its Monthly Active User limit": "Deze thuisserver heeft zijn maandelijkse gebruikerslimiet bereikt",
+ "Please contact your service administrator to continue using this service.": "Neem contact op met de beheerder van je thuisserver om de dienst te kunnen blijven gebruiken.",
+ "Try the app first": "De app eerst proberen"
}
diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json
new file mode 100644
index 0000000000..f8384a0455
--- /dev/null
+++ b/src/i18n/strings/nn.json
@@ -0,0 +1,1223 @@
+{
+ "This phone number is already in use": "Dette telefonnummeret er allereie i bruk",
+ "The version of Riot.im": "Utgåva av Riot.im",
+ "Whether or not you're logged in (we don't record your user name)": "Om du er logga inn eller ikkje (vi sparer ikkje på brukarnamnet ditt)",
+ "Your homeserver's URL": "Heimtenaren din si nettadresse",
+ "Your device resolution": "Eininga di sin oppløysing",
+ "The information being sent to us to help make Riot.im better includes:": "Informasjonen som vert send til oss for å gjera Riot.im betre er mellom anna:",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Der denne sida inneheld gjenkjenneleg informasjon, slik som ein rom-, brukar- eller gruppeID, vert denne informasjonen sletta før han sendast til tenar.",
+ "Call Failed": "Oppringjing Mislukkast",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Det finst ukjende einingar i dette rommet: viss du gjeng frama utan å godkjenna dei, kan nokon mogelegvis tjuvlytta på samtala.",
+ "Review Devices": "Sjå Over Einingar",
+ "Call Anyway": "Ring Same Kva",
+ "Answer Anyway": "Svar Same Kva",
+ "Call": "Ring",
+ "Answer": "Svar",
+ "You are already in a call.": "Du er allereie i ei samtale.",
+ "VoIP is unsupported": "VoIP er ikkje støtta",
+ "You cannot place VoIP calls in this browser.": "Du kan ikkje samtala med VoIP i denne nettlesaren.",
+ "You cannot place a call with yourself.": "Du kan ikkje samtala med deg sjølv.",
+ "Could not connect to the integration server": "Kunne ikkje kopla til integreringstenaren",
+ "A conference call could not be started because the intgrations server is not available": "Ei gruppesamtale lét seg ikkje få i gang fordi integreringstenaren ikkje er tilgjengeleg",
+ "Call in Progress": "Ei Samtale er i Gang",
+ "A call is currently being placed!": "Ei samtale held allereie på å starta!",
+ "A call is already in progress!": "Ei samtale er i gang allereie!",
+ "Permission Required": "Tillating er Naudsynt",
+ "You do not have permission to start a conference call in this room": "Du har ikkje tillating til å starta ei gruppesamtale i dette rommet",
+ "The file '%(fileName)s' failed to upload": "Fila '%(fileName)s' vart ikkje lasta opp",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "Fila '%(fileName)s' gjeng denne heimtenaren si storleiksgrense for opplastningar",
+ "Upload Failed": "Opplasting Mislukkast",
+ "Sun": "sø",
+ "Mon": "må",
+ "Tue": "ty",
+ "Wed": "on",
+ "Thu": "to",
+ "Fri": "fr",
+ "Sat": "la",
+ "Jan": "jan",
+ "Feb": "feb",
+ "Mar": "mar",
+ "Apr": "apr",
+ "May": "mai",
+ "Jun": "jun",
+ "Jul": "jul",
+ "Aug": "aug",
+ "Sep": "sep",
+ "Oct": "okt",
+ "Nov": "nov",
+ "Dec": "des",
+ "PM": "PM",
+ "AM": "AM",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
+ "Who would you like to add to this community?": "Kven vil du leggja til i dette samfunnet?",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Åtvaring: alle du legg til i eit samfunn vert offentleg synleg til alle som kan samfunns-IDen",
+ "Invite new community members": "Byd nye samfunnsmedlemer inn",
+ "Name or matrix ID": "Namn eller matrix-ID",
+ "Invite to Community": "Byd inn til Samfunn",
+ "Which rooms would you like to add to this community?": "Kva rom vil du leggja til i dette samfunnet?",
+ "Show these rooms to non-members on the community page and room list?": "Vis desse romma til ikkje-medlemer på samfunnssida og romlista?",
+ "Add rooms to the community": "Legg til rom i samfunnet",
+ "Room name or alias": "Romnamn eller alias",
+ "Add to community": "Legg til i samfunn",
+ "Failed to invite the following users to %(groupId)s:": "Følgjande brukarar lét seg ikkje byda inn i %(groupId)s:",
+ "Failed to invite users to community": "Fekk ikkje til å byda brukarar inn til samfunnet",
+ "Failed to invite users to %(groupId)s": "Fekk ikkje til å byda brukarar inn til %(groupId)s",
+ "Failed to add the following rooms to %(groupId)s:": "Følgjande rom lét seg ikkje leggja til i %(groupId)s:",
+ "Riot does not have permission to send you notifications - please check your browser settings": "Riot har ikkje tillating til å senda deg varsel - ver venleg og sjekk nettlesarinnstillingane dine",
+ "Riot was not given permission to send notifications - please try again": "Riot fekk ikkje tillating til å senda varsel - ver venleg og prøv igjen",
+ "Unable to enable Notifications": "Klarte ikkje å skru på Varsel",
+ "This email address was not found": "Denne emailadressa var ikkje funne",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Emailadressa di ser ikkje ut til å vera tilknytta ein Matrix-ID på denne heimtenaren.",
+ "Default": "Utgangspunktinnstilling",
+ "Restricted": "Avgrensa",
+ "Moderator": "Moderator",
+ "Admin": "Administrator",
+ "Start a chat": "Start ei samtale",
+ "Who would you like to communicate with?": "Kven vil du koma i kontakt med?",
+ "Email, name or matrix ID": "Email, namn eller Matrix-ID",
+ "Start Chat": "Start ei Samtale",
+ "Invite new room members": "Byd nye rommedlemer inn",
+ "Who would you like to add to this room?": "Kven vil du leggja til i rommet?",
+ "Send Invites": "Send Innbydingar",
+ "Failed to invite user": "Fekk ikkje til å byda brukar inn",
+ "Operation failed": "Handling mislukkast",
+ "Failed to invite": "Fekk ikkje til å byda inn",
+ "Failed to invite the following users to the %(roomName)s room:": "Dei følgjande brukarane lét seg ikkje byda inn til %(roomName)s:",
+ "You need to be logged in.": "Du må vera logga inn.",
+ "You need to be able to invite users to do that.": "Du må kunna byda brukarar inn for å gjera det.",
+ "Unable to create widget.": "Klarte ikkje å laga widget.",
+ "Missing roomId.": "Manglande roomId.",
+ "Failed to send request.": "Fekk ikkje til å senda førespurnad.",
+ "This room is not recognised.": "Rommet er ikkje attkjend.",
+ "Power level must be positive integer.": "Makthøgda må vera eit positivt heiltal.",
+ "You are not in this room.": "Du er ikkje i dette rommet.",
+ "You do not have permission to do that in this room.": "Du har ikkje lov til å gjera det i dette rommet.",
+ "Missing room_id in request": "Manglande room_Id i førespurnad",
+ "Room %(roomId)s not visible": "Rommet %(roomId)s er ikkje synleg",
+ "Missing user_id in request": "Manglande user_id i førespurnad",
+ "Usage": "Bruk",
+ "Searches DuckDuckGo for results": "Røkjer DuckDuckGo etter resultat",
+ "Your language of choice": "Ditt valde mål",
+ "e.g. %(exampleValue)s": "t.d. %(exampleValue)s",
+ "/ddg is not a command": "/ddg er ikkje eit påbod",
+ "Changes your display nickname": "Endrar kallenamnet ditt",
+ "Changes colour scheme of current room": "Endrar fargevala i ditt noverande rom",
+ "Sets the room topic": "Set romemnet",
+ "Invites user with given id to current room": "Byd brukarar med den gjevne IDen inn til det noverande rommet",
+ "Joins room with given alias": "Gjeng inn i eit rom med det gjevne aliaset",
+ "Leave room": "Far frå rommet",
+ "Unrecognised room alias:": "Ukjend romalias:",
+ "Kicks user with given id": "Sparkar brukarar med gjeven ID",
+ "Bans user with given id": "Stengjer brukarar med den gjevne IDen ute",
+ "Unbans user with given id": "Slepp utestengde brukarar med den gjevne IDen inn at",
+ "Ignores a user, hiding their messages from you": "Overser ein brukar, slik at meldingane deira ikkje synast for deg",
+ "Ignored user": "Oversedd brukar",
+ "You are now ignoring %(userId)s": "Du overser no %(userId)s",
+ "Stops ignoring a user, showing their messages going forward": "Sluttar å oversjå ein brukar, slik at meldingane deira no kan sjåast",
+ "Unignored user": "Avoversedd brukar",
+ "You are no longer ignoring %(userId)s": "Du overser ikkje %(userId)s no lenger",
+ "Define the power level of a user": "Set ein brukar si makthøgd",
+ "This email address is already in use": "Denne emailadressa er allereie i bruk",
+ "The platform you're on": "Platformen du er på",
+ "Failed to verify email address: make sure you clicked the link in the email": "Fekk ikkje til å godkjenna emailadressa: sjå til at du klikka på den rette lenkja i emailen",
+ "Your identity server's URL": "Din identitetstenar si nettadresse",
+ "Every page you use in the app": "Alle sider du brukar i æppen",
+ "e.g. ": "t.d. ",
+ "Your User Agent": "Din Brukaragent",
+ "Analytics": "Statistikk",
+ "Unable to capture screen": "Kunne ikkje visa skjerm",
+ "Existing Call": "Samtale er i gang",
+ "To use it, just wait for autocomplete results to load and tab through them.": "For å bruka han, vent på at resultata fyller seg ut og tab gjennom dei.",
+ "Deops user with given id": "AvOPar brukarar med den gjevne IDen",
+ "Opens the Developer Tools dialog": "Opnar Utviklarverktøy-tekstboksen",
+ "Verifies a user, device, and pubkey tuple": "Godkjenner ein brukar, eining og offentleg-nykeltuppel",
+ "Unverify": "Fjern godkjenning",
+ "Verify...": "Godkjenn...",
+ "Which officially provided instance you are using, if any": "Kva offisielt gjevne instanse du brukar, viss nokon",
+ "The remote side failed to pick up": "Den andre sida tok ikkje røret",
+ "Unknown (user, device) pair:": "Ukjend (brukar, eining)-par:",
+ "Device already verified!": "Eininga er allereie godkjend!",
+ "WARNING: Device already verified, but keys do NOT MATCH!": "ÅTVARING: Eininga er allereie godkjend, men nyklane SAMSVARER IKKJE!",
+ "Verified key": "Godkjend nykel",
+ "Displays action": "Visar handlingar",
+ "Unrecognised command:": "Ukjend påbod:",
+ "Reason": "Grunnlag",
+ "%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s sa ja til innbydinga frå %(displayName)s.",
+ "%(targetName)s accepted an invitation.": "%(targetName)s sa ja til ei innbyding.",
+ "%(senderName)s requested a VoIP conference.": "%(senderName)s bad om ei VoIP-gruppesamtale.",
+ "%(senderName)s invited %(targetName)s.": "%(senderName)s baud %(targetName)s inn.",
+ "%(senderName)s banned %(targetName)s.": "%(senderName)s stengde %(targetName)s ute.",
+ "%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s endra visingsnamnet sitt til %(displayName)s.",
+ "%(senderName)s set their display name to %(displayName)s.": "%(senderName)s sette visingsnamnet sitt som %(displayName)s.",
+ "%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s fjerna visingsnamnet sitt (%(oldDisplayName)s).",
+ "%(senderName)s removed their profile picture.": "%(senderName)s fjerna profilbiletet sitt.",
+ "%(senderName)s changed their profile picture.": "%(senderName)s endra profilbiletet sitt.",
+ "%(senderName)s set a profile picture.": "%(senderName)s sette seg eit profilbilete.",
+ "VoIP conference started.": "Ei VoIP-gruppesamtale starta.",
+ "%(targetName)s joined the room.": "%(targetName)s kom inn i rommet.",
+ "VoIP conference finished.": "VoIP-gruppesamtale enda.",
+ "%(targetName)s rejected the invitation.": "%(targetName)s sa nei til innbydinga.",
+ "%(targetName)s left the room.": "%(targetName)s gjekk frå rommet.",
+ "%(senderName)s unbanned %(targetName)s.": "%(senderName)s fjerna utestenginga til %(targetName)s.",
+ "%(senderName)s kicked %(targetName)s.": "%(senderName)s sparka %(targetName)s ut.",
+ "%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s tok attende %(targetName)s si innbyding.",
+ "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s gjorde emnet om til \"%(topic)s\".",
+ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s fjerna romnamnet.",
+ "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s gjorde romnamnet om til %(roomName)s.",
+ "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s sende eit bilete.",
+ "Someone": "Nokon",
+ "(not supported by this browser)": "(ikkje støtta av denne nettlesaren)",
+ "%(senderName)s answered the call.": "%(senderName)s tok røret.",
+ "(could not connect media)": "(klarte ikkje å kopla media saman)",
+ "(no answer)": "(inkje svar)",
+ "(unknown failure: %(reason)s)": "(ukjend mislukking: %(reason)s)",
+ "%(senderName)s ended the call.": "%(senderName)s enda samtala.",
+ "%(senderName)s placed a %(callType)s call.": "%(senderName)s starta ei %(callType)s-samtale.",
+ "%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s baud %(targetDisplayName)s inn til rommet.",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gjorde slik at den framtidige romhistoria er tilgjengeleg for alle rommedlemer frå då dei vart innbodne.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s gjorde slik at den framtidige romhistoria er tilgjengeleg for alle rommedlemer frå då dei kom inn.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s gjorde den framtidige romhistoria tilgjengeleg for alle rommedlemer.",
+ "%(senderName)s made future room history visible to anyone.": "%(senderName)s gjorde den framtidige romhistoria tilgjengelg for kven som helst.",
+ "%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s gjorde den framtidige romhistoria tilgjengeleg til ukjende (%(visibility)s).",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s skrudde ende-til-ende-kryptering på (%(algorithm)s-algoritmen).",
+ "%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s frå %(fromPowerLevel)s til %(toPowerLevel)s",
+ "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s endra makthøgda til %(powerLevelDiffText)s.",
+ "%(senderName)s changed the pinned messages for the room.": "%(senderName)s endra dei festa meldingane i rommet.",
+ "%(widgetName)s widget modified by %(senderName)s": "%(widgetName)s-widget endra av %(senderName)s",
+ "%(widgetName)s widget added by %(senderName)s": "%(widgetName)s-widget lagt til av %(senderName)s",
+ "%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s widget fjerna av %(senderName)s",
+ "%(displayName)s is typing": "%(displayName)s skriv",
+ "%(names)s and %(count)s others are typing|other": "%(names)s og %(count)s til skriv",
+ "%(names)s and %(count)s others are typing|one": "%(names)s og ein til skriv",
+ "%(names)s and %(lastPerson)s are typing": "%(names)s og %(lastPerson)s skriv",
+ "Failure to create room": "Klarte ikkje å laga rommet",
+ "Server may be unavailable, overloaded, or you hit a bug.": "tenaren er kanskje utilgjengeleg, overlasta elles so traff du ein bøgg.",
+ "Send anyway": "Send same kva",
+ "Send": "Send",
+ "Unnamed Room": "Rom utan Namn",
+ "Your browser does not support the required cryptography extensions": "Nettlesaren din støttar ikkje dei naudsynte kryptografiske utvidingane",
+ "Not a valid Riot keyfile": "Ikkje ei gyldig Riot-nykelfil",
+ "Authentication check failed: incorrect password?": "Autentifiseringssjekk mislukkast: urett passord?",
+ "Failed to join room": "Fekk ikkje til å gå inn i rom",
+ "Message Pinning": "Meldingsfesting",
+ "Disable Emoji suggestions while typing": "Skru emojiframlegg av mens ein skriv",
+ "Use compact timeline layout": "Bruk smal tidslinjeutforming",
+ "Hide removed messages": "Gøym fjerna meldingar",
+ "Hide join/leave messages (invites/kicks/bans unaffected)": "Gøym vert med/fór ut-meldingar (innbydingar, utspark, utestengingar påverkast ikkje)",
+ "Hide avatar changes": "Gøym avatarendringar",
+ "Hide display name changes": "Gøym visingsnamn-endringar",
+ "Show timestamps in 12 hour format (e.g. 2:30pm)": "Vis tidspunkt i 12-timarsform (t.d. 2:30pm)",
+ "Always show message timestamps": "Vis alltid meldingstidspunkt",
+ "Autoplay GIFs and videos": "Spel av GIFar og videoar med ein gong",
+ "Always show encryption icons": "Vis alltid enkrypteringsikon",
+ "Hide avatars in user and room mentions": "Gøym avatarar i brukar- og romnemningar",
+ "Disable big emoji in chat": "Skru store emojiar i samtaler av",
+ "Don't send typing notifications": "Ikkje send skrivevarsel",
+ "Disable Notifications": "Skru Varsel av",
+ "Enable Notifications": "Skru Varsel på",
+ "Automatically replace plain text Emoji": "Erstatt Emojiar i plaintekst av seg sjølv",
+ "Mirror local video feed": "Spegl den lokale videofeeden",
+ "Disable Community Filter Panel": "Skru Samfunnsfilterpanel av",
+ "Disable Peer-to-Peer for 1:1 calls": "Skru Peer-til-Peer for 1:1-samtaler av",
+ "Send analytics data": "Send statistikkdata",
+ "Never send encrypted messages to unverified devices from this device": "Send aldri enkrypterte meldingar til ugodkjende einingar frå denne eininga",
+ "Never send encrypted messages to unverified devices in this room from this device": "Send aldri enkrypterte meldingar til ugodkjende einingar i dette rommet frå denne eininga",
+ "Enable URL previews for this room (only affects you)": "Skru URL-førehandsvisingar på for dette rommet (påverkar deg åleine)",
+ "Enable URL previews by default for participants in this room": "Skru URL-førehandsvisingar på som utgangspunkt for deltakarar i dette rommet",
+ "Room Colour": "Romfarge",
+ "Enable widget screenshots on supported widgets": "Skru widget-skjermbilete på for støtta widget",
+ "Collecting app version information": "Samlar æppversjoninfo",
+ "Collecting logs": "Samlar loggar",
+ "Uploading report": "Lastar rapport opp",
+ "Waiting for response from server": "Ventar på svar frå tenaren",
+ "Messages containing my display name": "Meldingar som inneheld visingsnamnet mitt",
+ "Messages containing my user name": "Meldingar som inneheld brukarnamnet mitt",
+ "Messages in one-to-one chats": "Meldingar i ein-til-ein-samtaler",
+ "Messages in group chats": "Meldingar i gruppesamtaler",
+ "When I'm invited to a room": "Når eg er bode inn til eit rom",
+ "Call invitation": "Samtaleinnbyding",
+ "Messages sent by bot": "Meldingar sendt frå ein bot",
+ "Active call (%(roomName)s)": "Pågåande samtale (%(roomName)s)",
+ "unknown caller": "ukjend ringar",
+ "Incoming voice call from %(name)s": "%(name)s ynskjer ei røystsamtale",
+ "Incoming video call from %(name)s": "%(name)s ynskjer ei videosamtale",
+ "Incoming call from %(name)s": "%(name)s ynskjer ei samtale",
+ "Decline": "Sei nei",
+ "Accept": "Sei ja",
+ "Error": "Noko gjekk gale",
+ "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "Ei tekstmelding vart send til +%(msisdn)s. Ver venleg og skriv inn godkjenningskoden ho inneheld",
+ "Incorrect verification code": "Urett godkjenningskode",
+ "Enter Code": "Skriv inn Koden",
+ "Submit": "Send inn",
+ "Phone": "Telefon",
+ "Add phone number": "Legg til telefonnummer",
+ "Add": "Legg til",
+ "Failed to upload profile picture!": "Fekk ikkje til å lasta opp profilbilete!",
+ "Upload new:": "Last opp ny:",
+ "No display name": "Inkje visingsnamn",
+ "New passwords don't match": "Dei nye passorda samsvarar ikkje",
+ "Passwords can't be empty": "Passordsfelta kan ikkje vera tomme",
+ "Warning!": "Åtvaring!",
+ "Continue": "Gå fram",
+ "Do you want to set an email address?": "Vil du setja ei emailadresse?",
+ "Current password": "Noverande passord",
+ "Password": "Passord",
+ "New Password": "Nytt Passord",
+ "Confirm password": "Godkjenn passord",
+ "Change Password": "Endra Passord",
+ "Your home server does not support device management.": "Heimtenaren din støttar ikkje einingshandsaming.",
+ "Unable to load device list": "Klarte ikkje å lasta einingslista",
+ "Authentication": "Godkjenning",
+ "Delete %(count)s devices|other": "Slett %(count)s einingar",
+ "Delete %(count)s devices|one": "Slett eining",
+ "Device ID": "EiningsID",
+ "Device Name": "Einingsnamn",
+ "Last seen": "Sist sedd",
+ "Select devices": "Vel einingar",
+ "Failed to set display name": "Fekk ikkje til å setja visingsnamn",
+ "Error saving email notification preferences": "Klarte ikkje å lagra foretrukne emailvarselinnstillingar",
+ "An error occurred whilst saving your email notification preferences.": "Noko gjekk gale med lagringa av dine foretrukne emailvarselinstillingar.",
+ "Keywords": "Nykelord",
+ "Enter keywords separated by a comma:": "Skriv inn nykelord med komma imellom:",
+ "OK": "Greitt",
+ "Failed to change settings": "Klarte ikkje å endra innstillingar",
+ "Can't update user notification settings": "Kan ikkje oppdatera brukarvarselinstillingar",
+ "Failed to update keywords": "Fekk ikkje til å oppdatera nykelord",
+ "Messages containing keywords ": "Meldingar som inneheld nykelord ",
+ "Notify for all other messages/rooms": "Varsl for alle andre meldingar/rom",
+ "Notify me for anything else": "Varsl meg for kva som helst anna",
+ "Enable notifications for this account": "Skru varsel på for denne brukaren",
+ "All notifications are currently disabled for all targets.": "Alle varsel er for augeblunket skrudd av for alle mål.",
+ "Add an email address above to configure email notifications": "Legg til ein emailadresse i feltet over for å endra emailvarselinnstillingar",
+ "Enable email notifications": "Skru emailvarsel på",
+ "Notifications on the following keywords follow rules which can’t be displayed here:": "Varsel på følgjande nykelord følgjer reglar som ikkje kan visast her:",
+ "Unable to fetch notification target list": "Klarte ikkje å henta varselmållista",
+ "Notification targets": "Varselmål",
+ "Advanced notification settings": "Omfattande varselinnstillingar",
+ "There are advanced notifications which are not shown here": "Det er omfattande varsel som ikkje er vist her",
+ "Enable desktop notifications": "Skru skrivebordsvarsel på",
+ "Show message in desktop notification": "Vis meldingen i eit skriverbordsvarsel",
+ "Enable audible notifications in web client": "Skru høyrlege varsel i nettklienten på",
+ "Off": "Av",
+ "On": "På",
+ "Noisy": "Bråket",
+ "Cannot add any more widgets": "Kan ikkje leggja fleire widgets til",
+ "Add a widget": "Legg til ein widget",
+ "Drop File Here": "Slepp Fila Her",
+ "Drop file here to upload": "Slipp ein fil her for å lasta opp",
+ " (unsupported)": " (ustøtta)",
+ "Join as voice or video .": "Gå inn som røyst eller video .",
+ "Ongoing conference call%(supportedText)s.": "Ein gruppesamtale er i gang%(supportedText)s.",
+ "This event could not be displayed": "Denne hendingen kunne ikkje visast",
+ "%(senderName)s sent an image": "%(senderName)s sende eit bilete",
+ "%(senderName)s sent a video": "%(senderName)s sende ein video",
+ "%(senderName)s uploaded a file": "%(senderName)s lasta ei fil opp",
+ "Options": "Innstillingar",
+ "Your key share request has been sent - please check your other devices for key share requests.": "Nykeldelingsforespurnaden din vart send - ver venleg og sjekk dei andre einingane dine for nykeldelingsforespurnadar.",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Viss dei andre einingane dine ikkje har nykelen til denne meldinga kan du ikkje dekryptera ho.",
+ "Key request sent.": "Nykelforespurnad er send.",
+ "Re-request encryption keys from your other devices.": "Spør på nytt om enkrypteringsnyklar frå dei andre einingane dine.",
+ "Undecryptable": "Kan ikkje dekrypterast",
+ "Encrypting": "Enkryptering er i gang",
+ "Encrypted, not sent": "Enkryptert, men ikkje send",
+ "Encrypted by a verified device": "Enkryptert av ei godkjent eining",
+ "Encrypted by an unverified device": "Enkryptert av ei ikkje-godkjent eining",
+ "Unencrypted message": "Ikkje-enkryptert melding",
+ "Please select the destination room for this message": "Ver venleg og vel målrommet for denne meldinga",
+ "Blacklisted": "Svartelista",
+ "Verified": "Godkjend",
+ "Unverified": "Ikkje-godkjend",
+ "device id: ": "einingsID: ",
+ "Disinvite": "Fjern innbyding",
+ "Kick": "Spark ut",
+ "Disinvite this user?": "Fjern innbydinga til denne brukaren?",
+ "Kick this user?": "Spark denne brukaren ut?",
+ "Failed to kick": "Fekk ikkje til å sparka ut",
+ "Unban": "Slepp inn att",
+ "Ban": "Utesteng",
+ "Unban this user?": "Slepp denne brukaren inn att?",
+ "Ban this user?": "Utesteng denne brukaren?",
+ "Failed to ban user": "Fekk ikkje til å utestenga brukar",
+ "Demote yourself?": "Senk høgda di?",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Du kan ikkje gjera om på denne endringa sidan du senkar høgda di. Viss du er den siste opphøgda brukaren i rommet vert det umogeleg å få høgda att.",
+ "Demote": "Senk høgda",
+ "Failed to mute user": "Fekk ikkje til å stilne brukar",
+ "Failed to toggle moderator status": "Fekk ikkje til å veksla moderatorhøgd",
+ "Failed to change power level": "Fekk ikkje til å endra makthøgda",
+ "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kjem ikkje til å kunna gjera om på denne endringa sidan du set brukaren si høgd opp til di eiga.",
+ "Are you sure?": "Er du sikker?",
+ "No devices with registered encryption keys": "Inga einingar med oppskrivne enkrypteringsnykler",
+ "Devices": "Einingar",
+ "Unignore": "Slutt å oversjå",
+ "Ignore": "Oversjå",
+ "Mention": "Nemn",
+ "Invite": "Byd inn",
+ "Enable inline URL previews by default": "Skru URL-førehandsvisingar i tekstfeltet på",
+ "Share Link to User": "Del Lenkje til Brukar",
+ "User Options": "Brukarinnstillingar",
+ "Direct chats": "Direktesamtaler",
+ "Unmute": "Fjern stilning",
+ "Mute": "Stiln",
+ "Revoke Moderator": "Fjern Moderatorrett",
+ "Make Moderator": "Gjer til Moderator",
+ "Admin Tools": "Administratorverktøy",
+ "Level:": "Høgd:",
+ "and %(count)s others...|other": "og %(count)s til...",
+ "and %(count)s others...|one": "og ein til...",
+ "Invited": "Innboden",
+ "%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (makthøgd %(powerLevelNumber)s)",
+ "bold": "feit",
+ "italic": "skeiv",
+ "deleted": "sletta",
+ "underlined": "understreka",
+ "bulleted-list": "punktliste",
+ "numbered-list": "talliste",
+ "Attachment": "Vedlegg",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "Det er førebels ikkje mogeleg å svara med ei fil, so dette vil verta send utan å vera eit svar.",
+ "Upload Files": "Last opp Filer",
+ "Are you sure you want to upload the following files?": "Er du sikker på at du vil lasta opp dei følgjande filene?",
+ "Encrypted room": "Enkryptert rom",
+ "Unencrypted room": "Ikkje-enkrypert rom",
+ "Hangup": "Legg på",
+ "Voice call": "Røystesamtale",
+ "Video call": "Videosamtale",
+ "Upload file": "Last ei fil opp",
+ "Show Text Formatting Toolbar": "Vis Tekstformverktøylinje",
+ "Send an encrypted reply…": "Send eit enkryptert svar…",
+ "Send a reply (unencrypted)…": "Send eit svar (ikkje-enkryptert)…",
+ "Send an encrypted message…": "Send ei enkryptert melding…",
+ "Send a message (unencrypted)…": "Send ei melding (ikkje-enkryptert)…",
+ "You do not have permission to post to this room": "Du har ikkje tillating til å sende meldingar i dette rommet",
+ "Turn Markdown on": "Skru Mardown på",
+ "Turn Markdown off": "Skru Markdown av",
+ "Hide Text Formatting Toolbar": "Gøym Tekstformverktøylinje",
+ "Server error": "Noko gjekk gale med tenaren",
+ "Server unavailable, overloaded, or something else went wrong.": "tenaren var utilgjengeleg, overlasta, elles so gjekk noko anna galt.",
+ "Command error": "Noko gjekk gale med påbodet",
+ "The maximum permitted number of widgets have already been added to this room.": "Det største mogelege talet widgets finst allereie på dette rommet.",
+ "Unable to reply": "Klarte ikkje å svara",
+ "At this time it is not possible to reply with an emote.": "Det er førebels ikkje mogeleg å svara med ein emote.",
+ "Markdown is disabled": "Markdown er skrudd av",
+ "Markdown is enabled": "Markdown er skrudd på",
+ "Unpin Message": "Tak ned festa Melding",
+ "Jump to message": "Hopp til melding",
+ "No pinned messages.": "Inga festa meldingar.",
+ "Loading...": "Lastar...",
+ "Pinned Messages": "Festa Meldingar",
+ "%(duration)ss": "%(duration)ss",
+ "%(duration)sm": "%(duration)sm",
+ "%(duration)sh": "%(duration)st",
+ "%(duration)sd": "%(duration)sd",
+ "Online for %(duration)s": "På nett i %(duration)s",
+ "Idle for %(duration)s": "Fråverande i %(duration)s",
+ "Offline for %(duration)s": "Av nett i %(duration)s",
+ "Unknown for %(duration)s": "Ukjend i %(duration)s",
+ "Online": "På nett",
+ "Idle": "Fråverande",
+ "Offline": "Av nett",
+ "Unknown": "Ukjend",
+ "Seen by %(userName)s at %(dateTime)s": "%(userName)s såg dette %(dateTime)s",
+ "Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "%(displayName)s %(userName)s såg dette %(dateTime)s",
+ "Replying": "Svarar",
+ "No rooms to show": "Inkje rom å visa",
+ "Unnamed room": "Rom utan namn",
+ "Guests can join": "Gjester kan koma inn",
+ "Failed to set avatar.": "Fekk ikkje til å setja avatar.",
+ "Save": "Lagra",
+ "(~%(count)s results)|other": "(~%(count)s resultat)",
+ "(~%(count)s results)|one": "(~%(count)s resultat)",
+ "Join Room": "Far inn i Rom",
+ "Upload avatar": "Last avatar opp",
+ "Remove avatar": "Fjern avatar",
+ "Settings": "Innstillingar",
+ "Forget room": "Gløym rom",
+ "Search": "Søk",
+ "Share room": "Del rom",
+ "Drop here to favourite": "Slepp her for å gjera til yndling",
+ "Drop here to restore": "Slepp her for å gjenoppretta",
+ "Drop here to demote": "Slepp her for å senke i høgd",
+ "Press to start a chat with someone": "Trykk på for å starta ei samtale med nokon",
+ "You're not in any rooms yet! Press to make a room or to browse the directory": "Du er enno ikkje i eit rom! Trykk på for å laga eit rom eller for å sjå gjennom utvalet",
+ "Community Invites": "Samfunnsinnbydingar",
+ "Invites": "Innbydingar",
+ "Favourites": "Yndlingar",
+ "People": "Folk",
+ "Rooms": "Rom",
+ "Low priority": "Lågrett",
+ "System Alerts": "Systemvarsel",
+ "You have no historical rooms": "Du har inkje historiske rom",
+ "Historical": "Historiske",
+ "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Klarte ikkje å forsikra at adressa som denne innbydinga er send til samsvarar med den som er tilknytta brukaren din.",
+ "This invitation was sent to an email address which is not associated with this account:": "Denne invitasjonen er send til ei emailadressa som ikkje er tilknytta denne brukaren:",
+ "You may wish to login with a different account, or add this email to this account.": "Kanskje du ynskjer å logga inn med ein anna brukar, eller leggja til denne emailen til denne brukaren.",
+ "You have been invited to join this room by %(inviterName)s": "Du vart boden inn i dette rommet av %(inviterName)s",
+ "Would you like to accept or decline this invitation?": "Vil du seia ja eller nei til denne innbydinga?",
+ "Reason: %(reasonText)s": "Grunnlag: %(reasonText)s",
+ "Rejoin": "Far inn att",
+ "You have been kicked from %(roomName)s by %(userName)s.": "Du vart sparka ut frå %(roomName)s av %(userName)s.",
+ "You have been kicked from this room by %(userName)s.": "Du vart sparka ut frå dette rommet av %(userName)s.",
+ "You have been banned from %(roomName)s by %(userName)s.": "Du vart stengd ute frå %(roomName)s av %(userName)s.",
+ "You have been banned from this room by %(userName)s.": "Du vart stengd ute frå dette rommet av %(userName)s.",
+ "This room": "Dette rommet",
+ "%(roomName)s does not exist.": "%(roomName)s finst ikkje.",
+ "%(roomName)s is not accessible at this time.": "%(roomName)s er ikkje tilgjengeleg no.",
+ "You are trying to access %(roomName)s.": "Du prøver å gå inn i %(roomName)s.",
+ "You are trying to access a room.": "Du prøver å gå inn i eit rom.",
+ "Click here to join the discussion!": "Klikk her for å verta med i meiningsutvekslinga!",
+ "This is a preview of this room. Room interactions have been disabled": "Dette er ei førehandsvising av dette rommet. Romhandlingar er skrudd av",
+ "To change the room's avatar, you must be a": "For å endra rommet sin avatar må du vera ein",
+ "To change the room's name, you must be a": "For å endra rommet sitt namn må du vera ein",
+ "To change the room's main address, you must be a": "For å endra rommet si hovudadresse må du vera ein",
+ "To change the room's history visibility, you must be a": "For å endra synlegheita på romhistoria må du vera ein",
+ "To change the permissions in the room, you must be a": "For å endra tillatingane i rommet må du vera ein",
+ "To change the topic, you must be a": "For å endra emnet må du vera ein",
+ "To modify widgets in the room, you must be a": "For å endra widgetar i rommet må du vera ein",
+ "Failed to unban": "Fekk ikkje til å lata inn att",
+ "Banned by %(displayName)s": "Stengd ute av %(displayName)s",
+ "Privacy warning": "Personvernsåtvaring",
+ "Changes to who can read history will only apply to future messages in this room": "Endringar i kven som kan lesa historia gjeld berre for framtidige meldingar i dette rommet",
+ "The visibility of existing history will be unchanged": "Synlegheita på den noverande historia vert ikkje endra",
+ "unknown error code": "ukjend errorkode",
+ "Failed to forget room %(errCode)s": "Fekk ikkje til å gløyma rommet %(errCode)s",
+ "End-to-end encryption is in beta and may not be reliable": "Ende-til-ende-enkryptering vert betatesta og er kanskje ikkje påliteleg",
+ "You should not yet trust it to secure data": "Du bør førebels ikkje stole på at ho kan sikra data",
+ "Devices will not yet be able to decrypt history from before they joined the room": "Einingar kan førebels ikkje dekryptera historia frå før dei kom inn i rommet",
+ "Once encryption is enabled for a room it cannot be turned off again (for now)": "Når enkryptering er skrudd på i eit rom kan ho (førebels) ikkje skruast av att",
+ "Encrypted messages will not be visible on clients that do not yet implement encryption": "Enkrypterte meldingar visast ikkje hjå klientar som førebels ikkje implementerar enkryptering",
+ "Enable encryption": "Skru enkryptering på",
+ "(warning: cannot be disabled again!)": "(åtvaring: kan ikkje skruast av att!)",
+ "Encryption is enabled in this room": "Enkryptering er skrudd på i dette rommet",
+ "Encryption is not enabled in this room": "Enkryptering er ikkje skrudd på i dette rommet",
+ "The default role for new room members is": "Rolla nye medlemer har i utgangspunktet er",
+ "To send messages, you must be a": "For å senda meldingar må du vera ein",
+ "To invite users into the room, you must be a": "For å byda brukarar inn til rommet må du vera ein",
+ "To configure the room, you must be a": "For å stille rommet inn må du vera ein",
+ "To kick users, you must be a": "For å sparka brukarar ut må du vera ein",
+ "To ban users, you must be a": "For å stengja brukarar ute må du vera ein",
+ "To remove other users' messages, you must be a": "For å fjerna andre brukarar sine meldingar må du vera ein",
+ "To notify everyone in the room, you must be a": "For å varsla alle i rommet må du vera ein",
+ "No users have specific privileges in this room": "Ingen brukarar har særeigne rettar i dette rommet",
+ "%(user)s is a %(userRole)s": "%(user)s er ein %(userRole)s",
+ "Privileged Users": "Brukarar med Særrett",
+ "Muted Users": "Stilna Brukarar",
+ "Banned users": "Utestengde Brukarar",
+ "Favourite": "Yndling",
+ "Tagged as: ": "Merka som: ",
+ "To link to a room it must have an address .": "For å lenkja til eit rom må det ha ei adresse .",
+ "Guests cannot join this room even if explicitly invited.": "Gjester kan ikkje koma inn i dette rommet sjølv viss dei er tydeleg innbodne.",
+ "Click here to fix": "Klikk her for å retta opp i det",
+ "To send events of type , you must be a": "For å senda hendingar av sorten må du vera ein",
+ "Who can access this room?": "Kven har tilgang til rommet?",
+ "Only people who have been invited": "Berre dei som er bodne inn",
+ "Anyone who knows the room's link, apart from guests": "Nokon som kjenner lenkja til rommet, sett vekk frå gjester",
+ "Anyone who knows the room's link, including guests": "Nokon som kjenner lenkja til rommet, gjester òg",
+ "Publish this room to the public in %(domain)s's room directory?": "Gjer dette rommet offentleg i %(domain)s sitt romutval?",
+ "Who can read history?": "Kven kan lesa historia?",
+ "Anyone": "Kven som helst",
+ "Members only (since the point in time of selecting this option)": "Berre medlemer (frå då denne innstillinga vert skrudd på)",
+ "Members only (since they were invited)": "Berre medlemmer (frå då dei vart bodne inn)",
+ "Members only (since they joined)": "Berre medlemer (frå då dei kom inn)",
+ "Permissions": "Tillatinger",
+ "Advanced": "Omfattande",
+ "This room's internal ID is": "Dette rommets innvendes ID er",
+ "Add a topic": "Legg eit emne til",
+ "Search…": "Søk…",
+ "This Room": "Dette Rommet",
+ "All Rooms": "Alle Rom",
+ "Cancel": "Bryt av",
+ "You don't currently have any stickerpacks enabled": "Du har for tida ikkje skrudd nokre klistremerkepakkar på",
+ "Add a stickerpack": "Legg ei klistremerkepakke til",
+ "Stickerpack": "Klistremerkepakke",
+ "Hide Stickers": "Gøym Klistremerkar",
+ "Show Stickers": "Vis Klistremerkar",
+ "Scroll to unread messages": "Blad til ulesne meldingar",
+ "Jump to first unread message.": "Hopp til den fyrste ulesne meldinga.",
+ "Close": "Lukk",
+ "Invalid alias format": "Ugangbar aliasform",
+ "'%(alias)s' is not a valid format for an alias": "'%(alias)s' er ikkje ei gangbar aliasform",
+ "Invalid address format": "Ugangbar adresseform",
+ "'%(alias)s' is not a valid format for an address": "'%(alias)s' er ikkje ei gangbar adresseform",
+ "not set": "ikkje sett",
+ "Remote addresses for this room:": "Fjernadresser for dette rommet:",
+ "Addresses": "Adresser",
+ "The main address for this room is": "Hovudadressa for dette rommet er",
+ "Local addresses for this room:": "Lokaladresser for dette rommet:",
+ "This room has no local addresses": "Dette rommer har ingen lokaladresser",
+ "New address (e.g. #foo:%(localDomain)s)": "Ny adresse (t.d. #foo:%(localDomain)s)",
+ "Invalid community ID": "Ugangbar samfunnsID",
+ "'%(groupId)s' is not a valid community ID": "'%(groupId)s' er ikkje ein gangbar samfunnsID",
+ "Flair": "Særpreg",
+ "Showing flair for these communities:": "Viser særpreg for desse samfunna:",
+ "This room is not showing flair for any communities": "Dette rommet viser ikkje særpreg for nokre samfunn",
+ "New community ID (e.g. +foo:%(localDomain)s)": "Ny samfunnsID (t.d. +foo:%(localDomain)s)",
+ "You have enabled URL previews by default.": "Du har skrudd URL-førehandsvisingar på i utgangspunktet.",
+ "You have disabled URL previews by default.": "Du har skrudd URL-førehandsvisingar av i utgangspunktet.",
+ "URL previews are enabled by default for participants in this room.": "URL-førehandsvisingar er skrudd på i utgangspunktet for dette rommet.",
+ "URL previews are disabled by default for participants in this room.": "URL-førehandsvisingar er skrudd av i utgangspunktet for dette rommet.",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "I enkrypterte rom, slik som denne, er URL-førehandsvisingar skrudd av i utgangspunktet for å forsikra at heimtenaren din (der førehandsvisinger lagast) ikkje kan samla informasjon om lenkjer som du ser i dette rommet.",
+ "URL Previews": "URL-førehandsvisingar",
+ "Sunday": "søndag",
+ "Monday": "måndag",
+ "Tuesday": "tysdag",
+ "Wednesday": "onsdag",
+ "Thursday": "torsdag",
+ "Friday": "fredag",
+ "Saturday": "laurdag",
+ "Today": "i dag",
+ "Yesterday": "i går",
+ "Error decrypting audio": "Noko gjekk gale med ljoddekrypteringa",
+ "Error decrypting attachment": "Noko gjekk gale med vedleggsdekrypteringa",
+ "Decrypt %(text)s": "Dekrypter %(text)s",
+ "Download %(text)s": "Last %(text)s ned",
+ "Invalid file%(extra)s": "Ugangbar fil%(extra)s",
+ "Error decrypting image": "Noko gjekk gale med biletedekrypteringa",
+ "Error decrypting video": "Noko gjekk gale med videodekrypteringa",
+ "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s endra avataren til %(roomName)s",
+ "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s fjerna romavataren.",
+ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s endra romavataren til ",
+ "Copied!": "Kopiert!",
+ "Failed to copy": "Noko gjekk gale med kopieringa",
+ "Removed or unknown message type": "Fjerna eller ukjend meldingssort",
+ "Message removed by %(userId)s": "Meldinga vart fjerna av %(userId)s",
+ "Message removed": "Meldinga vart fjerna",
+ "Robot check is currently unavailable on desktop - please use a web browser ": "Robotsjekk er førebels ikkje tilgjengeleg på skrivebordet - ver venleg og bruk ein nettlesar ",
+ "This Home Server would like to make sure you are not a robot": "Denne heimtenaren ynskjer å forsikra seg om at du ikkje er ein robot",
+ "Sign in with CAS": "Logg inn med CAS",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Dette tillèt deg å bruka denne æppen med ein Matrixbrukar som allereie finst på ein annan heimtenar.",
+ "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Du kan i tillegg setja ein eigen identitetstenar, men dette hindrar som regel samhandling med brukarar som brukar emailadresse.",
+ "Dismiss": "Avvis",
+ "To continue, please enter your password.": "For å gå fram, ver venleg og skriv passordet ditt inn.",
+ "Password:": "Passord:",
+ "An email has been sent to %(emailAddress)s": "En email vart send til %(emailAddress)s",
+ "Please check your email to continue registration.": "Ver venleg og sjekk emailen din for å gå vidare med påmeldinga.",
+ "A text message has been sent to %(msisdn)s": "Ei tekstmelding vart send til %(msisdn)s",
+ "Please enter the code it contains:": "Ver venleg og skriv koden den inneheld inn:",
+ "Code": "Kode",
+ "Start authentication": "Byrj godkjenning",
+ "powered by Matrix": "Matrixdriven",
+ "The email field must not be blank.": "Emailfeltet kan ikkje vera tomt.",
+ "The user name field must not be blank.": "Brukarnamnfeltet kan ikkje vera tomt.",
+ "The phone number field must not be blank.": "Telefonnummerfeltet kan ikkje vera tomt.",
+ "The password field must not be blank.": "Passordfeltet kan ikkje vera tomt.",
+ "Username on %(hs)s": "Brukarnamn på %(hs)s",
+ "User name": "Brukarnamn",
+ "Mobile phone number": "Mobiltelefonnummer",
+ "Forgot your password?": "Gløymt passordet ditt?",
+ "%(serverName)s Matrix ID": "%(serverName)s Matrix-ID",
+ "Sign in with": "Logg inn med",
+ "Email address": "Emailadresse",
+ "Sign in": "Logg inn",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Viss du ikkje seier kva emailadresse du vil bruka vil du ikkje kunna attendestille passordet ditt. Er du sikker?",
+ "Email address (optional)": "Emailadresse (valfritt)",
+ "You are registering with %(SelectedTeamName)s": "Du melder deg inn med %(SelectedTeamName)s",
+ "Mobile phone number (optional)": "Mobiltelefonnummer (valfritt)",
+ "Register": "Meld deg inn",
+ "Default server": "Utgangspunkttenar",
+ "Home server URL": "Heimtenar-URL",
+ "Identity server URL": "Identitetstenar-URL",
+ "What does this mean?": "Kva tyder dette?",
+ "Remove from community": "Fjern frå samfunnet",
+ "Disinvite this user from community?": "Fjern denne brukaren si innbyding til samfunnet?",
+ "Remove this user from community?": "Fjern denne brukaren frå samfunnet?",
+ "Failed to withdraw invitation": "Fekk ikkje til å taka innbydinga att",
+ "Failed to remove user from community": "Fekk ikkje til å fjerna brukaren frå samfunnet",
+ "Flair will appear if enabled in room settings": "Særpreg dukkar opp viss det er skrudd på i rominnstillingar",
+ "Flair will not appear": "Særpreg dukkar ikkje opp",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Er du sikker på at du vil fjerna '%(roomName)s' frå %(groupId)s?",
+ "Removing a room from the community will also remove it from the community page.": "Å fjerna eit rom frå samfunnet fjernar det frå samfunnssida òg.",
+ "Remove": "Fjern",
+ "Failed to remove room from community": "Fekk ikkje til å fjerna rommet frå samfunnet",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "Fekk ikkje til å fjerna '%(roomName)s' frå %(groupId)s",
+ "Something went wrong!": "Noko gjekk gale!",
+ "The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "Kunne ikkje oppdatera synligheita til '%(roomName)s' i %(groupId)s.",
+ "Visibility in Room List": "Synligheit i Romlista",
+ "Visible to everyone": "Synleg for alle",
+ "Only visible to community members": "Berre synleg for samfunnsmedlemer",
+ "Something went wrong when trying to get your communities.": "Noko gjekk gale med framhentinga av samfunna dine.",
+ "Display your community flair in rooms configured to show it.": "Vis samfunnssærpreget ditt i rom som er stilt inn til å visa det.",
+ "You're not currently a member of any communities.": "Du er for augeblunket ikkje medlem i nokre samfunn.",
+ "Yes, I want to help!": "Ja, eg vil vera til nytte!",
+ "You are not receiving desktop notifications": "Du fær ikkje nokre skrivebordsvarsel",
+ "Enable them now": "Skru dei på no",
+ "What's New": "Kva er nytt",
+ "Update": "Oppdatering",
+ "What's new?": "Kva er nytt?",
+ "A new version of Riot is available.": "Ei ny utgåve av Riot er tilgjengeleg.",
+ "To return to your account in future you need to set a password ": "For å gå tilbake til brukaren din i framtida må du setja eit passord ",
+ "Set Password": "Set Passord",
+ "Error encountered (%(errorDetail)s).": "Noko gjekk gale (%(errorDetail)s).",
+ "Checking for an update...": "Ser etter oppdateringar...",
+ "No update available.": "Inga oppdatering er tilgjengeleg.",
+ "Downloading update...": "Lastar oppdatering ned...",
+ "Warning": "Åtvaring",
+ "Unknown Address": "Ukjend Adresse",
+ "NOTE: Apps are not end-to-end encrypted": "MERK DEG: Æppar er ikkje ende-til-ende-enkrypterte",
+ "Warning: This widget might use cookies.": "Åtvaring: Denne widgeten brukar kanskje datakaker.",
+ "Do you want to load widget from URL:": "Vil du lasta widgeten frå URL:",
+ "Allow": "Tillat",
+ "Delete Widget": "Slett Widgeten",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Å sletta ein widget fjernar den for alle brukarane i rommet. Er du sikker på at du vil sletta denne widgeten?",
+ "Delete widget": "Slett widgeten",
+ "Failed to remove widget": "Fekk ikkje til å fjerna widgeten",
+ "An error ocurred whilst trying to remove the widget from the room": "Noko gjekk gale med fjerninga av widgeten frå rommet",
+ "Revoke widget access": "Tak widgeten sin tilgang att",
+ "Reload widget": "Last inn widget på nytt",
+ "Picture": "Bilete",
+ "Edit": "Gjer om",
+ "Create new room": "Lag nytt rom",
+ "Unblacklist": "Fjern frå svartelista",
+ "Blacklist": "Legg til i svartelista",
+ "No results": "Ingen resultat",
+ "Delete": "Slett",
+ "Communities": "Samfunn",
+ "Home": "Heim",
+ "You cannot delete this image. (%(code)s)": "Du kan ikkje sletta dette biletet. (%(code)s)",
+ "Uploaded on %(date)s by %(user)s": "Lasta opp %(date)s av %(user)s",
+ "Download this file": "Last denne fila ned",
+ "%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s har kome inn %(count)s gonger",
+ "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)s kom inn",
+ "%(oneUser)sjoined %(count)s times|other": "%(oneUser)s har kome inn %(count)s gonger",
+ "%(oneUser)sjoined %(count)s times|one": "%(oneUser)s kom inn",
+ "%(severalUsers)sleft %(count)s times|other": "%(severalUsers)s har fare %(count)s gonger",
+ "%(severalUsers)sleft %(count)s times|one": "%(severalUsers)s fór",
+ "%(oneUser)sleft %(count)s times|other": "%(oneUser)s har fare %(count)s gonger",
+ "%(oneUser)sleft %(count)s times|one": "%(oneUser)s fór",
+ "%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)s har kome inn og fare att %(count)s gonger",
+ "%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)s kom inn og fór",
+ "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)s har kome inn og fare att %(count)s gonger",
+ "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)s kom inn og fór",
+ "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)s har fare og kome inn att %(count)s gonger",
+ "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)s fór og kom inn att",
+ "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)s har fare og kome inn att %(count)s gonger",
+ "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)s fór og kom inn att",
+ "%(severalUsers)srejected their invitations %(count)s times|other": "%(severalUsers)s sa nei til innbydingane %(count)s gonger",
+ "%(severalUsers)srejected their invitations %(count)s times|one": "%(severalUsers)s sa nei til innbydingane",
+ "%(oneUser)srejected their invitation %(count)s times|other": "%(oneUser)s sa nei til innbydinga %(count)s gonger",
+ "%(oneUser)srejected their invitation %(count)s times|one": "%(oneUser)s sa nei til innbydinga",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|other": "%(severalUsers)s fekk innbydingane sine attekne %(count)s gonger",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|one": "%(severalUsers)s fekk innbydinga si attteke",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|other": "%(oneUser)s fekk innbydinga si atteke %(count)s gonger",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|one": "%(oneUser)s fekk innbydinga si atteke",
+ "were invited %(count)s times|other": "vart boden inn %(count)s gonger",
+ "were invited %(count)s times|one": "vart boden inn",
+ "was invited %(count)s times|other": "vart boden inn %(count)s gonger",
+ "was invited %(count)s times|one": "vart boden inn",
+ "were banned %(count)s times|other": "har vore stengd ute %(count)s gonger",
+ "were banned %(count)s times|one": "vart stengd ute",
+ "was banned %(count)s times|other": "har vore stengd ute %(count)s gonger",
+ "was banned %(count)s times|one": "vart stengd ute",
+ "were unbanned %(count)s times|other": "har vorta sloppe inn att %(count)s gonger",
+ "were unbanned %(count)s times|one": "vart sloppe inn att",
+ "was unbanned %(count)s times|other": "har vorte sloppe inn att %(count)s gonger",
+ "was unbanned %(count)s times|one": "vart sloppe inn att",
+ "were kicked %(count)s times|other": "har vorte sparka ut %(count)s gonger",
+ "were kicked %(count)s times|one": "vart sparka ut",
+ "was kicked %(count)s times|other": "har vorte sparka ut %(count)s gonger",
+ "was kicked %(count)s times|one": "vart sparka ut",
+ "%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)s har endra namna sine %(count)s gonger",
+ "%(severalUsers)schanged their name %(count)s times|one": "%(severalUsers)s endra namna sine",
+ "%(oneUser)schanged their name %(count)s times|other": "%(oneUser)s har endra namnet sitt %(count)s gonger",
+ "%(oneUser)schanged their name %(count)s times|one": "%(oneUser)s endra namnet sitt",
+ "%(severalUsers)schanged their avatar %(count)s times|other": "%(severalUsers)s har endra avatarane sine %(count)s gonger",
+ "%(severalUsers)schanged their avatar %(count)s times|one": "%(severalUsers)s endra avatarane sine",
+ "%(oneUser)schanged their avatar %(count)s times|other": "%(oneUser)s har endra avataren sin %(count)s gonger",
+ "%(oneUser)schanged their avatar %(count)s times|one": "%(oneUser)s endra avataren sin",
+ "%(items)s and %(count)s others|other": "%(items)s og %(count)s andre",
+ "%(items)s and %(count)s others|one": "%(items)s og ein til",
+ "%(items)s and %(lastItem)s": "%(items)s og %(lastItem)s",
+ "collapse": "Slå saman",
+ "expand": "Utvid",
+ "In reply to ": "Som svar til ",
+ "Room directory": "Romutval",
+ "Start chat": "Byrj samtale",
+ "And %(count)s more...|other": "Og %(count)s til...",
+ "ex. @bob:example.com": "t.d. @ivar:eksempel.no",
+ "Add User": "Legg Brukar til",
+ "Matrix ID": "Matrix-ID",
+ "Matrix Room ID": "Matrixrom-ID",
+ "email address": "emailadresse",
+ "You have entered an invalid address.": "Du har skrive ei ugangbar adresse inn.",
+ "Try using one of the following valid address types: %(validTypesList)s.": "Prøv å bruka ein av dei følgjande gangbare adressesortane: %(validTypesList)s.",
+ "Preparing to send logs": "Førebur loggsending",
+ "Logs sent": "Loggar sende",
+ "Thank you!": "Takk skal du ha!",
+ "Failed to send logs: ": "Fekk ikkje til å senda loggar: ",
+ "Submit debug logs": "Send debøgg-loggar inn",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Riot-bøggar følgjast på GitHub: lag eit GitHub-issue .",
+ "GitHub issue link:": "lenkje til GitHub-issue:",
+ "Notes:": "Saker å merka seg:",
+ "Send logs": "Send loggar inn",
+ "Unavailable": "Utilgjengeleg",
+ "Changelog": "Endringslogg",
+ "Create a new chat or reuse an existing one": "Lag ei ny samtale eller bruk ei gamal opp att",
+ "Start new chat": "Byrj ny samtale",
+ "You already have existing direct chats with this user:": "Du har allereie pågåande direktesamtaler med denne brukaren:",
+ "Start chatting": "Byrj å prata",
+ "Click on the button below to start chatting!": "Klikk på knappen under for å byrja å prata!",
+ "Start Chatting": "Byrj å Prata",
+ "Something went wrong whilst creating your community": "Noko gjekk gale med laginga av samfunnet ditt",
+ "Create Community": "Lag Samfunn",
+ "Community Name": "Samfunnsnamn",
+ "Example": "Døme",
+ "Community ID": "Samfunns-ID",
+ "example": "døme",
+ "Create": "Lag",
+ "Create Room": "Lag eit Rom",
+ "Room name (optional)": "Romnamn (valfritt)",
+ "Advanced options": "Omfattande innstillingar",
+ "World readable": "Kan lesast av alle",
+ "not specified": "Ikkje oppgjeven",
+ "Minimize apps": "Legg æppar ned",
+ "Confirm Removal": "Godkjenn Fjerning",
+ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Er du sikker på at du vil fjerna (sletta) denne hendingen? Merk deg at vis du slettar eit romnamn eller ei emneendring kan det gjera om på endringa.",
+ "Community IDs cannot be empty.": "Samfunns-IDfeltet kan ikkje vera tomt.",
+ "Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Samfunns-IDar kan berre innehalda teikna a-z, 0-9, eller '=_-./'",
+ "This setting cannot be changed later!": "Denne innstillinga kan ikkje gjerast om på seinare!",
+ "Unknown error": "Noko ukjend gjekk galt",
+ "Incorrect password": "Urett passord",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Dette gjer at brukaren din vert ubrukeleg til evig tid. Du kjem ikkje til å kunna logga inn, og ingen andre kjem til å kunna melde seg inn med den gamle brukar-IDen din. Brukaren din forlét òg alle rom han er i, og brukardetaljane dine vil verta fjerna frå identitetstenaren. Denne handlinga kan ikkje gjerast om. ",
+ "Deactivate Account": "Avliv Brukaren",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Å avliva brukaren din gjer i utgangspunktet ikkje at vi gløymer meldingane du har send. Viss du vil at vi skal gløyma meldingane dine, ver venleg og kryss av i firkanten under.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Meldingssynlegheit på Matrix liknar på email. At vi gløymer meldingane dine tyder at meldingar du har send ikkje vil verta delt med nye, ikkje-innmeldte brukarar, men brukare som er meldt på som allereie har tilgang til desse meldingane vil fortsatt kunne sjå kopien deira.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Ver venleg og gløym alle meldingane eg har send når brukaren min vert avliven (Åtvaring: dette gjer at framtidige brukarar ikkje fær eit fullstendig oversyn av samtalene)",
+ "To continue, please enter your password:": "For å gå fram, ver venleg og skriv passordet ditt inn:",
+ "password": "passord",
+ "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "For å godkjenna at denne eininga er til å stola på, ver venleg og snakk med eiaren på ei anna måte (t.d. ansikt til ansikt eller på telefon) og spør dei om nykelen dei ser i Brukarinnstillingane for denne eininga samsvarar med nykelen under:",
+ "Device name": "Einingsnamn",
+ "Device key": "Einingsnykel",
+ "In future this verification process will be more sophisticated.": "I framtida kjem denne godkjenningsprosessen til å vera betre utvikla.",
+ "Verify device": "Godkjenn eining",
+ "I verify that the keys match": "Eg godkjenner at nyklane samsvarar",
+ "Back": "Attende",
+ "Event sent!": "Hending send!",
+ "Event Type": "Hendingsort",
+ "Event Content": "Hendingsinnhald",
+ "Send Account Data": "Send Brukardata",
+ "Explore Room State": "Undersøk Romtilstanden",
+ "Explore Account Data": "Undersøk Brukardata",
+ "Toolbox": "Verktøykasse",
+ "Developer Tools": "Utviklarverktøy",
+ "An error has occurred.": "Noko gjekk gale.",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Du la til den nye eininga '%(displayName)s', som spør om enkrypteringsnyklar.",
+ "Your unverified device '%(displayName)s' is requesting encryption keys.": "Den ikkje-godkjende eininga di '%(displayName)s' spør om enkrypteringsnyklar.",
+ "Start verification": "Byrj godkjenning",
+ "Share without verifying": "Del utan å godkjenna",
+ "Ignore request": "Oversjå førespurnad",
+ "Loading device info...": "Lastar einingsinfo inn...",
+ "Encryption key request": "Enkrypteringsnykel-førespurnad",
+ "Sign out": "Logg ut",
+ "Log out and remove encryption keys?": "Logg ut og fjern enkrypteringsnyklar?",
+ "Clear Storage and Sign Out": "Tøm Lager og Logg Ut",
+ "Send Logs": "Send Loggar",
+ "Refresh": "Hent fram på nytt",
+ "Unable to restore session": "Kunne ikkje henta økta fram att",
+ "We encountered an error trying to restore your previous session.": "Noko gjekk gale med framhentinga av den førre økta di.",
+ "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Viss du har bruka ei nyare utgåve av Riot før, kan det henda at økta di ikkje passar inn i denne utgåva. Lukk dette vindauget og gå attende til den nyare utgåva.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Det kan henda at å tømma nettlesarlageret rettar opp i det, men det loggar deg ut og kan gjera den enkrypterte pratehistoria uleseleg.",
+ "Invalid Email Address": "Ugangbar Emailadresse",
+ "This doesn't appear to be a valid email address": "Det ser ikkje ut til at emailadressa er gangbar",
+ "Verification Pending": "Ventar på Godkjenning",
+ "Please check your email and click on the link it contains. Once this is done, click continue.": "Ver venleg og sjekk emailen din og klikk på lenkja du har fått. Når det er gjort, klikk gå fram.",
+ "Unable to add email address": "Klarte ikkje å leggja emailadressa til",
+ "Unable to verify email address.": "Klarte ikkje å godkjenne emailadressa.",
+ "This will allow you to reset your password and receive notifications.": "Dette tillèt deg å attendestilla passordet ditt og å få varsel.",
+ "Skip": "Hopp over",
+ "User names may only contain letters, numbers, dots, hyphens and underscores.": "Brukarnamn kan berre innehalda bokstavar, tal, prikkar, bindestrek og understrek.",
+ "Username not available": "Brukarnamnet er ikkje tilgjengeleg",
+ "Username invalid: %(errMessage)s": "Brukarnamnet er ugangbart: %(errMessage)s",
+ "An error occurred: %(error_string)s": "Noko gjekk gale: %(error_string)s",
+ "Username available": "Brukarnamnet er tilgjengeleg",
+ "To get started, please pick a username!": "For å koma i gang, ver venleg og vel eit brukarnman!",
+ "This will be your account name on the homeserver, or you can pick a different server .": "Dette vert brukarnamnet ditt på heimtenaren, elles so kan du velja ein annan tenar .",
+ "If you already have a Matrix account you can log in instead.": "Viss du har ein Matrixbrukar allereie kan du logga på i staden.",
+ "You have successfully set a password!": "Du sette passordet ditt!",
+ "You have successfully set a password and an email address!": "Du sette passordet og emailadressa di!",
+ "You can now return to your account after signing out, and sign in on other devices.": "Du kan no gå attende til brukaren din etter å ha logga ut, og logga inn på andre einingar.",
+ "Remember, you can always set an email address in user settings if you change your mind.": "Hugs at du alltid kan setja ei emailadresse i brukarinnstillingar viss du skiftar meining.",
+ "Failed to change password. Is your password correct?": "Fekk ikkje til å skifta passord. Er passordet rett?",
+ "(HTTP status %(httpStatus)s)": "(HTTP-tilstand %(httpStatus)s)",
+ "Please set a password!": "Ver venleg og set eit passord!",
+ "This will allow you to return to your account after signing out, and sign in on other devices.": "Dette tillèt deg å fara attende til brukaren din etter å ha logga ut, og å logga inn på andre einingar.",
+ "Share Room": "Del Rom",
+ "Link to most recent message": "Lenk til den nyaste meldinga",
+ "Share User": "Del Brukar",
+ "Share Community": "Del Samfunn",
+ "Share Room Message": "Del Rommelding",
+ "Link to selected message": "Lenk til den valde meldinga",
+ "COPY": "KOPIER",
+ "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Du set for augeblunket ikkje-godkjende einingar på svartelista; for å senda meldingar til desse einingane må du godkjenna dei.",
+ "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Vi tilrår deg å gå gjennom godkjenninga for kvar av einingane for å vera sikker på at dei tilhøyrer sine rettmessige eigarar, men du kan senda meldinga på nytt utan å godkjenna viss du vil.",
+ "Room contains unknown devices": "Rommet inneheld ukjende einingar",
+ "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" inneheld einingar som du ikkje har sett før.",
+ "Unknown devices": "Ukjende einingar",
+ "Private Chat": "Lukka Samtale",
+ "Public Chat": "Offentleg Samtale",
+ "Alias (optional)": "Alias (valfritt)",
+ "Reject invitation": "Sei nei til innbyding",
+ "Are you sure you want to reject the invitation?": "Er du sikker på at du vil seia nei til innbydinga?",
+ "Unable to reject invite": "Klarte ikkje å seia nei til innbydinga",
+ "Reject": "Sei nei",
+ "You cannot delete this message. (%(code)s)": "Du kan ikkje sletta meldinga. (%(code)s)",
+ "Resend": "Send på nytt",
+ "Cancel Sending": "Avbryt Sending",
+ "Forward Message": "Vidaresend Melding",
+ "Reply": "Svar",
+ "Pin Message": "Fest Meldinga",
+ "View Source": "Sjå Kjelda",
+ "View Decrypted Source": "Sjå den Dekrypterte Kjelda",
+ "Unhide Preview": "Slutt å Gøyma Førehandsvising",
+ "Share Message": "Del Melding",
+ "Quote": "Sitat",
+ "Source URL": "Kjelde-URL",
+ "Collapse Reply Thread": "Slå Svartråden saman",
+ "All messages (noisy)": "Alle meldingar (bråket)",
+ "All messages": "Alle meldingar",
+ "Mentions only": "Berre når eg vert nemnd",
+ "Leave": "Far ut",
+ "Forget": "Gløym",
+ "Low Priority": "Lågrett",
+ "Direct Chat": "Direktesamtale",
+ "View Community": "Sjå Samfunn",
+ "Sorry, your browser is not able to run Riot.": "Orsak, nettlesaren din klarer ikkje å køyra Riot.",
+ "Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot brukar mange omfattande nettlesarfunksjonar, og nokre av dei er ikkje tilgjengelege eller i utprøving i nettlesaren din.",
+ "Please install Chrome or Firefox for the best experience.": "Ver venleg og legg Chrome eller Firefox inn på datamaskina for den beste opplevinga.",
+ "Safari and Opera work too.": "Safari og Opera verkar òg.",
+ "With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Med denne nettlesaren, er det mogleg at synet og kjensla av applikasjonen er fullstendig gale, og nokre eller alle funksjonar verkar kanskje ikkje. Viss du vil prøva same kva kan du gå fram, men då du må sjølv handtera alle vanskar du møter på!",
+ "I understand the risks and wish to continue": "Eg forstår farane og vil gå fram",
+ "Name": "Namn",
+ "Topic": "Emne",
+ "Make this room private": "Gjer dette rommet privat",
+ "Share message history with new users": "Del meldingshistoria med nye brukarar",
+ "Encrypt room": "Enkrypter rommet",
+ "You must register to use this functionality": "Du må melda deg inn for å bruka denne funksjonen",
+ "You must join the room to see its files": "Du må fare inn i rommet for å sjå filene dets",
+ "There are no visible files in this room": "Det er ingen synlege filer i dette rommet",
+ "HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "HTML for samfunnssida di \n\n Bruk den Lange Skildringa for å ynskja nye medlemer velkomen, eller gje ut viktige lenkjer \n
\n\n Du kan til og med bruka 'img'-merkelappar!\n
\n",
+ "Add rooms to the community summary": "Legg rom til i samfunnsoppsamanfattinga",
+ "Which rooms would you like to add to this summary?": "Kva rom ynskjer du å leggja til i samanfattinga?",
+ "Add to summary": "Legg til i samanfattinga",
+ "Failed to add the following rooms to the summary of %(groupId)s:": "Fekk ikkje til å leggja dei følgjande romma til i samanfattinga av %(groupId)s:",
+ "Add a Room": "Legg eit Rom til",
+ "Failed to remove the room from the summary of %(groupId)s": "Fekk ikkje til å fjerna rommet frå samanfattinga av %(groupId)s",
+ "The room '%(roomName)s' could not be removed from the summary.": "Rommet '%(roomName)s' lét seg ikkje fjerna frå samanfattinga.",
+ "Add users to the community summary": "Legg brukarar til i samfunnsamanfattinga",
+ "Who would you like to add to this summary?": "Kven vil du leggja til i samanfattinga?",
+ "Failed to add the following users to the summary of %(groupId)s:": "Fekk ikkje til å leggja følgjande brukarar til i samanfattinga av %(groupId)s:",
+ "Add a User": "Legg ein Brukar til",
+ "Failed to remove a user from the summary of %(groupId)s": "Fekk ikkje til å fjerna brukaren frå samanfattinga av %(groupId)s",
+ "The user '%(displayName)s' could not be removed from the summary.": "Brukaren '%(displayName)s' lét seg ikkje fjerna frå samanfattinga.",
+ "Failed to upload image": "Fekk ikkje til å lasta biletet opp",
+ "Failed to update community": "Fekk ikkje til å oppdatera samfunnet",
+ "Unable to accept invite": "Fekk ikkje til å seia ja til innbydinga",
+ "Unable to join community": "Fekk ikkje til å fara inn i samfunnet",
+ "Leave Community": "Far frå Samfunnet",
+ "Leave %(groupName)s?": "Far frå %(groupName)s?",
+ "Unable to leave community": "Fekk ikkje til å fara frå samfunnet",
+ "Community Settings": "Samfunninnstillingar",
+ "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "Endringar gjort på samfunnsnamnet og samfunnsavataren vert kanskje ikkje synleg forandre før opp til 30 minutt har gått.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Desse romma vert viste for samfunnsmedlemer på samfunnsida. Samfunnsmedlemer kan fara inn i romma ved å klikka på dei.",
+ "Add rooms to this community": "Legg rom til i samfunnet",
+ "Featured Rooms:": "Utvalde Rom:",
+ "Featured Users:": "Utvalde Brukarar:",
+ "%(inviter)s has invited you to join this community": "%(inviter)s baud deg inn til dette samfunnet",
+ "Join this community": "Far inn i samfunnet",
+ "Leave this community": "Far frå samfunnet",
+ "You are an administrator of this community": "Du er administrator i dette samfunnet",
+ "You are a member of this community": "Du er eit medlem av dette samfunnet",
+ "Who can join this community?": "Kven kan verta med i samfunnet?",
+ "Everyone": "Alle",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "Samfunnet ditt har ikkje ei Lang Skilrding (ei HTML-side for å visa til samfunnsmedlem.) Klikk her for å opna innstillingar og gje det ei!",
+ "Long Description (HTML)": "Lang Skildring (HTML)",
+ "Description": "Skildring",
+ "Community %(groupId)s not found": "Fann ikkje samfunnet %(groupId)s",
+ "This Home server does not support communities": "Denne heimtenaren støttar ikkje støttesamfunn",
+ "Failed to load %(groupId)s": "Fekk ikkje til å lasta %(groupId)s",
+ "Couldn't load home page": "Kunne ikkje lasta heimesida",
+ "Login": "Innlogging",
+ "Failed to reject invitation": "Fekk ikkje til å seia nei til innbyding",
+ "This room is not public. You will not be able to rejoin without an invite.": "Dette rommet er ikkje offentleg. Du kjem ikkje til å kunna koma inn att utan ei innbyding.",
+ "Are you sure you want to leave the room '%(roomName)s'?": "Er du sikker på at du vil fara frå rommet '%(roomName)s'?",
+ "Failed to leave room": "Fekk ikkje til å fara frå rommet",
+ "Can't leave Server Notices room": "Kan ikkje fara frå Tenarvarsel-rommet",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Dette rommet er for viktige meldingar frå Heimtenaren, so du kan ikkje fara frå det.",
+ "Signed Out": "Logga Ut",
+ "For security, this session has been signed out. Please sign in again.": "Av sikkerheitsgrunnar har denne økta vorte logga ut. Ver venleg og logg inn att.",
+ "Terms and Conditions": "Vilkår og Føresetnader",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "For å framleis bruka %(homeserverDomain)s sin heimtenar må du sjå over og seia deg einig i våre Vilkår og Føresetnader.",
+ "Review terms and conditions": "Sjå over Vilkår og Føresetnader",
+ "Old cryptography data detected": "Gamal kryptografidata vart oppdagen",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Data frå ei eldre utgåve av Riot vart oppdagen. I den eldre utgåva hadde dette gjort at ende-til-ende-kryptografi ikkje verkar som det skal. Ende-til-ende-enkrypterte meldingar som vert utveksla nyleg med den gamle utgåva er det kanskje ikkje mogeleg å dekryptera i denne utgåva. Dette fører kanskje òg til at meldingar som vart utveksla med denne utgåva ikkje verkar. Viss du opplever vansker, logg ut og inn att. For å spara på meldingshistoria, hent nyklane dine ut og inn at.",
+ "Logout": "Utlogging",
+ "Your Communities": "Dine Samfunn",
+ "Error whilst fetching joined communities": "Noko gjekk gale med innhentinga av samfunna du er i",
+ "Create a new community": "Lag eit nytt samfunn",
+ "You have no visible notifications": "Du har ingen synlege varsel",
+ "Members": "Medlemer",
+ "%(count)s Members|other": "%(count)s Medlemer",
+ "%(count)s Members|one": "%(count)s Medlem",
+ "Invite to this room": "Byd inn til rommet",
+ "Files": "Filer",
+ "Notifications": "Varsel",
+ "Invite to this community": "Byd inn til samfunnet",
+ "Failed to get protocol list from Home Server": "Fekk ikkje til å henta protokollista frå heimtenaren",
+ "The Home Server may be too old to support third party networks": "Heimtenaren er kanskje for gamal til å støtta tredjepartinettverk",
+ "Failed to get public room list": "Fekk ikkje til å henta den offentlege romlista",
+ "The server may be unavailable or overloaded": "Tenaren er kanskje utilgjengeleg eller overlasta",
+ "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Slett rommaliaset %(alias)s og fjern %(name)s frå utvalet?",
+ "Remove %(name)s from the directory?": "Fjern %(name)s frå utvalet?",
+ "Remove from Directory": "Fjern frå Utvalet",
+ "remove %(name)s from the directory.": "fjern %(name)s frå utvalet.",
+ "delete the alias.": "slett aliaset.",
+ "Unable to join network": "Klarte ikkje å verta med i nettverket",
+ "Riot does not know how to join a room on this network": "Riot veit ikkje korleis ein fer inn i eit rom på dette nettverket",
+ "Room not found": "Fann ikkje rommet",
+ "Couldn't find a matching Matrix room": "Kunne ikkje finna eit samsvarande Matrixrom",
+ "Fetching third party location failed": "Noko gjekk gale med hentinga tredjepartiplasseringa",
+ "Directory": "Utval",
+ "Search for a room": "Søk etter eit rom",
+ "#example": "#døme",
+ "Scroll to bottom of page": "Blad til botnen",
+ "Message not sent due to unknown devices being present": "Meldinga vart ikkje send fordi ukjende einingar er til stades",
+ "Show devices , send anyway or cancel .": "Vis einingar , Send same kva eller Avbryt .",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Du kan ikkje senda meldingar før du ser over og seier deg einig i våre Vilkår og Føresetnader .",
+ "%(count)s of your messages have not been sent.|other": "Nokre av meldingane dine vart ikkje sende.",
+ "%(count)s of your messages have not been sent.|one": "Meldinga di vart ikkje send.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Send alle på nytt eller avbryt alle . Du kan ogso velja enkelte meldingar til sending på nytt eller avbryting.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Send melding på nytt eller avbryt .",
+ "Connectivity to the server has been lost.": "Tilkoplinga til tenaren vart tapt.",
+ "Sent messages will be stored until your connection has returned.": "Sende meldingar lagrast ikkje før tilkoplinga di er attende.",
+ "%(count)s new messages|other": "%(count)s nye meldingar",
+ "%(count)s new messages|one": "%(count)s ny melding",
+ "Active call": "Pågåande samtale",
+ "There's no one else here! Would you like to invite others or stop warning about the empty room ?": "Det er ingen andre her! Vil du byda andre inn eller enda åtvaringa om det tomme rommet? ?",
+ "more": "meir",
+ "You seem to be uploading files, are you sure you want to quit?": "Det ser ut til at du lastar filer opp, er du sikker på at du vil slutta?",
+ "You seem to be in a call, are you sure you want to quit?": "Det ser ut til at du er i ei samtale, er du sikker på at du vil slutta?",
+ "Failed to upload file": "Fekk ikkje til å lasta fila opp",
+ "Server may be unavailable, overloaded, or the file too big": "Tenaren er kanskje utilgjengeleg, overlasta, elles so er fila for stor",
+ "Search failed": "Søket gjekk gale",
+ "No more results": "Ingen fleire resultat",
+ "Unknown room %(roomId)s": "Ukjend rom %(roomId)s",
+ "Room": "Rom",
+ "Failed to save settings": "Fekk ikkje til å lagra innstillingar",
+ "Failed to reject invite": "Fekk ikkje til å seia nei til innbydinga",
+ "Fill screen": "Fyll skjermen",
+ "Click to unmute video": "Klikk for å avstilna videoen",
+ "Click to mute video": "Klikk for å stilna videoen",
+ "Click to unmute audio": "Klikk for å avstilna ljoden",
+ "Click to mute audio": "Klikk for å stilna ljoden",
+ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Freista å lasta eit gjeve punkt i rommet si tidslinje, men du har ikkje lov til å sjå den sistnemnde meldinga.",
+ "Tried to load a specific point in this room's timeline, but was unable to find it.": "Freista å lasta eit gjeve punkt i rommet si tidslinje, men klarte ikkje å finna det.",
+ "Failed to load timeline position": "Fekk ikkje til å lasta tidslinjestillinga",
+ "Uploading %(filename)s and %(count)s others|other": "Lastar %(filename)s og %(count)s andre opp",
+ "Uploading %(filename)s and %(count)s others|zero": "Lastar %(filename)s opp",
+ "Uploading %(filename)s and %(count)s others|one": "Lastar %(filename)s og %(count)s andre opp",
+ "Light theme": "Ljost preg",
+ "Dark theme": "Dimt preg",
+ "Status.im theme": "Status.im-preg",
+ "Can't load user settings": "Kan ikkje lasta brukarinnstillingar",
+ "Server may be unavailable or overloaded": "Tenaren er kanskje utilgjengeleg eller overlasta",
+ "Success": "Det gjekk",
+ "Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "Passordet ditt vert endra. Du får ikkje push-varsel på andre einingar før du loggar inn att på dei",
+ "Remove Contact Information?": "Fjern Kontaktinfo?",
+ "Remove %(threePid)s?": "Fjern %(threePid)s?",
+ "Unable to remove contact information": "Klarte ikkje å fjerna kontaktinfo",
+ "Refer a friend to Riot:": "Vis ein ven til Riot:",
+ "Interface Language": "Grensesnitt-mål",
+ "User Interface": "Brukargrensesnitt",
+ "": "",
+ "Import E2E room keys": "Hent E2E-romnyklar",
+ "Cryptography": "Kryptografi",
+ "Device ID:": "Einings-ID:",
+ "Device key:": "Einingsnykel:",
+ "Ignored Users": "Oversedde Brukarar",
+ "Debug Logs Submission": "Innsending av Debøgg-loggar",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Viss du har send inn ein bøgg gjennom GitHub, kan debøgg-loggar hjelpa oss med å finna problemet. Debøgg-loggar inneheld data om æpp-bruk, b.a. Brukarnamnet ditt, IDane eller aliasa på romma eller gruppene du har vitja og brukarnamna til andre brukarar. Dei inneheld ikkje meldingar.",
+ "Riot collects anonymous analytics to allow us to improve the application.": "Riot samlar anonym statistikk inn slik at vi kan forbetre æppen.",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Personvern er viktig for oss, so vi samlar ikkje på personleg eller attkjenneleg data for statistikken vår.",
+ "Learn more about how we use analytics.": "Finn ut meir om korleis vi brukar statistikk.",
+ "Labs": "Labar",
+ "These are experimental features that may break in unexpected ways": "Desse funksjonane er i utprøving og uventa vanskar kan dukka opp",
+ "Use with caution": "Bruk med omhug",
+ "Deactivate my account": "Avliv brukaren min",
+ "Updates": "Oppdateringar",
+ "Check for update": "Sjå etter oppdateringar",
+ "Reject all %(invitedRooms)s invites": "Sei nei til alle innbydingar frå %(invitedRooms)s",
+ "Desktop specific": "Berre for skrivebord",
+ "Start automatically after system login": "Byrj av seg sjølv etter systeminnlogging",
+ "No media permissions": "Ingen mediatilgang",
+ "You may need to manually permit Riot to access your microphone/webcam": "Det kan henda at du må gje Riot tilgang til mikrofonen/nettkameraet for hand",
+ "Missing Media Permissions, click here to request.": "Vantande Mediatilgang, klikk her for å beda om det.",
+ "No Audio Outputs detected": "Ingen ljodavspelingseiningar funne",
+ "No Microphones detected": "Ingen opptakseiningar funne",
+ "No Webcams detected": "Ingen Nettkamera funne",
+ "Default Device": "Eininga som brukast i utgangspunktet",
+ "Audio Output": "Ljodavspeling",
+ "Microphone": "Ljodopptaking",
+ "Camera": "Kamera",
+ "VoIP": "VoIP",
+ "Email": "Email",
+ "Add email address": "Legg emailadresse til",
+ "Display name": "Visingsnamn",
+ "Account": "Brukar",
+ "To return to your account in future you need to set a password": "For å kunna koma attende til brukaren din i framtida må du setja eit passord",
+ "Logged in as:": "Logga inn som:",
+ "click to reveal": "klikk for å visa",
+ "Homeserver is": "Heimtenaren er",
+ "Identity Server is": "Identitetstenaren er",
+ "matrix-react-sdk version:": "matrix-react-sdk-utgåve:",
+ "riot-web version:": "riot-web-utgåve:",
+ "olm version:": "olm-utgåve:",
+ "Failed to send email": "Fekk ikkje til å senda emailen",
+ "The email address linked to your account must be entered.": "Du må skriva emailadressa som er tilknytta brukaren din inn.",
+ "A new password must be entered.": "Du må skriva eit nytt passord inn.",
+ "New passwords must match each other.": "Dei nye passorda må vera like.",
+ "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "Ein email vert send til %(emailAddress)s. Når du har far følgd lenkja i den, klikk under.",
+ "I have verified my email address": "Eg har godkjend emailadressa mi",
+ "Your password has been reset": "Passordet ditt vart attendesett",
+ "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "Du vart logga av alle einingar og får ikkje lenger pushvarsel. For å skru varsel på att, logg inn igjen på kvar eining",
+ "Return to login screen": "Gå attende til innlogging",
+ "To reset your password, enter the email address linked to your account": "For å attendestilla passordet ditt, skriv emailadressa som er lenkja til brukaren din inn",
+ "New password": "Nytt passord",
+ "Confirm your new password": "Godkjenn det nye passordet ditt",
+ "Send Reset Email": "Send attendestillingsemail",
+ "Create an account": "Lag ein brukar",
+ "This Home Server does not support login using email address.": "Denne Heimtenaren støttar ikkje innlogging med email.",
+ "Please contact your service administrator to continue using this service.": "Ver venleg og kontakt din tenesteadministrator for å halda fram med å bruka tenesten.",
+ "Incorrect username and/or password.": "Urett brukarnamn og/eller passord.",
+ "Please note you are logging into the %(hs)s server, not matrix.org.": "Merk deg at du loggar inn på %(hs)s-tenaren, ikkje matrix.org.",
+ "Guest access is disabled on this Home Server.": "Gjestetilgang er skrudd av på denne Heimtenaren.",
+ "The phone number entered looks invalid": "Det innskrivne telefonnummeret ser ugangbart ut",
+ "Error: Problem communicating with the given homeserver.": "Noko gjekk gale: fekk ikkje samband med den gjevne heimtenaren.",
+ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Kan ikkje kopla til heimtenaren gjennom HTTP når ein HTTPS-URL er i nettlesarsøkjafeltet ditt. Bruk anten HTTPS eller skru utrygge skript på .",
+ "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Kan ikkje kopla til heimtenaren - ver venleg og sjekk tilkoplinga di, og sjå til at heimtenaren din sitt CCL-sertifikat er stolt på og at ein nettlesarutviding ikkje hindrar førespurnader.",
+ "Try the app first": "Prøv æppen fyrst",
+ "Sign in to get started": "Logg inn for å koma i gang",
+ "Failed to fetch avatar URL": "Klarte ikkje å henta avatar-URLen",
+ "Set a display name:": "Set eit visingsnamn:",
+ "Upload an avatar:": "Last ein avatar opp:",
+ "This server does not support authentication with a phone number.": "Denne tenaren støttar ikkje godkjenning gjennom telefonnummer.",
+ "Missing password.": "Vantande passord.",
+ "Passwords don't match.": "Passorda er ikkje like.",
+ "Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Passordet er for kort (i det minste %(MIN_PASSWORD_LENGTH)s).",
+ "This doesn't look like a valid email address.": "Dette ser ikkje ut som ei gangbar emailadresse.",
+ "This doesn't look like a valid phone number.": "Dette ser ikkje ut som eit gangbart telefonnummer.",
+ "You need to enter a user name.": "Du må skriva eit brukarnamn inn.",
+ "An unknown error occurred.": "Noko ukjend gjekk gale.",
+ "I already have an account": "Eg har ein brukar allereie",
+ "Commands": "Påbod",
+ "Results from DuckDuckGo": "Resultat frå DuckDuckGo",
+ "Emoji": "Emoji",
+ "Notify the whole room": "Varsl heile rommet",
+ "Room Notification": "Romvarsel",
+ "Users": "Brukarar",
+ "unknown device": "ukjend eining",
+ "NOT verified": "IKKJE godkjend",
+ "verified": "godkjend",
+ "Verification": "Godkjenning",
+ "Ed25519 fingerprint": "Ed25519-fingeravtrykk",
+ "User ID": "Brukar-ID",
+ "Curve25519 identity key": "Curve25519-identitetsnykel",
+ "none": "ingen",
+ "Algorithm": "Algoritme",
+ "unencrypted": "ikkje-enkryptert",
+ "Decryption error": "Noko gjekk gale med dekrypteringa",
+ "Session ID": "Økt-ID",
+ "End-to-end encryption information": "Ende-til-ende-enkrypteringsinfo",
+ "Event information": "Hendingsinfo",
+ "Sender device information": "Info om avsendareininga",
+ "Passphrases must match": "Passetningane må vera like",
+ "Passphrase must not be empty": "Passetningsfeltet kan ikkje vera tomt",
+ "Enter passphrase": "Skriv passetning inn",
+ "Confirm passphrase": "Godkjenn passetning",
+ "You must specify an event type!": "Du må oppgje ein handlingssort!",
+ "Call Timeout": "Tidsavbrot i Samtala",
+ "Enable automatic language detection for syntax highlighting": "Skru automatisk måloppdaging på for syntax-understreking",
+ "Show empty room list headings": "Vis overskrift på tomme romlister",
+ "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Å endra passordet ditt attendestiller førebelst alle ende-til-ende-enkrypteringsnyklar på alle einingar, slik at enkryptert pratehistorie vert uleseleg, med mindre du fyrst hentar romnyklane dine ut og hentar dei inn att etterpå. I framtida vil denne prosessen vera betre.",
+ "Export E2E room keys": "Hent E2E-romnyklar ut",
+ "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Det kan henda at du stilte dei inn på ein annan klient enn Riot. Du kan ikkje stilla på dei i Riot men dei gjeld framleis",
+ "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "Nykeldelingsførespurnader vert sende til dei andre einingane dine av seg sjølv. Viss du sa nei til eller avviste førespurnadene på dei andre einingane, klikk her for å beda om nyklane for denne økta på nytt.",
+ "Jump to read receipt": "Hopp til lest-lappen",
+ "Filter room members": "Filtrer rommedlemer",
+ "inline-code": "kode-i-tekst",
+ "block-quote": "blokk-sitat",
+ "Show panel": "Vis panel",
+ "Drop here to tag direct chat": "Slepp her for å merka ei direktesamtale",
+ "Drop here to tag %(section)s": "Slepp her for å merka %(section)s",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Når nokon legg ein URL med i meldinga si, kan ei URL-førehandsvising visast for å gje meir info om lenkja slik som tittelen, skildringa, og eit bilete frå nettsida.",
+ "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Du held på å verta teken til ei tredje-partisside so du kan godkjenna brukaren din til bruk med %(integrationsUrl)s. Vil du gå fram?",
+ "Token incorrect": "Teiknet er gale",
+ "Filter community members": "Filtrer samfunnsmedlemer",
+ "Custom Server Options": "Eigentenar-innstillingar",
+ "Filter community rooms": "Filtrer samfunnsrom",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Ver venleg og hjelp oss å forbetra Riot.im med å senda anonym brukardata . Dette brukar ei datakake (ver venleg og sjå på Datakakeretningslinene våre ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Ver venleg og hjelp oss å forbetra Riot.im med å senda anonym brukardata . Dette brukar ei datakake.",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": "Om du brukar Riktekst-innstillinga på Riktekstfeltet",
+ "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "ÅTVARING: NOKO GJEKK GALT MED NYKELGODKJENNINGA! Signeringsnykelen til %(userId)s og eininga %(deviceId)s er \"%(fprint)s\", som ikkje er lik den gjevne nykelen \"%(fingerprint)s\". Dette kan tyda at nokon tjuvlyttar på kommuniseringa!",
+ "The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "Signeringsnykelen du oppgav er lik signeringsnykelen du fekk frå %(userId)s si eining %(deviceId)s. Eininga merkast som godkjend.",
+ "This room is not accessible by remote Matrix servers": "Rommet er ikkje tilgjengeleg for andre Matrix-heimtenarar",
+ "Add an Integration": "Legg tillegg til",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Du kan bruka eigentenarinnstillingane for å logga på andre Matrixtenarar gjennom å oppgje ein annan Heimtenar-URL.",
+ "Custom server": "Eigentenar",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Heimtenaren har truffe den Månadlege Grensa for Aktive Brukarar. Ver venleg og kontakt tenesteadministratoren din for å halda fram med å bruka tenesten.",
+ "Popout widget": "Popp widget ut",
+ "Integrations Error": "Noko gjekk gale med med Tillegga",
+ "Manage Integrations": "Sjå over Innlegg",
+ "%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
+ "Custom of %(powerLevel)s": "Sjølvsett namn på %(powerLevel)s",
+ "Custom level": "Sjølvsett høgd",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Klarte ikkje å lasta handlinga som vert svara til. Anten finst ho ikkje elles har du ikkje tilgang til å sjå ho.",
+ "Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Debøgg-loggar inneheld æppbrukdata slik som brukarnamnet ditt, IDane eller aliasane på romma eller gruppene du har vore i og brukarnamna til andre brukarar. Dei inneheld ikkje meldingar.",
+ "Block users on other matrix homeservers from joining this room": "Hindr brukare frå andre matrix-heimtenarar frå å koma inn i rommet",
+ "Failed to indicate account erasure": "Fekk ikkje til å visa brukarsletting",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Vis dei er like, trykk på godkjenn-knappen under. Viss dei ikkje gjer det, tjuvlyttar nokon på eininga og du bør sannsynlegvis trykkja på svartelisting-knappen i staden.",
+ "Send Custom Event": "Send Sjølvsett Hending",
+ "Failed to send custom event.": "Fekk ikkje til å senda sjølvsett hending.",
+ "State Key": "Tilstandsnykel",
+ "Filter results": "Filtrer resultat",
+ "Custom": "Sjølvsett",
+ "Failed to set Direct Message status of room": "Fekk ikkje til å setja Direktemelding-tilstanden til rommet",
+ "Did you know: you can use communities to filter your Riot.im experience!": "Visste du at: du kan bruka samfunn for å filtrera Riot.im-opplevinga di!",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "For å setja opp eit filter, drag ein samfunnsavatar bort til filterpanelet til venstre på skjermen. Du kan klikka på ein avatar i filterpanelet når som helst for å berre sjå romma og folka tilknytta det samfunnet.",
+ "Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Lag eit samfunn for å føra saman brukarar og rom! Bygg din eiga heimeside for å kreva din del av Matrix-verda.",
+ "Hide panel": "Gøym panel",
+ "Unable to look up room ID from server": "Klarte ikkje å henta rom-ID frå tenaren",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Meldinga di vart ikkje send fordi heimtenaren har truffe si Månadlege Grense for Aktive Brukarar. Ver venleg og tak kontakt med tenesteadministratoren din for å halda frama med å bruka tenesten.",
+ "Server may be unavailable, overloaded, or search timed out :(": "Tenaren er kanskje utilgjengeleg, overlasta, elles so vart søket tidsavbroten :(",
+ "Expand panel": "Utvid panel",
+ "Collapse panel": "Slå panel saman",
+ "Filter room names": "Filtrer romnamn",
+ "Clear filter": "Tøm filter",
+ "Autocomplete Delay (ms):": "Fullfør-av-seg-sjølv-Forseinking (ms):",
+ "Clear Cache": "Tøm Buffar",
+ "Clear Cache and Reload": "Tøm Buffar og Last inn att",
+ "Profile": "Brukar",
+ "Access Token:": "Tilgangs-Teikn:",
+ "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Å attendestilla passordet vil førebels attendestilla alle ende-til-ende-enkrypteringsnyklar på alle einingar, slik at enkrypterte samtaler vert uleselege, med mindre du fyrst hentar romnyklane ut og hentar dei inn att etterpå. Dette vil forbetrast i framtida.",
+ "This homeserver has hit its Monthly Active User limit": "Heimtenaren har truffe den Månadlege Grensa si for Aktive Brukarar",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Heimtenaren tilbyd ingen nye innloggingsstraumar som støttast av denne klienten.",
+ "Claimed Ed25519 fingerprint key": "Gjorde krav på Ed25519-fingeravtrykksnykel",
+ "Export room keys": "Hent romnyklar ut",
+ "Bulk Options": "Innverknadsrike Innstillingar",
+ "Export": "Hent ut",
+ "Import room keys": "Hent romnyklar inn",
+ "File to import": "Fil til innhenting",
+ "Import": "Hent inn",
+ "Failed to set direct chat tag": "Fekk ikkje til å setja direktesamtale-merke",
+ "Failed to remove tag %(tagName)s from room": "Fekk ikkje til å fjerna merket %(tagName)s frå rommet",
+ "Failed to add tag %(tagName)s to room": "Fekk ikkje til å leggja merket %(tagName)s til i rommet",
+ "Hide read receipts": "Gøym lest-lappar",
+ "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "Av sikkerheitsmessige grunnar vil det å logga ut sletta alle ende-til-ende-enkrypteringsnyklar frå nettlesaren. Viss du vil kunna dekryptera samtalehistoria di på framtidige Riot-økter, ver venleg og hent ut romnyklande dine og tak vare på dei.",
+ "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Dette tillèt deg å henta nyklane for meldingar du har sendt i enkrypterte rom ut til ei lokal fil. Då kan du henta fila inn til ein annan Matrix-klient i framtida, slik at den klienten òg kan dekryptera meldingane.",
+ "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "Å henta filen ut tillèt kven som helst som kan lesa ho å dekryptera alle enkrypterte meldingar du kan sjå, so du bør passa på å halda ho trygg. For å hjelpa til med dette bør du skriva ei passetning inn i feltet under, som vil brukast til å enkryptere den uthenta dataen. Det vil berre vera mogeleg å henta dataen inn med den same passetninga.",
+ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Dette tillèt deg å henta enkrypteringsnyklar som du tidlegare henta ut frå ein annan Matrix-klient inn. Du vil so kunna dekryptera alle meldingane som den andre klienten kunne dekryptera.",
+ "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Uthentingsfila vil verta verna med ei passetning. Du bør skriva passetninga inn her for å dekryptera fila.",
+ "Internal room ID: ": "Indre rom-ID: ",
+ "Room version number: ": "Romutgåvenummer: ",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Heimtenaren har truffe si Månadlege Grense for Aktive Brukarar. Ver venleg og tak kontakt med tenesteadministratoren din for å halda fram med å bruka tenesten.",
+ "This homeserver has hit its Monthly Active User limit so some users will not be able to log in. Please contact your service administrator to get this limit increased.": "Heimtenaren har truffe si Månadlege Grense for Aktive Brukarar, so nokre brukarar vil ikkje kunna logga inn. Ver venleg og tak kontakt med tenesteadministratoren din for å auka grensa."
+}
diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json
index d3dcb72f49..3bbc9b1d73 100644
--- a/src/i18n/strings/pl.json
+++ b/src/i18n/strings/pl.json
@@ -151,7 +151,7 @@
"Changes to who can read history will only apply to future messages in this room": "Zmiany w dostępie do historii będą dotyczyć tylko przyszłych wiadomości w tym pokoju",
"Changes your display nickname": "Zmień swój pseudonim",
"Changes colour scheme of current room": "Zmień schemat kolorystyczny bieżącego pokoju",
- "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Zmiana hasła zresetuje klucze szyfrowania końcówka-do-końcówki na wszystkich urządzeniach, co spowoduje, że nie będzie się dało odczytać zaszyfrowanej historii czatu, chyba że najpierw wyeksportujesz swoje klucze i ponownie je zaimportujesz. W przyszłości będzie to poprawione.",
+ "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Zmiana hasła zresetuje klucze szyfrowania end-to-end na wszystkich urządzeniach, co spowoduje, że nie będzie się dało odczytać zaszyfrowanej historii czatu, chyba że najpierw wyeksportujesz swoje klucze i ponownie je zaimportujesz. W przyszłości będzie to poprawione.",
"Claimed Ed25519 fingerprint key": "Zażądano odcisk klucza Ed25519",
"Clear Cache and Reload": "Wyczyść pamięć podręczną i przeładuj",
"Clear Cache": "Wyczyść pamięć podręczną",
@@ -215,8 +215,8 @@
"Encryption is enabled in this room": "Szyfrowanie jest włączone w tym pokoju",
"Encryption is not enabled in this room": "Szyfrowanie nie jest włączone w tym pokoju",
"%(senderName)s ended the call.": "%(senderName)s zakończył połączenie.",
- "End-to-end encryption information": "Informacje o szyfrowaniu końcówka-do-końcówki",
- "End-to-end encryption is in beta and may not be reliable": "Szyfrowanie końcówka-do-końcówki jest w fazie beta i może nie być dopracowane",
+ "End-to-end encryption information": "Informacje o szyfrowaniu end-to-end",
+ "End-to-end encryption is in beta and may not be reliable": "Szyfrowanie end-to-end jest w fazie beta i może nie być dopracowane",
"Enter Code": "Wpisz kod",
"Enter passphrase": "Wpisz frazę",
"Error decrypting attachment": "Błąd odszyfrowywania załącznika",
@@ -232,7 +232,6 @@
"Failed to kick": "Nie udało się wykopać użytkownika",
"Failed to leave room": "Nie udało się opuścić pokoju",
"Failed to load timeline position": "Nie udało się wczytać pozycji osi czasu",
- "Failed to lookup current room": "Nie udało się wyszukać aktualnego pokoju",
"Failed to mute user": "Nie udało się wyciszyć użytkownika",
"Failed to reject invite": "Nie udało się odrzucić zaproszenia",
"Failed to reject invitation": "Nie udało się odrzucić zaproszenia",
@@ -254,7 +253,7 @@
"Forget room": "Zapomnij pokój",
"Forgot your password?": "Zapomniałeś hasła?",
"For security, this session has been signed out. Please sign in again.": "Ze względów bezpieczeństwa ta sesja została wylogowana. Zaloguj się jeszcze raz.",
- "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "Ze względów bezpieczeństwa, wylogowanie skasuje z tej przeglądarki wszystkie klucze szyfrowania końcówka-do-końcówki. Jeśli chcesz móc odszyfrować swoje historie konwersacji z przyszłych sesji Riot-a, proszę wyeksportuj swoje klucze pokojów do bezpiecznego miejsca.",
+ "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "Ze względów bezpieczeństwa, wylogowanie skasuje z tej przeglądarki wszystkie klucze szyfrowania end-to-end. Jeśli chcesz móc odszyfrować swoje historie konwersacji z przyszłych sesji Riot-a, proszę wyeksportuj swoje klucze pokojów do bezpiecznego miejsca.",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s z %(fromPowerLevel)s na %(toPowerLevel)s",
"Guest access is disabled on this Home Server.": "Dostęp dla gości jest wyłączony na tym serwerze.",
"Deops user with given id": "Usuwa prawa administratora użytkownikowi o danym ID",
@@ -303,7 +302,6 @@
"Publish this room to the public in %(domain)s's room directory?": "Czy opublikować ten pokój dla ogółu w spisie pokojów domeny %(domain)s?",
"Local addresses for this room:": "Lokalne adresy dla tego pokoju:",
"Logged in as:": "Zalogowany jako:",
- "Login as guest": "Zaloguj jako gość",
"Logout": "Wyloguj",
"Low priority": "Niski priorytet",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s uczynił przyszłą historię pokoju widoczną dla wszyscy członkowie pokoju, od momentu ich zaproszenia.",
@@ -382,7 +380,7 @@
"Hide join/leave messages (invites/kicks/bans unaffected)": "Ukryj wiadomości o dołączeniu/opuszczeniu (nie obejmuje zaproszeń/wyrzuceń/banów)",
"Hide read receipts": "Ukryj potwierdzenia odczytu",
"Historical": "Historyczne",
- "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Resetowanie hasła zresetuje klucze szyfrowania końcówka-do-końcówki na wszystkich urządzeniach, co spowoduje, że nie będzie się dało odczytać zaszyfrowanej historii czatu, chyba że najpierw wyeksportujesz swoje klucze i ponownie je zaimportujesz. W przyszłości będzie to poprawione.",
+ "Resetting password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "Resetowanie hasła zresetuje klucze szyfrowania end-to-end na wszystkich urządzeniach, co spowoduje, że nie będzie się dało odczytać zaszyfrowanej historii czatu, chyba że najpierw wyeksportujesz swoje klucze i ponownie je zaimportujesz. W przyszłości będzie to poprawione.",
"Riot was not given permission to send notifications - please try again": "Riot nie otrzymał uprawnień do wysyłania powiadomień - proszę spróbuj ponownie",
"riot-web version:": "wersja riot-web:",
"Room %(roomId)s not visible": "Pokój %(roomId)s nie jest widoczny",
@@ -435,7 +433,6 @@
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "Podany klucz podpisu odpowiada kluczowi podpisania otrzymanemu z urządzenia %(userId)s %(deviceId)s. Urządzenie oznaczone jako zweryfikowane.",
"This email address is already in use": "Podany adres e-mail jest już w użyciu",
"This email address was not found": "Podany adres e-mail nie został znaleziony",
- "Must be viewing a room": "Musi być w trakcie wyświetlania pokoju",
"The email address linked to your account must be entered.": "Musisz wpisać adres e-mail połączony z twoim kontem.",
"The file '%(fileName)s' exceeds this home server's size limit for uploads": "Rozmiar pliku '%(fileName)s' przekracza możliwy limit do przesłania na serwer domowy",
"The file '%(fileName)s' failed to upload": "Przesyłanie pliku '%(fileName)s' nie powiodło się",
@@ -653,7 +650,7 @@
"Automatically replace plain text Emoji": "Automatycznie zastępuj tekstowe emotikony",
"Failed to upload image": "Przesyłanie obrazka nie powiodło się",
"%(count)s new messages|one": "%(count)s nowa wiadomość",
- "%(count)s new messages|other": "%(count)s nowe wiadomości",
+ "%(count)s new messages|other": "%(count)s nowych wiadomości",
"We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Zalecamy Ci przejście przez proces weryfikacyjny dla każdego urządzenia aby potwierdzić, że należy ono do ich prawdziwego właściciela. Możesz jednak wysłać tę wiadomość bez potwierdzania.",
"Unblacklist": "Usuń z czarnej listy",
"Blacklist": "Dodaj do czarnej listy",
@@ -755,9 +752,9 @@
"Unnamed room": "Pokój bez nazwy",
"Guests can join": "Goście mogą dołączyć",
"Remove avatar": "Usuń awatar",
- "Drop here to favourite": "Upuść to aby dodać do ulubionych",
- "Drop here to restore": "Upuść tu aby przywrócić",
- "Drop here to demote": "Upuść tu aby zdegradować",
+ "Drop here to favourite": "Upuść tutaj aby dodać do ulubionych",
+ "Drop here to restore": "Upuść tutaj aby przywrócić",
+ "Drop here to demote": "Upuść tutaj aby zdegradować",
"You have been kicked from this room by %(userName)s.": "Zostałeś usunięty z tego pokoju przez %(userName)s.",
"You have been banned from this room by %(userName)s.": "Zostałeś zbanowany z tego pokoju przez %(userName)s.",
"You are trying to access a room.": "Próbujesz uzyskać dostęp do pokoju.",
@@ -901,7 +898,6 @@
"Unable to fetch notification target list": "Nie można pobrać listy docelowej dla powiadomień",
"Set Password": "Ustaw hasło",
"Enable audible notifications in web client": "Włącz dźwiękowe powiadomienia w kliencie internetowym",
- "Permalink": "Odnośnik bezpośredni",
"Off": "Wyłącz",
"Riot does not know how to join a room on this network": "Riot nie wie, jak dołączyć do pokoju w tej sieci",
"Mentions only": "Tylko, gdy wymienieni",
@@ -922,5 +918,233 @@
"Collapse panel": "Ukryj panel",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Z Twoją obecną przeglądarką, wygląd oraz wrażenia z używania aplikacji mogą być niepoprawne, a niektóre funkcje wcale nie działać. Kontynuuj jeśli chcesz spróbować, jednak trudno będzie pomóc w przypadku błędów, które mogą nastąpić!",
"Checking for an update...": "Sprawdzanie aktualizacji...",
- "There are advanced notifications which are not shown here": "Masz zaawansowane powiadomienia, nie pokazane tutaj"
+ "There are advanced notifications which are not shown here": "Masz zaawansowane powiadomienia, nie pokazane tutaj",
+ "e.g. %(exampleValue)s": "np. %(exampleValue)s",
+ "Always show encryption icons": "Zawsze wyświetlaj ikony szyfrowania",
+ "Send analytics data": "Wysyłaj dane analityczne",
+ "%(duration)ss": "%(duration)ss",
+ "%(duration)sm": "%(duration)sm",
+ "%(duration)sh": "%(duration)sg",
+ "%(duration)sd": "%(duration)sd",
+ "%(user)s is a %(userRole)s": "%(user)s ma rolę %(userRole)s",
+ "Members only (since the point in time of selecting this option)": "Tylko członkowie (od momentu włączenia tej opcji)",
+ "Members only (since they were invited)": "Tylko członkowie (od kiedy zostali zaproszeni)",
+ "Members only (since they joined)": "Tylko członkowie (od kiedy dołączyli)",
+ "Copied!": "Skopiowano!",
+ "Failed to copy": "Kopiowanie nieudane",
+ "Message removed by %(userId)s": "Wiadomość usunięta przez %(userId)s",
+ "Message removed": "Wiadomość usunięta",
+ "An email has been sent to %(emailAddress)s": "Email został wysłany do %(emailAddress)s",
+ "A text message has been sent to %(msisdn)s": "Wysłano wiadomość tekstową do %(msisdn)s",
+ "Code": "Kod",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Pomóż nam ulepszyć Riot.im wysyłając anonimowe dane analityczne . Spowoduje to użycie pliku cookie (zobacz naszą Politykę plików cookie ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Pomóż nam ulepszyć Riot.im wysyłając anonimowe dane analityczne . Spowoduje to użycie pliku cookie.",
+ "Yes, I want to help!": "Tak, chcę pomóc!",
+ "Warning: This widget might use cookies.": "Uwaga: Ten widżet może używać ciasteczek.",
+ "Delete Widget": "Usuń widżet",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Usunięcie widżetu usuwa go dla wszystkich użytkowników w tym pokoju. Czy na pewno chcesz usunąć ten widżet?",
+ "Communities": "Społeczności",
+ "%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
+ "collapse": "Zwiń",
+ "expand": "Rozwiń",
+ "Custom of %(powerLevel)s": "Poziom niestandardowy %(powerLevel)s",
+ "In reply to ": "W odpowiedzi do ",
+ "Matrix ID": "Matrix ID",
+ "email address": "adres e-mail",
+ "example": "przykład",
+ "Advanced options": "Opcje zaawansowane",
+ "To continue, please enter your password:": "Aby kontynuować, proszę wprowadzić swoje hasło:",
+ "password": "hasło",
+ "Refresh": "Odśwież",
+ "Which officially provided instance you are using, if any": "Jakiej oficjalnej instancji używasz, jeżeli w ogóle",
+ "Every page you use in the app": "Każda strona, której używasz w aplikacji",
+ "e.g. ": "np. ",
+ "Your User Agent": "Identyfikator Twojej przeglądarki",
+ "Your device resolution": "Twoja rozdzielczość ekranu",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Dane identyfikujące, takie jak: pokój, identyfikator użytkownika lub grupy, są usuwane przed wysłaniem na serwer.",
+ "Who would you like to add to this community?": "Kogo chcesz dodać do tej społeczności?",
+ "Missing roomId.": "Brak identyfikatora pokoju (roomId).",
+ "Ignores a user, hiding their messages from you": "Ignoruje użytkownika ukrywając jego wiadomości przed Tobą",
+ "Stops ignoring a user, showing their messages going forward": "Przestaje ignorować użytkownika, zaczynaj pokazywać jego wiadomości od tego momentu",
+ "Opens the Developer Tools dialog": "Otwiera narzędzia deweloperskie",
+ "Encrypting": "Szyfrowanie",
+ "Encrypted, not sent": "Zaszyfrowane, nie wysłane",
+ "Disinvite this user?": "Anulować zaproszenie tego użytkownika?",
+ "Unignore": "Przestań ignorować",
+ "Jump to read receipt": "Przeskocz do potwierdzenia odczytu",
+ "Share Link to User": "Udostępnij link do użytkownika",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "W tej chwili nie można odpowiedzieć plikiem, więc zostanie wysłany nie będąc odpowiedzią.",
+ "Unable to reply": "Nie udało się odpowiedzieć",
+ "At this time it is not possible to reply with an emote.": "W tej chwili nie można odpowiedzieć emotikoną.",
+ "Replying": "Odpowiadanie",
+ "Share room": "Udostępnij pokój",
+ "Drop here to tag direct chat": "Upuść tutaj aby oznaczyć jako rozmowę bezpośrednią",
+ "Community Invites": "Zaproszenia do społeczności",
+ "To change the room's history visibility, you must be a": "Aby zmienić widoczność historii pokoju, musisz być",
+ "To change the permissions in the room, you must be a": "Aby zmienić uprawnienia pokoju, musisz być",
+ "To change the topic, you must be a": "Aby zmienić temat, musisz być",
+ "To modify widgets in the room, you must be a": "Aby modyfikować widżety w tym pokoju, musisz być",
+ "Banned by %(displayName)s": "Zbanowany przez %(displayName)s",
+ "To send messages, you must be a": "Aby wysyłać wiadomości, musisz być",
+ "To invite users into the room, you must be a": "Aby zapraszać użytkowników do pokoju, musisz być",
+ "To configure the room, you must be a": "Aby konfigurować pokój, musisz być",
+ "To kick users, you must be a": "Aby wyrzucać użytkowników, musisz być",
+ "To ban users, you must be a": "Aby blokować użytkowników, musisz być",
+ "To remove other users' messages, you must be a": "Aby usuwać wiadomości innych użytkowników, musisz być",
+ "To notify everyone in the room, you must be a": "Aby powiadamiać wszystkich w pokoju, musisz być",
+ "Muted Users": "Wyciszeni użytkownicy",
+ "To send events of type , you must be a": "Aby wysyłać zdarzenia typu , musisz być",
+ "Addresses": "Adresy",
+ "Invalid community ID": "Błędne ID społeczności",
+ "'%(groupId)s' is not a valid community ID": "'%(groupId)s' nie jest poprawnym ID społeczności",
+ "New community ID (e.g. +foo:%(localDomain)s)": "Nowe ID społeczności (np. +bla:%(localDomain)s)",
+ "URL previews are enabled by default for participants in this room.": "Podglądy linków są domyślnie włączone dla uczestników tego pokoju.",
+ "URL previews are disabled by default for participants in this room.": "Podglądy linków są domyślnie wyłączone dla uczestników tego pokoju.",
+ "Username on %(hs)s": "Nazwa użytkownika na %(hs)s",
+ "Remove from community": "Usuń ze społeczności",
+ "Disinvite this user from community?": "Anulować zaproszenie tego użytkownika ze społeczności?",
+ "Remove this user from community?": "Usunąć tego użytkownika ze społeczności?",
+ "Failed to withdraw invitation": "Nie udało się wycofać zaproszenia",
+ "Failed to remove user from community": "Nie udało się usunąć użytkownika ze społeczności",
+ "Filter community members": "Filtruj członków społeczności",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Czy na pewno chcesz usunąć '%(roomName)s' z %(groupId)s?",
+ "Removing a room from the community will also remove it from the community page.": "Usunięcie pokoju ze społeczności spowoduje także jego usunięcie ze strony społeczności.",
+ "Failed to remove room from community": "Nie udało się usunąć pokoju ze społeczności",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "Nie udało się usunąć '%(roomName)s' z %(groupId)s",
+ "The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "Widoczność '%(roomName)s' w %(groupId)s nie może być zaktualizowana.",
+ "Visibility in Room List": "Widoczność na liście pokojów",
+ "Visible to everyone": "Widoczny dla wszystkich",
+ "Only visible to community members": "Widoczny tylko dla członków społeczności",
+ "Filter community rooms": "Filtruj pokoje społeczności",
+ "Something went wrong when trying to get your communities.": "Coś poszło nie tak podczas pobierania Twoich społeczności.",
+ "You're not currently a member of any communities.": "Nie jesteś obecnie członkiem żadnej społeczności.",
+ "Minimize apps": "Zminimalizuj aplikacje",
+ "Reload widget": "Przeładuj widżet",
+ "Picture": "Zdjęcie",
+ "Matrix Room ID": "ID pokoju Matrix",
+ "You have entered an invalid address.": "Podałeś nieprawidłowy adres.",
+ "Try using one of the following valid address types: %(validTypesList)s.": "Spróbuj użyć jednego z następujących poprawnych typów adresów: %(validTypesList)s.",
+ "Riot bugs are tracked on GitHub: create a GitHub issue .": "Błędy Riot śledzone są na GitHubie: utwórz nowe zgłoszenie .",
+ "Community IDs cannot be empty.": "ID społeczności nie może być puste.",
+ "Community IDs may only contain characters a-z, 0-9, or '=_-./'": "ID społeczności może zawierać tylko znaki a-z, 0-9 lub '=_-./'",
+ "Something went wrong whilst creating your community": "Coś poszło nie tak podczas tworzenia Twojej społeczności",
+ "Create Community": "Utwórz społeczność",
+ "Community Name": "Nazwa społeczności",
+ "Community ID": "ID społeczności",
+ "Block users on other matrix homeservers from joining this room": "Blokuj użytkowników z innych serwerów Matrix przed dołączaniem do tego pokoju",
+ "This setting cannot be changed later!": "Tego ustawienia nie można zmienić później!",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "To sprawi, że Twoje konto stanie się na stałe niezdatne do użytku. Nie będziesz mógł się zalogować i nikt nie będzie mógł ponownie zarejestrować tego samego identyfikatora użytkownika. Spowoduje to, że Twoje konto opuści wszystkie pokoje, w których uczestniczy, i usunie dane Twojego konta z serwera tożsamości. Ta czynność jest nieodwracalna. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Dezaktywacja konta domyślnie nie powoduje, że skasowania wysłanych wiadomości. Jeśli chcesz, abyśmy zapomnieli o Twoich wiadomościach, zaznacz pole poniżej.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Widoczność wiadomości w Matrix jest podobna do wiadomości e-mail. Nasze zapomnienie wiadomości oznacza, że wysłane wiadomości nie będą udostępniane żadnym nowym lub niezarejestrowanym użytkownikom, ale zarejestrowani użytkownicy, którzy już mają dostęp do tych wiadomości, nadal będą mieli dostęp do ich kopii.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Proszę zapomnieć o wszystkich wiadomościach, które wysłałem, gdy moje konto jest wyłączone (Ostrzeżenie: spowoduje to, że przyszli użytkownicy zobaczą niepełny obraz rozmów)",
+ "Log out and remove encryption keys?": "Wylogować i usunąć klucze szyfrujące?",
+ "Clear Storage and Sign Out": "Wyczyść pamięć i wyloguj się",
+ "Send Logs": "Wyślij dzienniki",
+ "We encountered an error trying to restore your previous session.": "Napotkaliśmy błąd podczas przywracania poprzedniej sesji.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Wyczyszczenie pamięci przeglądarki może rozwiązać problem, ale wyloguje Cię i spowoduje, że jakakolwiek zaszyfrowana historia czatu stanie się nieczytelna.",
+ "Share Room": "Udostępnij pokój",
+ "Link to most recent message": "Link do najnowszej wiadomości",
+ "Share User": "Udostępnij użytkownika",
+ "Share Community": "Udostępnij Społeczność",
+ "Share Room Message": "Udostępnij wiadomość w pokoju",
+ "Link to selected message": "Link do zaznaczonej wiadomości",
+ "COPY": "KOPIUJ",
+ "Unable to reject invite": "Nie udało się odrzucić zaproszenia",
+ "Share Message": "Udostępnij wiadomość",
+ "Collapse Reply Thread": "Zwiń wątek odpowiedzi",
+ "HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "Strona HTML dla Twojej Społeczności \n\n Skorzystaj z długiego opisu aby wprowadzić nowych członków do Społeczności lub rozpowszechnić ważne linki .\n
\n\n Możesz nawet używać tagów 'img'.\n
\n",
+ "Add rooms to the community summary": "Dodaj pokoje do podsumowania Społeczności",
+ "Which rooms would you like to add to this summary?": "Które pokoje chcesz dodać do tego podsumowania?",
+ "Add to summary": "Dodaj do podsumowania",
+ "Failed to add the following rooms to the summary of %(groupId)s:": "Nie udało się dodać następujących pokojów do podsumowania %(groupId)s:",
+ "Add a Room": "Dodaj pokój",
+ "Failed to remove the room from the summary of %(groupId)s": "Nie udało się usunąć pokoju z podsumowania %(groupId)s",
+ "The room '%(roomName)s' could not be removed from the summary.": "Pokój '%(roomName)s' nie mógł być usunięty z podsumowania.",
+ "Add users to the community summary": "Dodaj użytkowników do podsumowania Społeczności",
+ "Who would you like to add to this summary?": "Kogo chcesz dodać do tego podsumowania?",
+ "Failed to add the following users to the summary of %(groupId)s:": "Nie udało się dodać następujących użytkowników do podsumowania %(groupId)s:",
+ "Add a User": "Dodaj użytkownika",
+ "Failed to remove a user from the summary of %(groupId)s": "Nie udało się usunąć użytkownika z podsumowania %(groupId)s",
+ "The user '%(displayName)s' could not be removed from the summary.": "Użytkownik '%(displayName)s' nie mógł być usunięty z podsumowania.",
+ "Failed to update community": "Nie udało się zaktualizować Społeczności",
+ "Unable to accept invite": "Nie udało się zaakceptować zaproszenia",
+ "Unable to join community": "Nie udało się dołączyć do Społeczności",
+ "Leave Community": "Opuść Społeczność",
+ "Leave %(groupName)s?": "Opuścić %(groupName)s?",
+ "Unable to leave community": "Nie udało się opuścić Społeczności",
+ "Community Settings": "Ustawienia Społeczności",
+ "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "Zmiany nazwy oraz awataru Twojej Społeczności mogą nie być widoczne przez innych użytkowników nawet przez 30 minut.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Te pokoje są wyświetlane członkom społeczności na stronie społeczności. Członkowie społeczności mogą dołączyć do pokoi, klikając je.",
+ "%(inviter)s has invited you to join this community": "%(inviter)s zaprosił Cię do przyłączenia się do tej Społeczności",
+ "Join this community": "Dołącz do tej Społeczności",
+ "Leave this community": "Opuść tę Społeczność",
+ "You are an administrator of this community": "Jesteś administratorem tej Społeczności",
+ "You are a member of this community": "Jesteś członkiem tej społeczności",
+ "Who can join this community?": "Kto może dołączyć do tej Społeczności?",
+ "Everyone": "Każdy",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "Twoja Społeczność nie ma długiego opisu, strony HTML, która będzie wyświetlana członkom społeczności. Kliknij tutaj, aby otworzyć ustawienia i nadać jej jakąś!",
+ "Long Description (HTML)": "Długi opis (HTML)",
+ "Description": "Opis",
+ "Community %(groupId)s not found": "Społeczność %(groupId)s nie znaleziona",
+ "This Home server does not support communities": "Ten serwer domowy nie wspiera Społeczności",
+ "Failed to load %(groupId)s": "Nie udało się załadować %(groupId)s",
+ "This room is not public. You will not be able to rejoin without an invite.": "Ten pokój nie jest publiczny. Nie będziesz w stanie do niego dołączyć bez zaproszenia.",
+ "Can't leave Server Notices room": "Nie można opuścić pokoju powiadomień serwera",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Ten pokój jest używany do ważnych wiadomości z serwera domowego, więc nie możesz go opuścić.",
+ "Terms and Conditions": "Warunki użytkowania",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Aby kontynuować używanie serwera domowego %(homeserverDomain)s musisz przejrzeć i zaakceptować nasze warunki użytkowania.",
+ "Review terms and conditions": "Przejrzyj warunki użytkowania",
+ "Old cryptography data detected": "Wykryto stare dane kryptograficzne",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Dane ze starszej wersji Riot zostały wykryte. Spowoduje to błędne działanie kryptografii typu end-to-end w starszej wersji. Wiadomości szyfrowane end-to-end wymieniane ostatnio podczas korzystania ze starszej wersji mogą być niemożliwe do odszyfrowywane w tej wersji. Może to również spowodować niepowodzenie wiadomości wymienianych z tą wersją. Jeśli wystąpią problemy, wyloguj się i zaloguj ponownie. Aby zachować historię wiadomości, wyeksportuj i ponownie zaimportuj klucze.",
+ "Your Communities": "Twoje Społeczności",
+ "Did you know: you can use communities to filter your Riot.im experience!": "Czy wiesz, że: możesz używać Społeczności do filtrowania swoich doświadczeń z Riot.im!",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "Aby ustawić filtr, przeciągnij awatar Społeczności do panelu filtra po lewej stronie ekranu. Możesz kliknąć awatar w panelu filtra w dowolnym momencie, aby zobaczyć tylko pokoje i osoby powiązane z tą społecznością.",
+ "Error whilst fetching joined communities": "Błąd podczas pobierania dołączonych społeczności",
+ "Create a new community": "Utwórz nową Społeczność",
+ "Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Utwórz Społeczność, aby grupować użytkowników i pokoje! Zbuduj niestandardową stronę główną, aby zaznaczyć swoją przestrzeń we wszechświecie Matrix.",
+ "Show devices , send anyway or cancel .": "Pokaż urządzenia , wyślij mimo to lub anuluj .",
+ "%(count)s of your messages have not been sent.|one": "Twoja wiadomość nie została wysłana.",
+ "There's no one else here! Would you like to invite others or stop warning about the empty room ?": "Nikogo tu nie ma! Czy chcesz zaprosić inne osoby lub przestać ostrzegać o pustym pokoju ?",
+ "Clear filter": "Wyczyść filtr",
+ "Light theme": "Jasny motyw",
+ "Dark theme": "Ciemny motyw",
+ "Status.im theme": "Motyw Status.im",
+ "Ignored Users": "Ignorowani użytkownicy",
+ "Debug Logs Submission": "Wysyłanie dzienników błędów",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Jeśli zgłosiłeś błąd za pośrednictwem GitHuba, dzienniki błędów mogą nam pomóc wyśledzić problem. Dzienniki błędów zawierają dane o użytkowaniu aplikacji, w tym nazwę użytkownika, identyfikatory lub aliasy odwiedzonych pomieszczeń lub grup oraz nazwy użytkowników innych użytkowników. Nie zawierają wiadomości.",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Prywatność jest dla nas ważna, dlatego nie gromadzimy żadnych danych osobowych ani danych identyfikujących w naszych analizach.",
+ "Learn more about how we use analytics.": "Dowiedz się więcej co analizujemy.",
+ "No Audio Outputs detected": "Nie wykryto wyjść audio",
+ "Audio Output": "Wyjście audio",
+ "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "E-mail został wysłany na adres %(emailAddress)s. Gdy otworzysz link, który zawiera, kliknij poniżej.",
+ "Please note you are logging into the %(hs)s server, not matrix.org.": "Zauważ proszę, że logujesz się na serwer %(hs)s, nie matrix.org.",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Ten serwer domowy nie oferuje żadnych trybów logowania wspieranych przez Twojego klienta.",
+ "Try the app first": "Najpierw wypróbuj aplikację",
+ "Sign in to get started": "Zaloguj się, aby rozpocząć",
+ "Notify the whole room": "Powiadom cały pokój",
+ "Room Notification": "Powiadomienia pokoju",
+ "Call Anyway": "Zadzwoń mimo to",
+ "Answer Anyway": "Odpowiedz mimo to",
+ "Demote yourself?": "Zdegradować siebie?",
+ "Demote": "Zdegraduj",
+ "Hide Stickers": "Ukryj Naklejki",
+ "Show Stickers": "Pokaż Naklejki",
+ "The email field must not be blank.": "Pole email nie może być puste.",
+ "The user name field must not be blank.": "Pole nazwy użytkownika nie może być puste.",
+ "The phone number field must not be blank.": "Pole numeru telefonu nie może być puste.",
+ "The password field must not be blank.": "Pole hasła nie może być puste.",
+ "Call Failed": "Nieudane połączenie",
+ "You have no historical rooms": "Nie masz żadnych historycznych pokoi",
+ "Flair": "Wyróżnik społeczności",
+ "Showing flair for these communities:": "Wyświetlanie wyróżników dla tych społeczności:",
+ "This room is not showing flair for any communities": "Ten pokój nie wyświetla wyróżników dla żadnych społeczności",
+ "Flair will appear if enabled in room settings": "Wyróżnik pojawi się, jeśli został włączony w ustawieniach pokoju",
+ "Flair will not appear": "Wyróżnik nie wyświetli się",
+ "%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)sdołączył",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Wyślij ponownie wiadomość lub anuluj wiadomość .",
+ "was invited %(count)s times|other": "został zaproszony %(count)s razy",
+ "was invited %(count)s times|one": "został zaproszony",
+ "was banned %(count)s times|one": "został zablokowany",
+ "was kicked %(count)s times|one": "został wyrzucony",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": ""
}
diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json
index d165c6c057..7cc80cfc78 100644
--- a/src/i18n/strings/pt.json
+++ b/src/i18n/strings/pt.json
@@ -83,7 +83,6 @@
"Kicks user with given id": "Remove usuário com o identificador informado",
"Labs": "Laboratório",
"Leave room": "Sair da sala",
- "Login as guest": "Entrar como visitante",
"Logout": "Sair",
"Low priority": "Baixa prioridade",
"Manage Integrations": "Gerenciar integrações",
@@ -217,7 +216,6 @@
"Drop here to tag %(section)s": "Arraste aqui para marcar como %(section)s",
"%(senderName)s ended the call.": "%(senderName)s finalizou a chamada.",
"Existing Call": "Chamada em andamento",
- "Failed to lookup current room": "Não foi possível buscar na sala atual",
"Failed to send email": "Falha ao enviar email",
"Failed to send request.": "Não foi possível mandar requisição.",
"Failed to set up conference call": "Não foi possível montar a chamada de conferência",
@@ -236,7 +234,6 @@
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s deixou o histórico futuro da sala visível para desconhecido (%(visibility)s).",
"Missing room_id in request": "Faltou o id da sala na requisição",
"Missing user_id in request": "Faltou o id de usuário na requisição",
- "Must be viewing a room": "Tem que estar visualizando uma sala",
"(not supported by this browser)": "(não é compatível com este navegador)",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s fez uma chamada de %(callType)s.",
"Power level must be positive integer.": "O nível de permissões tem que ser um número inteiro e positivo.",
@@ -826,7 +823,6 @@
"Unable to fetch notification target list": "Não foi possível obter a lista de alvos de notificação",
"Set Password": "Definir palavra-passe",
"Enable audible notifications in web client": "Ativar notificações de áudio no cliente web",
- "Permalink": "Link permanente",
"Off": "Desativado",
"Riot does not know how to join a room on this network": "O Riot não sabe como entrar numa sala nesta rede",
"Mentions only": "Apenas menções",
diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json
index 0a4d847805..08ad8a4bd5 100644
--- a/src/i18n/strings/pt_BR.json
+++ b/src/i18n/strings/pt_BR.json
@@ -83,7 +83,6 @@
"Kicks user with given id": "Remove usuário com o identificador informado",
"Labs": "Laboratório",
"Leave room": "Sair da sala",
- "Login as guest": "Entrar como visitante",
"Logout": "Sair",
"Low priority": "Baixa prioridade",
"Manage Integrations": "Gerenciar integrações",
@@ -217,7 +216,6 @@
"Drop here to tag %(section)s": "Arraste aqui para marcar como %(section)s",
"%(senderName)s ended the call.": "%(senderName)s finalizou a chamada.",
"Existing Call": "Chamada em andamento",
- "Failed to lookup current room": "Não foi possível buscar na sala atual",
"Failed to send email": "Não foi possível enviar email",
"Failed to send request.": "Não foi possível mandar requisição.",
"Failed to set up conference call": "Não foi possível montar a chamada de conferência",
@@ -236,7 +234,6 @@
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s deixou o histórico futuro da sala visível para desconhecido (%(visibility)s).",
"Missing room_id in request": "Faltou o id da sala na requisição",
"Missing user_id in request": "Faltou o id de usuário na requisição",
- "Must be viewing a room": "Tem que estar visualizando uma sala",
"(not supported by this browser)": "(não é compatível com este navegador)",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s fez uma chamada de %(callType)s.",
"Power level must be positive integer.": "O nível de permissões tem que ser um número inteiro e positivo.",
@@ -684,9 +681,7 @@
"%(names)s and %(count)s others are typing|other": "%(names)s e %(count)s outras pessoas estão escrevendo",
"%(names)s and %(count)s others are typing|one": "%(names)s e uma outra pessoa estão escrevendo",
"Send": "Enviar",
- "Message Replies": "Respostas",
"Message Pinning": "Fixar mensagem",
- "Tag Panel": "Painel de tags",
"Disable Emoji suggestions while typing": "Desativar sugestões de emojis enquanto estiver escrevendo",
"Hide join/leave messages (invites/kicks/bans unaffected)": "Ocultar mensagens de entrada e de saída (não afeta convites, expulsões e banimentos)",
"Hide avatar changes": "Ocultar alterações da imagem de perfil",
@@ -878,7 +873,7 @@
"email address": "endereço de e-mail",
"Try using one of the following valid address types: %(validTypesList)s.": "Tente usar um dos seguintes tipos de endereço válidos: %(validTypesList)s.",
"You have entered an invalid address.": "Você entrou com um endereço inválido.",
- "Community IDs cannot not be empty.": "IDs de comunidades não podem estar em branco.",
+ "Community IDs cannot be empty.": "IDs de comunidades não podem estar em branco.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "IDs de comunidade podem apenas ter os seguintes caracteres: a-z, 0-9, ou '=_-./'",
"Something went wrong whilst creating your community": "Algo deu errado ao criar sua comunidade",
"Create Community": "Criar comunidade",
@@ -933,8 +928,6 @@
"Error whilst fetching joined communities": "Erro baixando comunidades das quais você faz parte",
"Create a new community": "Criar nova comunidade",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Crie uma comunidade para agrupar em um mesmo local pessoas e salas! Monte uma página inicial personalizada para dar uma identidade ao seu espaço no universo Matrix.",
- "Join an existing community": "Entrar numa comunidade existente",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Para entrar em uma comunidade, você terá que conhecer o seu ID; um ID de comunidade normalmente tem este formato: +exemplo:matrix.org .",
"Show devices , send anyway or cancel .": "Exibir dispositivos , enviar assim mesmo ou cancelar .",
"%(count)s of your messages have not been sent.|one": "Sua mensagem não foi enviada.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Reenviar todas ou cancelar todas agora. Você também pode selecionar mensagens individualmente a serem reenviadas ou canceladas.",
@@ -1101,7 +1094,6 @@
"Unable to fetch notification target list": "Não foi possível obter a lista de alvos de notificação",
"Set Password": "Definir senha",
"Enable audible notifications in web client": "Ativar notificações de áudio no cliente web",
- "Permalink": "Link permanente",
"Off": "Desativado",
"Riot does not know how to join a room on this network": "O sistema não sabe como entrar na sala desta rede",
"Mentions only": "Apenas menções",
diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json
index 0514c133be..47f46279c4 100644
--- a/src/i18n/strings/ru.json
+++ b/src/i18n/strings/ru.json
@@ -1,6 +1,6 @@
{
"Account": "Аккаунт",
- "Add email address": "Добавить адрес email",
+ "Add email address": "Добавить email",
"Add phone number": "Добавить номер телефона",
"Admin": "Администратор",
"Advanced": "Подробности",
@@ -39,7 +39,7 @@
"Display name": "Отображаемое имя",
"Displays action": "Отображение действий",
"Ed25519 fingerprint": "Ed25519 отпечаток",
- "Email, name or matrix ID": "Email-адрес, имя или идентификатор",
+ "Email, name or matrix ID": "Email, имя или matrix ID",
"Emoji": "Смайлы",
"Encrypted messages will not be visible on clients that do not yet implement encryption": "Зашифрованные сообщения не будут видны в клиентах, еще не поддерживающих сквозное шифрование",
"Encrypted room": "Зашифрованная комната",
@@ -47,7 +47,7 @@
"End-to-end encryption is in beta and may not be reliable": "Сквозное шифрование сейчас в бета-тестировании и может не работать",
"Error": "Ошибка",
"Event information": "Информация о событии",
- "Export E2E room keys": "Экспорт ключей сквозного шифрования",
+ "Export E2E room keys": "Экспорт ключей шифрования",
"Failed to change password. Is your password correct?": "Не удалось сменить пароль. Вы правильно ввели текущий пароль?",
"Failed to leave room": "Не удалось выйти из комнаты",
"Failed to reject invitation": "Не удалось отклонить приглашение",
@@ -64,9 +64,9 @@
"Historical": "Архив",
"Homeserver is": "Домашний сервер это",
"Identity Server is": "Сервер идентификации это",
- "I have verified my email address": "Я подтвердил свой адрес email",
- "Import E2E room keys": "Импорт ключей сквозного шифрования",
- "Invalid Email Address": "Недопустимый адрес email",
+ "I have verified my email address": "Я подтвердил свой email",
+ "Import E2E room keys": "Импорт ключей шифрования",
+ "Invalid Email Address": "Недопустимый email",
"Invite new room members": "Пригласить в комнату новых участников",
"Invites": "Приглашения",
"Invites user with given id to current room": "Приглашает пользователя с заданным ID в текущую комнату",
@@ -75,7 +75,6 @@
"Kicks user with given id": "Выкидывает пользователя с заданным ID",
"Labs": "Лаборатория",
"Leave room": "Покинуть комнату",
- "Login as guest": "Войти как гость",
"Logout": "Выйти",
"Low priority": "Неважные",
"Manage Integrations": "Управление интеграциями",
@@ -103,9 +102,9 @@
"Settings": "Настройки",
"Start a chat": "Начать разговор",
"Start Chat": "Начать разговор",
- "Unable to add email address": "Не удается добавить адрес email",
+ "Unable to add email address": "Не удается добавить email",
"Unable to remove contact information": "Не удалось удалить контактную информацию",
- "Unable to verify email address.": "Не удалось проверить адрес email.",
+ "Unable to verify email address.": "Не удалось проверить email.",
"Unban": "Разблокировать",
"Unencrypted room": "Нешифрованная комната",
"unencrypted": "без шифрования",
@@ -156,10 +155,9 @@
"Drop here to tag %(section)s": "Перетащите сюда, чтобы пометить как %(section)s",
"%(senderName)s ended the call.": "%(senderName)s завершил(а) звонок.",
"Existing Call": "Текущий вызов",
- "Failed to lookup current room": "Не удалось найти текущую комнату",
"Failed to send request.": "Не удалось отправить запрос.",
"Failed to set up conference call": "Не удалось сделать конференц-звонок",
- "Failed to verify email address: make sure you clicked the link in the email": "Не удалось проверить email-адрес: убедитесь, что вы перешли по ссылке в письме",
+ "Failed to verify email address: make sure you clicked the link in the email": "Не удалось проверить email: убедитесь, что вы перешли по ссылке в письме",
"Failure to create room": "Не удалось создать комнату",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "для %(userId)s с %(fromPowerLevel)s на %(toPowerLevel)s",
"click to reveal": "нажмите для открытия",
@@ -175,7 +173,6 @@
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s сделал(а) историю комнаты видимой в неизвестном режиме (%(visibility)s).",
"Missing room_id in request": "Отсутствует room_id в запросе",
"Missing user_id in request": "Отсутствует user_id в запросе",
- "Must be viewing a room": "Вы должны просматривать комнату",
"(not supported by this browser)": "(не поддерживается этим браузером)",
"Connectivity to the server has been lost.": "Связь с сервером потеряна.",
"Sent messages will be stored until your connection has returned.": "Отправленные сообщения будут сохранены, пока соединение не восстановится.",
@@ -185,7 +182,7 @@
"Set a display name:": "Введите отображаемое имя:",
"Passwords don't match.": "Пароли не совпадают.",
"Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Пароль слишком короткий (мин. %(MIN_PASSWORD_LENGTH)s).",
- "This doesn't look like a valid email address.": "Это не похоже на допустимый адрес email.",
+ "This doesn't look like a valid email address.": "Это не похоже на допустимый email.",
"This server does not support authentication with a phone number.": "Этот сервер не поддерживает аутентификацию с помощью номера телефона.",
"User names may only contain letters, numbers, dots, hyphens and underscores.": "Имена пользователей могут содержать только буквы, цифры, точки, дефисы и символы подчеркивания.",
"An unknown error occurred.": "Произошла неизвестная ошибка.",
@@ -224,7 +221,7 @@
"Thu": "Чт",
"Fri": "Пт",
"Sat": "Сб",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ваш email-адрес не связан ни с одним пользователем на этом сервере.",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ваш email не связан ни с одним пользователем на этом сервере.",
"To use it, just wait for autocomplete results to load and tab through them.": "Чтобы воспользоваться этой функцией, дождитесь загрузки результатов в окне автодополнения, а затем используйте Tab для прокрутки.",
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s включил(а) в комнате сквозное шифрование (алгоритм %(algorithm)s).",
"%(senderName)s unbanned %(targetName)s.": "%(senderName)s разблокировал(а) %(targetName)s.",
@@ -337,7 +334,7 @@
"Success": "Успех",
"The default role for new room members is": "Права по умолчанию для новых участников комнаты",
"The main address for this room is": "Основной адрес этой комнаты",
- "This email address is already in use": "Этот email-адрес уже используется",
+ "This email address is already in use": "Этот email уже используется",
"This email address was not found": "Этот адрес электронной почты не найден",
"The email address linked to your account must be entered.": "Необходимо ввести адрес электронной почты, связанный с вашей учетной записью.",
"The file '%(fileName)s' failed to upload": "Не удалось отправить файл '%(fileName)s'",
@@ -403,8 +400,8 @@
"Device ID:": "ID устройства:",
"device id: ": "ID устройства: ",
"Device key:": "Ключ устройства:",
- "Email address": "Email-адрес",
- "Email address (optional)": "Email-адрес (необязательно)",
+ "Email address": "Email",
+ "Email address (optional)": "Email (необязательно)",
"Error decrypting attachment": "Ошибка расшифровки вложения",
"Export": "Экспорт",
"Failed to set avatar.": "Не удалось установить аватар.",
@@ -505,11 +502,11 @@
"Sign in with CAS": "Войти с помощью CAS",
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Вы можете войти на другой сервер Matrix, указав его URL-адрес.",
"This allows you to use this app with an existing Matrix account on a different home server.": "Это позволяет использовать приложение с учетной записью Matrix на другом сервере.",
- "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Кроме того, можно выбрать другой сервер идентификации, однако в таком случае вы, скорее всего, не сможете взаимодействовать с пользователями посредством их email-адресов.",
+ "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Кроме того, можно выбрать другой сервер идентификации, однако в таком случае вы, скорее всего, не сможете взаимодействовать с пользователями посредством их emailов.",
"Please check your email to continue registration.": "Чтобы продолжить регистрацию, проверьте электронную почту.",
"Token incorrect": "Неверный код проверки",
"Please enter the code it contains:": "Введите полученный код:",
- "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Если не указать email-адрес, вы не сможете при необходимости сбросить свой пароль. Уверены?",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Если не указать email, вы не сможете при необходимости сбросить свой пароль. Уверены?",
"You are registering with %(SelectedTeamName)s": "Вы регистрируетесь в %(SelectedTeamName)s",
"Default server": "Сервер по умолчанию",
"Custom server": "Другой сервер",
@@ -595,7 +592,7 @@
"Seen by %(userName)s at %(dateTime)s": "Прочитано %(userName)s в %(dateTime)s",
"Send anyway": "Отправить в любом случае",
"Show Text Formatting Toolbar": "Показать инструменты форматирования текста",
- "This invitation was sent to an email address which is not associated with this account:": "Это приглашение было отправлено на email-адрес, не связанный с вашей учетной записью:",
+ "This invitation was sent to an email address which is not associated with this account:": "Это приглашение было отправлено на email, не связанный с вашей учетной записью:",
"To link to a room it must have an address .": "Чтобы иметь возможность ссылаться на комнату, ей нужно присвоить адрес .",
"Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Не удалось установить, что адрес в этом приглашении соответствует вашей учетной записи.",
"Undecryptable": "Невозможно расшифровать",
@@ -611,7 +608,7 @@
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Не удается подключиться к домашнему серверу - проверьте подключение, убедитесь, что ваш SSL-сертификат домашнего сервера является доверенным и что расширение браузера не блокирует запросы.",
"You have been banned from %(roomName)s by %(userName)s.": "%(userName)s заблокировал(а) вас в %(roomName)s.",
"You have been kicked from %(roomName)s by %(userName)s.": "%(userName)s выгнал(а) вас из %(roomName)s.",
- "You may wish to login with a different account, or add this email to this account.": "При желании вы можете войти в систему под другим именем или привязать этот email-адрес к вашей учетной записи.",
+ "You may wish to login with a different account, or add this email to this account.": "При желании вы можете войти в систему под другим именем или привязать этот email к вашей учетной записи.",
"Your home server does not support device management.": "Ваш сервер не поддерживает управление устройствами.",
"(could not connect media)": "(сбой подключения)",
"(no answer)": "(нет ответа)",
@@ -620,7 +617,7 @@
"Not a valid Riot keyfile": "Недействительный файл ключей Riot",
"Your browser does not support the required cryptography extensions": "Ваш браузер не поддерживает требуемые криптографические расширения",
"Authentication check failed: incorrect password?": "Ошибка аутентификации: возможно, неправильный пароль?",
- "Do you want to set an email address?": "Хотите указать email-адрес?",
+ "Do you want to set an email address?": "Хотите указать email?",
"This will allow you to reset your password and receive notifications.": "Это позволит при необходимости сбросить пароль и получать уведомления.",
"Press to start a chat with someone": "Нажмите , чтобы начать разговор с кем-либо",
"You're not in any rooms yet! Press to make a room or to browse the directory": "Вы еще не вошли ни в одну из комнат! Нажмите , чтобы создать комнату, или , чтобы посмотреть каталог комнат",
@@ -737,7 +734,7 @@
"Failed to add the following rooms to %(groupId)s:": "Не удалось добавить эти комнаты в %(groupId)s:",
"Matrix ID": "Matrix ID",
"Matrix Room ID": "Matrix ID комнаты",
- "email address": "адрес email",
+ "email address": "email",
"Try using one of the following valid address types: %(validTypesList)s.": "Попробуйте использовать один из следующих допустимых типов адресов: %(validTypesList)s.",
"You have entered an invalid address.": "Введен неправильный адрес.",
"Unpin Message": "Открепить сообщение",
@@ -788,8 +785,6 @@
"Error whilst fetching joined communities": "Ошибка при загрузке сообществ",
"Create a new community": "Создать новое сообщество",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Создайте сообщество для объединения пользователей и комнат! Создайте собственную домашнюю страницу, чтобы выделить свое пространство во вселенной Matrix.",
- "Join an existing community": "Присоединиться к существующему сообществу",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Чтобы присоединиться к существующему сообществу, вам нужно знать его ID; это будет выглядеть примерно так+primer:matrix.org .",
"Something went wrong whilst creating your community": "При создании сообщества что-то пошло не так",
"%(names)s and %(count)s others are typing|other": "%(names)s и еще %(count)s печатают",
"And %(count)s more...|other": "Еще %(count)s…",
@@ -909,7 +904,6 @@
"Unknown for %(duration)s": "Неизвестно %(duration)s",
"There's no one else here! Would you like to invite others or stop warning about the empty room ?": "Здесь никого нет! Хотите пригласить кого-нибудь или выключить предупреждение о пустой комнате ?",
"Something went wrong when trying to get your communities.": "Что-то пошло не так при попытке получить список ваших сообществ.",
- "Tag Panel": "Панель тегов",
"Delete %(count)s devices|other": "Удалить (%(count)s)",
"Delete %(count)s devices|one": "Удалить",
"Select devices": "Выбрать",
@@ -938,14 +932,13 @@
"%(count)s of your messages have not been sent.|one": "Ваше сообщение не было отправлено.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Отправить все или отменить все сейчас. Можно также выбрать отдельные сообщения для отправки или отмены.",
"%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Отправить или отменить сообщение сейчас.",
- "Message Replies": "Сообщения-ответы",
"Send an encrypted reply…": "Отправить зашифрованный ответ…",
"Send a reply (unencrypted)…": "Отправить ответ (нешифрованный)…",
"Send an encrypted message…": "Отправить зашифрованное сообщение…",
"Send a message (unencrypted)…": "Отправить сообщение (нешифрованное)…",
"Replying": "Отвечает",
"Minimize apps": "Свернуть приложения",
- "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Конфиденциальность важна для нас, поэтому мы не собираем никаких личных или идентифицируемых данных для нашей аналитики.",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Конфиденциальность важна для нас, поэтому мы не собираем никаких личных или идентифицирующих данных для нашей аналитики.",
"Learn more about how we use analytics.": "Подробнее о том, как мы используем аналитику.",
"The information being sent to us to help make Riot.im better includes:": "Информация, отправляемая нам, чтобы помочь нам сделать Riot.im лучше, включает в себя:",
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Если на этой странице встречаются сведения личного характера, например имя комнаты, имя пользователя или группы, они удаляются перед отправкой на сервер.",
@@ -960,7 +953,7 @@
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Используете ли вы режим Richtext в редакторе Rich Text Editor",
"This room is not public. You will not be able to rejoin without an invite.": "Эта комната не является публичной. Вы не сможете войти без приглашения.",
"Show devices , send anyway or cancel .": "Показать устройства , отправить в любом случае или отменить .",
- "Community IDs cannot not be empty.": "ID сообществ не могут быть пустыми.",
+ "Community IDs cannot be empty.": "ID сообществ не могут быть пустыми.",
"In reply to ": "В ответ на ",
"%(oldDisplayName)s changed their display name to %(displayName)s.": "%(oldDisplayName)s изменил(а) отображаемое имя на %(displayName)s.",
"Failed to set direct chat tag": "Не удалось установить тег прямого чата",
@@ -1008,7 +1001,7 @@
"Friday": "Пятница",
"Update": "Обновить",
"What's New": "Что изменилось",
- "Add an email address above to configure email notifications": "Добавьте email-адрес выше для настройки email-уведомлений",
+ "Add an email address above to configure email notifications": "Добавьте email выше для настройки уведомлений",
"Expand panel": "Развернуть панель",
"On": "Включить",
"%(count)s Members|other": "%(count)s членов",
@@ -1064,7 +1057,7 @@
"Tuesday": "Вторник",
"Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой:",
"Search…": "Поиск…",
- "You have successfully set a password and an email address!": "Вы успешно установили пароль и адрес email!",
+ "You have successfully set a password and an email address!": "Вы успешно установили пароль и email!",
"Remove %(name)s from the directory?": "Удалить %(name)s из каталога?",
"Riot uses many advanced browser features, some of which are not available or experimental in your current browser.": "Riot использует многие передовые возможности браузера, некоторые из которых недоступны или являются экспериментальным в вашем текущем браузере.",
"Developer Tools": "Инструменты разработчика",
@@ -1073,7 +1066,7 @@
"Explore Account Data": "Просмотр данных аккаунта",
"All messages (noisy)": "Все сообщения (со звуком)",
"Saturday": "Суббота",
- "Remember, you can always set an email address in user settings if you change your mind.": "Помните, что вы всегда сможете задать адрес email в настройках пользователя, если передумаете.",
+ "Remember, you can always set an email address in user settings if you change your mind.": "Помните, что вы всегда сможете задать email в настройках пользователя, если передумаете.",
"Direct Chat": "Прямой чат",
"The server may be unavailable or overloaded": "Сервер, вероятно, недоступен или перегружен",
"Reject": "Отклонить",
@@ -1125,13 +1118,12 @@
"Unable to fetch notification target list": "Не удалось получить список устройств для уведомлений",
"Set Password": "Задать пароль",
"Enable audible notifications in web client": "Включить звуковые уведомления в веб-клиенте",
- "Permalink": "Постоянная ссылка",
"Off": "Выключить",
"Riot does not know how to join a room on this network": "Riot не знает, как присоединиться к комнате, принадлежащей к этой сети",
"Mentions only": "Только при упоминаниях",
"Wednesday": "Среда",
"You can now return to your account after signing out, and sign in on other devices.": "Теперь вы сможете вернуться к своей учетной записи после выхода из системы и войти на других устройствах.",
- "Enable email notifications": "Включить уведомления по email",
+ "Enable email notifications": "Включить уведомления на email",
"Event Type": "Тип мероприятия",
"Download this file": "Скачать файл",
"Pin Message": "Закрепить сообщение",
@@ -1163,7 +1155,68 @@
"We encountered an error trying to restore your previous session.": "Произошла ошибка при попытке восстановить предыдущий сеанс.",
"Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Очистка хранилища вашего браузера может устранить проблему, но при этом ваша сессия будет завершена и зашифрованная история чата станет нечитаемой.",
"Unable to reply": "Не удается ответить",
- "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не удается загрузить событие, на которое был дан ответ, либо оно не существует, либо у вас нет разрешения на его просмотр.",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не удается загрузить событие, на которое был дан ответ. Либо оно не существует, либо у вас нет разрешения на его просмотр.",
"Enable widget screenshots on supported widgets": "Включить скриншоты виджета в поддерживаемых виджетах",
- "Collapse Reply Thread": "Ответить с цитированием"
+ "Collapse Reply Thread": "Ответить с цитированием",
+ "Send analytics data": "Отправить данные аналитики",
+ "Muted Users": "Приглушенные пользователи",
+ "Warning: This widget might use cookies.": "Внимание: этот виджет может использовать cookie.",
+ "Terms and Conditions": "Условия и положения",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Для продолжения использования сервера %(homeserverDomain)s вы должны ознакомиться и принять условия и положения.",
+ "Review terms and conditions": "Просмотр условий и положений",
+ "e.g. %(exampleValue)s": "напр. %(exampleValue)s",
+ "Failed to indicate account erasure": "Не удается удалить учетную запись",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Это навсегда сделает вашу учетную запись невозможной для использования. Вы не сможете войти в систему, и никто не сможет перерегистрировать тот же идентификатор пользователя. Это приведет к тому, что ваша учетная запись выйдет из всех комнат, в которые она входит, и будут удалены данные вашей учетной записи с сервера идентификации. Это действие необратимо. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "По умолчанию деактивация вашей учетной записи не приведет к удалению всех ваших сообщений. Если вы хотите, чтобы мы удалили ваши сообщения, поставьте отметку в поле ниже.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Видимость сообщений в Matrix похожа на электронную почту. Удаление ваших сообщений означает, что отправленные вами сообщения не будут видны новым или незарегистрированным пользователям, но зарегистрированные пользователи, у которых уже есть доступ к этим сообщениям, по-прежнему будут иметь доступ к своей копии.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Пожалуйста, удалите все сообщения, которые я отправил, после деактивации учетной записи. (Внимание: будущие пользователи увидят неполный вид разговоров)",
+ "To continue, please enter your password:": "Чтобы продолжить, введите пароль:",
+ "password": "пароль",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Пожалуйста, помогите улучшить Riot.im, отправляя анонимные данные использования . При этом будут использоваться cookie (ознакомьтесь с нашейПолитикой cookie ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Пожалуйста, помогите улучшить Riot.im, отправляя анонимные данные использования . При этом будут использоваться cookie.",
+ "Yes, I want to help!": "Да, я хочу помочь!",
+ "Reload widget": "Перезагрузить виджет",
+ "To notify everyone in the room, you must be a": "Для уведомления всех в комнате, вы должны быть",
+ "Can't leave Server Notices room": "Невозможно покинуть комнату сервера уведомлений",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Эта комната используется для важных сообщений от сервера, поэтому вы не можете ее покинуть.",
+ "Try the app first": "Сначала попробуйте приложение",
+ "Encrypting": "Шифрование",
+ "Encrypted, not sent": "Зашифровано, не отправлено",
+ "No Audio Outputs detected": "Аудиовыход не обнаружен",
+ "Audio Output": "Аудиовыход",
+ "Share Link to User": "Поделиться ссылкой с пользователем",
+ "Share room": "Поделиться комнатой",
+ "Share Room": "Поделиться комнатой",
+ "Link to most recent message": "Ссылка на последнее сообщение",
+ "Share User": "Поделиться пользователем",
+ "Share Community": "Поделиться сообществом",
+ "Link to selected message": "Ссылка на выбранное сообщение",
+ "COPY": "КОПИРОВАТЬ",
+ "Jitsi Conference Calling": "Конференц-связь Jitsi",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "В зашифрованных комнатах, подобных этой, предварительный просмотр URL-адресов отключен по умолчанию, чтобы гарантировать, что ваш сервер (где создаются предварительные просмотры) не может собирать информацию о ссылках, которые вы видите в этой комнате.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Когда кто-то вставляет URL-адрес в свое сообщение, может быть отображен предварительный просмотр URL-адреса, чтобы предоставить дополнительную информацию об этой ссылке, такую как название, описание и изображение с веб-сайта.",
+ "The email field must not be blank.": "Поле email не должно быть пустым.",
+ "The user name field must not be blank.": "Поле имени пользователя не должно быть пустым.",
+ "The phone number field must not be blank.": "Поле номера телефона не должно быть пустым.",
+ "The password field must not be blank.": "Поле пароля не должно быть пустым.",
+ "Call in Progress": "Выполнение вызова",
+ "A call is already in progress!": "Вызов выполняется!",
+ "You have no historical rooms": "У вас нет архивных комнат",
+ "Share Room Message": "Обмен сообщениями в комнате",
+ "Share Message": "Обмен сообщениями",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Вы не можете отправлять сообщения до тех пор, пока вы не примете наши правила и положения .",
+ "Demote": "Понижение",
+ "Demote yourself?": "Понизить самого себя?",
+ "This event could not be displayed": "Это событие отобразить невозможно",
+ "deleted": "удален",
+ "underlined": "подчеркнутый",
+ "A conference call could not be started because the intgrations server is not available": "Запуск конференции невозможен из-за недоступности сервера интеграции",
+ "Permission Required": "Требуется разрешение",
+ "You do not have permission to start a conference call in this room": "У вас нет разрешения на запуск конференции в этой комнате",
+ "A call is currently being placed!": "Есть активный вызов!",
+ "Failed to remove widget": "Не удалось удалить виджет",
+ "An error ocurred whilst trying to remove the widget from the room": "Произошла ошибка при удалении виджета из комнаты",
+ "System Alerts": "Системные оповещения",
+ "Please contact your service administrator to continue using this service.": "Для продолжения использования этого сервиса обратитесь к администратору.",
+ "Room version number: ": "Номер версии комнаты: "
}
diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json
index c7f38cff35..a343c44066 100644
--- a/src/i18n/strings/sk.json
+++ b/src/i18n/strings/sk.json
@@ -60,7 +60,7 @@
"Riot was not given permission to send notifications - please try again": "Aplikácii Riot neboli udelené oprávnenia potrebné pre posielanie oznámení - prosím, skúste to znovu",
"Unable to enable Notifications": "Nie je možné povoliť oznámenia",
"This email address was not found": "Túto emailovú adresu sa nepodarilo nájsť",
- "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Zdá sa, že vaša emailová adresa nie je priradená k žiadnemu Matrix ID na tomto domovskom servery.",
+ "Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Zdá sa, že vaša emailová adresa nie je priradená k žiadnemu Matrix ID na tomto domovskom serveri.",
"Default": "Predvolené",
"Moderator": "Moderátor",
"Admin": "Správca",
@@ -84,10 +84,8 @@
"You are not in this room.": "Nenachádzate sa v tejto miestnosti.",
"You do not have permission to do that in this room.": "V tejto miestnosti nemáte oprávnenie na vykonanie takejto akcie.",
"Missing room_id in request": "V požiadavke chýba room_id",
- "Must be viewing a room": "Musí byť zobrazená miestnosť",
"Room %(roomId)s not visible": "Miestnosť %(roomId)s nie je viditeľná",
"Missing user_id in request": "V požiadavke chýba user_id",
- "Failed to lookup current room": "Nepodarilo sa vyhľadať aktuálnu miestnosť",
"Usage": "Použitie",
"/ddg is not a command": "/ddg nie je žiaden príkaz",
"To use it, just wait for autocomplete results to load and tab through them.": "Ak to chcete použiť, len počkajte na načítanie výsledkov automatického dopĺňania a cyklicky prechádzajte stláčaním klávesu tab..",
@@ -120,7 +118,7 @@
"%(targetName)s rejected the invitation.": "%(targetName)s odmietol pozvanie.",
"%(targetName)s left the room.": "%(targetName)s opustil miestnosť.",
"%(senderName)s unbanned %(targetName)s.": "%(senderName)s povolil vstup %(targetName)s.",
- "%(senderName)s kicked %(targetName)s.": "%(senderName)s vykopol %(targetName)s.",
+ "%(senderName)s kicked %(targetName)s.": "%(senderName)s vykázal %(targetName)s.",
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s stiahol pozvanie %(targetName)s.",
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s zmenil tému na \"%(topic)s\".",
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s odstránil názov miestnosti.",
@@ -221,10 +219,10 @@
"Unverified": "Neoverené",
"device id: ": "ID zariadenia: ",
"Disinvite": "Stiahnuť pozvanie",
- "Kick": "Vykopnúť",
+ "Kick": "Vykázať",
"Disinvite this user?": "Stiahnuť pozvanie tohoto používateľa?",
- "Kick this user?": "Vykopnúť tohoto používateľa?",
- "Failed to kick": "Nepodarilo sa vykopnúť",
+ "Kick this user?": "Vykázať tohoto používateľa?",
+ "Failed to kick": "Nepodarilo sa vykázať",
"Unban": "Povoliť vstup",
"Ban": "Zakázať vstup",
"Unban this user?": "Povoliť vstúpiť tomuto používateľovi?",
@@ -328,8 +326,8 @@
"Would you like to accept or decline this invitation?": "Chcete prijať alebo odmietnuť toto pozvanie?",
"Reason: %(reasonText)s": "Dôvod: %(reasonText)s",
"Rejoin": "Vstúpiť znovu",
- "You have been kicked from %(roomName)s by %(userName)s.": "Používateľ %(userName)s vás vykopol z miestnosti %(roomName)s.",
- "You have been kicked from this room by %(userName)s.": "Používateľ %(userName)s vás vykopol z tejto miestnosti.",
+ "You have been kicked from %(roomName)s by %(userName)s.": "Používateľ %(userName)s vás vykázal z miestnosti %(roomName)s.",
+ "You have been kicked from this room by %(userName)s.": "Používateľ %(userName)s vás vykázal z tejto miestnosti.",
"You have been banned from %(roomName)s by %(userName)s.": "Používateľ %(userName)s vám zakázal vstúpiť do miestnosti %(roomName)s.",
"You have been banned from this room by %(userName)s.": "Používateľ %(userName)s vám zakázal vstúpiť do tejto miestnosti.",
"This room": "Táto miestnosť",
@@ -366,7 +364,7 @@
"Privileged Users": "Poverení používatelia",
"No users have specific privileges in this room": "Žiadny používatelia nemajú v tejto miestnosti pridelené konkrétne poverenia",
"Banned users": "Používatelia, ktorým bol zakázaný vstup",
- "This room is not accessible by remote Matrix servers": "Táto miestnosť nie je prístupná cez vzdialené Matrix servery",
+ "This room is not accessible by remote Matrix servers": "Táto miestnosť nie je prístupná zo vzdialených Matrix serverov",
"Leave room": "Opustiť miestnosť",
"Favourite": "Obľúbená",
"Tagged as: ": "Označená ako: ",
@@ -377,7 +375,7 @@
"Only people who have been invited": "Len pozvaní ľudia",
"Anyone who knows the room's link, apart from guests": "Ktokoľvek, kto pozná odkaz do miestnosti (okrem hostí)",
"Anyone who knows the room's link, including guests": "Ktokoľvek, kto pozná odkaz do miestnosti (vrátane hostí)",
- "Publish this room to the public in %(domain)s's room directory?": "Uverejniť túto miestnosť v adresáry miestností na servery %(domain)s?",
+ "Publish this room to the public in %(domain)s's room directory?": "Uverejniť túto miestnosť v adresári miestností na serveri %(domain)s?",
"Who can read history?": "Kto môže čítať históriu?",
"Anyone": "Ktokoľvek",
"Members only (since the point in time of selecting this option)": "Len členovia (odkedy je aktívna táto voľba)",
@@ -389,7 +387,7 @@
"To send messages, you must be a": "Aby ste mohli posielať správy, musíte byť",
"To invite users into the room, you must be a": "Aby ste mohli pozývať používateľov do miestnosti, musíte byť",
"To configure the room, you must be a": "Aby ste mohli nastavovať miestnosť, musíte byť",
- "To kick users, you must be a": "Aby ste mohli vykopávať používateľov, musíte byť",
+ "To kick users, you must be a": "Aby ste mohli vykazovať používateľov, musíte byť",
"To ban users, you must be a": "Aby ste používateľom mohli zakazovať vstup, musíte byť",
"To remove other users' messages, you must be a": "Aby ste mohli odstraňovať správy, ktoré poslali iní používatelia, musíte byť",
"To send events of type , you must be a": "Aby ste mohli posielať udalosti typu , musíte byť",
@@ -439,7 +437,7 @@
"Sign in with CAS": "Prihlásiť sa s použitím CAS",
"Custom Server Options": "Vlastné možnosti servera",
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Vlastné nastavenia servera môžete použiť na pripojenie k iným serverom Matrix a to zadaním URL adresy domovského servera.",
- "This allows you to use this app with an existing Matrix account on a different home server.": "Umožní vám to použiť túto aplikáciu s už existujúcim Matrix účtom na akomkoľvek domovskom servery.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Umožní vám to použiť túto aplikáciu s už existujúcim Matrix účtom na akomkoľvek domovskom serveri.",
"You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Môžete tiež zadať vlastnú adresu servera totožností, čo však za štandardných okolností znemožní interakcie medzi používateľmi založené emailovou adresou.",
"Dismiss": "Zamietnuť",
"To continue, please enter your password.": "Aby ste mohli pokračovať, prosím zadajte svoje heslo.",
@@ -454,7 +452,7 @@
"User name": "Meno používateľa",
"Mobile phone number": "Číslo mobilného telefónu",
"Forgot your password?": "Zabudli ste heslo?",
- "%(serverName)s Matrix ID": "Matrix ID na servery %(serverName)s",
+ "%(serverName)s Matrix ID": "Matrix ID na serveri %(serverName)s",
"Sign in with": "Na prihlásenie sa použije",
"Email address": "Emailová adresa",
"Sign in": "Prihlásiť sa",
@@ -541,10 +539,10 @@
"were unbanned %(count)s times|one": "mali povolený vstup",
"was unbanned %(count)s times|other": "mal %(count)s krát povolený vstup",
"was unbanned %(count)s times|one": "mal povolený vstup",
- "were kicked %(count)s times|other": "boli %(count)s krát vykopnutí",
- "were kicked %(count)s times|one": "boli vykopnutí",
- "was kicked %(count)s times|other": "bol %(count)s krát vykopnutý",
- "was kicked %(count)s times|one": "bol vykopnutý",
+ "were kicked %(count)s times|other": "boli %(count)s krát vykázaní",
+ "were kicked %(count)s times|one": "boli vykázaní",
+ "was kicked %(count)s times|other": "bol %(count)s krát vykázaný",
+ "was kicked %(count)s times|one": "bol vykázaný",
"%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)ssi %(count)s krát zmenili meno",
"%(severalUsers)schanged their name %(count)s times|one": "%(severalUsers)ssi zmenili meno",
"%(oneUser)schanged their name %(count)s times|other": "%(oneUser)ssi %(count)s krát zmenil meno",
@@ -623,7 +621,7 @@
"An error occurred: %(error_string)s": "Vyskytla sa chyba: %(error_string)s",
"Username available": "Používateľské meno je k dispozícii",
"To get started, please pick a username!": "Začnite tým, že si zvolíte používateľské meno!",
- "This will be your account name on the homeserver, or you can pick a different server .": "Toto bude názov vašeho účtu na domovskom servery , alebo si môžete zvoliť iný server .",
+ "This will be your account name on the homeserver, or you can pick a different server .": "Toto bude názov vašeho účtu na domovskom serveri , alebo si môžete zvoliť iný server .",
"If you already have a Matrix account you can log in instead.": "Ak už máte Matrix účet, môžete sa hneď Prihlásiť .",
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Momentálne sa ku všetkym neovereným zariadeniam správate ako by boli na čiernej listine; aby ste na tieto zariadenia mohli posielať správy, mali by ste ich overiť.",
"We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Odporúčame vám prejsť procesom overenia pre všetky tieto zariadenia aby ste si potvrdili, že skutočne patria ich pravým vlastníkom, ak si to však želáte, môžete tiež znovu poslať správu bez overovania.",
@@ -691,8 +689,6 @@
"Error whilst fetching joined communities": "Pri získavaní vašich komunít sa vyskytla chyba",
"Create a new community": "Vytvoriť novú komunitu",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Vytvorte si komunitu s cieľom zoskupiť miestnosti a používateľov! Zostavte si vlastnú domovskú stránku a vymedzte tak svoj priestor vo svete Matrix.",
- "Join an existing community": "Vstúpiť do existujúcej komunity",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Aby ste mohli vstúpiť do existujúcej komunity, musíte poznať jej identifikátor; Mal by vizerať nejako takto +priklad:matrix.org .",
"You have no visible notifications": "Nie sú k dispozícii žiadne oznámenia",
"Scroll to bottom of page": "Posunúť na spodok stránky",
"Connectivity to the server has been lost.": "Spojenie so serverom bolo prerušené.",
@@ -729,13 +725,13 @@
"Don't send typing notifications": "Neposielať oznámenia keď píšete",
"Always show message timestamps": "Vždy zobrazovať časovú značku správ",
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Pri zobrazovaní časových značiek používať 12 hodinový formát (napr. 2:30pm)",
- "Hide join/leave messages (invites/kicks/bans unaffected)": "Skryť správy o vstupe a opustení miestnosti (netýka sa pozvaní/vykopnutí/zákazov vstupu)",
+ "Hide join/leave messages (invites/kicks/bans unaffected)": "Skryť správy o vstupe a opustení miestnosti (netýka sa pozvaní/vykázaní/zákazov vstupu)",
"Use compact timeline layout": "Použiť kompaktné rozloženie časovej osy",
"Hide removed messages": "Skryť odstránené správy",
"Enable automatic language detection for syntax highlighting": "Povoliť automatickú detegciu jazyka pre zvýrazňovanie syntaxe",
"Automatically replace plain text Emoji": "Automaticky nahrádzať textové Emoji",
"Disable Emoji suggestions while typing": "Zakázať návrhy Emoji počas písania",
- "Hide avatars in user and room mentions": "Skryť avatarov pri zmienkach miestností a používateľov",
+ "Hide avatars in user and room mentions": "Skryť profilové obrázky pri zmienkach miestností a používateľov",
"Disable big emoji in chat": "Zakázať veľké Emoji v konverzácii",
"Mirror local video feed": "Zrkadliť lokálne video",
"Disable Peer-to-Peer for 1:1 calls": "Zakázať P2P počas priamych volaní",
@@ -779,8 +775,8 @@
"No media permissions": "Žiadne oprávnenia k médiám",
"You may need to manually permit Riot to access your microphone/webcam": "Mali by ste aplikácii Riot ručne udeliť právo pristupovať k mikrofónu a kamere",
"Missing Media Permissions, click here to request.": "Kliknutím sem vyžiadate chýbajúce oprávnenia na prístup k mediálnym zariadeniam.",
- "No Microphones detected": "Neboli nájdené žiadne mikrofóny",
- "No Webcams detected": "Neboli nájdené žiadne kamery",
+ "No Microphones detected": "Neboli rozpoznané žiadne mikrofóny",
+ "No Webcams detected": "Neboli rozpoznané žiadne kamery",
"Default Device": "Predvolené zariadenie",
"Microphone": "Mikrofón",
"Camera": "Kamera",
@@ -817,12 +813,11 @@
"Create an account": "Vytvoriť účet",
"This Home Server does not support login using email address.": "Tento domovský server nepodporuje prihlasovanie sa emailom.",
"Incorrect username and/or password.": "Nesprávne meno používateľa a / alebo heslo.",
- "Guest access is disabled on this Home Server.": "Na tomto domovskom servery je zakázaný prístup pre hostí.",
+ "Guest access is disabled on this Home Server.": "Na tomto domovskom serveri je zakázaný prístup pre hostí.",
"The phone number entered looks invalid": "Zdá sa, že zadané telefónne číslo je neplatné",
"Error: Problem communicating with the given homeserver.": "Chyba: Nie je možné komunikovať so zadaným domovským serverom.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "K domovskému serveru nie je možné pripojiť sa použitím protokolu HTTP keďže v adresnom riadku prehliadača máte HTTPS adresu. Použite protokol HTTPS alebo povolte nezabezpečené skripty .",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Nie je možné pripojiť sa k domovskému serveru - skontrolujte prosím funkčnosť vašeho pripojenia na internet, uistite sa že certifikát domovského servera je dôverihodný, a že žiaden doplnok nainštalovaný v prehliadači nemôže blokovať požiadavky.",
- "Login as guest": "Prihlásiť sa ako hosť",
"Failed to fetch avatar URL": "Nepodarilo sa získať URL adresu obrázka",
"Set a display name:": "Nastaviť zobrazované meno:",
"Upload an avatar:": "Nahrať obrázok:",
@@ -843,7 +838,7 @@
"Invites user with given id to current room": "Pošle používateľovi so zadaným ID pozvanie do tejto miestnosti",
"Joins room with given alias": "Vstúpi do miestnosti so zadaným aliasom",
"Sets the room topic": "Nastaví tému miestnosti",
- "Kicks user with given id": "Vykopne používateľa so zadaným ID",
+ "Kicks user with given id": "Vykáže používateľa so zadaným ID",
"Changes your display nickname": "Zmení vaše zobrazované meno",
"Searches DuckDuckGo for results": "Vyhľadá výsledky na DuckDuckGo",
"Changes colour scheme of current room": "Zmení farebnú schému aktuálnej miestnosti",
@@ -889,7 +884,7 @@
"Sign in to get started": "Začnite prihlásením sa",
"Status.im theme": "Téma status.im",
"Please note you are logging into the %(hs)s server, not matrix.org.": "Všimnite si: Práve sa prihlasujete na server %(hs)s, nie na server matrix.org.",
- "Username on %(hs)s": "Meno používateľa na servery %(hs)s",
+ "Username on %(hs)s": "Meno používateľa na serveri %(hs)s",
"Restricted": "Obmedzené",
"Hide avatar changes": "Skryť zmeny obrázka v profile",
"Hide display name changes": "Skryť zmeny zobrazovaného mena",
@@ -908,7 +903,6 @@
"Call": "Hovor",
"Answer": "Prijať",
"Send": "Odoslať",
- "Tag Panel": "Panel so značkami",
"Delete %(count)s devices|other": "Vymazať %(count)s zariadení",
"Delete %(count)s devices|one": "Vymazať zariadenie",
"Select devices": "Vybrať zariadenia",
@@ -935,7 +929,6 @@
"Flair will not appear": "Príslušnosť ku komunite nebude zobrazená",
"Display your community flair in rooms configured to show it.": "Zobrazovať vašu príslušnosť ku komunite v miestnostiach, ktoré sú nastavené na zobrazovanie tejto príslušnosti.",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
- "Message Replies": "Odpovede na správy",
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Túto zmenu nebudete môcť vrátiť späť pretože znižujete vašu vlastnú úroveň moci. Ak ste jediný poverený používateľ v miestnosti, nebudete môcť znovu získať úroveň, akú máte teraz.",
"Send an encrypted reply…": "Odoslať šifrovanú odpoveď…",
"Send a reply (unencrypted)…": "Odoslať odpoveď (nešifrovanú)…",
@@ -964,7 +957,7 @@
"Failed to remove tag %(tagName)s from room": "Z miestnosti sa nepodarilo odstrániť značku %(tagName)s",
"Failed to add tag %(tagName)s to room": "Miestnosti sa nepodarilo pridať značku %(tagName)s",
"In reply to ": "Odpoveď na ",
- "Community IDs cannot not be empty.": "ID komunity nemôže ostať prázdne.",
+ "Community IDs cannot be empty.": "ID komunity nemôže ostať prázdne.",
"Show devices , send anyway or cancel .": "Zobraziť zariadenia , napriek tomu odoslať alebo zrušiť .",
"Disable Community Filter Panel": "Zakázať panel Filter komunity",
"Your key share request has been sent - please check your other devices for key share requests.": "Žiadosť o zdieľanie kľúčov bola odoslaná - Overte si zobrazenie žiadosti o zdieľanie kľúčov na vašich ostatných zariadeniach.",
@@ -1102,7 +1095,7 @@
"When I'm invited to a room": "Pozvania vstúpiť do miestnosti",
"Can't update user notification settings": "Nie je možné aktualizovať používateľské nastavenia oznamovania",
"Notify for all other messages/rooms": "oznamovať všetky ostatné správy / miestnosti",
- "Unable to look up room ID from server": "Nie je možné vyhľadať ID miestnosti na servery",
+ "Unable to look up room ID from server": "Nie je možné vyhľadať ID miestnosti na serveri",
"Couldn't find a matching Matrix room": "Nie je možné nájsť zodpovedajúcu Matrix miestnosť",
"Invite to this room": "Pozvať do tejto miestnosti",
"You cannot delete this message. (%(code)s)": "Nemôžete vymazať túto správu. (%(code)s)",
@@ -1126,7 +1119,6 @@
"Set Password": "Nastaviť Heslo",
"An error occurred whilst saving your email notification preferences.": "Počas ukladania vašich nastavení oznamovania emailom sa vyskytla chyba.",
"Enable audible notifications in web client": "Povoliť zvukové oznámenia vo webovom klientovi",
- "Permalink": "Trvalý odkaz",
"Off": "Zakázané",
"Riot does not know how to join a room on this network": "Riot nedokáže vstúpiť do miestnosti na tejto sieti",
"Mentions only": "Len zmienky",
@@ -1166,5 +1158,69 @@
"Refresh": "Obnoviť",
"We encountered an error trying to restore your previous session.": "Počas obnovovania vašej predchádzajúcej relácie sa vyskytla chyba.",
"Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Vymazaním úložiska prehliadača možno opravíte váš problém, no zároveň sa týmto odhlásite a história vašich šifrovaných konverzácií sa pre vás môže stať nečitateľná.",
- "Collapse Reply Thread": "Zbaliť vlákno odpovedí"
+ "Collapse Reply Thread": "Zbaliť vlákno odpovedí",
+ "e.g. %(exampleValue)s": "príklad %(exampleValue)s",
+ "Reload widget": "Obnoviť widget",
+ "Send analytics data": "Odosielať analytické údaje",
+ "Enable widget screenshots on supported widgets": "Umožniť zachytiť snímku obrazovky pre podporované widgety",
+ "Muted Users": "Umlčaní používatelia",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Prosím pomôžte nám vylepšovať Riot.im odosielaním anonymných údajov o používaní . Na tento účel použijeme cookie (prečítajte si ako používame cookies ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Prosím pomôžte nám vylepšovať Riot.im odosielaním anonymných údajov o používaní . Na tento účel použijeme cookie.",
+ "Yes, I want to help!": "Áno, chcem pomôcť",
+ "Warning: This widget might use cookies.": "Pozor: tento widget môže používať cookies.",
+ "Failed to indicate account erasure": "Nie je možné odstrániť odoslané správy",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Toto spôsobí, že váš účet nebude viac použiteľný. Nebudete sa môcť opätovne prihlásiť a nikto sa nebude môcť znovu zaregistrovať s rovnakým používateľským ID. Deaktiváciou účtu opustíte všetky miestnosti, do ktorých ste kedy vstúpili a vaše kontaktné údaje budú odstránené zo servera totožností. Túto akciu nie je možné vrátiť späť. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Pri deaktivácii účtu predvolene neodstraňujeme vami odoslané správy. Ak si želáte uplatniť právo zabudnutia, zaškrtnite prosím zodpovedajúce pole nižšie.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Viditeľnosť správ odoslaných cez matrix funguje podobne ako viditeľnosť správ elektronickej pošty. To, že zabudneme vaše správy v skutočnosti znamená, že správy ktoré ste už odoslali nebudú čitateľné pre nových alebo neregistrovaných používateľov, no registrovaní používatelia, ktorí už prístup k vašim správam majú, budú aj naďalej bez zmeny môcť pristupovať k ich vlastným kópiám vašich správ.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Spolu s deaktivovaním účtu si želám odstrániť všetky mnou odoslané správy (Pozor: Môže sa stať, že noví používatelia uvidia neúplnú históriu konverzácií)",
+ "To continue, please enter your password:": "Aby ste mohli pokračovať, prosím zadajte svoje heslo:",
+ "password": "heslo",
+ "Can't leave Server Notices room": "Nie je možné opustiť miestnosť Oznamy zo servera",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Táto miestnosť je určená na dôležité oznamy a správy od správcov domovského servera, preto ju nie je možné opustiť.",
+ "Terms and Conditions": "Zmluvné podmienky",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Ak chcete aj naďalej používať domovský server %(homeserverDomain)s, mali by ste si prečítať a odsúhlasiť naše zmluvné podmienky.",
+ "Review terms and conditions": "Prečítať zmluvné podmienky",
+ "To notify everyone in the room, you must be a": "Aby ste mohli upozorňovať všetkých členov v miestnosti, musíte byť",
+ "Encrypting": "Šifrovanie",
+ "Encrypted, not sent": "Zašifrované, ale neodoslané",
+ "Share Link to User": "Zdieľať odkaz na používateľa",
+ "Share room": "Zdieľaj miestnosť",
+ "Share Room": "Zdieľať miestnosť",
+ "Link to most recent message": "Odkaz na najnovšiu správu",
+ "Share User": "Zdieľať používateľa",
+ "Share Community": "Zdieľať komunitu",
+ "Link to selected message": "Odkaz na vybratú správu",
+ "COPY": "Kopírovať",
+ "Share Message": "Zdieľaj správu",
+ "No Audio Outputs detected": "Neboli rozpoznané žiadne zvukové výstupy",
+ "Audio Output": "Výstup zvuku",
+ "Try the app first": "Vyskúšať si aplikáciu",
+ "Share Room Message": "Zdieľať správu z miestnosti",
+ "The email field must not be blank.": "Email nemôže ostať prázdny.",
+ "The user name field must not be blank.": "Používateľské meno nemôže ostať prázdne.",
+ "The phone number field must not be blank.": "Telefónne číslo nemôže ostať prázdne.",
+ "The password field must not be blank.": "Heslo nemôže ostať prázdne.",
+ "Jitsi Conference Calling": "Konferenčné hovory Jitsi",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Náhľady URL adries sú v šifrovaných miestnostiach ako je táto predvolene zakázané, aby ste si mohli byť istí, že obsah odkazov z vašej konverzácii nebude zaznamenaný na vašom domovskom serveri počas ich generovania.",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Ak niekto vo svojej správe pošle URL adresu, môže byť zobrazený jej náhľad obsahujúci názov, popis a obrázok z cieľovej web stránky.",
+ "Call in Progress": "Prebiehajúci hovor",
+ "A call is already in progress!": "Jeden hovor už prebieha!",
+ "You have no historical rooms": "Nemáte žiadne historické miestnosti",
+ "A conference call could not be started because the intgrations server is not available": "Nie je možné uskutočniť konferenčný hovor, integračný server nie je k dispozícii",
+ "A call is currently being placed!": "Práve prebieha iný hovor!",
+ "Permission Required": "Vyžaduje sa oprávnenie",
+ "You do not have permission to start a conference call in this room": "V tejto miestnosti nemáte oprávnenie začať konferenčný hovor",
+ "Show empty room list headings": "Zobrazovať nadpisy prázdnych zoznamov miestností",
+ "This event could not be displayed": "Nie je možné zobraziť túto udalosť",
+ "Demote yourself?": "Znížiť vlastnú úroveň moci?",
+ "Demote": "Znížiť",
+ "deleted": "Odstránené",
+ "underlined": "Podčiarknuté",
+ "inline-code": "Vnorený kód",
+ "block-quote": "Citácia",
+ "bulleted-list": "Odrážkový zoznam",
+ "numbered-list": "Číselný zoznam",
+ "Failed to remove widget": "Nepodarilo sa odstrániť widget",
+ "An error ocurred whilst trying to remove the widget from the room": "Pri odstraňovaní widgetu z miestnosti sa vyskytla chyba",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Nemôžete posielať žiadne správy, kým si neprečítate a neodsúhlasíte naše zmluvné podmienky ."
}
diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json
index 2936695a6d..680c63e458 100644
--- a/src/i18n/strings/sq.json
+++ b/src/i18n/strings/sq.json
@@ -106,9 +106,7 @@
"Power level must be positive integer.": "Niveli fuqie duhet të jetë numër i plotë pozitiv.",
"You are not in this room.": "Ti nuk je në këtë dhomë.",
"You do not have permission to do that in this room.": "Nuk ke leje të bësh këtë në këtë dhomë.",
- "Must be viewing a room": "Duhet të shikohet një dhomë",
"Room %(roomId)s not visible": "Dhoma %(roomId)s e padukshme",
- "Failed to lookup current room": "Dhoma aktuale nuk mundi të kërkohej",
"Usage": "Përdorimi",
"/ddg is not a command": "/ddg s'është komandë",
"To use it, just wait for autocomplete results to load and tab through them.": "Për të përdorur, thjesht prit derisa të mbushën rezultatat vetëplotësuese dhe pastaj shfletoji.",
@@ -269,7 +267,6 @@
"Set Password": "Caktoni Fjalëkalim",
"An error occurred whilst saving your email notification preferences.": "Ndodhi një gabim teksa ruheshin parapëlqimet tuaja për njoftime me email.",
"Enable audible notifications in web client": "Aktivizoni njoftime audio te klienti web",
- "Permalink": "Permalidhje",
"Register": "Regjistrohuni",
"Off": "Off",
"Edit": "Përpunoni",
diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json
index ebacd28a5c..3f842e4457 100644
--- a/src/i18n/strings/sr.json
+++ b/src/i18n/strings/sr.json
@@ -85,7 +85,6 @@
"You are not in this room.": "Нисте у овој соби.",
"You do not have permission to do that in this room.": "Немате овлашћење да урадите то у овој соби.",
"Missing room_id in request": "Недостаје room_id у захтеву",
- "Must be viewing a room": "Морате гледати собу",
"Room %(roomId)s not visible": "Соба %(roomId)s није видљива",
"Missing user_id in request": "Недостаје user_id у захтеву",
"Call Failed": "Позивање неуспешно",
@@ -97,7 +96,6 @@
"Answer": "Одговори",
"Call Timeout": "Прекорачено време позивања",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
- "Failed to lookup current room": "Неуспех при потраживању тренутне собе",
"Usage": "Коришћење",
"/ddg is not a command": "/ddg није наредба",
"To use it, just wait for autocomplete results to load and tab through them.": "Да бисте је користили, само сачекајте да се исходи самодовршавања учитају и табом прођите кроз њих.",
@@ -170,9 +168,7 @@
"Not a valid Riot keyfile": "Није исправана Riot кључ-датотека",
"Authentication check failed: incorrect password?": "Провера идентитета није успела: нетачна лозинка?",
"Failed to join room": "Нисам успео да уђем у собу",
- "Message Replies": "Одговори",
"Message Pinning": "Закачене поруке",
- "Tag Panel": "Означи површ",
"Disable Emoji suggestions while typing": "Онемогући предлагање емоџија приликом куцања",
"Use compact timeline layout": "Користи збијени распоред временске линије",
"Hide removed messages": "Сакриј уклоњене поруке",
@@ -645,7 +641,7 @@
"Confirm Removal": "Потврди уклањање",
"Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Да ли сте сигурни да желите уклонити (обрисати) овај догађај? Знајте да брисање назива собе или мењање теме може опозвати измену.",
"Community IDs may only contain characters a-z, 0-9, or '=_-./'": "ИБ-јеви заједнице могу садржати само знакове a-z, 0-9, или '=_-./'",
- "Community IDs cannot not be empty.": "ИБ-јеви заједнице не могу бити празни.",
+ "Community IDs cannot be empty.": "ИБ-јеви заједнице не могу бити празни.",
"Something went wrong whilst creating your community": "Нешто је пошло наопако приликом стварања ваше заједнице",
"Create Community": "Направи заједницу",
"Community Name": "Назив заједнице",
@@ -778,8 +774,6 @@
"Error whilst fetching joined communities": "Грешка приликом добављања списка са приступљеним заједницама",
"Create a new community": "Направи нову заједницу",
"Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Направите заједницу да бисте спојили кориснике и собе! Направите прилагођену почетну страницу да бисте означили ваш кутак у Матрикс универзуму.",
- "Join an existing community": "Приступи већ постојећој заједници",
- "To join an existing community you'll have to know its community identifier; this will look something like +example:matrix.org .": "Да бисте приступили већ постојећој заједници, морате знати њен идентификатор заједнице. Ово изгледа нешто као +primer:matrix.org .",
"You have no visible notifications": "Немате видљивих обавештења",
"Scroll to bottom of page": "Превуци на дно странице",
"Message not sent due to unknown devices being present": "Порука се неће послати због присутности непознатих уређаја",
@@ -903,7 +897,6 @@
"Error: Problem communicating with the given homeserver.": "Грешка: проблем у комуницирању са датим кућним сервером.",
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts .": "Не могу да се повежем на кућни сервер преко HTTP-а када се користи HTTPS адреса у траци вашег прегледача. Или користите HTTPS или омогућите небезбедне скрипте .",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Не могу да се повежем на кућни сервер. Проверите вашу интернет везу, постарајте се да верујете SSL сертификату кућног сервера и да проширење прегледача не блокира захтеве.",
- "Login as guest": "Пријави се као гост",
"Sign in to get started": "Пријави се да почнеш",
"Failed to fetch avatar URL": "Нисам успео да добавим адресу аватара",
"Set a display name:": "Постави приказно име:",
@@ -1101,7 +1094,6 @@
"Set Password": "Постави лозинку",
"An error occurred whilst saving your email notification preferences.": "Догодила се грешка при чувању ваших поставки мејл обавештења.",
"Enable audible notifications in web client": "Омогући звучна обавештења у веб клијенту",
- "Permalink": "Трајна веза",
"Resend": "Поново пошаљи",
"Riot does not know how to join a room on this network": "Riot не зна како да приступи соби на овој мрежи",
"Mentions only": "Само спомињања",
@@ -1161,5 +1153,61 @@
"Clear Storage and Sign Out": "Очисти складиште и одјави ме",
"Refresh": "Освежи",
"We encountered an error trying to restore your previous session.": "Наишли смо на грешку приликом повраћаја ваше претходне сесије.",
- "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Чишћење складишта вашег прегледача може решити проблем али ће вас то одјавити и учинити шифровани историјат ћаскања нечитљивим."
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Чишћење складишта вашег прегледача може решити проблем али ће вас то одјавити и учинити шифровани историјат ћаскања нечитљивим.",
+ "e.g. %(exampleValue)s": "нпр.: %(exampleValue)s",
+ "Reload widget": "Поново учитај виџет",
+ "Send analytics data": "Пошаљи аналитичке податке",
+ "Enable widget screenshots on supported widgets": "Омогући снимке екрана виџета у подржаним виџетима",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "У овом тренутку није могуће одговорити са датотеком тако да ово неће бити послато у облику одговора.",
+ "Unable to reply": "Не могу да одговорим",
+ "At this time it is not possible to reply with an emote.": "У овом тренутку није могуће одговорити са емотиконом.",
+ "To notify everyone in the room, you must be a": "Да бисте обавестили све у соби, морате бити",
+ "Muted Users": "Утишани корисници",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Помозите побољшавање Riot.im програма тако што ћете послати анонимне податке о коришћењу . Ово ће захтевати коришћење колачића (погледајте нашу политику о колачићима ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Помозите побољшавање Riot.im програма тако што ћете послати анонимне податке о коришћењу . Ово ће захтевати коришћење колачића.",
+ "Yes, I want to help!": "Да, желим помоћи!",
+ "Warning: This widget might use cookies.": "Упозорење: овај виџет ће можда користити колачиће.",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не могу да учитам догађај на који је послат одговор, или не постоји или немате овлашћење да га погледате.",
+ "Failed to indicate account erasure": "Неуспех при наговештавању да је налог обрисан",
+ "To continue, please enter your password:": "Да бисте наставили, унесите вашу лозинку:",
+ "password": "лозинка",
+ "Collapse Reply Thread": "Скупи нит са одговорима",
+ "Can't leave Server Notices room": "Не могу да напустим собу са напоменама сервера",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Ова соба се користи за важне поруке са Кућног сервера, не можете изаћи из ове собе.",
+ "Terms and Conditions": "Услови коришћења",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Да бисте наставили са коришћењем Кућног сервера %(homeserverDomain)s морате погледати и пристати на наше услове коришћења.",
+ "Review terms and conditions": "Погледај услове коришћења",
+ "Try the app first": "Пробајте прво апликацију",
+ "Jitsi Conference Calling": "Jitsi конференцијско позивање",
+ "Encrypting": "Шифрујем",
+ "Encrypted, not sent": "Шифровано, непослато",
+ "Share Link to User": "Подели везу са корисником",
+ "Share room": "Подели собу",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Ово ће учинити ваш налог трајно неупотребљивим. Нећете моћи да се пријавите и нико се неће моћи поново регистровати са истим корисничким ИБ-јем. Ово ће учинити да ваш налог напусти све собе у којима учествује и уклониће појединости вашег налога са идентитетског сервера. Ова радња се не може опозвати. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Деактивирањем вашег налога се ваше поруке неће заборавити. Ако желите да заборавимо ваше поруке, штиклирајте кућицу испод.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Видљивост порука у Матриксу је слична мејловима. Оне поруке које заборавимо нећемо делити са новим и нерегистрованим корисницима али постојећи корисници који су имали приступ овим порукама ће и даље моћи да виде своју копију.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Заборавите све моје поруке које сам послао када се мој налог деактивира (Упозорење: овим ће будући корисници видети непотпуне разговоре)",
+ "Share Room": "Подели собу",
+ "Link to most recent message": "Веза ка најновијој поруци",
+ "Share User": "Подели корисника",
+ "Share Community": "Подели заједницу",
+ "Share Room Message": "Подели поруку у соби",
+ "Link to selected message": "Веза ка изабраној поруци",
+ "COPY": "КОПИРАЈ",
+ "Share Message": "Подели поруку",
+ "No Audio Outputs detected": "Нема уочених излаза звука",
+ "Audio Output": "Излаз звука",
+ "A conference call could not be started because the intgrations server is not available": "Конференцијски позив не може почети зато што интеграцијски сервер није доступан",
+ "Call in Progress": "Позив је у току",
+ "A call is currently being placed!": "Успостављамо позив!",
+ "A call is already in progress!": "Позив је у току!",
+ "Permission Required": "Неопходна је дозвола",
+ "You do not have permission to start a conference call in this room": "Немате дозволу да започињете конференцијски позив у овој соби",
+ "Show empty room list headings": "Прикажи листу наслова празних соба",
+ "This event could not be displayed": "Овај догађај не може бити приказан",
+ "Demote yourself?": "Снизите чин себи?",
+ "Demote": "Снизите чин",
+ "deleted": "обрисано",
+ "underlined": "подвучено",
+ "You have no historical rooms": "Ваша историја соба је празна"
}
diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json
index 5a4c247c47..9f806495cf 100644
--- a/src/i18n/strings/sv.json
+++ b/src/i18n/strings/sv.json
@@ -35,12 +35,12 @@
"Are you sure you want to leave the room '%(roomName)s'?": "Vill du lämna rummet '%(roomName)s'?",
"Are you sure you want to upload the following files?": "Vill du ladda upp följande filer?",
"Autoplay GIFs and videos": "Spela automatiskt upp GIFar och videor",
- "Are you sure you want to reject the invitation?": "Vill du avvisa inbjudan?",
+ "Are you sure you want to reject the invitation?": "Är du säker på att du vill avböja inbjudan?",
"Bulk Options": "Volymhandlingar",
"Blacklisted": "Svartlistad",
"%(senderName)s banned %(targetName)s.": "%(senderName)s bannade %(targetName)s.",
"Banned users": "Bannade användare",
- "Bans user with given id": "Bannar användaren med givet ID",
+ "Bans user with given id": "Bannar användare med givet id",
"Ban": "Banna",
"Attachment": "Bilaga",
"Call Timeout": "Samtalstimeout",
@@ -58,7 +58,7 @@
"Clear Cache and Reload": "Töm cache och ladda om",
"Clear Cache": "Töm cache",
"Click here to fix": "Klicka här för att fixa",
- "Click to mute audio": "Klicka för att dämpa ljud",
+ "Click to mute audio": "Klicka för att tysta ljud",
"Click to mute video": "Klicka för att stänga av video",
"click to reveal": "klicka för att avslöja",
"Click to unmute video": "Klicka för att sätta på video",
@@ -74,18 +74,18 @@
"Continue": "Fortsätt",
"Could not connect to the integration server": "Det gick inte att ansluta till integrationsservern",
"Create an account": "Skapa ett konto",
- "Create Room": "Skapa ett rum",
+ "Create Room": "Skapa rum",
"Cryptography": "Kryptografi",
"Current password": "Nuvarande lösenord",
"Curve25519 identity key": "Curve25519 -identitetsnyckel",
- "Custom level": "Egen nivå",
+ "Custom level": "Anpassad nivå",
"/ddg is not a command": "/ddg är inte ett kommando",
- "Deactivate Account": "Deaktivera konto",
+ "Deactivate Account": "Inaktivera konto",
"Deactivate my account": "Deaktivera mitt konto",
"Decrypt %(text)s": "Dekryptera %(text)s",
"Decryption error": "Dekrypteringsfel",
"Delete": "Radera",
- "Deops user with given id": "Degraderar användaren med givet id",
+ "Deops user with given id": "Degraderar användare med givet id",
"Default": "Standard",
"Device already verified!": "Enheten är redan verifierad!",
"Device ID": "Enhets-ID",
@@ -94,11 +94,11 @@
"Device key:": "Enhetsnyckel:",
"Devices": "Enheter",
"Devices will not yet be able to decrypt history from before they joined the room": "Enheter kan inte ännu dekryptera meddelandehistorik från före de gick med i rummet",
- "Direct chats": "Direkta chattar",
+ "Direct chats": "Direkt-chattar",
"Disinvite": "Häv inbjudan",
"Display name": "Namn",
- "Displays action": "Visar handling",
- "Don't send typing notifications": "Sänd inte \"skriver\"-status",
+ "Displays action": "Visar åtgärd",
+ "Don't send typing notifications": "Skicka inte \"skriver\"-status",
"Download %(text)s": "Ladda ner %(text)s",
"Drop here to tag %(section)s": "Dra hit för att tagga %(section)s",
"Ed25519 fingerprint": "Ed25519-fingeravtryck",
@@ -107,7 +107,7 @@
"Email address (optional)": "Epostadress (valfri)",
"Email, name or matrix ID": "Epostadress, namn, eller Matrix-ID",
"Emoji": "Emoji",
- "Enable encryption": "Sätt på kryptering",
+ "Enable encryption": "Aktivera kryptering",
"Encrypted messages will not be visible on clients that do not yet implement encryption": "Krypterade meddelanden syns inte på klienter som inte ännu stöder kryptering",
"Encrypted room": "Krypterat rum",
"%(senderName)s ended the call.": "%(senderName)s avslutade samtalet.",
@@ -122,20 +122,19 @@
"Export E2E room keys": "Exportera krypteringsrumsnycklar",
"Failed to ban user": "Det gick inte att banna användaren",
"Failed to change password. Is your password correct?": "Det gick inte att byta lösenord. Är lösenordet rätt?",
- "Failed to change power level": "Det gick inte att ändra maktnivå",
+ "Failed to change power level": "Det gick inte att ändra behörighetsnivå",
"Failed to forget room %(errCode)s": "Det gick inte att glömma bort rummet %(errCode)s",
"Failed to join room": "Det gick inte att gå med i rummet",
"Failed to kick": "Det gick inte att kicka",
"Failed to leave room": "Det gick inte att lämna rummet",
"Failed to load timeline position": "Det gick inte att hämta positionen på tidslinjen",
- "Failed to lookup current room": "Det gick inte att hämta det nuvarande rummet",
- "Failed to mute user": "Det gick inte att dämpa användaren",
+ "Failed to mute user": "Det gick inte att tysta användaren",
"Failed to reject invite": "Det gick inte att avböja inbjudan",
"Failed to reject invitation": "Det gick inte att avböja inbjudan",
"Failed to save settings": "Det gick inte att spara inställningarna",
"Failed to send email": "Det gick inte att skicka epost",
"Failed to send request.": "Det gick inte att sända begäran.",
- "Failed to set avatar.": "Det gick inte att sätta profilbilden.",
+ "Failed to set avatar.": "Misslyckades med att ange avatar.",
"Failed to set display name": "Det gick inte att sätta namnet",
"Failed to set up conference call": "Det gick inte att starta konferenssamtalet",
"Failed to toggle moderator status": "Det gick inte att växla moderator-status",
@@ -149,8 +148,8 @@
"Add": "Lägg till",
"Admin Tools": "Admin-verktyg",
"Alias (optional)": "Alias (valfri)",
- "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Det gick inte att ansluta till servern - kontrollera anslutningen, försäkra att din hemservers TLS-certifikat är betrott, och att inget webbläsartillägg blockerar förfrågningar.",
- "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s ändrade maktnivån av %(powerLevelDiffText)s.",
+ "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Det gick inte att ansluta till hemservern - kontrollera anslutningen, se till att hemserverns SSL-certifikat är betrott, och att inget webbläsartillägg blockerar förfrågningar.",
+ "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s ändrade behörighetsnivå för %(powerLevelDiffText)s.",
"Click here to join the discussion!": "Klicka här för att gå med i diskussionen!",
"Close": "Stäng",
"%(count)s new messages|one": "%(count)s nytt meddelande",
@@ -165,7 +164,7 @@
"Encrypted by an unverified device": "Krypterat av en overifierad enhet",
"Encryption is enabled in this room": "Kryptering är aktiverat i det här rummet",
"Encryption is not enabled in this room": "Kryptering är inte aktiverat i det här rummet",
- "Enter passphrase": "Ge lösenfras",
+ "Enter passphrase": "Ange lösenfras",
"Error: Problem communicating with the given homeserver.": "Fel: Det gick inte att kommunicera med den angivna hemservern.",
"Failed to fetch avatar URL": "Det gick inte att hämta avatar-URL",
"Failed to upload profile picture!": "Det gick inte att ladda upp profilbild!",
@@ -181,12 +180,12 @@
"Guest access is disabled on this Home Server.": "Gäståtkomst är inte aktiverat på den här hemservern.",
"Guests cannot join this room even if explicitly invited.": "Gäster kan inte gå med i det här rummet fastän de är uttryckligen inbjudna.",
"Hangup": "Lägg på",
- "Hide read receipts": "Göm kvitteringar",
+ "Hide read receipts": "Dölj läskvitton",
"Hide Text Formatting Toolbar": "Göm textformatteringsverktygsfältet",
"Historical": "Historiska",
"Home": "Hem",
- "Homeserver is": "Hemservern är",
- "Identity Server is": "Identitetsservern är",
+ "Homeserver is": "Hemserver är",
+ "Identity Server is": "Identitetsserver är",
"I have verified my email address": "Jag har verifierat min epostadress",
"Import": "Importera",
"Import E2E room keys": "Importera rumskrypteringsnycklar",
@@ -204,7 +203,7 @@
"Invite new room members": "Bjud in nya rumsmedlemmar",
"Invited": "Inbjuden",
"Invites": "Inbjudningar",
- "Invites user with given id to current room": "Bjuder in användaren med det givna ID:t till det nuvarande rummet",
+ "Invites user with given id to current room": "Bjuder in användare med givet id till nuvarande rum",
"'%(alias)s' is not a valid format for an address": "'%(alias)s' är inte ett giltigt format för en adress",
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' är inte ett giltigt format för ett alias",
"%(displayName)s is typing": "%(displayName)s skriver",
@@ -216,7 +215,7 @@
"Jump to first unread message.": "Hoppa till första olästa meddelande.",
"%(senderName)s kicked %(targetName)s.": "%(senderName)s kickade %(targetName)s.",
"Kick": "Kicka",
- "Kicks user with given id": "Kickar användaren med givet ID",
+ "Kicks user with given id": "Kickar användaren med givet id",
"Labs": "Labb",
"Last seen": "Senast sedd",
"Leave room": "Lämna rummet",
@@ -224,13 +223,12 @@
"Level:": "Nivå:",
"Local addresses for this room:": "Lokala adresser för rummet:",
"Logged in as:": "Inloggad som:",
- "Login as guest": "Logga in som gäst",
"Logout": "Logga ut",
- "Low priority": "Lågprioritet",
- "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gjorde framtida rumshistorik synligt åt alla rumsmedlemmar fr.o.m att de bjöds in.",
- "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s gjorde framtida rumshistorik synligt åt alla rumsmedlemmar fr.o.m. att de gick med som medlem.",
- "%(senderName)s made future room history visible to all room members.": "%(senderName)s gjorde framtida rumshistorik synligt åt alla rumsmedlemmar.",
- "%(senderName)s made future room history visible to anyone.": "%(senderName)s gjorde framtida rumshistorik synligt åt vem som helst.",
+ "Low priority": "Låg prioritet",
+ "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar från att de bjöds in.",
+ "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar fr.o.m. att de gick med som medlem.",
+ "%(senderName)s made future room history visible to all room members.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar.",
+ "%(senderName)s made future room history visible to anyone.": "%(senderName)s gjorde framtida rumshistorik synligt för alla.",
"Manage Integrations": "Hantera integrationer",
"Markdown is disabled": "Markdown är inaktiverat",
"Markdown is enabled": "Markdown är aktiverat",
@@ -241,8 +239,7 @@
"Mobile phone number": "Telefonnummer",
"Mobile phone number (optional)": "Telefonnummer (valfri)",
"Moderator": "Moderator",
- "Must be viewing a room": "Du måste ha ett öppet rum",
- "Mute": "Dämpa",
+ "Mute": "Tysta",
"%(serverName)s Matrix ID": "%(serverName)s Matrix-ID",
"Name": "Namn",
"Never send encrypted messages to unverified devices from this device": "Skicka aldrig krypterade meddelanden till overifierade enheter från den här enheten",
@@ -276,7 +273,7 @@
"Phone": "Telefon",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s startade ett %(callType)ssamtal.",
"Please check your email and click on the link it contains. Once this is done, click continue.": "Öppna meddelandet i din epost och klicka på länken i meddelandet. När du har gjort detta, klicka vidare.",
- "Power level must be positive integer.": "Maktnivån måste vara ett positivt heltal.",
+ "Power level must be positive integer.": "Behörighetsnivå måste vara ett positivt heltal.",
"Press to start a chat with someone": "Tryck på för att starta en chatt med någon",
"Privacy warning": "Integritetsvarning",
"Private Chat": "Privatchatt",
@@ -289,10 +286,10 @@
"Refer a friend to Riot:": "Hänvisa en vän till Riot:",
"Register": "Registrera",
"%(targetName)s rejected the invitation.": "%(targetName)s avvisade inbjudan.",
- "Reject invitation": "Avvisa inbjudan",
- "Rejoin": "Gå med tillbaka",
+ "Reject invitation": "Avböj inbjudan",
+ "Rejoin": "Gå med igen",
"Remote addresses for this room:": "Fjärradresser för det här rummet:",
- "Remove Contact Information?": "Ta bort kontaktinformation?",
+ "Remove Contact Information?": "Ta bort kontaktuppgifter?",
"%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s tog bort sitt visningsnamn (%(oldDisplayName)s).",
"%(senderName)s removed their profile picture.": "%(senderName)s tog bort sin profilbild.",
"Remove": "Ta bort",
@@ -307,7 +304,7 @@
"Room %(roomId)s not visible": "Rummet %(roomId)s är inte synligt",
"Room Colour": "Rumsfärg",
"Room contains unknown devices": "Det finns okända enheter i rummet",
- "Room name (optional)": "Rummets namn (valfri)",
+ "Room name (optional)": "Rumsnamn (valfri)",
"%(roomName)s does not exist.": "%(roomName)s finns inte.",
"%(roomName)s is not accessible at this time.": "%(roomName)s är inte tillgängligt för tillfället.",
"Rooms": "Rum",
@@ -326,7 +323,7 @@
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s bjöd in %(targetDisplayName)s med i rummet.",
"Server error": "Serverfel",
"Server may be unavailable or overloaded": "Servern kan vara otillgänglig eller överbelastad",
- "Server may be unavailable, overloaded, or search timed out :(": "Servern kan vara otillgänglig, överbelastad, eller så timade sökningen ut :(",
+ "Server may be unavailable, overloaded, or search timed out :(": "Servern kan vara otillgänglig, överbelastad, eller så tog sökningen för lång tid :(",
"Server may be unavailable, overloaded, or the file too big": "Servern kan vara otillgänglig, överbelastad, eller så är filen för stor",
"Server may be unavailable, overloaded, or you hit a bug.": "Servern kan vara otillgänglig, överbelastad, eller så stötte du på en bugg.",
"Server unavailable, overloaded, or something else went wrong.": "Servern är otillgänglig, överbelastad, eller så gick något annat fel.",
@@ -346,8 +343,8 @@
"Start authentication": "Starta autentisering",
"Start Chat": "Starta en chatt",
"Cancel": "Avbryt",
- "Create new room": "Nytt rum",
- "Custom Server Options": "Egna serverinställningar",
+ "Create new room": "Skapa nytt rum",
+ "Custom Server Options": "Anpassade serverinställningar",
"Dismiss": "Avvisa",
"powered by Matrix": "drivs av Matrix",
"Room directory": "Rumskatalog",
@@ -358,9 +355,9 @@
"Cannot add any more widgets": "Det går inte att lägga till fler widgets",
"Changes colour scheme of current room": "Ändrar färgschema för nuvarande rum",
"Delete widget": "Ta bort widget",
- "Define the power level of a user": "Definiera anseende för en användare",
+ "Define the power level of a user": "Definiera behörighetsnivå för en användare",
"Do you want to load widget from URL:": "Vill du ladda widgeten från URL:",
- "Edit": "Editera",
+ "Edit": "Ändra",
"Enable automatic language detection for syntax highlighting": "Aktivera automatisk språkdetektering för syntaxmarkering",
"Integrations Error": "Integrationsfel",
"Publish this room to the public in %(domain)s's room directory?": "Publicera rummet i den offentliga rumskatalogen på %(domain)s?",
@@ -368,24 +365,24 @@
"PM": "p.m.",
"NOTE: Apps are not end-to-end encrypted": "OBS: Apparna är inte end-to-end-krypterade",
"Revoke widget access": "Upphäv widget-åtkomst",
- "Submit": "Lämna",
+ "Submit": "Lämna in",
"Tagged as: ": "Taggad som: ",
- "The default role for new room members is": "Standardrollen för nya medlemmar är",
+ "The default role for new room members is": "Standardrollen för nya medlemmar i rummet är",
"The main address for this room is": "Huvudadressen för det här rummet är",
"The maximum permitted number of widgets have already been added to this room.": "Den största tillåtna mängden widgetar har redan tillsats till rummet.",
"The phone number entered looks invalid": "Telefonnumret ser felaktigt ut",
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "Signeringsnyckeln du angav matchar signeringsnyckeln som mottogs från enheten %(deviceId)s som tillhör %(userId)s. Enheten är markerad som verifierad.",
- "This email address is already in use": "Den här epostadressen är redan i bruk",
+ "This email address is already in use": "Den här epostadressen används redan",
"This email address was not found": "Den här epostadressen finns inte",
"The email address linked to your account must be entered.": "Epostadressen som är kopplad till ditt konto måste anges.",
"The file '%(fileName)s' exceeds this home server's size limit for uploads": "Filen '%(fileName)s' överskrider serverns största tillåtna filstorlek",
"The file '%(fileName)s' failed to upload": "Filen '%(fileName)s' kunde inte laddas upp",
- "Online": "Aktiv",
+ "Online": "Online",
"Unnamed room": "Namnlöst rum",
"World readable": "Alla kan läsa",
"Guests can join": "Gäster kan bli medlem i rummet",
"No rooms to show": "Inga fler rum att visa",
- "This phone number is already in use": "Detta telefonnummer är redan i bruk",
+ "This phone number is already in use": "Detta telefonnummer används redan",
"The version of Riot.im": "Versionen av Riot.im",
"Call Failed": "Samtal misslyckades",
"Call Anyway": "Ring ändå",
@@ -402,28 +399,28 @@
"Thu": "Tors",
"Fri": "Fre",
"Sat": "Lör",
- "Jan": "Jan",
- "Feb": "Feb",
- "Mar": "Mar",
- "Apr": "Apr",
- "May": "Maj",
- "Jun": "Jun",
- "Jul": "Juli",
- "Aug": "Aug",
- "Sep": "Sep",
- "Oct": "Okt",
- "Nov": "Nov",
- "Dec": "Dec",
+ "Jan": "jan",
+ "Feb": "feb",
+ "Mar": "mar",
+ "Apr": "apr",
+ "May": "maj",
+ "Jun": "jun",
+ "Jul": "jul",
+ "Aug": "aug",
+ "Sep": "sep",
+ "Oct": "okt",
+ "Nov": "nov",
+ "Dec": "dec",
"Name or matrix ID": "Namn eller matrix ID",
- "Invite to Community": "",
- "Unable to enable Notifications": "Det går inte att aktivera Notifieringar",
- "Failed to invite user": "Misslyckades med att bjuda in användaren",
+ "Invite to Community": "Bjud in till community",
+ "Unable to enable Notifications": "Det går inte att aktivera aviseringar",
+ "Failed to invite user": "Det gick inte att bjuda in användaren",
"The information being sent to us to help make Riot.im better includes:": "Informationen som skickas till oss för att hjälpa Riot.im att bli bättre inkluderar:",
"Review Devices": "Granska enheter",
"Answer Anyway": "Svara ändå",
"VoIP is unsupported": "VoIP stöds ej",
"Who would you like to add to this room?": "Vem vill du lägga till i det här rummet?",
- "Failed to invite": "Misslyckades med att bjuda in",
+ "Failed to invite": "Inbjudan misslyckades",
"You need to be logged in.": "Du måste vara inloggad.",
"You need to be able to invite users to do that.": "Du måste kunna bjuda in användare för att göra det.",
"You are not in this room.": "Du är inte i det här rummet.",
@@ -436,7 +433,7 @@
"Sunday": "söndag",
"Messages sent by bot": "Meddelanden från bottar",
"Notification targets": "Aviseringsmål",
- "Failed to set direct chat tag": "Det gick inte att markera rummet som direkt chatt",
+ "Failed to set direct chat tag": "Det gick inte att markera rummet som direkt-chatt",
"Today": "idag",
"Failed to get protocol list from Home Server": "Det gick inte att hämta protokollistan från hemservern",
"You are not receiving desktop notifications": "Du får inte skrivbordsaviseringar",
@@ -446,7 +443,7 @@
"Add an email address above to configure email notifications": "Lägg till en epostadress här för att konfigurera epostaviseringar",
"Expand panel": "Öppna panel",
"On": "På",
- "%(count)s Members|other": "%(count)s 1 Medlemmar",
+ "%(count)s Members|other": "%(count)s medlemmar",
"Filter room names": "Filtrera rumsnamn",
"Changelog": "Ändringslogg",
"Waiting for response from server": "Väntar på svar från servern",
@@ -467,7 +464,7 @@
"Room not found": "Rummet hittades inte",
"Messages containing my display name": "Meddelanden som innehåller mitt namn",
"Messages in one-to-one chats": "Meddelanden i privata chattar",
- "Unavailable": "Inte tillgänglig",
+ "Unavailable": "Otillgänglig",
"View Decrypted Source": "Visa dekrypterad källa",
"Failed to update keywords": "Det gick inte att uppdatera nyckelorden",
"remove %(name)s from the directory.": "ta bort %(name)s från katalogen.",
@@ -481,7 +478,7 @@
"Filter results": "Filtrera resultaten",
"Members": "Medlemmar",
"No update available.": "Ingen uppdatering tillgänglig.",
- "Resend": "Sänd igen",
+ "Resend": "Skicka igen",
"Files": "Filer",
"Collecting app version information": "Samlar in appversionsinformation",
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Radera rumsadressen %(alias)s och ta bort %(name)s från katalogen?",
@@ -503,9 +500,9 @@
"Saturday": "lördag",
"I understand the risks and wish to continue": "Jag förstår riskerna och vill fortsätta",
"Direct Chat": "Direkt-chatt",
- "The server may be unavailable or overloaded": "Servern kan vara överbelastad eller inte tillgänglig",
- "Reject": "Avvisa",
- "Failed to set Direct Message status of room": "Det gick inte att sätta Direkt meddelande-status på rummet",
+ "The server may be unavailable or overloaded": "Servern kan vara otillgänglig eller överbelastad",
+ "Reject": "Avböj",
+ "Failed to set Direct Message status of room": "Det gick inte att ställa in direktmeddelandestatus för rummet",
"Monday": "måndag",
"Remove from Directory": "Ta bort från katalogen",
"Enable them now": "Sätt på nu",
@@ -516,8 +513,8 @@
"All Rooms": "Alla rum",
"Wednesday": "onsdag",
"You cannot delete this message. (%(code)s)": "Du kan inte radera det här meddelandet. (%(code)s)",
- "Send": "Sänd",
- "Send logs": "Sänd loggar",
+ "Send": "Skicka",
+ "Send logs": "Skicka loggar",
"All messages": "Alla meddelanden",
"Call invitation": "Inbjudan till samtal",
"Downloading update...": "Laddar ned uppdatering...",
@@ -547,7 +544,6 @@
"Unable to fetch notification target list": "Det gick inte att hämta aviseringsmållistan",
"Set Password": "Välj lösenord",
"Enable audible notifications in web client": "Sätt på högljudda aviseringar i webbklienten",
- "Permalink": "Permanent länk",
"Off": "Av",
"Riot does not know how to join a room on this network": "Riot kan inte gå med i ett rum på det här nätverket",
"Mentions only": "Endast omnämnande",
@@ -557,11 +553,11 @@
"Login": "Logga in",
"Download this file": "Ladda ner filen",
"Failed to change settings": "Det gick inte att spara inställningarna",
- "%(count)s Members|one": "%(count)s 1 Medlem",
+ "%(count)s Members|one": "%(count)s medlem",
"View Source": "Visa källa",
"Thank you!": "Tack!",
"Quote": "Citera",
- "Collapse panel": "Kollapsa panel",
+ "Collapse panel": "Dölj panel",
"With your current browser, the look and feel of the application may be completely incorrect, and some or all features may not function. If you want to try it anyway you can continue, but you are on your own in terms of any issues you may encounter!": "Med din nuvarande webbläsare kan appens utseende vara helt fel, och vissa eller alla egenskaper kommer nödvändigtvis inte att fungera. Om du ändå vill försöka så kan du fortsätta, men gör det på egen risk!",
"Checking for an update...": "Letar efter uppdateringar...",
"There are advanced notifications which are not shown here": "Det finns avancerade aviseringar som inte visas här",
@@ -575,9 +571,9 @@
"This room has no local addresses": "Det här rummet har inga lokala adresser",
"Updates": "Uppdateringar",
"Check for update": "Leta efter uppdatering",
- "Your language of choice": "Ditt valda språk",
+ "Your language of choice": "Ditt språkval",
"The platform you're on": "Plattformen du använder",
- "Whether or not you're logged in (we don't record your user name)": "Om du är inloggad eller inte (vi sparar inte ditt användarnamn)",
+ "Whether or not you're logged in (we don't record your user name)": "Oavsett om du är inloggad (så registreras inte ditt användarnamn)",
"Your homeserver's URL": "Din hemservers URL",
"Your identity server's URL": "Din identitetsservers URL",
"Every page you use in the app": "Varje sida du använder i appen",
@@ -589,7 +585,7 @@
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Din epostadress verkar inte vara kopplad till något Matrix-ID på den här hemservern.",
"Restricted": "Begränsad",
"Who would you like to communicate with?": "Vem vill du kommunicera med?",
- "Failed to invite the following users to the %(roomName)s room:": "Misslyckades med att bjuda in följande användare till %(roomName)s-rummet:",
+ "Failed to invite the following users to the %(roomName)s room:": "Det gick inte att bjuda in följande användare till %(roomName)s-rummet:",
"Unable to create widget.": "Det går inte att skapa widget.",
"Ignored user": "Ignorerad användare",
"You are now ignoring %(userId)s": "Du ignorerar nu %(userId)s",
@@ -638,7 +634,7 @@
"%(duration)sm": "%(duration)sm",
"%(duration)sh": "%(duration)sh",
"%(duration)sd": "%(duration)sd",
- "Online for %(duration)s": "Aktiv i %(duration)s",
+ "Online for %(duration)s": "Online i %(duration)s",
"Idle for %(duration)s": "Inaktiv i %(duration)s",
"Offline for %(duration)s": "Offline i %(duration)s",
"Idle": "Inaktiv",
@@ -646,25 +642,25 @@
"Offline": "Offline",
"(~%(count)s results)|other": "(~%(count)s resultat)",
"(~%(count)s results)|one": "(~%(count)s resultat)",
- "Upload avatar": "Ladda upp profilbild",
- "Remove avatar": "Ta bort profilbild",
+ "Upload avatar": "Ladda upp avatar",
+ "Remove avatar": "Ta bort avatar",
"This invitation was sent to an email address which is not associated with this account:": "Den här inbjudan skickades till en epostadress som inte är kopplad till detta konto:",
"To link to a room it must have an address .": "För att länka till ett rum behöver det en adress .",
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nivå %(powerLevelNumber)s)",
"Unknown Address": "Okänd adress",
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
- "%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)s har gått med %(count)s gånger",
+ "%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)sgick med %(count)s gånger",
"%(severalUsers)sjoined %(count)s times|one": "%(severalUsers)sgick med",
- "%(oneUser)sjoined %(count)s times|other": "%(oneUser)s har gått med %(count)s gånger",
+ "%(oneUser)sjoined %(count)s times|other": "%(oneUser)sgick med %(count)s gånger",
"%(oneUser)sjoined %(count)s times|one": "%(oneUser)sgick med",
- "%(severalUsers)sleft %(count)s times|other": "%(severalUsers)shar lämnat %(count)s gånger",
+ "%(severalUsers)sleft %(count)s times|other": "%(severalUsers)slämnade %(count)s gånger",
"%(severalUsers)sleft %(count)s times|one": "%(severalUsers)slämnade",
- "%(oneUser)sleft %(count)s times|other": "%(oneUser)shar lämnat %(count)s gånger",
+ "%(oneUser)sleft %(count)s times|other": "%(oneUser)slämnade %(count)s gånger",
"%(oneUser)sleft %(count)s times|one": "%(oneUser)slämnade",
- "%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)shar gått med och lämnat %(count)s gånger",
- "%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)shar gått med och lämnat",
- "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)shar gått med och lämnat %(count)s gånger",
- "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)shar gått med och lämnat",
+ "%(severalUsers)sjoined and left %(count)s times|other": "%(severalUsers)sgick med och lämnade %(count)s gånger",
+ "%(severalUsers)sjoined and left %(count)s times|one": "%(severalUsers)sgick med och lämnade",
+ "%(oneUser)sjoined and left %(count)s times|other": "%(oneUser)sgick med och lämnade %(count)s gånger",
+ "%(oneUser)sjoined and left %(count)s times|one": "%(oneUser)sgick med och lämnade",
"And %(count)s more...|other": "Och %(count)s till...",
"ex. @bob:example.com": "t.ex. @kalle:exempel.com",
"Add User": "Lägg till användare",
@@ -751,5 +747,485 @@
"This will allow you to reset your password and receive notifications.": "Det här låter dig återställa lösenordet och ta emot aviseringar.",
"You have no visible notifications": "Du har inga synliga aviseringar",
"Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them": "Ditt lösenord har ändrats. Du kommer inte att få push-aviseringar på andra enheter förrän du har loggat in på dem igen",
- "Failed to upload image": "Det gick inte att ladda upp bild"
+ "Failed to upload image": "Det gick inte att ladda upp bild",
+ "New Password": "Nytt lösenord",
+ "Do you want to set an email address?": "Vill du ange en epostadress?",
+ "Your home server does not support device management.": "Din hemserver stöder inte enhetshantering.",
+ "Unable to load device list": "Det gick inte att ladda enhetslista",
+ "Delete %(count)s devices|other": "Ta bort %(count)s enheter",
+ "Delete %(count)s devices|one": "Ta bort enhet",
+ "Device Name": "Enhetsnamn",
+ "Select devices": "Välj enheter",
+ "Disable Emoji suggestions while typing": "Inaktivera Emoji-förslag medan du skriver",
+ "Use compact timeline layout": "Använd kompakt chattlayout",
+ "Not a valid Riot keyfile": "Inte en giltig Riot-nyckelfil",
+ "Authentication check failed: incorrect password?": "Autentiseringskontroll misslyckades: felaktigt lösenord?",
+ "Always show encryption icons": "Visa alltid krypteringsikoner",
+ "Disable big emoji in chat": "Inaktivera stor emoji i chatt",
+ "Hide avatars in user and room mentions": "Dölj avatarer i användar- och rumsnämningar",
+ "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s bytte avatar för %(roomName)s",
+ "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s tog bort rummets avatar.",
+ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s ändrade rummets avatar till ",
+ "Automatically replace plain text Emoji": "Ersätt text-emojis automatiskt",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s %(time)s",
+ "You seem to be uploading files, are you sure you want to quit?": "Du verkar ladda upp filer, är du säker på att du vill avsluta?",
+ "You seem to be in a call, are you sure you want to quit?": "Du verkar vara i ett samtal, är du säker på att du vill avsluta?",
+ "Active call": "Aktivt samtal",
+ "Show devices , send anyway or cancel .": "Visa enheter , skicka ändå eller avbryt .",
+ "%(count)s of your messages have not been sent.|one": "Ditt meddelande skickades inte.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|other": "Skicka om alla eller ångra alla nu. Du kan även välja enskilda meddelanden för att skicka om eller ångra.",
+ "%(count)s Resend all or cancel all now. You can also select individual messages to resend or cancel.|one": "Skicka om meddelande eller ångra meddelande nu.",
+ "Connectivity to the server has been lost.": "Anslutning till servern har brutits.",
+ "Sent messages will be stored until your connection has returned.": "Skickade meddelanden kommer att lagras tills anslutningen är tillbaka.",
+ "There's no one else here! Would you like to invite others or stop warning about the empty room ?": "Det är ingen annan här! Vill du bjuda in någon eller sluta varna om det tomma rummet ?",
+ "Unknown room %(roomId)s": "Okänt rum %(roomId)s",
+ "Room": "Rum",
+ "Clear filter": "Töm filter",
+ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Försökte ladda en viss punkt i det här rummets tidslinje, men du har inte behörighet att visa det aktuella meddelandet.",
+ "Tried to load a specific point in this room's timeline, but was unable to find it.": "Försökte ladda en specifik punkt i det här rummets tidslinje, men kunde inte hitta den.",
+ "Success": "Slutfört",
+ "Unable to remove contact information": "Det gick inte att ta bort kontaktuppgifter",
+ "Autocomplete Delay (ms):": "Autokompletteringsfördröjning (ms):",
+ "Ignored Users": "Ignorerade användare",
+ "These are experimental features that may break in unexpected ways": "Detta är experimentell funktionalitet som kan sluta fungera helt oväntat",
+ "Use with caution": "Använd med försiktighet",
+ "To return to your account in future you need to set a password": "För att återvända till ditt konto i framtiden måste du ange ett lösenord",
+ "An email has been sent to %(emailAddress)s. Once you've followed the link it contains, click below.": "Ett epostmeddelande har skickats till %(emailAddress)s. När du har öppnat länken i det, klicka nedan.",
+ "Please note you are logging into the %(hs)s server, not matrix.org.": "Observera att du loggar in på %(hs)s-servern, inte matrix.org.",
+ "This homeserver doesn't offer any login flows which are supported by this client.": "Denna hemserver erbjuder inga inloggningsflöden som stöds av den här klienten.",
+ "Upload new:": "Ladda upp ny:",
+ "Copied!": "Kopierat!",
+ "Failed to copy": "Det gick inte att kopiera",
+ "Removed or unknown message type": "Borttagen eller okänd meddelandetyp",
+ "Message removed by %(userId)s": "Meddelande borttaget av %(userId)s",
+ "Message removed": "Meddelande borttaget",
+ "Robot check is currently unavailable on desktop - please use a web browser ": "Robotkontrollen är för närvarande inte tillgänglig för skrivbordsversionen - vänligen använd en webbläsare ",
+ "This Home Server would like to make sure you are not a robot": "Den här hemservern vill bekräfta att du inte är en robot",
+ "Sign in with CAS": "Logga in med CAS",
+ "Unknown devices": "Okända enheter",
+ "\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" innehåller enheter som du inte har sett tidigare.",
+ "Delete Widget": "Ta bort widget",
+ "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Widget tas bort för alla användare i rummet. Är du säker på att du vill ta bort den?",
+ "Minimize apps": "Minimera appar",
+ "Picture": "Bild",
+ "Blacklist": "Svartlista",
+ "Unblacklist": "Ta bort svartlistning",
+ "Failed to invite the following users to %(groupId)s:": "Det gick inte att bjuda in följande användare till %(groupId)s:",
+ "Failed to invite users to %(groupId)s": "Det gick inte att bjuda in användare till %(groupId)s",
+ "This room is not public. You will not be able to rejoin without an invite.": "Detta rum är inte offentligt. Du kommer inte kunna gå med igen utan en inbjudan.",
+ "Ignores a user, hiding their messages from you": "Ignorerar en användare och döljer dess meddelanden för dig",
+ "Stops ignoring a user, showing their messages going forward": "Slutar ignorera en användare och visar dess meddelanden för framöver",
+ "Opens the Developer Tools dialog": "Öppna dialogrutan Utvecklarverktyg",
+ "Notify the whole room": "Meddela hela rummet",
+ "Room Notification": "Rumsavisering",
+ "Users": "Användare",
+ "unknown device": "okänd enhet",
+ "verified": "verifierad",
+ "Verification": "Verifiering",
+ "User ID": "Användar-ID",
+ "unencrypted": "okrypterad",
+ "Export room keys": "Exportera rumsnycklar",
+ "Import room keys": "Importera rumsnycklar",
+ "File to import": "Fil att importera",
+ "Which officially provided instance you are using, if any": "Vilken officiellt tillhandahållen instans du använder, om någon",
+ "(unknown failure: %(reason)s)": "(okänt fel: %(reason)s)",
+ "(could not connect media)": "(det gick inte ansluta media)",
+ " (unsupported)": " (stöds ej)",
+ "Drop file here to upload": "Släpp fil här för att ladda upp",
+ "Ongoing conference call%(supportedText)s.": "Pågående konferenssamtal%(supportedText)s.",
+ "%(senderName)s sent an image": "%(senderName)s skickade en bild",
+ "%(senderName)s sent a video": "%(senderName)s skickade en video",
+ "%(senderName)s uploaded a file": "%(senderName)s laddade upp en fil",
+ "Options": "Alternativ",
+ "Unencrypted message": "Okrypterat meddelande",
+ "Verified": "Verifierad",
+ "Unverified": "Overifierad",
+ "Replying": "Svarar",
+ "Drop here to favourite": "Släpp här för att favorisera",
+ "Drop here to tag direct chat": "Släpp här för att göra till direkt-chatt",
+ "Drop here to restore": "Släpp här för att återställa",
+ "Drop here to demote": "Släpp här för att göra till låg prioritet",
+ "You're not in any rooms yet! Press to make a room or to browse the directory": "Du är inte i något rum ännu! Tryck för att skapa ett rum eller för att bläddra i katalogen",
+ "Would you like to accept or decline this invitation?": "Vill du acceptera eller avböja denna inbjudan?",
+ "You have been invited to join this room by %(inviterName)s": "Du har blivit inbjuden till rummet av %(inviterName)s",
+ "Kick this user?": "Kicka användaren?",
+ "To send messages, you must be a": "För att skicka meddelanden, måste du vara",
+ "To invite users into the room, you must be a": "För att bjuda in användare i rummet, måste du vara",
+ "To configure the room, you must be a": "För att konfigurera rummet, måste du vara",
+ "To kick users, you must be a": "För att kicka användare, måste du vara",
+ "To ban users, you must be a": "För att banna användare, måste du vara",
+ "To remove other users' messages, you must be a": "För att ta bort andra användares meddelanden, måste du vara",
+ "%(user)s is a %(userRole)s": "%(user)s är %(userRole)s",
+ "You have been kicked from %(roomName)s by %(userName)s.": "Du har blivit kickad från %(roomName)s av %(userName)s.",
+ "You have been kicked from this room by %(userName)s.": "Du har blivit kickad från detta rum av %(userName)s.",
+ "You have been banned from %(roomName)s by %(userName)s.": "Du har blivit bannad från %(roomName)s av %(userName)s.",
+ "You have been banned from this room by %(userName)s.": "Du har blivit bannad från detta rum av %(userName)s.",
+ "This room": "Detta rum",
+ "You are trying to access %(roomName)s.": "Du försöker komma åt %(roomName)s.",
+ "You are trying to access a room.": "Du försöker komma åt ett rum.",
+ "This is a preview of this room. Room interactions have been disabled": "Detta är en förhandsvisning av rummet. Rumsinteraktioner har inaktiverats",
+ "To change the room's avatar, you must be a": "För att ändra rummets avatar, måste du vara",
+ "To change the room's name, you must be a": "För att ändra rummets namn, måste du vara",
+ "To change the room's main address, you must be a": "För att ändra rummets huvudadress, måste du vara",
+ "To change the room's history visibility, you must be a": "För att ändra visning av rummets historik, måste du vara",
+ "To change the permissions in the room, you must be a": "För att ändra behörigheter i rummet, måste du vara",
+ "To change the topic, you must be a": "För att ändra ämnet, måste du vara",
+ "To modify widgets in the room, you must be a": "För att ändra widgets i rummet, måste du vara",
+ "Banned by %(displayName)s": "Bannad av %(displayName)s",
+ "The visibility of existing history will be unchanged": "Synlighet av befintlig historik förblir oförändrad",
+ "You should not yet trust it to secure data": "Du bör ännu inte lita på att den säkrar data",
+ "(warning: cannot be disabled again!)": "(varning: kan inte inaktiveras igen!)",
+ "Muted Users": "Dämpade användare",
+ "This room is not accessible by remote Matrix servers": "Detta rum är inte tillgängligt för externa Matrix-servrar",
+ "To send events of type , you must be a": "För att skicka händelser av typen , måste du vara",
+ "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Det gick inte att ladda händelsen som svarades på, antingen finns den inte eller så har du inte behörighet att se den.",
+ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Är du säker på att du vill ta bort den här händelsen? Observera att om du tar bort en rumsnamns- eller ämnesändring kan det ångra ändringen.",
+ "Send Custom Event": "Skicka anpassad händelse",
+ "You must specify an event type!": "Du måste ange en händelsetyp!",
+ "Event sent!": "Händelse skickad!",
+ "Failed to send custom event.": "Det gick inte att skicka anpassad händelse.",
+ "Event Type": "Händelsetyp",
+ "Event Content": "Händelseinnehåll",
+ "Example": "Exempel",
+ "example": "exempel",
+ "Create": "Skapa",
+ "Advanced options": "Avancerade alternativ",
+ "Block users on other matrix homeservers from joining this room": "Blockera användare på andra Matrix-hemservrar från att gå med i detta rum",
+ "This setting cannot be changed later!": "Den här inställningen kan inte ändras senare!",
+ "Unknown error": "Okänt fel",
+ "Incorrect password": "Felaktigt lösenord",
+ "To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:": "För att verifiera att denna enhet kan litas på, vänligen kontakta ägaren på annat sätt (t ex personligen eller med ett telefonsamtal) och fråga om nyckeln ägaren har i sina användarinställningar för enheten matchar nyckeln nedan:",
+ "Device name": "Enhetsnamn",
+ "Device key": "Enhetsnyckel",
+ "Verify device": "Verifiera enhet",
+ "I verify that the keys match": "Jag verifierar att nycklarna matchar",
+ "In future this verification process will be more sophisticated.": "I framtiden kommer denna verifieringsprocess att bli mer sofistikerad.",
+ "If it matches, press the verify button below. If it doesn't, then someone else is intercepting this device and you probably want to press the blacklist button instead.": "Om det matchar, tryck på verifieringsknappen nedan. Om inte så är det risk att någon annan försöker avlyssna enheten och då vill du förmodligen trycka på svartlistsknappen istället.",
+ "State Key": "Lägesnyckel",
+ "Send Account Data": "Skicka kontodata",
+ "Explore Account Data": "Utforska kontodata",
+ "Toolbox": "Verktygslåda",
+ "Developer Tools": "Utvecklarverktyg",
+ "Unverify": "Ta bort verifiering",
+ "Verify...": "Verifiera...",
+ "You added a new device '%(displayName)s', which is requesting encryption keys.": "Du har lagt till en ny enhet '%(displayName)s', som begär krypteringsnycklar.",
+ "Your unverified device '%(displayName)s' is requesting encryption keys.": "Din overifierade enhet '%(displayName)s' begär krypteringsnycklar.",
+ "Start verification": "Starta verifiering",
+ "Share without verifying": "Dela utan att verifiera",
+ "Ignore request": "Ignorera begäran",
+ "Loading device info...": "Laddar enhetsinfo...",
+ "Encryption key request": "Begäran av krypteringsnyckel",
+ "Log out and remove encryption keys?": "Logga ut och ta bort krypteringsnycklar?",
+ "Clear Storage and Sign Out": "Rensa lagring och logga ut",
+ "Send Logs": "Skicka loggar",
+ "Refresh": "Uppdatera",
+ "Unable to restore session": "Det gick inte att återställa sessionen",
+ "We encountered an error trying to restore your previous session.": "Ett fel uppstod vid återställning av din tidigare session.",
+ "If you have previously used a more recent version of Riot, your session may be incompatible with this version. Close this window and return to the more recent version.": "Om du nyligen har använt en senare version av Riot kan din session vara inkompatibel med den här versionen. Stäng det här fönstret och använd senare versionen istället.",
+ "Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.": "Att rensa webbläsarens lagring kan lösa problemet, men då loggas du ut och krypterad chatthistorik blir oläslig.",
+ "You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "För tillfället svartlistar du overifierade enheter. För att skicka meddelanden till dessa enheter måste du verifiera dem.",
+ "We recommend you go through the verification process for each device to confirm they belong to their legitimate owner, but you can resend the message without verifying if you prefer.": "Vi rekommenderar att du går igenom verifieringsprocessen för varje enhet för att bekräfta att de tillhör sina rätta ägare, men du kan skicka meddelandet utan att verifiera om du föredrar det.",
+ "Collapse Reply Thread": "Dölj svarstråd",
+ "Terms and Conditions": "Villkor",
+ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "För att fortsätta använda hemservern %(homeserverDomain)s måste du granska och godkänna våra villkor.",
+ "Review terms and conditions": "Granska villkoren",
+ "Old cryptography data detected": "Gammal krypteringsdata upptäckt",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Det finns okända enheter i rummet: om du fortsätter utan att verifiera dem, är det möjligt att någon kan avlyssna ditt samtal.",
+ "Unable to capture screen": "Det gick inte att ta skärmdump",
+ "Failed to add the following rooms to %(groupId)s:": "Det gick inte att lägga till följande rum till %(groupId)s:",
+ "Missing roomId.": "Rums-ID saknas.",
+ "This room is not recognised.": "Detta rum känns inte igen.",
+ "Usage": "Användning",
+ "Sets the room topic": "Ställer in rumsämne",
+ "Unrecognised room alias:": "Oigenkänt rumsalias:",
+ "Unknown (user, device) pair:": "Okänt (användare, enhet) par:",
+ "WARNING: Device already verified, but keys do NOT MATCH!": "VARNING: Enhet redan verifierad, men nycklarna MATCHAR INTE!",
+ "Verified key": "Verifierad nyckel",
+ "Unrecognised command:": "Oigenkänt kommando:",
+ "Unbans user with given id": "Avbannar användare med givet id",
+ "Verifies a user, device, and pubkey tuple": "Verifierar en användare, enhet och nycklar",
+ "VoIP conference started.": "VoIP-konferens startad.",
+ "VoIP conference finished.": "VoIP-konferens avslutad.",
+ "%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s gjorde framtida rumshistorik synligt för okänd (%(visibility)s).",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Där denna sida innehåller identifierbar information, till exempel ett rums-, användar- eller grupp-ID, tas data bort innan den skickas till servern.",
+ "The remote side failed to pick up": "Mottagaren kunde inte svara",
+ "Room name or alias": "Rumsnamn eller alias",
+ "Jump to read receipt": "Hoppa till läskvitto",
+ "At this time it is not possible to reply with a file so this will be sent without being a reply.": "Just nu är det inte möjligt att svara med en fil så den kommer att skickas utan att vara ett svar.",
+ "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Denna process låter dig exportera nycklarna för meddelanden som du har fått i krypterade rum till en lokal fil. Du kommer sedan att kunna importera filen i en annan Matrix-klient i framtiden, så att den klienten också kan dekryptera meddelandena.",
+ "Unknown for %(duration)s": "Okänt i %(duration)s",
+ "Unknown": "Okänt",
+ "Reload widget": "Ladda om widget",
+ "e.g. %(exampleValue)s": "t.ex. %(exampleValue)s",
+ "Can't leave Server Notices room": "Kan inte lämna serveraviseringsrummet",
+ "This room is used for important messages from the Homeserver, so you cannot leave it.": "Detta rum används för viktiga meddelanden från hemservern, så du kan inte lämna det.",
+ "Data from an older version of Riot has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Data från en äldre version av Riot has upptäckts. Detta ska ha orsakat att krypteringen inte fungerat i den äldre versionen. Krypterade meddelanden som nyligen har skickats medans den äldre versionen användes kanske inte kan dekrypteras i denna version. Detta kan även orsaka att meddelanden skickade med denna version inte fungerar. Om du upplever problem, logga ut och in igen. För att behålla meddelandehistoriken, exportera dina nycklar och importera dem igen.",
+ "Confirm Removal": "Bekräfta borttagning",
+ "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Det gick inte att kontrollera att adressen den här inbjudan skickades till matchar en som är kopplad till ditt konto.",
+ "You may wish to login with a different account, or add this email to this account.": "Du kanske vill logga in med ett annat konto, eller lägga till e-postadressen till detta konto.",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie (please see our Cookie Policy ).": "Vänligen hjälp till att förbättra Riot.im genom att skicka anonyma användardata . Detta kommer att använda en cookie (se vår Cookiepolicy ).",
+ "Please help improve Riot.im by sending anonymous usage data . This will use a cookie.": "Vänligen hjälp till att förbättra Riot.im genom att skicka anonyma användardata . Detta kommer att använda en cookie.",
+ "Yes, I want to help!": "Ja, jag vill hjälpa till!",
+ "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s aktiverade kryptering (algoritm %(algorithm)s).",
+ "%(severalUsers)sleft and rejoined %(count)s times|other": "%(severalUsers)slämnade och gick med igen %(count)s gånger",
+ "%(severalUsers)sleft and rejoined %(count)s times|one": "%(severalUsers)slämnade och gick med igen",
+ "%(oneUser)sleft and rejoined %(count)s times|other": "%(oneUser)slämnade och gick med igen %(count)s gånger",
+ "%(oneUser)sleft and rejoined %(count)s times|one": "%(oneUser)slämnade och gick med igen",
+ "%(severalUsers)srejected their invitations %(count)s times|other": "%(severalUsers)savböjde sina inbjudningar %(count)s gånger",
+ "Unable to reject invite": "Det gick inte att avböja inbjudan",
+ "Reject all %(invitedRooms)s invites": "Avböj alla %(invitedRooms)s inbjudningar",
+ "%(severalUsers)srejected their invitations %(count)s times|one": "%(severalUsers)savböjde sina inbjudningar",
+ "%(oneUser)srejected their invitation %(count)s times|other": "%(oneUser)savböjde sin inbjudan %(count)s gånger",
+ "%(oneUser)srejected their invitation %(count)s times|one": "%(oneUser)savböjde sin inbjudan",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|other": "%(severalUsers)sfick sina inbjudningar tillbakadragna %(count)s gånger",
+ "%(severalUsers)shad their invitations withdrawn %(count)s times|one": "%(severalUsers)sfick sina inbjudningar tillbakadragna",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|other": "%(oneUser)sfick sin inbjudan tillbakadragen %(count)s gånger",
+ "%(oneUser)shad their invitation withdrawn %(count)s times|one": "%(oneUser)sfick sin inbjudan tillbakadragen",
+ "were invited %(count)s times|other": "blev inbjudna %(count)s gånger",
+ "were invited %(count)s times|one": "blev inbjudna",
+ "was invited %(count)s times|other": "blev inbjuden %(count)s gånger",
+ "was invited %(count)s times|one": "blev inbjuden",
+ "were banned %(count)s times|other": "blev bannade %(count)s gånger",
+ "were banned %(count)s times|one": "blev bannade",
+ "was banned %(count)s times|other": "blev bannad %(count)s gånger",
+ "was banned %(count)s times|one": "blev bannad",
+ "Ban this user?": "Banna användaren?",
+ "were kicked %(count)s times|other": "blev kickade %(count)s gånger",
+ "were kicked %(count)s times|one": "blev kickade",
+ "was kicked %(count)s times|other": "blev kickad %(count)s gånger",
+ "was kicked %(count)s times|one": "blev kickad",
+ "%(severalUsers)schanged their name %(count)s times|other": "%(severalUsers)sbytte namn %(count)s gånger",
+ "%(severalUsers)schanged their name %(count)s times|one": "%(severalUsers)sbytte namn",
+ "%(oneUser)schanged their name %(count)s times|other": "%(oneUser)sbytte namn %(count)s gånger",
+ "%(oneUser)schanged their name %(count)s times|one": "%(oneUser)sbytte namn",
+ "%(severalUsers)schanged their avatar %(count)s times|other": "%(severalUsers)sändrade sin avatar %(count)s gånger",
+ "%(severalUsers)schanged their avatar %(count)s times|one": "%(severalUsers)sändrade sin avatar",
+ "%(oneUser)schanged their avatar %(count)s times|other": "%(oneUser)ssändrade sin avatar %(count)s gånger",
+ "%(oneUser)schanged their avatar %(count)s times|one": "%(oneUser)ssändrade sin avatar",
+ "%(items)s and %(count)s others|other": "%(items)s och %(count)s andra",
+ "%(items)s and %(count)s others|one": "%(items)s och en annan",
+ "collapse": "fäll ihop",
+ "expand": "fäll ut",
+ "Custom of %(powerLevel)s": "Anpassad på %(powerLevel)s",
+ "In reply to ": "Som svar på ",
+ "Who would you like to add to this community?": "Vem vill du lägga till i denna community?",
+ "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Varning: En person du lägger till i en community kommer att vara synlig för alla som känner till community-ID:t",
+ "Invite new community members": "Bjud in nya community-medlemmar",
+ "Which rooms would you like to add to this community?": "Vilka rum vill du lägga till i denna community?",
+ "Show these rooms to non-members on the community page and room list?": "Vissa dessa rum och icke-medlemmar på community-sidan och -rumslistan?",
+ "Add rooms to the community": "Lägg till rum i communityn",
+ "Add to community": "Lägg till i community",
+ "Failed to invite users to community": "Det gick inte att bjuda in användare till communityn",
+ "Mirror local video feed": "Spegelvänd lokal video",
+ "Disable Community Filter Panel": "Inaktivera community-filterpanel",
+ "Community Invites": "Community-inbjudningar",
+ "Invalid community ID": "Ogiltigt community-ID",
+ "'%(groupId)s' is not a valid community ID": "%(groupId)s är inte ett giltigt community-ID",
+ "New community ID (e.g. +foo:%(localDomain)s)": "Nytt community-ID (t.ex. +foo:%(localDomain)s)",
+ "Remove from community": "Ta bort från community",
+ "Disinvite this user from community?": "Ta bort användarens inbjudan till community?",
+ "Remove this user from community?": "Ta bort användaren från community?",
+ "Failed to remove user from community": "Det gick inte att ta bort användaren från community",
+ "Filter community members": "Filtrera community-medlemmar",
+ "Removing a room from the community will also remove it from the community page.": "Om du tar bort ett rum från communityn tas det även bort från communityns sida.",
+ "Failed to remove room from community": "Det gick inte att ta bort rum från community",
+ "Only visible to community members": "Endast synlig för community-medlemmar",
+ "Filter community rooms": "Filtrera community-rum",
+ "Community IDs cannot be empty.": "Community-ID kan inte vara tomt.",
+ "Community IDs may only contain characters a-z, 0-9, or '=_-./'": "Community-ID får endast innehålla tecknen a-z, 0-9 och '=_-./'",
+ "Something went wrong whilst creating your community": "Något gick fel när din community skapades",
+ "Create Community": "Skapa community",
+ "Community Name": "Community-namn",
+ "Community ID": "Community-ID",
+ "View Community": "Visa community",
+ "HTML for your community's page \n\n Use the long description to introduce new members to the community, or distribute\n some important links \n
\n\n You can even use 'img' tags\n
\n": "HTML för din community-sida \n\n Använd den långa beskrivningen för att introducera nya medlemmar till communityn, eller dela\n några viktiga länkar \n
\n\n Du kan även använda 'img'-taggar\n
\n",
+ "Add rooms to the community summary": "Lägg till rum i community-översikten",
+ "Add users to the community summary": "Lägg till användare i community-översikten",
+ "Failed to update community": "Det gick inte att uppdatera community",
+ "Unable to join community": "Det gick inte att gå med i communityn",
+ "Leave Community": "Lämna community",
+ "Unable to leave community": "Det gick inte att lämna community",
+ "Community Settings": "Community-inställningar",
+ "Changes made to your community name and avatar might not be seen by other users for up to 30 minutes.": "Det kan dröja upp till 30 minuter innan ändringar på communityns namn och avatar blir synliga för andra användare.",
+ "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "Dessa rum visas för community-medlemmar på community-sidan. Community-medlemmar kan gå med i rummen genom att klicka på dem.",
+ "Add rooms to this community": "Lägg till rum i denna community",
+ "%(inviter)s has invited you to join this community": "%(inviter)s har bjudit in dig till denna community",
+ "Join this community": "Gå med i denna community",
+ "Leave this community": "Lämna denna community",
+ "You are an administrator of this community": "Du är administratör för denna community",
+ "You are a member of this community": "Du är medlem i denna community",
+ "Who can join this community?": "Vem kan gå med i denna community?",
+ "Your community hasn't got a Long Description, a HTML page to show to community members. Click here to open settings and give it one!": "Din community har ingen lång beskrivning eller HTML-sida att visa för medlemmar. Klicka här för att öppna inställningar och lägga till det!",
+ "Community %(groupId)s not found": "Community %(groupId)s hittades inte",
+ "To set up a filter, drag a community avatar over to the filter panel on the far left hand side of the screen. You can click on an avatar in the filter panel at any time to see only the rooms and people associated with that community.": "För att skapa ett filter, dra en community-avatar till filterpanelen längst till vänster på skärmen. Du kan när som helst klicka på en avatar i filterpanelen för att bara se rum och personer som är associerade med den communityn.",
+ "Create a new community": "Skapa en ny community",
+ "Create a community to group together users and rooms! Build a custom homepage to mark out your space in the Matrix universe.": "Skapa en community för att gruppera användare och rum! Bygg en anpassad hemsida för att markera er plats i Matrix-universumet.",
+ "Invite to this community": "Bjud in till denna community",
+ "Something went wrong when trying to get your communities.": "Något gick fel vid hämtning av dina communityn.",
+ "You're not currently a member of any communities.": "Du är för närvarande inte medlem i någon community.",
+ "Communities": "Communityn",
+ "This Home server does not support communities": "Denna hemserver stöder inte communityn",
+ "Your Communities": "Dina communityn",
+ "Did you know: you can use communities to filter your Riot.im experience!": "Visste du att: du kan använda communityn för att filtrera din Riot.im-upplevelse!",
+ "Error whilst fetching joined communities": "Fel vid hämtning av anslutna communityn",
+ "Featured Rooms:": "Utvalda rum:",
+ "Featured Users:": "Utvalda användare:",
+ "Everyone": "Alla",
+ "To notify everyone in the room, you must be a": "För att meddela alla i rummet, måste du vara",
+ "Long Description (HTML)": "Lång beskrivning (HTML)",
+ "Description": "Beskrivning",
+ "Failed to load %(groupId)s": "Det gick inte att ladda %(groupId)s",
+ "Failed to withdraw invitation": "Det gick inte att ta bort inbjudan",
+ "Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Är du säker på att du vill ta bort %(roomName)s från %(groupId)s?",
+ "Failed to remove '%(roomName)s' from %(groupId)s": "Det gick inte att ta bort %(roomName)s från %(groupId)s",
+ "Something went wrong!": "Något gick fel!",
+ "The visibility of '%(roomName)s' in %(groupId)s could not be updated.": "Synligheten för '%(roomName)s' i %(groupId)s kunde inte uppdateras.",
+ "Visibility in Room List": "Synlighet i rumslistan",
+ "Visible to everyone": "Synlig för alla",
+ "Please select the destination room for this message": "Välj vilket rum meddelandet ska skickas till",
+ "Disinvite this user?": "Ta bort användarens inbjudan?",
+ "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Du kommer inte att kunna ångra den här ändringen eftersom du sänker din egen behörighetsnivå, om du är den sista privilegierade användaren i rummet blir det omöjligt att ändra behörigheter.",
+ "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kommer inte att kunna ångra den här ändringen eftersom du höjer användaren till samma behörighetsnivå som dig själv.",
+ "User Options": "Användaralternativ",
+ "unknown caller": "okänd uppringare",
+ "At this time it is not possible to reply with an emote.": "Det är för närvarande inte möjligt att svara med en emoji.",
+ "To use it, just wait for autocomplete results to load and tab through them.": "För att använda detta, vänta på att autokompletteringen laddas och tabba igenom resultatet.",
+ "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "VARNING: NYCKELVERIFIERINGEN MISSLYCKADES! Signeringsnyckeln för %(userId)s och enhet %(deviceId)s är \"%(fprint)s\" som inte matchar den angivna nyckeln \"%(fingerprint)s\". Detta kan betyda att dina kommunikationer avlyssnas!",
+ "Hide join/leave messages (invites/kicks/bans unaffected)": "Dölj \"gå med\"/lämna-meddelanden (inbjudningar/kickningar/banningar opåverkat)",
+ "Disable Peer-to-Peer for 1:1 calls": "Inaktivera enhet-till-enhet-kommunikation för direktsamtal (mellan två personer)",
+ "Enable inline URL previews by default": "Aktivera URL-förhandsvisning som standard",
+ "Enable URL previews for this room (only affects you)": "Aktivera URL-förhandsvisning för detta rum (påverkar bara dig)",
+ "Enable URL previews by default for participants in this room": "Aktivera URL-förhandsvisning som standard för deltagare i detta rum",
+ "You have enabled URL previews by default.": "Du har aktiverat URL-förhandsvisning som standard.",
+ "You have disabled URL previews by default.": "Du har inaktiverat URL-förhandsvisning som standard.",
+ "URL previews are enabled by default for participants in this room.": "URL-förhandsvisning är aktiverat som standard för deltagare i detta rum.",
+ "URL previews are disabled by default for participants in this room.": "URL-förhandsvisning är inaktiverat som standard för deltagare i detta rum.",
+ "URL Previews": "URL-förhandsvisning",
+ "Which rooms would you like to add to this summary?": "Vilka rum vill du lägga till i översikten?",
+ "Add to summary": "Lägg till i översikt",
+ "Failed to add the following rooms to the summary of %(groupId)s:": "Det gick inte att lägga till följande rum i översikten för %(groupId)s:",
+ "Add a Room": "Lägg till ett rum",
+ "Failed to remove the room from the summary of %(groupId)s": "Det gick inte att ta bort rummet från översikten i %(groupId)s",
+ "The room '%(roomName)s' could not be removed from the summary.": "Rummet '%(roomName)s' kunde inte tas bort från översikten.",
+ "Who would you like to add to this summary?": "Vem vill du lägga till i översikten?",
+ "Failed to add the following users to the summary of %(groupId)s:": "Det gick inte att lägga till följande användare i översikten för %(groupId)s:",
+ "Add a User": "Lägg till en användare",
+ "Failed to remove a user from the summary of %(groupId)s": "Det gick inte att ta bort en användare från översikten i %(groupId)s",
+ "The user '%(displayName)s' could not be removed from the summary.": "Användaren '%(displayName)s' kunde inte tas bort från översikten.",
+ "Unable to accept invite": "Det gick inte att acceptera inbjudan",
+ "Leave %(groupName)s?": "Lämna %(groupName)s?",
+ "Enable widget screenshots on supported widgets": "Aktivera widget-skärmdumpar för widgets som stöder det",
+ "Your key share request has been sent - please check your other devices for key share requests.": "Din nyckeldelningsbegäran har skickats - kolla efter nyckeldelningsbegäran på dina andra enheter.",
+ "Undecryptable": "Odekrypterbar",
+ "Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "Nyckeldelningsbegäran skickas automatiskt till dina andra enheter. Om du avvisat nyckelbegäran på dina andra enheter, klicka här för att begära nycklarna till den här sessionen igen.",
+ "If your other devices do not have the key for this message you will not be able to decrypt them.": "Om dina andra enheter inte har nyckeln till detta meddelande kommer du du att kunna dekryptera det.",
+ "Key request sent.": "Nyckelbegäran skickad.",
+ "Re-request encryption keys from your other devices.": "Begär krypteringsnycklar igen från dina andra enheter.",
+ "Unban": "Avbanna",
+ "Unban this user?": "Avbanna användaren?",
+ "Unmute": "Ta bort dämpning",
+ "You don't currently have any stickerpacks enabled": "Du har för närvarande inga dekalpaket aktiverade",
+ "Add a stickerpack": "Lägg till dekalpaket",
+ "Stickerpack": "Dekalpaket",
+ "Hide Stickers": "Dölj dekaler",
+ "Show Stickers": "Visa dekaler",
+ "Error decrypting audio": "Det gick inte att dekryptera ljud",
+ "Error decrypting image": "Det gick inte att dekryptera bild",
+ "Error decrypting video": "Det gick inte att dekryptera video",
+ "Add an Integration": "Lägg till integration",
+ "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Du skickas till en tredjepartswebbplats så att du kan autentisera ditt konto för användning med %(integrationsUrl)s. Vill du fortsätta?",
+ "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Du kan använda de anpassade serverinställningar för att logga in på andra Matrix-servrar genom att ange en annan hemserver-URL.",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "Det gör det möjligt att använda denna app med ett befintligt Matrix-konto på en annan hemserver.",
+ "You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Du kan även ange en anpassad identitetsserver men det förhindrar vanligtvis interaktion med användare baserat på e-postadress.",
+ "If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Om du inte anger en epostadress, kan du inte återställa ditt lösenord. Är du säker?",
+ "You are registering with %(SelectedTeamName)s": "Du registrerar dig med %(SelectedTeamName)s",
+ "Warning: This widget might use cookies.": "Varning: Denna widget kan använda cookies.",
+ "Popout widget": "Poppa ut widget",
+ "were unbanned %(count)s times|other": "blev avbannade %(count)s gånger",
+ "were unbanned %(count)s times|one": "blev avbannade",
+ "was unbanned %(count)s times|other": "blev avbannad %(count)s gånger",
+ "was unbanned %(count)s times|one": "blev avbannad",
+ "Failed to indicate account erasure": "Det gick inte att ange kontoradering",
+ "This will make your account permanently unusable. You will not be able to log in, and no one will be able to re-register the same user ID. This will cause your account to leave all rooms it is participating in, and it will remove your account details from your identity server. This action is irreversible. ": "Detta kommer att göra ditt konto permanent oanvändbart. Du kommer inte att kunna logga in, och ingen kommer att kunna registrera samma användar-ID. Ditt konto kommer att lämna alla rum som det deltar i, och dina kontouppgifter kommer att raderas från identitetsservern. Denna åtgärd går inte att ångra. ",
+ "Deactivating your account does not by default cause us to forget messages you have sent. If you would like us to forget your messages, please tick the box below.": "Att du inaktiverar ditt konto gör inte att meddelanden som du skickat glöms automatiskt. Om du vill att vi ska glömma dina meddelanden, kryssa i rutan nedan.",
+ "Message visibility in Matrix is similar to email. Our forgetting your messages means that messages you have sent will not be shared with any new or unregistered users, but registered users who already have access to these messages will still have access to their copy.": "Meddelandesynlighet i Matrix liknar email. Att vi glömmer dina meddelanden innebär att meddelanden som du skickat inte delas med några nya eller oregistrerade användare, men registrerade användare som redan har tillgång till meddelandena kommer fortfarande ha tillgång till sin kopia.",
+ "Please forget all messages I have sent when my account is deactivated (Warning: this will cause future users to see an incomplete view of conversations)": "Glöm alla meddelanden som jag har skickat när mitt konto inaktiveras (Varning: detta kommer att göra så att framtida användare får se ofullständiga konversationer)",
+ "To continue, please enter your password:": "För att fortsätta, ange ditt lösenord:",
+ "password": "lösenord",
+ "Debug Logs Submission": "Inlämning av felsökningsloggar",
+ "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contain messages.": "Om du har anmält en bugg via GitHub, kan felsökningsloggar hjälpa oss spåra problemet. Felsökningsloggarna innehåller användningsdata för applikationen inklusive ditt användarnamn, ID eller alias för rum och grupper du besökt och användarnamn för andra användare. De innehåller inte meddelanden.",
+ "Riot collects anonymous analytics to allow us to improve the application.": "Riot samlar in anonym analysdata för att vi ska kunna förbättra applikationen.",
+ "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Integritet är viktig för oss, så vi samlar inte in några personliga eller identifierbara uppgifter för våra analyser.",
+ "Learn more about how we use analytics.": "Läs mer om hur vi använder analysdata.",
+ "Analytics": "Analysdata",
+ "Send analytics data": "Skicka analysdata",
+ "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "Du har loggats ut från alla enheter och kommer inte längre att få push-meddelanden. För att återaktivera det, logga in på varje enhet igen",
+ "Passphrases must match": "Passfraser måste matcha",
+ "Passphrase must not be empty": "Lösenfras får inte vara tom",
+ "Confirm passphrase": "Bekräfta lösenfrasen",
+ "%(senderName)s changed the pinned messages for the room.": "%(senderName)s ändrade fastnålade meddelanden för rummet.",
+ "Message Pinning": "Nåla fast meddelanden",
+ "Unpin Message": "Ta bort fastnålning",
+ "No pinned messages.": "Inga fastnålade meddelanden.",
+ "Pinned Messages": "Fastnålade meddelanden",
+ "Pin Message": "Nåla fast meddelande",
+ "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a passphrase below, which will be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "Den exporterade filen kommer att låta någon som kan läsa den att dekryptera alla krypterade meddelanden som du kan se, så du bör vara noga med att hålla den säker. För att hjälpa till med detta, bör du ange en lösenfras nedan, som kommer att användas för att kryptera exporterad data. Det kommer bara vara möjligt att importera data genom att använda samma lösenfras.",
+ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Denna process möjliggör import av krypteringsnycklar som tidigare exporterats från en annan Matrix-klient. Du kommer då kunna dekryptera alla meddelanden som den andra klienten kunde dekryptera.",
+ "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Den exporterade filen kommer vara skyddad med en lösenfras. Du måste ange lösenfrasen här, för att dekryptera filen.",
+ "Flair": "Emblem",
+ "Showing flair for these communities:": "Visar emblem för dessa communityn:",
+ "This room is not showing flair for any communities": "Detta rum visar inte emblem för några communityn",
+ "Flair will appear if enabled in room settings": "Emblem kommer visas om det är aktiverat i rumsinställningarna",
+ "Flair will not appear": "Emblem kommer inte att visas",
+ "Display your community flair in rooms configured to show it.": "Visa ditt community-emblem i rum som är konfigurerade för att visa det.",
+ "Jitsi Conference Calling": "Jitsi konferenssamtal",
+ "Encrypting": "Krypterar",
+ "Encrypted, not sent": "Krypterat, inte skickat",
+ "Share Link to User": "Dela länk till användare",
+ "Share room": "Dela rum",
+ "Share Room": "Dela rum",
+ "Link to most recent message": "Länk till senaste meddelandet",
+ "Share User": "Dela användare",
+ "Share Community": "Dela community",
+ "Share Room Message": "Dela rumsmeddelande",
+ "Link to selected message": "Länk till valt meddelande",
+ "COPY": "KOPIERA",
+ "Share Message": "Dela meddelande",
+ "No Audio Outputs detected": "Inga ljudutgångar hittades",
+ "Audio Output": "Ljudutgång",
+ "Try the app first": "Testa appen först",
+ "A conference call could not be started because the intgrations server is not available": "Konferenssamtal kunde inte startas för integrationsservern är otillgänglig",
+ "Call in Progress": "Samtal pågår",
+ "A call is currently being placed!": "Ett samtal håller på att upprättas!",
+ "A call is already in progress!": "Ett samtal pågår redan!",
+ "Permission Required": "Behörighet krävs",
+ "You do not have permission to start a conference call in this room": "Du har inte behörighet att starta ett konferenssamtal i detta rum",
+ "This event could not be displayed": "Den här händelsen kunde inte visas",
+ "deleted": "borttagen",
+ "underlined": "understruken",
+ "inline-code": "kod",
+ "block-quote": "citat",
+ "bulleted-list": "punktlista",
+ "numbered-list": "nummerlista",
+ "You have no historical rooms": "Du har inga historiska rum",
+ "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "I krypterade rum, som detta, är URL-förhandsvisning inaktiverad som standard för att säkerställa att din hemserver (där förhandsvisningar genereras) inte kan samla information om länkar du ser i rummet.",
+ "The email field must not be blank.": "Email-fältet får inte vara tomt.",
+ "The user name field must not be blank.": "Användarnamns-fältet får inte vara tomt.",
+ "The phone number field must not be blank.": "Telefonnummer-fältet får inte vara tomt.",
+ "The password field must not be blank.": "Lösenords-fältet får inte vara tomt.",
+ "This homeserver has hit its Monthly Active User limit. Please contact your service administrator to continue using the service.": "Hemservern har nått sin månatliga gräns för användaraktivitet. Kontakta din serviceadministratör för att fortsätta använda servicen.",
+ "Failed to remove widget": "Det gick inte att ta bort widget",
+ "An error ocurred whilst trying to remove the widget from the room": "Ett fel uppstod vid borttagning av widget från rummet",
+ "Demote yourself?": "Sänk egen behörighetsnivå?",
+ "Demote": "Degradera",
+ "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "När någon postar en URL i sitt meddelande, kan URL-förhandsvisning ge mer information om länken, såsom titel, beskrivning, och en bild från webbplatsen.",
+ "You can't send any messages until you review and agree to our terms and conditions .": "Du kan inte skicka några meddelanden innan du granskar och godkänner våra villkor .",
+ "Your message wasn’t sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Ditt meddelande skickades inte för hemservern har nått sin månatliga gräns för användaraktivitet. Kontakta din serviceadministratör för att fortsätta använda servicen.",
+ "This homeserver has hit its Monthly Active User limit": "Hemservern har nått sin månatliga gräns för användaraktivitet",
+ "Please contact your service administrator to continue using this service.": "Kontakta din serviceadministratör för att fortsätta använda servicen.",
+ "Show empty room list headings": "Visa tomma rumsrubriker",
+ "System Alerts": "Systemvarningar"
}
diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json
index 6aecb54bfd..b8fe318b46 100644
--- a/src/i18n/strings/ta.json
+++ b/src/i18n/strings/ta.json
@@ -78,7 +78,6 @@
"Off": "அமை",
"On": "மீது",
"Operation failed": "செயல்பாடு தோல்வியுற்றது",
- "Permalink": "நிரந்தரத் தொடுப்பு",
"powered by Matrix": "Matrix-ஆல் ஆனது",
"Quote": "மேற்கோள்",
"Reject": "நிராகரி",
diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json
index 6fa7febabd..3fe7bf8f98 100644
--- a/src/i18n/strings/th.json
+++ b/src/i18n/strings/th.json
@@ -132,7 +132,6 @@
"Failed to join room": "การเข้าร่วมห้องล้มเหลว",
"Failed to kick": "การเตะล้มเหลว",
"Failed to leave room": "การออกจากห้องล้มเหลว",
- "Failed to lookup current room": "การหาห้องปัจจุบันล้มเหลว",
"Failed to reject invite": "การปฏิเสธคำเชิญล้มเหลว",
"Failed to reject invitation": "การปฏิเสธคำเชิญล้มเหลว",
"Failed to save settings": "การบันทึกการตั้งค่าล้มเหลว",
@@ -178,7 +177,6 @@
"Leave room": "ออกจากห้อง",
"%(targetName)s left the room.": "%(targetName)s ออกจากห้องแล้ว",
"Logged in as:": "เข้าสู่ระบบในชื่อ:",
- "Login as guest": "เข้าสู่ระบบในฐานะแขก",
"Logout": "ออกจากระบบ",
"Markdown is disabled": "ปิดใช้งาน Markdown แล้ว",
"Markdown is enabled": "เปิดใช้งาน Markdown แล้ว",
@@ -544,7 +542,6 @@
"Riot does not know how to join a room on this network": "Riot ไม่รู้วิธีเข้าร่วมห้องในเครือข่ายนี้",
"Set Password": "ตั้งรหัสผ่าน",
"Enable audible notifications in web client": "เปิดใช้งานเสียงแจ้งเตือนบนเว็บไคลเอนต์",
- "Permalink": "ลิงก์ถาวร",
"Off": "ปิด",
"#example": "#example",
"Mentions only": "เมื่อถูกกล่าวถึงเท่านั้น",
diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json
index 797fed79ce..04f78dc1ee 100644
--- a/src/i18n/strings/tr.json
+++ b/src/i18n/strings/tr.json
@@ -153,7 +153,6 @@
"Failed to kick": "Atma(Kick) işlemi başarısız oldu",
"Failed to leave room": "Odadan ayrılma başarısız oldu",
"Failed to load timeline position": "Zaman çizelgesi konumu yüklenemedi",
- "Failed to lookup current room": "Geçerli odayı aramak başarısız oldu",
"Failed to mute user": "Kullanıcıyı sessize almak başarısız oldu",
"Failed to reject invite": "Daveti reddetme başarısız oldu",
"Failed to reject invitation": "Davetiyeyi reddetme başarısız oldu",
@@ -224,7 +223,6 @@
"Level:": "Seviye :",
"Local addresses for this room:": "Bu oda için yerel adresler :",
"Logged in as:": "Olarak giriş yaptı :",
- "Login as guest": "Misafir olarak giriş yaptı",
"Logout": "Çıkış Yap",
"Low priority": "Düşük öncelikli",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gelecekte oda geçmişini görünür yaptı Tüm oda üyeleri , davet edildiği noktadan.",
@@ -242,7 +240,6 @@
"Mobile phone number": "Cep telefonu numarası",
"Mobile phone number (optional)": "Cep telefonu numarası (isteğe bağlı)",
"Moderator": "Moderatör",
- "Must be viewing a room": "Bir oda görüntülemeli olmalı",
"Mute": "Sessiz",
"Name": "İsim",
"Never send encrypted messages to unverified devices from this device": "Bu cihazdan doğrulanmamış cihazlara asla şifrelenmiş mesajlar göndermeyin",
@@ -741,7 +738,6 @@
"Unable to fetch notification target list": "Bildirim hedef listesi çekilemedi",
"An error occurred whilst saving your email notification preferences.": "E-posta bildirim tercihlerinizi kaydetme işlemi sırasında bir hata oluştu.",
"Enable audible notifications in web client": "Web istemcisinde sesli bildirimleri etkinleştir",
- "Permalink": "Kalıcı Bağlantı(permalink)",
"Off": "Kapalı",
"Riot does not know how to join a room on this network": "Riot bu ağdaki bir odaya nasıl gireceğini bilmiyor",
"Mentions only": "Sadece Mention'lar",
diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json
index bed499adc3..b36642691c 100644
--- a/src/i18n/strings/uk.json
+++ b/src/i18n/strings/uk.json
@@ -94,7 +94,7 @@
"Register": "Зарегіструватись",
"Rooms": "Кімнати",
"Add rooms to this community": "Добавити кімнати в це суспільство",
- "This email address is already in use": "Ця адреса елект. почти вже використовується",
+ "This email address is already in use": "Ця е-пошта вже використовується",
"This phone number is already in use": "Цей телефонний номер вже використовується",
"Fetching third party location failed": "Не вдалось отримати стороннє місцеперебування",
"Messages in one-to-one chats": "Повідомлення у чатах \"сам на сам\"",
@@ -232,7 +232,6 @@
"Unable to fetch notification target list": "Неможливо отримати перелік цілей сповіщення",
"Set Password": "Задати пароль",
"Enable audible notifications in web client": "Увімкнути звукові сповіщення у мережевому застосунку",
- "Permalink": "Постійне посилання",
"Off": "Вимкнено",
"Riot does not know how to join a room on this network": "Riot не знає як приєднатись до кімнати у цій мережі",
"Mentions only": "Тільки згадки",
@@ -264,5 +263,71 @@
"To return to your account in future you need to set a password": "Щоб мати змогу користуватись обліковкою у майбутньому, треба зазначити пароль",
"Logged in as:": "Ви зайшли як:",
"click to reveal": "натисніть щоб побачити",
- "Homeserver is": "Домашній сервер —"
+ "Homeserver is": "Домашній сервер —",
+ "The version of Riot.im": "Версія Riot.im",
+ "Whether or not you're logged in (we don't record your user name)": "Чи увійшли ви, чи ні (ми не зберігаємо ваше ім'я користувача)",
+ "Your language of choice": "Обрана мова",
+ "Which officially provided instance you are using, if any": "Яким офіційно наданим примірником ви користуєтесь (якщо користуєтесь)",
+ "Whether or not you're using the Richtext mode of the Rich Text Editor": "Чи використовуєте ви режим Richtext у редакторі Rich Text Editor",
+ "Your homeserver's URL": "URL адреса вашого домашнього серверу",
+ "Failed to verify email address: make sure you clicked the link in the email": "Не вдалось перевірити адресу е-пошти: переконайтесь, що ви перейшли за посиланням у листі",
+ "The platform you're on": "Використовувана платформа",
+ "Your identity server's URL": "URL адреса серверу ідентифікації",
+ "e.g. %(exampleValue)s": "напр. %(exampleValue)s",
+ "Every page you use in the app": "Кожна використовувана у застосунку сторінка",
+ "e.g. ": "напр. ",
+ "Your User Agent": "Ваш користувацький агент",
+ "Your device resolution": "Роздільність вашого пристрою",
+ "Analytics": "Аналітика",
+ "The information being sent to us to help make Riot.im better includes:": "Надсилана інформація, що допомагає нам покращити Riot.im, вміщує:",
+ "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Введіть пароль для захисту експортованого файлу. Щоб розшифрувати файл потрібно буде ввести цей пароль.",
+ "Call Failed": "Виклик не вдався",
+ "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "У цій кімнаті є невідомі пристрої: якщо ви продовжите без їхньої перевірки, зважайте на те, що вас можна буде прослуховувати.",
+ "Review Devices": "Перевірити пристрої",
+ "Call Anyway": "Подзвонити все одно",
+ "Answer Anyway": "Відповісти все одно",
+ "Call": "Подзвонити",
+ "Answer": "Відповісти",
+ "The remote side failed to pick up": "На ваш дзвінок не змогли відповісти",
+ "Unable to capture screen": "Не вдалось захопити екран",
+ "Existing Call": "Наявний виклик",
+ "You are already in a call.": "Ви вже розмовляєте.",
+ "VoIP is unsupported": "VoIP не підтримується",
+ "You cannot place VoIP calls in this browser.": "Цей оглядач не підтримує VoIP дзвінки.",
+ "You cannot place a call with yourself.": "Ви не можете подзвонити самим собі.",
+ "Conference calls are not supported in encrypted rooms": "Режим конференції не підтримується у зашифрованих кімнатах",
+ "Conference calls are not supported in this client": "Режим конференції не підтримується у цьому клієнті",
+ "Warning!": "Увага!",
+ "Conference calling is in development and may not be reliable.": "Режим конференції ще знаходиться в стані розробки та може бути ненадійним.",
+ "Failed to set up conference call": "Не вдалось встановити конференцію",
+ "Conference call failed.": "Конференц-виклик зазнав невдачі.",
+ "The file '%(fileName)s' failed to upload": "Не вдалось відвантажити файл '%(fileName)s'",
+ "The file '%(fileName)s' exceeds this home server's size limit for uploads": "Файл '%(fileName)s' перевищує максимальні розміри, дозволені на цьому сервері",
+ "Upload Failed": "Помилка відвантаження",
+ "Sun": "Нд",
+ "Mon": "Пн",
+ "Tue": "Вт",
+ "Wed": "Ср",
+ "Thu": "Чт",
+ "Fri": "Пт",
+ "Sat": "Сб",
+ "Jan": "Січ",
+ "Feb": "Лют",
+ "Mar": "Бер",
+ "Apr": "Квіт",
+ "May": "Трав",
+ "Jun": "Чер",
+ "Jul": "Лип",
+ "Aug": "Сер",
+ "Sep": "Вер",
+ "Oct": "Жов",
+ "Nov": "Лис",
+ "Dec": "Гру",
+ "PM": "PM",
+ "AM": "AM",
+ "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s, %(day)s, %(time)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s, %(day)s, %(fullYear)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
+ "Who would you like to add to this community?": "Кого ви хочете додати до цієї спільноти?"
}
diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json
index 8e2dc6e0f8..e4de33223a 100644
--- a/src/i18n/strings/zh_Hans.json
+++ b/src/i18n/strings/zh_Hans.json
@@ -35,14 +35,13 @@
"Event information": "事件信息",
"Existing Call": "当前通话",
"Export E2E room keys": "导出聊天室的端到端加密密钥",
- "Failed to ban user": "封禁用户失败",
+ "Failed to ban user": "封禁失败",
"Failed to change password. Is your password correct?": "修改密码失败。确认原密码输入正确吗?",
"Failed to forget room %(errCode)s": "忘记聊天室失败,错误代码: %(errCode)s",
"Failed to join room": "无法加入聊天室",
"Failed to kick": "移除失败",
"Failed to leave room": "无法退出聊天室",
"Failed to load timeline position": "无法加载时间轴位置",
- "Failed to lookup current room": "找不到当前聊天室",
"Failed to mute user": "禁言用户失败",
"Failed to reject invite": "拒绝邀请失败",
"Failed to reject invitation": "拒绝邀请失败",
@@ -104,7 +103,7 @@
"Server may be unavailable or overloaded": "服务器可能不可用或者超载",
"Server may be unavailable, overloaded, or search timed out :(": "服务器可能不可用、超载,或者搜索超时 :(",
"Server may be unavailable, overloaded, or the file too big": "服务器可能不可用、超载,或者文件过大",
- "Server may be unavailable, overloaded, or you hit a bug.": "服务器可能不可用、超载,或者你遇到了一个 bug。",
+ "Server may be unavailable, overloaded, or you hit a bug.": "当前服务器可能处于不可用或过载状态,或者您遇到了一个 bug。",
"Server unavailable, overloaded, or something else went wrong.": "服务器可能不可用、超载,或者其他东西出错了.",
"Session ID": "会话 ID",
"%(senderName)s set a profile picture.": "%(senderName)s 设置了头像。.",
@@ -121,7 +120,7 @@
"Start Chat": "开始聊天",
"Submit": "提交",
"Success": "成功",
- "The default role for new room members is": "此聊天室新成员的默认角色是",
+ "The default role for new room members is": "新成员默认是",
"The main address for this room is": "此聊天室的主要地址是",
"This email address is already in use": "此邮箱地址已被使用",
"This email address was not found": "未找到此邮箱地址",
@@ -138,7 +137,7 @@
"%(senderName)s answered the call.": "%(senderName)s 接了通话。.",
"An error has occurred.": "一个错误出现了。",
"Attachment": "附件",
- "Autoplay GIFs and videos": "自动播放GIF和视频",
+ "Autoplay GIFs and videos": "自动播放 GIF 与视频",
"%(senderName)s banned %(targetName)s.": "%(senderName)s 封禁了 %(targetName)s.",
"Ban": "封禁",
"Banned users": "被封禁的用户",
@@ -153,7 +152,6 @@
"Jump to first unread message.": "跳到第一条未读消息。",
"%(senderName)s kicked %(targetName)s.": "%(senderName)s 把 %(targetName)s 踢出了聊天室。.",
"Leave room": "退出聊天室",
- "Login as guest": "以游客的身份登录",
"New password": "新密码",
"Add a topic": "添加一个主题",
"Admin": "管理员",
@@ -181,7 +179,7 @@
"Are you sure you want to reject the invitation?": "你确定要拒绝邀请吗?",
"Are you sure you want to upload the following files?": "你确定要上传这些文件吗?",
"Bans user with given id": "按照 ID 封禁指定的用户",
- "Blacklisted": "已列入黑名单",
+ "Blacklisted": "已拉黑",
"Bulk Options": "批量操作",
"Call Timeout": "通话超时",
"Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "无法连接主服务器 - 请检查网络连接,确保你的主服务器 SSL 证书 被信任,且没有浏览器插件拦截请求。",
@@ -194,7 +192,7 @@
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s 将话题修改为 “%(topic)s”。",
"Changes to who can read history will only apply to future messages in this room": "修改阅读历史的权限仅对此聊天室以后的消息有效",
"Changes your display nickname": "修改昵称",
- "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "目前,修改密码会导致所有设备上的端到端密钥被重置,使得加密的聊天记录不再可读。除非你事先导出聊天室密钥,修改密码后再导入。这个问题未来会改善。",
+ "Changing password will currently reset any end-to-end encryption keys on all devices, making encrypted chat history unreadable, unless you first export your room keys and re-import them afterwards. In future this will be improved.": "目前,修改密码会导致所有设备上的端到端密钥被重置,使得加密的聊天记录不再可读。除非事先导出你的密钥,并在密码修改后导入回去。此问题将会在未来得到改善。",
"Clear Cache and Reload": "清除缓存并刷新",
"Clear Cache": "清除缓存",
"Click here to join the discussion!": "点此 加入讨论!",
@@ -224,8 +222,8 @@
"Drop File Here": "把文件拖拽到这里",
"Email address (optional)": "邮箱地址 (可选)",
"Enable Notifications": "启用消息通知",
- "Encrypted by a verified device": "由一个已验证的设备加密",
- "Encrypted by an unverified device": "由一个未经验证的设备加密",
+ "Encrypted by a verified device": "由已验证设备加密",
+ "Encrypted by an unverified device": "由未验证设备加密",
"Encryption is enabled in this room": "此聊天室启用了加密",
"Encryption is not enabled in this room": "此聊天室未启用加密",
"Enter passphrase": "输入密码",
@@ -256,7 +254,7 @@
"Moderator": "协管员",
"Mute": "静音",
"Name": "姓名",
- "Never send encrypted messages to unverified devices from this device": "在此设备上不向未经验证的设备发送消息",
+ "Never send encrypted messages to unverified devices from this device": "在此设备上,从不对未经验证的设备发送消息",
"New passwords don't match": "两次输入的新密码不符",
"none": "无",
"not set": "未设置",
@@ -288,7 +286,7 @@
"Add": "添加",
"Allow": "允许",
"Claimed Ed25519 fingerprint key": "声称的 Ed25519 指纹密钥",
- "Could not connect to the integration server": "无法连接集成服务器",
+ "Could not connect to the integration server": "无法连接关联的服务器",
"Curve25519 identity key": "Curve25519 认证密钥",
"Edit": "编辑",
"Joins room with given alias": "以指定的别名加入聊天室",
@@ -322,7 +320,7 @@
"VoIP conference started.": "VoIP 会议开始。",
"VoIP is unsupported": "不支持 VoIP",
"Warning!": "警告!",
- "You must register to use this functionality": "你必须注册 以使用这个功能",
+ "You must register to use this functionality": "你必须 注册 以使用此功能",
"You need to be logged in.": "你需要登录。",
"You need to enter a user name.": "你需要输入一个用户名。",
"Your password has been reset": "你的密码已被重置",
@@ -383,45 +381,45 @@
"Example": "例子",
"Create": "创建",
"Failed to upload image": "上传图像失败",
- "Add a widget": "添加一个小部件",
+ "Add a widget": "添加一个小挂件",
"Accept": "接受",
"Access Token:": "访问令牌:",
- "Cannot add any more widgets": "无法添加更多小组件",
- "Delete widget": "删除小组件",
+ "Cannot add any more widgets": "无法添加更多小挂件",
+ "Delete widget": "删除小挂件",
"Define the power level of a user": "定义一个用户的特权级",
"Drop here to tag %(section)s": "拖拽到这里标记 %(section)s",
- "Enable automatic language detection for syntax highlighting": "启用自动语言检测用于语法高亮",
+ "Enable automatic language detection for syntax highlighting": "为语法高亮启用自动检测编程语言",
"Failed to change power level": "修改特权级别失败",
"Kick": "移除",
"Kicks user with given id": "按照 ID 移除特定的用户",
"Last seen": "最近一次上线",
"Level:": "级别:",
- "Local addresses for this room:": "这个聊天室的本地地址:",
+ "Local addresses for this room:": "此聊天室的本地地址:",
"New passwords must match each other.": "新密码必须互相匹配。",
"Power level must be positive integer.": "权限级别必须是正整数。",
"Reason: %(reasonText)s": "理由: %(reasonText)s",
"Revoke Moderator": "撤销主持人",
- "Revoke widget access": "撤销小部件的访问",
- "Remote addresses for this room:": "这个聊天室的远程地址:",
+ "Revoke widget access": "撤回小挂件的访问权",
+ "Remote addresses for this room:": "此聊天室的远程地址:",
"Remove Contact Information?": "移除联系人信息?",
"Remove %(threePid)s?": "移除 %(threePid)s?",
"Results from DuckDuckGo": "来自 DuckDuckGo 的结果",
"Room contains unknown devices": "聊天室包含未知设备",
"%(roomName)s does not exist.": "%(roomName)s 不存在。",
"Save": "保存",
- "Send anyway": "无论任何都发送",
+ "Send anyway": "仍然发送",
"Sets the room topic": "设置聊天室主题",
"Show Text Formatting Toolbar": "显示文字格式工具栏",
- "This room has no local addresses": "这个聊天室没有本地地址",
+ "This room has no local addresses": "此聊天室没有本地地址",
"This doesn't appear to be a valid email address": "这看起来不是一个合法的邮箱地址",
- "This is a preview of this room. Room interactions have been disabled": "这是这个聊天室的一个预览。聊天室交互已禁用",
+ "This is a preview of this room. Room interactions have been disabled": "这是此聊天室的预览。交互操作已被禁用",
"This phone number is already in use": "此手机号码已被使用",
- "This room": "这个聊天室",
- "This room is not accessible by remote Matrix servers": "这个聊天室无法被远程 Matrix 服务器访问",
- "This room's internal ID is": "这个聊天室的内部 ID 是",
+ "This room": "此聊天室",
+ "This room is not accessible by remote Matrix servers": "此聊天室无法被远程 Matrix 服务器访问",
+ "This room's internal ID is": "此聊天室的内部 ID 为",
"Turn Markdown off": "禁用 Markdown",
"Turn Markdown on": "启用 Markdown",
- "Unable to create widget.": "无法创建小部件。",
+ "Unable to create widget.": "无法创建小挂件。",
"Unban": "解除封禁",
"Unable to capture screen": "无法录制屏幕",
"Unable to enable Notifications": "无法启用通知",
@@ -429,7 +427,7 @@
"Undecryptable": "无法解密的",
"Unencrypted room": "未加密的聊天室",
"unencrypted": "未加密的",
- "Unencrypted message": "未加密的消息",
+ "Unencrypted message": "未加密消息",
"unknown caller": "未知呼叫者",
"unknown device": "未知设备",
"Unnamed Room": "未命名的聊天室",
@@ -440,7 +438,7 @@
"Upload file": "上传文件",
"Usage": "用法",
"Who can read history?": "谁可以阅读历史消息?",
- "You are not in this room.": "你不在这个聊天室。",
+ "You are not in this room.": "您不在此聊天室中。",
"You have no visible notifications": "你没有可见的通知",
"Missing password.": "缺少密码。",
"Passwords don't match.": "密码不匹配。",
@@ -448,12 +446,12 @@
"Unblacklist": "移出黑名单",
"Not a valid Riot keyfile": "不是一个有效的 Riot 密钥文件",
"%(targetName)s accepted an invitation.": "%(targetName)s 已接受邀请。",
- "Do you want to load widget from URL:": "你想从此 URL 加载小组件吗:",
+ "Do you want to load widget from URL:": "你是否要从此 URL 中加载小挂件:",
"Hide join/leave messages (invites/kicks/bans unaffected)": "隐藏加入/退出消息(邀请/踢出/封禁不受影响)",
"Integrations Error": "集成错误",
- "Publish this room to the public in %(domain)s's room directory?": "把这个聊天室发布到 %(domain)s 的聊天室目录吗?",
+ "Publish this room to the public in %(domain)s's room directory?": "是否将此聊天室发布至 %(domain)s 的聊天室目录中?",
"Manage Integrations": "管理集成",
- "No users have specific privileges in this room": "没有用户在这个聊天室有特殊权限",
+ "No users have specific privileges in this room": "此聊天室中没有用户有特殊权限",
"%(senderName)s placed a %(callType)s call.": "%(senderName)s 发起了一个 %(callType)s 通话。",
"Please check your email and click on the link it contains. Once this is done, click continue.": "请检查你的电子邮箱并点击里面包含的链接。完成时请点击继续。",
"Press to start a chat with someone": "按下 来开始和某个人聊天",
@@ -482,7 +480,7 @@
"Refer a friend to Riot:": "介绍朋友加入Riot:",
"%(roomName)s is not accessible at this time.": "%(roomName)s 此时无法访问。",
"Start authentication": "开始认证",
- "The maximum permitted number of widgets have already been added to this room.": "小部件的最大允许数量已经添加到这个聊天室了。",
+ "The maximum permitted number of widgets have already been added to this room.": "此聊天室可拥有的小挂件数量已达到上限。",
"The phone number entered looks invalid": "输入的手机号码看起来无效",
"The remote side failed to pick up": "对方未能接听",
"This Home Server does not support login using email address.": "HS不支持使用邮箱地址登陆。",
@@ -503,15 +501,15 @@
"(no answer)": "(没有回答)",
"(warning: cannot be disabled again!)": "(警告:无法再被禁用!)",
"WARNING: Device already verified, but keys do NOT MATCH!": "警告:设备已经验证,但密钥不匹配!",
- "Who can access this room?": "谁可以访问这个聊天室?",
- "Who would you like to add to this room?": "你想把谁加入这个聊天室?",
+ "Who can access this room?": "谁有权访问此聊天室?",
+ "Who would you like to add to this room?": "你想把谁添加到此聊天室?",
"Who would you like to communicate with?": "你想和谁交流?",
"You are already in a call.": "您正在通话。",
- "You do not have permission to do that in this room.": "你没有权限在这个聊天室里面做那件事。",
+ "You do not have permission to do that in this room.": "您没有进行此操作的权限。",
"You are trying to access %(roomName)s.": "你正在尝试访问 %(roomName)s.",
- "You cannot place VoIP calls in this browser.": "你不能在这个浏览器中发起 VoIP 通话。",
- "You do not have permission to post to this room": "你没有发送到这个聊天室的权限",
- "You have been invited to join this room by %(inviterName)s": "您已被 %(inviterName)s 邀请加入这个聊天室",
+ "You cannot place VoIP calls in this browser.": "无法在此浏览器中发起 VoIP 通话。",
+ "You do not have permission to post to this room": "您没有在此聊天室发送消息的权限",
+ "You have been invited to join this room by %(inviterName)s": "您已被 %(inviterName)s 邀请加入此聊天室",
"You seem to be in a call, are you sure you want to quit?": "您似乎正在进行通话,确定要退出吗?",
"You seem to be uploading files, are you sure you want to quit?": "您似乎正在上传文件,确定要退出吗?",
"You should not yet trust it to secure data": "你不应该相信它来保护你的数据",
@@ -522,7 +520,7 @@
"An unknown error occurred.": "一个未知错误出现了。",
"An error occurred: %(error_string)s": "一个错误出现了: %(error_string)s",
"Encrypt room": "加密聊天室",
- "There are no visible files in this room": "这个聊天室里面没有可见的文件",
+ "There are no visible files in this room": "此聊天室中没有可见的文件",
"Active call": "当前通话",
"Verify...": "验证...",
"Error decrypting audio": "解密音频时出错",
@@ -546,34 +544,34 @@
"Would you like to accept or decline this invitation?": "你想要 接受 还是 拒绝 这个邀请?",
"You already have existing direct chats with this user:": "你已经有和此用户的直接聊天:",
"You're not in any rooms yet! Press to make a room or to browse the directory": "你现在还不再任何聊天室!按下 来创建一个聊天室或者 来浏览目录",
- "You cannot place a call with yourself.": "你不能和你自己发起一个通话。",
+ "You cannot place a call with yourself.": "你怎么寂寞到要和自己打电话,不支持的啦。",
"You have been kicked from %(roomName)s by %(userName)s.": "您已被 %(userName)s 从聊天室 %(roomName)s 中移除。",
"You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device": "你已经登出了所有的设备并不再接收推送通知。要重新启用通知,请再在每个设备上登录",
"You have disabled URL previews by default.": "你已经默认 禁用 链接预览。",
"You have enabled URL previews by default.": "你已经默认 启用 链接预览。",
"Your home server does not support device management.": "你的 home server 不支持设备管理。",
"Set a display name:": "设置一个昵称:",
- "This server does not support authentication with a phone number.": "这个服务器不支持用手机号码认证。",
+ "This server does not support authentication with a phone number.": "此服务器不支持使用手机号码认证。",
"Password too short (min %(MIN_PASSWORD_LENGTH)s).": "密码过短(最短为 %(MIN_PASSWORD_LENGTH)s)。",
- "Make this room private": "使这个聊天室私密",
+ "Make this room private": "将此聊天室转为私密聊天室",
"Share message history with new users": "和新用户共享消息历史",
"Copied!": "已复制!",
"Failed to copy": "复制失败",
"Sent messages will be stored until your connection has returned.": "已发送的消息会被保存直到你的连接回来。",
"(~%(count)s results)|one": "(~%(count)s 个结果)",
"(~%(count)s results)|other": "(~%(count)s 个结果)",
- "Please select the destination room for this message": "请选择这条消息的目标聊天室",
+ "Please select the destination room for this message": "请选择此消息的目标聊天室",
"Start automatically after system login": "在系统登录后自动启动",
"Analytics": "统计分析服务",
"Reject all %(invitedRooms)s invites": "拒绝所有 %(invitedRooms)s 邀请",
- "You may wish to login with a different account, or add this email to this account.": "你可能希望用另外一个账户登录,或者添加这个电子邮件到这个账户上。",
- "Sun": "星期日",
- "Mon": "星期一",
- "Tue": "星期二",
- "Wed": "星期三",
- "Thu": "星期四",
- "Fri": "星期五",
- "Sat": "星期六",
+ "You may wish to login with a different account, or add this email to this account.": "您可能是想要用另一个账户登录,或是将此电子邮件关联至当前账户。",
+ "Sun": "周日",
+ "Mon": "周一",
+ "Tue": "周二",
+ "Wed": "周三",
+ "Thu": "周四",
+ "Fri": "周五",
+ "Sat": "周六",
"Jan": "一月",
"Feb": "二月",
"Mar": "三月",
@@ -599,10 +597,10 @@
"The visibility of existing history will be unchanged": "现有历史记录的可见性不会改变",
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s 打开了端到端加密 (算法 %(algorithm)s).",
"Unable to remove contact information": "无法移除联系人信息",
- "Riot collects anonymous analytics to allow us to improve the application.": "Riot 收集匿名的分析数据来允许我们改善这个应用。",
+ "Riot collects anonymous analytics to allow us to improve the application.": "Riot 收集匿名的分析数据以允许我们改善它。",
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" 包含你以前没见过的设备。",
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "你可以使用自定义的服务器选项来通过指定一个不同的主服务器 URL 来登录其他 Matrix 服务器。",
- "This allows you to use this app with an existing Matrix account on a different home server.": "这允许你用一个已有在不同主服务器的 Matrix 账户使用这个应用。",
+ "This allows you to use this app with an existing Matrix account on a different home server.": "这允许你使用其他主服务器上的 Matrix 帐号。",
"Please check your email to continue registration.": "请查看你的电子邮件以继续注册。",
"If you don't specify an email address, you won't be able to reset your password. Are you sure?": "如果你不指定一个邮箱地址,你将不能重置你的密码。你确定吗?",
"Home server URL": "主服务器 URL",
@@ -621,9 +619,9 @@
"Your unverified device '%(displayName)s' is requesting encryption keys.": "你的未经验证的设备 '%(displayName)s' 正在请求加密密钥。",
"Encryption key request": "加密密钥请求",
"Autocomplete Delay (ms):": "自动补全延迟(毫秒):",
- "%(widgetName)s widget added by %(senderName)s": "%(widgetName)s 小组建被 %(senderName)s 添加",
- "%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s 小组建被 %(senderName)s 移除",
- "%(widgetName)s widget modified by %(senderName)s": "%(widgetName)s 小组建被 %(senderName)s 修改",
+ "%(widgetName)s widget added by %(senderName)s": "%(senderName)s 添加了 %(widgetName)s 小挂件",
+ "%(widgetName)s widget removed by %(senderName)s": "%(senderName)s 移除了 %(widgetName)s 小挂件",
+ "%(widgetName)s widget modified by %(senderName)s": "%(senderName)s 修改了 %(widgetName)s 小挂件",
"Unpin Message": "取消置顶消息",
"Add rooms to this community": "添加聊天室到此社区",
"Call Failed": "呼叫失败",
@@ -652,9 +650,9 @@
"Hide avatar changes": "隐藏头像修改",
"Hide display name changes": "隐藏昵称修改",
"Disable big emoji in chat": "禁用聊天中的大Emoji",
- "Never send encrypted messages to unverified devices in this room from this device": "在此设备上,在此聊天室中不向未经验证的设备发送加密的消息",
- "Enable URL previews for this room (only affects you)": "在此聊天室启用链接预览(只影响你)",
- "Enable URL previews by default for participants in this room": "对这个聊天室的参与者默认启用 链接预览",
+ "Never send encrypted messages to unverified devices in this room from this device": "在此设备上、此聊天室中,从不对未经验证的设备发送加密的消息",
+ "Enable URL previews for this room (only affects you)": "在此聊天室中启用链接预览(仅影响你)",
+ "Enable URL previews by default for participants in this room": "对此聊天室的所有成员默认启用链接预览",
"Delete %(count)s devices|other": "删除了 %(count)s 个设备",
"Delete %(count)s devices|one": "删除设备",
"Select devices": "选择设备",
@@ -682,7 +680,7 @@
"A text message has been sent to %(msisdn)s": "一封短信已发送到 %(msisdn)s",
"Username on %(hs)s": "在 %(hs)s 上的用户名",
"Visible to everyone": "对所有人可见",
- "Delete Widget": "删除小组件",
+ "Delete Widget": "删除小挂件",
"were invited %(count)s times|other": "被邀请 %(count)s 次",
"were invited %(count)s times|one": "被邀请",
"was invited %(count)s times|other": "被邀请 %(count)s 次",
@@ -731,25 +729,24 @@
"Your homeserver's URL": "您的主服务器的链接",
"Your identity server's URL": "您的身份认证服务器的链接",
"The information being sent to us to help make Riot.im better includes:": "将要为帮助 Riot.im 发展而发送的信息包含:",
- "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "这个页面中含有可能能用于识别您身份的信息,比如聊天室、用户或群组 ID,在它们发送到服务器上之前,这些数据会被移除。",
+ "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "此页面中含有可用于识别您身份的信息,比如聊天室、用户或群组 ID,这些数据会在发送到服务器前被移除。",
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
- "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(time)s",
- "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s,%(monthName)s %(day)s %(fullYear)s",
- "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(fullYear)s %(time)s",
- "Who would you like to add to this community?": "您想把谁添加到这个社区内?",
+ "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(monthName)s %(day)s %(time)s, %(weekDayName)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(fullYear)s %(monthName)s %(day)s, %(weekDayName)s",
+ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s %(monthName)s %(day)s %(time)s, %(weekDayName)s",
+ "Who would you like to add to this community?": "你想把谁添加到此社区中?",
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "警告:您添加的一切用户都将会对一切知道此社区的 ID 的人公开",
"Name or matrix ID": "名称或 Matrix ID",
- "Which rooms would you like to add to this community?": "您想把哪个聊天室添加到这个社区中?",
+ "Which rooms would you like to add to this community?": "您想把哪个聊天室添加到此社区中?",
"Add rooms to the community": "添加聊天室到社区",
"Add to community": "添加到社区",
"Failed to invite users to community": "邀请用户到社区失败",
- "Message Replies": "消息回复",
"Disable Peer-to-Peer for 1:1 calls": "在一对一通话中禁用 P2P 对等网络",
- "Enable inline URL previews by default": "默认启用网址预览",
- "Disinvite this user?": "取消邀请此用户?",
- "Kick this user?": "移除此用户?",
- "Unban this user?": "解除此用户的封禁?",
- "Ban this user?": "封紧此用户?",
+ "Enable inline URL previews by default": "默认启用链接预览",
+ "Disinvite this user?": "是否不再邀请此用户?",
+ "Kick this user?": "是否移除此用户?",
+ "Unban this user?": "是否解封此用户?",
+ "Ban this user?": "是否封禁此用户?",
"Send an encrypted reply…": "发送加密的回复…",
"Send a reply (unencrypted)…": "发送回复(未加密)…",
"Send an encrypted message…": "发送加密消息…",
@@ -758,18 +755,18 @@
"Community Invites": "社区邀请",
"You are trying to access a room.": "你正在尝试访问一个聊天室。",
"To change the topic, you must be a": "要修改主题,你必须是",
- "To modify widgets in the room, you must be a": "要修改聊天室中的小组件,你必须是",
+ "To modify widgets in the room, you must be a": "要修改聊天室中的小挂件,你必须是",
"Banned by %(displayName)s": "被 %(displayName)s 封禁",
- "To send messages, you must be a": "要发送消息,你必须是",
- "To invite users into the room, you must be a": "要邀请用户到聊天室,你必须是",
- "To configure the room, you must be a": "要配置聊天室,你必须是",
- "To kick users, you must be a": "要踢出用户,你必须是",
- "To ban users, you must be a": "要封禁用户,你必须是",
- "To remove other users' messages, you must be a": "要删除其他用户的消息,你必须是",
+ "To send messages, you must be a": "若要发送消息,您至少要是",
+ "To invite users into the room, you must be a": "若要邀请用户至本聊天室,您至少要是",
+ "To configure the room, you must be a": "若要修改聊天室设置,您至少要是",
+ "To kick users, you must be a": "若要移除用户,您至少要是",
+ "To ban users, you must be a": "若要封禁用户,您至少要是",
+ "To remove other users' messages, you must be a": "若要删除其他用户的消息,您至少要是",
"%(user)s is a %(userRole)s": "%(user)s 是一个 %(userRole)s",
"To link to a room it must have an address .": "要链接一个聊天室,它必须有一个地址 。",
"To send events of type , you must be a": "要发送类型为 的事件,你必须是",
- "Members only (since the point in time of selecting this option)": "只有成员(从选择这个选项的时间开始)",
+ "Members only (since the point in time of selecting this option)": "仅成员(从选中此选项时开始)",
"Members only (since they were invited)": "只有成员(从他们被邀请开始)",
"Members only (since they joined)": "只有成员(从他们加入开始)",
"Invalid community ID": "无效的社区 ID",
@@ -777,7 +774,7 @@
"Community Name": "社区名",
"Community ID": "社区 ID",
"example": "例子",
- "This setting cannot be changed later!": "此设置在未来将无法修改!",
+ "This setting cannot be changed later!": "未来此设置将无法修改!",
"Add a Room": "添加一个聊天室",
"Add a User": "添加一个用户",
"Unable to accept invite": "无法接受邀请",
@@ -806,8 +803,8 @@
"Your key share request has been sent - please check your other devices for key share requests.": "已请求共享密钥 - 请在您的其他设备上进行确认。",
"Key share requests are sent to your other devices automatically. If you rejected or dismissed the key share request on your other devices, click here to request the keys for this session again.": "密钥共享请求将会自动发送到您的其他设备上。如果您在其他设备上拒绝了请求,请点击此处以再次请求此会话的密钥。",
"If your other devices do not have the key for this message you will not be able to decrypt them.": "如果您的其他设备上没有此消息的密钥,您将依然无法解密。",
- "Key request sent.": "已请求共享密钥。",
- "Re-request encryption keys from your other devices.": "在您的其他设备上 重新请求加密密钥 。",
+ "Key request sent.": "已发送密钥共享请求。",
+ "Re-request encryption keys from your other devices.": "从其他设备上 重新请求密钥 。",
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "如果您是房间中最后一位有权限的用户,在您降低自己的权限等级后将无法撤回此修改,因为你将无法重新获得权限。",
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "你将无法撤回此修改,因为您正在将此用户的权限提升至和你相同的级别。",
"No devices with registered encryption keys": "没有设备有已注册的加密密钥",
@@ -829,7 +826,7 @@
"Drop here to tag direct chat": "拖动到这里以加入私聊",
"Drop here to restore": "拖动到这里以还原",
"Drop here to demote": "拖动到这里以加入低优先级",
- "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "无法确定此邀请发送给的邮件地址是否和与您的帐户相关的邮件地址相匹配。",
+ "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "无法确定此邀请发送给的邮件地址是否与您帐户所关联的邮件地址相匹配。",
"You have been kicked from this room by %(userName)s.": "您已被 %(userName)s 从此聊天室中移除。",
"'%(groupId)s' is not a valid community ID": "“%(groupId)s” 不是有效的社区 ID",
"Flair": "Flair",
@@ -880,7 +877,7 @@
"%(oneUser)shad their invitation withdrawn %(count)s times|one": "%(oneUser)s 撤回了他们的邀请",
"Custom of %(powerLevel)s": "",
"In reply to ": "