Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4edd21ba8a | |||
| 90cff5d7bf | |||
| 9325eef650 | |||
| f9795232e0 | |||
| c3ef2f86d6 | |||
| 58a323b391 | |||
| cd8dc5f178 | |||
| 27b8568fc0 | |||
| dfd9f7c27b | |||
| 0b83baeaf4 | |||
| c43b30f2fd | |||
| ac25cf56fb |
@@ -1,3 +1,11 @@
|
||||
Changes in [0.11.1](https://github.com/vector-im/riot-web/releases/tag/v0.11.1) (2017-06-14)
|
||||
============================================================================================
|
||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.11.0...v0.11.1)
|
||||
|
||||
* Update to react-sdk 0.9.4 to prompt to set an
|
||||
email address when setting a password and make
|
||||
DM guessing smarter.
|
||||
|
||||
Changes in [0.11.0](https://github.com/vector-im/riot-web/releases/tag/v0.11.0) (2017-06-12)
|
||||
============================================================================================
|
||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.11.0-rc.2...v0.11.0)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "riot-web",
|
||||
"productName": "Riot",
|
||||
"main": "src/electron-main.js",
|
||||
"version": "0.11.0",
|
||||
"version": "0.11.1",
|
||||
"description": "A feature-rich client for Matrix.org",
|
||||
"author": "Vector Creations Ltd.",
|
||||
"dependencies": {
|
||||
|
||||
+2
-2
@@ -2,7 +2,7 @@
|
||||
"name": "riot-web",
|
||||
"productName": "Riot",
|
||||
"main": "electron_app/src/electron-main.js",
|
||||
"version": "0.11.0",
|
||||
"version": "0.11.1",
|
||||
"description": "A feature-rich client for Matrix.org",
|
||||
"author": "Vector Creations Ltd.",
|
||||
"repository": {
|
||||
@@ -66,7 +66,7 @@
|
||||
"highlight.js": "^9.0.0",
|
||||
"linkifyjs": "^2.1.3",
|
||||
"matrix-js-sdk": "0.7.11",
|
||||
"matrix-react-sdk": "0.9.3",
|
||||
"matrix-react-sdk": "0.9.4",
|
||||
"modernizr": "^3.1.0",
|
||||
"pako": "^1.0.5",
|
||||
"q": "^1.4.1",
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 146 B After Width: | Height: | Size: 8.2 KiB |
@@ -46,8 +46,8 @@ module.exports = React.createClass({
|
||||
translate: function(s) {
|
||||
s = sanitizeHtml(_t(s));
|
||||
// ugly fix for https://github.com/vector-im/riot-web/issues/4243
|
||||
s = s.replace(/Riot\.im/, '<a href="https://riot.im target="_blank">Riot.im</a>');
|
||||
s = s.replace(/\[matrix\]/, '<a href="https://matrix.org" target="_blank"><img width="79" height="34" alt="[matrix]" style="padding-left: 1px;vertical-align: middle" src="home/images/matrix.svg"/></a>');
|
||||
s = s.replace(/Riot\.im/, '<a href="https://riot.im" target="_blank" rel="noopener">Riot.im</a>');
|
||||
s = s.replace(/\[matrix\]/, '<a href="https://matrix.org" target="_blank" rel="noopener"><img width="79" height="34" alt="[matrix]" style="padding-left: 1px;vertical-align: middle" src="home/images/matrix.svg"/></a>');
|
||||
return s;
|
||||
},
|
||||
|
||||
|
||||
@@ -530,7 +530,7 @@ var RoomSubList = React.createClass({
|
||||
var label = this.props.collapsed ? null : this.props.label;
|
||||
|
||||
let content;
|
||||
if (this.state.sortedList.length == 0) {
|
||||
if (this.state.sortedList.length == 0 && !this.props.searchFilter) {
|
||||
content = this.props.emptyContent;
|
||||
} else {
|
||||
content = this.makeRoomTiles();
|
||||
|
||||
@@ -17,7 +17,42 @@ limitations under the License.
|
||||
import React from 'react';
|
||||
import sdk from 'matrix-react-sdk';
|
||||
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
||||
import Modal from 'matrix-react-sdk/lib/Modal';
|
||||
|
||||
const WarmFuzzy = function(props) {
|
||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||
let title = _t('You have successfully set a password!');
|
||||
if (props.didSetEmail) {
|
||||
title = _t('You have successfully set a password and an email address!');
|
||||
}
|
||||
const advice = _t('You can now return to your account after signing out, and sign in on other devices.');
|
||||
let extraAdvice = null;
|
||||
if (!props.didSetEmail) {
|
||||
extraAdvice = _t('Remember, you can always set an email address in user settings if you change your mind.');
|
||||
}
|
||||
|
||||
return <BaseDialog className="mx_SetPasswordDialog"
|
||||
onFinished={props.onFinished}
|
||||
title={ title }
|
||||
>
|
||||
<div className="mx_Dialog_content">
|
||||
<p>
|
||||
{ advice }
|
||||
</p>
|
||||
<p>
|
||||
{ extraAdvice }
|
||||
</p>
|
||||
</div>
|
||||
<div className="mx_Dialog_buttons">
|
||||
<button
|
||||
className="mx_Dialog_primary"
|
||||
autoFocus={true}
|
||||
onClick={props.onFinished}>
|
||||
{ _t('Continue') }
|
||||
</button>
|
||||
</div>
|
||||
</BaseDialog>;
|
||||
};
|
||||
|
||||
/**
|
||||
* Prompt the user to set a password
|
||||
@@ -33,13 +68,19 @@ export default React.createClass({
|
||||
getInitialState: function() {
|
||||
return {
|
||||
error: null,
|
||||
success: false,
|
||||
};
|
||||
},
|
||||
|
||||
_onPasswordChanged: function() {
|
||||
this.setState({
|
||||
success: true,
|
||||
componentWillMount: function() {
|
||||
console.info('SetPasswordDialog component will mount');
|
||||
},
|
||||
|
||||
_onPasswordChanged: function(res) {
|
||||
Modal.createDialog(WarmFuzzy, {
|
||||
didSetEmail: res.didSetEmail,
|
||||
onFinished: () => {
|
||||
this._onContinueClicked();
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
@@ -66,29 +107,6 @@ export default React.createClass({
|
||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||
const ChangePassword = sdk.getComponent('views.settings.ChangePassword');
|
||||
|
||||
if (this.state.success) {
|
||||
return (
|
||||
<BaseDialog className="mx_SetPasswordDialog"
|
||||
onFinished={this.props.onFinished}
|
||||
title={ _t('You have successfully set a password!') }
|
||||
>
|
||||
<div className="mx_Dialog_content">
|
||||
<p>
|
||||
{ _t('You can now return to your account after signing out, and sign in on other devices.') }
|
||||
</p>
|
||||
</div>
|
||||
<div className="mx_Dialog_buttons">
|
||||
<button
|
||||
className="mx_Dialog_primary"
|
||||
autoFocus={true}
|
||||
onClick={this._onContinueClicked}>
|
||||
{ _t('Continue') }
|
||||
</button>
|
||||
</div>
|
||||
</BaseDialog>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<BaseDialog className="mx_SetPasswordDialog"
|
||||
onFinished={this.props.onFinished}
|
||||
@@ -106,6 +124,7 @@ export default React.createClass({
|
||||
buttonClassName="mx_Dialog_primary mx_SetPasswordDialog_change_password_button"
|
||||
confirm={false}
|
||||
autoFocusNewPasswordInput={true}
|
||||
shouldAskForEmail={true}
|
||||
onError={this._onPasswordChangeError}
|
||||
onFinished={this._onPasswordChanged} />
|
||||
<div className="error">
|
||||
|
||||
@@ -205,5 +205,7 @@
|
||||
"This will allow you to return to your account after signing out, and sign in on other devices.": "Dies erlaubt dir, dich wieder an deinem Konto anzumelden, nachdem du dich abgemeldet hast.",
|
||||
"Dev chat for the Dendrite dev team": "Entwickler-Chat für das Dendrite-Entwickler-Team",
|
||||
"General discussion about Matrix and Riot": "Allgemeine Diskussion über Matrix und Riot",
|
||||
" (HTTP status %(httpStatus))": "(HTTP Status %(httpStatus))"
|
||||
" (HTTP status %(httpStatus))": "(HTTP-Status %(httpStatus))",
|
||||
"You have successfully set a password and an email address!": "Du hast erfolgreich ein Passwort und eine E-Mail-Adresse gesetzt!",
|
||||
"Remember, you can always set an email address in user settings if you change your mind.": "Denk daran, dass du in den Benutzereinstellungen jederzeit eine E-Mail-Adresse setzen kannst."
|
||||
}
|
||||
|
||||
+15
-13
@@ -20,8 +20,8 @@
|
||||
"Download this file": "Λήψη αρχείου",
|
||||
"Enable audible notifications in web client": "Ενεργοποίηση ηχητικών ειδοποιήσεων",
|
||||
"Enable email notifications": "Ενεργοποίηση ειδοποιήσεων μέσω μηνυμάτων ηλ. αλληλογραφίας",
|
||||
"Enable notifications for this account": "Ενεργοποίηση ειδοποιήσεων γι' αυτό το λογαριασμό",
|
||||
"Enter keywords separated by a comma:": "Πρόσθεσε λέξεις κλειδιά χωρισμένες με κόμμα:",
|
||||
"Enable notifications for this account": "Ενεργοποίηση ειδοποιήσεων για τον λογαριασμό",
|
||||
"Enter keywords separated by a comma:": "Προσθέστε λέξεις κλειδιά χωρισμένες με κόμμα:",
|
||||
"Error": "Σφάλμα",
|
||||
"#example": "#παράδειγμα",
|
||||
"Expand panel": "Μεγιστοποίηση καρτέλας",
|
||||
@@ -31,7 +31,7 @@
|
||||
"customServer_text": "Μπορείτε να χρησιμοποιήσετε τις προσαρμοσμένες ρυθμίσεις για να εισέλθετε σε άλλους διακομιστές Matrix επιλέγοντας μια διαφορετική διεύθυνση για το διακομιστή.<br/> Αυτό σας επιτρέπει να χρησιμοποιήσετε την εφαρμογή Riot με έναν υπάρχοντα λογαριασμό σε διαφορετικό διακομιστή.<br/><br/>Επίσης μπορείτε να επιλέξετε ένα διαφορετικό διακομιστή ταυτότητας αλλά δεν θα έχετε τη δυνατότητα να προσκαλέσετε άλλους χρήστες ή να σας προσκαλέσουν μέσω μηνυμάτων ηλεκτρονικής αλληλογραφίας.",
|
||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s μέσω %(browserName)s σε %(osName)s",
|
||||
"All messages (loud)": "Όλα τα μηνύματα (δυνατά)",
|
||||
"delete the alias.": "διαγραφή ψευδώνυμου.",
|
||||
"delete the alias.": "διέγραψε το ψευδώνυμο.",
|
||||
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Διαγραφή του ψευδώνυμου %(alias)s και αφαίρεση του %(name)s από το ευρετήριο;",
|
||||
"Dismiss": "Απόρριψη",
|
||||
"Failed to add tag %(tagName)s to room": "Δεν ήταν δυνατή η προσθήκη της ετικέτας %(tagName)s στο δωμάτιο",
|
||||
@@ -39,7 +39,7 @@
|
||||
"Failed to join the room": "Δεν ήταν δυνατή η σύνδεση στο δωμάτιο",
|
||||
"Favourite": "Αγαπημένο",
|
||||
"Files": "Αρχεία",
|
||||
"Filter room names": "Φίλτραρε τα δωμάτια",
|
||||
"Filter room names": "Φιλτράρισμα δωματίων",
|
||||
"Forward Message": "Προώθηση",
|
||||
" from room": " από το δωμάτιο",
|
||||
"Guests can join": "Επισκέπτες μπορούν να συνδεθούν",
|
||||
@@ -86,7 +86,7 @@
|
||||
"Update": "Ενημέρωση",
|
||||
"Enable desktop notifications": "Ενεργοποίηση ειδοποιήσεων στην επιφάνεια εργασίας",
|
||||
"Error saving email notification preferences": "Σφάλμα κατά την αποθήκευση των προτιμήσεων",
|
||||
"Failed to send report: ": "Απέτυχε η αποστολή της αναφοράς: ",
|
||||
"Failed to send report: ": "Δεν ήταν δυνατή η αποστολή της αναφοράς: ",
|
||||
"Loading bug report module": "Φόρτωση μονάδας αναφοράς σφαλμάτων",
|
||||
"Mentions only": "Μόνο αναφορές",
|
||||
"Messages containing my display name": "Μηνύματα που περιέχουν το όνομα μου",
|
||||
@@ -150,7 +150,7 @@
|
||||
"You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Ισως να έχετε κάνει τις ρυθμίσεις σε άλλη εφαρμογή εκτός του Riot. Δεν μπορείτε να τις αλλάξετε μέσω του Riot αλλά ισχύουν κανονικά",
|
||||
"Couldn't find a matching Matrix room": "Δεν βρέθηκε κάποιο δωμάτιο",
|
||||
"Drop here %(toAction)s": "Απόθεση εδώ %(toAction)s",
|
||||
"Failed to": "Αποτυχία να",
|
||||
"Failed to": "Απέτυχε να",
|
||||
"Failed to get public room list": "Δεν ήταν δυνατή η λήψη της λίστας με τα δημόσια δωμάτια",
|
||||
"Failed to set direct chat tag": "Δεν ήταν δυνατός ο χαρακτηρισμός της συνομιλίας ως 1-προς-1",
|
||||
"powered by Matrix": "βασισμένο στο πρωτόκολλο Matrix",
|
||||
@@ -167,11 +167,11 @@
|
||||
"Get started with some tips from Riot Bot!": "Ξεκινήστε με μερικές συμβουλές από το Riot Bot!",
|
||||
"General discussion about Matrix and Riot": "Γενική συζήτηση σχετικά με Matrix και Riot",
|
||||
"Discussion of all things Matrix!": "Συζήτηση για όλα τα πράγματα του Matrix!",
|
||||
"Riot/Web & Desktop chat": "Συνομιλία για Riot/Web & Desktop",
|
||||
"Riot/iOS & matrix-ios-sdk chat": "Συνομιλία για Riot/iOS & matrix-ios-sdk",
|
||||
"Riot/Android & matrix-android-sdk chat": "Συνομιλία για Riot/Android & matrix-android-sdk",
|
||||
"Riot/Web & Desktop chat": "Συζήτηση για το Riot/Web & Desktop",
|
||||
"Riot/iOS & matrix-ios-sdk chat": "Συζήτηση για το Riot/iOS & matrix-ios-sdk",
|
||||
"Riot/Android & matrix-android-sdk chat": "Συζήτηση για το Riot/Android & matrix-android-sdk",
|
||||
"Matrix technical discussions": "Τεχνικές συζητήσεις σχετικά με το Matrix",
|
||||
"Running Matrix services": "Εκτέλεση υπηρεσιών Matrix",
|
||||
"Running Matrix services": "Χρησιμοποιώντας τις υπηρεσίες του Matrix",
|
||||
"Community-run support for Synapse": "Κοινοτική υποστήριξη για το Synapse",
|
||||
"Admin support for Dendrite": "Υποστήριξη διαχειριστή για το Dendrite",
|
||||
"Announcements about Synapse releases": "Ανακοινώσεις σχετικά με τις εκδόσεις του Synapse",
|
||||
@@ -183,8 +183,8 @@
|
||||
"Implementing VoIP services with Matrix": "Υλοποίηση υπηρεσίων VoIP με το Matrix",
|
||||
"Discussion of the Identity Service API": "Συζήτηση σχετικά με το Identity Service API",
|
||||
"Contributing code to Matrix and Riot": "Συνεισφορά κώδικα στο Matrix και Riot",
|
||||
"Dev chat for the Riot/Web dev team": "Συνομιλία για την ομάδα ανάπτυξης του Riot/Web",
|
||||
"Dev chat for the Dendrite dev team": "Συνομιλία για την ομάδα ανάπτυξης του Dendrite",
|
||||
"Dev chat for the Riot/Web dev team": "Συζήτηση με την ομάδα ανάπτυξης του Riot/Web",
|
||||
"Dev chat for the Dendrite dev team": "Συζήτηση με την ομάδα ανάπτυξης του Dendrite",
|
||||
"Co-ordination for Riot/Web translators": "Συντονισμός για μεταφραστές του Riot/Web",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Αρκετά δωμάτια υπάρχουν ήδη στο Matrix, συνδεδεμένα σε υπάρχοντα δίκτυα (Slack, IRC, Gitter κ.λπ) ή αυτόνομα. Ρίξτε μια ματιά στο ευρετήριο!",
|
||||
"Failed to change password. Is your password correct?": "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης. Είναι σωστός ο κωδικός πρόσβασης;",
|
||||
@@ -196,5 +196,7 @@
|
||||
"In order to diagnose problems, logs from this client will be sent with this bug report. If you would prefer to only send the text above, please untick:": "Προκειμένου να διαγνωστούν προβλήματα, τα αρχεία καταγραφής από αυτόν τον πελάτη θα σταλούν με αυτήν την αναφορά σφάλματος. Αν προτιμάτε να στείλετε μόνο το παραπάνω κείμενο, απενεργοποιήστε:",
|
||||
"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!": "Με τον τρέχον περιηγητή, η εμφάνιση και η αίσθηση της εφαρμογής ενδέχεται να είναι εντελώς εσφαλμένη και ορισμένες ή όλες οι λειτουργίες ενδέχεται να μην λειτουργούν. Εάν θέλετε να το δοκιμάσετε ούτως ή άλλως μπορείτε να συνεχίσετε, αλλά είστε μόνοι σας σε ό, τι αφορά τα προβλήματα που μπορεί να αντιμετωπίσετε!",
|
||||
"Failed to set Direct Message status of room": "Δεν ήταν δυνατός ο ορισμός της κατάστασης Direct Message του δωματίου",
|
||||
"Support for those using, running and writing other bridges": "Υποστήριξη ηια τους χρήστες που χρησιμοποιούν ή αναπτύσσουν εφαρμογές ενσωμάτωσης για το Matrix"
|
||||
"Support for those using, running and writing other bridges": "Υποστήριξη για τους χρήστες που χρησιμοποιούν ή αναπτύσσουν εφαρμογές ενσωμάτωσης για το Matrix",
|
||||
"You have successfully set a password and an email address!": "Ο κωδικός πρόσβασης και η διεύθυνση ηλεκτρονικής αλληλογραφίας ορίστηκαν επιτυχώς!",
|
||||
"Remember, you can always set an email address in user settings if you change your mind.": "Να θυμάστε ότι μπορείτε πάντα να ορίσετε μια διεύθυνση ηλεκτρονικής αλληλογραφίας στις ρυθμίσεις χρήστη αν αλλάξετε γνώμη."
|
||||
}
|
||||
|
||||
@@ -196,5 +196,7 @@
|
||||
"You can now return to your account after signing out, and sign in on other devices.": "You can now return to your account after signing out, and sign in on other devices.",
|
||||
"Continue": "Continue",
|
||||
"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."
|
||||
"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.",
|
||||
"You have successfully set a password and an email address!": "You have successfully set a password and an email address!",
|
||||
"Remember, you can always set an email address in user settings if you change your mind.": "Remember, you can always set an email address in user settings if you change your mind."
|
||||
}
|
||||
|
||||
@@ -167,5 +167,34 @@
|
||||
" (HTTP status %(httpStatus))": "(HTTP status %(httpStatus))",
|
||||
"Welcome to Riot.im": "Welcome to Riot.im",
|
||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]",
|
||||
"Chat with Riot Bot": "Chat with Riot Bot"
|
||||
"Chat with Riot Bot": "Chat with Riot Bot",
|
||||
"Search the room directory": "Search the room directory",
|
||||
"Get started with some tips from Riot Bot!": "Get started with some tips from Riot Bot!",
|
||||
"General discussion about Matrix and Riot": "General discussion about Matrix and Riot",
|
||||
"Discussion of all things Matrix!": "Discussion of all things Matrix!",
|
||||
"Matrix technical discussions": "Matrix technical discussions",
|
||||
"Running Matrix services": "Running Matrix services",
|
||||
"Community-run support for Synapse": "Community-run support for Synapse",
|
||||
"Admin support for Dendrite": "Admin support for Dendrite",
|
||||
"Announcements about Synapse releases": "Announcements about Synapse releases",
|
||||
"Support for those using and running matrix-appservice-irc": "Support for those using and running matrix-appservice-irc",
|
||||
"Building services on Matrix": "Building services on Matrix",
|
||||
"Support for those using the Matrix spec": "Support for those using the Matrix spec",
|
||||
"Design and implementation of E2E in Matrix": "Design and implementation of E2E in Matrix",
|
||||
"Implementing VR services with Matrix": "Implementing VR services with Matrix",
|
||||
"Implementing VoIP services with Matrix": "Implementing VoIP services with Matrix",
|
||||
"Discussion of the Identity Service API": "Discussion of the Identity Service API",
|
||||
"Support for those using, running and writing other bridges": "Support for those using, running and writing other bridges",
|
||||
"Contributing code to Matrix and Riot": "Contributing code to Matrix and Riot",
|
||||
"Dev chat for the Riot/Web dev team": "Dev chat for the Riot/Web dev team",
|
||||
"Dev chat for the Dendrite dev team": "Dev chat for the Dendrite dev team",
|
||||
"Co-ordination for Riot/Web translators": "Co-ordination for Riot/Web translators",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!",
|
||||
"You have successfully set a password!": "You have successfully set a password!",
|
||||
"You can now return to your account after signing out, and sign in on other devices.": "You can now return to your account after signing out, and sign in on other devices.",
|
||||
"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.",
|
||||
"Riot/Android & matrix-android-sdk chat": "Riot/Android & matrix-android-sdk chat",
|
||||
"Riot/Web & Desktop chat": "Riot/Web & Desktop chat",
|
||||
"Riot/iOS & matrix-ios-sdk chat": "Riot/iOS & matrix-ios-sdk chat"
|
||||
}
|
||||
|
||||
@@ -1 +1,45 @@
|
||||
{}
|
||||
{
|
||||
"A new version of Riot is available.": "Nova versio de \"Riot\" haveblas.",
|
||||
"All messages": "Ĉiuj mesaĝoj",
|
||||
"All messages (loud)": "Ĉiuj mesaĝoj (lauta)",
|
||||
"All Rooms": "Ĉiuj babilejoj",
|
||||
"Cancel": "Nuligu",
|
||||
"Create new room": "Kreu novan babilejon",
|
||||
"delete the alias.": "Forviŝu la alinomon.",
|
||||
"Describe your problem here.": "Priskribu vian problemon ĉi-tie.",
|
||||
"Direct Chat": "Rekta babilejo",
|
||||
"Directory": "Dosierujo",
|
||||
"Dismiss": "Eksigu",
|
||||
"Download this file": "Elŝutu ĉi-tiun dosieron",
|
||||
"#example": "#ekzemplo",
|
||||
"Files": "Dosieroj",
|
||||
"Forget": "Forgesu",
|
||||
" from room": " el babilejo",
|
||||
"Guests can join": "Gastoj povas aliĝi",
|
||||
"Guest users can't invite users. Please register to invite.": "Gasta uzantoj ne povas inviti uzantojn. Bonvolu registri por inviti.",
|
||||
"I understand the risks and wish to continue": "Mi komprenas la riskoj kaj volas daŭrigi",
|
||||
"Invite to this room": "Invitu al ĉi-tiun babilejon",
|
||||
"Keywords": "Ŝlosilvortoj",
|
||||
"Leave": "Lasu",
|
||||
"Low Priority": "Malalta prioritato",
|
||||
"Messages containing my display name": "Mesaĝoj enhavantaj mia ekrano nomo",
|
||||
"Messages containing <span>keywords</span>": "Mesaĝoj enhavantaj <span>ŝlosilovortoj</span>",
|
||||
"Messages containing my user name": "Mesaĝoj enhavantaj mia uzantnomo",
|
||||
"Messages in group chats": "Mesaĝoj en grupaj babilejoj",
|
||||
"Mute": "Silentigu",
|
||||
"Please describe the bug. What did you do? What did you expect to happen? What actually happened?": "Bonvolu priskribi la cimon. Kion vi faris? Kion vi atendis okazi? Kion fakte okazis?",
|
||||
"Please install <a href=\"https://www.google.com/chrome\">Chrome</a> or <a href=\"https://getfirefox.com\">Firefox</a> for the best experience.": "Bonvolu instali <a href=\"https://www.google.com/chrome\">\"Chrome\"</a> aŭ <a href=\"https://getfirefox.com\">\"Firefox\"</a> por la plej bona sperto.",
|
||||
"Please Register": "Bonvolu registri",
|
||||
"powered by Matrix": "funkciigata de \"Matrix\"",
|
||||
"Quote": "Citu",
|
||||
"Reject": "Malakceptu",
|
||||
"Resend": "Resendu",
|
||||
"Room directory": "Babilejo dosierujo",
|
||||
"Room not found": "Babilejon ne trovis",
|
||||
"Search": "Serĉu",
|
||||
"Search…": "Serĉu…",
|
||||
"Search for a room": "Serĉu por babilejon",
|
||||
"Send": "Sendu",
|
||||
"Start chat": "Komencu babilo",
|
||||
"This Room": "Ĉi-tiu Babilejo"
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"Create new room": "Créer un nouveau salon",
|
||||
"Couldn't find a matching Matrix room": "Impossible de trouver un salon Matrix",
|
||||
"Custom Server Options": "Options de serveur personnalisées",
|
||||
"delete the alias.": "Supprimer l'alias.",
|
||||
"delete the alias.": "supprimer l'alias.",
|
||||
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer l'alias %(alias)s du salon et supprimer %(name)s du répertoire ?",
|
||||
"Direct Chat": "Conversation Directe",
|
||||
"Directory": "Répertoire",
|
||||
@@ -85,7 +85,7 @@
|
||||
"more": "plus",
|
||||
"Mute": "Couper le son",
|
||||
"No rooms to show": "Aucun salon à afficher",
|
||||
"Noisy": "Sonore",
|
||||
"Noisy": "Activer le son",
|
||||
"Notification targets": "Appareils recevant les notifications",
|
||||
"Notifications": "Notifications",
|
||||
"Notifications on the following keywords follow rules which can’t be displayed here": "Les mots-clés suivants suivent des règles de notification qui ne peuvent être affichées ici",
|
||||
@@ -118,7 +118,7 @@
|
||||
"Guests can join": "Ouvert aux visiteurs",
|
||||
" to room": " au salon",
|
||||
"Advanced notification settings": "Paramètres de notification avancés",
|
||||
"customServer_text": "Vous pouvez utiliser l'option de serveur personnalisé pour vous connectez à d'autres serveurs Matrix, en spécifiant une adresse de homerserver différente.<br/>Cela permet d'utiliser Riot avec un compte existant sur un homeserverdifférent.<br/><br/>Vous pouvez aussi indiquer un serveur d'identité personnel mais vous ne pourrez plus inviter des utilisateurs par email, ou être invité par email.",
|
||||
"customServer_text": "Vous pouvez utiliser l'option de serveur personnalisé pour vous connectez à d'autres serveurs Matrix, en spécifiant une adresse de homerserver différente.<br/>Cela permet d'utiliser Riot avec un compte existant sur un homeserver différent.<br/><br/>Vous pouvez aussi indiquer un serveur d'identité personnel mais vous ne pourrez plus inviter des utilisateurs par email, ou être invité par email.",
|
||||
"Notifications on the following keywords follow rules which can’t be displayed here:": "Les notifications pour les mots-clés suivant répondent à des critères qui ne peuvent pas être affichés ici :",
|
||||
"Collapse panel": "Cacher le panneau",
|
||||
"Expand panel": "Dévoiler le panneau",
|
||||
@@ -133,7 +133,7 @@
|
||||
"A new version of Riot is available.": "Une nouvelle version de Riot est disponible.",
|
||||
"All Rooms": "Tous les salons",
|
||||
"Cancel": "Annuler",
|
||||
"Changelog": "Journal des modif.",
|
||||
"Changelog": "Journal des modif",
|
||||
"Collecting app version information": "Récupération des info de version de l’application",
|
||||
"Collecting logs": "Récupération des traces",
|
||||
"Describe your problem here.": "Décrivez votre problème ici.",
|
||||
@@ -159,7 +159,45 @@
|
||||
"What's New": "Nouveautés",
|
||||
"What's new?": "Nouveautés ?",
|
||||
"Waiting for response from server": "En attente d’une réponse du serveur",
|
||||
"You are Rioting as a guest. <a>Register</a> or <a>sign in</a> to access more rooms and features!": "Vous utilisez Riot en tant que visiteur. <a>Enregistrez vous</a> ou <a>identifiez vous</a> pour accéder à plus de salons et de fonctionnalités !",
|
||||
"You are Rioting as a guest. <a>Register</a> or <a>sign in</a> to access more rooms and features!": "Vous utilisez Riot en tant que visiteur. <a>Enregistrez-vous</a> ou <a>identifiez-vous</a> pour accéder à plus de salons et de fonctionnalités !",
|
||||
"You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel en partage d’écran.",
|
||||
"OK": "OK"
|
||||
"OK": "OK",
|
||||
"Failed to change password. Is your password correct?": "Échec du changement de mot de passe. Votre mot de passe est-il correct ?",
|
||||
"You have successfully set a password!": "Vous avez paramétré un mot de passe avec succès !",
|
||||
"Continue": "Continuer",
|
||||
"Please set a password!": "Veuillez définir un mot de passe !",
|
||||
"You can now return to your account after signing out, and sign in on other devices.": "Vous pouvez maintenant revenir sur votre compte après vous être déconnecté, et vous identifier sur d'autres appareils.",
|
||||
"This will allow you to return to your account after signing out, and sign in on other devices.": "Cela vous permettra de retourner sur votre compte après vous être déconnecté, et de vous identifier sur d'autres appareils.",
|
||||
"Welcome to Riot.im": "Bienvenue sur Riot.im",
|
||||
" (HTTP status %(httpStatus))": "(statut HTTP %(httpStatus))",
|
||||
"Login": "S'identifier",
|
||||
"Chat with Riot Bot": "Discussion avec Riot Bot",
|
||||
"Search the room directory": "Rechercher dans le répertoire de salon",
|
||||
"Get started with some tips from Riot Bot!": "Démarrer avec quelques astuces de Riot Bot !",
|
||||
"Riot/Android & matrix-android-sdk chat": "Discussions Riot/Android & matrix-android-sd",
|
||||
"Riot/iOS & matrix-ios-sdk chat": "Discussions Riot/iOS & matrix-ios-sdk",
|
||||
"General discussion about Matrix and Riot": "Discussion générale sur Matrix et Riot",
|
||||
"Riot/Web & Desktop chat": "Discussions Riot/Web & Desktop",
|
||||
"Running Matrix services": "Execution de services Matrix",
|
||||
"Admin support for Dendrite": "Support admin pour Dendrite",
|
||||
"Announcements about Synapse releases": "Communiqués sur les nouvelles versions de Synapse",
|
||||
"Matrix technical discussions": "Discussions techniques sur Matrix",
|
||||
"Community-run support for Synapse": "Support communautaire sur Synape",
|
||||
"Support for those using and running matrix-appservice-irc": "Support pour ceux qui utilisent et exécutent matrix-appservice-irc",
|
||||
"Building services on Matrix": "Développement de services sur Matrix",
|
||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Discussion & collaboration décentralisées et encryptées propulsé par [matrix]",
|
||||
"Discussion of all things Matrix!": "Discussion de tous les sujets Matrix !",
|
||||
"Support for those using the Matrix spec": "Support pour les utilisateurs de la spec Matrix",
|
||||
"Design and implementation of E2E in Matrix": "Définition et implémentation de la crypto dans Matrix",
|
||||
"Implementing VR services with Matrix": "Implémentation de de services de réalité virtuelle avec Matrix",
|
||||
"Implementing VoIP services with Matrix": "Implémentation de de services de voix sur IP avec Matrix",
|
||||
"Discussion of the Identity Service API": "Discussion sur l’API du Service Identité",
|
||||
"Support for those using, running and writing other bridges": "Support pour les utilisateurs, administrateurs et développeurs de passerelles",
|
||||
"Contributing code to Matrix and Riot": "Contribuer à Matrix et Riot",
|
||||
"Dev chat for the Riot/Web dev team": "Forum pour les discussions sur les développements de Riot/Web",
|
||||
"Dev chat for the Dendrite dev team": "Forum pour les discussion sur les développements de Dendrite",
|
||||
"Co-ordination for Riot/Web translators": "Coordination des traducteurs de Riot/Web",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Beaucoup de salons existent déjà dans Matrix, liés à des réseaux existants (Slsck, IRC, Gitter etc) ou indépendants. Jetez un oeil au répertoire !",
|
||||
"You have successfully set a password and an email address!": "Vous avez configuré un mot de passe et une adresse e-mail avec succès !",
|
||||
"Remember, you can always set an email address in user settings if you change your mind.": "Souvenez-vous que vous pourrez toujours définir une adresse e-mail dans la configuration utilisateur si vous changez d’avis."
|
||||
}
|
||||
|
||||
+113
-47
@@ -1,42 +1,42 @@
|
||||
{
|
||||
"Add an email address above to configure email notifications": "Voeg een email adres toe om email notificaties te ontvangen",
|
||||
"Advanced notification settings": "Geavanceerde notificatie instellingen",
|
||||
"Add an email address above to configure email notifications": "Voeg een e-mailadres toe om e-mailmeldingen te ontvangen",
|
||||
"Advanced notification settings": "Geavanceerde meldingsinstellingen",
|
||||
"All messages": "Alle berichten",
|
||||
"All messages (loud)": "Alle berichten (luid)",
|
||||
"All notifications are currently disabled for all targets.": "Alle notificaties zijn op het moment uitgeschakeld voor alle doelen.",
|
||||
"An error occurred whilst saving your email notification preferences.": "Er is een fout ontstaan tijdens het opslaan van jouw email notificatie voorkeuren.",
|
||||
"Call invitation": "Audio gesprek uitnodiging",
|
||||
"Cancel Sending": "Annuleren verzending",
|
||||
"Can't update user notification settings": "Het is niet gelukt om de gebruiker notificatie instellingen bij te werken",
|
||||
"All notifications are currently disabled for all targets.": "Alle meldingen zijn momenteel uitgeschakeld voor alle doelen.",
|
||||
"An error occurred whilst saving your email notification preferences.": "Er is een fout ontstaan tijdens het opslaan van uw e-mailmeldingsvoorkeuren.",
|
||||
"Call invitation": "Oproep-uitnodiging",
|
||||
"Cancel Sending": "Versturen annuleren",
|
||||
"Can't update user notification settings": "Het is niet gelukt om de meldingsinstellingen van de gebruiker bij te werken",
|
||||
"Close": "Sluiten",
|
||||
"Create new room": "Maak een nieuwe kamer",
|
||||
"Create new room": "Een nieuwe kamer maken",
|
||||
"Couldn't find a matching Matrix room": "Het is niet gelukt om een bijbehorende Matrix kamer te vinden",
|
||||
"Custom Server Options": "Aangepaste server instellingen",
|
||||
"customServer_text": "Je kunt de aangepaste server instellingen gebruiken om in te loggen bij andere Matrix servers door een andere home server URL in te voeren.<br/>Dit maakt het mogelijk om Riot te gebruiken met een bestaand Matrix account op een andere home server.<br/><br/>Je kunt ook een aangepaste identiteit server instellen, maar het is dan niet mogelijk om gebruikers uit te nodigen met behulp van een email adres of zelf uitgenodigt te worden met een email adres.",
|
||||
"Custom Server Options": "Aangepaste serverinstellingen",
|
||||
"customServer_text": "U kunt de aangepaste serverinstellingen gebruiken om in te loggen bij andere Matrix-servers door een andere homeserver-URL in te voeren.<br/>Dit maakt het mogelijk om Riot te gebruiken met een bestaand Matrix-account op een andere homeserver.<br/><br/>U kunt ook een aangepaste identiteitsserver instellen, maar het is dan niet mogelijk om gebruikers uit te nodigen met behulp van een e-mailadres of zelf uitgenodigd te worden met een e-mailadres.",
|
||||
"delete the alias.": "verwijder de alias.",
|
||||
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Verwijder de alias %(alias)s en verwijder %(name)s uit de map?",
|
||||
"Direct Chat": "Privé gesprek",
|
||||
"Directory": "Kamer lijst",
|
||||
"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?",
|
||||
"Direct Chat": "Privégesprek",
|
||||
"Directory": "Kamerlijst",
|
||||
"Dismiss": "Afwijzen",
|
||||
"Download this file": "Download dit bestand",
|
||||
"Enable audible notifications in web client": "Zet notificaties aan in de web client",
|
||||
"Enable desktop notifications": "Zet desktop notificaties aan",
|
||||
"Enable email notifications": "Zet email notificaties aan",
|
||||
"Enable notifications for this account": "Zet notificaties aan voor dit account",
|
||||
"Enable them now": "Zet ze nu aan",
|
||||
"Enable audible notifications in web client": "Meldingen in de webclient aanzetten",
|
||||
"Enable desktop notifications": "Desktopmeldingen aanzetten",
|
||||
"Enable email notifications": "E-mailmeldingen aanzetten",
|
||||
"Enable notifications for this account": "Meldingen voor dit account aanzetten",
|
||||
"Enable them now": "Deze nu aanzetten",
|
||||
"Enter keywords separated by a comma:": "Voeg trefwoorden toe, gesplitst door een komma:",
|
||||
"Error": "Fout",
|
||||
"Error saving email notification preferences": "Fout bij het opslaan van de email notificatie voorkeuren",
|
||||
"Error saving email notification preferences": "Fout bij het opslaan van de meldingsvoorkeuren voor e-mail",
|
||||
"#example": "#voorbeeld",
|
||||
"Failed to": "Mislukt om",
|
||||
"Failed to add tag %(tagName)s to room": "Mislukt om de label %(tagName)s aan de kamer toe te voegen",
|
||||
"Failed to change settings": "Het is mislukt om de instellingen te wijzigen",
|
||||
"Failed to forget room %(errCode)s": "Het is mislukt om de kamer te vergeten %(errCode)s",
|
||||
"Failed to update keywords": "Het is mislukt om de trefwoorden bij te werken",
|
||||
"Failed to get protocol list from Home Server": "Het is mislukt om de protocol lijst op te halen van de home server",
|
||||
"Failed to get public room list": "Het is mislukt om de lijst van publieke kamers op te halen",
|
||||
"Failed to join the room": "Het is mislukt om de kamer toe te treden",
|
||||
"Failed to remove tag %(tagName)s from room": "Het is mislukt om de label %(tagName)s van de kamer te verwijderen",
|
||||
"Failed to change settings": "Instellingen wijzigen mislukt",
|
||||
"Failed to forget room %(errCode)s": "Kamer vergeten mislukt %(errCode)s",
|
||||
"Failed to update keywords": "Sleutelwoorden bijwerken mislukt",
|
||||
"Failed to get protocol list from Home Server": "Protocollijst ophalen van de homeserver mislukt",
|
||||
"Failed to get public room list": "Lijst met publieke kamers ophalen mislukt",
|
||||
"Failed to join the room": "Kamer binnengaan mislukt",
|
||||
"Failed to remove tag %(tagName)s from room": "Label %(tagName)s van de kamer verwijderen mislukt",
|
||||
"Failed to set direct chat tag": "Het is mislukt om de privé chat label weg te halen",
|
||||
"Favourite": "Favoriet",
|
||||
"Fetching third party location failed": "Het ophalen van de locatie van de derde partij is mislukt",
|
||||
@@ -54,38 +54,38 @@
|
||||
"Mentions only": "Alleen vermeldingen",
|
||||
"Messages containing my display name": "Berichten die mijn weergavenaam bevatten",
|
||||
"Messages containing my user name": "Berichten die mijn gebruikersnaam bevatten",
|
||||
"Messages in group chats": "Berichten in groep gesprekken",
|
||||
"Messages in one-to-one chats": "Berichten in één-op-één gesprekken",
|
||||
"Messages in group chats": "Berichten in groepsgesprekken",
|
||||
"Messages in one-to-one chats": "Berichten in één-op-één-gesprekken",
|
||||
"Messages sent by bot": "Berichten verzonden bij een bot",
|
||||
"more": "meer",
|
||||
"Mute": "Dempen",
|
||||
"No rooms to show": "Geen kamers om te laten zien",
|
||||
"Noisy": "Luidruchtig",
|
||||
"Notification targets": "Notificatie doelen",
|
||||
"Notifications": "Notificaties",
|
||||
"Notifications": "Meldingen",
|
||||
"Notifications on the following keywords follow rules which can’t be displayed here:": "Notificaties op de volgende trefwoorden volgen regels die hier niet kunnen worden laten zien:",
|
||||
"Notify for all other messages/rooms": "Informeer mij voor alle andere berichten/kamers",
|
||||
"Notify me for anything else": "Informeer mij voor al het andere",
|
||||
"Off": "Uit",
|
||||
"On": "Aan",
|
||||
"Operation failed": "Actie mislukt",
|
||||
"Permalink": "Permalink",
|
||||
"Please Register": "Registreer alsjeblieft",
|
||||
"powered by Matrix": "aangedreven door Matrix",
|
||||
"Quote": "Quote",
|
||||
"Permalink": "Permanente link",
|
||||
"Please Register": "Registreer alstublieft",
|
||||
"powered by Matrix": "mogelijk gemaakt door Matrix",
|
||||
"Quote": "Citaat",
|
||||
"Reject": "Afwijzen",
|
||||
"Remove %(name)s from the directory?": "Verwijder %(name)s uit de kamer lijst?",
|
||||
"Remove": "Verwijder",
|
||||
"remove %(name)s from the directory.": "verwijder %(name)s uit de kamer lijst.",
|
||||
"Remove from Directory": "Verwijder uit de kamer lijst",
|
||||
"Remove %(name)s from the directory?": "%(name)s uit de kamerlijst verwijderen?",
|
||||
"Remove": "Verwijderen",
|
||||
"remove %(name)s from the directory.": "verwijder %(name)s uit de kamerlijst.",
|
||||
"Remove from Directory": "Uit de kamerlijst verwijderen",
|
||||
"Resend": "Opnieuw verzenden",
|
||||
"Riot does not know how to join a room on this network": "Riot weet niet hoe het moet toetreden tot een kamer op dit netwerk",
|
||||
"Room directory": "Kamer lijst",
|
||||
"Room directory": "Kamerlijst",
|
||||
"Room not found": "De kamer is niet gevonden",
|
||||
"Search for a room": "Zoek naar een kamer",
|
||||
"Search for a room": "Een kamer zoeken",
|
||||
"Settings": "Instellingen",
|
||||
"Source URL": "Bron URL",
|
||||
"Start chat": "Start gesprek",
|
||||
"Start chat": "Gesprek starten",
|
||||
"The Home Server may be too old to support third party networks": "De home server is misschien te oud om netwerken van derde partijen te ondersteunen",
|
||||
"There are advanced notifications which are not shown here": "Er zijn geavanceerde notificaties die hier niet worden laten zien",
|
||||
"The server may be unavailable or overloaded": "De server is misschien niet beschikbaar of overbeladen",
|
||||
@@ -95,14 +95,14 @@
|
||||
"Unable to join network": "Het is mislukt om toe te treden tot dit netwerk",
|
||||
"Unable to look up room ID from server": "Het is mislukt om de kamer ID op te halen van de server",
|
||||
"Unhide Preview": "Zichtbaar maken preview",
|
||||
"unknown error code": "niet bekende foutcode",
|
||||
"unknown error code": "onbekende foutcode",
|
||||
"Unnamed room": "Kamer zonder naam",
|
||||
"Uploaded on %(date)s by %(user)s": "Geüpload op %(date)s door %(user)s",
|
||||
"View Decrypted Source": "Bekijk gedecodeerde bron",
|
||||
"View Source": "Bekijk bron",
|
||||
"When I'm invited to a room": "Wanneer ik uitgenodigt wordt naar een kamer",
|
||||
"World readable": "Door iedereen leesbaar",
|
||||
"You cannot delete this image. (%(code)s)": "Je kunt deze afbeelding niet verwijderen. %(code)s)",
|
||||
"You cannot delete this image. (%(code)s)": "Je kunt deze afbeelding niet verwijderen. (%(code)s)",
|
||||
"You cannot delete this message. (%(code)s)": "Je kunt dit bericht niet verwijderen. (%(code)s)",
|
||||
"You are not receiving desktop notifications": "Je ontvangt momenteel geen desktop notificaties",
|
||||
"You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Je hebt ze mogelijk ingesteld in een andere client dan Riot. Je kunt ze niet aanpassen in Riot maar ze zijn wel actief",
|
||||
@@ -115,11 +115,77 @@
|
||||
"Saturday": "Zaterdag",
|
||||
"Today": "Vandaag",
|
||||
"Yesterday": "Gisteren",
|
||||
"Welcome page": "Welkom pagina",
|
||||
"Drop here %(toAction)s": "%(toAction)s hier naar toe verplaatsen",
|
||||
"Welcome page": "Welkomstpagina",
|
||||
"Drop here %(toAction)s": "%(toAction)s hier naartoe verplaatsen",
|
||||
"Failed to set Direct Message status of room": "Het is mislukt om de directe berichten status van de kamer in te stellen",
|
||||
"Redact": "Redigeren",
|
||||
"A new version of Riot is available.": "Nieuwe Riot versie is beschikbaar.",
|
||||
"All Rooms": "Alle Kamers",
|
||||
"Cancel": "Annuleer"
|
||||
"A new version of Riot is available.": "Nieuwe Riot-versie is beschikbaar.",
|
||||
"All Rooms": "Alle kamers",
|
||||
"Cancel": "Annuleren",
|
||||
"<a href=\"http://apple.com/safari\">Safari</a> and <a href=\"http://opera.com\">Opera</a> work too.": "<a href=\"http://apple.com/safari\">Safari</a> en <a href=\"http://opera.com\">Opera</a> werken ook.",
|
||||
"Changelog": "Logboek van wijzigingen",
|
||||
"Collapse panel": "Paneel inklappen",
|
||||
"Collecting app version information": "App-versieinformatie verzamelen",
|
||||
"Collecting logs": "Logboeken verzamelen",
|
||||
"Describe your problem here.": "Beschrijf uw probleem hier.",
|
||||
"Expand panel": "Paneel uitklappen",
|
||||
"Failed to send report: ": "Rapport verzenden mislukt: ",
|
||||
"Forward Message": "Bericht doorsturen",
|
||||
"Hide panel": "Paneel verbergen",
|
||||
" (HTTP status %(httpStatus))": "(HTTP-status %(httpStatus))",
|
||||
"I understand the risks and wish to continue": "Ik begrijp de risico's en wil graag verder gaan",
|
||||
"Login": "Aanmelden",
|
||||
"Loading bug report module": "Bugrapporteermodule laden",
|
||||
"Messages containing <span>keywords</span>": "Berichten die <span>sleutelwoorden</span> bevatten",
|
||||
"Please install <a href=\"https://www.google.com/chrome\">Chrome</a> or <a href=\"https://getfirefox.com\">Firefox</a> for the best experience.": "Installeer <a href=\"https://www.google.com/chrome\">Chrome</a> of <a href=\"https://getfirefox.com\">Firefox</a> voor de beste ervaring.",
|
||||
"Report a bug": "Een bug rapporteren",
|
||||
"Riot Desktop on %(platformName)s": "Riot Desktop op %(platformName)s",
|
||||
"Riot is not supported on mobile web. Install the app?": "Riot wordt niet ondersteund op het mobiele web. De app installeren?",
|
||||
"Search": "Zoeken",
|
||||
"Search…": "Zoeken…",
|
||||
"Send": "Versturen",
|
||||
"Send logs": "Logboeken versturen",
|
||||
"Sorry, your browser is <b>not</b> able to run Riot.": "Sorry, uw browser werkt <b>niet</b> met Riot.",
|
||||
"This Room": "Deze ruimte",
|
||||
"Unavailable": "Niet beschikbaar",
|
||||
"Unknown device": "Onbekend apparaat",
|
||||
"Update": "Bijwerken",
|
||||
"Uploading report": "Rapport uploaden",
|
||||
"What's New": "Wat is er nieuw",
|
||||
"What's new?": "Wat is er nieuw?",
|
||||
"Waiting for response from server": "Wachten op antwoord van de server",
|
||||
"You are Rioting as a guest. <a>Register</a> or <a>sign in</a> to access more rooms and features!": "U gebruikt Riot als gast. <a>Registreren</a> of <a>aanmelden</a> om voor meer ruimtes en functies!",
|
||||
"OK": "OK",
|
||||
"You need to be using HTTPS to place a screen-sharing call.": "U moet HTTPS gebruiken om een oproep met schermdelen te kunnen starten.",
|
||||
"Welcome to Riot.im": "Welkom bij Riot.im",
|
||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentaliseerd en versleuteld chatten & samenwerking mogelijk gemaakt door [matrix]",
|
||||
"Search the room directory": "De kamerlijst doorzoeken",
|
||||
"Chat with Riot Bot": "Met Riot Bot chatten",
|
||||
"Get started with some tips from Riot Bot!": "Begin met enkele tips van Riot-bot!",
|
||||
"General discussion about Matrix and Riot": "Algemene discussie over Matrix en Riot",
|
||||
"Discussion of all things Matrix!": "Discussie over alle Matrix-dingen!",
|
||||
"Riot/Web & Desktop chat": "Riot/Web & Desktop-chat",
|
||||
"Riot/iOS & matrix-ios-sdk chat": "Riot/iOS & matrix-ios-sdk-chat",
|
||||
"Riot/Android & matrix-android-sdk chat": "Riot/Android & matrix-android-sdk-chat",
|
||||
"Matrix technical discussions": "Technische discussies over Matrix",
|
||||
"Running Matrix services": "Matrixdiensten beheren",
|
||||
"Community-run support for Synapse": "Synapse-ondersteuning vanuit de gemeenschap",
|
||||
"Admin support for Dendrite": "Beheerondersteuning voor Dendrite",
|
||||
"Announcements about Synapse releases": "Aankondigingen over Synapse-uitgaven",
|
||||
"Support for those using and running matrix-appservice-irc": "Ondersteuning voor hen die matrix-appservice-irc gebruiken en beheren",
|
||||
"Building services on Matrix": "Diensten op Matrix bouwen",
|
||||
"Support for those using the Matrix spec": "Ondersteuning voor hen die de Matrix-specificatie gebruiken",
|
||||
"Contributing code to Matrix and Riot": "Code bijdragen aan Matrix en Riot",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Veel ruimtes bestaan al in Matrix, gelinkt aan bestaande netwerken (Slack, IRC, Gitter enz.) of onafhankelijk. Bekijk de kamerlijst!",
|
||||
"Failed to change password. Is your password correct?": "Wachtwoord wijzigen mislukt. Is uw wachtwoord juist?",
|
||||
"You have successfully set a password!": "U heeft met succes een wachtwoord ingesteld!",
|
||||
"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 aanmelden op andere apparaten.",
|
||||
"Continue": "Doorgaan",
|
||||
"Please set a password!": "Stel een wachtwoord in!",
|
||||
"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 aanmelden op andere apparaten.",
|
||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s op %(osName)s",
|
||||
"Please describe the bug. What did you do? What did you expect to happen? What actually happened?": "Beschrijf de bug. Wat deed u? Wat verwachtte u? Wat gebeurde er in werkelijkheid?",
|
||||
"Please describe the bug and/or send logs.": "Beschrijf de bug en/of verstuur logboeken.",
|
||||
"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.",
|
||||
"Co-ordination for Riot/Web translators": "Coördinatie voor Riot/Web-vertalers"
|
||||
}
|
||||
|
||||
@@ -71,6 +71,7 @@
|
||||
@import "./vector-web/views/context_menus/_MessageContextMenu.scss";
|
||||
@import "./vector-web/views/context_menus/_RoomTileContextMenu.scss";
|
||||
@import "./vector-web/views/dialogs/_ChangelogDialog.scss";
|
||||
@import "./vector-web/views/dialogs/_SetEmailDialog.scss";
|
||||
@import "./vector-web/views/dialogs/_SetPasswordDialog.scss";
|
||||
@import "./vector-web/views/directory/_NetworkDropdown.scss";
|
||||
@import "./vector-web/views/elements/_ImageView.scss";
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
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.
|
||||
*/
|
||||
|
||||
.mx_SetEmailDialog_email_input {
|
||||
border-radius: 3px;
|
||||
border: 1px solid $input-border-color;
|
||||
padding: 9px;
|
||||
color: $input-fg-color;
|
||||
background-color: $primary-bg-color;
|
||||
font-size: 15px;
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mx_SetEmailDialog_email_input:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
border: 1px solid $accent-color;
|
||||
}
|
||||
|
||||
.mx_SetEmailDialog_email_input_placeholder {
|
||||
}
|
||||
Reference in New Issue
Block a user