Merge branch 'develop' into rav/handle_received_room_key_requests
This commit is contained in:
commit
c1151fd31c
35 changed files with 2638 additions and 244 deletions
26
CHANGELOG.md
26
CHANGELOG.md
|
@ -1,3 +1,29 @@
|
||||||
|
Changes in [0.9.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.1) (2017-06-02)
|
||||||
|
===================================================================================================
|
||||||
|
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0...v0.9.1)
|
||||||
|
|
||||||
|
* Update from Weblate.
|
||||||
|
[\#1012](https://github.com/matrix-org/matrix-react-sdk/pull/1012)
|
||||||
|
* typo, missing import and mis-casing
|
||||||
|
[\#1014](https://github.com/matrix-org/matrix-react-sdk/pull/1014)
|
||||||
|
* Update from Weblate.
|
||||||
|
[\#1010](https://github.com/matrix-org/matrix-react-sdk/pull/1010)
|
||||||
|
|
||||||
|
Changes in [0.9.0](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.0) (2017-06-02)
|
||||||
|
===================================================================================================
|
||||||
|
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0-rc.2...v0.9.0)
|
||||||
|
|
||||||
|
* sync pt with pt_BR
|
||||||
|
[\#1009](https://github.com/matrix-org/matrix-react-sdk/pull/1009)
|
||||||
|
* Update from Weblate.
|
||||||
|
[\#1008](https://github.com/matrix-org/matrix-react-sdk/pull/1008)
|
||||||
|
* Update from Weblate.
|
||||||
|
[\#1003](https://github.com/matrix-org/matrix-react-sdk/pull/1003)
|
||||||
|
* allow hiding redactions, restoring old behaviour
|
||||||
|
[\#1004](https://github.com/matrix-org/matrix-react-sdk/pull/1004)
|
||||||
|
* Add missing translations
|
||||||
|
[\#1005](https://github.com/matrix-org/matrix-react-sdk/pull/1005)
|
||||||
|
|
||||||
Changes in [0.9.0-rc.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.0-rc.2) (2017-06-02)
|
Changes in [0.9.0-rc.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.0-rc.2) (2017-06-02)
|
||||||
=============================================================================================================
|
=============================================================================================================
|
||||||
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0-rc.1...v0.9.0-rc.2)
|
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0-rc.1...v0.9.0-rc.2)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "matrix-react-sdk",
|
"name": "matrix-react-sdk",
|
||||||
"version": "0.9.0-rc.2",
|
"version": "0.9.1",
|
||||||
"description": "SDK for matrix.org using React",
|
"description": "SDK for matrix.org using React",
|
||||||
"author": "matrix.org",
|
"author": "matrix.org",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -19,8 +19,10 @@ import MatrixClientPeg from './MatrixClientPeg';
|
||||||
import PlatformPeg from './PlatformPeg';
|
import PlatformPeg from './PlatformPeg';
|
||||||
import SdkConfig from './SdkConfig';
|
import SdkConfig from './SdkConfig';
|
||||||
|
|
||||||
function redact(str) {
|
function getRedactedUrl() {
|
||||||
return str.replace(/#\/(room|user)\/(.+)/, "#/$1/<redacted>");
|
const base = window.location.pathname.split('/').slice(-2).join('/');
|
||||||
|
const redactedHash = window.location.hash.replace(/#\/(room|user)\/(.+)/, "#/$1/<redacted>");
|
||||||
|
return base + redactedHash;
|
||||||
}
|
}
|
||||||
|
|
||||||
const customVariables = {
|
const customVariables = {
|
||||||
|
@ -108,7 +110,7 @@ class Analytics {
|
||||||
this.firstPage = false;
|
this.firstPage = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this._paq.push(['setCustomUrl', redact(window.location.href)]);
|
this._paq.push(['setCustomUrl', getRedactedUrl()]);
|
||||||
this._paq.push(['trackPageView']);
|
this._paq.push(['trackPageView']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ import PageTypes from '../../PageTypes';
|
||||||
import createRoom from "../../createRoom";
|
import createRoom from "../../createRoom";
|
||||||
import * as UDEHandler from '../../UnknownDeviceErrorHandler';
|
import * as UDEHandler from '../../UnknownDeviceErrorHandler';
|
||||||
import KeyRequestHandler from '../../KeyRequestHandler';
|
import KeyRequestHandler from '../../KeyRequestHandler';
|
||||||
import { _t } from '../../languageHandler';
|
import { _t, getCurrentLanguage } from '../../languageHandler';
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'MatrixChat',
|
displayName: 'MatrixChat',
|
||||||
|
@ -685,8 +685,12 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
const roomToLeave = MatrixClientPeg.get().getRoom(roomId);
|
const roomToLeave = MatrixClientPeg.get().getRoom(roomId);
|
||||||
Modal.createDialog(QuestionDialog, {
|
Modal.createDialog(QuestionDialog, {
|
||||||
title: "Leave room",
|
title: _t("Leave room"),
|
||||||
description: <span>Are you sure you want to leave the room <i>{roomToLeave.name}</i>?</span>,
|
description: (
|
||||||
|
<span>
|
||||||
|
{_t("Are you sure you want to leave the room '%(roomName)s'?", {roomName: roomToLeave.name})}
|
||||||
|
</span>
|
||||||
|
),
|
||||||
onFinished: (shouldLeave) => {
|
onFinished: (shouldLeave) => {
|
||||||
if (shouldLeave) {
|
if (shouldLeave) {
|
||||||
const d = MatrixClientPeg.get().leave(roomId);
|
const d = MatrixClientPeg.get().leave(roomId);
|
||||||
|
@ -792,7 +796,7 @@ module.exports = React.createClass({
|
||||||
this._teamToken = teamToken;
|
this._teamToken = teamToken;
|
||||||
dis.dispatch({action: 'view_home_page'});
|
dis.dispatch({action: 'view_home_page'});
|
||||||
} else if (this._is_registered) {
|
} else if (this._is_registered) {
|
||||||
if (this.props.config.welcomeUserId) {
|
if (this.props.config.welcomeUserId && getCurrentLanguage().startsWith("en")) {
|
||||||
createRoom({dmUserId: this.props.config.welcomeUserId});
|
createRoom({dmUserId: this.props.config.welcomeUserId});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,6 +90,9 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
// show timestamps always
|
// show timestamps always
|
||||||
alwaysShowTimestamps: React.PropTypes.bool,
|
alwaysShowTimestamps: React.PropTypes.bool,
|
||||||
|
|
||||||
|
// hide redacted events as per old behaviour
|
||||||
|
hideRedactions: React.PropTypes.bool,
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillMount: function() {
|
componentWillMount: function() {
|
||||||
|
@ -463,6 +466,8 @@ module.exports = React.createClass({
|
||||||
continuation = false;
|
continuation = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mxEv.isRedacted() && this.props.hideRedactions) return ret;
|
||||||
|
|
||||||
var eventId = mxEv.getId();
|
var eventId = mxEv.getId();
|
||||||
var highlight = (eventId == this.props.highlightedEventId);
|
var highlight = (eventId == this.props.highlightedEventId);
|
||||||
|
|
||||||
|
|
|
@ -131,6 +131,8 @@ var TimelinePanel = React.createClass({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const syncedSettings = UserSettingsStore.getSyncedSettings();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
events: [],
|
events: [],
|
||||||
timelineLoading: true, // track whether our room timeline is loading
|
timelineLoading: true, // track whether our room timeline is loading
|
||||||
|
@ -175,10 +177,13 @@ var TimelinePanel = React.createClass({
|
||||||
clientSyncState: MatrixClientPeg.get().getSyncState(),
|
clientSyncState: MatrixClientPeg.get().getSyncState(),
|
||||||
|
|
||||||
// should the event tiles have twelve hour times
|
// should the event tiles have twelve hour times
|
||||||
isTwelveHour: UserSettingsStore.getSyncedSetting('showTwelveHourTimestamps'),
|
isTwelveHour: syncedSettings.showTwelveHourTimestamps,
|
||||||
|
|
||||||
// always show timestamps on event tiles?
|
// always show timestamps on event tiles?
|
||||||
alwaysShowTimestamps: UserSettingsStore.getSyncedSetting('alwaysShowTimestamps'),
|
alwaysShowTimestamps: syncedSettings.alwaysShowTimestamps,
|
||||||
|
|
||||||
|
// hide redacted events as per old behaviour
|
||||||
|
hideRedactions: syncedSettings.hideRedactions,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1114,6 +1119,7 @@ var TimelinePanel = React.createClass({
|
||||||
return (
|
return (
|
||||||
<MessagePanel ref="messagePanel"
|
<MessagePanel ref="messagePanel"
|
||||||
hidden={ this.props.hidden }
|
hidden={ this.props.hidden }
|
||||||
|
hideRedactions={ this.state.hideRedactions }
|
||||||
backPaginating={ this.state.backPaginating }
|
backPaginating={ this.state.backPaginating }
|
||||||
forwardPaginating={ forwardPaginating }
|
forwardPaginating={ forwardPaginating }
|
||||||
events={ this.state.events }
|
events={ this.state.events }
|
||||||
|
|
|
@ -84,6 +84,10 @@ const SETTINGS_LABELS = [
|
||||||
id: 'useCompactLayout',
|
id: 'useCompactLayout',
|
||||||
label: 'Use compact timeline layout',
|
label: 'Use compact timeline layout',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'hideRedactions',
|
||||||
|
label: 'Hide removed messages',
|
||||||
|
},
|
||||||
/*
|
/*
|
||||||
{
|
{
|
||||||
id: 'useFixedWidthFont',
|
id: 'useFixedWidthFont',
|
||||||
|
@ -715,8 +719,8 @@ module.exports = React.createClass({
|
||||||
<h3>{ _t("Cryptography") }</h3>
|
<h3>{ _t("Cryptography") }</h3>
|
||||||
<div className="mx_UserSettings_section mx_UserSettings_cryptoSection">
|
<div className="mx_UserSettings_section mx_UserSettings_cryptoSection">
|
||||||
<ul>
|
<ul>
|
||||||
<li><label>Device ID:</label> <span><code>{deviceId}</code></span></li>
|
<li><label>{_t("Device ID:")}</label> <span><code>{deviceId}</code></span></li>
|
||||||
<li><label>Device key:</label> <span><code><b>{identityKey}</b></code></span></li>
|
<li><label>{_t("Device key:")}</label> <span><code><b>{identityKey}</b></code></span></li>
|
||||||
</ul>
|
</ul>
|
||||||
{ importExportButtons }
|
{ importExportButtons }
|
||||||
</div>
|
</div>
|
||||||
|
@ -773,6 +777,8 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_renderAnalyticsControl: function() {
|
_renderAnalyticsControl: function() {
|
||||||
|
if (!SdkConfig.get().piwik) return <div/>;
|
||||||
|
|
||||||
return <div>
|
return <div>
|
||||||
<h3>{ _t('Analytics') }</h3>
|
<h3>{ _t('Analytics') }</h3>
|
||||||
<div className="mx_UserSettings_section">
|
<div className="mx_UserSettings_section">
|
||||||
|
|
|
@ -229,7 +229,7 @@ module.exports = React.createClass({
|
||||||
<div className="mx_Login_error">
|
<div className="mx_Login_error">
|
||||||
</div>
|
</div>
|
||||||
<a className="mx_Login_create" onClick={this.props.onLoginClick} href="#">
|
<a className="mx_Login_create" onClick={this.props.onLoginClick} href="#">
|
||||||
Return to login
|
{_t('Return to login screen')}
|
||||||
</a>
|
</a>
|
||||||
<a className="mx_Login_create" onClick={this.props.onRegisterClick} href="#">
|
<a className="mx_Login_create" onClick={this.props.onRegisterClick} href="#">
|
||||||
{ _t('Create an account') }
|
{ _t('Create an account') }
|
||||||
|
|
|
@ -17,6 +17,7 @@ limitations under the License.
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import dis from '../../../dispatcher';
|
import dis from '../../../dispatcher';
|
||||||
|
import { _t } from '../../../languageHandler';
|
||||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
import DMRoomMap from '../../../utils/DMRoomMap';
|
import DMRoomMap from '../../../utils/DMRoomMap';
|
||||||
import AccessibleButton from '../elements/AccessibleButton';
|
import AccessibleButton from '../elements/AccessibleButton';
|
||||||
|
@ -86,7 +87,7 @@ export default class ChatCreateOrReuseDialog extends React.Component {
|
||||||
<div className="mx_RoomTile_avatar">
|
<div className="mx_RoomTile_avatar">
|
||||||
<img src="img/create-big.svg" width="26" height="26" />
|
<img src="img/create-big.svg" width="26" height="26" />
|
||||||
</div>
|
</div>
|
||||||
<div className={labelClasses}><i>{_("Start new chat")}</i></div>
|
<div className={labelClasses}><i>{_t("Start new chat")}</i></div>
|
||||||
</AccessibleButton>;
|
</AccessibleButton>;
|
||||||
|
|
||||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||||
|
|
|
@ -490,7 +490,7 @@ module.exports = React.createClass({
|
||||||
var error;
|
var error;
|
||||||
var addressSelector;
|
var addressSelector;
|
||||||
if (this.state.error) {
|
if (this.state.error) {
|
||||||
error = <div className="mx_ChatInviteDialog_error">You have entered an invalid contact. Try using their Matrix ID or email address.</div>;
|
error = <div className="mx_ChatInviteDialog_error">{_t("You have entered an invalid contact. Try using their Matrix ID or email address.")}</div>;
|
||||||
} else {
|
} else {
|
||||||
const addressSelectorHeader = <div className="mx_ChatInviteDialog_addressSelectHeader">
|
const addressSelectorHeader = <div className="mx_ChatInviteDialog_addressSelectHeader">
|
||||||
Searching known users
|
Searching known users
|
||||||
|
|
|
@ -60,10 +60,10 @@ module.exports = React.createClass({
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_Dialog_buttons">
|
<div className="mx_Dialog_buttons">
|
||||||
<button className="mx_Dialog_primary" onClick={this.props.onFinished} autoFocus={true}>
|
<button className="mx_Dialog_primary" onClick={this.props.onFinished} autoFocus={true}>
|
||||||
Cancel
|
{_t("Cancel")}
|
||||||
</button>
|
</button>
|
||||||
<button onClick={this.onRegisterClicked}>
|
<button onClick={this.onRegisterClicked}>
|
||||||
Register
|
{_t("Register")}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</BaseDialog>
|
</BaseDialog>
|
||||||
|
|
|
@ -51,7 +51,7 @@ export default React.createClass({
|
||||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||||
const cancelButton = this.props.hasCancelButton ? (
|
const cancelButton = this.props.hasCancelButton ? (
|
||||||
<button onClick={this.onCancel}>
|
<button onClick={this.onCancel}>
|
||||||
Cancel
|
{_t("Cancel")}
|
||||||
</button>
|
</button>
|
||||||
) : null;
|
) : null;
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -18,6 +18,7 @@ limitations under the License.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import * as Roles from '../../../Roles';
|
import * as Roles from '../../../Roles';
|
||||||
|
import { _t } from '../../../languageHandler';
|
||||||
|
|
||||||
var LEVEL_ROLE_MAP = {};
|
var LEVEL_ROLE_MAP = {};
|
||||||
var reverseRoles = {};
|
var reverseRoles = {};
|
||||||
|
@ -116,7 +117,7 @@ module.exports = React.createClass({
|
||||||
text: Roles.textualPowerLevel(level, 0),
|
text: Roles.textualPowerLevel(level, 0),
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
options.push({ value: "Custom", text: "Custom level" });
|
options.push({ value: "Custom", text: _t("Custom level") });
|
||||||
options = options.map((op) => {
|
options = options.map((op) => {
|
||||||
return <option value={op.value} key={op.value}>{op.text}</option>;
|
return <option value={op.value} key={op.value}>{op.text}</option>;
|
||||||
});
|
});
|
||||||
|
|
|
@ -129,8 +129,8 @@ export const PasswordAuthEntry = React.createClass({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<p>To continue, please enter your password.</p>
|
<p>{_t("To continue, please enter your password.")}</p>
|
||||||
<p>Password:</p>
|
<p>{_t("Password:")}</p>
|
||||||
<form onSubmit={this._onSubmit}>
|
<form onSubmit={this._onSubmit}>
|
||||||
<input
|
<input
|
||||||
ref="passwordField"
|
ref="passwordField"
|
||||||
|
@ -380,7 +380,7 @@ export const MsisdnAuthEntry = React.createClass({
|
||||||
onChange={this._onTokenChange}
|
onChange={this._onTokenChange}
|
||||||
/>
|
/>
|
||||||
<br />
|
<br />
|
||||||
<input type="submit" value="Submit"
|
<input type="submit" value={_t("Submit")}
|
||||||
className={submitClasses}
|
className={submitClasses}
|
||||||
disabled={!enableSubmit}
|
disabled={!enableSubmit}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -150,7 +150,7 @@ class PasswordLogin extends React.Component {
|
||||||
type="text"
|
type="text"
|
||||||
name="phoneNumber"
|
name="phoneNumber"
|
||||||
onChange={this.onPhoneNumberChanged}
|
onChange={this.onPhoneNumberChanged}
|
||||||
placeholder="Mobile phone number"
|
placeholder={_t("Mobile phone number")}
|
||||||
value={this.state.phoneNumber}
|
value={this.state.phoneNumber}
|
||||||
autoFocus
|
autoFocus
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -282,7 +282,7 @@ module.exports = React.createClass({
|
||||||
const emailSection = (
|
const emailSection = (
|
||||||
<div>
|
<div>
|
||||||
<input type="text" ref="email"
|
<input type="text" ref="email"
|
||||||
autoFocus={true} placeholder="Email address (optional)"
|
autoFocus={true} placeholder={_t("Email address (optional)")}
|
||||||
defaultValue={this.props.defaultEmail}
|
defaultValue={this.props.defaultEmail}
|
||||||
className={this._classForField(FIELD_EMAIL, 'mx_Login_field')}
|
className={this._classForField(FIELD_EMAIL, 'mx_Login_field')}
|
||||||
onBlur={function() {self.validateField(FIELD_EMAIL);}}
|
onBlur={function() {self.validateField(FIELD_EMAIL);}}
|
||||||
|
@ -321,7 +321,7 @@ module.exports = React.createClass({
|
||||||
showPrefix={true}
|
showPrefix={true}
|
||||||
/>
|
/>
|
||||||
<input type="text" ref="phoneNumber"
|
<input type="text" ref="phoneNumber"
|
||||||
placeholder="Mobile phone number (optional)"
|
placeholder={_t("Mobile phone number (optional)")}
|
||||||
defaultValue={this.props.defaultPhoneNumber}
|
defaultValue={this.props.defaultPhoneNumber}
|
||||||
className={this._classForField(
|
className={this._classForField(
|
||||||
FIELD_PHONE_NUMBER,
|
FIELD_PHONE_NUMBER,
|
||||||
|
@ -339,9 +339,9 @@ module.exports = React.createClass({
|
||||||
<input className="mx_Login_submit" type="submit" value="Register" />
|
<input className="mx_Login_submit" type="submit" value="Register" />
|
||||||
);
|
);
|
||||||
|
|
||||||
let placeholderUserName = "User name";
|
let placeholderUserName = _t("User name");
|
||||||
if (this.props.guestUsername) {
|
if (this.props.guestUsername) {
|
||||||
placeholderUserName += " (default: " + this.props.guestUsername + ")";
|
placeholderUserName += " " + _t("(default: %(userName)s)", {userName: this.props.guestUsername});
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -356,15 +356,15 @@ module.exports = React.createClass({
|
||||||
onBlur={function() {self.validateField(FIELD_USERNAME);}} />
|
onBlur={function() {self.validateField(FIELD_USERNAME);}} />
|
||||||
<br />
|
<br />
|
||||||
{ this.props.guestUsername ?
|
{ this.props.guestUsername ?
|
||||||
<div className="mx_Login_fieldLabel">Setting a user name will create a fresh account</div> : null
|
<div className="mx_Login_fieldLabel">{_t("Setting a user name will create a fresh account")}</div> : null
|
||||||
}
|
}
|
||||||
<input type="password" ref="password"
|
<input type="password" ref="password"
|
||||||
className={this._classForField(FIELD_PASSWORD, 'mx_Login_field')}
|
className={this._classForField(FIELD_PASSWORD, 'mx_Login_field')}
|
||||||
onBlur={function() {self.validateField(FIELD_PASSWORD);}}
|
onBlur={function() {self.validateField(FIELD_PASSWORD);}}
|
||||||
placeholder="Password" defaultValue={this.props.defaultPassword} />
|
placeholder={_t("Password")} defaultValue={this.props.defaultPassword} />
|
||||||
<br />
|
<br />
|
||||||
<input type="password" ref="passwordConfirm"
|
<input type="password" ref="passwordConfirm"
|
||||||
placeholder="Confirm password"
|
placeholder={_t("Confirm password")}
|
||||||
className={this._classForField(FIELD_PASSWORD_CONFIRM, 'mx_Login_field')}
|
className={this._classForField(FIELD_PASSWORD_CONFIRM, 'mx_Login_field')}
|
||||||
onBlur={function() {self.validateField(FIELD_PASSWORD_CONFIRM);}}
|
onBlur={function() {self.validateField(FIELD_PASSWORD_CONFIRM);}}
|
||||||
defaultValue={this.props.defaultPassword} />
|
defaultValue={this.props.defaultPassword} />
|
||||||
|
|
|
@ -230,7 +230,7 @@ module.exports = React.createClass({
|
||||||
remote_aliases_section = (
|
remote_aliases_section = (
|
||||||
<div>
|
<div>
|
||||||
<div className="mx_RoomSettings_aliasLabel">
|
<div className="mx_RoomSettings_aliasLabel">
|
||||||
Remote addresses for this room:
|
{_t("Remote addresses for this room:")}
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RoomSettings_aliasesTable">
|
<div className="mx_RoomSettings_aliasesTable">
|
||||||
{ this.state.remoteDomains.map((domain, i) => {
|
{ this.state.remoteDomains.map((domain, i) => {
|
||||||
|
|
|
@ -20,7 +20,7 @@ var MatrixClientPeg = require('../../../MatrixClientPeg');
|
||||||
var sdk = require("../../../index");
|
var sdk = require("../../../index");
|
||||||
var Modal = require("../../../Modal");
|
var Modal = require("../../../Modal");
|
||||||
var UserSettingsStore = require('../../../UserSettingsStore');
|
var UserSettingsStore = require('../../../UserSettingsStore');
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t, _tJsx } from '../../../languageHandler';
|
||||||
|
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
|
@ -131,12 +131,24 @@ module.exports = React.createClass({
|
||||||
</label>;
|
</label>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let urlPreviewText = null;
|
||||||
|
if (UserSettingsStore.getUrlPreviewsDisabled()) {
|
||||||
|
urlPreviewText = (
|
||||||
|
_tJsx("You have <a>disabled</a> URL previews by default.", /<a>(.*?)<\/a>/, (sub)=><a href="#/settings">{sub}</a>)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
urlPreviewText = (
|
||||||
|
_tJsx("You have <a>enabled</a> URL previews by default.", /<a>(.*?)<\/a>/, (sub)=><a href="#/settings">{sub}</a>)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomSettings_toggles">
|
<div className="mx_RoomSettings_toggles">
|
||||||
<h3>{_t("URL Previews")}</h3>
|
<h3>{_t("URL Previews")}</h3>
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
You have <a href="#/settings">{ UserSettingsStore.getUrlPreviewsDisabled() ? 'disabled' : 'enabled' }</a> URL previews by default.
|
{urlPreviewText}
|
||||||
</label>
|
</label>
|
||||||
{ disableRoomPreviewUrls }
|
{ disableRoomPreviewUrls }
|
||||||
<label>
|
<label>
|
||||||
|
|
|
@ -16,6 +16,7 @@ limitations under the License.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
|
import { _t } from '../../../languageHandler';
|
||||||
|
|
||||||
export default class MemberDeviceInfo extends React.Component {
|
export default class MemberDeviceInfo extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
|
@ -49,7 +50,7 @@ export default class MemberDeviceInfo extends React.Component {
|
||||||
// add the deviceId as a titletext to help with debugging
|
// add the deviceId as a titletext to help with debugging
|
||||||
return (
|
return (
|
||||||
<div className="mx_MemberDeviceInfo"
|
<div className="mx_MemberDeviceInfo"
|
||||||
title={"device id: " + this.props.device.deviceId} >
|
title={_t("device id: ") + this.props.device.deviceId} >
|
||||||
<div className="mx_MemberDeviceInfo_deviceInfo">
|
<div className="mx_MemberDeviceInfo_deviceInfo">
|
||||||
<div className="mx_MemberDeviceInfo_deviceId">
|
<div className="mx_MemberDeviceInfo_deviceId">
|
||||||
{deviceName}
|
{deviceName}
|
||||||
|
|
|
@ -188,7 +188,11 @@ module.exports = React.createClass({
|
||||||
'm.room.name', user_id
|
'm.room.name', user_id
|
||||||
);
|
);
|
||||||
|
|
||||||
save_button = <AccessibleButton className="mx_RoomHeader_textButton" onClick={this.props.onSaveClick}>Save</AccessibleButton>;
|
save_button = (
|
||||||
|
<AccessibleButton className="mx_RoomHeader_textButton" onClick={this.props.onSaveClick}>
|
||||||
|
{_t("Save")}
|
||||||
|
</AccessibleButton>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.onCancelClick) {
|
if (this.props.onCancelClick) {
|
||||||
|
|
|
@ -726,7 +726,7 @@ module.exports = React.createClass({
|
||||||
if (canSetTag || self.state.tags) {
|
if (canSetTag || self.state.tags) {
|
||||||
var tagsSection =
|
var tagsSection =
|
||||||
<div className="mx_RoomSettings_tags">
|
<div className="mx_RoomSettings_tags">
|
||||||
Tagged as: { canSetTag ?
|
{_t("Tagged as: ")}{ canSetTag ?
|
||||||
(tags.map(function(tag, i) {
|
(tags.map(function(tag, i) {
|
||||||
return (<label key={ i }>
|
return (<label key={ i }>
|
||||||
<input type="checkbox"
|
<input type="checkbox"
|
||||||
|
@ -844,7 +844,7 @@ module.exports = React.createClass({
|
||||||
<input type="checkbox" disabled={ !roomState.mayClientSendStateEvent("m.room.aliases", cli) }
|
<input type="checkbox" disabled={ !roomState.mayClientSendStateEvent("m.room.aliases", cli) }
|
||||||
onChange={ this._onToggle.bind(this, "isRoomPublished", true, false)}
|
onChange={ this._onToggle.bind(this, "isRoomPublished", true, false)}
|
||||||
checked={this.state.isRoomPublished}/>
|
checked={this.state.isRoomPublished}/>
|
||||||
List this room in { MatrixClientPeg.get().getDomain() }'s room directory?
|
{_t("List this room in %(domain)s's room directory?", { domain: MatrixClientPeg.get().getDomain() })}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RoomSettings_settings">
|
<div className="mx_RoomSettings_settings">
|
||||||
|
@ -854,7 +854,7 @@ module.exports = React.createClass({
|
||||||
disabled={ !roomState.mayClientSendStateEvent("m.room.history_visibility", cli) }
|
disabled={ !roomState.mayClientSendStateEvent("m.room.history_visibility", cli) }
|
||||||
checked={historyVisibility === "world_readable"}
|
checked={historyVisibility === "world_readable"}
|
||||||
onChange={this._onHistoryRadioToggle} />
|
onChange={this._onHistoryRadioToggle} />
|
||||||
Anyone
|
{_t("Anyone")}
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="historyVis" value="shared"
|
<input type="radio" name="historyVis" value="shared"
|
||||||
|
|
|
@ -18,6 +18,7 @@ limitations under the License.
|
||||||
|
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
var sdk = require('../../../index');
|
var sdk = require('../../../index');
|
||||||
|
import { _t } from "../../../languageHandler";
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'RoomTopicEditor',
|
displayName: 'RoomTopicEditor',
|
||||||
|
@ -43,7 +44,7 @@ module.exports = React.createClass({
|
||||||
<EditableText ref="editor"
|
<EditableText ref="editor"
|
||||||
className="mx_RoomHeader_topic mx_RoomHeader_editable"
|
className="mx_RoomHeader_topic mx_RoomHeader_editable"
|
||||||
placeholderClassName="mx_RoomHeader_placeholder"
|
placeholderClassName="mx_RoomHeader_placeholder"
|
||||||
placeholder="Add a topic"
|
placeholder={_t("Add a topic")}
|
||||||
blurToCancel={ false }
|
blurToCancel={ false }
|
||||||
initialValue={ this._initialTopic }/>
|
initialValue={ this._initialTopic }/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"Filter room members": "Raum Benutzer filtern",
|
"Filter room members": "Raum-Benutzer filtern",
|
||||||
"You have no visible notifications": "Du hast keine sichtbaren Benachrichtigungen",
|
"You have no visible notifications": "Du hast keine sichtbaren Benachrichtigungen",
|
||||||
"Invites": "Einladungen",
|
"Invites": "Einladungen",
|
||||||
"Favourites": "Favoriten",
|
"Favourites": "Favoriten",
|
||||||
|
@ -28,12 +28,12 @@
|
||||||
"Decryption error": "Entschlüsselungs Fehler",
|
"Decryption error": "Entschlüsselungs Fehler",
|
||||||
"Session ID": "Sitzungs-ID",
|
"Session ID": "Sitzungs-ID",
|
||||||
"End-to-end encryption information": "Ende-zu-Ende-Verschlüsselungs-Informationen",
|
"End-to-end encryption information": "Ende-zu-Ende-Verschlüsselungs-Informationen",
|
||||||
"Event information": "Ereignis Informationen",
|
"Event information": "Ereignis-Informationen",
|
||||||
"Sender device information": "Absender Geräte Informationen",
|
"Sender device information": "Absender Geräte Informationen",
|
||||||
"Displays action": "Zeigt Aktionen an",
|
"Displays action": "Zeigt Aktionen an",
|
||||||
"Bans user with given id": "Sperrt Benutzer mit der angegebenen ID",
|
"Bans user with given id": "Sperrt Benutzer mit der angegebenen ID",
|
||||||
"Deops user with given id": "Entfernt OP beim Benutzer mit der angegebenen ID",
|
"Deops user with given id": "Entfernt OP beim Benutzer mit der angegebenen ID",
|
||||||
"Invites user with given id to current room": "Lädt Benutzer mit der angegebenen ID in den aktuellen Raum ein",
|
"Invites user with given id to current room": "Lädt den Benutzer mit der angegebenen ID in den aktuellen Raum ein",
|
||||||
"Joins room with given alias": "Betrete Raum mit angegebenen Alias",
|
"Joins room with given alias": "Betrete Raum mit angegebenen Alias",
|
||||||
"Kicks user with given id": "Kickt Benutzer mit angegebener ID",
|
"Kicks user with given id": "Kickt Benutzer mit angegebener ID",
|
||||||
"Changes your display nickname": "Ändert deinen angezeigten Nicknamen",
|
"Changes your display nickname": "Ändert deinen angezeigten Nicknamen",
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
"Return to app": "Zurück zur Anwendung",
|
"Return to app": "Zurück zur Anwendung",
|
||||||
"Sign in": "Anmelden",
|
"Sign in": "Anmelden",
|
||||||
"Create a new account": "Erstelle einen neuen Benutzer",
|
"Create a new account": "Erstelle einen neuen Benutzer",
|
||||||
"Send an encrypted message": "Sende eine verschlüsselte Nachricht",
|
"Send an encrypted message": "Eine verschlüsselte Nachricht senden",
|
||||||
"Send a message (unencrypted)": "Sende eine Nachricht (unverschlüsselt)",
|
"Send a message (unencrypted)": "Sende eine Nachricht (unverschlüsselt)",
|
||||||
"Warning!": "Warnung!",
|
"Warning!": "Warnung!",
|
||||||
"Direct Chat": "Privater Chat",
|
"Direct Chat": "Privater Chat",
|
||||||
|
@ -54,13 +54,13 @@
|
||||||
"accept": "akzeptiere",
|
"accept": "akzeptiere",
|
||||||
"accepted an invitation": "Einladung akzeptieren",
|
"accepted an invitation": "Einladung akzeptieren",
|
||||||
"accepted the invitation for": "Akzeptierte die Einladung für",
|
"accepted the invitation for": "Akzeptierte die Einladung für",
|
||||||
"Add email address": "Füge E-Mail-Adresse hinzu",
|
"Add email address": "E-Mail-Adresse hinzufügen",
|
||||||
"Advanced": "Erweitert",
|
"Advanced": "Erweitert",
|
||||||
"all room members, from the point they joined": "Alle Raum-Mitglieder - seitdem sie beigetreten sind",
|
"all room members, from the point they joined": "Alle Raum-Mitglieder, ab dem Zeitpunkt, an dem sie beigetreten sind",
|
||||||
"and": "und",
|
"and": "und",
|
||||||
"An email has been sent to": "Eine E-Mail wurde gesendet an",
|
"An email has been sent to": "Eine E-Mail wurde gesendet an",
|
||||||
"anyone": "Jeder",
|
"anyone": "Jeder",
|
||||||
"Anyone who knows the room's link, apart from guests": "Jeder der den Raum-Link kennt - abgesehen von Gästen",
|
"Anyone who knows the room's link, apart from guests": "Alle, denen der Raum-Link bekannt ist, ausgenommen Gäste",
|
||||||
"Anyone who knows the room's link, including guests": "Jeder der den Raum-Link kennt - auch Gäste",
|
"Anyone who knows the room's link, including guests": "Jeder der den Raum-Link kennt - auch Gäste",
|
||||||
"Are you sure you want to leave the room?": "Bist du sicher, dass du den Raum verlassen willst?",
|
"Are you sure you want to leave the room?": "Bist du sicher, dass du den Raum verlassen willst?",
|
||||||
"Are you sure you want to reject the invitation?": "Bist du sicher, dass die die Einladung ablehnen willst?",
|
"Are you sure you want to reject the invitation?": "Bist du sicher, dass die die Einladung ablehnen willst?",
|
||||||
|
@ -73,18 +73,18 @@
|
||||||
"changed their profile picture": "änderte sein Profilbild",
|
"changed their profile picture": "änderte sein Profilbild",
|
||||||
"changed the room name to": "änderte den Raumnamen zu",
|
"changed the room name to": "änderte den Raumnamen zu",
|
||||||
"changed the topic to": "änderte das Thema zu",
|
"changed the topic to": "änderte das Thema zu",
|
||||||
"Changes to who can read history will only apply to future messages in this room": "Änderungen bzgl. wer die Historie lesen kann betrifft nur zukünftige Nachrichten in diesem Raum",
|
"Changes to who can read history will only apply to future messages in this room": "Änderungen, die bestimmen, wer den Chatverlauf lesen kann, gelten nur für zukünftige Nachrichten in diesem Raum",
|
||||||
"Clear Cache and Reload": "Leere Cache und lade neu",
|
"Clear Cache and Reload": "Cache leeren und neu laden",
|
||||||
"Click here": "Klicke hier",
|
"Click here": "Klicke hier",
|
||||||
"Confirm your new password": "Bestätige dein neues Passwort",
|
"Confirm your new password": "Neues Passwort bestätigen",
|
||||||
"Continue": "Fortfahren",
|
"Continue": "Fortfahren",
|
||||||
"Create an account": "Erstelle einen Account",
|
"Create an account": "Erstelle einen Account",
|
||||||
"Create Room": "Raum erstellen",
|
"Create Room": "Raum erstellen",
|
||||||
"Cryptography": "Kryptografie",
|
"Cryptography": "Verschlüsselung",
|
||||||
"Deactivate Account": "Account deaktivieren",
|
"Deactivate Account": "Account deaktivieren",
|
||||||
"Deactivate my account": "Deaktiviere meinen Account",
|
"Deactivate my account": "Meinen Account deaktivieren",
|
||||||
"decline": "Ablehnen",
|
"decline": "Ablehnen",
|
||||||
"Devices will not yet be able to decrypt history from before they joined the room": "Geräte werden nicht in der Lage sein, die Historie vor dem Beitritt in den Raum zu entschlüsseln",
|
"Devices will not yet be able to decrypt history from before they joined the room": "Geräte werden nicht in der Lage sein, den Chatverlauf vor dem Betreten des Raumes zu entschlüsseln",
|
||||||
"Display name": "Anzeigename",
|
"Display name": "Anzeigename",
|
||||||
"Email Address": "E-Mail-Adresse",
|
"Email Address": "E-Mail-Adresse",
|
||||||
"Email, name or matrix ID": "E-Mail, Name oder Matrix-ID",
|
"Email, name or matrix ID": "E-Mail, Name oder Matrix-ID",
|
||||||
|
@ -106,27 +106,27 @@
|
||||||
"changed name": "änderte Namen",
|
"changed name": "änderte Namen",
|
||||||
"changed the power level of": "änderte Berechtigungslevel von",
|
"changed the power level of": "änderte Berechtigungslevel von",
|
||||||
"Clear Cache": "Leere Cache",
|
"Clear Cache": "Leere Cache",
|
||||||
"Click here to fix": "Klicke hier zum reparieren",
|
"Click here to fix": "Zum reparieren hier klicken",
|
||||||
"*️⃣ Commands": "*️⃣ Befehle",
|
"*️⃣ Commands": "*️⃣ Befehle",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"demote": "Zum zurückstufen",
|
"demote": "Berechtigungslevel herabstufen",
|
||||||
"Export E2E room keys": "E2E-Raum-Schlüssel exportieren",
|
"Export E2E room keys": "E2E-Raum-Schlüssel exportieren",
|
||||||
"Failed to change password. Is your password correct?": "Passwort-Änderung schlug fehl. Ist dein Passwort korrekt?",
|
"Failed to change password. Is your password correct?": "Passwort-Änderung schlug fehl. Ist dein Passwort korrekt?",
|
||||||
"Failed to forget room": "Vergessen des Raums schlug fehl",
|
"Failed to forget room": "Vergessen des Raums schlug fehl",
|
||||||
"Failed to leave room": "Verlassen des Raums fehlgeschlagen",
|
"Failed to leave room": "Verlassen des Raums fehlgeschlagen",
|
||||||
"Failed to reject invitation": "Fehler beim Abweisen der Einladung",
|
"Failed to reject invitation": "Fehler beim Abweisen der Einladung",
|
||||||
"Failed to set avatar.": "Fehler beim Setzen des Avatars.",
|
"Failed to set avatar.": "Fehler beim Setzen des Profilbilds.",
|
||||||
"Failed to unban": "Entbannen fehlgeschlagen",
|
"Failed to unban": "Entbannen fehlgeschlagen",
|
||||||
"Failed to upload file": "Datei-Upload fehlgeschlagen",
|
"Failed to upload file": "Datei-Upload fehlgeschlagen",
|
||||||
"Favourite": "Favorit",
|
"Favourite": "Favorit",
|
||||||
"favourite": "Favoriten",
|
"favourite": "Als Favorit setzen",
|
||||||
"Forget room": "Raum vergessen",
|
"Forget room": "Raum vergessen",
|
||||||
"Forgot your password?": "Passwort vergessen?",
|
"Forgot your password?": "Passwort vergessen?",
|
||||||
"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.": "Aus Sicherheitsgründen werden beim Ausloggen alle Ende-zu-Ende-Verschlüsselungs-Schlüssel in diesem Browser gelöscht. Wenn du in späteren Riot-Sitzungen die Konversationshistorie entschlüsseln möchtest, exportiere bitte deine Schlüssel zur sicheren Verwahrung.",
|
"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.": "Aus Sicherheitsgründen werden beim Ausloggen alle Ende-zu-Ende-Verschlüsselungs-Schlüssel in diesem Browser gelöscht. Wenn du in späteren Riot-Sitzungen den bisherigen Chatverlauf entschlüsseln möchtest, exportiere bitte deine Schlüssel zur sicheren Aufbewahrung.",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Aus Sicherheitsgründen wurde diese Sitzung beendet. Bitte melde dich erneut an.",
|
"For security, this session has been signed out. Please sign in again.": "Aus Sicherheitsgründen wurde diese Sitzung beendet. Bitte melde dich erneut an.",
|
||||||
"Found a bug?": "Fehler gefunden?",
|
"Found a bug?": "Fehler gefunden?",
|
||||||
"Guests cannot join this room even if explicitly invited.": "Gäste können diesem Raum nicht beitreten auch wenn sie explizit eingeladen werden.",
|
"Guests cannot join this room even if explicitly invited.": "Gäste können diesem Raum nicht beitreten, auch wenn sie explizit eingeladen wurden.",
|
||||||
"Guests can't set avatars. Please register.": "Gäste können keine Avatare setzen. Bitte registriere dich.",
|
"Guests can't set avatars. Please register.": "Gäste können kein Profilbild setzen. Bitte registrieren.",
|
||||||
"Guest users can't upload files. Please register to upload.": "Gäste können keine Dateien hochladen. Bitte registrieren um hochzuladen.",
|
"Guest users can't upload files. Please register to upload.": "Gäste können keine Dateien hochladen. Bitte registrieren um hochzuladen.",
|
||||||
"had": "hatte",
|
"had": "hatte",
|
||||||
"Hangup": "Auflegen",
|
"Hangup": "Auflegen",
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
"Import E2E room keys": "E2E-Raum-Schlüssel importieren",
|
"Import E2E room keys": "E2E-Raum-Schlüssel importieren",
|
||||||
"Invalid Email Address": "Ungültige E-Mail-Adresse",
|
"Invalid Email Address": "Ungültige E-Mail-Adresse",
|
||||||
"invited": "eingeladen",
|
"invited": "eingeladen",
|
||||||
"Invite new room members": "Lade neue Raum-Mitglieder ein",
|
"Invite new room members": "Neue Raum-Mitglieder einladen",
|
||||||
"is a": "ist ein",
|
"is a": "ist ein",
|
||||||
"is trusted": "wird vertraut",
|
"is trusted": "wird vertraut",
|
||||||
"Sign in with": "Ich möchte mich anmelden mit",
|
"Sign in with": "Ich möchte mich anmelden mit",
|
||||||
|
@ -194,16 +194,16 @@
|
||||||
"Scroll to unread messages": "Scrolle zu ungelesenen Nachrichten",
|
"Scroll to unread messages": "Scrolle zu ungelesenen Nachrichten",
|
||||||
"Send Invites": "Einladungen senden",
|
"Send Invites": "Einladungen senden",
|
||||||
"Send Reset Email": "E-Mail für das Zurücksetzen senden",
|
"Send Reset Email": "E-Mail für das Zurücksetzen senden",
|
||||||
"sent an image": "sandte ein Bild",
|
"sent an image": "hat ein Bild gesendet",
|
||||||
"sent an invitation to": "sandte eine Einladung an",
|
"sent an invitation to": "sandte eine Einladung an",
|
||||||
"sent a video": "sandte ein Video",
|
"sent a video": "hat ein Video gesendet",
|
||||||
"Server may be unavailable or overloaded": "Server ist eventuell nicht verfügbar oder überlastet",
|
"Server may be unavailable or overloaded": "Server ist eventuell nicht verfügbar oder überlastet",
|
||||||
"set a profile picture": "setzte ein Profilbild",
|
"set a profile picture": "setzte ein Profilbild",
|
||||||
"set their display name to": "setzte den Anzeigenamen auf",
|
"set their display name to": "setzte den Anzeigenamen auf",
|
||||||
"Settings": "Einstellungen",
|
"Settings": "Einstellungen",
|
||||||
"Signed Out": "Abgemeldet",
|
"Signed Out": "Abgemeldet",
|
||||||
"Sign out": "Abmelden",
|
"Sign out": "Abmelden",
|
||||||
"since the point in time of selecting this option": "seitdem diese Option gewählt wird",
|
"since the point in time of selecting this option": "ab dem Zeitpunkt, an dem diese Option gewählt wird",
|
||||||
"since they joined": "seitdem sie beitraten",
|
"since they joined": "seitdem sie beitraten",
|
||||||
"since they were invited": "seitdem sie eingeladen wurden",
|
"since they were invited": "seitdem sie eingeladen wurden",
|
||||||
"Someone": "Jemand",
|
"Someone": "Jemand",
|
||||||
|
@ -219,15 +219,15 @@
|
||||||
"This doesn't appear to be a valid email address": "Dies scheint keine gültige E-Mail-Adresse zu sein",
|
"This doesn't appear to be a valid email address": "Dies scheint keine gültige E-Mail-Adresse zu sein",
|
||||||
"this invitation?": "diese Einladung?",
|
"this invitation?": "diese Einladung?",
|
||||||
"This is a preview of this room. Room interactions have been disabled": "Dies ist eine Vorschau dieses Raumes. Raum-Interaktionen wurden deaktiviert",
|
"This is a preview of this room. Room interactions have been disabled": "Dies ist eine Vorschau dieses Raumes. Raum-Interaktionen wurden deaktiviert",
|
||||||
"This room is not accessible by remote Matrix servers": "Dieser Raum ist über entfernte Matrix-Server nicht zugreifbar",
|
"This room is not accessible by remote Matrix servers": "Andere Matrix-Server können auf diesen Raum nicht zugreifen",
|
||||||
"This room's internal ID is": "Die interne ID dieses Raumes ist",
|
"This room's internal ID is": "Die interne ID dieses Raumes ist",
|
||||||
"To ban users": "Zum Nutzer bannen",
|
"To ban users": "Zum Nutzer bannen",
|
||||||
"To configure the room": "Zum Raum konfigurieren",
|
"To configure the room": "Um den Raum zu konfigurieren",
|
||||||
"To invite users into the room": "Zum Nutzer in den Raum einladen",
|
"To invite users into the room": "Um Nutzer in den Raum einzuladen",
|
||||||
"to join the discussion": "um an der Diskussion teilzunehmen",
|
"to join the discussion": "um an der Diskussion teilzunehmen",
|
||||||
"To kick users": "Um Nutzer zu entfernen",
|
"To kick users": "Um Nutzer zu entfernen",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Server könnte nicht verfügbar oder überlastet sein oder du bist auf einen Fehler gestoßen.",
|
"Server may be unavailable, overloaded, or you hit a bug": "Server könnte nicht verfügbar oder überlastet sein oder du bist auf einen Fehler gestoßen",
|
||||||
"Could not connect to the integration server": "Konnte keine Verbindung zum Integrations-Server herstellen",
|
"Could not connect to the integration server": "Konnte keine Verbindung zum Integrations-Server herstellen",
|
||||||
"Disable inline URL previews by default": "URL-Vorschau im Chat standardmäßig deaktivieren",
|
"Disable inline URL previews by default": "URL-Vorschau im Chat standardmäßig deaktivieren",
|
||||||
"Guests can't use labs features. Please register.": "Gäste können keine Labor-Funktionen nutzen. Bitte registrieren.",
|
"Guests can't use labs features. Please register.": "Gäste können keine Labor-Funktionen nutzen. Bitte registrieren.",
|
||||||
|
@ -246,7 +246,7 @@
|
||||||
"Unencrypted room": "Unverschlüsselter Raum",
|
"Unencrypted room": "Unverschlüsselter Raum",
|
||||||
"unknown error code": "Unbekannter Fehlercode",
|
"unknown error code": "Unbekannter Fehlercode",
|
||||||
"unknown": "unbekannt",
|
"unknown": "unbekannt",
|
||||||
"Upload avatar": "Avatar hochladen",
|
"Upload avatar": "Profilbild hochladen",
|
||||||
"uploaded a file": "lud eine Datei hoch",
|
"uploaded a file": "lud eine Datei hoch",
|
||||||
"Upload Files": "Dateien hochladen",
|
"Upload Files": "Dateien hochladen",
|
||||||
"Upload file": "Datei hochladen",
|
"Upload file": "Datei hochladen",
|
||||||
|
@ -255,7 +255,7 @@
|
||||||
"Users": "Nutzer",
|
"Users": "Nutzer",
|
||||||
"User": "Nutzer",
|
"User": "Nutzer",
|
||||||
"Verification Pending": "Verifizierung ausstehend",
|
"Verification Pending": "Verifizierung ausstehend",
|
||||||
"Video call": "Videoanruf",
|
"Video call": "Video-Anruf",
|
||||||
"Voice call": "Sprachanruf",
|
"Voice call": "Sprachanruf",
|
||||||
"VoIP conference finished.": "VoIP-Konferenz wurde beendet.",
|
"VoIP conference finished.": "VoIP-Konferenz wurde beendet.",
|
||||||
"VoIP conference started.": "VoIP-Konferenz gestartet.",
|
"VoIP conference started.": "VoIP-Konferenz gestartet.",
|
||||||
|
@ -271,8 +271,8 @@
|
||||||
"Who would you like to communicate with?": "Mit wem möchtest du kommunizieren?",
|
"Who would you like to communicate with?": "Mit wem möchtest du kommunizieren?",
|
||||||
"Would you like to": "Möchtest du",
|
"Would you like to": "Möchtest du",
|
||||||
"You do not have permission to post to this room": "Du hast keine Berechtigung an diesen Raum etwas zu senden",
|
"You do not have permission to post to this room": "Du hast keine Berechtigung an diesen Raum etwas zu senden",
|
||||||
"You have been invited to join this room by %(inviterName)s": "Du wurdest in diesen Raum eingeladen von %(inviterName)s",
|
"You have been invited to join this room by %(inviterName)s": "Du wurdest von %(inviterName)s in diesen Raum eingeladen",
|
||||||
"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 wurdest von allen Geräten ausgeloggt und wirst keine Push-Benachrichtigungen mehr bekommen. Um Benachrichtigungen zu reaktivieren melde dich auf jedem Gerät neu an",
|
"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 wurdest auf allen Geräten abgemeldet und wirst keine Push-Benachrichtigungen mehr erhalten. Um die Benachrichtigungen zu reaktivieren, musst du dich auf jedem Gerät neu anmelden",
|
||||||
"you must be a": "nötige Rolle",
|
"you must be a": "nötige Rolle",
|
||||||
"Your password has been reset": "Dein Passwort wurde zurückgesetzt",
|
"Your password has been reset": "Dein Passwort wurde zurückgesetzt",
|
||||||
"You should not yet trust it to secure data": "Du solltest nicht darauf vertrauen um deine Daten abzusichern",
|
"You should not yet trust it to secure data": "Du solltest nicht darauf vertrauen um deine Daten abzusichern",
|
||||||
|
@ -280,33 +280,33 @@
|
||||||
"times": "mal",
|
"times": "mal",
|
||||||
"Bulk Options": "Bulk-Optionen",
|
"Bulk Options": "Bulk-Optionen",
|
||||||
"Call Timeout": "Anruf-Timeout",
|
"Call Timeout": "Anruf-Timeout",
|
||||||
"Conference call failed.": "Konferenzgespräch fehlgeschlagen.",
|
"Conference call failed": "Konferenzgespräch fehlgeschlagen",
|
||||||
"Conference calling is in development and may not be reliable.": "Konferenzgespräche sind in Entwicklung und evtl. nicht zuverlässig.",
|
"Conference calling is in development and may not be reliable": "Konferenzgespräche sind in Entwicklung und evtl. nicht zuverlässig",
|
||||||
"Conference calls are not supported in encrypted rooms": "Konferenzgespräche sind in verschlüsselten Räumen nicht unterstützt",
|
"Conference calls are not supported in encrypted rooms": "Konferenzgespräche werden in verschlüsselten Räumen nicht unterstützt",
|
||||||
"Conference calls are not supported in this client": "Konferenzgespräche sind in diesem Client nicht unterstützt",
|
"Conference calls are not supported in this client": "Konferenzgespräche werden von diesem Client nicht unterstützt",
|
||||||
"Existing Call": "Bereits bestehender Anruf",
|
"Existing Call": "Bereits bestehender Anruf",
|
||||||
"Failed to set up conference call": "Konferenzgespräch konnte nicht gestartet werden",
|
"Failed to set up conference call": "Konferenzgespräch konnte nicht gestartet werden",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Verifizierung der E-Mail-Adresse fehlgeschlagen: Bitte stelle sicher, dass du den Link in der E-Mail angeklickt hast",
|
"Failed to verify email address: make sure you clicked the link in the email": "Verifizierung der E-Mail-Adresse fehlgeschlagen: Bitte stelle sicher, dass du den Link in der E-Mail angeklickt hast",
|
||||||
"Failure to create room": "Raumerstellung fehlgeschlagen",
|
"Failure to create room": "Raumerstellung fehlgeschlagen",
|
||||||
"Guest users can't create new rooms. Please register to create room and start a chat.": "Gäste können keine neuen Räume erstellen. Bitte registrieren um einen Raum zu erstellen und einen Chat zu starten.",
|
"Guest users can't create new rooms. Please register to create room and start a chat": "Gäste können keine neuen Räume erstellen. Bitte registrieren um einen Raum zu erstellen und einen Chat zu starten",
|
||||||
"Riot does not have permission to send you notifications - please check your browser settings": "Riot hat keine Berechtigung Benachrichtigungen zu senden - bitte prüfe deine Browser-Einstellungen",
|
"Riot does not have permission to send you notifications - please check your browser settings": "Riot hat keine Berechtigung Benachrichtigungen zu senden - bitte prüfe deine Browser-Einstellungen",
|
||||||
"Riot was not given permission to send notifications - please try again": "Riot hat das Recht nicht bekommen Benachrichtigungen zu senden. Bitte erneut probieren",
|
"Riot was not given permission to send notifications - please try again": "Riot hat das Recht nicht bekommen Benachrichtigungen zu senden. Bitte erneut probieren",
|
||||||
"This email address is already in use": "Diese E-Mail-Adresse wird bereits verwendet",
|
"This email address is already in use": "Diese E-Mail-Adresse wird bereits verwendet",
|
||||||
"This email address was not found": "Diese E-Mail-Adresse wurde nicht gefunden",
|
"This email address was not found": "Diese E-Mail-Adresse konnte nicht gefunden werden",
|
||||||
"The file '%(fileName)s' exceeds this home server's size limit for uploads": "Die Datei '%(fileName)s' überschreitet das Größen-Limit für Uploads auf diesem Homeserver",
|
"The file '%(fileName)s' exceeds this home server's size limit for uploads": "Die Datei '%(fileName)s' überschreitet das Größen-Limit für Uploads auf diesem Homeserver",
|
||||||
"The file '%(fileName)s' failed to upload": "Das Hochladen der Datei '%(fileName)s' schlug fehl",
|
"The file '%(fileName)s' failed to upload": "Das Hochladen der Datei '%(fileName)s' schlug fehl",
|
||||||
"The remote side failed to pick up": "Die Gegenstelle konnte nicht abheben",
|
"The remote side failed to pick up": "Die Gegenstelle konnte nicht abheben",
|
||||||
"This phone number is already in use": "Diese Telefonnummer wird bereits verwendet",
|
"This phone number is already in use": "Diese Telefonnummer wird bereits verwendet",
|
||||||
"Unable to restore previous session": "Frühere Sitzung nicht wiederherstellbar",
|
"Unable to restore previous session": "Die vorherige Sitzung konnte nicht wiederhergestellt werden",
|
||||||
"Unable to capture screen": "Unfähig den Bildschirm aufzunehmen",
|
"Unable to capture screen": "Unfähig den Bildschirm aufzunehmen",
|
||||||
"Unable to enable Notifications": "Unfähig Benachrichtigungen zu aktivieren",
|
"Unable to enable Notifications": "Benachrichtigungen konnten nicht aktiviert werden",
|
||||||
"Upload Failed": "Upload fehlgeschlagen",
|
"Upload Failed": "Upload fehlgeschlagen",
|
||||||
"VoIP is unsupported": "VoIP wird nicht unterstützt",
|
"VoIP is unsupported": "VoIP wird nicht unterstützt",
|
||||||
"You are already in a call.": "Du bist bereits bei einem Anruf.",
|
"You are already in a call": "Du bist bereits bei einem Anruf",
|
||||||
"You cannot place a call with yourself.": "Du kannst keinen Anruf mit dir selbst starten.",
|
"You cannot place a call with yourself": "Du kannst keinen Anruf mit dir selbst starten",
|
||||||
"You cannot place VoIP calls in this browser.": "Du kannst kein VoIP-Gespräch in diesem Browser starten.",
|
"You cannot place VoIP calls in this browser": "Du kannst kein VoIP-Gespräch in diesem Browser starten",
|
||||||
"You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a once off; sorry for the inconvenience.": "Du musst dich erneut anmelden, um Ende-zu-Ende-Verschlüsselungs-Schlüssel für dieses Gerät zu generieren und um den öffentlichen Schlüssel auf deinem Homeserver zu hinterlegen. Dies muss nur einmal durchgeführt werden, bitte entschuldige die Unannehmlichkeiten.",
|
"You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a once off; sorry for the inconvenience.": "Du musst dich erneut anmelden, um Ende-zu-Ende-Verschlüsselungs-Schlüssel für dieses Gerät zu generieren und um den öffentlichen Schlüssel auf deinem Homeserver zu hinterlegen. Dies muss nur einmal durchgeführt werden, bitte entschuldige die Unannehmlichkeiten.",
|
||||||
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Deine E-Mail-Adresse scheint nicht mit einer Matrix-ID auf diesem Homeserver verknüpft zu sein.",
|
"Your email address does not appear to be associated with a Matrix ID on this Homeserver": "Deine E-Mail-Adresse scheint nicht mit einer Matrix-ID auf diesem Homeserver verknüpft zu sein",
|
||||||
"Sun": "So",
|
"Sun": "So",
|
||||||
"Mon": "Mo",
|
"Mon": "Mo",
|
||||||
"Tue": "Di",
|
"Tue": "Di",
|
||||||
|
@ -329,7 +329,7 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s. %(monthName)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s. %(monthName)s %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"Set a display name:": "Anzeigename eingeben:",
|
"Set a display name:": "Anzeigename eingeben:",
|
||||||
"Upload an avatar:": "Lade einen Avatar hoch:",
|
"Upload an avatar:": "Profilbild hochladen:",
|
||||||
"This server does not support authentication with a phone number.": "Dieser Server unterstützt keine Authentifizierung mittels Telefonnummer.",
|
"This server does not support authentication with a phone number.": "Dieser Server unterstützt keine Authentifizierung mittels Telefonnummer.",
|
||||||
"Missing password.": "Fehlendes Passwort.",
|
"Missing password.": "Fehlendes Passwort.",
|
||||||
"Passwords don't match.": "Passwörter stimmen nicht überein.",
|
"Passwords don't match.": "Passwörter stimmen nicht überein.",
|
||||||
|
@ -346,27 +346,27 @@
|
||||||
"Encrypt room": "Raum verschlüsseln",
|
"Encrypt room": "Raum verschlüsseln",
|
||||||
"To send events of type": "Zum Senden von Ereignissen mit Typ",
|
"To send events of type": "Zum Senden von Ereignissen mit Typ",
|
||||||
"%(names)s and %(lastPerson)s are typing": "%(names)s und %(lastPerson)s schreiben",
|
"%(names)s and %(lastPerson)s are typing": "%(names)s und %(lastPerson)s schreiben",
|
||||||
"%(targetName)s accepted an invitation.": "%(targetName)s akzeptierte eine Einladung.",
|
"%(targetName)s accepted an invitation.": "%(targetName)s hat eine Einladung angenommen.",
|
||||||
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s akzeptierte die Einladung für %(displayName)s.",
|
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s akzeptierte die Einladung für %(displayName)s.",
|
||||||
"%(names)s and one other are typing": "%(names)s und eine weitere Person tippen",
|
"%(names)s and one other are typing": "%(names)s und eine weitere Person tippen",
|
||||||
"%(names)s and %(count)s others are typing": "%(names)s und %(count)s weitere Personen tippen",
|
"%(names)s and %(count)s others are typing": "%(names)s und %(count)s weitere Personen schreiben",
|
||||||
"%(senderName)s answered the call.": "%(senderName)s beantwortete den Anruf.",
|
"%(senderName)s answered the call.": "%(senderName)s hat den Anruf angenommen.",
|
||||||
"%(senderName)s banned %(targetName)s.": "%(senderName)s hat %(targetName)s aus dem Raum verbannt.",
|
"%(senderName)s banned %(targetName)s.": "%(senderName)s hat %(targetName)s aus dem Raum verbannt.",
|
||||||
"%(senderName)s changed their display name from %(oldDisplayName)s to %(displayName)s.": "%(senderName)s hat den Anzeigenamen von %(oldDisplayName)s auf %(displayName)s geändert.",
|
"%(senderName)s changed their display name from %(oldDisplayName)s to %(displayName)s.": "%(senderName)s hat den Anzeigenamen von %(oldDisplayName)s auf %(displayName)s geändert.",
|
||||||
"%(senderName)s changed their profile picture.": "%(senderName)s hat das Profilbild geändert.",
|
"%(senderName)s changed their profile picture.": "%(senderName)s hat das Profilbild geändert.",
|
||||||
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s änderte das Berechtigungslevel von %(powerLevelDiffText)s.",
|
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s hat das Berechtigungslevel von %(powerLevelDiffText)s geändert.",
|
||||||
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s änderte den Raumnamen zu %(roomName)s.",
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s änderte den Raumnamen zu %(roomName)s.",
|
||||||
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s hat das Thema geändert in \"%(topic)s\".",
|
"%(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",
|
"/ddg is not a command": "/ddg ist kein Kommando",
|
||||||
"%(senderName)s ended the call.": "%(senderName)s hat den Anruf beendet.",
|
"%(senderName)s ended the call.": "%(senderName)s hat den Anruf beendet.",
|
||||||
"Failed to lookup current room": "Aktuellen Raum nachzuschlagen schlug fehl",
|
"Failed to lookup current room": "Aktuellen Raum nachzuschlagen schlug fehl",
|
||||||
"Failed to send request.": "Anfrage zu senden schlug fehl.",
|
"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",
|
"%(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.",
|
"%(senderName)s invited %(targetName)s.": "%(senderName)s hat %(targetName)s eingeladen.",
|
||||||
"%(displayName)s is typing": "%(displayName)s schreibt",
|
"%(displayName)s is typing": "%(displayName)s schreibt",
|
||||||
"%(targetName)s joined the room.": "%(targetName)s trat dem Raum bei.",
|
"%(targetName)s joined the room.": "%(targetName)s trat dem Raum bei.",
|
||||||
"%(senderName)s kicked %(targetName)s.": "%(senderName)s kickte %(targetName)s.",
|
"%(senderName)s kicked %(targetName)s.": "%(senderName)s kickte %(targetName)s.",
|
||||||
"%(targetName)s left the room.": "%(targetName)s verließ den Raum.",
|
"%(targetName)s left the room.": "%(targetName)s hat den Raum verlassen.",
|
||||||
"%(senderName)s made future room history visible to": "%(senderName)s machte die zukünftige Raumhistorie sichtbar für",
|
"%(senderName)s made future room history visible to": "%(senderName)s machte die zukünftige Raumhistorie sichtbar für",
|
||||||
"Missing room_id in request": "Fehlende room_id in Anfrage",
|
"Missing room_id in request": "Fehlende room_id in Anfrage",
|
||||||
"Missing user_id in request": "Fehlende user_id in Anfrage",
|
"Missing user_id in request": "Fehlende user_id in Anfrage",
|
||||||
|
@ -382,18 +382,18 @@
|
||||||
"%(senderName)s requested a VoIP conference.": "%(senderName)s möchte eine VoIP-Konferenz beginnen.",
|
"%(senderName)s requested a VoIP conference.": "%(senderName)s möchte eine VoIP-Konferenz beginnen.",
|
||||||
"Room %(roomId)s not visible": "Raum %(roomId)s ist nicht sichtbar",
|
"Room %(roomId)s not visible": "Raum %(roomId)s ist nicht sichtbar",
|
||||||
"%(senderDisplayName)s sent an image.": "%(senderDisplayName)s hat ein Bild gesendet.",
|
"%(senderDisplayName)s sent an image.": "%(senderDisplayName)s hat ein Bild gesendet.",
|
||||||
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s sandte eine Einladung an %(targetDisplayName)s um diesem Raum beizutreten.",
|
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s hat %(targetDisplayName)s in diesen Raum eingeladen.",
|
||||||
"%(senderName)s set a profile picture.": "%(senderName)s setzte ein Profilbild.",
|
"%(senderName)s set a profile picture.": "%(senderName)s setzte ein Profilbild.",
|
||||||
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s hat den Anzeigenamen geändert in %(displayName)s.",
|
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s hat den Anzeigenamen geändert in %(displayName)s.",
|
||||||
"This room is not recognised.": "Dieser Raum wurde nicht erkannt.",
|
"This room is not recognised.": "Dieser Raum wurde nicht erkannt.",
|
||||||
"These are experimental features that may break in unexpected ways": "Dies sind experimentelle Funktionen, die in unerwarteter Weise Fehler verursachen können",
|
"These are experimental features that may break in unexpected ways": "Dies sind experimentelle Funktionen, die in unerwarteter Weise Fehler verursachen können",
|
||||||
"To use it, just wait for autocomplete results to load and tab through them.": "Um dies zu nutzen, warte auf die Autovervollständigungsergebnisse und benutze die TAB Taste.",
|
"To use it, just wait for autocomplete results to load and tab through them.": "Um diese Funktion zu nutzen, warte einfach auf die Autovervollständigungsergebnisse und benutze dann die TAB-Taste zum durchblättern.",
|
||||||
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s schaltete Ende-zu-Ende-Verschlüsselung ein (Algorithmus: %(algorithm)s).",
|
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s hat die Ende-zu-Ende-Verschlüsselung aktiviert (Algorithmus: %(algorithm)s).",
|
||||||
"%(senderName)s unbanned %(targetName)s.": "%(senderName)s zog Bann für %(targetName)s zurück.",
|
"%(senderName)s unbanned %(targetName)s.": "%(senderName)s zog Bann für %(targetName)s zurück.",
|
||||||
"Usage": "Verwendung",
|
"Usage": "Verwendung",
|
||||||
"Use with caution": "Mit Vorsicht zu verwenden",
|
"Use with caution": "Mit Vorsicht zu verwenden",
|
||||||
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s zog die Einladung für %(targetName)s zurück.",
|
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s zog die Einladung für %(targetName)s zurück.",
|
||||||
"You need to be able to invite users to do that.": "Du musst in der Lage sein Nutzer einzuladen um dies zu tun.",
|
"You need to be able to invite users to do that.": "Du musst die Berechtigung haben, Nutzer einzuladen, um diese Aktion ausführen zu können.",
|
||||||
"You need to be logged in.": "Du musst angemeldet sein.",
|
"You need to be logged in.": "Du musst angemeldet sein.",
|
||||||
"There are no visible files in this room": "Es gibt keine sichtbaren Dateien in diesem Raum",
|
"There are no visible files in this room": "Es gibt keine sichtbaren Dateien in diesem Raum",
|
||||||
"Error changing language": "Fehler beim Ändern der Sprache",
|
"Error changing language": "Fehler beim Ändern der Sprache",
|
||||||
|
@ -417,7 +417,7 @@
|
||||||
"Drop here to tag %(section)s": "Hierher ziehen: %(section)s taggen",
|
"Drop here to tag %(section)s": "Hierher ziehen: %(section)s taggen",
|
||||||
"Press": "Drücke",
|
"Press": "Drücke",
|
||||||
"tag as %(tagName)s": "als %(tagName)s taggen",
|
"tag as %(tagName)s": "als %(tagName)s taggen",
|
||||||
"to browse the directory": "um das Verzeichnis anzusehen",
|
"to browse the directory": "um das Raum-Verzeichnis zu durchsuchen",
|
||||||
"to demote": "um die Priorität herabzusetzen",
|
"to demote": "um die Priorität herabzusetzen",
|
||||||
"to favourite": "zum Favorisieren",
|
"to favourite": "zum Favorisieren",
|
||||||
"to make a room or": "um einen Raum zu erstellen, oder",
|
"to make a room or": "um einen Raum zu erstellen, oder",
|
||||||
|
@ -429,9 +429,9 @@
|
||||||
"To remove other users' messages": "Um Nachrichten anderer Nutzer zu verbergen",
|
"To remove other users' messages": "Um Nachrichten anderer Nutzer zu verbergen",
|
||||||
"You are trying to access %(roomName)s": "Du versuchst auf %(roomName)s zuzugreifen",
|
"You are trying to access %(roomName)s": "Du versuchst auf %(roomName)s zuzugreifen",
|
||||||
"af": "Afrikaans",
|
"af": "Afrikaans",
|
||||||
"ar-ae": "Arabisch (U.A.E.)",
|
"ar-ae": "Arabisch (VAE)",
|
||||||
"ar-bh": "Arabisch (Bahrain)",
|
"ar-bh": "Arabisch (Bahrain)",
|
||||||
"ar-dz": "Arabisch (Algeria)",
|
"ar-dz": "Arabisch (Algerien)",
|
||||||
"ar-eg": "Arabisch (Ägypten)",
|
"ar-eg": "Arabisch (Ägypten)",
|
||||||
"ar-iq": "Arabisch (Irak)",
|
"ar-iq": "Arabisch (Irak)",
|
||||||
"ar-jo": "Arabisch (Jordanien)",
|
"ar-jo": "Arabisch (Jordanien)",
|
||||||
|
@ -440,11 +440,11 @@
|
||||||
"ar-ly": "Arabisch (Lybien)",
|
"ar-ly": "Arabisch (Lybien)",
|
||||||
"ar-ma": "Arabisch (Marokko)",
|
"ar-ma": "Arabisch (Marokko)",
|
||||||
"ar-om": "Arabisch (Oman)",
|
"ar-om": "Arabisch (Oman)",
|
||||||
"ar-qa": "Arabisch (Qatar)",
|
"ar-qa": "Arabisch (Katar)",
|
||||||
"ar-sa": "Arabisch (Saudi Arabien)",
|
"ar-sa": "Arabisch (Saudi Arabien)",
|
||||||
"ar-sy": "Arabisch (Syrien)",
|
"ar-sy": "Arabisch (Syrien)",
|
||||||
"ar-tn": "Arabisch (Tunesien)",
|
"ar-tn": "Arabisch (Tunesien)",
|
||||||
"ar-ye": "Arabisch (Yemen)",
|
"ar-ye": "Arabisch (Jemen)",
|
||||||
"be": "Weißrussisch",
|
"be": "Weißrussisch",
|
||||||
"bg": "Bulgarisch",
|
"bg": "Bulgarisch",
|
||||||
"cs": "Tschechisch",
|
"cs": "Tschechisch",
|
||||||
|
@ -452,7 +452,7 @@
|
||||||
"de-ch": "Deutsch (Schweiz)",
|
"de-ch": "Deutsch (Schweiz)",
|
||||||
"de-li": "Deutsch (Liechtenstein)",
|
"de-li": "Deutsch (Liechtenstein)",
|
||||||
"de-lu": "Deutsch (Luxemburg)",
|
"de-lu": "Deutsch (Luxemburg)",
|
||||||
"el": "Griechisch",
|
"el": "Neugriechisch",
|
||||||
"en-au": "Englisch (Australien)",
|
"en-au": "Englisch (Australien)",
|
||||||
"en-bz": "Englisch (Belize)",
|
"en-bz": "Englisch (Belize)",
|
||||||
"en-ca": "Englisch (Kanada)",
|
"en-ca": "Englisch (Kanada)",
|
||||||
|
@ -462,7 +462,7 @@
|
||||||
"en-nz": "Englisch (Neuseeland)",
|
"en-nz": "Englisch (Neuseeland)",
|
||||||
"en-tt": "Englisch (Trinidad)",
|
"en-tt": "Englisch (Trinidad)",
|
||||||
"en-us": "Englisch (Vereinigte Staaten)",
|
"en-us": "Englisch (Vereinigte Staaten)",
|
||||||
"en-za": "Englisch (Süd-Afrika)",
|
"en-za": "Englisch (Südafrika)",
|
||||||
"es-ar": "Spanisch (Argentinien)",
|
"es-ar": "Spanisch (Argentinien)",
|
||||||
"es-bo": "Spanisch (Bolivien)",
|
"es-bo": "Spanisch (Bolivien)",
|
||||||
"es-cl": "Spanisch (Chile)",
|
"es-cl": "Spanisch (Chile)",
|
||||||
|
@ -514,7 +514,7 @@
|
||||||
"rm": "Rätoromanisch",
|
"rm": "Rätoromanisch",
|
||||||
"ro-mo": "Rumänisch (Republik Moldau/Moldawien)",
|
"ro-mo": "Rumänisch (Republik Moldau/Moldawien)",
|
||||||
"ro": "Rumänisch",
|
"ro": "Rumänisch",
|
||||||
"ru-mo": "Russisch",
|
"ru-mo": "Russisch (Republik Moldau/Moldawien)",
|
||||||
"sb": "Sorbisch",
|
"sb": "Sorbisch",
|
||||||
"sk": "Slowakisch",
|
"sk": "Slowakisch",
|
||||||
"sl": "Slowenisch",
|
"sl": "Slowenisch",
|
||||||
|
@ -523,7 +523,7 @@
|
||||||
"sv-fi": "Schwedisch (Finnland)",
|
"sv-fi": "Schwedisch (Finnland)",
|
||||||
"sv": "Schwedisch",
|
"sv": "Schwedisch",
|
||||||
"sx": "Sutu",
|
"sx": "Sutu",
|
||||||
"sz": "Samisch (Lappish)",
|
"sz": "Samisch (Lappisch)",
|
||||||
"th": "Thailändisch",
|
"th": "Thailändisch",
|
||||||
"tn": "Setswana",
|
"tn": "Setswana",
|
||||||
"tr": "Türkisch",
|
"tr": "Türkisch",
|
||||||
|
@ -532,7 +532,7 @@
|
||||||
"ur": "Urdu",
|
"ur": "Urdu",
|
||||||
"ve": "Tshivenda",
|
"ve": "Tshivenda",
|
||||||
"vi": "Vietnamesisch",
|
"vi": "Vietnamesisch",
|
||||||
"zh-cn": "Chinesisch (PRC)",
|
"zh-cn": "Chinesisch (Volksrepublik China)",
|
||||||
"zh-hk": "Chinesisch (Hong Kong SAR)",
|
"zh-hk": "Chinesisch (Hong Kong SAR)",
|
||||||
"zh-sg": "Chinesisch (Singapur)",
|
"zh-sg": "Chinesisch (Singapur)",
|
||||||
"zh-tw": "Chinesisch (Taiwan)",
|
"zh-tw": "Chinesisch (Taiwan)",
|
||||||
|
@ -565,10 +565,10 @@
|
||||||
"Click to mute video": "Klicken, um das Video stummzuschalten",
|
"Click to mute video": "Klicken, um das Video stummzuschalten",
|
||||||
"Command error": "Befehlsfehler",
|
"Command error": "Befehlsfehler",
|
||||||
"Decrypt %(text)s": "Entschlüssele %(text)s",
|
"Decrypt %(text)s": "Entschlüssele %(text)s",
|
||||||
"Delete": "Lösche",
|
"Delete": "Löschen",
|
||||||
"Devices": "Geräte",
|
"Devices": "Geräte",
|
||||||
"Direct chats": "Direkte Chats",
|
"Direct chats": "Direkte Chats",
|
||||||
"Disinvite": "Ausladen",
|
"Disinvite": "Einladung zurückziehen",
|
||||||
"Download %(text)s": "%(text)s herunterladen",
|
"Download %(text)s": "%(text)s herunterladen",
|
||||||
"Enter Code": "Code eingeben",
|
"Enter Code": "Code eingeben",
|
||||||
"Failed to ban user": "Bannen des Nutzers fehlgeschlagen",
|
"Failed to ban user": "Bannen des Nutzers fehlgeschlagen",
|
||||||
|
@ -576,8 +576,8 @@
|
||||||
"Failed to delete device": "Löschen des Geräts fehlgeschlagen",
|
"Failed to delete device": "Löschen des Geräts fehlgeschlagen",
|
||||||
"Failed to join room": "Betreten des Raumes ist fehlgeschlagen",
|
"Failed to join room": "Betreten des Raumes ist fehlgeschlagen",
|
||||||
"Failed to kick": "Kicken fehlgeschlagen",
|
"Failed to kick": "Kicken fehlgeschlagen",
|
||||||
"Failed to mute user": "Nutzer lautlos zu stellen fehlgeschlagen",
|
"Failed to mute user": "Stummschalten des Nutzers fehlgeschlagen",
|
||||||
"Failed to reject invite": "Einladung abzulehnen fehlgeschlagen",
|
"Failed to reject invite": "Ablehnen der Einladung ist fehlgeschlagen",
|
||||||
"Failed to save settings": "Einstellungen konnten nicht gespeichert werden",
|
"Failed to save settings": "Einstellungen konnten nicht gespeichert werden",
|
||||||
"Failed to set display name": "Anzeigename konnte nicht gesetzt werden",
|
"Failed to set display name": "Anzeigename konnte nicht gesetzt werden",
|
||||||
"Fill screen": "Fülle Bildschirm",
|
"Fill screen": "Fülle Bildschirm",
|
||||||
|
@ -588,7 +588,7 @@
|
||||||
"Invalid address format": "Ungültiges Adressformat",
|
"Invalid address format": "Ungültiges Adressformat",
|
||||||
"'%(alias)s' is not a valid format for an address": "'%(alias)s' ist kein gültiges Adressformat",
|
"'%(alias)s' is not a valid format for an address": "'%(alias)s' ist kein gültiges Adressformat",
|
||||||
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' hat kein valides Aliasformat",
|
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' hat kein valides Aliasformat",
|
||||||
"Join Room": "Raum beitreten",
|
"Join Room": "Dem Raum beitreten",
|
||||||
"Kick": "Kicke",
|
"Kick": "Kicke",
|
||||||
"Level": "Level",
|
"Level": "Level",
|
||||||
"Local addresses for this room:": "Lokale Adressen dieses Raumes:",
|
"Local addresses for this room:": "Lokale Adressen dieses Raumes:",
|
||||||
|
@ -603,24 +603,24 @@
|
||||||
"No results": "Keine Ergebnisse",
|
"No results": "Keine Ergebnisse",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Revoke Moderator": "Moderator zurückziehen",
|
"Revoke Moderator": "Moderator zurückziehen",
|
||||||
"Search": "Suche",
|
"Search": "Suchen",
|
||||||
"Search failed": "Suche fehlgeschlagen",
|
"Search failed": "Suche ist fehlgeschlagen",
|
||||||
"Server error": "Server-Fehler",
|
"Server error": "Server-Fehler",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Der Server ist entweder nicht verfügbar, überlastet oder die Suche wurde wegen Zeitüberschreitung abgebrochen :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Der Server ist entweder nicht verfügbar, überlastet oder die Suche wurde wegen Zeitüberschreitung abgebrochen :(",
|
||||||
"Server may be unavailable, overloaded, or the file too big": "Server ist entweder nicht verfügbar, überlastet oder die Datei ist zu groß",
|
"Server may be unavailable, overloaded, or the file too big": "Server ist entweder nicht verfügbar, überlastet oder die Datei ist zu groß",
|
||||||
"Server unavailable, overloaded, or something else went wrong.": "Der Server ist entweder nicht verfügbar, überlastet oder es liegt ein anderweitiger Fehler vor.",
|
"Server unavailable, overloaded, or something else went wrong": "Der Server ist entweder nicht verfügbar, überlastet oder es liegt ein anderweitiger Fehler vor",
|
||||||
"Some of your messages have not been sent": "Einige deiner Nachrichten wurden noch nicht gesendet",
|
"Some of your messages have not been sent": "Einige deiner Nachrichten wurden noch nicht gesendet",
|
||||||
"Submit": "Absenden",
|
"Submit": "Absenden",
|
||||||
"The main address for this room is: %(canonical_alias_section)s": "Die Hauptadresse für diesen Raum ist: %(canonical_alias_section)s",
|
"The main address for this room is: %(canonical_alias_section)s": "Die Hauptadresse für diesen Raum ist: %(canonical_alias_section)s",
|
||||||
"This action cannot be performed by a guest user. Please register to be able to do this": "Diese Aktion kann nicht von einem Gast ausgeführt werden. Bitte registriere dich um dies zu tun",
|
"This action cannot be performed by a guest user. Please register to be able to do this": "Diese Aktion kann nicht von einem Gast ausgeführt werden. Bitte registriere dich um dies zu tun",
|
||||||
"%(actionVerb)s this person?": "Diese Person %(actionVerb)s?",
|
"%(actionVerb)s this person?": "Diese Person %(actionVerb)s?",
|
||||||
"This room has no local addresses": "Dieser Raum hat keine lokale Adresse",
|
"This room has no local addresses": "Dieser Raum hat keine lokale Adresse",
|
||||||
"This room is private or inaccessible to guests. You may be able to join if you register": "Dieser Raum ist privat oder für Gäste nicht zugreifbar. Du kannst evtl. zugreifen, wenn du dich registrierst",
|
"This room is private or inaccessible to guests. You may be able to join if you register": "Dieser Raum ist privat oder für Gäste nicht zugänglich. Du kannst jedoch eventuell beitreten, wenn du dich registrierst",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question": "Versuchte einen spezifischen Punkt in der Raum-Chronik zu laden, aber du hast keine Berechtigung die angeforderte Nachricht anzuzeigen",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question": "Versuchte einen spezifischen Punkt in der Raum-Chronik zu laden, aber du hast keine Berechtigung die angeforderte Nachricht anzuzeigen",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it": "Versuchte einen spezifischen Punkt in der Raum-Chronik zu laden, aber er konnte nicht gefunden werden",
|
"Tried to load a specific point in this room's timeline, but was unable to find it": "Der Versuch, einen spezifischen Punkt im Chatverlauf zu laden, ist fehlgeschlagen. Der Punkt konnte nicht gefunden werden",
|
||||||
"Turn Markdown off": "Markdown abschalten",
|
"Turn Markdown off": "Markdown abschalten",
|
||||||
"Turn Markdown on": "Markdown einschalten",
|
"Turn Markdown on": "Markdown einschalten",
|
||||||
"Unable to load device list": "Laden der Geräteliste nicht möglich",
|
"Unable to load device list": "Geräteliste konnte nicht geladen werden",
|
||||||
"Unknown command": "Unbekannter Befehl",
|
"Unknown command": "Unbekannter Befehl",
|
||||||
"Unknown room %(roomId)s": "Unbekannter Raum %(roomId)s",
|
"Unknown room %(roomId)s": "Unbekannter Raum %(roomId)s",
|
||||||
"Usage: /markdown on|off": "Verwendung: /markdown on|off",
|
"Usage: /markdown on|off": "Verwendung: /markdown on|off",
|
||||||
|
@ -652,11 +652,11 @@
|
||||||
"%(items)s and %(remaining)s others": "%(items)s und %(remaining)s weitere",
|
"%(items)s and %(remaining)s others": "%(items)s und %(remaining)s weitere",
|
||||||
"%(items)s and one other": "%(items)s und ein(e) weitere(r)",
|
"%(items)s and one other": "%(items)s und ein(e) weitere(r)",
|
||||||
"%(items)s and %(lastItem)s": "%(items)s und %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s und %(lastItem)s",
|
||||||
"%(severalUsers)sjoined %(repeats)s times": "%(severalUsers)strat(en) %(repeats)s mal bei",
|
"%(severalUsers)sjoined %(repeats)s times": "%(severalUsers)ssind dem Raum %(repeats)s mal beigetreten",
|
||||||
"%(oneUser)sjoined %(repeats)s times": "%(oneUser)strat %(repeats)s mal bei",
|
"%(oneUser)sjoined %(repeats)s times": "%(oneUser)strat %(repeats)s mal bei",
|
||||||
"%(severalUsers)sjoined": "%(severalUsers)straten bei",
|
"%(severalUsers)sjoined": "%(severalUsers)straten bei",
|
||||||
"%(oneUser)sjoined": "%(oneUser)strat bei",
|
"%(oneUser)sjoined": "%(oneUser)strat bei",
|
||||||
"%(severalUsers)sleft %(repeats)s times": "%(severalUsers)sgingen %(repeats)s mal",
|
"%(severalUsers)sleft %(repeats)s times": "%(severalUsers)sverließen %(repeats)s mal den Raum",
|
||||||
"%(oneUser)sleft %(repeats)s times": "%(oneUser)sging %(repeats)s mal",
|
"%(oneUser)sleft %(repeats)s times": "%(oneUser)sging %(repeats)s mal",
|
||||||
"%(severalUsers)sleft": "%(severalUsers)shaben den Raum verlassen",
|
"%(severalUsers)sleft": "%(severalUsers)shaben den Raum verlassen",
|
||||||
"%(oneUser)sleft": "%(oneUser)sging",
|
"%(oneUser)sleft": "%(oneUser)sging",
|
||||||
|
@ -679,30 +679,30 @@
|
||||||
"were invited %(repeats)s times": "wurden %(repeats)s mal eingeladen",
|
"were invited %(repeats)s times": "wurden %(repeats)s mal eingeladen",
|
||||||
"was invited %(repeats)s times": "wurde %(repeats)s mal eingeladen",
|
"was invited %(repeats)s times": "wurde %(repeats)s mal eingeladen",
|
||||||
"were invited": "wurden eingeladen",
|
"were invited": "wurden eingeladen",
|
||||||
"were banned %(repeats)s times": "wurden %(repeats)s mal gebannt",
|
"were banned %(repeats)s times": "wurden %(repeats)s mal aus dem Raum ausgeschlossen",
|
||||||
"was banned %(repeats)s times": "wurde %(repeats)s mal gebannt",
|
"was banned %(repeats)s times": "wurde %(repeats)s mal aus dem Raum ausgeschlossen",
|
||||||
"were banned": "wurden gebannt",
|
"were banned": "wurden aus dem Raum ausgeschlossen",
|
||||||
"were unbanned %(repeats)s times": "wurden %(repeats)s mal entbannt",
|
"were unbanned %(repeats)s times": "wurden %(repeats)s mal entbannt",
|
||||||
"was unbanned %(repeats)s times": "wurde %(repeats)s mal entbannt",
|
"was unbanned %(repeats)s times": "wurde %(repeats)s mal entbannt",
|
||||||
"were unbanned": "wurden entbannt",
|
"were unbanned": "wurden entbannt",
|
||||||
"were kicked %(repeats)s times": "wurden %(repeats)s mal gekickt",
|
"were kicked %(repeats)s times": "wurden %(repeats)s mal gekickt",
|
||||||
"was kicked %(repeats)s times": "wurde %(repeats)s mal gekickt",
|
"was kicked %(repeats)s times": "wurde %(repeats)s mal gekickt",
|
||||||
"were kicked": "wurden gekickt",
|
"were kicked": "wurden aus dem Raum entfernt",
|
||||||
"%(severalUsers)schanged their name %(repeats)s times": "%(severalUsers)sänderten %(repeats)s mal ihre Namen",
|
"%(severalUsers)schanged their name %(repeats)s times": "%(severalUsers)sänderten %(repeats)s mal ihre Namen",
|
||||||
"%(oneUser)schanged their name %(repeats)s times": "%(oneUser)sänderte %(repeats)s mal seinen/ihren Namen",
|
"%(oneUser)schanged their name %(repeats)s times": "%(oneUser)sänderte %(repeats)s mal seinen/ihren Namen",
|
||||||
"%(severalUsers)schanged their name": "%(severalUsers)sänderten ihre Namen",
|
"%(severalUsers)schanged their name": "%(severalUsers)shaben ihre Namen geändert",
|
||||||
"%(oneUser)schanged their name": "%(oneUser)sänderte seinen/ihren Namen",
|
"%(oneUser)schanged their name": "%(oneUser)sänderte seinen/ihren Namen",
|
||||||
"%(severalUsers)schanged their avatar %(repeats)s times": "%(severalUsers)sänderten %(repeats)s mal ihren Avatar",
|
"%(severalUsers)schanged their avatar %(repeats)s times": "%(severalUsers)shaben %(repeats)s mal ihr Profilbild geändert",
|
||||||
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)sänderte %(repeats)s mal seinen/ihren Avatar",
|
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)shat %(repeats)s mal das Profilbild geändert",
|
||||||
"%(severalUsers)schanged their avatar": "%(severalUsers)sänderten ihre Avatare",
|
"%(severalUsers)schanged their avatar": "%(severalUsers)shaben ihr Profilbild geändert",
|
||||||
"%(oneUser)schanged their avatar": "%(oneUser)sänderte seinen/ihren Avatar",
|
"%(oneUser)schanged their avatar": "%(oneUser)shat das Profilbild geändert",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s. %(monthName)s %(fullYear)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s. %(monthName)s %(fullYear)s %(time)s",
|
||||||
"%(oneUser)sleft and rejoined": "%(oneUser)sverließ den Raum und trat erneut bei",
|
"%(oneUser)sleft and rejoined": "%(oneUser)sverließ den Raum und trat erneut bei",
|
||||||
"A registered account is required for this action": "Für diese Aktion ist ein registrierter Account notwendig",
|
"A registered account is required for this action": "Für diese Aktion ist ein registrierter Account notwendig",
|
||||||
"Access Token:": "Zugangs-Token:",
|
"Access Token:": "Zugangs-Token:",
|
||||||
"Always show message timestamps": "Nachrichten-Zeitstempel immer anzeigen",
|
"Always show message timestamps": "Nachrichten-Zeitstempel immer anzeigen",
|
||||||
"Authentication": "Authentifikation",
|
"Authentication": "Authentifizierung",
|
||||||
"An error has occurred.": "Ein Fehler passierte.",
|
"An error has occurred.": "Ein Fehler ist aufgetreten.",
|
||||||
"Confirm password": "Passwort bestätigen",
|
"Confirm password": "Passwort bestätigen",
|
||||||
"Current password": "Aktuelles Passwort",
|
"Current password": "Aktuelles Passwort",
|
||||||
"Email": "E-Mail",
|
"Email": "E-Mail",
|
||||||
|
@ -716,7 +716,7 @@
|
||||||
"Report it": "Melde ihn",
|
"Report it": "Melde ihn",
|
||||||
"riot-web version:": "Version von riot-web:",
|
"riot-web version:": "Version von riot-web:",
|
||||||
"Scroll to bottom of page": "Zum Ende der Seite springen",
|
"Scroll to bottom of page": "Zum Ende der Seite springen",
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Zeige Zeitstempel im 12-Stunden-Format (z. B. 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Zeitstempel im 12-Stunden-Format anzeigen (z. B. 2:30pm)",
|
||||||
"to tag as %(tagName)s": "um als \"%(tagName)s\" zu markieren",
|
"to tag as %(tagName)s": "um als \"%(tagName)s\" zu markieren",
|
||||||
"Email address": "E-Mail-Adresse",
|
"Email address": "E-Mail-Adresse",
|
||||||
"Error decrypting attachment": "Fehler beim Entschlüsseln des Anhangs",
|
"Error decrypting attachment": "Fehler beim Entschlüsseln des Anhangs",
|
||||||
|
@ -745,7 +745,7 @@
|
||||||
"Confirm Removal": "Entfernen bestätigen",
|
"Confirm Removal": "Entfernen bestätigen",
|
||||||
"Unknown error": "Unbekannter Fehler",
|
"Unknown error": "Unbekannter Fehler",
|
||||||
"Incorrect password": "Inkorrektes Passwort",
|
"Incorrect password": "Inkorrektes Passwort",
|
||||||
"This action is irreversible.": "Diese Aktion ist irreversibel.",
|
"This action is irreversible.": "Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||||
"To continue, please enter your password.": "Zum fortfahren bitte Passwort eingeben.",
|
"To continue, please enter your password.": "Zum fortfahren bitte Passwort eingeben.",
|
||||||
"Device name": "Geräte-Name",
|
"Device name": "Geräte-Name",
|
||||||
"Device key": "Geräte-Schlüssel",
|
"Device key": "Geräte-Schlüssel",
|
||||||
|
@ -756,7 +756,7 @@
|
||||||
"Continue anyway": "Fahre trotzdem fort",
|
"Continue anyway": "Fahre trotzdem fort",
|
||||||
"Your display name is how you'll appear to others when you speak in rooms. What would you like it to be?": "Dein Anzeigename ist der Name, der anderen Nutzern angezeigt wird, wenn du in Räumen sprichst. Welchen Anzeigenamen möchtest du wählen?",
|
"Your display name is how you'll appear to others when you speak in rooms. What would you like it to be?": "Dein Anzeigename ist der Name, der anderen Nutzern angezeigt wird, wenn du in Räumen sprichst. Welchen Anzeigenamen möchtest du wählen?",
|
||||||
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Do blockst aktuell unverifizierte Geräte. Um Nachrichten an diese Geräte zu senden musst du sie verifizieren.",
|
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Do blockst aktuell unverifizierte Geräte. Um Nachrichten an diese Geräte zu senden musst du sie verifizieren.",
|
||||||
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" enthält Geräte die du noch nicht gesehen hast.",
|
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" enthält Geräte, die du bislang noch nicht gesehen hast.",
|
||||||
"Unknown devices": "Unbekannte Geräte",
|
"Unknown devices": "Unbekannte Geräte",
|
||||||
"Unknown Address": "Unbekannte Adresse",
|
"Unknown Address": "Unbekannte Adresse",
|
||||||
"Verify...": "Verifizieren...",
|
"Verify...": "Verifizieren...",
|
||||||
|
@ -787,16 +787,16 @@
|
||||||
"Error decrypting video": "Video-Entschlüsselung fehlgeschlagen",
|
"Error decrypting video": "Video-Entschlüsselung fehlgeschlagen",
|
||||||
"Import room keys": "Importiere Raum-Schlüssel",
|
"Import room keys": "Importiere Raum-Schlüssel",
|
||||||
"File to import": "Datei zum Importieren",
|
"File to import": "Datei zum Importieren",
|
||||||
"Failed to invite the following users to the %(roomName)s room:": "Einladen folgender Nutzer in den Raum \"%(roomName)s\" schlug fehl:",
|
"Failed to invite the following users to the %(roomName)s room:": "Das Einladen der folgenden Nutzer in den Raum \"%(roomName)s\" ist fehlgeschlagen:",
|
||||||
"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.": "Bist du sicher, dass du dieses Ereignis löschen willst? Wenn du einen Raum-Namen- oder Themen-Änderung löscht, kann dies die Änderung rückgängig machen.",
|
"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.": "Bist du sicher, dass du dieses Ereignis entfernen (löschen) möchtest? Wenn du die Änderung eines Raum-Namens oder eines Raum-Themas löscht, kann dies dazu führen, dass die ursprüngliche Änderung rückgängig gemacht wird.",
|
||||||
"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.": "Dieser Prozess erlaubt dir die Schlüssel für in verschlüsselten Räumen empfangene Nachrichten in eine lokale Datei zu exportieren. In Zukunft wirst du diese Datei in einen anderen Matrix-Client importieren können, sodass dieser Client ebenfalls diese Nachrichten entschlüsseln kann.",
|
"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.": "Dieser Prozess erlaubt es dir, die Schlüssel für in verschlüsselten Räumen empfangene Nachrichten in eine lokale Datei zu exportieren. In Zukunft wird es möglich sein, diese Datei in einen anderen Matrix-Client zu importieren, sodass dieser Client ebenfalls diese Nachrichten entschlüsseln kann.",
|
||||||
"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.": "Die exportierte Datei erlaubt jedem, der diese lesen kann, jede verschlüsselte Nachricht zu entschlüsseln die du sehen kannst. Du solltest sie also sicher verwahren. Um dabei zu helfen, solltest du unten eine Passphrase eingeben, die dazu verwendet wird, die exportierten Daten zu verschlüsseln. Anschließend ist es nur möglich die Daten zu lesen, wenn dieselbe Passphrase verwendet wird.",
|
"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.": "Die exportierte Datei erlaubt jedem, der diese lesen kann, jede verschlüsselte Nachricht zu entschlüsseln die du sehen kannst. Du solltest sie also sicher verwahren. Um dabei zu helfen, solltest du unten eine Passphrase eingeben, die dazu verwendet wird, die exportierten Daten zu verschlüsseln. Anschließend ist es nur möglich die Daten zu lesen, wenn dieselbe Passphrase verwendet wird.",
|
||||||
"Analytics": "Analyse",
|
"Analytics": "Anonymisierte Analysedaten",
|
||||||
"Opt out of analytics": "Zustimmung zur Analyse verweigern",
|
"Opt out of analytics": "Zustimmung zur Übermittlung von anonymisierten Analysedaten verweigern",
|
||||||
"Riot collects anonymous analytics to allow us to improve the application.": "Riot sammelt anonymisierte Analysedaten, um die Anwendung kontinuierlich verbessern zu können.",
|
"Riot collects anonymous analytics to allow us to improve the application.": "Riot sammelt anonymisierte Analysedaten, um die Anwendung kontinuierlich verbessern zu können.",
|
||||||
"Add an Integration": "Eine Integration hinzufügen",
|
"Add an Integration": "Eine Integration hinzufügen",
|
||||||
"Removed or unknown message type": "Gelöschte oder unbekannter Nachrichten-Typ",
|
"Removed or unknown message type": "Gelöschte oder unbekannter Nachrichten-Typ",
|
||||||
"Disable URL previews by default for participants in this room": "Deaktiviere standardmäßig die URL-Vorschau für Teilnehmer dieses Raumes",
|
"Disable URL previews by default for participants in this room": "URL-Vorschau für Teilnehmer dieses Raumes standardmäßig deaktivieren",
|
||||||
"URL previews are %(globalDisableUrlPreview)s by default for participants in this room.": "URL-Vorschau ist standardmäßig %(globalDisableUrlPreview)s für Teilnehmer dieses Raumes.",
|
"URL previews are %(globalDisableUrlPreview)s by default for participants in this room.": "URL-Vorschau ist standardmäßig %(globalDisableUrlPreview)s für Teilnehmer dieses Raumes.",
|
||||||
"URL Previews": "URL-Vorschau",
|
"URL Previews": "URL-Vorschau",
|
||||||
"Enable URL previews for this room (affects only you)": "Aktiviere die URL-Vorschau in diesem Raum (betrifft nur dich)",
|
"Enable URL previews for this room (affects only you)": "Aktiviere die URL-Vorschau in diesem Raum (betrifft nur dich)",
|
||||||
|
@ -805,7 +805,7 @@
|
||||||
" (unsupported)": " (nicht unterstützt)",
|
" (unsupported)": " (nicht unterstützt)",
|
||||||
"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.": "Diese Vorgehensweise erlaubt es dir, die zuvor von einem anderen Matrix-Client exportierten Verschlüsselungs-Schlüssel zu importieren. Danach kannst du alle Nachrichten entschlüsseln, die auch bereits auf dem anderen Client entschlüsselt werden konnten.",
|
"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.": "Diese Vorgehensweise erlaubt es dir, die zuvor von einem anderen Matrix-Client exportierten Verschlüsselungs-Schlüssel zu importieren. Danach kannst du alle Nachrichten entschlüsseln, die auch bereits auf dem anderen Client entschlüsselt werden konnten.",
|
||||||
"This will make your account permanently unusable. You will not be able to re-register the same user ID.": "Dies wird dein Konto permanent unbenutzbar machen. Du wirst dich nicht mit derselben Nutzer-ID erneut registrieren können.",
|
"This will make your account permanently unusable. You will not be able to re-register the same user ID.": "Dies wird dein Konto permanent unbenutzbar machen. Du wirst dich nicht mit derselben Nutzer-ID erneut registrieren können.",
|
||||||
"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:": "Um zu bestätigen, dass diesem Gerät vertraut werden kann, kontaktiere bitte den Eigentümer über einen anderen Weg (z.B. Telefon-Anruf) und frage, ob der Schlüssel, den sie in den Nutzer-Einstellungen für dieses Gerät sehen dem folgenden gleicht:",
|
"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:": "Um sicherzustellen, dass diesem Gerät vertraut werden kann, kontaktiere bitte den Eigentümer des Geräts über ein anderes Kommunikationsmittel (z.B. im persönlichen Gespräch oder durch einen Telefon-Anruf) und vergewissere dich, dass der Schlüssel, den der Eigentümer in den Nutzer-Einstellungen für dieses Gerät sieht, mit dem folgenden Schlüssel identisch ist:",
|
||||||
"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.": "Wenn er passt, betätige den Bestätigen-Button unten. Wenn nicht, fängt jemand anderes dieses Gerät ab und du möchtest wahrscheinlich lieber den Blacklist-Button betätigen.",
|
"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.": "Wenn er passt, betätige den Bestätigen-Button unten. Wenn nicht, fängt jemand anderes dieses Gerät ab und du möchtest wahrscheinlich lieber den Blacklist-Button betätigen.",
|
||||||
"We encountered an error trying to restore your previous session. If you continue, you will need to log in again, and encrypted chat history will be unreadable.": "Bei der Wiederherstellung deiner vorherigen Sitzung ist ein Fehler aufgetreten. Um fortzufahren, musst du dich erneut anmelden. Eine zuvor verschlüsselte Chat-Historie wird in der Folge nicht mehr lesbar sein.",
|
"We encountered an error trying to restore your previous session. If you continue, you will need to log in again, and encrypted chat history will be unreadable.": "Bei der Wiederherstellung deiner vorherigen Sitzung ist ein Fehler aufgetreten. Um fortzufahren, musst du dich erneut anmelden. Eine zuvor verschlüsselte Chat-Historie wird in der Folge nicht mehr lesbar sein.",
|
||||||
"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.": "Wenn du zuvor eine aktuellere Version von Riot verwendet hast, ist deine Sitzung eventuell inkompatibel mit dieser Version. Bitte schließe dieses Fenster und kehre zur aktuelleren Version zurück.",
|
"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.": "Wenn du zuvor eine aktuellere Version von Riot verwendet hast, ist deine Sitzung eventuell inkompatibel mit dieser Version. Bitte schließe dieses Fenster und kehre zur aktuelleren Version zurück.",
|
||||||
|
@ -818,10 +818,10 @@
|
||||||
"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.": "Wir empfehlen dir für jedes Gerät durch den Verifizierungsprozess zu gehen um zu bestätigen, dass sie ihrem legitimierten Besitzer gehören, aber du kannst die Nachrichten ohne Verifizierung erneut senden, wenn du es vorziehst.",
|
"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.": "Wir empfehlen dir für jedes Gerät durch den Verifizierungsprozess zu gehen um zu bestätigen, dass sie ihrem legitimierten Besitzer gehören, aber du kannst die Nachrichten ohne Verifizierung erneut senden, wenn du es vorziehst.",
|
||||||
"Ongoing conference call%(supportedText)s. %(joinText)s": "Laufendes Konferenzgespräch%(supportedText)s. %(joinText)s",
|
"Ongoing conference call%(supportedText)s. %(joinText)s": "Laufendes Konferenzgespräch%(supportedText)s. %(joinText)s",
|
||||||
"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 wirst jetzt auf die Website eines Drittanbieters weitergeleitet, damit du dein Konto für die Verwendung von %(integrationsUrl)s authentifizieren kannst. Möchtest du fortfahren?",
|
"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 wirst jetzt auf die Website eines Drittanbieters weitergeleitet, damit du dein Konto für die Verwendung von %(integrationsUrl)s authentifizieren kannst. Möchtest du fortfahren?",
|
||||||
"Disable URL previews for this room (affects only you)": "Deaktiviere die URL-Vorschau für diesen Raum (betrifft nur dich)",
|
"Disable URL previews for this room (affects only you)": "URL-Vorschau für diesen Raum deaktivieren (betrifft nur dich)",
|
||||||
"Start automatically after system login": "Starte automatisch nach System-Login",
|
"Start automatically after system login": "Starte automatisch nach System-Login",
|
||||||
"Desktop specific": "Desktopspezifisch",
|
"Desktop specific": "Desktopspezifisch",
|
||||||
"Jump to first unread message.": "Springe zur ersten ungelesenen Nachricht.",
|
"Jump to first unread message.": "Zur ersten ungelesenen Nachricht springen.",
|
||||||
"Options": "Optionen",
|
"Options": "Optionen",
|
||||||
"disabled": "deaktiviert",
|
"disabled": "deaktiviert",
|
||||||
"enabled": "aktiviert",
|
"enabled": "aktiviert",
|
||||||
|
@ -830,5 +830,63 @@
|
||||||
"for %(amount)ss": "für %(amount)ss",
|
"for %(amount)ss": "für %(amount)ss",
|
||||||
"for %(amount)sm": "für %(amount)sm",
|
"for %(amount)sm": "für %(amount)sm",
|
||||||
"for %(amount)sh": "für %(amount)sh",
|
"for %(amount)sh": "für %(amount)sh",
|
||||||
"for %(amount)sd": "für %(amount)sd"
|
"for %(amount)sd": "für %(amount)sd",
|
||||||
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s hat das Raum-Bild entfernt.",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"No Webcams detected": "Keine Webcam erkannt",
|
||||||
|
"Missing Media Permissions, click here to request.": "Fehlende Medienberechtigungen. Klicke hier um anzufragen.",
|
||||||
|
"No Microphones detected": "Keine Mikrofone erkannt",
|
||||||
|
"No media permissions": "Keine Medienberechtigungen",
|
||||||
|
"You may need to manually permit Riot to access your microphone/webcam": "Gegebenenfalls kann es notwendig sein, dass du Riot manuell den Zugriff auf dein Mikrofon bzw. deine Webcam gewähren musst",
|
||||||
|
"Default Device": "Standard-Gerät",
|
||||||
|
"Microphone": "Mikrofon",
|
||||||
|
"Camera": "Kamera",
|
||||||
|
"Conference call failed.": "Konferenzgespräch fehlgeschlagen.",
|
||||||
|
"Conference calling is in development and may not be reliable.": "Konferenzgespräche befinden sich noch in der Entwicklungsphase und sind möglicherweise nicht zuverlässig nutzbar.",
|
||||||
|
"Device already verified!": "Gerät bereits verifiziert!",
|
||||||
|
"Export": "Export",
|
||||||
|
"Failed to register as guest:": "Registrieren als Gast schlug fehl:",
|
||||||
|
"Guest access is disabled on this Home Server.": "Gastzugang ist auf diesem Heimserver deaktivert.",
|
||||||
|
"Guest users can't create new rooms. Please register to create room and start a chat.": "Gastnutzer können keine neuen Räume erstellen. Bitte registriere dich um Räume zu erstellen und Chats zu starten.",
|
||||||
|
"Import": "Import",
|
||||||
|
"Incorrect username and/or password.": "Inkorrekter Nutzername und/oder Passwort.",
|
||||||
|
"Results from DuckDuckGo": "Ergebnisse von DuckDuckGo",
|
||||||
|
"Server unavailable, overloaded, or something else went wrong.": "Server nicht verfügbar, überlastet oder etwas anderes lief falsch.",
|
||||||
|
"The signing key you provided matches the signing key you received from %(userId)s's device %(deviceId)s. Device marked as verified.": "Den Signaturschlüssel den du bereitstellst stimmt mit dem Schlüssel den du von %(userId)s's Gerät %(deviceId)s empfangen hast überein. Gerät als verifiziert markiert.",
|
||||||
|
"Add a topic": "Thema hinzufügen",
|
||||||
|
"Anyone": "Jeder",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Bist du sicher, dass du den Raum '%(roomName)s' verlassen willst?",
|
||||||
|
"Custom level": "Benutzerdefiniertes Berechtigungslevel",
|
||||||
|
"(default: %(userName)s)": "(Standard: %(userName)s)",
|
||||||
|
"Device ID:": "Geräte-ID:",
|
||||||
|
"device id: ": "Geräte-ID: ",
|
||||||
|
"Device key:": "Geräte-Schlüssel:",
|
||||||
|
"Email address (optional)": "E-Mail-Adresse (optional)",
|
||||||
|
"List this room in %(domain)s's room directory?": "Liste diesen Raum in %(domain)s's Raumverzeichnis?",
|
||||||
|
"Mobile phone number (optional)": "Handynummer (optional)",
|
||||||
|
"Password:": "Passwort:",
|
||||||
|
"Register": "Registrieren",
|
||||||
|
"Save": "Speichern",
|
||||||
|
"Setting a user name will create a fresh account": "Die Eingabe eines Benutzernamens wird ein neues Konto erzeugen",
|
||||||
|
"Tagged as: ": "Getaggt als: ",
|
||||||
|
"This Home Server does not support login using email address.": "Dieser Heimserver unterstützt den Login mittels E-Mail-Adresse nicht.",
|
||||||
|
"There was a problem logging in.": "Es gab ein Problem beim anmelden.",
|
||||||
|
"Unknown (user, device) pair:": "Unbekanntes (Nutzer-/Gerät-)Paar:",
|
||||||
|
"Remote addresses for this room:": "Entfernte Raum-Adressen für diesen Raum:",
|
||||||
|
"Unrecognised command:": "Unbekannter Befehl:",
|
||||||
|
"Unrecognised room alias:": "Unbekannter Raum-Alias:",
|
||||||
|
"Use compact timeline layout": "Nutze kompaktes Zeitstrahl-Layout",
|
||||||
|
"Verified key": "Verifizierter Schlüssel",
|
||||||
|
"WARNING: Device already verified, but keys do NOT MATCH!": "WARNUNG: Gerät bereits verifiziert, aber Schlüssel sind NICHT GLEICH!",
|
||||||
|
"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!": "WARNUNG: SCHLÜSSEL-VERIFIZIERUNG FEHLGESCHLAGEN! Der Signatur-Schlüssel für %(userId)s und Gerät %(deviceId)s ist \"%(fprint)s\" welche nicht dem bereitgestellten Schlüssel \"%(fingerprint)s\" übereinstimmen. Dies kann bedeuten, dass deine Kommunikation abgefangen wird!",
|
||||||
|
"You are already in a call.": "Du bist bereits in einem Gespräch.",
|
||||||
|
"You cannot place a call with yourself.": "Du kannst keinen Anruf mit dir selbst starten.",
|
||||||
|
"You cannot place VoIP calls in this browser.": "Du kannst keine VoIP-Gespräche in diesem Browser starten.",
|
||||||
|
"You have <a>disabled</a> URL previews by default.": "Du hast die URL-Vorschau standardmäßig <a>deaktiviert</a>.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "Du hast die URL-Vorschau standardmäßig <a>aktiviert</a>.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "Du hast einen ungültigen Kontakt eingegeben. Versuche es mit der Matrix-ID oder der E-Mail-Adresse.",
|
||||||
|
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Deine E-Mail-Adresse scheint nicht mit einer Matrix-ID auf diesem Heimserver verbunden zu sein.",
|
||||||
|
"$senderDisplayName changed the room avatar to <img/>": "$senderDisplayName hat das Raum-Bild geändert zu <img/>",
|
||||||
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s hat das Raum-Bild für %(roomName)s geändert",
|
||||||
|
"Hide removed messages": "Gelöschte Nachrichten verbergen"
|
||||||
}
|
}
|
||||||
|
|
386
src/i18n/strings/el.json
Normal file
386
src/i18n/strings/el.json
Normal file
|
@ -0,0 +1,386 @@
|
||||||
|
{
|
||||||
|
"af": "Αφρικάνικα",
|
||||||
|
"Error": "Σφάλμα",
|
||||||
|
"Failed to forget room %(errCode)s": "Δεν ήταν δυνατή η διαγραφή του δωματίου",
|
||||||
|
"Failed to join the room": "Δεν ήταν δυνατή η σύνδεση στο δωμάτιο",
|
||||||
|
"Mute": "Σίγαση",
|
||||||
|
"Notifications": "Ειδοποιήσεις",
|
||||||
|
"Operation failed": "Η λειτουργία απέτυχε",
|
||||||
|
"Please Register": "Παρακαλώ εγγραφείτε",
|
||||||
|
"Remove": "Αφαίρεσε",
|
||||||
|
"Search": "Αναζήτηση",
|
||||||
|
"Settings": "Ρυθμίσεις",
|
||||||
|
"unknown error code": "άγνωστος κωδικός σφάλματος",
|
||||||
|
"Sunday": "Κυριακή",
|
||||||
|
"ar-ae": "Αραβικά (Η.Α.Ε)",
|
||||||
|
"ar-bh": "Αραβικά (Μπαχρέιν)",
|
||||||
|
"ar-dz": "Αραβικά (Αλγερία)",
|
||||||
|
"ar-eg": "Αραβικά (Αίγυπτος)",
|
||||||
|
"ar-iq": "Αραβικά (Ιράκ)",
|
||||||
|
"ar-jo": "Αραβικά (Ιορδανία)",
|
||||||
|
"ar-kw": "Αραβικά (Κουβέιτ)",
|
||||||
|
"ar-lb": "Αραβικά (Λίβανος)",
|
||||||
|
"ar-ly": "Αραβικά (Λιβύη)",
|
||||||
|
"ar-ma": "Αραβικά (Μαρόκο)",
|
||||||
|
"ar-om": "Αραβικά (Ομάν)",
|
||||||
|
"ar-qa": "Αραβικά (Κατάρ)",
|
||||||
|
"ar-sa": "Αραβικά (Σαουδική Αραβία)",
|
||||||
|
"ar-sy": "Αραβικά (Συρία)",
|
||||||
|
"ar-tn": "Αραβικά (Τυνισία)",
|
||||||
|
"ar-ye": "Αραβικά (Υεμένη)",
|
||||||
|
"accept": "αποδοχή",
|
||||||
|
"%(targetName)s accepted an invitation.": "%(targetName)s δέχτηκε την πρόσκληση.",
|
||||||
|
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s δέχτηκες την πρόσκληση για %(displayName)s.",
|
||||||
|
"Account": "Λογαριασμός",
|
||||||
|
"Add a topic": "Πρόσθεσε μια περιγραφή",
|
||||||
|
"Add email address": "Πρόσθεσε ένα email",
|
||||||
|
"Add phone number": "Πρόσθεσε έναν αριθμό τηλεφώνου",
|
||||||
|
"Admin": "Διαχειριστής",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"No Microphones detected": "Δεν εντοπίστηκε μικρόφωνο",
|
||||||
|
"No Webcams detected": "Δεν εντοπίστηκε κάμερα",
|
||||||
|
"Default Device": "Προεπιλεγμένη Συσκευή",
|
||||||
|
"Microphone": "Μικρόφωνο",
|
||||||
|
"Camera": "Κάμερα",
|
||||||
|
"Advanced": "Προχωρημένα",
|
||||||
|
"Algorithm": "Αλγόριθμος",
|
||||||
|
"Hide removed messages": "Κρύψε διαγραμμένα μηνύματα",
|
||||||
|
"Authentication": "Πιστοποίηση",
|
||||||
|
"and": "και",
|
||||||
|
"An email has been sent to": "Ένα email στάλθηκε σε",
|
||||||
|
"A new password must be entered.": "Ο νέος κωδικός πρέπει να εισαχθεί",
|
||||||
|
"%(senderName)s answered the call.": "Ο χρήστης %(senderName)s απάντησε.",
|
||||||
|
"An error has occurred.": "Ένα σφάλμα προέκυψε",
|
||||||
|
"Anyone": "Oποιοσδήποτε",
|
||||||
|
"Are you sure?": "Είσαι σίγουρος;",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Είσαι σίγουρος οτι θές να φύγεις από το δωμάτιο '%(roomName)s';",
|
||||||
|
"Are you sure you want to reject the invitation?": "Είσαι σίγουρος οτι θες να απορρίψεις την πρόσκληση;",
|
||||||
|
"Are you sure you want to upload the following files?": "Είσαι σίγουρος οτι θές να ανεβάσεις τα ακόλουθα αρχεία;",
|
||||||
|
"Attachment": "Επισύναψη",
|
||||||
|
"%(senderName)s banned %(targetName)s.": "Ο χρήστης %(senderName)s έδιωξε τον χρήστη %(targetName)s.",
|
||||||
|
"Autoplay GIFs and videos": "Αυτόματη αναπαραγωγή GIFs και βίντεο",
|
||||||
|
"Bug Report": "Αναφορά Σφάλματος",
|
||||||
|
"anyone": "οποιοσδήποτε",
|
||||||
|
"Anyone who knows the room's link, apart from guests": "Oποιοσδήποτε",
|
||||||
|
"all room members, from the point they joined": "όλα τα μέλη του δωματίου, από τη στιγμή που συνδέθηκαν",
|
||||||
|
"%(items)s and %(lastItem)s": "%(items)s %(lastItem)s",
|
||||||
|
"be": "Λευκορώσικα",
|
||||||
|
"bg": "Βουλγάρικα",
|
||||||
|
"ca": "Καταλανικά",
|
||||||
|
"cs": "Τσέχικα",
|
||||||
|
"da": "Δανέζικα",
|
||||||
|
"de-at": "Γερμανικά (Αυστρία)",
|
||||||
|
"de-ch": "Γερμανικά (Ελβετία)",
|
||||||
|
"de": "Γερμανικά",
|
||||||
|
"de-li": "Γερμανικά (Λιχτενστάιν)",
|
||||||
|
"de-lu": "Γερμανικά (Λουξεμβούργο)",
|
||||||
|
"el": "Ελληνικά",
|
||||||
|
"en-au": "Αγγλικά (Αυστραλία)",
|
||||||
|
"en-bz": "Αγγλικά (Μπελίζε)",
|
||||||
|
"en-ca": "Αγγλικά (Καναδάς)",
|
||||||
|
"en": "Αγγλικά",
|
||||||
|
"en-gb": "Αγγλικά (Ηνωμένο Βασίλειο)",
|
||||||
|
"en-ie": "Αγγλικά (Ιρλανδία)",
|
||||||
|
"en-jm": "Αγγλικά (Τζαμάικα)",
|
||||||
|
"en-nz": "Αγγλικά (Νέα Ζηλανδία)",
|
||||||
|
"en-tt": "Αγγλικά (Τρινιντάντ)",
|
||||||
|
"en-us": "Αγγλικά (Ηνωμένες Πολιτείες)",
|
||||||
|
"en-za": "Αγγλικά (Νότια Αφρική)",
|
||||||
|
"es-ar": "Ισπανικά (Αργεντινή)",
|
||||||
|
"es-bo": "Ισπανικά (Βολιβία)",
|
||||||
|
"es-cl": "Ισπανικά (Χιλή)",
|
||||||
|
"es-co": "Ισπανικά (Κολομβία)",
|
||||||
|
"es-cr": "Ισπανικά (Κόστα Ρίκα)",
|
||||||
|
"es-do": "Ισπανικά (Δομινικανή Δημοκρατία)",
|
||||||
|
"es-ec": "Ισπανικά (Ισημερινός)",
|
||||||
|
"es-gt": "Ισπανικά (Γουατεμάλα)",
|
||||||
|
"es-hn": "Ισπανικά (Ονδούρα)",
|
||||||
|
"es-mx": "Ισπανικά (Μεξικό)",
|
||||||
|
"es-ni": "Ισπανικά (Νικαράγουα)",
|
||||||
|
"es-pa": "Ισπανικά (Παναμάς)",
|
||||||
|
"es-pe": "Ισπανικά (Περού)",
|
||||||
|
"es-pr": "Ισπανικά (Πουέρτο Ρίκο)",
|
||||||
|
"es-py": "Ισπανικά (Παραγουάη)",
|
||||||
|
"es": "Ισπανικά (Ισπανία)",
|
||||||
|
"es-sv": "Ισπανικά (Ελ Σαλβαδόρ)",
|
||||||
|
"es-uy": "Ισπανικά (Ουρουγουάη)",
|
||||||
|
"es-ve": "Ισπανικά (Βενεζουέλα)",
|
||||||
|
"et": "Εσθονικά",
|
||||||
|
"eu": "Βασκική (βασκική)",
|
||||||
|
"fa": "Φάρσι",
|
||||||
|
"fi": "Φινλανδικά",
|
||||||
|
"fo": "Φαρόε",
|
||||||
|
"fr-be": "Γαλλικά (Βέλγιο)",
|
||||||
|
"fr-ca": "Γαλλικά (Καναδάς)",
|
||||||
|
"fr-ch": "Γαλλικά (Ελβετία)",
|
||||||
|
"fr": "Γαλλικά",
|
||||||
|
"fr-lu": "Γαλλικά (Λουξεμβούργο)",
|
||||||
|
"ga": "Ιρλανδικά",
|
||||||
|
"gd": "Γαελική (Σκωτία)",
|
||||||
|
"he": "Εβραϊκά",
|
||||||
|
"hi": "Χίντι",
|
||||||
|
"hr": "Κροατικά",
|
||||||
|
"hu": "Ουγγρικά",
|
||||||
|
"is": "Ισλανδικά",
|
||||||
|
"it-ch": "Ιταλικά (Ελβετία)",
|
||||||
|
"it": "Ιταλικά",
|
||||||
|
"ja": "Ιαπωνικά",
|
||||||
|
"ji": "Γίντις",
|
||||||
|
"ko": "Κορεάτικα",
|
||||||
|
"lt": "Λιθουανικά",
|
||||||
|
"mk": "Μακεδονική (ΠΓΔΜ)",
|
||||||
|
"ms": "Μαλαισίας",
|
||||||
|
"mt": "Μαλτέζικα",
|
||||||
|
"nl-be": "Ολλανδικά (Βέλγιο)",
|
||||||
|
"nl": "Ολλανδικά",
|
||||||
|
"no": "Νορβηγικά",
|
||||||
|
"pl": "Πολωνέζικα",
|
||||||
|
"pt-br": "Πορτογαλικά Βραζιλίας",
|
||||||
|
"pt": "Πορτογαλικά",
|
||||||
|
"rm": "Ραιτορωμαϊκά",
|
||||||
|
"ro-mo": "Ρουμάνικα (Δημοκρατία της Μολδαβίας)",
|
||||||
|
"ro": "Ρουμάνικα",
|
||||||
|
"ru-mo": "Ρώσικα (Δημοκρατία της Μολδαβίας)",
|
||||||
|
"ru": "Ρώσικα",
|
||||||
|
"sb": "Σορβικά",
|
||||||
|
"sk": "Σλοβάκικα",
|
||||||
|
"sl": "Σλοβενικά",
|
||||||
|
"sq": "Αλβανικά",
|
||||||
|
"sr": "Σερβικά",
|
||||||
|
"sv-fi": "Σουηδικά (Φινλανδία)",
|
||||||
|
"sv": "Σουηδικά",
|
||||||
|
"sx": "Σούτου",
|
||||||
|
"sz": "Σάμη (Λαπωνικά)",
|
||||||
|
"th": "Ταϊλανδέζικα",
|
||||||
|
"tn": "Τσουάνα",
|
||||||
|
"tr": "Τουρκικά",
|
||||||
|
"ts": "Τσονγκά",
|
||||||
|
"uk": "Ουκρανικά",
|
||||||
|
"ur": "Ουρντού",
|
||||||
|
"ve": "Venda",
|
||||||
|
"vi": "Βιετναμέζικα",
|
||||||
|
"xh": "Xhosa",
|
||||||
|
"zh-cn": "Κινέζικα (ΛΔΚ)",
|
||||||
|
"zh-hk": "Κινέζικα (ΕΔΠ Χονγκ Κονγκ)",
|
||||||
|
"zh-sg": "Κινέζικα (Σιγκαπούρη)",
|
||||||
|
"zh-tw": "Κινέζικα (Ταϊβάν)",
|
||||||
|
"zu": "Ζουλού",
|
||||||
|
"id": "Ινδονησιακά",
|
||||||
|
"lv": "Λετονικά",
|
||||||
|
"A registered account is required for this action": "Ένας εγγεγραμμένος λογαριασμός απαιτείται για αυτή την ενέργεια",
|
||||||
|
"A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "Ένα μήνυμα στάλθηκε στο +%(msisdn)s. Παρακαλώ γράψε τον κωδικό επαλήθευσης που περιέχει",
|
||||||
|
"Access Token:": "Κωδικός Πρόσβασης:",
|
||||||
|
"Always show message timestamps": "Δείχνε πάντα ένδειξη ώρας στα μηνύματα",
|
||||||
|
"all room members": "όλα τα μέλη του δωματίου",
|
||||||
|
"all room members, from the point they are invited": "όλα τα μέλη του δωματίου, από τη στιγμή που προσκλήθηκαν",
|
||||||
|
"an address": "μία διεύθηνση",
|
||||||
|
"%(items)s and %(remaining)s others": "%(items)s και %(remaining)s ακόμα",
|
||||||
|
"%(items)s and one other": "%(items)s και ένας ακόμα",
|
||||||
|
"and %(overflowCount)s others...": "και %(overflowCount)s άλλοι...",
|
||||||
|
"and one other...": "και ένας ακόμα...",
|
||||||
|
"%(names)s and %(lastPerson)s are typing": "%(names)s και %(lastPerson)s γράφουν",
|
||||||
|
"%(names)s and one other are typing": "%(names)s και ένας ακόμα γράφουν",
|
||||||
|
"%(names)s and %(count)s others are typing": "%(names)s και %(count)s άλλοι γράφουν",
|
||||||
|
"Anyone who knows the room's link, including guests": "Οποιοσδήποτε γνωρίζει τον σύνδεδμο του δωματίου, συμπεριλαμβάνωντας τους επισκέπτες",
|
||||||
|
"Blacklisted": "Στη μαύρη λίστα",
|
||||||
|
"Can't load user settings": "Δεν είναι δυνατή η φόρτωση των ρυθμίσεων χρήστη",
|
||||||
|
"Change Password": "Αλλαγή Κωδικού",
|
||||||
|
"%(senderName)s changed their display name from %(oldDisplayName)s to %(displayName)s.": "ο χρήστης %(senderName)s άλλαξε το όνομά του από %(oldDisplayName)s σε %(displayName)s.",
|
||||||
|
"%(senderName)s changed their profile picture.": "ο χρήστης %(senderName)s άλλαξε τη φωτογραφία του προφίλ του.",
|
||||||
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "Ο χρήστης %(senderDisplayName)s άλλαξε το όνομα του δωματίου σε %(roomName)s.",
|
||||||
|
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "Ο χρήστης %(senderDisplayName)s άλλαξε το θέμα σε \"%(topic)s\".",
|
||||||
|
"Clear Cache and Reload": "Καθάρισε την μνήμη και Ανανέωσε",
|
||||||
|
"Clear Cache": "Καθάρισε την μνήμη",
|
||||||
|
"Bans user with given id": "Διώχνει τον χρήστη με το συγκεκριμένο id",
|
||||||
|
"%(senderDisplayName)s removed the room name.": "Ο χρήστης %(senderDisplayName)s διέγραψε το όνομα του δωματίου.",
|
||||||
|
"Changes your display nickname": "Αλλάζει το όνομα χρήστη",
|
||||||
|
"Click here": "Κάνε κλικ εδώ",
|
||||||
|
"Drop here %(toAction)s": "Σύρε εδώ %(toAction)s",
|
||||||
|
"Conference call failed.": "Η κλήση συνδιάσκεψης απέτυχε.",
|
||||||
|
"powered by Matrix": "βασισμένο στο πρωτόκολλο Matrix",
|
||||||
|
"Confirm password": "Επιβεβαίωση κωδικού",
|
||||||
|
"Confirm your new password": "Επιβεβαίωση του νέου κωδικού",
|
||||||
|
"Continue": "Συνέχεια",
|
||||||
|
"Create an account": "Δημιουργία λογαριασμού",
|
||||||
|
"Create Room": "Δημιουργία Δωματίου",
|
||||||
|
"Cryptography": "Κρυπτογραφία",
|
||||||
|
"Current password": "Τωρινός κωδικός",
|
||||||
|
"Curve25519 identity key": "Κλειδί ταυτότητας Curve25519",
|
||||||
|
"Custom level": "Προσαρμοσμένο επίπεδο",
|
||||||
|
"/ddg is not a command": "/ddg δεν αναγνωρίζεται ως εντολή",
|
||||||
|
"Deactivate Account": "Απενεργοποίηση Λογαριασμού",
|
||||||
|
"Deactivate my account": "Απενεργοποίηση του λογαριασμού μου",
|
||||||
|
"decline": "απόρριψη",
|
||||||
|
"Decrypt %(text)s": "Αποκρυπτογράφησε %(text)s",
|
||||||
|
"Decryption error": "Σφάλμα αποκρυπτογράφησης",
|
||||||
|
"(default: %(userName)s)": "(προεπιλογή: %(userName)s)",
|
||||||
|
"Delete": "Διαγραφή",
|
||||||
|
"Default": "Προεπιλογή",
|
||||||
|
"Device already verified!": "Η συσκευή έχει ήδη επαληθευτεί!",
|
||||||
|
"Device ID": "ID Συσκευής",
|
||||||
|
"Device ID:": "ID Συσκευής:",
|
||||||
|
"device id: ": "id συσκευής: ",
|
||||||
|
"Device key:": "Κλειδί Συσκευής:",
|
||||||
|
"Devices": "Συσκευές",
|
||||||
|
"Direct Chat": "Απευθείας Συνομιλία",
|
||||||
|
"Direct chats": "Απευθείας συνομιλίες",
|
||||||
|
"disabled": "ανενεργό",
|
||||||
|
"Disinvite": "Ανακάλεσε πρόσκληση",
|
||||||
|
"Display name": "Όνομα χρήστη",
|
||||||
|
"Download %(text)s": "Κατέβασε %(text)s",
|
||||||
|
"Ed25519 fingerprint": "Αποτύπωμα Ed25519",
|
||||||
|
"Email": "Ηλ. Αλληλογραφία",
|
||||||
|
"Email address": "Διεύθυνση email",
|
||||||
|
"Email address (optional)": "Διεύθυνση email (προαιρετικό)",
|
||||||
|
"Email, name or matrix ID": "Email, όνομα ή matrix ID",
|
||||||
|
"Emoji": "Εικονίδια",
|
||||||
|
"enabled": "ενεργό",
|
||||||
|
"Encrypted messages will not be visible on clients that do not yet implement encryption": "Τα κρυπτογραφημένα μηνύματα δεν θα είναι ορατά σε εφαρμογές που δεν παρέχουν τη δυνατότητα κρυπτογράφησης",
|
||||||
|
"Encrypted room": "Κρυπτογραφημένο δωμάτιο",
|
||||||
|
"%(senderName)s ended the call.": "%(senderName)s τερμάτισε την κλήση.",
|
||||||
|
"End-to-end encryption information": "Πληροφορίες σχετικά με τη κρυπτογράφηση από άκρο σε άκρο (End-to-end encryption)",
|
||||||
|
"Error decrypting attachment": "Σφάλμα κατά την αποκρυπτογράφηση της επισύναψης",
|
||||||
|
"Event information": "Πληροφορίες μηνύματος",
|
||||||
|
"Existing Call": "Υπάρχουσα Κλήση",
|
||||||
|
"Export": "Εξαγωγή",
|
||||||
|
"Export E2E room keys": "Εξαγωγή κλειδιών κρυπτογραφίας για το δωμάτιο",
|
||||||
|
"Failed to change password. Is your password correct?": "Δεν ήταν δυνατή η αλλαγή του κωδικού. Είναι ο κωδικός σωστός;",
|
||||||
|
"Failed to delete device": "Δεν ήταν δυνατή η διαγραφή της συσκευής",
|
||||||
|
"Failed to join room": "Δεν ήταν δυνατή η σύνδεση στο δωμάτιο",
|
||||||
|
"Failed to leave room": "Δεν ήταν δυνατή η αποχώρηση από το δωμάτιο",
|
||||||
|
"Failed to mute user": "Δεν ήταν δυνατή η σίγαση του χρήστη",
|
||||||
|
"Failed to register as guest:": "Δεν ήταν δυνατή η εγγραφή ως επισκέπτης:",
|
||||||
|
"Failed to reject invite": "Δεν ήταν δυνατή η απόρριψη της πρόσκλησης",
|
||||||
|
"Failed to reject invitation": "Δεν ήταν δυνατή η απόρριψη της πρόσκλησης",
|
||||||
|
"Failed to save settings": "Δεν ήταν δυνατή η αποθήκευση των ρυθμίσεων",
|
||||||
|
"Failed to send email": "Δεν ήταν δυνατή η απστολή email",
|
||||||
|
"Failed to verify email address: make sure you clicked the link in the email": "Δεν ήταν δυνατή η επαλήθευση του email: βεβαιωθείτε οτι κάνατε κλικ στον σύνδεσμο που σας στάλθηκε",
|
||||||
|
"Favourite": "Αγαπημένο",
|
||||||
|
"favourite": "αγαπημένο",
|
||||||
|
"Favourites": "Αγαπημένα",
|
||||||
|
"Fill screen": "Γέμισε την οθόνη",
|
||||||
|
"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.": "Για λόγους ασφαλείας, τα κλειδιά κρυπτογράφησης θα διαγράφονται από τον φυλλομετρητή κατά την αποσύνδεση σας. Εάν επιθυμείτε να αποκρυπτογραφήσετε τις συνομιλίες σας στο μέλλον, εξάγετε τα κλειδιά σας και κρατήστε τα ασφαλή.",
|
||||||
|
"Found a bug?": "Βρήκατε κάποιο πρόβλημα;",
|
||||||
|
"Guest users can't upload files. Please register to upload": "Οι επισκέπτες δεν μπορούν να ανεβάσουν αρχεία. Παρακαλώ εγγραφείτε πρώτα",
|
||||||
|
"had": "είχε",
|
||||||
|
"Hangup": "Κλείσε",
|
||||||
|
"Historical": "Ιστορικό",
|
||||||
|
"Homeserver is": "Ο διακομιστής είναι",
|
||||||
|
"Identity Server is": "Διακομιστής Ταυτοποίησης",
|
||||||
|
"I have verified my email address": "Έχω επαληθεύσει το email μου",
|
||||||
|
"Import": "Εισαγωγή",
|
||||||
|
"Import E2E room keys": "Εισαγωγή κλειδιών κρυπτογράφησης",
|
||||||
|
"Incorrect username and/or password.": "Λανθασμένο όνομα χρήστη και/ή κωδικός.",
|
||||||
|
"Incorrect verification code": "Λανθασμένος κωδικός επαλήθευσης",
|
||||||
|
"Interface Language": "Γλώσσα Διεπαφής",
|
||||||
|
"Invalid Email Address": "Μη έγκυρο email",
|
||||||
|
"Invite new room members": "Προσκάλεσε νέα μέλη",
|
||||||
|
"Invited": "Προσκλήθηκε",
|
||||||
|
"Invites": "Προσκλήσεις",
|
||||||
|
"is a": "είναι ένα",
|
||||||
|
"%(displayName)s is typing": "ο χρήστης %(displayName)s γράφει",
|
||||||
|
"Sign in with": "Συνδέσου με",
|
||||||
|
"joined and left": "μπήκε και βγήκε",
|
||||||
|
"joined": "μπήκε",
|
||||||
|
"%(targetName)s joined the room.": "ο χρήστης %(targetName)s συνδέθηκε στο δωμάτιο.",
|
||||||
|
"Jump to first unread message.": "Πήγαινε στο πρώτο μη αναγνωσμένο μήνυμα.",
|
||||||
|
"%(senderName)s kicked %(targetName)s.": "Ο χρήστης %(senderName)s έδιωξε τον χρήστη %(targetName)s.",
|
||||||
|
"Kick": "Διώξε",
|
||||||
|
"Kicks user with given id": "Διώχνει χρήστες με το συγκεκριμένο id",
|
||||||
|
"Labs": "Πειραματικά",
|
||||||
|
"Leave room": "Φύγε από το δωμάτιο",
|
||||||
|
"left and rejoined": "έφυγε και ξανασυνδέθηκε",
|
||||||
|
"left": "έφυγε",
|
||||||
|
"%(targetName)s left the room.": "Ο χρήστης %(targetName)s έφυγε από το δωμάτιο.",
|
||||||
|
"Level": "Επίπεδο",
|
||||||
|
"List this room in %(domain)s's room directory?": "Να εμφανίζεται το δωμάτιο στο γενικό ευρετήριο του διακομιστή %(domain)s;",
|
||||||
|
"Local addresses for this room:": "Τοπική διεύθυνση για το δωμάτιο:",
|
||||||
|
"Logged in as:": "Συνδέθηκες ως:",
|
||||||
|
"Login as guest": "Συνδέσου ως επισκέπτης",
|
||||||
|
"Logout": "Αποσύνδεση",
|
||||||
|
"Low priority": "Χαμηλής προτεραιότητας",
|
||||||
|
"matrix-react-sdk version:": "έκδοση matrix-react-sdk:",
|
||||||
|
"Members only": "Μέλη μόνο",
|
||||||
|
"Message not sent due to unknown devices being present": "Το μήνυμα δεν στάλθηκε γιατί υπάρχουν άγνωστες συσκευές",
|
||||||
|
"Mobile phone number": "Αριθμός κινητού τηλεφώνου",
|
||||||
|
"Click here to fix": "Κάνε κλικ εδώ για διόρθωση",
|
||||||
|
"Command error": "Σφάλμα εντολής",
|
||||||
|
"Commands": "Εντολές",
|
||||||
|
"Conference calls are not supported in encrypted rooms": "Οι κλήσεις συνδιάσκεψης δεν είναι υποστηρίζονται σε κρυπτογραφημένα δωμάτια",
|
||||||
|
"Conference calls are not supported in this client": "Οι κλήσεις συνδιάσκεψης δεν είναι υποστηρίζονται από την εφαρμογή",
|
||||||
|
"Enable encryption": "Ενεργοποίηση κρυπτογραφίας",
|
||||||
|
"Enter Code": "Κωδικός",
|
||||||
|
"Failed to send request.": "Δεν ήταν δυνατή η αποστολή αιτήματος.",
|
||||||
|
"Failed to upload file": "Δεν ήταν δυνατό το ανέβασμα αρχείου",
|
||||||
|
"Failure to create room": "Δεν ήταν δυνατή η δημιουργία δωματίου",
|
||||||
|
"Join Room": "Συνδέσου",
|
||||||
|
"Moderator": "Συντονιστής",
|
||||||
|
"my Matrix ID": "το Matrix ID μου",
|
||||||
|
"Name": "Όνομα",
|
||||||
|
"New address (e.g. #foo:%(localDomain)s)": "Νέα διεύθυνση (e.g. #όνομα:%(localDomain)s)",
|
||||||
|
"New password": "Νέος κωδικός",
|
||||||
|
"New passwords don't match": "Οι νέοι κωδικοί είναι διαφορετικοί",
|
||||||
|
"New passwords must match each other.": "Οι νέοι κωδικόι πρέπει να ταιριάζουν.",
|
||||||
|
"none": "κανένα",
|
||||||
|
"(not supported by this browser)": "(δεν υποστηρίζεται από τον browser)",
|
||||||
|
"<not supported>": "<δεν υποστηρίζεται>",
|
||||||
|
"No more results": "Δεν υπάρχουν άλλα αποτελέσματα",
|
||||||
|
"No results": "Κανένα αποτέλεσμα",
|
||||||
|
"OK": "ΟΚ",
|
||||||
|
"olm version:": "έκδοση olm:",
|
||||||
|
"Password": "Κωδικός",
|
||||||
|
"Password:": "Κωδικός:",
|
||||||
|
"Passwords can't be empty": "",
|
||||||
|
"People": "Άτομα",
|
||||||
|
"Phone": "Τηλέφωνο",
|
||||||
|
"Register": "Εγγραφή",
|
||||||
|
"riot-web version:": "έκδοση riot-web:",
|
||||||
|
"Room Colour": "Χρώμα Δωματίου",
|
||||||
|
"Room name (optional)": "Όνομα Δωματίου (προαιρετικό)",
|
||||||
|
"Rooms": "Δωμάτια",
|
||||||
|
"Save": "Αποθήκευση",
|
||||||
|
"Search failed": "Η αναζήτηση απέτυχε",
|
||||||
|
"Send an encrypted message": "Στείλε ένα κρυπτογραφημένο μήνυμα",
|
||||||
|
"Send a message (unencrypted)": "Στείλε ένα μήνυμα (απλό)",
|
||||||
|
"sent an image": "έστειλε μια εικόνα",
|
||||||
|
"sent a video": "έστειλε ένα βίντεο",
|
||||||
|
"Server error": "Σφάλμα διακομιστή",
|
||||||
|
"Signed Out": "Αποσυνδέθηκες",
|
||||||
|
"Sign in": "Συνδέση",
|
||||||
|
"Sign out": "Αποσύνδεση",
|
||||||
|
"since they joined": "από τη στιγμή που συνδέθηκαν",
|
||||||
|
"since they were invited": "από τη στιγμή που προσκλήθηκαν",
|
||||||
|
"Someone": "Κάποιος",
|
||||||
|
"Start a chat": "Ξεκίνα μια συνομιλία",
|
||||||
|
"This email address is already in use": "Το email χρησιμοποιείται",
|
||||||
|
"This email address was not found": "Η διεύθηνση email δεν βρέθηκε",
|
||||||
|
"Success": "Επιτυχία",
|
||||||
|
"Start Chat": "Συνομιλία",
|
||||||
|
"Cancel": "Ακύρωση",
|
||||||
|
"cancel all": "ακύρωση όλων",
|
||||||
|
"or": "ή",
|
||||||
|
"Custom Server Options": "Προσαρμοσμένες ρυθμίσεις διακομιστή",
|
||||||
|
"Dismiss": "Αγνόησε",
|
||||||
|
"Monday": "Δευτέρα",
|
||||||
|
"Tuesday": "Τρίτη",
|
||||||
|
"Wednesday": "Τετάρτη",
|
||||||
|
"Thursday": "Πέμπτη",
|
||||||
|
"Friday": "Παρασκευή",
|
||||||
|
"Saturday": "Σάββατο",
|
||||||
|
"bold": "έντονα",
|
||||||
|
"italic": "πλάγια",
|
||||||
|
"underline": "υπογράμμιση",
|
||||||
|
"code": "κώδικας",
|
||||||
|
"quote": "αναφορά",
|
||||||
|
"%(oneUser)sleft %(repeats)s times": "%(oneUser)s έφυγε %(repeats)s φορές",
|
||||||
|
"%(severalUsers)sleft": "%(severalUsers)s έφυγαν",
|
||||||
|
"%(oneUser)sleft": "%(oneUser)s έφυγε",
|
||||||
|
"%(severalUsers)sjoined and left %(repeats)s times": "%(severalUsers)s συνδέθηκαν και έφυγαν %(repeats)s φορές",
|
||||||
|
"%(oneUser)sjoined and left %(repeats)s times": "%(oneUser)s συνδέθηκε και έφυγε %(repeats)s φορές",
|
||||||
|
"%(severalUsers)sjoined and left": "%(severalUsers)s συνδέθηκαν και έφυγαν",
|
||||||
|
"%(oneUser)sjoined and left": "%(oneUser)s συνδέθηκε και έφυγε"
|
||||||
|
}
|
|
@ -126,6 +126,7 @@
|
||||||
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s accepted the invitation for %(displayName)s.",
|
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s accepted the invitation for %(displayName)s.",
|
||||||
"Account": "Account",
|
"Account": "Account",
|
||||||
"Access Token:": "Access Token:",
|
"Access Token:": "Access Token:",
|
||||||
|
"Add a topic": "Add a topic",
|
||||||
"Add email address": "Add email address",
|
"Add email address": "Add email address",
|
||||||
"Add phone number": "Add phone number",
|
"Add phone number": "Add phone number",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
@ -140,6 +141,7 @@
|
||||||
"Camera": "Camera",
|
"Camera": "Camera",
|
||||||
"Advanced": "Advanced",
|
"Advanced": "Advanced",
|
||||||
"Algorithm": "Algorithm",
|
"Algorithm": "Algorithm",
|
||||||
|
"Hide removed messages": "Hide removed messages",
|
||||||
"Always show message timestamps": "Always show message timestamps",
|
"Always show message timestamps": "Always show message timestamps",
|
||||||
"Authentication": "Authentication",
|
"Authentication": "Authentication",
|
||||||
"all room members": "all room members",
|
"all room members": "all room members",
|
||||||
|
@ -160,9 +162,11 @@
|
||||||
"%(senderName)s answered the call.": "%(senderName)s answered the call.",
|
"%(senderName)s answered the call.": "%(senderName)s answered the call.",
|
||||||
"anyone": "anyone",
|
"anyone": "anyone",
|
||||||
"An error has occurred.": "An error has occurred.",
|
"An error has occurred.": "An error has occurred.",
|
||||||
|
"Anyone": "Anyone",
|
||||||
"Anyone who knows the room's link, apart from guests": "Anyone who knows the room's link, apart from guests",
|
"Anyone who knows the room's link, apart from guests": "Anyone who knows the room's link, apart from guests",
|
||||||
"Anyone who knows the room's link, including guests": "Anyone who knows the room's link, including guests",
|
"Anyone who knows the room's link, including guests": "Anyone who knows the room's link, including guests",
|
||||||
"Are you sure?": "Are you sure?",
|
"Are you sure?": "Are you sure?",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Are you sure you want to leave the room '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
|
"Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
|
||||||
"Are you sure you want to upload the following files?": "Are you sure you want to upload the following files?",
|
"Are you sure you want to upload the following files?": "Are you sure you want to upload the following files?",
|
||||||
"Attachment": "Attachment",
|
"Attachment": "Attachment",
|
||||||
|
@ -214,18 +218,23 @@
|
||||||
"Cryptography": "Cryptography",
|
"Cryptography": "Cryptography",
|
||||||
"Current password": "Current password",
|
"Current password": "Current password",
|
||||||
"Curve25519 identity key": "Curve25519 identity key",
|
"Curve25519 identity key": "Curve25519 identity key",
|
||||||
|
"Custom level": "Custom level",
|
||||||
"/ddg is not a command": "/ddg is not a command",
|
"/ddg is not a command": "/ddg is not a command",
|
||||||
"Deactivate Account": "Deactivate Account",
|
"Deactivate Account": "Deactivate Account",
|
||||||
"Deactivate my account": "Deactivate my account",
|
"Deactivate my account": "Deactivate my account",
|
||||||
"decline": "decline",
|
"decline": "decline",
|
||||||
"Decrypt %(text)s": "Decrypt %(text)s",
|
"Decrypt %(text)s": "Decrypt %(text)s",
|
||||||
"Decryption error": "Decryption error",
|
"Decryption error": "Decryption error",
|
||||||
|
"(default: %(userName)s)": "(default: %(userName)s)",
|
||||||
"Delete": "Delete",
|
"Delete": "Delete",
|
||||||
"demote": "demote",
|
"demote": "demote",
|
||||||
"Deops user with given id": "Deops user with given id",
|
"Deops user with given id": "Deops user with given id",
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Device already verified!": "Device already verified!",
|
"Device already verified!": "Device already verified!",
|
||||||
"Device ID": "Device ID",
|
"Device ID": "Device ID",
|
||||||
|
"Device ID:": "Device ID:",
|
||||||
|
"device id: ": "device id: ",
|
||||||
|
"Device key:": "Device key:",
|
||||||
"Devices": "Devices",
|
"Devices": "Devices",
|
||||||
"Devices will not yet be able to decrypt history from before they joined the room": "Devices will not yet be able to decrypt history from before they joined the room",
|
"Devices will not yet be able to decrypt history from before they joined the room": "Devices will not yet be able to decrypt history from before they joined the room",
|
||||||
"Direct Chat": "Direct Chat",
|
"Direct Chat": "Direct Chat",
|
||||||
|
@ -242,6 +251,7 @@
|
||||||
"Ed25519 fingerprint": "Ed25519 fingerprint",
|
"Ed25519 fingerprint": "Ed25519 fingerprint",
|
||||||
"Email": "Email",
|
"Email": "Email",
|
||||||
"Email address": "Email address",
|
"Email address": "Email address",
|
||||||
|
"Email address (optional)": "Email address (optional)",
|
||||||
"Email, name or matrix ID": "Email, name or matrix ID",
|
"Email, name or matrix ID": "Email, name or matrix ID",
|
||||||
"Emoji": "Emoji",
|
"Emoji": "Emoji",
|
||||||
"Enable encryption": "Enable encryption",
|
"Enable encryption": "Enable encryption",
|
||||||
|
@ -343,6 +353,7 @@
|
||||||
"left": "left",
|
"left": "left",
|
||||||
"%(targetName)s left the room.": "%(targetName)s left the room.",
|
"%(targetName)s left the room.": "%(targetName)s left the room.",
|
||||||
"Level": "Level",
|
"Level": "Level",
|
||||||
|
"List this room in %(domain)s's room directory?": "List this room in %(domain)s's room directory?",
|
||||||
"Local addresses for this room:": "Local addresses for this room:",
|
"Local addresses for this room:": "Local addresses for this room:",
|
||||||
"Logged in as:": "Logged in as:",
|
"Logged in as:": "Logged in as:",
|
||||||
"Login as guest": "Login as guest",
|
"Login as guest": "Login as guest",
|
||||||
|
@ -358,6 +369,7 @@
|
||||||
"Missing room_id in request": "Missing room_id in request",
|
"Missing room_id in request": "Missing room_id in request",
|
||||||
"Missing user_id in request": "Missing user_id in request",
|
"Missing user_id in request": "Missing user_id in request",
|
||||||
"Mobile phone number": "Mobile phone number",
|
"Mobile phone number": "Mobile phone number",
|
||||||
|
"Mobile phone number (optional)": "Mobile phone number (optional)",
|
||||||
"Moderator": "Moderator",
|
"Moderator": "Moderator",
|
||||||
"Must be viewing a room": "Must be viewing a room",
|
"Must be viewing a room": "Must be viewing a room",
|
||||||
"Mute": "Mute",
|
"Mute": "Mute",
|
||||||
|
@ -389,6 +401,7 @@
|
||||||
"Only people who have been invited": "Only people who have been invited",
|
"Only people who have been invited": "Only people who have been invited",
|
||||||
"Operation failed": "Operation failed",
|
"Operation failed": "Operation failed",
|
||||||
"Password": "Password",
|
"Password": "Password",
|
||||||
|
"Password:": "Password:",
|
||||||
"Passwords can't be empty": "Passwords can't be empty",
|
"Passwords can't be empty": "Passwords can't be empty",
|
||||||
"People": "People",
|
"People": "People",
|
||||||
"Permissions": "Permissions",
|
"Permissions": "Permissions",
|
||||||
|
@ -404,10 +417,12 @@
|
||||||
"Reason": "Reason",
|
"Reason": "Reason",
|
||||||
"Revoke Moderator": "Revoke Moderator",
|
"Revoke Moderator": "Revoke Moderator",
|
||||||
"Refer a friend to Riot:": "Refer a friend to Riot:",
|
"Refer a friend to Riot:": "Refer a friend to Riot:",
|
||||||
|
"Register": "Register",
|
||||||
"Registration required": "Registration required",
|
"Registration required": "Registration required",
|
||||||
"rejected": "rejected",
|
"rejected": "rejected",
|
||||||
"%(targetName)s rejected the invitation.": "%(targetName)s rejected the invitation.",
|
"%(targetName)s rejected the invitation.": "%(targetName)s rejected the invitation.",
|
||||||
"Reject invitation": "Reject invitation",
|
"Reject invitation": "Reject invitation",
|
||||||
|
"Remote addresses for this room:": "Remote addresses for this room:",
|
||||||
"Remove Contact Information?": "Remove Contact Information?",
|
"Remove Contact Information?": "Remove Contact Information?",
|
||||||
"%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s removed their display name (%(oldDisplayName)s).",
|
"%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s removed their display name (%(oldDisplayName)s).",
|
||||||
"%(senderName)s removed their profile picture.": "%(senderName)s removed their profile picture.",
|
"%(senderName)s removed their profile picture.": "%(senderName)s removed their profile picture.",
|
||||||
|
@ -427,6 +442,7 @@
|
||||||
"Room Colour": "Room Colour",
|
"Room Colour": "Room Colour",
|
||||||
"Room name (optional)": "Room name (optional)",
|
"Room name (optional)": "Room name (optional)",
|
||||||
"Rooms": "Rooms",
|
"Rooms": "Rooms",
|
||||||
|
"Save": "Save",
|
||||||
"Scroll to bottom of page": "Scroll to bottom of page",
|
"Scroll to bottom of page": "Scroll to bottom of page",
|
||||||
"Scroll to unread messages": "Scroll to unread messages",
|
"Scroll to unread messages": "Scroll to unread messages",
|
||||||
"Search": "Search",
|
"Search": "Search",
|
||||||
|
@ -450,6 +466,7 @@
|
||||||
"Session ID": "Session ID",
|
"Session ID": "Session ID",
|
||||||
"%(senderName)s set a profile picture.": "%(senderName)s set a profile picture.",
|
"%(senderName)s set a profile picture.": "%(senderName)s set a profile picture.",
|
||||||
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s set their display name to %(displayName)s.",
|
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s set their display name to %(displayName)s.",
|
||||||
|
"Setting a user name will create a fresh account": "Setting a user name will create a fresh account",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"Show panel": "Show panel",
|
"Show panel": "Show panel",
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Show timestamps in 12 hour format (e.g. 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Show timestamps in 12 hour format (e.g. 2:30pm)",
|
||||||
|
@ -468,6 +485,7 @@
|
||||||
"Success": "Success",
|
"Success": "Success",
|
||||||
"tag as %(tagName)s": "tag as %(tagName)s",
|
"tag as %(tagName)s": "tag as %(tagName)s",
|
||||||
"tag direct chat": "tag direct chat",
|
"tag direct chat": "tag direct chat",
|
||||||
|
"Tagged as: ": "Tagged as: ",
|
||||||
"The default role for new room members is": "The default role for new room members is",
|
"The default role for new room members is": "The default role for new room members is",
|
||||||
"The main address for this room is": "The main address for this room is",
|
"The main address for this room is": "The main address for this room is",
|
||||||
"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.",
|
"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.",
|
||||||
|
@ -577,6 +595,9 @@
|
||||||
"You do not have permission to post to this room": "You do not have permission to post to this room",
|
"You do not have permission to post to this room": "You do not have permission to post to this room",
|
||||||
"You have been invited to join this room by %(inviterName)s": "You have been invited to join this room by %(inviterName)s",
|
"You have been invited to join this room by %(inviterName)s": "You have been invited to join this room by %(inviterName)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 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 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 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 <a>disabled</a> URL previews by default.": "You have <a>disabled</a> URL previews by default.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "You have <a>enabled</a> URL previews by default.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "You have entered an invalid contact. Try using their Matrix ID or email address.",
|
||||||
"You have no visible notifications": "You have no visible notifications",
|
"You have no visible notifications": "You have no visible notifications",
|
||||||
"you must be a": "you must be a",
|
"you must be a": "you must be a",
|
||||||
"You need to be able to invite users to do that.": "You need to be able to invite users to do that.",
|
"You need to be able to invite users to do that.": "You need to be able to invite users to do that.",
|
||||||
|
@ -725,7 +746,7 @@
|
||||||
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.",
|
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.",
|
||||||
"You must join the room to see its files": "You must join the room to see its files",
|
"You must join the room to see its files": "You must join the room to see its files",
|
||||||
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
|
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
|
||||||
"Start new Chat": "Start new Chat",
|
"Start new chat": "Start new chat",
|
||||||
"Guest users can't invite users. Please register.": "Guest users can't invite users. Please register.",
|
"Guest users can't invite users. Please register.": "Guest users can't invite users. Please register.",
|
||||||
"Failed to invite": "Failed to invite",
|
"Failed to invite": "Failed to invite",
|
||||||
"Failed to invite user": "Failed to invite user",
|
"Failed to invite user": "Failed to invite user",
|
||||||
|
|
829
src/i18n/strings/en_US.json
Normal file
829
src/i18n/strings/en_US.json
Normal file
|
@ -0,0 +1,829 @@
|
||||||
|
{
|
||||||
|
"af": "Afrikaans",
|
||||||
|
"ar-ae": "Arabic (U.A.E.)",
|
||||||
|
"ar-bh": "Arabic (Bahrain)",
|
||||||
|
"ar-dz": "Arabic (Algeria)",
|
||||||
|
"ar-eg": "Arabic (Egypt)",
|
||||||
|
"ar-iq": "Arabic (Iraq)",
|
||||||
|
"ar-jo": "Arabic (Jordan)",
|
||||||
|
"ar-kw": "Arabic (Kuwait)",
|
||||||
|
"ar-lb": "Arabic (Lebanon)",
|
||||||
|
"ar-ly": "Arabic (Libya)",
|
||||||
|
"ar-ma": "Arabic (Morocco)",
|
||||||
|
"ar-om": "Arabic (Oman)",
|
||||||
|
"ar-qa": "Arabic (Qatar)",
|
||||||
|
"ar-sa": "Arabic (Saudi Arabia)",
|
||||||
|
"ar-sy": "Arabic (Syria)",
|
||||||
|
"ar-tn": "Arabic (Tunisia)",
|
||||||
|
"ar-ye": "Arabic (Yemen)",
|
||||||
|
"be": "Belarusian",
|
||||||
|
"bg": "Bulgarian",
|
||||||
|
"ca": "Catalan",
|
||||||
|
"cs": "Czech",
|
||||||
|
"da": "Danish",
|
||||||
|
"de-at": "German (Austria)",
|
||||||
|
"de-ch": "German (Switzerland)",
|
||||||
|
"de": "German",
|
||||||
|
"de-li": "German (Liechtenstein)",
|
||||||
|
"de-lu": "German (Luxembourg)",
|
||||||
|
"el": "Greek",
|
||||||
|
"en-au": "English (Australia)",
|
||||||
|
"en-bz": "English (Belize)",
|
||||||
|
"en-ca": "English (Canada)",
|
||||||
|
"en": "English",
|
||||||
|
"en-gb": "English (United Kingdom)",
|
||||||
|
"en-ie": "English (Ireland)",
|
||||||
|
"en-jm": "English (Jamaica)",
|
||||||
|
"en-nz": "English (New Zealand)",
|
||||||
|
"en-tt": "English (Trinidad)",
|
||||||
|
"en-us": "English (United States)",
|
||||||
|
"en-za": "English (South Africa)",
|
||||||
|
"es-ar": "Spanish (Argentina)",
|
||||||
|
"es-bo": "Spanish (Bolivia)",
|
||||||
|
"es-cl": "Spanish (Chile)",
|
||||||
|
"es-co": "Spanish (Colombia)",
|
||||||
|
"es-cr": "Spanish (Costa Rica)",
|
||||||
|
"es-do": "Spanish (Dominican Republic)",
|
||||||
|
"es-ec": "Spanish (Ecuador)",
|
||||||
|
"es-gt": "Spanish (Guatemala)",
|
||||||
|
"es-hn": "Spanish (Honduras)",
|
||||||
|
"es-mx": "Spanish (Mexico)",
|
||||||
|
"es-ni": "Spanish (Nicaragua)",
|
||||||
|
"es-pa": "Spanish (Panama)",
|
||||||
|
"es-pe": "Spanish (Peru)",
|
||||||
|
"es-pr": "Spanish (Puerto Rico)",
|
||||||
|
"es-py": "Spanish (Paraguay)",
|
||||||
|
"es": "Spanish (Spain)",
|
||||||
|
"es-sv": "Spanish (El Salvador)",
|
||||||
|
"es-uy": "Spanish (Uruguay)",
|
||||||
|
"es-ve": "Spanish (Venezuela)",
|
||||||
|
"et": "Estonian",
|
||||||
|
"eu": "Basque (Basque)",
|
||||||
|
"fa": "Farsi",
|
||||||
|
"fi": "Finnish",
|
||||||
|
"fo": "Faeroese",
|
||||||
|
"fr-be": "French (Belgium)",
|
||||||
|
"fr-ca": "French (Canada)",
|
||||||
|
"fr-ch": "French (Switzerland)",
|
||||||
|
"fr": "French",
|
||||||
|
"fr-lu": "French (Luxembourg)",
|
||||||
|
"ga": "Irish",
|
||||||
|
"gd": "Gaelic (Scotland)",
|
||||||
|
"he": "Hebrew",
|
||||||
|
"hi": "Hindi",
|
||||||
|
"hr": "Croatian",
|
||||||
|
"hu": "Hungarian",
|
||||||
|
"id": "Indonesian",
|
||||||
|
"is": "Icelandic",
|
||||||
|
"it-ch": "Italian (Switzerland)",
|
||||||
|
"it": "Italian",
|
||||||
|
"ja": "Japanese",
|
||||||
|
"ji": "Yiddish",
|
||||||
|
"ko": "Korean",
|
||||||
|
"lt": "Lithuanian",
|
||||||
|
"lv": "Latvian",
|
||||||
|
"mk": "Macedonian (FYROM)",
|
||||||
|
"ms": "Malaysian",
|
||||||
|
"mt": "Maltese",
|
||||||
|
"nl-be": "Dutch (Belgium)",
|
||||||
|
"nl": "Dutch",
|
||||||
|
"no": "Norwegian",
|
||||||
|
"pl": "Polish",
|
||||||
|
"pt-br": "Brazilian Portuguese",
|
||||||
|
"pt": "Portuguese",
|
||||||
|
"rm": "Rhaeto-Romanic",
|
||||||
|
"ro-mo": "Romanian (Republic of Moldova)",
|
||||||
|
"ro": "Romanian",
|
||||||
|
"ru-mo": "Russian (Republic of Moldova)",
|
||||||
|
"ru": "Russian",
|
||||||
|
"sb": "Sorbian",
|
||||||
|
"sk": "Slovak",
|
||||||
|
"sl": "Slovenian",
|
||||||
|
"sq": "Albanian",
|
||||||
|
"sr": "Serbian",
|
||||||
|
"sv-fi": "Swedish (Finland)",
|
||||||
|
"sv": "Swedish",
|
||||||
|
"sx": "Sutu",
|
||||||
|
"sz": "Sami (Lappish)",
|
||||||
|
"th": "Thai",
|
||||||
|
"tn": "Tswana",
|
||||||
|
"tr": "Turkish",
|
||||||
|
"ts": "Tsonga",
|
||||||
|
"uk": "Ukrainian",
|
||||||
|
"ur": "Urdu",
|
||||||
|
"ve": "Venda",
|
||||||
|
"vi": "Vietnamese",
|
||||||
|
"xh": "Xhosa",
|
||||||
|
"zh-cn": "Chinese (PRC)",
|
||||||
|
"zh-hk": "Chinese (Hong Kong SAR)",
|
||||||
|
"zh-sg": "Chinese (Singapore)",
|
||||||
|
"zh-tw": "Chinese (Taiwan)",
|
||||||
|
"zu": "Zulu",
|
||||||
|
"A registered account is required for this action": "A registered account is required for this action",
|
||||||
|
"A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains",
|
||||||
|
"accept": "accept",
|
||||||
|
"%(targetName)s accepted an invitation.": "%(targetName)s accepted an invitation.",
|
||||||
|
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s accepted the invitation for %(displayName)s.",
|
||||||
|
"Account": "Account",
|
||||||
|
"Access Token:": "Access Token:",
|
||||||
|
"Add a topic": "Add a topic",
|
||||||
|
"Add email address": "Add email address",
|
||||||
|
"Add phone number": "Add phone number",
|
||||||
|
"Admin": "Admin",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"Missing Media Permissions, click here to request.": "Missing Media Permissions, click here to request.",
|
||||||
|
"No Microphones detected": "No Microphones detected",
|
||||||
|
"No Webcams detected": "No Webcams detected",
|
||||||
|
"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",
|
||||||
|
"Default Device": "Default Device",
|
||||||
|
"Microphone": "Microphone",
|
||||||
|
"Camera": "Camera",
|
||||||
|
"Advanced": "Advanced",
|
||||||
|
"Algorithm": "Algorithm",
|
||||||
|
"Hide removed messages": "Hide removed messages",
|
||||||
|
"Always show message timestamps": "Always show message timestamps",
|
||||||
|
"Authentication": "Authentication",
|
||||||
|
"all room members": "all room members",
|
||||||
|
"all room members, from the point they are invited": "all room members, from the point they are invited",
|
||||||
|
"all room members, from the point they joined": "all room members, from the point they joined",
|
||||||
|
"an address": "an address",
|
||||||
|
"and": "and",
|
||||||
|
"%(items)s and %(remaining)s others": "%(items)s and %(remaining)s others",
|
||||||
|
"%(items)s and one other": "%(items)s and one other",
|
||||||
|
"%(items)s and %(lastItem)s": "%(items)s and %(lastItem)s",
|
||||||
|
"and %(overflowCount)s others...": "and %(overflowCount)s others...",
|
||||||
|
"and one other...": "and one other...",
|
||||||
|
"%(names)s and %(lastPerson)s are typing": "%(names)s and %(lastPerson)s are typing",
|
||||||
|
"%(names)s and one other are typing": "%(names)s and one other are typing",
|
||||||
|
"%(names)s and %(count)s others are typing": "%(names)s and %(count)s others are typing",
|
||||||
|
"An email has been sent to": "An email has been sent to",
|
||||||
|
"A new password must be entered.": "A new password must be entered.",
|
||||||
|
"%(senderName)s answered the call.": "%(senderName)s answered the call.",
|
||||||
|
"anyone": "anyone",
|
||||||
|
"An error has occurred.": "An error has occurred.",
|
||||||
|
"Anyone": "Anyone",
|
||||||
|
"Anyone who knows the room's link, apart from guests": "Anyone who knows the room's link, apart from guests",
|
||||||
|
"Anyone who knows the room's link, including guests": "Anyone who knows the room's link, including guests",
|
||||||
|
"Are you sure?": "Are you sure?",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Are you sure you want to leave the room '%(roomName)s'?",
|
||||||
|
"Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
|
||||||
|
"Are you sure you want to upload the following files?": "Are you sure you want to upload the following files?",
|
||||||
|
"Attachment": "Attachment",
|
||||||
|
"Autoplay GIFs and videos": "Autoplay GIFs and videos",
|
||||||
|
"%(senderName)s banned %(targetName)s.": "%(senderName)s banned %(targetName)s.",
|
||||||
|
"Ban": "Ban",
|
||||||
|
"Banned users": "Banned users",
|
||||||
|
"Bans user with given id": "Bans user with given id",
|
||||||
|
"Blacklisted": "Blacklisted",
|
||||||
|
"Bug Report": "Bug Report",
|
||||||
|
"Bulk Options": "Bulk Options",
|
||||||
|
"Call Timeout": "Call Timeout",
|
||||||
|
"Can't connect to homeserver - please check your connectivity and ensure your <a>homeserver's SSL certificate</a> is trusted.": "Can't connect to homeserver - please check your connectivity and ensure your <a>homeserver's SSL certificate</a> is trusted.",
|
||||||
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.",
|
||||||
|
"Can't load user settings": "Can't load user settings",
|
||||||
|
"Change Password": "Change Password",
|
||||||
|
"%(senderName)s changed their display name from %(oldDisplayName)s to %(displayName)s.": "%(senderName)s changed their display name from %(oldDisplayName)s to %(displayName)s.",
|
||||||
|
"%(senderName)s changed their profile picture.": "%(senderName)s changed their profile picture.",
|
||||||
|
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s changed the power level of %(powerLevelDiffText)s.",
|
||||||
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s changed the room name to %(roomName)s.",
|
||||||
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s removed the room name.",
|
||||||
|
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s changed the topic to \"%(topic)s\".",
|
||||||
|
"Changes to who can read history will only apply to future messages in this room": "Changes to who can read history will only apply to future messages in this room",
|
||||||
|
"Changes your display nickname": "Changes your display nickname",
|
||||||
|
"changing room on a RoomView is not supported": "changing room on a RoomView is not supported",
|
||||||
|
"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.",
|
||||||
|
"Claimed Ed25519 fingerprint key": "Claimed Ed25519 fingerprint key",
|
||||||
|
"Clear Cache and Reload": "Clear Cache and Reload",
|
||||||
|
"Clear Cache": "Clear Cache",
|
||||||
|
"Click here": "Click here",
|
||||||
|
"Click here to fix": "Click here to fix",
|
||||||
|
"Click to mute audio": "Click to mute audio",
|
||||||
|
"Click to mute video": "Click to mute video",
|
||||||
|
"click to reveal": "click to reveal",
|
||||||
|
"Click to unmute video": "Click to unmute video",
|
||||||
|
"Click to unmute audio": "Click to unmute audio",
|
||||||
|
"Command error": "Command error",
|
||||||
|
"Commands": "Commands",
|
||||||
|
"Conference call failed.": "Conference call failed.",
|
||||||
|
"Conference calling is in development and may not be reliable.": "Conference calling is in development and may not be reliable.",
|
||||||
|
"Conference calls are not supported in encrypted rooms": "Conference calls are not supported in encrypted rooms",
|
||||||
|
"Conference calls are not supported in this client": "Conference calls are not supported in this client",
|
||||||
|
"Confirm password": "Confirm password",
|
||||||
|
"Confirm your new password": "Confirm your new password",
|
||||||
|
"Continue": "Continue",
|
||||||
|
"Could not connect to the integration server": "Could not connect to the integration server",
|
||||||
|
"Create an account": "Create an account",
|
||||||
|
"Create Room": "Create Room",
|
||||||
|
"Cryptography": "Cryptography",
|
||||||
|
"Current password": "Current password",
|
||||||
|
"Curve25519 identity key": "Curve25519 identity key",
|
||||||
|
"Custom level": "Custom level",
|
||||||
|
"/ddg is not a command": "/ddg is not a command",
|
||||||
|
"Deactivate Account": "Deactivate Account",
|
||||||
|
"Deactivate my account": "Deactivate my account",
|
||||||
|
"decline": "decline",
|
||||||
|
"Decrypt %(text)s": "Decrypt %(text)s",
|
||||||
|
"Decryption error": "Decryption error",
|
||||||
|
"(default: %(userName)s)": "(default: %(userName)s)",
|
||||||
|
"Delete": "Delete",
|
||||||
|
"demote": "demote",
|
||||||
|
"Deops user with given id": "Deops user with given id",
|
||||||
|
"Default": "Default",
|
||||||
|
"Device already verified!": "Device already verified!",
|
||||||
|
"Device ID": "Device ID",
|
||||||
|
"Device ID:": "Device ID:",
|
||||||
|
"device id: ": "device id: ",
|
||||||
|
"Device key:": "Device key:",
|
||||||
|
"Devices": "Devices",
|
||||||
|
"Devices will not yet be able to decrypt history from before they joined the room": "Devices will not yet be able to decrypt history from before they joined the room",
|
||||||
|
"Direct Chat": "Direct Chat",
|
||||||
|
"Direct chats": "Direct chats",
|
||||||
|
"disabled": "disabled",
|
||||||
|
"Disable inline URL previews by default": "Disable inline URL previews by default",
|
||||||
|
"Disinvite": "Disinvite",
|
||||||
|
"Display name": "Display name",
|
||||||
|
"Displays action": "Displays action",
|
||||||
|
"Don't send typing notifications": "Don't send typing notifications",
|
||||||
|
"Download %(text)s": "Download %(text)s",
|
||||||
|
"Drop here %(toAction)s": "Drop here %(toAction)s",
|
||||||
|
"Drop here to tag %(section)s": "Drop here to tag %(section)s",
|
||||||
|
"Ed25519 fingerprint": "Ed25519 fingerprint",
|
||||||
|
"Email": "Email",
|
||||||
|
"Email address": "Email address",
|
||||||
|
"Email address (optional)": "Email address (optional)",
|
||||||
|
"Email, name or matrix ID": "Email, name or matrix ID",
|
||||||
|
"Emoji": "Emoji",
|
||||||
|
"Enable encryption": "Enable encryption",
|
||||||
|
"enabled": "enabled",
|
||||||
|
"Encrypted messages will not be visible on clients that do not yet implement encryption": "Encrypted messages will not be visible on clients that do not yet implement encryption",
|
||||||
|
"Encrypted room": "Encrypted room",
|
||||||
|
"%(senderName)s ended the call.": "%(senderName)s ended the call.",
|
||||||
|
"End-to-end encryption information": "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 Code",
|
||||||
|
"Error": "Error",
|
||||||
|
"Error decrypting attachment": "Error decrypting attachment",
|
||||||
|
"Event information": "Event information",
|
||||||
|
"Existing Call": "Existing Call",
|
||||||
|
"Export": "Export",
|
||||||
|
"Export E2E room keys": "Export E2E room keys",
|
||||||
|
"Failed to ban user": "Failed to ban user",
|
||||||
|
"Failed to change password. Is your password correct?": "Failed to change password. Is your password correct?",
|
||||||
|
"Failed to change power level": "Failed to change power level",
|
||||||
|
"Failed to delete device": "Failed to delete device",
|
||||||
|
"Failed to forget room %(errCode)s": "Failed to forget room %(errCode)s",
|
||||||
|
"Failed to join room": "Failed to join room",
|
||||||
|
"Failed to join the room": "Failed to join the room",
|
||||||
|
"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 register as guest:": "Failed to register as guest:",
|
||||||
|
"Failed to reject invite": "Failed to reject invite",
|
||||||
|
"Failed to reject invitation": "Failed to reject invitation",
|
||||||
|
"Failed to save settings": "Failed to save settings",
|
||||||
|
"Failed to send email": "Failed to send email",
|
||||||
|
"Failed to send request.": "Failed to send request.",
|
||||||
|
"Failed to set avatar.": "Failed to set avatar.",
|
||||||
|
"Failed to set display name": "Failed to set display name",
|
||||||
|
"Failed to set up conference call": "Failed to set up conference call",
|
||||||
|
"Failed to toggle moderator status": "Failed to toggle moderator status",
|
||||||
|
"Failed to unban": "Failed to unban",
|
||||||
|
"Failed to upload file": "Failed to upload file",
|
||||||
|
"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",
|
||||||
|
"Failure to create room": "Failure to create room",
|
||||||
|
"Favourite": "Favorite",
|
||||||
|
"favourite": "favorite",
|
||||||
|
"Favourites": "Favorites",
|
||||||
|
"Fill screen": "Fill screen",
|
||||||
|
"Filter room members": "Filter room members",
|
||||||
|
"Forget room": "Forget room",
|
||||||
|
"Forgot your password?": "Forgot your password?",
|
||||||
|
"For security, this session has been signed out. Please sign in again.": "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, 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.",
|
||||||
|
"Found a bug?": "Found a bug?",
|
||||||
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s",
|
||||||
|
"Guest access is disabled on this Home Server.": "Guest access is disabled on this Home Server.",
|
||||||
|
"Guests can't set avatars. Please register.": "Guests can't set avatars. Please register.",
|
||||||
|
"Guest users can't create new rooms. Please register to create room and start a chat.": "Guest users can't create new rooms. Please register to create room and start a chat.",
|
||||||
|
"Guest users can't upload files. Please register to upload": "Guest users can't upload files. Please register to upload",
|
||||||
|
"Guests can't use labs features. Please register.": "Guests can't use labs features. Please register.",
|
||||||
|
"Guests cannot join this room even if explicitly invited.": "Guests cannot join this room even if explicitly invited.",
|
||||||
|
"had": "had",
|
||||||
|
"Hangup": "Hangup",
|
||||||
|
"Hide read receipts": "Hide read receipts",
|
||||||
|
"Hide Text Formatting Toolbar": "Hide Text Formatting Toolbar",
|
||||||
|
"Historical": "Historical",
|
||||||
|
"Homeserver is": "Homeserver is",
|
||||||
|
"Identity Server is": "Identity Server is",
|
||||||
|
"I have verified my email address": "I have verified my email address",
|
||||||
|
"Import": "Import",
|
||||||
|
"Import E2E room keys": "Import E2E room keys",
|
||||||
|
"Incorrect username and/or password.": "Incorrect username and/or password.",
|
||||||
|
"Incorrect verification code": "Incorrect verification code",
|
||||||
|
"Interface Language": "Interface Language",
|
||||||
|
"Invalid alias format": "Invalid alias format",
|
||||||
|
"Invalid address format": "Invalid address format",
|
||||||
|
"Invalid Email Address": "Invalid Email Address",
|
||||||
|
"Invalid file%(extra)s": "Invalid file%(extra)s",
|
||||||
|
"%(senderName)s invited %(targetName)s.": "%(senderName)s invited %(targetName)s.",
|
||||||
|
"Invite new room members": "Invite new room members",
|
||||||
|
"Invited": "Invited",
|
||||||
|
"Invites": "Invites",
|
||||||
|
"Invites user with given id to current room": "Invites user with given id to current room",
|
||||||
|
"is a": "is a",
|
||||||
|
"'%(alias)s' is not a valid format for an address": "'%(alias)s' is not a valid format for an address",
|
||||||
|
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' is not a valid format for an alias",
|
||||||
|
"%(displayName)s is typing": "%(displayName)s is typing",
|
||||||
|
"Sign in with": "Sign in with",
|
||||||
|
"Join Room": "Join Room",
|
||||||
|
"joined and left": "joined and left",
|
||||||
|
"joined": "joined",
|
||||||
|
"%(targetName)s joined the room.": "%(targetName)s joined the room.",
|
||||||
|
"Joins room with given alias": "Joins room with given alias",
|
||||||
|
"Jump to first unread message.": "Jump to first unread message.",
|
||||||
|
"%(senderName)s kicked %(targetName)s.": "%(senderName)s kicked %(targetName)s.",
|
||||||
|
"Kick": "Kick",
|
||||||
|
"Kicks user with given id": "Kicks user with given id",
|
||||||
|
"Labs": "Labs",
|
||||||
|
"Leave room": "Leave room",
|
||||||
|
"left and rejoined": "left and rejoined",
|
||||||
|
"left": "left",
|
||||||
|
"%(targetName)s left the room.": "%(targetName)s left the room.",
|
||||||
|
"Level": "Level",
|
||||||
|
"List this room in %(domain)s's room directory?": "List this room 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": "%(senderName)s made future room history visible to",
|
||||||
|
"Manage Integrations": "Manage Integrations",
|
||||||
|
"Markdown is disabled": "Markdown is disabled",
|
||||||
|
"Markdown is enabled": "Markdown is enabled",
|
||||||
|
"matrix-react-sdk version:": "matrix-react-sdk version:",
|
||||||
|
"Members only": "Members only",
|
||||||
|
"Message not sent due to unknown devices being present": "Message not sent due to unknown devices being present",
|
||||||
|
"Missing room_id in request": "Missing room_id in request",
|
||||||
|
"Missing user_id in request": "Missing user_id in request",
|
||||||
|
"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",
|
||||||
|
"my Matrix ID": "my Matrix ID",
|
||||||
|
"Name": "Name",
|
||||||
|
"Never send encrypted messages to unverified devices from this device": "Never send encrypted messages to unverified devices from this device",
|
||||||
|
"Never send encrypted messages to unverified devices in this room": "Never send encrypted messages to unverified devices in this room",
|
||||||
|
"Never send encrypted messages to unverified devices in this room from this device": "Never send encrypted messages to unverified devices in this room from this device",
|
||||||
|
"New address (e.g. #foo:%(localDomain)s)": "New address (e.g. #foo:%(localDomain)s)",
|
||||||
|
"New Composer & Autocomplete": "New Composer & Autocomplete",
|
||||||
|
"New password": "New password",
|
||||||
|
"New passwords don't match": "New passwords don't match",
|
||||||
|
"New passwords must match each other.": "New passwords must match each other.",
|
||||||
|
"none": "none",
|
||||||
|
"not set": "not set",
|
||||||
|
"not specified": "not specified",
|
||||||
|
"Notifications": "Notifications",
|
||||||
|
"(not supported by this browser)": "(not supported by this browser)",
|
||||||
|
"<not supported>": "<not supported>",
|
||||||
|
"NOT verified": "NOT verified",
|
||||||
|
"No devices with registered encryption keys": "No devices with registered encryption keys",
|
||||||
|
"No more results": "No more results",
|
||||||
|
"No results": "No results",
|
||||||
|
"No users have specific privileges in this room": "No users have specific privileges in this room",
|
||||||
|
"OK": "OK",
|
||||||
|
"olm version:": "olm version:",
|
||||||
|
"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)",
|
||||||
|
"Once you've followed the link it contains, click below": "Once you've followed the link it contains, click below",
|
||||||
|
"Only people who have been invited": "Only people who have been invited",
|
||||||
|
"Operation failed": "Operation failed",
|
||||||
|
"Password": "Password",
|
||||||
|
"Password:": "Password:",
|
||||||
|
"Passwords can't be empty": "Passwords can't be empty",
|
||||||
|
"People": "People",
|
||||||
|
"Permissions": "Permissions",
|
||||||
|
"Phone": "Phone",
|
||||||
|
"%(senderName)s placed a %(callType)s call.": "%(senderName)s placed a %(callType)s call.",
|
||||||
|
"Please check your email and click on the link it contains. Once this is done, click continue.": "Please check your email and click on the link it contains. Once this is done, click continue.",
|
||||||
|
"Please Register": "Please Register",
|
||||||
|
"Power level must be positive integer.": "Power level must be positive integer.",
|
||||||
|
"Press": "Press",
|
||||||
|
"Privacy warning": "Privacy warning",
|
||||||
|
"Privileged Users": "Privileged Users",
|
||||||
|
"Profile": "Profile",
|
||||||
|
"Reason": "Reason",
|
||||||
|
"Revoke Moderator": "Revoke Moderator",
|
||||||
|
"Refer a friend to Riot:": "Refer a friend to Riot:",
|
||||||
|
"Register": "Register",
|
||||||
|
"Registration required": "Registration required",
|
||||||
|
"rejected": "rejected",
|
||||||
|
"%(targetName)s rejected the invitation.": "%(targetName)s rejected the invitation.",
|
||||||
|
"Reject invitation": "Reject invitation",
|
||||||
|
"Remote addresses for this room:": "Remote addresses for this room:",
|
||||||
|
"Remove Contact Information?": "Remove Contact Information?",
|
||||||
|
"%(senderName)s removed their display name (%(oldDisplayName)s).": "%(senderName)s removed their display name (%(oldDisplayName)s).",
|
||||||
|
"%(senderName)s removed their profile picture.": "%(senderName)s removed their profile picture.",
|
||||||
|
"Remove": "Remove",
|
||||||
|
"Remove %(threePid)s?": "Remove %(threePid)s?",
|
||||||
|
"%(senderName)s requested a VoIP conference.": "%(senderName)s requested a VoIP conference.",
|
||||||
|
"Report it": "Report it",
|
||||||
|
"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.": "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.",
|
||||||
|
"restore": "restore",
|
||||||
|
"Results from DuckDuckGo": "Results from DuckDuckGo",
|
||||||
|
"Return to app": "Return to app",
|
||||||
|
"Return to login screen": "Return to login screen",
|
||||||
|
"Riot does not have permission to send you notifications - please check your browser settings": "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 was not given permission to send notifications - please try again",
|
||||||
|
"riot-web version:": "riot-web version:",
|
||||||
|
"Room %(roomId)s not visible": "Room %(roomId)s not visible",
|
||||||
|
"Room Colour": "Room Color",
|
||||||
|
"Room name (optional)": "Room name (optional)",
|
||||||
|
"Rooms": "Rooms",
|
||||||
|
"Save": "Save",
|
||||||
|
"Scroll to bottom of page": "Scroll to bottom of page",
|
||||||
|
"Scroll to unread messages": "Scroll to unread messages",
|
||||||
|
"Search": "Search",
|
||||||
|
"Search failed": "Search failed",
|
||||||
|
"Searches DuckDuckGo for results": "Searches DuckDuckGo for results",
|
||||||
|
"Send a message (unencrypted)": "Send a message (unencrypted)",
|
||||||
|
"Send an encrypted message": "Send an encrypted message",
|
||||||
|
"Sender device information": "Sender device information",
|
||||||
|
"Send Invites": "Send Invites",
|
||||||
|
"Send Reset Email": "Send Reset Email",
|
||||||
|
"sent an image": "sent an image",
|
||||||
|
"%(senderDisplayName)s sent an image.": "%(senderDisplayName)s sent an image.",
|
||||||
|
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.",
|
||||||
|
"sent a video": "sent a video",
|
||||||
|
"Server error": "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 search timed out :(",
|
||||||
|
"Server may be unavailable, overloaded, or the file too big": "Server may be unavailable, overloaded, or the file too big",
|
||||||
|
"Server may be unavailable, overloaded, or you hit a bug.": "Server may be unavailable, overloaded, or you hit a bug.",
|
||||||
|
"Server unavailable, overloaded, or something else went wrong.": "Server unavailable, overloaded, or something else went wrong.",
|
||||||
|
"Session ID": "Session ID",
|
||||||
|
"%(senderName)s set a profile picture.": "%(senderName)s set a profile picture.",
|
||||||
|
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s set their display name to %(displayName)s.",
|
||||||
|
"Setting a user name will create a fresh account": "Setting a user name will create a fresh account",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Show panel": "Show panel",
|
||||||
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Show timestamps in 12 hour format (e.g. 2:30pm)",
|
||||||
|
"Signed Out": "Signed Out",
|
||||||
|
"Sign in": "Sign in",
|
||||||
|
"Sign out": "Sign out",
|
||||||
|
"since the point in time of selecting this option": "since the point in time of selecting this option",
|
||||||
|
"since they joined": "since they joined",
|
||||||
|
"since they were invited": "since they were invited",
|
||||||
|
"Some of your messages have not been sent": "Some of your messages have not been sent",
|
||||||
|
"Someone": "Someone",
|
||||||
|
"Sorry, this homeserver is using a login which is not recognised ": "Sorry, this homeserver is using a login which is not recognized ",
|
||||||
|
"Start a chat": "Start a chat",
|
||||||
|
"Start Chat": "Start Chat",
|
||||||
|
"Submit": "Submit",
|
||||||
|
"Success": "Success",
|
||||||
|
"tag as %(tagName)s": "tag as %(tagName)s",
|
||||||
|
"tag direct chat": "tag direct chat",
|
||||||
|
"Tagged as: ": "Tagged as: ",
|
||||||
|
"The default role for new room members is": "The default role for new room members is",
|
||||||
|
"The main address for this room is": "The main address for this room is",
|
||||||
|
"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.",
|
||||||
|
"This action cannot be performed by a guest user. Please register to be able to do this": "This action cannot be performed by a guest user. Please register to be able to do this",
|
||||||
|
"This email address is already in use": "This email address is already in use",
|
||||||
|
"This email address was not found": "This email address was not found",
|
||||||
|
"%(actionVerb)s this person?": "%(actionVerb)s this person?",
|
||||||
|
"The email address linked to your account must be entered.": "The email address linked to your account must be entered.",
|
||||||
|
"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",
|
||||||
|
"The file '%(fileName)s' failed to upload": "The file '%(fileName)s' failed to upload",
|
||||||
|
"The remote side failed to pick up": "The remote side failed to pick up",
|
||||||
|
"This Home Server does not support login using email address.": "This Home Server does not support login using email address.",
|
||||||
|
"There was a problem logging in.": "There was a problem logging in.",
|
||||||
|
"This room has no local addresses": "This room has no local addresses",
|
||||||
|
"This room is not recognised.": "This room is not recognized.",
|
||||||
|
"This room is private or inaccessible to guests. You may be able to join if you register": "This room is private or inaccessible to guests. You may be able to join if you register",
|
||||||
|
"These are experimental features that may break in unexpected ways": "These are experimental features that may break in unexpected ways",
|
||||||
|
"The visibility of existing history will be unchanged": "The visibility of existing history will be unchanged",
|
||||||
|
"This doesn't appear to be a valid email address": "This doesn't appear to be a valid email address",
|
||||||
|
"this invitation?": "this invitation?",
|
||||||
|
"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 phone number is already in use",
|
||||||
|
"This room is not accessible by remote Matrix servers": "This room is not accessible by remote Matrix servers",
|
||||||
|
"This room's internal ID is": "This room's internal ID is",
|
||||||
|
"times": "times",
|
||||||
|
"To ban users": "To ban users",
|
||||||
|
"to browse the directory": "to browse the directory",
|
||||||
|
"To configure the room": "To configure the room",
|
||||||
|
"to demote": "to demote",
|
||||||
|
"to favourite": "to favorite",
|
||||||
|
"To invite users into the room": "To invite users into the room",
|
||||||
|
"to join the discussion": "to join the discussion",
|
||||||
|
"To kick users": "To kick users",
|
||||||
|
"To link to a room it must have": "To link to a room it must have",
|
||||||
|
"to make a room or": "to make a room or",
|
||||||
|
"To remove other users' messages": "To remove other users' messages",
|
||||||
|
"To reset your password, enter the email address linked to your account": "To reset your password, enter the email address linked to your account",
|
||||||
|
"to restore": "to restore",
|
||||||
|
"To send events of type": "To send events of type",
|
||||||
|
"To send messages": "To send messages",
|
||||||
|
"to start a chat with someone": "to start a chat with someone",
|
||||||
|
"to tag as %(tagName)s": "to tag as %(tagName)s",
|
||||||
|
"to tag direct chat": "to tag direct chat",
|
||||||
|
"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.",
|
||||||
|
"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 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 was unable to find it",
|
||||||
|
"Turn Markdown off": "Turn Markdown off",
|
||||||
|
"Turn Markdown on": "Turn Markdown on",
|
||||||
|
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).",
|
||||||
|
"Unable to add email address": "Unable to add email address",
|
||||||
|
"Unable to remove contact information": "Unable to remove contact information",
|
||||||
|
"Unable to restore previous session": "Unable to restore previous session",
|
||||||
|
"Unable to verify email address.": "Unable to verify email address.",
|
||||||
|
"Unban": "Unban",
|
||||||
|
"%(senderName)s unbanned %(targetName)s.": "%(senderName)s unbanned %(targetName)s.",
|
||||||
|
"Unable to capture screen": "Unable to capture screen",
|
||||||
|
"Unable to enable Notifications": "Unable to enable Notifications",
|
||||||
|
"Unable to load device list": "Unable to load device list",
|
||||||
|
"Unencrypted room": "Unencrypted room",
|
||||||
|
"unencrypted": "unencrypted",
|
||||||
|
"Unknown command": "Unknown command",
|
||||||
|
"unknown device": "unknown device",
|
||||||
|
"unknown error code": "unknown error code",
|
||||||
|
"Unknown room %(roomId)s": "Unknown room %(roomId)s",
|
||||||
|
"Unknown (user, device) pair:": "Unknown (user, device) pair:",
|
||||||
|
"unknown": "unknown",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Unrecognised command:": "Unrecognized command:",
|
||||||
|
"Unrecognised room alias:": "Unrecognized room alias:",
|
||||||
|
"uploaded a file": "uploaded a file",
|
||||||
|
"Upload avatar": "Upload avatar",
|
||||||
|
"Upload Failed": "Upload Failed",
|
||||||
|
"Upload Files": "Upload Files",
|
||||||
|
"Upload file": "Upload file",
|
||||||
|
"Usage": "Usage",
|
||||||
|
"Use compact timeline layout": "Use compact timeline layout",
|
||||||
|
"Use with caution": "Use with caution",
|
||||||
|
"User ID": "User ID",
|
||||||
|
"User Interface": "User Interface",
|
||||||
|
"User name": "User name",
|
||||||
|
"Users": "Users",
|
||||||
|
"User": "User",
|
||||||
|
"Verification Pending": "Verification Pending",
|
||||||
|
"Verification": "Verification",
|
||||||
|
"verified": "verified",
|
||||||
|
"Verified key": "Verified key",
|
||||||
|
"Video call": "Video call",
|
||||||
|
"Voice call": "Voice call",
|
||||||
|
"VoIP conference finished.": "VoIP conference finished.",
|
||||||
|
"VoIP conference started.": "VoIP conference started.",
|
||||||
|
"VoIP is unsupported": "VoIP is unsupported",
|
||||||
|
"(warning: cannot be disabled again!)": "(warning: cannot be disabled again!)",
|
||||||
|
"Warning!": "Warning!",
|
||||||
|
"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!",
|
||||||
|
"Who can access this room?": "Who can access this room?",
|
||||||
|
"Who can read history?": "Who can read history?",
|
||||||
|
"Who would you like to add to this room?": "Who would you like to add to this room?",
|
||||||
|
"Who would you like to communicate with?": "Who would you like to communicate with?",
|
||||||
|
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s withdrew %(targetName)s's invitation.",
|
||||||
|
"Would you like to": "Would you like to",
|
||||||
|
"You are already in a call.": "You are already in a call.",
|
||||||
|
"You're not in any rooms yet! Press": "You're not in any rooms yet! Press",
|
||||||
|
"You are trying to access %(roomName)s": "You are trying to access %(roomName)s",
|
||||||
|
"You cannot place a call with yourself.": "You cannot place a call with yourself.",
|
||||||
|
"You cannot place VoIP calls in this browser.": "You cannot place VoIP calls in this browser.",
|
||||||
|
"You do not have permission to post to this room": "You do not have permission to post to this room",
|
||||||
|
"You have been invited to join this room by %(inviterName)s": "You have been invited to join this room by %(inviterName)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 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 <a>disabled</a> URL previews by default.": "You have <a>disabled</a> URL previews by default.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "You have <a>enabled</a> URL previews by default.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "You have entered an invalid contact. Try using their Matrix ID or email address.",
|
||||||
|
"You have no visible notifications": "You have no visible notifications",
|
||||||
|
"you must be a": "you must be a",
|
||||||
|
"You need to be able to invite users to do that.": "You need to be able to invite users to do that.",
|
||||||
|
"You need to be logged in.": "You need to be logged in.",
|
||||||
|
"You need to enter a user name.": "You need to enter a user name.",
|
||||||
|
"You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a once off; sorry for the inconvenience.": "You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a one-off; sorry for the inconvenience.",
|
||||||
|
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Your email address does not appear to be associated with a Matrix ID on this Homeserver.",
|
||||||
|
"Your password has been reset": "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 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 in a call, are you sure you want to quit?",
|
||||||
|
"You seem to be uploading files, 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": "You should not yet trust it to secure data",
|
||||||
|
"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",
|
||||||
|
"Sun": "Sun",
|
||||||
|
"Mon": "Mon",
|
||||||
|
"Tue": "Tue",
|
||||||
|
"Wed": "Wed",
|
||||||
|
"Thu": "Thu",
|
||||||
|
"Fri": "Fri",
|
||||||
|
"Sat": "Sat",
|
||||||
|
"Jan": "Jan",
|
||||||
|
"Feb": "Feb",
|
||||||
|
"Mar": "Mar",
|
||||||
|
"Apr": "Apr",
|
||||||
|
"May": "May",
|
||||||
|
"Jun": "Jun",
|
||||||
|
"Jul": "Jul",
|
||||||
|
"Aug": "Aug",
|
||||||
|
"Sep": "Sep",
|
||||||
|
"Oct": "Oct",
|
||||||
|
"Nov": "Nov",
|
||||||
|
"Dec": "Dec",
|
||||||
|
"%(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 %(time)s": "%(weekDayName)s %(time)s",
|
||||||
|
"Set a display name:": "Set a display name:",
|
||||||
|
"Set a Display Name": "Set a Display Name",
|
||||||
|
"Upload an avatar:": "Upload an avatar:",
|
||||||
|
"This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.",
|
||||||
|
"Missing password.": "Missing password.",
|
||||||
|
"Passwords don't match.": "Passwords don't match.",
|
||||||
|
"Password too short (min %(MIN_PASSWORD_LENGTH)s).": "Password too short (min %(MIN_PASSWORD_LENGTH)s).",
|
||||||
|
"This doesn't look like a valid email address.": "This doesn't look like a valid email address.",
|
||||||
|
"This doesn't look like a valid phone number.": "This doesn't look like a valid phone number.",
|
||||||
|
"User names may only contain letters, numbers, dots, hyphens and underscores.": "User names may only contain letters, numbers, dots, hyphens and underscores.",
|
||||||
|
"An unknown error occurred.": "An unknown error occurred.",
|
||||||
|
"I already have an account": "I already have an account",
|
||||||
|
"An error occured: %(error_string)s": "An error occured: %(error_string)s",
|
||||||
|
"Topic": "Topic",
|
||||||
|
"Make Moderator": "Make Moderator",
|
||||||
|
"Make this room private": "Make this room private",
|
||||||
|
"Share message history with new users": "Share message history with new users",
|
||||||
|
"Encrypt room": "Encrypt room",
|
||||||
|
"There are no visible files in this room": "There are no visible files in this room",
|
||||||
|
"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.": "Sent messages will be stored until your connection has returned.",
|
||||||
|
"Auto-complete": "Auto-complete",
|
||||||
|
"Resend all": "Resend all",
|
||||||
|
"(~%(searchCount)s results)": "(~%(searchCount)s results)",
|
||||||
|
"Cancel": "Cancel",
|
||||||
|
"cancel all": "cancel all",
|
||||||
|
"or": "or",
|
||||||
|
"now. You can also select individual messages to resend or cancel.": "now. You can also select individual messages to resend or cancel.",
|
||||||
|
"Active call": "Active call",
|
||||||
|
"Monday": "Monday",
|
||||||
|
"Tuesday": "Tuesday",
|
||||||
|
"Wednesday": "Wednesday",
|
||||||
|
"Thursday": "Thursday",
|
||||||
|
"Friday": "Friday",
|
||||||
|
"Saturday": "Saturday",
|
||||||
|
"Sunday": "Sunday",
|
||||||
|
"bold": "bold",
|
||||||
|
"italic": "italic",
|
||||||
|
"strike": "strike",
|
||||||
|
"underline": "underline",
|
||||||
|
"code": "code",
|
||||||
|
"quote": "quote",
|
||||||
|
"bullet": "bullet",
|
||||||
|
"numbullet": "numbullet",
|
||||||
|
"%(severalUsers)sjoined %(repeats)s times": "%(severalUsers)sjoined %(repeats)s times",
|
||||||
|
"%(oneUser)sjoined %(repeats)s times": "%(oneUser)sjoined %(repeats)s times",
|
||||||
|
"%(severalUsers)sjoined": "%(severalUsers)sjoined",
|
||||||
|
"%(oneUser)sjoined": "%(oneUser)sjoined",
|
||||||
|
"%(severalUsers)sleft %(repeats)s times": "%(severalUsers)sleft %(repeats)s times",
|
||||||
|
"%(oneUser)sleft %(repeats)s times": "%(oneUser)sleft %(repeats)s times",
|
||||||
|
"%(severalUsers)sleft": "%(severalUsers)sleft",
|
||||||
|
"%(oneUser)sleft": "%(oneUser)sleft",
|
||||||
|
"%(severalUsers)sjoined and left %(repeats)s times": "%(severalUsers)sjoined and left %(repeats)s times",
|
||||||
|
"%(oneUser)sjoined and left %(repeats)s times": "%(oneUser)sjoined and left %(repeats)s times",
|
||||||
|
"%(severalUsers)sjoined and left": "%(severalUsers)sjoined and left",
|
||||||
|
"%(oneUser)sjoined and left": "%(oneUser)sjoined and left",
|
||||||
|
"%(severalUsers)sleft and rejoined %(repeats)s times": "%(severalUsers)sleft and rejoined %(repeats)s times",
|
||||||
|
"%(oneUser)sleft and rejoined %(repeats)s times": "%(oneUser)sleft and rejoined %(repeats)s times",
|
||||||
|
"%(severalUsers)sleft and rejoined": "%(severalUsers)sleft and rejoined",
|
||||||
|
"%(oneUser)sleft and rejoined": "%(oneUser)sleft and rejoined",
|
||||||
|
"%(severalUsers)srejected their invitations %(repeats)s times": "%(severalUsers)srejected their invitations %(repeats)s times",
|
||||||
|
"%(oneUser)srejected their invitation %(repeats)s times": "%(oneUser)srejected their invitation %(repeats)s times",
|
||||||
|
"%(severalUsers)srejected their invitations": "%(severalUsers)srejected their invitations",
|
||||||
|
"%(oneUser)srejected their invitation": "%(oneUser)srejected their invitation",
|
||||||
|
"%(severalUsers)shad their invitations withdrawn %(repeats)s times": "%(severalUsers)shad their invitations withdrawn %(repeats)s times",
|
||||||
|
"%(oneUser)shad their invitation withdrawn %(repeats)s times": "%(oneUser)shad their invitation withdrawn %(repeats)s times",
|
||||||
|
"%(severalUsers)shad their invitations withdrawn": "%(severalUsers)shad their invitations withdrawn",
|
||||||
|
"%(oneUser)shad their invitation withdrawn": "%(oneUser)shad their invitation withdrawn",
|
||||||
|
"were invited %(repeats)s times": "were invited %(repeats)s times",
|
||||||
|
"was invited %(repeats)s times": "was invited %(repeats)s times",
|
||||||
|
"were invited": "were invited",
|
||||||
|
"was invited": "was invited",
|
||||||
|
"were banned %(repeats)s times": "were banned %(repeats)s times",
|
||||||
|
"was banned %(repeats)s times": "was banned %(repeats)s times",
|
||||||
|
"were banned": "were banned",
|
||||||
|
"was banned": "was banned",
|
||||||
|
"were unbanned %(repeats)s times": "were unbanned %(repeats)s times",
|
||||||
|
"was unbanned %(repeats)s times": "was unbanned %(repeats)s times",
|
||||||
|
"were unbanned": "were unbanned",
|
||||||
|
"was unbanned": "was unbanned",
|
||||||
|
"were kicked %(repeats)s times": "were kicked %(repeats)s times",
|
||||||
|
"was kicked %(repeats)s times": "was kicked %(repeats)s times",
|
||||||
|
"were kicked": "were kicked",
|
||||||
|
"was kicked": "was kicked",
|
||||||
|
"%(severalUsers)schanged their name %(repeats)s times": "%(severalUsers)schanged their name %(repeats)s times",
|
||||||
|
"%(oneUser)schanged their name %(repeats)s times": "%(oneUser)schanged their name %(repeats)s times",
|
||||||
|
"%(severalUsers)schanged their name": "%(severalUsers)schanged their name",
|
||||||
|
"%(oneUser)schanged their name": "%(oneUser)schanged their name",
|
||||||
|
"%(severalUsers)schanged their avatar %(repeats)s times": "%(severalUsers)schanged their avatar %(repeats)s times",
|
||||||
|
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)schanged their avatar %(repeats)s times",
|
||||||
|
"%(severalUsers)schanged their avatar": "%(severalUsers)schanged their avatar",
|
||||||
|
"%(oneUser)schanged their avatar": "%(oneUser)schanged their avatar",
|
||||||
|
"Please select the destination room for this message": "Please select the destination room for this message",
|
||||||
|
"Start automatically after system login": "Start automatically after system login",
|
||||||
|
"Desktop specific": "Desktop specific",
|
||||||
|
"Analytics": "Analytics",
|
||||||
|
"Opt out of analytics": "Opt out of analytics",
|
||||||
|
"Options": "Options",
|
||||||
|
"Riot collects anonymous analytics to allow us to improve the application.": "Riot collects anonymous analytics to allow us to improve the application.",
|
||||||
|
"Passphrases must match": "Passphrases must match",
|
||||||
|
"Passphrase must not be empty": "Passphrase must not be empty",
|
||||||
|
"Export room keys": "Export room keys",
|
||||||
|
"Enter passphrase": "Enter passphrase",
|
||||||
|
"Confirm passphrase": "Confirm passphrase",
|
||||||
|
"Import room keys": "Import room keys",
|
||||||
|
"File to import": "File to import",
|
||||||
|
"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.": "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.": "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.": "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.": "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.",
|
||||||
|
"You must join the room to see its files": "You must join the room to see its files",
|
||||||
|
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
|
||||||
|
"Start new chat": "Start new chat",
|
||||||
|
"Guest users can't invite users. Please register.": "Guest users can't invite users. Please register.",
|
||||||
|
"Failed to invite": "Failed to invite",
|
||||||
|
"Failed to invite user": "Failed to invite user",
|
||||||
|
"Failed to invite the following users to the %(roomName)s room:": "Failed to invite the following users to the %(roomName)s room:",
|
||||||
|
"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.",
|
||||||
|
"Unknown error": "Unknown error",
|
||||||
|
"Incorrect password": "Incorrect password",
|
||||||
|
"This will make your account permanently unusable. You will not be able to re-register the same user ID.": "This will make your account permanently unusable. You will not be able to re-register the same user ID.",
|
||||||
|
"This action is irreversible.": "This action is irreversible.",
|
||||||
|
"To continue, please enter your password.": "To continue, please enter your password.",
|
||||||
|
"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:": "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": "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.": "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.": "In future this verification process will be more sophisticated.",
|
||||||
|
"Verify device": "Verify device",
|
||||||
|
"I verify that the keys match": "I verify that the keys match",
|
||||||
|
"We encountered an error trying to restore your previous session. If you continue, you will need to log in again, and encrypted chat history will be unreadable.": "We encountered an error trying to restore your previous session. If you continue, you will need to log in again, and encrypted chat history will be unreadable.",
|
||||||
|
"Unable to restore session": "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.": "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.",
|
||||||
|
"Continue anyway": "Continue anyway",
|
||||||
|
"Your display name is how you'll appear to others when you speak in rooms. What would you like it to be?": "Your display name is how you'll appear to others when you speak in rooms. What would you like it to be?",
|
||||||
|
"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.",
|
||||||
|
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" contains devices that you haven't seen before.",
|
||||||
|
"Unknown devices": "Unknown devices",
|
||||||
|
"Unknown Address": "Unknown Address",
|
||||||
|
"Unblacklist": "Unblacklist",
|
||||||
|
"Blacklist": "Blacklist",
|
||||||
|
"Unverify": "Unverify",
|
||||||
|
"Verify...": "Verify...",
|
||||||
|
"ex. @bob:example.com": "ex. @bob:example.com",
|
||||||
|
"Add User": "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": "Sign in with CAS",
|
||||||
|
"Custom Server Options": "Custom Server Options",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.",
|
||||||
|
"This allows you to use this app with an existing Matrix account on a different home server.": "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.": "You can also set a custom identity server but this will typically prevent interaction with users based on email address.",
|
||||||
|
"Dismiss": "Dismiss",
|
||||||
|
"Please check your email to continue registration.": "Please check your email to continue registration.",
|
||||||
|
"Token incorrect": "Token incorrect",
|
||||||
|
"A text message has been sent to": "A text message has been sent to",
|
||||||
|
"Please enter the code it contains:": "Please enter the code it contains:",
|
||||||
|
"powered by Matrix": "powered by Matrix",
|
||||||
|
"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": "You are registering with %(SelectedTeamName)s",
|
||||||
|
"Default server": "Default server",
|
||||||
|
"Custom server": "Custom server",
|
||||||
|
"Home server URL": "Home server URL",
|
||||||
|
"Identity server URL": "Identity server URL",
|
||||||
|
"What does this mean?": "What does this mean?",
|
||||||
|
"Error decrypting audio": "Error decrypting audio",
|
||||||
|
"Error decrypting image": "Error decrypting image",
|
||||||
|
"Image '%(Body)s' cannot be displayed.": "Image '%(Body)s' cannot be displayed.",
|
||||||
|
"This image cannot be displayed.": "This image cannot be displayed.",
|
||||||
|
"Error decrypting video": "Error decrypting video",
|
||||||
|
"Add an Integration": "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?": "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?",
|
||||||
|
"Removed or unknown message type": "Removed or unknown message type",
|
||||||
|
"Disable URL previews by default for participants in this room": "Disable URL previews by default for participants in this room",
|
||||||
|
"URL previews are %(globalDisableUrlPreview)s by default for participants in this room.": "URL previews are %(globalDisableUrlPreview)s by default for participants in this room.",
|
||||||
|
"URL Previews": "URL Previews",
|
||||||
|
"Enable URL previews for this room (affects only you)": "Enable URL previews for this room (affects only you)",
|
||||||
|
"Drop file here to upload": "Drop file here to upload",
|
||||||
|
" (unsupported)": " (unsupported)",
|
||||||
|
"Ongoing conference call%(supportedText)s. %(joinText)s": "Ongoing conference call%(supportedText)s. %(joinText)s",
|
||||||
|
"for %(amount)ss": "for %(amount)ss",
|
||||||
|
"for %(amount)sm": "for %(amount)sm",
|
||||||
|
"for %(amount)sh": "for %(amount)sh",
|
||||||
|
"for %(amount)sd": "for %(amount)sd",
|
||||||
|
"Online": "Online",
|
||||||
|
"Idle": "Idle",
|
||||||
|
"Offline": "Offline",
|
||||||
|
"Disable URL previews for this room (affects only you)": "Disable URL previews for this room (affects only you)",
|
||||||
|
"$senderDisplayName changed the room avatar to <img/>": "$senderDisplayName changed the room avatar to <img/>",
|
||||||
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removed the room avatar.",
|
||||||
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s changed the avatar for %(roomName)s"
|
||||||
|
}
|
|
@ -225,7 +225,7 @@
|
||||||
"Displays action": "Mostrar acción",
|
"Displays action": "Mostrar acción",
|
||||||
"Don't send typing notifications": "No enviar notificaciones cuando se escribe",
|
"Don't send typing notifications": "No enviar notificaciones cuando se escribe",
|
||||||
"Download %(text)s": "Descargar %(text)s",
|
"Download %(text)s": "Descargar %(text)s",
|
||||||
"Drop here %(toAction)s": "Suelta aquí para %(toAction)s",
|
"Drop here %(toAction)s": "Suelta aquí %(toAction)s",
|
||||||
"Drop here to tag %(section)s": "Suelta aquí para etiquetar %(section)s",
|
"Drop here to tag %(section)s": "Suelta aquí para etiquetar %(section)s",
|
||||||
"Ed25519 fingerprint": "Clave de cifrado Ed25519",
|
"Ed25519 fingerprint": "Clave de cifrado Ed25519",
|
||||||
"Email": "Correo electrónico",
|
"Email": "Correo electrónico",
|
||||||
|
|
|
@ -142,13 +142,13 @@
|
||||||
"End-to-end encryption is in beta and may not be reliable": "L’encryption bout-en-bout est en bêta et risque de ne pas être fiable",
|
"End-to-end encryption is in beta and may not be reliable": "L’encryption bout-en-bout est en bêta et risque de ne pas être fiable",
|
||||||
"Enter Code": "Entrer le code",
|
"Enter Code": "Entrer le code",
|
||||||
"Error": "Erreur",
|
"Error": "Erreur",
|
||||||
"Event information": "Event information",
|
"Event information": "Information de l'événement",
|
||||||
"Existing Call": "Existing Call",
|
"Existing Call": "Appel en cours",
|
||||||
"Export E2E room keys": "Export E2E room keys",
|
"Export E2E room keys": "Exporter les clés d'encryption du salon",
|
||||||
"Failed to ban user": "Failed to ban user",
|
"Failed to ban user": "Échec lors du bannissement de l'utilisateur",
|
||||||
"Failed to change password. Is your password correct?": "Failed to change password. Is your password correct?",
|
"Failed to change password. Is your password correct?": "Échec du changement de mot de passe. Votre mot de passe est-il correct ?",
|
||||||
"Failed to change power level": "Failed to change power level",
|
"Failed to change power level": "Échec du changement de niveau d'autorité",
|
||||||
"Failed to delete device": "Failed to delete device",
|
"Failed to delete device": "Échec de la suppression de l'appareil",
|
||||||
"Failed to forget room %(errCode)s": "Échec lors de l'oubli du salon %(errCode)s",
|
"Failed to forget room %(errCode)s": "Échec lors de l'oubli du salon %(errCode)s",
|
||||||
"Please Register": "Veuillez vous enregistrer",
|
"Please Register": "Veuillez vous enregistrer",
|
||||||
"Remove": "Supprimer",
|
"Remove": "Supprimer",
|
||||||
|
@ -694,7 +694,7 @@
|
||||||
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Le fichier exporté est protégé par une phrase secrète. Vous devez entrer cette phrase secrète ici pour décrypter le fichier.",
|
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Le fichier exporté est protégé par une phrase secrète. Vous devez entrer cette phrase secrète ici pour décrypter le fichier.",
|
||||||
"You must join the room to see its files": "Vous devez joindre le salon pour voir ses fichiers",
|
"You must join the room to see its files": "Vous devez joindre le salon pour voir ses fichiers",
|
||||||
"Reject all %(invitedRooms)s invites": "Rejeter la totalité des %(invitedRooms)s invitations",
|
"Reject all %(invitedRooms)s invites": "Rejeter la totalité des %(invitedRooms)s invitations",
|
||||||
"Start new Chat": "Démarrer une nouvelle conversation",
|
"Start new chat": "Démarrer une nouvelle conversation",
|
||||||
"Guest users can't invite users. Please register.": "Les visiteurs ne peuvent inviter d’autres utilisateurs. Merci de vous enregistrer.",
|
"Guest users can't invite users. Please register.": "Les visiteurs ne peuvent inviter d’autres utilisateurs. Merci de vous enregistrer.",
|
||||||
"Failed to invite": "Echec de l'invitation",
|
"Failed to invite": "Echec de l'invitation",
|
||||||
"Failed to invite user": "Echec lors de l'invitation de l'utilisateur",
|
"Failed to invite user": "Echec lors de l'invitation de l'utilisateur",
|
||||||
|
@ -797,5 +797,35 @@
|
||||||
"Use compact timeline layout": "Utiliser l'affichage compact",
|
"Use compact timeline layout": "Utiliser l'affichage compact",
|
||||||
"Verified key": "Clé vérifiée",
|
"Verified key": "Clé vérifiée",
|
||||||
"WARNING: Device already verified, but keys do NOT MATCH!": "ATTENTION : Appareil déjà vérifié mais les clés NE CORRESPONDENT PAS !",
|
"WARNING: Device already verified, but keys do NOT MATCH!": "ATTENTION : Appareil déjà vérifié mais les clés NE CORRESPONDENT PAS !",
|
||||||
"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!": "ATTENTION : ERREUR DE VÉRIFICATION DES CLÉS ! La clé de signature pour %(userId)s et l'appareil %(deviceId)s est “%(fprint)s” et ne correspond pas à la clé “%(fingerprint)s” qui a été fournie. Cela peut signifier que vos communications sont interceptées !"
|
"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!": "ATTENTION : ERREUR DE VÉRIFICATION DES CLÉS ! La clé de signature pour %(userId)s et l'appareil %(deviceId)s est “%(fprint)s” et ne correspond pas à la clé “%(fingerprint)s” qui a été fournie. Cela peut signifier que vos communications sont interceptées !",
|
||||||
|
"VoIP": "Voix sur IP",
|
||||||
|
"Missing Media Permissions, click here to request.": "Manque de permission pour les médias, cliquer ici pour les demander.",
|
||||||
|
"No Microphones detected": "Aucun micro détecté",
|
||||||
|
"No Webcams detected": "Aucune webcam détectée",
|
||||||
|
"No media permissions": "Pas de permission pour les médias",
|
||||||
|
"You may need to manually permit Riot to access your microphone/webcam": "Il est possible que vous deviez manuellement permettre à Riot d’accéder à votre micro/webcam",
|
||||||
|
"Default Device": "Appareil par défaut",
|
||||||
|
"Microphone": "Micro",
|
||||||
|
"Camera": "Caméra",
|
||||||
|
"Add a topic": "Ajouter un sujet",
|
||||||
|
"Anyone": "N'importe qui",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Êtes-vous sûr de vouloir quitter le salon '%(roomName)s' ?",
|
||||||
|
"Custom level": "Niveau personnalisé",
|
||||||
|
"(default: %(userName)s)": "(défaut : %(userName)s)",
|
||||||
|
"Device ID:": "Identifiant de l'appareil :",
|
||||||
|
"device id: ": "Identifiant appareil : ",
|
||||||
|
"Device key:": "Clé de l’appareil :",
|
||||||
|
"Email address (optional)": "Adresse e-mail (facultatif)",
|
||||||
|
"List this room in %(domain)s's room directory?": "Lister ce salon dans le répertoire de %(domain)s ?",
|
||||||
|
"Mobile phone number (optional)": "Numéro de téléphone (facultatif)",
|
||||||
|
"Password:": "Mot de passe :",
|
||||||
|
"Register": "S'inscrire",
|
||||||
|
"Remote addresses for this room:": "Supprimer l'adresse pour ce salon :",
|
||||||
|
"Save": "Enregistrer",
|
||||||
|
"Setting a user name will create a fresh account": "Définir un nouveau nom d’utilisateur va créer un nouveau compte",
|
||||||
|
"Tagged as: ": "Étiquetter comme : ",
|
||||||
|
"You have <a>disabled</a> URL previews by default.": "Vous avez <a>désactivé</a> les aperçus d’URL par défaut.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "Vous avez <a>activé</a> les aperçus d’URL par défaut.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "Vous avez entré un contact invalide. Essayez d’utiliser leur identifiant Matrix ou leur adresse email.",
|
||||||
|
"Hide removed messages": "Cacher les messages supprimés"
|
||||||
}
|
}
|
||||||
|
|
|
@ -198,5 +198,6 @@
|
||||||
"Confirm password": "Bevestigen wachtwoord",
|
"Confirm password": "Bevestigen wachtwoord",
|
||||||
"Confirm your new password": "Bevestig je nieuwe wachtwoord",
|
"Confirm your new password": "Bevestig je nieuwe wachtwoord",
|
||||||
"Continue": "Doorgaan",
|
"Continue": "Doorgaan",
|
||||||
"Could not connect to the integration server": "Mislukt om te verbinden met de integratie server"
|
"Could not connect to the integration server": "Mislukt om te verbinden met de integratie server",
|
||||||
|
"Cancel": "Annuleer"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,10 +10,11 @@
|
||||||
"Algorithm": "Algoritmo",
|
"Algorithm": "Algoritmo",
|
||||||
"all room members, from the point they are invited.": "todos os membros da sala, a partir de quando foram convidados",
|
"all room members, from the point they are invited.": "todos os membros da sala, a partir de quando foram convidados",
|
||||||
"all room members, from the point they joined.": "todos os membros da sala, a partir de quando entraram",
|
"all room members, from the point they joined.": "todos os membros da sala, a partir de quando entraram",
|
||||||
"all room members": "todos os membros da sala",
|
"all room members": "todas as pessoas da sala",
|
||||||
"an address": "um endereço",
|
"an address": "um endereço",
|
||||||
"and": "e",
|
"and": "e",
|
||||||
"An email has been sent to": "Um email foi enviado para",
|
"An email has been sent to": "Um email foi enviado para",
|
||||||
|
"New passwords don't match": "As novas senhas não conferem",
|
||||||
"A new password must be entered.": "Uma nova senha precisa ser informada.",
|
"A new password must be entered.": "Uma nova senha precisa ser informada.",
|
||||||
"answered the call.": "respondeu à chamada.",
|
"answered the call.": "respondeu à chamada.",
|
||||||
"Anyone who knows the room's link, apart from guests": "Qualquer pessoa que tenha o link da sala, exceto visitantes",
|
"Anyone who knows the room's link, apart from guests": "Qualquer pessoa que tenha o link da sala, exceto visitantes",
|
||||||
|
@ -34,7 +35,7 @@
|
||||||
"changed their profile picture": "alterou sua foto de perfil",
|
"changed their profile picture": "alterou sua foto de perfil",
|
||||||
"changed the power level of": "mudou o nível de permissões de",
|
"changed the power level of": "mudou o nível de permissões de",
|
||||||
"changed the room name to": "mudou o nome da sala para",
|
"changed the room name to": "mudou o nome da sala para",
|
||||||
"changed the topic to": "mudou o tópico para",
|
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s mudou o tópico para \"%(topic)s\".",
|
||||||
"Changes to who can read history will only apply to future messages in this room": "As mudanças sobre quem pode ler o histórico da sala só serão aplicadas às mensagens futuras nesta sala",
|
"Changes to who can read history will only apply to future messages in this room": "As mudanças sobre quem pode ler o histórico da sala só serão aplicadas às mensagens futuras nesta sala",
|
||||||
"Changes your display nickname": "Troca o seu apelido",
|
"Changes your display nickname": "Troca o seu apelido",
|
||||||
"Claimed Ed25519 fingerprint key": "Chave reivindicada da Impressão Digital Ed25519",
|
"Claimed Ed25519 fingerprint key": "Chave reivindicada da Impressão Digital Ed25519",
|
||||||
|
@ -43,6 +44,7 @@
|
||||||
"Click here": "Clique aqui",
|
"Click here": "Clique aqui",
|
||||||
"Click here to fix": "Clique aqui para resolver isso",
|
"Click here to fix": "Clique aqui para resolver isso",
|
||||||
"Commands": "Comandos",
|
"Commands": "Comandos",
|
||||||
|
"Confirm password": "Confirme a nova senha",
|
||||||
"Confirm your new password": "Confirme a nova senha",
|
"Confirm your new password": "Confirme a nova senha",
|
||||||
"Continue": "Continuar",
|
"Continue": "Continuar",
|
||||||
"Could not connect to the integration server": "Não foi possível conectar ao servidor de integrações",
|
"Could not connect to the integration server": "Não foi possível conectar ao servidor de integrações",
|
||||||
|
@ -50,6 +52,7 @@
|
||||||
"Create a new account": "Criar uma conta",
|
"Create a new account": "Criar uma conta",
|
||||||
"Create Room": "Criar Sala",
|
"Create Room": "Criar Sala",
|
||||||
"Cryptography": "Criptografia",
|
"Cryptography": "Criptografia",
|
||||||
|
"Current password": "Senha atual",
|
||||||
"Curve25519 identity key": "Chave de Indetificação Curve25519",
|
"Curve25519 identity key": "Chave de Indetificação Curve25519",
|
||||||
"Deactivate Account": "Desativar conta",
|
"Deactivate Account": "Desativar conta",
|
||||||
"Deactivate my account": "Desativar minha conta",
|
"Deactivate my account": "Desativar minha conta",
|
||||||
|
@ -89,7 +92,7 @@
|
||||||
"favourite": "favoritar",
|
"favourite": "favoritar",
|
||||||
"Favourite": "Favorito",
|
"Favourite": "Favorito",
|
||||||
"Favourites": "Favoritos",
|
"Favourites": "Favoritos",
|
||||||
"Filter room members": "Filtrar membros de sala",
|
"Filter room members": "Filtrar integrantes da sala",
|
||||||
"Forget room": "Esquecer sala",
|
"Forget room": "Esquecer sala",
|
||||||
"Forgot your password?": "Esqueceu sua senha?",
|
"Forgot your password?": "Esqueceu sua senha?",
|
||||||
"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 segurança, deslogar irá remover qualquer chave de criptografia ponta-a-ponta deste navegador. Caso deseje descriptografar o histórico das suas conversas E2E em sessões Riot futuras, por favor exporte as chaves da sala para sua garantia.",
|
"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 segurança, deslogar irá remover qualquer chave de criptografia ponta-a-ponta deste navegador. Caso deseje descriptografar o histórico das suas conversas E2E em sessões Riot futuras, por favor exporte as chaves da sala para sua garantia.",
|
||||||
|
@ -108,7 +111,7 @@
|
||||||
"Import E2E room keys": "Importar chave de criptografia ponta-a-ponta (E2E) da sala",
|
"Import E2E room keys": "Importar chave de criptografia ponta-a-ponta (E2E) da sala",
|
||||||
"Invalid Email Address": "Endereço de email inválido",
|
"Invalid Email Address": "Endereço de email inválido",
|
||||||
"invited": "convidou",
|
"invited": "convidou",
|
||||||
"Invite new room members": "Convidar novo membros para sala",
|
"Invite new room members": "Convidar novas pessoas para ingressar na sala",
|
||||||
"Invites": "Convidar",
|
"Invites": "Convidar",
|
||||||
"Invites user with given id to current room": "Convidar usuários com um dado identificador para esta sala",
|
"Invites user with given id to current room": "Convidar usuários com um dado identificador para esta sala",
|
||||||
"is a": "é um(a)",
|
"is a": "é um(a)",
|
||||||
|
@ -152,12 +155,13 @@
|
||||||
"other": "outro",
|
"other": "outro",
|
||||||
"others": "outros",
|
"others": "outros",
|
||||||
"Password": "Senha",
|
"Password": "Senha",
|
||||||
|
"Passwords can't be empty": "As senhas não podem estar em branco",
|
||||||
"People": "Pessoas",
|
"People": "Pessoas",
|
||||||
"Permissions": "Permissões",
|
"Permissions": "Permissões",
|
||||||
"Phone": "Telefone",
|
"Phone": "Telefone",
|
||||||
"placed a": "iniciou uma",
|
"placed a": "iniciou uma",
|
||||||
"Please check your email and click on the link it contains. Once this is done, click continue.": "Por favor verifique seu email e clique no link enviado. Quando finalizar este processo, clique para continuar.",
|
"Please check your email and click on the link it contains. Once this is done, click continue.": "Por favor verifique seu email e clique no link enviado. Quando finalizar este processo, clique para continuar.",
|
||||||
"Please Register": "Por favor, cadastre-se",
|
"Please Register": "Por favor registe-se",
|
||||||
"Privacy warning": "Alerta sobre privacidade",
|
"Privacy warning": "Alerta sobre privacidade",
|
||||||
"Privileged Users": "Usuárias/os privilegiadas/os",
|
"Privileged Users": "Usuárias/os privilegiadas/os",
|
||||||
"Profile": "Perfil",
|
"Profile": "Perfil",
|
||||||
|
@ -177,6 +181,7 @@
|
||||||
"Room Colour": "Cores da sala",
|
"Room Colour": "Cores da sala",
|
||||||
"Room name (optional)": "Título da Sala (opcional)",
|
"Room name (optional)": "Título da Sala (opcional)",
|
||||||
"Rooms": "Salas",
|
"Rooms": "Salas",
|
||||||
|
"Scroll to bottom of page": "Ir para o fim da página",
|
||||||
"Scroll to unread messages": "Rolar para baixo para ver as mensagens não lidas",
|
"Scroll to unread messages": "Rolar para baixo para ver as mensagens não lidas",
|
||||||
"Searches DuckDuckGo for results": "Buscar por resultados no buscador DuckDuckGo",
|
"Searches DuckDuckGo for results": "Buscar por resultados no buscador DuckDuckGo",
|
||||||
"Send a message (unencrypted)": "Enviar uma mensagem",
|
"Send a message (unencrypted)": "Enviar uma mensagem",
|
||||||
|
@ -188,7 +193,7 @@
|
||||||
"sent an invitation to": "enviou um convite para",
|
"sent an invitation to": "enviou um convite para",
|
||||||
"sent a video": "enviou um vídeo",
|
"sent a video": "enviou um vídeo",
|
||||||
"Server may be unavailable or overloaded": "Servidor pode estar indisponível ou sobrecarregado",
|
"Server may be unavailable or overloaded": "Servidor pode estar indisponível ou sobrecarregado",
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Servidor pode estar indisponível, sobrecarregado ou aconteceu um erro de execução.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "O servidor pode estar indisponível ou sobrecarregado, ou então você encontrou uma falha no sistema.",
|
||||||
"Session ID": "Identificador de sessão",
|
"Session ID": "Identificador de sessão",
|
||||||
"set a profile picture": "colocou uma foto de perfil",
|
"set a profile picture": "colocou uma foto de perfil",
|
||||||
"set their display name to": "configurou seu nome para",
|
"set their display name to": "configurou seu nome para",
|
||||||
|
@ -256,7 +261,7 @@
|
||||||
"VoIP conference finished.": "Conferência VoIP encerrada.",
|
"VoIP conference finished.": "Conferência VoIP encerrada.",
|
||||||
"VoIP conference started.": "Conferência VoIP iniciada.",
|
"VoIP conference started.": "Conferência VoIP iniciada.",
|
||||||
"(warning: cannot be disabled again!)": "(atenção: esta operação não poderá ser desfeita depois!)",
|
"(warning: cannot be disabled again!)": "(atenção: esta operação não poderá ser desfeita depois!)",
|
||||||
"Warning!": "Atenção!",
|
"Warning": "Atenção!",
|
||||||
"was banned": "banida/o",
|
"was banned": "banida/o",
|
||||||
"was invited": "convidada/o",
|
"was invited": "convidada/o",
|
||||||
"was kicked": "retirada/o da sala",
|
"was kicked": "retirada/o da sala",
|
||||||
|
@ -265,7 +270,7 @@
|
||||||
"were": "foram",
|
"were": "foram",
|
||||||
"Who can access this room?": "Quem pode acessar esta sala?",
|
"Who can access this room?": "Quem pode acessar esta sala?",
|
||||||
"Who can read history?": "Quem pode ler o histórico da sala?",
|
"Who can read history?": "Quem pode ler o histórico da sala?",
|
||||||
"Who would you like to add to this room?": "Quem Você gostaria que fosse adicionado a esta sala?",
|
"Who would you like to add to this room?": "Quais pessoas você gostaria de adicionar a esta sala?",
|
||||||
"Who would you like to communicate with?": "Com quem você gostaria de se comunicar?",
|
"Who would you like to communicate with?": "Com quem você gostaria de se comunicar?",
|
||||||
"withdrawn": "retirado",
|
"withdrawn": "retirado",
|
||||||
"Would you like to": "Você gostaria de",
|
"Would you like to": "Você gostaria de",
|
||||||
|
@ -318,14 +323,13 @@
|
||||||
"%(senderName)s changed their profile picture.": "%(senderName)s alterou sua imagem de perfil.",
|
"%(senderName)s changed their profile picture.": "%(senderName)s alterou sua imagem de perfil.",
|
||||||
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s alterou o nível de permissões de %(powerLevelDiffText)s.",
|
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s alterou o nível de permissões de %(powerLevelDiffText)s.",
|
||||||
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s alterou o nome da sala para %(roomName)s.",
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s alterou o nome da sala para %(roomName)s.",
|
||||||
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s alterou o tópico para \"%(topic)s\".",
|
|
||||||
"click to reveal": "clique para ver",
|
"click to reveal": "clique para ver",
|
||||||
"Conference call failed.": "Chamada de conferência falhou.",
|
"Conference call failed.": "Chamada de conferência falhou.",
|
||||||
"Conference calling is in development and may not be reliable.": "Chamadas de conferência estão em desenvolvimento e portanto podem não funcionar.",
|
"Conference calling is in development and may not be reliable.": "Chamadas de conferência estão em desenvolvimento e portanto podem não funcionar.",
|
||||||
"Conference calls are not supported in encrypted rooms": "Chamadas de conferência não são possíveis em salas criptografadas",
|
"Conference calls are not supported in encrypted rooms": "Chamadas de conferência não são possíveis em salas criptografadas",
|
||||||
"Conference calls are not supported in this client": "Chamadas de conferência não são possíveis neste navegador",
|
"Conference calls are not supported in this client": "Chamadas de conferência não são possíveis neste navegador",
|
||||||
"/ddg is not a command": "/ddg não é um comando",
|
"/ddg is not a command": "/ddg não é um comando",
|
||||||
"Drop here %(toAction)s": "Arraste aqui %(toAction)s",
|
"Drop here %(toAction)s": "Arraste aqui para %(toAction)s",
|
||||||
"Drop here to tag %(section)s": "Arraste aqui para marcar como %(section)s",
|
"Drop here to tag %(section)s": "Arraste aqui para marcar como %(section)s",
|
||||||
"%(senderName)s ended the call.": "%(senderName)s finalizou a chamada.",
|
"%(senderName)s ended the call.": "%(senderName)s finalizou a chamada.",
|
||||||
"Existing Call": "Chamada em andamento",
|
"Existing Call": "Chamada em andamento",
|
||||||
|
@ -380,6 +384,7 @@
|
||||||
"To remove other users' messages": "Para apagar mensagens de outras pessoas",
|
"To remove other users' messages": "Para apagar mensagens de outras pessoas",
|
||||||
"to restore": "para restaurar",
|
"to restore": "para restaurar",
|
||||||
"to start a chat with someone": "para iniciar uma conversa com alguém",
|
"to start a chat with someone": "para iniciar uma conversa com alguém",
|
||||||
|
"to tag as %(tagName)s": "para marcar como %(tagName)s",
|
||||||
"to tag direct chat": "para marcar a conversa como pessoal",
|
"to tag direct chat": "para marcar a conversa como pessoal",
|
||||||
"To use it, just wait for autocomplete results to load and tab through them.": "Para usar esta funcionalidade, espere o carregamento dos resultados de autocompletar e então escolha entre as opções.",
|
"To use it, just wait for autocomplete results to load and tab through them.": "Para usar esta funcionalidade, espere o carregamento dos resultados de autocompletar e então escolha entre as opções.",
|
||||||
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s ativou criptografia ponta a ponta (algoritmo %(algorithm)s).",
|
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s ativou criptografia ponta a ponta (algoritmo %(algorithm)s).",
|
||||||
|
@ -391,7 +396,7 @@
|
||||||
"Usage": "Uso",
|
"Usage": "Uso",
|
||||||
"Use with caution": "Use com cautela",
|
"Use with caution": "Use com cautela",
|
||||||
"VoIP is unsupported": "Chamada de voz não permitida",
|
"VoIP is unsupported": "Chamada de voz não permitida",
|
||||||
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s desfez o convite a %(targetName)s's.",
|
"%(senderName)s withdrew %(targetName)s's invitation.": "%(senderName)s desfez o convite a %(targetName)s.",
|
||||||
"You are already in a call.": "Você já está em uma chamada.",
|
"You are already in a call.": "Você já está em uma chamada.",
|
||||||
"You're not in any rooms yet! Press": "Você ainda não está em nenhuma sala! Pressione",
|
"You're not in any rooms yet! Press": "Você ainda não está em nenhuma sala! Pressione",
|
||||||
"You are trying to access %(roomName)s": "Você está tentando acessar a sala %(roomName)s",
|
"You are trying to access %(roomName)s": "Você está tentando acessar a sala %(roomName)s",
|
||||||
|
@ -428,27 +433,28 @@
|
||||||
"now. You can also select individual messages to resend or cancel.": "agora. Você também pode escolher mensagens individuais e definir se vai reenviar ou cancelar o envio.",
|
"now. You can also select individual messages to resend or cancel.": "agora. Você também pode escolher mensagens individuais e definir se vai reenviar ou cancelar o envio.",
|
||||||
"Active call": "Chamada ativa",
|
"Active call": "Chamada ativa",
|
||||||
"af": "Afrikaans",
|
"af": "Afrikaans",
|
||||||
"ar-ae": "Árabe (U.A.E.)",
|
"ar-ae": "Árabe (E.A.U.)",
|
||||||
"ar-bh": "Árabe (Bahrain)",
|
"ar-bh": "Árabe (Bahrain)",
|
||||||
"ar-dz": "Árabe (Algéria)",
|
"ar-dz": "Árabe (Argélia)",
|
||||||
"ar-eg": "Árabe (Egipto)",
|
"Sunday": "Domingo",
|
||||||
"ar-tn": "Árabe (Tunisia)",
|
"Monday": "Segunda-feira",
|
||||||
"be": "Bielorusso",
|
"ar-eg": "Árabe (Egito)",
|
||||||
|
"ar-tn": "Árabe (Tunísia)",
|
||||||
|
"be": "Bielorrusso",
|
||||||
"bg": "Búlgaro",
|
"bg": "Búlgaro",
|
||||||
"ca": "Catalão",
|
"ca": "Catalão",
|
||||||
"cs": "Checo",
|
"cs": "Checo",
|
||||||
"de-at": "Alemao (Austria)",
|
|
||||||
"el": "Grego",
|
"el": "Grego",
|
||||||
"en-au": "Inglês (Austrália)",
|
"en-au": "Inglês (Austrália)",
|
||||||
"en-ca": "Inglês (Canadá)",
|
"en-ca": "Inglês (Canadá)",
|
||||||
|
"en-gb": "Inglês (Reino Unido)",
|
||||||
"en-ie": "Inglês (Irlanda)",
|
"en-ie": "Inglês (Irlanda)",
|
||||||
"en-nz": "Inglês (Nova Zelândia)",
|
"en-nz": "Inglês (Nova Zelândia)",
|
||||||
"en-us": "Inglês (Estados Unidos)",
|
"en-us": "Inglês (Estados Unidos)",
|
||||||
"es-ar": "Espanhol (Argentina)",
|
"es-ar": "Espanhol (Argentina)",
|
||||||
"es-mx": "Espanhol (Mexico)",
|
|
||||||
"es-py": "Espanhol (Paraguai)",
|
"es-py": "Espanhol (Paraguai)",
|
||||||
"es": "Espanhol (Espanha)",
|
"es": "Espanhol (Espanha)",
|
||||||
"et": "Estoniano",
|
"et": "Estônia",
|
||||||
"fa": "Farsi",
|
"fa": "Farsi",
|
||||||
"fi": "Finlandês",
|
"fi": "Finlandês",
|
||||||
"fr-be": "Francês (Bélgica)",
|
"fr-be": "Francês (Bélgica)",
|
||||||
|
@ -457,45 +463,418 @@
|
||||||
"fr": "Francês",
|
"fr": "Francês",
|
||||||
"ga": "Irlandês",
|
"ga": "Irlandês",
|
||||||
"he": "Hebreu",
|
"he": "Hebreu",
|
||||||
"hi": "Hindi",
|
"hi": "Hindu",
|
||||||
"hr": "Croata",
|
"hr": "Croácia",
|
||||||
"hu": "Húngaro",
|
"hu": "Hungria",
|
||||||
"id": "Indonésio",
|
"id": "Indonésio",
|
||||||
"is": "Islandês",
|
"is": "Islandês",
|
||||||
"it": "Italiano",
|
"it": "Italiano",
|
||||||
"ja": "Japonês",
|
"ja": "Japonês",
|
||||||
"ji": "iídiche",
|
"ji": "Ídiche",
|
||||||
"lt": "Lituano",
|
"lt": "Lituânia",
|
||||||
"lv": "Letão",
|
"lv": "Letão",
|
||||||
|
"ms": "Malaio",
|
||||||
"mt": "Maltês",
|
"mt": "Maltês",
|
||||||
"nl-be": "Holandês (Bélgica)",
|
"nl-be": "Holandês (Bélgica)",
|
||||||
"nl": "Holandês",
|
"nl": "Holandês",
|
||||||
"no": "Norueguês",
|
"no": "Norueguês",
|
||||||
"pl": "Polaco",
|
"pl": "Polonês",
|
||||||
"pt": "Português",
|
"pt": "Português (Portugal)",
|
||||||
|
"rm": "Romanche",
|
||||||
"ro": "Romeno",
|
"ro": "Romeno",
|
||||||
"sk": "Eslovaco",
|
"sk": "Eslovaco",
|
||||||
"sl": "Esloveno",
|
"sl": "Esloveno",
|
||||||
"sq": "Albanês",
|
"sq": "Albanês",
|
||||||
"sr": "Sérvio (Latim)",
|
"sr": "Sérvio",
|
||||||
"sv": "Sueco",
|
"sv": "Suécia",
|
||||||
"th": "Tailandês",
|
"th": "Tailandês",
|
||||||
"tn": "tswana",
|
"tn": "Tsuana",
|
||||||
"tr": "Turco",
|
"tr": "Turquia",
|
||||||
"ts": "tsonga",
|
"ts": "Tsonga",
|
||||||
"uk": "Ucraniano",
|
"uk": "Ucraniano",
|
||||||
"ur": "urdu",
|
"ur": "Urdu",
|
||||||
"ve": "venda",
|
|
||||||
"vi": "Vietnamita",
|
"vi": "Vietnamita",
|
||||||
"xh": "xosa",
|
"xh": "Xhosa",
|
||||||
"zu": "zulu",
|
"zu": "Zulu",
|
||||||
"Failed to forget room %(errCode)s": "Falha ao esquecer a sala %(errCode)s",
|
"Failed to forget room %(errCode)s": "Falha ao esquecer a sala %(errCode)s",
|
||||||
"Failed to join the room": "Falha ao entrar na sala",
|
"Failed to join the room": "Falha ao entrar na sala",
|
||||||
"Sunday": "Domingo",
|
"Tuesday": "Terça-feira",
|
||||||
"Monday": "Segunda",
|
"Wednesday": "Quarta-feira",
|
||||||
"Tuesday": "Terça",
|
"Thursday": "Quinta-feira",
|
||||||
"Wednesday": "Quarta",
|
"Friday": "Sexta-feira",
|
||||||
"Thursday": "Quinta",
|
"Saturday": "Sábado",
|
||||||
"Friday": "Sexta",
|
"ar-iq": "Árabe (Iraque)",
|
||||||
"Saturday": "Sábado"
|
"ar-jo": "Árabe (Jordânia)",
|
||||||
|
"ar-kw": "Árabe (Kuwait)",
|
||||||
|
"ar-lb": "Árabe (Líbano)",
|
||||||
|
"ar-ly": "Árabe (Líbia)",
|
||||||
|
"ar-ma": "Árabe (Marrocos)",
|
||||||
|
"ar-om": "Árabe (Omã)",
|
||||||
|
"ar-qa": "Árabe (Catar)",
|
||||||
|
"ar-sa": "Árabe (Arábia Saudita)",
|
||||||
|
"ar-sy": "Árabe (Síria)",
|
||||||
|
"ar-ye": "Árabe (Iémen)",
|
||||||
|
"de-at": "Alemão (Áustria)",
|
||||||
|
"de-ch": "Alemão (Suíça)",
|
||||||
|
"de-li": "Alemão (Liechtenstein)",
|
||||||
|
"de-lu": "Alemão (Luxemburgo)",
|
||||||
|
"en-bz": "Inglês (Belize)",
|
||||||
|
"en-jm": "Inglês (Jamaica)",
|
||||||
|
"en-tt": "Inglês (Trindade)",
|
||||||
|
"en-za": "English (África do Sul)",
|
||||||
|
"es-bo": "Espanhol (Bolívia)",
|
||||||
|
"es-cl": "Espanhol (Chile)",
|
||||||
|
"es-co": "Espanhol (Colômbia)",
|
||||||
|
"es-cr": "Espanhol (Costa Rica)",
|
||||||
|
"es-do": "Espanhol (República Dominicana)",
|
||||||
|
"es-ec": "Espanhol (Equador)",
|
||||||
|
"es-gt": "Espanhol (Guatemala)",
|
||||||
|
"es-hn": "Espanhol (Honduras)",
|
||||||
|
"es-mx": "Espanhol (México)",
|
||||||
|
"es-ni": "Espanhol (Nicarágua)",
|
||||||
|
"es-pa": "Espanhol (Panamá)",
|
||||||
|
"%(oneUser)schanged their avatar": "%(oneUser)salterou sua imagem pública",
|
||||||
|
"es-pe": "Espanhol (Peru)",
|
||||||
|
"es-pr": "Espanhol (Porto Rico)",
|
||||||
|
"es-sv": "Espanhol (El Salvador)",
|
||||||
|
"es-uy": "Espanhol (Uruguai)",
|
||||||
|
"es-ve": "Espanhol (Venezuela)",
|
||||||
|
"eu": "Basco (Basco)",
|
||||||
|
"fr-lu": "Francês (Luxemburgo)",
|
||||||
|
"gd": "Galês (Escócia)",
|
||||||
|
"it-ch": "Italiano (Suíça)",
|
||||||
|
"ko": "Coreano",
|
||||||
|
"mk": "Macedônio (República da Macedônia)",
|
||||||
|
"ro-mo": "Romano (Moldávia)",
|
||||||
|
"ru-mo": "Russo (Moldávia)",
|
||||||
|
"sb": "Sorábio",
|
||||||
|
"sv-fi": "Sueco (Finlândia)",
|
||||||
|
"zh-cn": "Chinês (República Popular da China)",
|
||||||
|
"zh-hk": "Chinês (Hong Kong SAR)",
|
||||||
|
"zh-sg": "Chinês (Singapura)",
|
||||||
|
"zh-tw": "Chinês (Taiwan)",
|
||||||
|
"A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "Uma mensagem de texto foi enviada para +%(msisdn)s. Gentileza entrar com o código de verificação que contém",
|
||||||
|
"%(items)s and %(remaining)s others": "%(items)s e %(remaining)s outros",
|
||||||
|
"%(items)s and one other": "%(items)s e um outro",
|
||||||
|
"%(items)s and %(lastItem)s": "%(items)s e %(lastItem)s",
|
||||||
|
"and %(overflowCount)s others...": "e %(overflowCount)s outros...",
|
||||||
|
"and one other...": "e um outro...",
|
||||||
|
"Are you sure?": "Você tem certeza?",
|
||||||
|
"Attachment": "Anexo",
|
||||||
|
"Autoplay GIFs and videos": "Reproduzir automaticamente GIFs e videos",
|
||||||
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s de %(monthName)s de %(fullYear)s às %(time)s",
|
||||||
|
"fo": "Feroês",
|
||||||
|
"sx": "Sutu",
|
||||||
|
"sz": "Sami (Lappish)",
|
||||||
|
"ve": "Venda",
|
||||||
|
"Can't connect to homeserver - please check your connectivity and ensure your <a>homeserver's SSL certificate</a> is trusted.": "Não consigo conectar ao servidor padrão - favor checar sua conexão à internet e verificar se o certificado SSL do seu <a>servidor padrão</a> é confiável.",
|
||||||
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Não consigo conectar ao servidor padrão através de HTTP quando uma URL HTTPS está na barra de endereços do seu navegador. Use HTTPS ou então <a>habilite scripts não seguros no seu navegador</a>.",
|
||||||
|
"Change Password": "Alterar senha",
|
||||||
|
"changing room on a RoomView is not supported": "mudar a sala em uma 'RoomView' não é permitido",
|
||||||
|
"Click to mute audio": "Clique para colocar o áudio no mudo",
|
||||||
|
"Click to mute video": "Clique para desabilitar imagens de vídeo",
|
||||||
|
"Click to unmute video": "Clique para voltar a mostrar imagens de vídeo",
|
||||||
|
"Click to unmute audio": "Clique para retirar áudio do mudo",
|
||||||
|
"Command error": "Erro de comando",
|
||||||
|
"Decrypt %(text)s": "Descriptografar %(text)s",
|
||||||
|
"Delete": "Apagar",
|
||||||
|
"Devices": "Dispositivos",
|
||||||
|
"Direct chats": "Conversas pessoais",
|
||||||
|
"Disinvite": "Desconvidar",
|
||||||
|
"Don't send typing notifications": "Não enviar notificação de estar digitando",
|
||||||
|
"Download %(text)s": "Baixar %(text)s",
|
||||||
|
"Enable encryption": "Habilitar criptografia",
|
||||||
|
"Enter Code": "Entre com o código",
|
||||||
|
"Failed to ban user": "Não foi possível banir o/a usuário/a",
|
||||||
|
"Failed to change power level": "Não foi possível mudar o nível de permissões",
|
||||||
|
"Failed to delete device": "Não foi possível remover o dispositivo",
|
||||||
|
"Failed to join room": "Não foi possível ingressar na sala",
|
||||||
|
"Failed to kick": "Não foi possível remover usuária/o",
|
||||||
|
"Failed to load timeline position": "Não foi possível carregar a posição na linha do tempo",
|
||||||
|
"Failed to mute user": "Não foi possível remover notificações da/do usuária/o",
|
||||||
|
"Failed to reject invite": "Não foi possível rejeitar o convite",
|
||||||
|
"Failed to save settings": "Não foi possível salvar as configurações",
|
||||||
|
"Failed to set display name": "Houve falha ao definir o nome público",
|
||||||
|
"Failed to toggle moderator status": "Houve falha ao alterar o status de moderador/a",
|
||||||
|
"Fill screen": "Tela cheia",
|
||||||
|
"Hide read receipts": "Ocultar recebimentos de leitura",
|
||||||
|
"Hide Text Formatting Toolbar": "Ocultar a barra de formatação de texto",
|
||||||
|
"Incorrect verification code": "Código de verificação incorreto",
|
||||||
|
"Invalid alias format": "Formato de alias é inválido",
|
||||||
|
"Invalid address format": "Formato de endereço é inválido",
|
||||||
|
"'%(alias)s' is not a valid format for an address": "'%(alias)s' não é um formato válido para um endereço",
|
||||||
|
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' não é um formato válido para um alias",
|
||||||
|
"Join Room": "Ingressar na sala",
|
||||||
|
"Jump to first unread message.": "Ir diretamente para a primeira das mensagens não lidas.",
|
||||||
|
"Kick": "Remover",
|
||||||
|
"Level": "Nível",
|
||||||
|
"Local addresses for this room:": "Endereço local desta sala:",
|
||||||
|
"Markdown is disabled": "A formatação 'Markdown' está desabilitada",
|
||||||
|
"Markdown is enabled": "A formatação 'Markdown' está habilitada",
|
||||||
|
"Message not sent due to unknown devices being present": "A mensagem não foi enviada por causa da presença de dispositivos desconhecidos",
|
||||||
|
"Never send encrypted messages to unverified devices in this room": "Nunca envie mensagens criptografadas para dispositivos não verificados nesta sala",
|
||||||
|
"New address (e.g. #foo:%(localDomain)s)": "Novo endereço (p.ex: #algo:%(localDomain)s)",
|
||||||
|
"not set": "não definido",
|
||||||
|
"not specified": "não especificado",
|
||||||
|
"No devices with registered encryption keys": "Não há dispositivos com chaves de criptografia registradas",
|
||||||
|
"No more results": "Não há mais resultados",
|
||||||
|
"No results": "Sem resultados",
|
||||||
|
"OK": "Ok",
|
||||||
|
"Revoke Moderator": "Retirar status de moderador",
|
||||||
|
"Search": "Pesquisar",
|
||||||
|
"Search failed": "Busca falhou",
|
||||||
|
"Server error": "Erro no servidor",
|
||||||
|
"Server may be unavailable, overloaded, or search timed out :(": "O servidor pode estar indisponível, sobrecarregado, ou a busca ultrapassou o tempo limite :(",
|
||||||
|
"Server may be unavailable, overloaded, or the file too big": "O servidor pode estar indisponível, sobrecarregado, ou o arquivo é muito grande",
|
||||||
|
"Server unavailable, overloaded, or something else went wrong.": "O servidor pode estar indisponível, sobrecarregado, ou alguma outra coisa não funcionou.",
|
||||||
|
"Some of your messages have not been sent": "Algumas das suas mensagens não foram enviadas",
|
||||||
|
"Submit": "Enviar",
|
||||||
|
"The main address for this room is": "O endereço principal desta sala é",
|
||||||
|
"This action cannot be performed by a guest user. Please register to be able to do this": "Esta ação não pode ser realizada por um/a usuário/a visitante. Por favor, registre-se para poder fazer isso",
|
||||||
|
"%(actionVerb)s this person?": "%(actionVerb)s esta pessoa?",
|
||||||
|
"This room has no local addresses": "Esta sala não tem endereços locais",
|
||||||
|
"This room is private or inaccessible to guests. You may be able to join if you register": "Esta sala é privada ou inacessível para visitantes. Você poderá ingressar nela se registrar-se",
|
||||||
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question": "Tentei carregar um ponto específico na linha do tempo desta sala, mas parece que você não tem permissões para ver a mensagem em questão",
|
||||||
|
"Tried to load a specific point in this room's timeline, but was unable to find it": "Tentei carregar um ponto específico na linha do tempo desta sala, mas não o encontrei",
|
||||||
|
"Turn Markdown off": "Desabilitar a formatação 'Markdown'",
|
||||||
|
"Turn Markdown on": "Habilitar a marcação 'Markdown'",
|
||||||
|
"Unable to load device list": "Não foi possível carregar a lista de dispositivos",
|
||||||
|
"Unknown command": "Comando desconhecido",
|
||||||
|
"Unknown room %(roomId)s": "A sala %(roomId)s é desconhecida",
|
||||||
|
"You have been invited to join this room by %(inviterName)s": "Você foi convidada/o por %(inviterName)s a ingressar nesta sala",
|
||||||
|
"You seem to be in a call, are you sure you want to quit?": "Parece que você está em uma chamada. Tem certeza que quer sair?",
|
||||||
|
"You seem to be uploading files, are you sure you want to quit?": "Parece que você está enviando arquivos. Tem certeza que quer sair?",
|
||||||
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself": "Você não poderá desfazer esta mudança, pois estará dando a este(a) usuário(a) o mesmo nível de permissões que você",
|
||||||
|
"Make Moderator": "Tornar moderador(a)",
|
||||||
|
"Room": "Sala",
|
||||||
|
"(~%(searchCount)s results)": "(±%(searchCount)s resultados)",
|
||||||
|
"Cancel": "Cancelar",
|
||||||
|
"bold": "negrito",
|
||||||
|
"italic": "itálico",
|
||||||
|
"strike": "tachado",
|
||||||
|
"underline": "sublinhado",
|
||||||
|
"code": "código de programação",
|
||||||
|
"quote": "citação",
|
||||||
|
"bullet": "marcador de lista",
|
||||||
|
"numbullet": "marcador de numeração",
|
||||||
|
"%(severalUsers)sjoined %(repeats)s times": "%(severalUsers)singressaram %(repeats)s vezes",
|
||||||
|
"%(oneUser)sjoined %(repeats)s times": "%(oneUser)singressou %(repeats)s vezes",
|
||||||
|
"%(severalUsers)sjoined": "%(severalUsers)singressaram",
|
||||||
|
"%(oneUser)sjoined": "%(oneUser)singressou",
|
||||||
|
"%(severalUsers)sleft %(repeats)s times": "%(severalUsers)ssaíram %(repeats)s vezes",
|
||||||
|
"%(oneUser)sleft %(repeats)s times": "%(oneUser)ssaiu %(repeats)s vezes",
|
||||||
|
"%(severalUsers)sleft": "%(severalUsers)ssaíram",
|
||||||
|
"%(oneUser)sleft": "%(oneUser)ssaiu",
|
||||||
|
"%(severalUsers)sjoined and left %(repeats)s times": "%(severalUsers)singressaram e saíram %(repeats)s vezes",
|
||||||
|
"%(oneUser)sjoined and left %(repeats)s times": "%(oneUser)singressou e saiu %(repeats)s vezes",
|
||||||
|
"%(severalUsers)sjoined and left": "%(severalUsers)singressaram e saíram",
|
||||||
|
"%(oneUser)sjoined and left": "%(oneUser)singressou e saiu",
|
||||||
|
"%(severalUsers)sleft and rejoined %(repeats)s times": "%(severalUsers)ssaíram e entraram novamente %(repeats)s vezes",
|
||||||
|
"%(oneUser)sleft and rejoined %(repeats)s times": "%(oneUser)ssaiu e entrou novamente %(repeats)s vezes",
|
||||||
|
"%(severalUsers)sleft and rejoined": "%(severalUsers)ssaíram e entraram novamente",
|
||||||
|
"%(oneUser)sleft and rejoined": "%(oneUser)ssaiu e entrou novamente",
|
||||||
|
"%(severalUsers)srejected their invitations %(repeats)s times": "%(severalUsers)srejeitaram seus convites %(repeats)s vezes",
|
||||||
|
"%(oneUser)srejected their invitation %(repeats)s times": "%(oneUser)srejeitou seu convite %(repeats)s vezes",
|
||||||
|
"%(severalUsers)srejected their invitations": "%(severalUsers)srejeitaram seus convites",
|
||||||
|
"%(oneUser)srejected their invitation": "%(oneUser)srejeitou seu convite",
|
||||||
|
"%(severalUsers)shad their invitations withdrawn %(repeats)s times": "%(severalUsers)stiveram seus convites desfeitos %(repeats)s vezes",
|
||||||
|
"%(oneUser)shad their invitation withdrawn %(repeats)s times": "%(oneUser)steve seu convite desfeito %(repeats)s vezes",
|
||||||
|
"%(severalUsers)shad their invitations withdrawn": "%(severalUsers)stiveram seus convites desfeitos",
|
||||||
|
"%(oneUser)shad their invitation withdrawn": "%(oneUser)steve seu convite desfeito",
|
||||||
|
"were invited %(repeats)s times": "foram convidadas(os) %(repeats)s vezes",
|
||||||
|
"was invited %(repeats)s times": "foi convidada(o) %(repeats)s vezes",
|
||||||
|
"were invited": "foram convidadas(os)",
|
||||||
|
"were banned %(repeats)s times": "foram banidas(os) %(repeats)s vezes",
|
||||||
|
"was banned %(repeats)s times": "foi banida(o) %(repeats)s vezes",
|
||||||
|
"were banned": "foram banidas(os)",
|
||||||
|
"were unbanned %(repeats)s times": "tiveram banimento desfeito %(repeats)s vezes",
|
||||||
|
"was unbanned %(repeats)s times": "teve banimento desfeito %(repeats)s vezes",
|
||||||
|
"were unbanned": "tiveram banimento desfeito",
|
||||||
|
"were kicked %(repeats)s times": "foram expulsas(os) %(repeats)s vezes",
|
||||||
|
"was kicked %(repeats)s times": "foi expulsa(o) %(repeats)s vezes",
|
||||||
|
"were kicked": "foram expulsas(os)",
|
||||||
|
"%(severalUsers)schanged their name %(repeats)s times": "%(severalUsers)salteraram seu nome %(repeats)s vezes",
|
||||||
|
"%(oneUser)schanged their name %(repeats)s times": "%(oneUser)salterou seu nome %(repeats)s vezes",
|
||||||
|
"%(severalUsers)schanged their name": "%(severalUsers)salteraram seus nomes",
|
||||||
|
"%(oneUser)schanged their name": "%(oneUser)salterou seu nome",
|
||||||
|
"%(severalUsers)schanged their avatar %(repeats)s times": "%(severalUsers)salteraram sua imagem pública %(repeats)s vezes",
|
||||||
|
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)salterou sua imagem pública %(repeats)s vezes",
|
||||||
|
"%(severalUsers)schanged their avatar": "%(severalUsers)salteraram sua imagem pública",
|
||||||
|
"Ban": "Banir",
|
||||||
|
"A registered account is required for this action": "Uma conta registrada é necessária para esta ação",
|
||||||
|
"Access Token:": "Token de acesso:",
|
||||||
|
"Always show message timestamps": "Sempre mostrar as datas das mensagens",
|
||||||
|
"Authentication": "Autenticação",
|
||||||
|
"An error has occurred.": "Ocorreu um erro.",
|
||||||
|
"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.": "Alterar a senha irá atualmente apagar todas as chaves de criptografia ponta-a-ponta em todos os dispositivos, fazendo com que o histórico da conversa fique ilegível, a não ser que você exporte antes as chaves de sala e então as reimporte depois. No futuro, isso vai melhorar.",
|
||||||
|
"Email": "Email",
|
||||||
|
"Email address": "Endereço de email",
|
||||||
|
"Error decrypting attachment": "Erro ao descriptografar o anexo",
|
||||||
|
"Interface Language": "Idioma da interface",
|
||||||
|
"Invalid file%(extra)s": "Arquivo inválido %(extra)s",
|
||||||
|
"Logged in as:": "Logado como:",
|
||||||
|
"matrix-react-sdk version:": "versão do matrix-react-sdk:",
|
||||||
|
"Mute": "Silenciar",
|
||||||
|
"olm version:": "versão do olm:",
|
||||||
|
"Operation failed": "A operação falhou",
|
||||||
|
"Registration required": "Registro obrigatório",
|
||||||
|
"Remove %(threePid)s?": "Remover %(threePid)s?",
|
||||||
|
"Report it": "Reportar",
|
||||||
|
"riot-web version:": "versão do riot-web:",
|
||||||
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar os horários em formato de 12h (p.ex: 2:30pm)",
|
||||||
|
"Unmute": "Tirar do mudo",
|
||||||
|
"Warning!": "Atenção!",
|
||||||
|
"You need to enter a user name.": "Você precisa inserir um nome de usuária(o).",
|
||||||
|
"Please select the destination room for this message": "Por favor, escolha a sala para onde quer encaminhar esta mensagem",
|
||||||
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
|
||||||
|
"Analytics": "Análise",
|
||||||
|
"Opt out of analytics": "Sair da ferramenta de análise",
|
||||||
|
"Options": "Opções",
|
||||||
|
"Riot collects anonymous analytics to allow us to improve the application.": "Riot coleta informações anônimas de uso para nos permitir melhorar o sistema.",
|
||||||
|
"Passphrases must match": "As senhas têm que ser iguais",
|
||||||
|
"Passphrase must not be empty": "A senha não pode estar vazia",
|
||||||
|
"Export room keys": "Exportar chaves de sala",
|
||||||
|
"Enter passphrase": "Entre com a senha",
|
||||||
|
"Confirm passphrase": "Confirme a senha",
|
||||||
|
"Import room keys": "Importar chaves de sala",
|
||||||
|
"File to import": "Arquivo para importar",
|
||||||
|
"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 processo permite que você exporte as chaves para mensagens que você recebeu em salas criptografadas para um arquivo local. Você poderá então importar o arquivo para outro cliente Matrix no futuro, de modo que este cliente também poderá descriptografar suas mensagens.",
|
||||||
|
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O arquivo exportado será protegido com uma senha. Você deverá inserir a senha aqui para poder descriptografar o arquivo futuramente.",
|
||||||
|
"You must join the room to see its files": "Você precisa ingressar na sala para ver seus arquivos",
|
||||||
|
"Reject all %(invitedRooms)s invites": "Rejeitar todos os %(invitedRooms)s convites",
|
||||||
|
"Start new chat": "Iniciar nova conversa",
|
||||||
|
"Guest users can't invite users. Please register.": "Visitantes não podem convidar usuárias(os) registradas(os). Favor registrar.",
|
||||||
|
"Failed to invite": "Falha ao enviar o convite",
|
||||||
|
"Failed to invite user": "Falha ao convidar a(o) usuária(o)",
|
||||||
|
"Failed to invite the following users to the %(roomName)s room:": "Falha ao convidar as(os) seguintes usuárias(os) para a sala %(roomName)s:",
|
||||||
|
"Confirm Removal": "Confirmar a remoção",
|
||||||
|
"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.": "Você tem certeza que quer apagar este evento? Note que se você apaga o nome de uma sala ou uma mudança de tópico, esta ação não poderá ser desfeita.",
|
||||||
|
"Unknown error": "Erro desconhecido",
|
||||||
|
"Incorrect password": "Senha incorreta",
|
||||||
|
"This will make your account permanently unusable. You will not be able to re-register the same user ID.": "Isso tornará a sua conta permanentemente inusável. Você não será capaz de registrar novamente o mesmo ID de usuário.",
|
||||||
|
"This action is irreversible.": "Esta ação é irreversível.",
|
||||||
|
"To continue, please enter your password.": "Para continuar, por favor insira a sua senha.",
|
||||||
|
"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 é confiável, por favor entre em contato com a(o) sua(seu) dona(o) usando outros meios, como por exemplo pessoalmente ou por uma chamada telefônica, e pergunte a esta pessoa se a chave que ela está vendo nas suas configurações de usuário para este dispositivo é igual a esta:",
|
||||||
|
"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.": "Se a chave for a mesma, clique no botão \"verificar\" abaixo. Se não for a mesma, então alguma outra pessoa está interceptando este dispositivo e você provavelmente vai querer clicar no botão \"colocar na lista negra\".",
|
||||||
|
"In future this verification process will be more sophisticated.": "No futuro, este processo de verificação será mais sofisticado.",
|
||||||
|
"Verify device": "Verificar o dispositivo",
|
||||||
|
"I verify that the keys match": "Eu confirmo que as chaves são iguais",
|
||||||
|
"We encountered an error trying to restore your previous session. If you continue, you will need to log in again, and encrypted chat history will be unreadable.": "Encontramos um erro tentando restaurar sua sessão anterior. Se você continuar, terá que fazer login novamente, e o histórico da conversa criptografada se tornará ilegível.",
|
||||||
|
"Unable to restore session": "Não foi possível restaurar a sessão",
|
||||||
|
"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.": "Se você já usou antes uma versão mais recente do Riot, a sua sessão pode ser incompatível com esta versão. Feche esta janela e tente abrir com a versão mais recente.",
|
||||||
|
"Continue anyway": "Continuar de qualquer maneira",
|
||||||
|
"Your display name is how you'll appear to others when you speak in rooms. What would you like it to be?": "O seu nome público é como você aparecerá para as outras pessoas quando conversar nas salas. Qual nome público você deseja ter?",
|
||||||
|
"You are currently blacklisting unverified devices; to send messages to these devices you must verify them.": "Você está atualmente bloqueando dispositivos não verificados. Para enviar mensagens para estes dispositivos, você necessita antes verificá-los.",
|
||||||
|
"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.": "Nós recomendamos que você passe pelo processo de verificação para cada dispositivo para confirmar que eles pertencem às pessoas que efetivamente são suas donas, mas você pode reenviar a mensagem sem verificar isso, se assim o desejar.",
|
||||||
|
"\"%(RoomName)s\" contains devices that you haven't seen before.": "\"%(RoomName)s\" contém dispositivos que você não viu antes.",
|
||||||
|
"Unknown devices": "Dispositivos desconhecidos",
|
||||||
|
"Unknown Address": "Endereço desconhecido",
|
||||||
|
"Unblacklist": "Tirar da lista de bloqueados",
|
||||||
|
"Blacklist": "Colocar na lista de bloqueados",
|
||||||
|
"Unverify": "Des-verificar",
|
||||||
|
"Verify...": "Verificar...",
|
||||||
|
"ex. @bob:example.com": "p.ex: @joao:exemplo.com",
|
||||||
|
"Add User": "Adicionar usuária(o)",
|
||||||
|
"This Home Server would like to make sure you are not a robot": "Este Servidor de Base gostaria de confirmar que você não é um robô",
|
||||||
|
"Sign in with CAS": "Assinar com CAS",
|
||||||
|
"Custom Server Options": "Opções para Servidor Personalizado",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.": "Você pode usar as opções de servidor personalizado para entrar em outros servidores Matrix ao especificar uma URL de um Servidor de Base diferente.",
|
||||||
|
"This allows you to use this app with an existing Matrix account on a different home server.": "Isso permite que você use este aplicativo com uma conta Matrix existente em um servidor de base diferente.",
|
||||||
|
"You can also set a custom identity server but this will typically prevent interaction with users based on email address.": "Você também pode definir um servidor de identidades personalizado, mas isso vai impedir a sua interação com outros usuários a partir do endereço de email.",
|
||||||
|
"Dismiss": "Descartar",
|
||||||
|
"Please check your email to continue registration.": "Por favor, verifique o seu e-mail para continuar o processo de registro.",
|
||||||
|
"Token incorrect": "Token incorreto",
|
||||||
|
"A text message has been sent to": "Uma mensagem de texto foi enviada para",
|
||||||
|
"Please enter the code it contains:": "Por favor, entre com o código que está na mensagem:",
|
||||||
|
"powered by Matrix": "rodando a partir do Matrix",
|
||||||
|
"If you don't specify an email address, you won't be able to reset your password. Are you sure?": "Se não especificar um endereço de e-mail, você não poderá redefinir sua senha. Tem certeza?",
|
||||||
|
"You are registering with %(SelectedTeamName)s": "Você está se registrando com %(SelectedTeamName)s",
|
||||||
|
"Default server": "Servidor padrão",
|
||||||
|
"Custom server": "Servidor personalizado",
|
||||||
|
"Home server URL": "URL do servidor de base",
|
||||||
|
"Identity server URL": "URL do servidor de identidades",
|
||||||
|
"What does this mean?": "O que isso significa?",
|
||||||
|
"Error decrypting audio": "Erro ao descriptografar o áudio",
|
||||||
|
"Error decrypting image": "Erro ao descriptografar a imagem",
|
||||||
|
"Image '%(Body)s' cannot be displayed.": "A imagem '%(Body)s' não pode ser exibida.",
|
||||||
|
"This image cannot be displayed.": "Esta imagem não pode ser exibida.",
|
||||||
|
"Error decrypting video": "Erro ao descriptografar o vídeo",
|
||||||
|
"Add an Integration": "Adicionar uma integração",
|
||||||
|
"Removed or unknown message type": "Mensagem removida ou de tipo desconhecido",
|
||||||
|
"Disable URL previews by default for participants in this room": "Desabilitar as pré-visualizações de links por padrão para participantes desta sala",
|
||||||
|
"URL previews are %(globalDisableUrlPreview)s by default for participants in this room.": "As pré-visualizações estão %(globalDisableUrlPreview)s por padrão para integrantes desta sala.",
|
||||||
|
"URL Previews": "Pré-visualização de links",
|
||||||
|
"Enable URL previews for this room (affects only you)": "Habilitar pré-visualizações de links para esta sala (afeta somente a você)",
|
||||||
|
"Drop file here to upload": "Arraste um arquivo aqui para enviar",
|
||||||
|
" (unsupported)": " (não suportado)",
|
||||||
|
"Ongoing conference call%(supportedText)s. %(joinText)s": "Conferência%(supportedText)s em andamento. %(joinText)s",
|
||||||
|
"Online": "Online",
|
||||||
|
"Idle": "Ocioso",
|
||||||
|
"Offline": "Offline",
|
||||||
|
"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 arquivo exportado irá permitir a qualquer pessoa que o acesse a descriptografar qualquer uma das mensagens criptografadas que você veja, portanto seja bastante cuidadosa(o) em manter este arquivo seguro. Para deixar este arquivo mais protegido, recomendamos que você insira uma senha abaixo, que será usada para criptografar o arquivo. Só será possível importar os dados usando exatamente a mesma senha.",
|
||||||
|
"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 processo faz com que você possa importar as chaves de criptografia que tinha previamente exportado de outro cliente Matrix. Você poderá então descriptografar todas as mensagens que o outro cliente pôde criptografar.",
|
||||||
|
"You are about to be taken to a third-party site so you can authenticate your account for use with {integrationsUrl}. Do you wish to continue?": "",
|
||||||
|
"Start automatically after system login": "Iniciar automaticamente ao iniciar o sistema",
|
||||||
|
"Desktop specific": "Específico para o app de computadores desktop",
|
||||||
|
"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?": "Você será levado agora a um site de terceiros para poder autenticar a sua conta para uso com o serviço %(integrationsUrl)s. Você quer continuar?",
|
||||||
|
"Disable URL previews for this room (affects only you)": "Desabilitar as pré-visualizações de sites para esta sala (afeta apenas a você)",
|
||||||
|
"Device already verified!": "Dispositivo já verificado!",
|
||||||
|
"disabled": "desabilitado",
|
||||||
|
"enabled": "habilitado",
|
||||||
|
"Export": "Exportar",
|
||||||
|
"Failed to register as guest:": "Falha ao se registrar como visitante:",
|
||||||
|
"Guest access is disabled on this Home Server.": "O acesso para visitantes está desabilitado neste Servidor de Base.",
|
||||||
|
"Import": "Importar",
|
||||||
|
"Incorrect username and/or password.": "Nome de usuária(o) e/ou senha incorreto.",
|
||||||
|
"Invited": "Convidada(o)",
|
||||||
|
"Results from DuckDuckGo": "Resultados de DuckDuckGo",
|
||||||
|
"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 assinatura que você forneceu é a mesma que a chave de assinatura que você recebeu do dispositivo %(deviceId)s de %(userId)s . O dispositivo foi portanto marcado como verificado.",
|
||||||
|
"This Home Server does not support login using email address.": "Este Servidor de Base não permite login usando endereço de e-mail.",
|
||||||
|
"There was a problem logging in.": "Houve um problema ao fazer login.",
|
||||||
|
"Unknown (user, device) pair:": "Par usuária(o)-dispositivo desconhecido:",
|
||||||
|
"Unrecognised command:": "Comando não reconhecido:",
|
||||||
|
"Unrecognised room alias:": "Apelido de sala não reconhecido:",
|
||||||
|
"Use compact timeline layout": "Usar o layout de linha do tempo compacta",
|
||||||
|
"Verified key": "Chave verificada",
|
||||||
|
"WARNING: Device already verified, but keys do NOT MATCH!": "ATENÇÃO: O dispositivo já foi verificado, mas as chaves NÃO SÃO IGUAIS!",
|
||||||
|
"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!": "ATENÇÃO: VERIFICAÇÃO DE CHAVE FALHOU! A chave de assinatura para a(o) usuária(o) %(userId)s e dispositivo %(deviceId)s é \"%(fprint)s\", que não é igual à chave fornecida \"%(fingerprint)s\". Isso pode significar que suas comunicações estão sendo interceptadas!",
|
||||||
|
"Set a Display Name": "Definir seu nome público",
|
||||||
|
"for %(amount)ss": "por %(amount)ss",
|
||||||
|
"for %(amount)sm": "por %(amount)sm",
|
||||||
|
"for %(amount)sh": "por %(amount)sh",
|
||||||
|
"for %(amount)sd": "por %(amount)sd",
|
||||||
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removeu a imagem da sala.",
|
||||||
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s alterou a imagem da sala %(roomName)s",
|
||||||
|
"$senderDisplayName changed the room avatar to <img/>": "$senderDisplayName alterou a imagem da sala para <img/>",
|
||||||
|
"Missing Media Permissions, click here to request.": "Faltam permissões para uso de mídia no seu computador. Clique aqui para solicitá-las.",
|
||||||
|
"No Microphones detected": "Não foi detectado nenhum microfone",
|
||||||
|
"No Webcams detected": "Não foi detectada nenhuma Webcam",
|
||||||
|
"No media permissions": "Não há permissões de uso de vídeo/áudio no seu navegador",
|
||||||
|
"You may need to manually permit Riot to access your microphone/webcam": "Você talvez precise autorizar manualmente que o Riot acesse seu microfone e webcam",
|
||||||
|
"Default Device": "Dispositivo padrão",
|
||||||
|
"Microphone": "Microfone",
|
||||||
|
"Camera": "Câmera de vídeo",
|
||||||
|
"Add a topic": "Adicionar um tópico",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"Anyone": "Qualquer pessoa",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Você tem certeza que deseja sair da sala '%(roomName)s'?",
|
||||||
|
"Custom level": "Nível personalizado",
|
||||||
|
"(default: %(userName)s)": "(padrão: %(userName)s)",
|
||||||
|
"Device ID:": "ID do dispositivo:",
|
||||||
|
"device id: ": "id do dispositivo: ",
|
||||||
|
"Device key:": "Chave do dispositivo:",
|
||||||
|
"Email address (optional)": "Endereço de e-mail (opcional)",
|
||||||
|
"List this room in %(domain)s's room directory?": "Deseja listar esta sala na lista pública de salas de %(domain)s?",
|
||||||
|
"Mobile phone number (optional)": "Número de telefone celular (opcional)",
|
||||||
|
"Password:": "Senha:",
|
||||||
|
"Register": "Registre-se",
|
||||||
|
"Remote addresses for this room:": "Endereços remotos para esta sala:",
|
||||||
|
"Save": "Salvar",
|
||||||
|
"Setting a user name will create a fresh account": "Definir um nome de usuária(o) vai criar uma conta nova",
|
||||||
|
"Tagged as: ": "Marcado como: ",
|
||||||
|
"You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "Você inseriu um contato inválido. Tente usar o ID Matrix ou endereço de e-mail da pessoa que está buscando."
|
||||||
}
|
}
|
||||||
|
|
|
@ -193,7 +193,7 @@
|
||||||
"sent an invitation to": "enviou um convite para",
|
"sent an invitation to": "enviou um convite para",
|
||||||
"sent a video": "enviou um vídeo",
|
"sent a video": "enviou um vídeo",
|
||||||
"Server may be unavailable or overloaded": "Servidor pode estar indisponível ou sobrecarregado",
|
"Server may be unavailable or overloaded": "Servidor pode estar indisponível ou sobrecarregado",
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Servidor pode estar indisponível, sobrecarregado ou aconteceu um erro de execução.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "O servidor pode estar indisponível ou sobrecarregado, ou então você encontrou uma falha no sistema.",
|
||||||
"Session ID": "Identificador de sessão",
|
"Session ID": "Identificador de sessão",
|
||||||
"set a profile picture": "colocou uma foto de perfil",
|
"set a profile picture": "colocou uma foto de perfil",
|
||||||
"set their display name to": "configurou seu nome para",
|
"set their display name to": "configurou seu nome para",
|
||||||
|
@ -619,9 +619,9 @@
|
||||||
"No devices with registered encryption keys": "Não há dispositivos com chaves de criptografia registradas",
|
"No devices with registered encryption keys": "Não há dispositivos com chaves de criptografia registradas",
|
||||||
"No more results": "Não há mais resultados",
|
"No more results": "Não há mais resultados",
|
||||||
"No results": "Sem resultados",
|
"No results": "Sem resultados",
|
||||||
"OK": "OK",
|
"OK": "Ok",
|
||||||
"Revoke Moderator": "Retirar status de moderador",
|
"Revoke Moderator": "Retirar status de moderador",
|
||||||
"Search": "Localizar",
|
"Search": "Buscar",
|
||||||
"Search failed": "Busca falhou",
|
"Search failed": "Busca falhou",
|
||||||
"Server error": "Erro no servidor",
|
"Server error": "Erro no servidor",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "O servidor pode estar indisponível, sobrecarregado, ou a busca ultrapassou o tempo limite :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "O servidor pode estar indisponível, sobrecarregado, ou a busca ultrapassou o tempo limite :(",
|
||||||
|
@ -741,9 +741,8 @@
|
||||||
"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 processo permite que você exporte as chaves para mensagens que você recebeu em salas criptografadas para um arquivo local. Você poderá então importar o arquivo para outro cliente Matrix no futuro, de modo que este cliente também poderá descriptografar suas mensagens.",
|
"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 processo permite que você exporte as chaves para mensagens que você recebeu em salas criptografadas para um arquivo local. Você poderá então importar o arquivo para outro cliente Matrix no futuro, de modo que este cliente também poderá descriptografar suas mensagens.",
|
||||||
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O arquivo exportado será protegido com uma senha. Você deverá inserir a senha aqui para poder descriptografar o arquivo futuramente.",
|
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O arquivo exportado será protegido com uma senha. Você deverá inserir a senha aqui para poder descriptografar o arquivo futuramente.",
|
||||||
"You must join the room to see its files": "Você precisa ingressar na sala para ver seus arquivos",
|
"You must join the room to see its files": "Você precisa ingressar na sala para ver seus arquivos",
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "O servidor pode estar indisponível ou sobrecarregado, ou então você encontrou uma falha no sistema.",
|
|
||||||
"Reject all %(invitedRooms)s invites": "Rejeitar todos os %(invitedRooms)s convites",
|
"Reject all %(invitedRooms)s invites": "Rejeitar todos os %(invitedRooms)s convites",
|
||||||
"Start new Chat": "Iniciar nova conversa",
|
"Start new chat": "Iniciar nova conversa",
|
||||||
"Guest users can't invite users. Please register.": "Visitantes não podem convidar usuárias(os) registradas(os). Favor registrar.",
|
"Guest users can't invite users. Please register.": "Visitantes não podem convidar usuárias(os) registradas(os). Favor registrar.",
|
||||||
"Failed to invite": "Falha ao enviar o convite",
|
"Failed to invite": "Falha ao enviar o convite",
|
||||||
"Failed to invite user": "Falha ao convidar a(o) usuária(o)",
|
"Failed to invite user": "Falha ao convidar a(o) usuária(o)",
|
||||||
|
@ -820,5 +819,63 @@
|
||||||
"Start automatically after system login": "Iniciar automaticamente ao iniciar o sistema",
|
"Start automatically after system login": "Iniciar automaticamente ao iniciar o sistema",
|
||||||
"Desktop specific": "Específico para o app de computadores desktop",
|
"Desktop specific": "Específico para o app de computadores desktop",
|
||||||
"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?": "Você será levado agora a um site de terceiros para poder autenticar a sua conta para uso com o serviço %(integrationsUrl)s. Você quer continuar?",
|
"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?": "Você será levado agora a um site de terceiros para poder autenticar a sua conta para uso com o serviço %(integrationsUrl)s. Você quer continuar?",
|
||||||
"Disable URL previews for this room (affects only you)": "Desabilitar as pré-visualizações de sites para esta sala (afeta apenas a você)"
|
"Disable URL previews for this room (affects only you)": "Desabilitar as pré-visualizações de sites para esta sala (afeta apenas a você)",
|
||||||
|
"Device already verified!": "Dispositivo já verificado!",
|
||||||
|
"disabled": "desabilitado",
|
||||||
|
"enabled": "habilitado",
|
||||||
|
"Export": "Exportar",
|
||||||
|
"Failed to register as guest:": "Falha ao se registrar como visitante:",
|
||||||
|
"Guest access is disabled on this Home Server.": "O acesso para visitantes está desabilitado neste Servidor de Base.",
|
||||||
|
"Import": "Importar",
|
||||||
|
"Incorrect username and/or password.": "Nome de usuária(o) e/ou senha incorreto.",
|
||||||
|
"Invited": "Convidada(o)",
|
||||||
|
"Results from DuckDuckGo": "Resultados de DuckDuckGo",
|
||||||
|
"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 assinatura que você forneceu é a mesma que a chave de assinatura que você recebeu do dispositivo %(deviceId)s de %(userId)s . O dispositivo foi portanto marcado como verificado.",
|
||||||
|
"This Home Server does not support login using email address.": "Este Servidor de Base não permite login usando endereço de e-mail.",
|
||||||
|
"There was a problem logging in.": "Houve um problema ao fazer login.",
|
||||||
|
"Unknown (user, device) pair:": "Par usuária(o)-dispositivo desconhecido:",
|
||||||
|
"Unrecognised command:": "Comando não reconhecido:",
|
||||||
|
"Unrecognised room alias:": "Apelido de sala não reconhecido:",
|
||||||
|
"Use compact timeline layout": "Usar o layout de linha do tempo compacta",
|
||||||
|
"Verified key": "Chave verificada",
|
||||||
|
"WARNING: Device already verified, but keys do NOT MATCH!": "ATENÇÃO: O dispositivo já foi verificado, mas as chaves NÃO SÃO IGUAIS!",
|
||||||
|
"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!": "ATENÇÃO: VERIFICAÇÃO DE CHAVE FALHOU! A chave de assinatura para a(o) usuária(o) %(userId)s e dispositivo %(deviceId)s é \"%(fprint)s\", que não é igual à chave fornecida \"%(fingerprint)s\". Isso pode significar que suas comunicações estão sendo interceptadas!",
|
||||||
|
"Set a Display Name": "Definir seu nome público",
|
||||||
|
"for %(amount)ss": "por %(amount)ss",
|
||||||
|
"for %(amount)sm": "por %(amount)sm",
|
||||||
|
"for %(amount)sh": "por %(amount)sh",
|
||||||
|
"for %(amount)sd": "por %(amount)sd",
|
||||||
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removeu a imagem da sala.",
|
||||||
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s alterou a imagem da sala %(roomName)s",
|
||||||
|
"$senderDisplayName changed the room avatar to <img/>": "$senderDisplayName alterou a imagem da sala para <img/>",
|
||||||
|
"Missing Media Permissions, click here to request.": "Faltam permissões para uso de mídia no seu computador. Clique aqui para solicitá-las.",
|
||||||
|
"No Microphones detected": "Não foi detectado nenhum microfone",
|
||||||
|
"No Webcams detected": "Não foi detectada nenhuma Webcam",
|
||||||
|
"No media permissions": "Não há permissões de uso de vídeo/áudio no seu navegador",
|
||||||
|
"You may need to manually permit Riot to access your microphone/webcam": "Você talvez precise autorizar manualmente que o Riot acesse seu microfone e webcam",
|
||||||
|
"Default Device": "Dispositivo padrão",
|
||||||
|
"Microphone": "Microfone",
|
||||||
|
"Camera": "Câmera de vídeo",
|
||||||
|
"Add a topic": "Adicionar um tópico",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"Anyone": "Qualquer pessoa",
|
||||||
|
"Are you sure you want to leave the room '%(roomName)s'?": "Você tem certeza que deseja sair da sala '%(roomName)s'?",
|
||||||
|
"Custom level": "Nível personalizado",
|
||||||
|
"(default: %(userName)s)": "(padrão: %(userName)s)",
|
||||||
|
"Device ID:": "ID do dispositivo:",
|
||||||
|
"device id: ": "id do dispositivo: ",
|
||||||
|
"Device key:": "Chave do dispositivo:",
|
||||||
|
"Email address (optional)": "Endereço de e-mail (opcional)",
|
||||||
|
"List this room in %(domain)s's room directory?": "Deseja listar esta sala na lista pública de salas de %(domain)s?",
|
||||||
|
"Mobile phone number (optional)": "Número de telefone celular (opcional)",
|
||||||
|
"Password:": "Senha:",
|
||||||
|
"Register": "Registre-se",
|
||||||
|
"Remote addresses for this room:": "Endereços remotos para esta sala:",
|
||||||
|
"Save": "Salvar",
|
||||||
|
"Setting a user name will create a fresh account": "Definir um nome de usuária(o) vai criar uma conta nova",
|
||||||
|
"Tagged as: ": "Marcado como: ",
|
||||||
|
"You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.",
|
||||||
|
"You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.",
|
||||||
|
"You have entered an invalid contact. Try using their Matrix ID or email address.": "Você inseriu um contato inválido. Tente usar o ID Matrix ou endereço de e-mail da pessoa que está buscando.",
|
||||||
|
"Hide removed messages": "Ocultar mensagens removidas"
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
"Hangup": "Отключение",
|
"Hangup": "Отключение",
|
||||||
"Historical": "Исторический",
|
"Historical": "Исторический",
|
||||||
"Homeserver is": "Домашний сервер является",
|
"Homeserver is": "Домашний сервер является",
|
||||||
"Identity Server is": "Регистрационный Сервер является",
|
"Identity Server is": "Регистрационный сервер",
|
||||||
"I have verified my email address": "Я проверил мой адрес электронной почты",
|
"I have verified my email address": "Я проверил мой адрес электронной почты",
|
||||||
"Import E2E room keys": "Импортировать E2E ключ комнаты",
|
"Import E2E room keys": "Импортировать E2E ключ комнаты",
|
||||||
"Invalid Email Address": "Недействительный адрес электронной почты",
|
"Invalid Email Address": "Недействительный адрес электронной почты",
|
||||||
|
@ -237,7 +237,7 @@
|
||||||
"Conference calls are not supported in encrypted rooms": "Конференц-вызовы не поддерживаются в зашифрованных комнатах",
|
"Conference calls are not supported in encrypted rooms": "Конференц-вызовы не поддерживаются в зашифрованных комнатах",
|
||||||
"Conference calls are not supported in this client": "Конференц-вызовы не поддерживаются в этом клиенте",
|
"Conference calls are not supported in this client": "Конференц-вызовы не поддерживаются в этом клиенте",
|
||||||
"/ddg is not a command": "/ddg не команда",
|
"/ddg is not a command": "/ddg не команда",
|
||||||
"Drop here %(toAction)s": "Вставить здесь %(toAction)s",
|
"Drop here %(toAction)s": "Вставить сюда: %(toAction)s",
|
||||||
"Drop here to tag %(section)s": "Вставить здесь для тега %(section)s",
|
"Drop here to tag %(section)s": "Вставить здесь для тега %(section)s",
|
||||||
"%(senderName)s ended the call.": "%(senderName)s прекратил звонок.",
|
"%(senderName)s ended the call.": "%(senderName)s прекратил звонок.",
|
||||||
"Existing Call": "Существующий вызов",
|
"Existing Call": "Существующий вызов",
|
||||||
|
@ -258,7 +258,7 @@
|
||||||
"Missing room_id in request": "Отсутствует room_id в запросе",
|
"Missing room_id in request": "Отсутствует room_id в запросе",
|
||||||
"Missing user_id in request": "Отсутствует user_id в запросе",
|
"Missing user_id in request": "Отсутствует user_id в запросе",
|
||||||
"Must be viewing a room": "Комната должна быть посищена",
|
"Must be viewing a room": "Комната должна быть посищена",
|
||||||
"New Composer & Autocomplete": "Новые Компонист & Автозаполнение",
|
"New Composer & Autocomplete": "Новый едитор & Автозаполнение",
|
||||||
"(not supported by this browser)": "(не поддерживаемый этим браузером)",
|
"(not supported by this browser)": "(не поддерживаемый этим браузером)",
|
||||||
"af": "Африкаанс",
|
"af": "Африкаанс",
|
||||||
"ar-ae": "Арабский (О.А.Е)",
|
"ar-ae": "Арабский (О.А.Е)",
|
||||||
|
@ -388,7 +388,7 @@
|
||||||
"You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a once off; sorry for the inconvenience.": "Вам необходимо снова войти в генерировать сквозное шифрование (е2е) ключей для этого устройства и предоставить публичный ключ Вашему домашнему серверу. Это после выключения; приносим извинения за причиненные неудобства.",
|
"You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver. This is a once off; sorry for the inconvenience.": "Вам необходимо снова войти в генерировать сквозное шифрование (е2е) ключей для этого устройства и предоставить публичный ключ Вашему домашнему серверу. Это после выключения; приносим извинения за причиненные неудобства.",
|
||||||
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ваш адрес электронной почты, кажется, не связан с Matrix ID на этом Homeserver.",
|
"Your email address does not appear to be associated with a Matrix ID on this Homeserver.": "Ваш адрес электронной почты, кажется, не связан с Matrix ID на этом Homeserver.",
|
||||||
"to start a chat with someone": "Начать чат с кем-то",
|
"to start a chat with someone": "Начать чат с кем-то",
|
||||||
"to tag direct chat": "Пометить прямой чат",
|
"to tag direct chat": "отометить прямой чат",
|
||||||
"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.": "Для его использования, просто подождите результатов автозаполнения для загрузки на вкладке и через них.",
|
||||||
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s включил сквозное шифрование (algorithm %(algorithm)s).",
|
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s включил сквозное шифрование (algorithm %(algorithm)s).",
|
||||||
"Unable to restore previous session": "Невозможно востановить предыдущий сеанс",
|
"Unable to restore previous session": "Невозможно востановить предыдущий сеанс",
|
||||||
|
@ -397,7 +397,7 @@
|
||||||
"Unable to enable Notifications": "Невозможно включить уведомления",
|
"Unable to enable Notifications": "Невозможно включить уведомления",
|
||||||
"Upload Failed": "Неудавшаяся загрузка",
|
"Upload Failed": "Неудавшаяся загрузка",
|
||||||
"Usage": "Использование",
|
"Usage": "Использование",
|
||||||
"Use with caution": "Используйте с осторожностью",
|
"Use with caution": "Использовать осторожно",
|
||||||
"VoIP is unsupported": "VoIP не поддерживается",
|
"VoIP is unsupported": "VoIP не поддерживается",
|
||||||
"es-pr": "Испанский (Пуэрто-Рико)",
|
"es-pr": "Испанский (Пуэрто-Рико)",
|
||||||
"es-py": "Испанский язык (Парагвай)",
|
"es-py": "Испанский язык (Парагвай)",
|
||||||
|
@ -426,7 +426,7 @@
|
||||||
"sk": "Словацкий",
|
"sk": "Словацкий",
|
||||||
"sl": "Словенский",
|
"sl": "Словенский",
|
||||||
"sq": "Албанский",
|
"sq": "Албанский",
|
||||||
"sr": "Сербский (Латиница)",
|
"sr": "Сербский",
|
||||||
"sv-fi": "Шведский (Финляндия)",
|
"sv-fi": "Шведский (Финляндия)",
|
||||||
"sz": "Саами (лопарский)",
|
"sz": "Саами (лопарский)",
|
||||||
"tn": "Тсвана",
|
"tn": "Тсвана",
|
||||||
|
@ -443,7 +443,7 @@
|
||||||
"fr-lu": "Французский (Люксембург)",
|
"fr-lu": "Французский (Люксембург)",
|
||||||
"gd": "Гэльский (Шотландия)",
|
"gd": "Гэльский (Шотландия)",
|
||||||
"it-ch": "Итальянский (Швейцария)",
|
"it-ch": "Итальянский (Швейцария)",
|
||||||
"ko": "Корейский (Johab)",
|
"ko": "Корейский",
|
||||||
"mk": "Македонский (FYROM)",
|
"mk": "Македонский (FYROM)",
|
||||||
"ro-mo": "Румынский (Республика Молдова)",
|
"ro-mo": "Румынский (Республика Молдова)",
|
||||||
"sx": "Суту",
|
"sx": "Суту",
|
||||||
|
@ -522,7 +522,7 @@
|
||||||
"No devices with registered encryption keys": "Нет устройств с записанными ключами шифрования",
|
"No devices with registered encryption keys": "Нет устройств с записанными ключами шифрования",
|
||||||
"No more results": "Нет больше результатов",
|
"No more results": "Нет больше результатов",
|
||||||
"No results": "Нет результатов",
|
"No results": "Нет результатов",
|
||||||
"OK": "Да",
|
"OK": "ОК",
|
||||||
"Only people who have been invited": "Только приглашённые люди",
|
"Only people who have been invited": "Только приглашённые люди",
|
||||||
"Passwords can't be empty": "Пароли не могут быть пустыми",
|
"Passwords can't be empty": "Пароли не могут быть пустыми",
|
||||||
"%(senderName)s placed a %(callType)s call.": "%(senderName)s выполнил %(callType)s вызов.",
|
"%(senderName)s placed a %(callType)s call.": "%(senderName)s выполнил %(callType)s вызов.",
|
||||||
|
@ -584,7 +584,7 @@
|
||||||
"This room has no local addresses": "Эта комната не имеет местного адреса",
|
"This room has no local addresses": "Эта комната не имеет местного адреса",
|
||||||
"This room is not recognised.": "Эта комната не опознана.",
|
"This room is not recognised.": "Эта комната не опознана.",
|
||||||
"This room is private or inaccessible to guests. You may be able to join if you register": "Эта комната личная или недоступна для гостей. Мы может быть войдёте, если зарегистрируйтесь",
|
"This room is private or inaccessible to guests. You may be able to join if you register": "Эта комната личная или недоступна для гостей. Мы может быть войдёте, если зарегистрируйтесь",
|
||||||
"These are experimental features that may break in unexpected ways": "Это экспериментальные возможности, которые могут сломаться неожиданным образом",
|
"These are experimental features that may break in unexpected ways": "Это экспериментальные функции, которые могут неожиданным образом вызывать ошибки",
|
||||||
"This doesn't appear to be a valid email address": "Не похоже, что это правильный адрес электронной почты",
|
"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 phone number is already in use": "Этот телефонный номер уже используется",
|
||||||
|
@ -651,5 +651,24 @@
|
||||||
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)sизменил своё изображение %(repeats)s раз",
|
"%(oneUser)schanged their avatar %(repeats)s times": "%(oneUser)sизменил своё изображение %(repeats)s раз",
|
||||||
"%(severalUsers)schanged their avatar": "%(severalUsers)sизменили своё изображение",
|
"%(severalUsers)schanged their avatar": "%(severalUsers)sизменили своё изображение",
|
||||||
"%(oneUser)schanged their avatar": "%(oneUser)sизменил своё изображение",
|
"%(oneUser)schanged their avatar": "%(oneUser)sизменил своё изображение",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Не возможно подключиться к серверу через HTTP, когда в строке браузера HTTPS. Используйте HTTPS или <a>включив небезопасные скрипты</a>."
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Не возможно подключиться к серверу через HTTP, когда в строке браузера HTTPS. Используйте HTTPS или <a>включив небезопасные скрипты</a>.",
|
||||||
|
"Dismiss": "Отказ",
|
||||||
|
"Custom Server Options": "Расширенные настройки сервера",
|
||||||
|
"Mute": "Беззвучный",
|
||||||
|
"Operation failed": "Действие не удалось",
|
||||||
|
"powered by Matrix": "управляемый с Matrix",
|
||||||
|
"Add a topic": "Добавить тему",
|
||||||
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Времея отображать в 12 часовом формате (напр. 2:30pm)",
|
||||||
|
"Use compact timeline layout": "Используйте компактным указанием времени",
|
||||||
|
"Hide removed messages": "Скрыть удаленное сообщение",
|
||||||
|
"No Microphones detected": "Микрофоны не обнаружены",
|
||||||
|
"Unknown devices": "Незнакомое устройство",
|
||||||
|
"Camera": "Камера",
|
||||||
|
"Microphone": "Микрофон",
|
||||||
|
"Desktop specific": "Специфический десктоп",
|
||||||
|
"Start automatically after system login": "Автостарт после входа в систему",
|
||||||
|
"Analytics": "Аналитика",
|
||||||
|
"Riot collects anonymous analytics to allow us to improve the application.": "Riot собирет анонимные данные, чтобы улутшыть эту програму.",
|
||||||
|
"Opt out of analytics": "Подтвердить отказ передачи аналитических данных",
|
||||||
|
"Logged in as:": "Зарегестрирован как:"
|
||||||
}
|
}
|
||||||
|
|
180
src/i18n/strings/sv.json
Normal file
180
src/i18n/strings/sv.json
Normal file
|
@ -0,0 +1,180 @@
|
||||||
|
{
|
||||||
|
"af": "Afrikaans",
|
||||||
|
"ar-ae": "Arabiska (U.A.E.)",
|
||||||
|
"ar-bh": "Arabiska (Bahrain)",
|
||||||
|
"ar-dz": "Arabiska (Algeriet)",
|
||||||
|
"ar-eg": "Arabiska (Egypten)",
|
||||||
|
"ar-iq": "Arabiska (Irak)",
|
||||||
|
"ar-jo": "Arabiska (Jordanien)",
|
||||||
|
"ar-kw": "Arabiska (Kuwait)",
|
||||||
|
"ar-lb": "Arabiska (Libanon)",
|
||||||
|
"ar-ly": "Arabiska (Libyen)",
|
||||||
|
"ar-ma": "Arabiska (Marocko)",
|
||||||
|
"ar-om": "Arabiska (Oman)",
|
||||||
|
"ar-qa": "Arabiska (Qatar)",
|
||||||
|
"ar-sa": "Arabiska (Saudiarabien)",
|
||||||
|
"ar-sy": "Arabiska (Syrien)",
|
||||||
|
"ar-tn": "Arabiska (Tunisien)",
|
||||||
|
"ar-ye": "Arabiska (Yemen)",
|
||||||
|
"be": "Vitryska",
|
||||||
|
"bg": "Bulgariska",
|
||||||
|
"ca": "Katalanska",
|
||||||
|
"cs": "Tjeckiska",
|
||||||
|
"da": "Danska",
|
||||||
|
"de-at": "Tyska (Österrike)",
|
||||||
|
"de-ch": "Tyska (Schweiz)",
|
||||||
|
"de": "Tyska",
|
||||||
|
"de-li": "Tyska (Liechtenstein)",
|
||||||
|
"de-lu": "Tyska (Luxembourg)",
|
||||||
|
"el": "Grekiska",
|
||||||
|
"en-au": "Engelska (Australien)",
|
||||||
|
"en-bz": "Engelska (Belize)",
|
||||||
|
"en-ca": "Engelska (Kanada)",
|
||||||
|
"en": "Engelska",
|
||||||
|
"en-gb": "Engelska (Förenta kungariket)",
|
||||||
|
"en-ie": "Engelska (Irland)",
|
||||||
|
"en-jm": "Engelska (Jamaica)",
|
||||||
|
"en-nz": "Engelska (Nya Zeeland)",
|
||||||
|
"en-tt": "Engelska (Trinidad)",
|
||||||
|
"en-us": "Engelska (Förenta staterna)",
|
||||||
|
"en-za": "Engelska (Sydafrika)",
|
||||||
|
"es-ar": "Spanska (Argentina)",
|
||||||
|
"es-bo": "Spanska (Bolivia)",
|
||||||
|
"es-cl": "Spanska (Chile)",
|
||||||
|
"es-co": "Spanska (Colombia)",
|
||||||
|
"es-cr": "Spanska (Costa Rica)",
|
||||||
|
"es-do": "Spanska (Dominikanska republiken)",
|
||||||
|
"es-ec": "Spanska (Ecuador)",
|
||||||
|
"es-gt": "Spanska (Guatemala)",
|
||||||
|
"es-hn": "Spanska (Honduras)",
|
||||||
|
"es-mx": "Spanska (Mexico)",
|
||||||
|
"es-ni": "Spanska (Nicaragua)",
|
||||||
|
"es-pa": "Spanska (Panama)",
|
||||||
|
"es-pe": "Spanska (Peru)",
|
||||||
|
"es-pr": "Spanska (Puerto Rico)",
|
||||||
|
"es-py": "Spanska (Paraguay)",
|
||||||
|
"es": "Spanska (Spanien)",
|
||||||
|
"es-sv": "Spanska (El Salvador)",
|
||||||
|
"es-uy": "Spanska (Uruguay)",
|
||||||
|
"es-ve": "Spanska (Venezuela)",
|
||||||
|
"et": "Estniska",
|
||||||
|
"eu": "Baskiska",
|
||||||
|
"fa": "Persiska",
|
||||||
|
"fi": "Finska",
|
||||||
|
"fo": "Färöiska",
|
||||||
|
"fr-be": "Franska (Belgien)",
|
||||||
|
"fr-ca": "Franska (Kanada)",
|
||||||
|
"fr-ch": "Franska (Schweiz)",
|
||||||
|
"fr": "Franska",
|
||||||
|
"fr-lu": "Franska (Luxembourg)",
|
||||||
|
"ga": "Irländska",
|
||||||
|
"gd": "Gaeliska (Skottland)",
|
||||||
|
"he": "Hebreiska",
|
||||||
|
"hi": "Hindi",
|
||||||
|
"hr": "Kroatiska",
|
||||||
|
"hu": "Ungerska",
|
||||||
|
"id": "Indonesiska",
|
||||||
|
"is": "Isländska",
|
||||||
|
"it-ch": "Italienska (Schweiz)",
|
||||||
|
"it": "Italienska",
|
||||||
|
"ja": "Japanska",
|
||||||
|
"ji": "Jiddisch",
|
||||||
|
"ko": "Koreanska",
|
||||||
|
"lt": "Litauiska",
|
||||||
|
"lv": "Lettiska",
|
||||||
|
"mk": "Makedonska (FYROM)",
|
||||||
|
"ms": "Malaysiska",
|
||||||
|
"mt": "Maltesiska",
|
||||||
|
"nl-be": "Nederländska (Belgien)",
|
||||||
|
"nl": "Nederländska",
|
||||||
|
"no": "Norska",
|
||||||
|
"pl": "Polska",
|
||||||
|
"pt-br": "Brasiliansk portugisiska",
|
||||||
|
"pt": "Portugisiska",
|
||||||
|
"rm": "Rätoromanska",
|
||||||
|
"ro-mo": "Rumänska (Republiken Moldavien)",
|
||||||
|
"ro": "Rumänska",
|
||||||
|
"ru-mo": "Ryska (Republiken Moldavien)",
|
||||||
|
"ru": "Ryska",
|
||||||
|
"sb": "Sorbiska",
|
||||||
|
"sk": "Slovakiska",
|
||||||
|
"sl": "Slovenska",
|
||||||
|
"sq": "Albanska",
|
||||||
|
"sr": "Serbiska",
|
||||||
|
"sv-fi": "Svenska (Finland)",
|
||||||
|
"sv": "Svenska",
|
||||||
|
"sx": "Sutu",
|
||||||
|
"sz": "Samiska",
|
||||||
|
"th": "Thailändska",
|
||||||
|
"tn": "Tswana",
|
||||||
|
"tr": "Turkiska",
|
||||||
|
"ts": "Tsonga",
|
||||||
|
"uk": "Ukrainska",
|
||||||
|
"ur": "Urdu",
|
||||||
|
"ve": "Venda",
|
||||||
|
"vi": "Vietnamesiska",
|
||||||
|
"xh": "Xhosa",
|
||||||
|
"zh-cn": "Kinesiska (Folkrepubliken Kina)",
|
||||||
|
"zh-hk": "Kinesiska (Hongkong SAR)",
|
||||||
|
"zh-sg": "Kinesiska (Singapore)",
|
||||||
|
"zh-tw": "Kinesiska (Taiwan)",
|
||||||
|
"zu": "Zulu",
|
||||||
|
"A registered account is required for this action": "Ett registrerat konto behövs för den här handlingen",
|
||||||
|
"A text message has been sent to +%(msisdn)s. Please enter the verification code it contains": "Ett SMS har skickats till +%(msisdn)s. Vänligen ange verifieringskoden ur meddelandet",
|
||||||
|
"accept": "acceptera",
|
||||||
|
"%(targetName)s accepted an invitation.": "%(targetName)s accepterade en inbjudan.",
|
||||||
|
"%(targetName)s accepted the invitation for %(displayName)s.": "%(targetName)s accepterade inbjudan för %(displayName)s.",
|
||||||
|
"Account": "Konto",
|
||||||
|
"Add a topic": "Lägg till ett ämne",
|
||||||
|
"Add email address": "Lägg till en epostadress",
|
||||||
|
"Add phone number": "Lägg till ett telefonnummer",
|
||||||
|
"Admin": "Administratör",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"Missing Media Permissions, click here to request.": "Saknar mediebehörigheter, klicka för att begära.",
|
||||||
|
"No Microphones detected": "Ingen mikrofon hittades",
|
||||||
|
"No Webcams detected": "Ingen kamera hittades",
|
||||||
|
"No media permissions": "Inga mediebehörigheter",
|
||||||
|
"You may need to manually permit Riot to access your microphone/webcam": "Du måste manuellt tillåta Riot att komma åt din mikrofon/kamera",
|
||||||
|
"Default Device": "Standardenhet",
|
||||||
|
"Microphone": "Mikrofon",
|
||||||
|
"Camera": "Kamera",
|
||||||
|
"Advanced": "Avancerad",
|
||||||
|
"Algorithm": "Algoritm",
|
||||||
|
"Always show message timestamps": "Visa alltid tidsstämpel för meddelanden",
|
||||||
|
"Hide removed messages": "Göm raderade meddelanden",
|
||||||
|
"Authentication": "Autentisering",
|
||||||
|
"all room members": "alla rumsmedlemmar",
|
||||||
|
"all room members, from the point they are invited": "alla rumsmedlemmar fr.o.m att de bjöds in",
|
||||||
|
"all room members, from the point they joined": "alla rumsmedlemmar fr.o.m. att de gick med som medlem",
|
||||||
|
"an address": "en address",
|
||||||
|
"and": "och",
|
||||||
|
"%(items)s and %(remaining)s others": "%(items)s och %(remaining)s andra",
|
||||||
|
"%(items)s and one other": "%(items)s och en annan",
|
||||||
|
"%(items)s and %(lastItem)s": "%(items)s och %(lastItem)s",
|
||||||
|
"and %(overflowCount)s others...": "och %(overflowCount)s andra...",
|
||||||
|
"and one other...": "och en annan...",
|
||||||
|
"%(names)s and %(lastPerson)s are typing": "%(names)s och %(lastPerson)s skriver",
|
||||||
|
"%(names)s and one other are typing": "%(names)s och en annan skriver",
|
||||||
|
"%(names)s and %(count)s others are typing": "%(names)s och %(count)s andra skriver",
|
||||||
|
"An email has been sent to": "Ett epostmeddelande har sänts till",
|
||||||
|
"A new password must be entered.": "Ett nytt lösenord måste anges.",
|
||||||
|
"%(senderName)s answered the call.": "%(senderName)s svarade på samtalet.",
|
||||||
|
"Anyone who knows the room's link, including guests": "Alla som har rummets adress, inklusive gäster",
|
||||||
|
"anyone": "vem som helst",
|
||||||
|
"Anyone": "Vem som helst",
|
||||||
|
"Anyone who knows the room's link, apart from guests": "Alla som har rummets adress, förutom gäster",
|
||||||
|
"An error has occurred.": "Ett fel har inträffat.",
|
||||||
|
"Are you sure?": "Är du säker?",
|
||||||
|
"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?",
|
||||||
|
"Bulk Options": "Volymhandlingar",
|
||||||
|
"Bug Report": "Buggrapport",
|
||||||
|
"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",
|
||||||
|
"Ban": "Banna",
|
||||||
|
"Attachment": "Bilaga"
|
||||||
|
}
|
24
src/i18n/strings/th.json
Normal file
24
src/i18n/strings/th.json
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"de": "เยอร์มัน",
|
||||||
|
"en-us": "อังกฤษ (สหรัฐอเมริกา)",
|
||||||
|
"en": "อังกฤษ",
|
||||||
|
"en-ca": "อังกฤษ(แคนาดา)",
|
||||||
|
"ja": "ญี่ปุ่น",
|
||||||
|
"fr": "ฝรั่งเศส",
|
||||||
|
"ko": "เกาหลี",
|
||||||
|
"th": "ไทย",
|
||||||
|
"vi": "เวียดนาม",
|
||||||
|
"accept": "ยอมรับ",
|
||||||
|
"Account": "บัญชี",
|
||||||
|
"Add phone number": "เพิ่มหมายเลขโทรศัพท์",
|
||||||
|
"Microphone": "ไมโครโฟน",
|
||||||
|
"No Microphones detected": "ไม่พบไมโครโฟน",
|
||||||
|
"Camera": "กล้อง",
|
||||||
|
"Advanced": "ขึ้นสูง",
|
||||||
|
"and": "และ",
|
||||||
|
"Ban": "แบน",
|
||||||
|
"Bug Report": "รายงานจุดบกพร่อง",
|
||||||
|
"Change Password": "เปลี่ยนรหัสผ่าน",
|
||||||
|
"Create Room": "สรัางห้อง",
|
||||||
|
"Delete": "ลบ"
|
||||||
|
}
|
|
@ -1,24 +1,365 @@
|
||||||
{
|
{
|
||||||
"An email has been sent to": "電郵已經發送至",
|
"An email has been sent to": "一封郵件已經被發送到",
|
||||||
"A new password must be entered.": "必須輸入新密碼。.",
|
"A new password must be entered.": "一個新的密碼必須被輸入。.",
|
||||||
"anyone": "任何人",
|
"anyone": "任何人",
|
||||||
"An error has occurred.": "發生了一個錯誤。",
|
"An error has occurred.": "一個錯誤出現了。",
|
||||||
"Anyone who knows the room's link, apart from guests": "任何知道房間連結的人,但訪客除外",
|
"Anyone who knows the room's link, apart from guests": "任何知道房間連結的人,但訪客除外",
|
||||||
"Anyone who knows the room's link, including guests": "任何知道房間連結的人,包括訪客",
|
"Anyone who knows the room's link, including guests": "任何知道房間連結的人,包括訪客",
|
||||||
"Are you sure?": "您確認嗎?",
|
"Are you sure?": "你確定嗎?",
|
||||||
"Are you sure you want to reject the invitation?": "您確認要謝絕邀請嗎?",
|
"Are you sure you want to reject the invitation?": "您確認要謝絕邀請嗎?",
|
||||||
"Are you sure you want to upload the following files?": "您確認要上傳以下文件嗎?",
|
"Are you sure you want to upload the following files?": "您確認要上傳以下文件嗎?",
|
||||||
"Attachment": "附件",
|
"Attachment": "附件",
|
||||||
"Autoplay GIFs and videos": "自動播放GIF和影片",
|
"Autoplay GIFs and videos": "自動播放GIF和視頻",
|
||||||
"%(senderName)s banned %(targetName)s.": "%(senderName)s 封禁了 %(targetName)s。.",
|
"%(senderName)s banned %(targetName)s.": "%(senderName)s 封禁了 %(targetName)s.",
|
||||||
"Ban": "封禁",
|
"Ban": "封禁",
|
||||||
"Banned users": "已被封禁的使用者",
|
"Banned users": "被封禁的用戶",
|
||||||
"Blacklisted": "已列入黑名單",
|
"Blacklisted": "已列入黑名單",
|
||||||
"Bug Report": "錯誤報告",
|
"Bug Report": "臭蟲回報",
|
||||||
"Call Timeout": "通話超時",
|
"Call Timeout": "通話超時",
|
||||||
"Can't connect to homeserver - please check your connectivity and ensure your <a>homeserver's SSL certificate</a> is trusted.": "無法連結主伺服器 - 請檢查網路狀況並確保您的 <a>主伺服器 SSL 證書</a> 得到信任",
|
"Can't connect to homeserver - please check your connectivity and ensure your <a>homeserver's SSL certificate</a> is trusted.": "無法連結主伺服器 - 請檢查網路狀況並確保您的 <a>主伺服器 SSL 證書</a> 得到信任",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "當瀏覽器網址列里有 HTTPS URL 時,不能使用 HTTP 連結主伺服器。請採用 HTTPS 或者 <a>允許不安全的腳本</a>",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "當瀏覽器網址列里有 HTTPS URL 時,不能使用 HTTP 連結主伺服器。請採用 HTTPS 或者 <a>允許不安全的腳本</a>",
|
||||||
"Can't load user settings": "無法載入使用者設定",
|
"Can't load user settings": "無法載入使用者設定",
|
||||||
"Change Password": "變更密碼",
|
"Change Password": "變更密碼",
|
||||||
"%(targetName)s left the room.": "%(targetName)s 離開了聊天室。."
|
"%(targetName)s left the room.": "%(targetName)s 離開了聊天室。.",
|
||||||
|
"af": "南非荷蘭語",
|
||||||
|
"ar-ae": "阿拉伯語 (U.A.E.)",
|
||||||
|
"ar-bh": "阿拉伯語 (巴林)",
|
||||||
|
"ar-dz": "阿拉伯語 (阿爾吉利亞)",
|
||||||
|
"ar-eg": "阿拉伯語 (埃及)",
|
||||||
|
"ar-iq": "阿拉伯語 (伊拉克)",
|
||||||
|
"ar-jo": "阿拉伯語 (約旦)",
|
||||||
|
"ar-kw": "阿拉伯語 (科威特)",
|
||||||
|
"ar-lb": "阿拉伯語 (黎巴嫩)",
|
||||||
|
"ar-ly": "阿拉伯語 (利比亞)",
|
||||||
|
"ar-ma": "阿拉伯語 (摩洛哥)",
|
||||||
|
"ar-om": "阿拉伯語 (阿曼)",
|
||||||
|
"ar-qa": "阿拉伯語 (卡達)",
|
||||||
|
"ar-sa": "阿拉伯語 (沙烏地阿拉伯)",
|
||||||
|
"ar-sy": "阿拉伯語 (敍利亞)",
|
||||||
|
"ar-tn": "阿拉伯語 (突尼斯)",
|
||||||
|
"ar-ye": "阿拉伯語 (葉門)",
|
||||||
|
"be": "白俄羅斯語",
|
||||||
|
"bg": "保加利亞",
|
||||||
|
"ca": "加泰羅尼亞語",
|
||||||
|
"cs": "捷克語",
|
||||||
|
"da": "丹麥語",
|
||||||
|
"de-at": "德語(奧地利)",
|
||||||
|
"de-ch": "德語(瑞士)",
|
||||||
|
"de": "德語",
|
||||||
|
"de-lu": "德語(盧森堡)",
|
||||||
|
"el": "希臘語",
|
||||||
|
"en-au": "英語(澳大利亞)",
|
||||||
|
"en-bz": "英語 (貝里茲)",
|
||||||
|
"en-ca": "英語 (加拿大)",
|
||||||
|
"en": "英語",
|
||||||
|
"en-gb": "英語 (英國)",
|
||||||
|
"en-ie": "英語 (愛爾蘭)",
|
||||||
|
"en-jm": "英語 (牙買加)",
|
||||||
|
"en-nz": "英語 (新西蘭)",
|
||||||
|
"en-tt": "英語 (千里達)",
|
||||||
|
"en-us": "英語 (美國)",
|
||||||
|
"en-za": "英語 (南非)",
|
||||||
|
"es-ar": "西班牙語 (阿根廷)",
|
||||||
|
"es-bo": "西班牙語 (波利維亞)",
|
||||||
|
"es-cl": "西班牙語 (智利)",
|
||||||
|
"es-co": "西班牙語 (哥倫比亞)",
|
||||||
|
"es-cr": "西班牙語 (哥斯大黎加)",
|
||||||
|
"es-do": "西班牙語 (多明尼加共和國)",
|
||||||
|
"es-ec": "西班牙語 (厄瓜多)",
|
||||||
|
"es-gt": "西班牙語 (瓜地馬拉)",
|
||||||
|
"es-hn": "西班牙語 (宏都拉斯)",
|
||||||
|
"es-mx": "西班牙語 (墨西哥)",
|
||||||
|
"es-ni": "西班牙語 (尼加拉瓜)",
|
||||||
|
"es-pa": "西班牙語 (巴拿馬)",
|
||||||
|
"es-pe": "西班牙語 (祕魯)",
|
||||||
|
"es-pr": "西班牙語 (波多黎各)",
|
||||||
|
"es-py": "西班牙語 (巴拉圭)",
|
||||||
|
"es": "西班牙語 (西班牙)",
|
||||||
|
"es-sv": "西班牙語 (薩爾瓦多)",
|
||||||
|
"es-uy": "西班牙語 (烏拉圭)",
|
||||||
|
"es-ve": "西班牙語 (委內瑞拉)",
|
||||||
|
"fr-be": "法語 (比利時)",
|
||||||
|
"fr-ca": "法語 (加拿大)",
|
||||||
|
"fr-ch": "法語 (瑞士)",
|
||||||
|
"fr": "法語 (法國)",
|
||||||
|
"fr-lu": "法語 (慮森堡)",
|
||||||
|
"zh-cn": "中文(中國)",
|
||||||
|
"zh-hk": "中文(香港)",
|
||||||
|
"zh-sg": "中文(新加坡)",
|
||||||
|
"zh-tw": "中文(台灣)",
|
||||||
|
"zu": "祖魯語",
|
||||||
|
"accept": "接受",
|
||||||
|
"Account": "帳號",
|
||||||
|
"Access Token:": "取用令牌:",
|
||||||
|
"Add email address": "添加郵件地址",
|
||||||
|
"Add phone number": "添加電話號碼",
|
||||||
|
"Admin": "管理者",
|
||||||
|
"Advanced": "高級",
|
||||||
|
"Algorithm": "算法",
|
||||||
|
"Always show message timestamps": "總是顯示消息時間戳",
|
||||||
|
"Authentication": "授權",
|
||||||
|
"all room members": "所有聊天室成員",
|
||||||
|
"all room members, from the point they are invited": "所有聊天室成員,從他們被邀請開始",
|
||||||
|
"all room members, from the point they joined": "所有聊天室成員,從他們加入開始",
|
||||||
|
"an address": "一個地址",
|
||||||
|
"and": "和",
|
||||||
|
"%(items)s and %(remaining)s others": "%(items)s 和 %(remaining)s 其它",
|
||||||
|
"%(items)s and one other": "%(items)s 和其它",
|
||||||
|
"%(items)s and %(lastItem)s": "%(items)s 和 %(lastItem)s",
|
||||||
|
"and one other...": "與另一個...",
|
||||||
|
"%(names)s and %(lastPerson)s are typing": "%(names)s 和 %(lastPerson)s 正在打字",
|
||||||
|
"%(names)s and %(count)s others are typing": "%(names)s 和另外 %(count)s 個人正在打字",
|
||||||
|
"%(senderName)s answered the call.": "%(senderName)s 接了通話。.",
|
||||||
|
"Clear Cache": "清理緩存",
|
||||||
|
"Click here": "點擊這里",
|
||||||
|
"Click here to fix": "點擊這里修復",
|
||||||
|
"Confirm password": "確認密碼",
|
||||||
|
"Confirm your new password": "確認你的新密碼",
|
||||||
|
"Continue": "繼續",
|
||||||
|
"Create an account": "創建新帳號",
|
||||||
|
"Create Room": "創建聊天室",
|
||||||
|
"Cryptography": "加密",
|
||||||
|
"Current password": "當前密碼",
|
||||||
|
"/ddg is not a command": "/ddg 不是一個命令",
|
||||||
|
"Deactivate Account": "銷毀賬號",
|
||||||
|
"Deactivate my account": "銷毀我的帳號",
|
||||||
|
"decline": "拒絕",
|
||||||
|
"Decrypt %(text)s": "解密 %(text)s",
|
||||||
|
"Decryption error": "解密出錯",
|
||||||
|
"Delete": "刪除",
|
||||||
|
"Default": "默認",
|
||||||
|
"Device ID": "設備識別碼",
|
||||||
|
"Devices": "設備列表",
|
||||||
|
"Devices will not yet be able to decrypt history from before they joined the room": "新加入聊天室的設備不能解密加入之前的聊天記錄",
|
||||||
|
"Direct Chat": "私聊",
|
||||||
|
"Direct chats": "私聊",
|
||||||
|
"Disable inline URL previews by default": "默認禁用自動網址預覽",
|
||||||
|
"Disinvite": "取消邀請",
|
||||||
|
"Display name": "顯示名稱",
|
||||||
|
"Displays action": "顯示操作",
|
||||||
|
"Don't send typing notifications": "不要發送我的打字狀態",
|
||||||
|
"Download %(text)s": "下載 %(text)s",
|
||||||
|
"Drop here %(toAction)s": "拖拽到這里 %(toAction)s",
|
||||||
|
"Ed25519 fingerprint": "Ed25519指紋",
|
||||||
|
"Email": "電子郵箱",
|
||||||
|
"Email address": "電子郵箱地址",
|
||||||
|
"Email, name or matrix ID": "電子郵箱,姓名或者matrix ID",
|
||||||
|
"Emoji": "Emoji",
|
||||||
|
"Enable encryption": "啟用加密",
|
||||||
|
"Encrypted messages will not be visible on clients that do not yet implement encryption": "不支持加密的客戶端將看不到加密的消息",
|
||||||
|
"Encrypted 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": "端到端加密現為測試版,不一定可靠",
|
||||||
|
"Enter Code": "輸入代碼",
|
||||||
|
"Error": "錯誤",
|
||||||
|
"Error decrypting attachment": "解密附件時出錯",
|
||||||
|
"Event information": "事件信息",
|
||||||
|
"Existing Call": "現有通話",
|
||||||
|
"Export E2E room keys": "導出聊天室的端到端加密密鑰",
|
||||||
|
"Failed to ban user": "封禁用戶失敗",
|
||||||
|
"Failed to change password. Is your password correct?": "修改密碼失敗。確認原密碼輸入正確嗎?",
|
||||||
|
"Failed to delete device": "刪除設備失敗",
|
||||||
|
"Failed to forget room %(errCode)s": "無法忘記聊天室 %(errCode)s",
|
||||||
|
"Failed to join room": "無法加入聊天室",
|
||||||
|
"Failed to join the 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 verify email address: make sure you clicked the link in the email": "郵箱驗證失敗: 請確保你已點擊郵件中的鏈接",
|
||||||
|
"Failure to create room": "創建聊天室失敗",
|
||||||
|
"Favourite": "收藏",
|
||||||
|
"favourite": "收藏",
|
||||||
|
"Favourites": "收藏夾",
|
||||||
|
"Fill screen": "全螢幕顯示",
|
||||||
|
"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.": "出於安全考慮,用戶注銷時會清除瀏覽器里的端到端加密密鑰。如果你想要下次登錄 Riot 時能解密過去的聊天記錄,請導出你的聊天室密鑰。",
|
||||||
|
"Found a bug?": "發現漏洞?",
|
||||||
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s 從 %(fromPowerLevel)s 變為 %(toPowerLevel)s",
|
||||||
|
"Guests can't set avatars. Please register.": "游客不能設置頭像。請注冊。.",
|
||||||
|
"Guest users can't create new rooms. Please register to create room and start a chat.": "游客不能創建聊天室。請注冊以創建聊天室和聊天.",
|
||||||
|
"Guest users can't upload files. Please register to upload": "游客不能上傳文件。請注冊以上傳文件",
|
||||||
|
"Guests can't use labs features. Please register.": "游客不能使用實驗性功能。請注冊。.",
|
||||||
|
"Guests cannot join this room even if explicitly invited.": "游客不能加入此聊天室,即使有人主動邀請。.",
|
||||||
|
"had": "已經",
|
||||||
|
"Hangup": "掛斷",
|
||||||
|
"Hide read receipts": "隱藏已讀回執",
|
||||||
|
"Hide Text Formatting Toolbar": "隱藏格式工具欄",
|
||||||
|
"Historical": "曆史",
|
||||||
|
"Homeserver is": "主服務器是",
|
||||||
|
"Identity Server is": "身份認證服務器是",
|
||||||
|
"I have verified my email address": "我已經驗證了我的郵箱地址",
|
||||||
|
"Import E2E room keys": "導入聊天室端對端加密密鑰",
|
||||||
|
"Incorrect verification code": "驗證碼錯誤",
|
||||||
|
"Interface Language": "界面語言",
|
||||||
|
"Invalid alias format": "別名格式錯誤",
|
||||||
|
"Invalid address format": "地址格式錯誤",
|
||||||
|
"Invalid Email Address": "郵箱地址格式錯誤",
|
||||||
|
"Invalid file%(extra)s": "非法文件%(extra)s",
|
||||||
|
"Invite new room members": "邀請新的聊天室成員",
|
||||||
|
"Join Room": "加入聊天室",
|
||||||
|
"joined": "加入了",
|
||||||
|
"%(targetName)s joined the room.": "%(targetName)s 加入了聊天室。.",
|
||||||
|
"Jump to first unread message.": "跳到第一條未讀消息。",
|
||||||
|
"%(senderName)s kicked %(targetName)s.": "%(senderName)s 把 %(targetName)s 踢出了聊天室。.",
|
||||||
|
"Leave room": "離開聊天室",
|
||||||
|
"Login as guest": "以游客的身份登錄",
|
||||||
|
"New password": "新密碼",
|
||||||
|
"Report it": "報告",
|
||||||
|
"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.": "重設密碼會導致所有設備上的端到端加密密鑰被重置,使得加密的聊天記錄不可讀,除非你事先導出密鑰,修改密碼后再導入。此問題將來會得到改善。.",
|
||||||
|
"restore": "恢復",
|
||||||
|
"Return to app": "返回 App",
|
||||||
|
"Return to login screen": "返回登錄頁面",
|
||||||
|
"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 name (optional)": "聊天室名稱 (可選)",
|
||||||
|
"Rooms": "聊天室",
|
||||||
|
"Scroll to bottom of page": "滾動到頁面底部",
|
||||||
|
"Scroll to unread messages": "滾動到未讀消息",
|
||||||
|
"Search": "搜索",
|
||||||
|
"Search failed": "搜索失敗",
|
||||||
|
"Searches DuckDuckGo for results": "搜索 DuckDuckGo",
|
||||||
|
"Send a message (unencrypted)": "發送消息 (非加密)",
|
||||||
|
"Send an encrypted message": "發送加密消息",
|
||||||
|
"Sender device information": "發送者的設備信息",
|
||||||
|
"Send Invites": "發送邀請",
|
||||||
|
"Send Reset Email": "發送密碼重設郵件",
|
||||||
|
"sent an image": "發了一張圖片",
|
||||||
|
"%(senderDisplayName)s sent an image.": "%(senderDisplayName)s 發了一張圖片。.",
|
||||||
|
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s 向 %(targetDisplayName)s 發了加入聊天室的邀請。.",
|
||||||
|
"sent a video": "發了一個視頻",
|
||||||
|
"Server error": "伺服器錯誤",
|
||||||
|
"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.": "伺服器可能不可用、超載,或者其他東西出錯了.",
|
||||||
|
"Session ID": "會話 ID",
|
||||||
|
"%(senderName)s set a profile picture.": "%(senderName)s 設置了頭像。.",
|
||||||
|
"%(senderName)s set their display name to %(displayName)s.": "%(senderName)s 將暱稱改為了 %(displayName)s。.",
|
||||||
|
"Settings": "設置",
|
||||||
|
"Show panel": "顯示側邊欄",
|
||||||
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "用12小時制顯示時間戳 (如:下午 2:30)",
|
||||||
|
"Signed Out": "已退出登錄",
|
||||||
|
"Sign in": "登錄",
|
||||||
|
"Sign out": "注銷",
|
||||||
|
"since the point in time of selecting this option": "從選擇此選項起",
|
||||||
|
"since they joined": "從他們加入時起",
|
||||||
|
"since they were invited": "從他們被邀請時起",
|
||||||
|
"Some of your messages have not been sent": "部分消息發送失敗",
|
||||||
|
"Someone": "某個用戶",
|
||||||
|
"Sorry, this homeserver is using a login which is not recognised ": "很抱歉,無法識別此主伺服器使用的登錄方式 ",
|
||||||
|
"Start a chat": "創建聊天",
|
||||||
|
"Start Chat": "開始聊天",
|
||||||
|
"Submit": "提交",
|
||||||
|
"Success": "成功",
|
||||||
|
"The default role for new room members is": "此聊天室新成員的默認角色是",
|
||||||
|
"The main address for this room is": "此聊天室的主要地址是",
|
||||||
|
"This action cannot be performed by a guest user. Please register to be able to do this": "訪客不能進行此操作。請注冊",
|
||||||
|
"This email address is already in use": "此郵箱地址已經被使用",
|
||||||
|
"This email address was not found": "未找到此郵箱地址",
|
||||||
|
"%(actionVerb)s this person?": "%(actionVerb)s 這個用戶?",
|
||||||
|
"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' 上傳失敗",
|
||||||
|
"Turn Markdown off": "關閉Markdown 語法",
|
||||||
|
"Turn Markdown on": "啟用Markdown 語法",
|
||||||
|
"%(senderName)s turned on end-to-end encryption (algorithm %(algorithm)s).": "%(senderName)s 啟用端對端加密 (algorithm %(algorithm)s).",
|
||||||
|
"Unable to add email address": "無法加入電郵地址",
|
||||||
|
"Unable to capture screen": "無法截取畫面",
|
||||||
|
"Unable to enable Notifications": "無法啟用通知功能",
|
||||||
|
"Would you like to": "你要",
|
||||||
|
"You are already in a call.": "你已在電話通話中",
|
||||||
|
"You're not in any rooms yet! Press": "你尚未加入任何聊天室!請按",
|
||||||
|
"You are trying to access %(roomName)s": "你將進入 %(roomName)聊天室",
|
||||||
|
"You cannot place a call with yourself.": "你不能打電話給自已",
|
||||||
|
"You cannot place VoIP calls in this browser.": "在此瀏覽器下無法置入網路電話通話",
|
||||||
|
"Sun": "星期日",
|
||||||
|
"Mon": "星期一",
|
||||||
|
"Tue": "星期二",
|
||||||
|
"%(severalUsers)sleft": "%(severalUsers)s離開",
|
||||||
|
"%(oneUser)sleft": "%(oneUser)s離開",
|
||||||
|
"%(severalUsers)sjoined and left": "%(severalUsers)s加入與離開",
|
||||||
|
"%(oneUser)sleft and rejoined": "%(oneUser)s離開再重新加入",
|
||||||
|
"for %(amount)sh": " %(amount)sh",
|
||||||
|
"for %(amount)sd": " %(amount)sd",
|
||||||
|
"Online": "在線",
|
||||||
|
"Idle": "閒置",
|
||||||
|
"Offline": "下線",
|
||||||
|
"Disable URL previews for this room (affects only you)": "在這個房間禁止URL預覽(只影響你)",
|
||||||
|
"$senderDisplayName changed the room avatar to <img/>": "$senderDisplayName 更改了聊天室的圖像為 <img/>",
|
||||||
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s 移除了聊天室圖像",
|
||||||
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s 更改了聊天室 %(roomName)s 圖像",
|
||||||
|
"Cancel": "取消",
|
||||||
|
"Custom Server Options": "自定伺服器選項",
|
||||||
|
"Dismiss": "無視",
|
||||||
|
"Mute": "靜音",
|
||||||
|
"Notifications": "通知",
|
||||||
|
"Operation failed": "操作失敗",
|
||||||
|
"powered by Matrix": "由Matrix架設",
|
||||||
|
"Remove": "移除",
|
||||||
|
"unknown error code": "未知的錯誤代碼",
|
||||||
|
"Sunday": "星期日",
|
||||||
|
"Monday": "星期一",
|
||||||
|
"Tuesday": "星期二",
|
||||||
|
"Wednesday": "星期三",
|
||||||
|
"Thursday": "星期四",
|
||||||
|
"Friday": "星期五",
|
||||||
|
"Saturday": "星期六",
|
||||||
|
"OK": "OK",
|
||||||
|
"Please Register": "請註冊",
|
||||||
|
"Add a topic": "新增標題",
|
||||||
|
"VoIP": "VoIP",
|
||||||
|
"Default Device": "默認裝置",
|
||||||
|
"Microphone": "麥克風",
|
||||||
|
"Camera": "攝影機",
|
||||||
|
"Anyone": "任何人",
|
||||||
|
"Bulk Options": "批次選項",
|
||||||
|
"Command error": "指令出錯",
|
||||||
|
"Commands": "指令",
|
||||||
|
"Device ID:": "裝置 ID:",
|
||||||
|
"device id: ": "裝置 id:",
|
||||||
|
"Reason": "原因",
|
||||||
|
"Register": "注冊",
|
||||||
|
"Registration required": "要求註冊",
|
||||||
|
"rejected": "拒絕",
|
||||||
|
"Default server": "默認的伺服器",
|
||||||
|
"Custom server": "自定的伺服器",
|
||||||
|
"Home server URL": "自家伺服器網址",
|
||||||
|
"Identity server URL": "識別伺服器網址",
|
||||||
|
"What does this mean?": "它代表什麼意思?",
|
||||||
|
"Error decrypting audio": "解密音檔出錯",
|
||||||
|
"Error decrypting image": "解密圖片出錯",
|
||||||
|
"Image '%(Body)s' cannot be displayed.": "圖片 '%(Body)s' 無法顯示",
|
||||||
|
"This image cannot be displayed.": "這張圖片無法顯示",
|
||||||
|
"Error decrypting video": "解密影片出錯",
|
||||||
|
"Add an Integration": "新增整合器",
|
||||||
|
"Ongoing conference call%(supportedText)s. %(joinText)s": "%(supportedText)s. %(joinText)s 正在進行電話會議",
|
||||||
|
" (unsupported)": " (不支持)",
|
||||||
|
"URL Previews": "網址預覽",
|
||||||
|
"Enable URL previews for this room (affects only you)": "啟用此房間的網址預覽(僅影響您)",
|
||||||
|
"Drop file here to upload": "把文件放在這裡上傳",
|
||||||
|
"Disable URL previews by default for participants in this room": "默認情況下,此房間的參與者禁用網址預覽",
|
||||||
|
"URL previews are %(globalDisableUrlPreview)s by default for participants in this room.": "默認情況下,這個房間的參與者的網址預覽是%(globalDisableUrlPreview)。",
|
||||||
|
"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)。你想繼續嗎?"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue