Merge branch 'matrix-org:develop' into issue-19180

This commit is contained in:
Oliver Pham 2021-10-05 10:15:11 -04:00 committed by GitHub
commit ab835c0e0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 1633 additions and 825 deletions

View file

@ -39,6 +39,7 @@
@import "./structures/_ViewSource.scss";
@import "./structures/auth/_CompleteSecurity.scss";
@import "./structures/auth/_Login.scss";
@import "./structures/auth/_SetupEncryptionBody.scss";
@import "./views/audio_messages/_AudioPlayer.scss";
@import "./views/audio_messages/_PlayPauseButton.scss";
@import "./views/audio_messages/_PlaybackContainer.scss";

View file

@ -33,6 +33,19 @@ limitations under the License.
margin: 0 auto;
}
.mx_CompleteSecurity_skip {
mask: url('$(res)/img/feather-customised/cancel.svg');
mask-repeat: no-repeat;
mask-position: center;
mask-size: cover;
width: 18px;
height: 18px;
background-color: $dialog-close-fg-color;
cursor: pointer;
position: absolute;
right: 24px;
}
.mx_CompleteSecurity_body {
font-size: $font-15px;
}

View file

@ -0,0 +1,24 @@
/*
Copyright 2021 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.mx_SetupEncryptionBody_reset {
color: $light-fg-color;
margin-top: $font-14px;
a.mx_SetupEncryptionBody_reset_link:is(:link, :hover, :visited) {
color: $warning-color;
}
}

View file

@ -67,5 +67,7 @@ limitations under the License.
> .mx_AccessibleButton_kind_link {
padding-left: 0; // to align with left side
padding-right: 0;
margin-right: 10px;
}
}

View file

@ -20,6 +20,7 @@ import * as sdk from '../../../index';
import { SetupEncryptionStore, Phase } from '../../../stores/SetupEncryptionStore';
import SetupEncryptionBody from "./SetupEncryptionBody";
import { replaceableComponent } from "../../../utils/replaceableComponent";
import AccessibleButton from '../../views/elements/AccessibleButton';
interface IProps {
onFinished: () => void;
@ -27,6 +28,7 @@ interface IProps {
interface IState {
phase: Phase;
lostKeys: boolean;
}
@replaceableComponent("structures.auth.CompleteSecurity")
@ -36,12 +38,17 @@ export default class CompleteSecurity extends React.Component<IProps, IState> {
const store = SetupEncryptionStore.sharedInstance();
store.on("update", this.onStoreUpdate);
store.start();
this.state = { phase: store.phase };
this.state = { phase: store.phase, lostKeys: store.lostKeys() };
}
private onStoreUpdate = (): void => {
const store = SetupEncryptionStore.sharedInstance();
this.setState({ phase: store.phase });
this.setState({ phase: store.phase, lostKeys: store.lostKeys() });
};
private onSkipClick = (): void => {
const store = SetupEncryptionStore.sharedInstance();
store.skip();
};
public componentWillUnmount(): void {
@ -53,15 +60,20 @@ export default class CompleteSecurity extends React.Component<IProps, IState> {
public render() {
const AuthPage = sdk.getComponent("auth.AuthPage");
const CompleteSecurityBody = sdk.getComponent("auth.CompleteSecurityBody");
const { phase } = this.state;
const { phase, lostKeys } = this.state;
let icon;
let title;
if (phase === Phase.Loading) {
return null;
} else if (phase === Phase.Intro) {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_warning" />;
title = _t("Verify this login");
if (lostKeys) {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_warning" />;
title = _t("Unable to verify this login");
} else {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_warning" />;
title = _t("Verify this login");
}
} else if (phase === Phase.Done) {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_verified" />;
title = _t("Session verified");
@ -71,16 +83,29 @@ export default class CompleteSecurity extends React.Component<IProps, IState> {
} else if (phase === Phase.Busy) {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_warning" />;
title = _t("Verify this login");
} else if (phase === Phase.ConfirmReset) {
icon = <span className="mx_CompleteSecurity_headerIcon mx_E2EIcon_warning" />;
title = _t("Really reset verification keys?");
} else if (phase === Phase.Finished) {
// SetupEncryptionBody will take care of calling onFinished, we don't need to do anything
} else {
throw new Error(`Unknown phase ${phase}`);
}
let skipButton;
if (phase === Phase.Intro || phase === Phase.ConfirmReset) {
skipButton = (
<AccessibleButton onClick={this.onSkipClick} className="mx_CompleteSecurity_skip" aria-label={_t("Skip verification for now")} />
);
}
return (
<AuthPage>
<CompleteSecurityBody>
<h2 className="mx_CompleteSecurity_header">
{ icon }
{ title }
{ skipButton }
</h2>
<div className="mx_CompleteSecurity_body">
<SetupEncryptionBody onFinished={this.props.onFinished} />

View file

@ -46,6 +46,7 @@ interface IState {
phase: Phase;
verificationRequest: VerificationRequest;
backupInfo: IKeyBackupInfo;
lostKeys: boolean;
}
@replaceableComponent("structures.auth.SetupEncryptionBody")
@ -62,6 +63,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
// Because of the latter, it lives in the state.
verificationRequest: store.verificationRequest,
backupInfo: store.backupInfo,
lostKeys: store.lostKeys(),
};
}
@ -75,6 +77,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
phase: store.phase,
verificationRequest: store.verificationRequest,
backupInfo: store.backupInfo,
lostKeys: store.lostKeys(),
});
};
@ -105,11 +108,6 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
});
};
private onSkipClick = () => {
const store = SetupEncryptionStore.sharedInstance();
store.skip();
};
private onSkipConfirmClick = () => {
const store = SetupEncryptionStore.sharedInstance();
store.skipConfirm();
@ -120,6 +118,22 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
store.returnAfterSkip();
};
private onResetClick = (ev: React.MouseEvent<HTMLAnchorElement>) => {
ev.preventDefault();
const store = SetupEncryptionStore.sharedInstance();
store.reset();
};
private onResetConfirmClick = () => {
const store = SetupEncryptionStore.sharedInstance();
store.resetConfirm();
};
private onResetBackClick = () => {
const store = SetupEncryptionStore.sharedInstance();
store.returnAfterReset();
};
private onDoneClick = () => {
const store = SetupEncryptionStore.sharedInstance();
store.done();
@ -132,6 +146,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
public render() {
const {
phase,
lostKeys,
} = this.state;
if (this.state.verificationRequest) {
@ -143,43 +158,67 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
isRoomEncrypted={false}
/>;
} else if (phase === Phase.Intro) {
const store = SetupEncryptionStore.sharedInstance();
let recoveryKeyPrompt;
if (store.keyInfo && keyHasPassphrase(store.keyInfo)) {
recoveryKeyPrompt = _t("Use Security Key or Phrase");
} else if (store.keyInfo) {
recoveryKeyPrompt = _t("Use Security Key");
}
if (lostKeys) {
return (
<div>
<p>{ _t(
"It looks like you don't have a Security Key or any other devices you can " +
"verify against. This device will not be able to access old encrypted messages. " +
"In order to verify your identity on this device, you'll need to reset " +
"your verification keys.",
) }</p>
let useRecoveryKeyButton;
if (recoveryKeyPrompt) {
useRecoveryKeyButton = <AccessibleButton kind="link" onClick={this.onUsePassphraseClick}>
{ recoveryKeyPrompt }
</AccessibleButton>;
}
let verifyButton;
if (store.hasDevicesToVerifyAgainst) {
verifyButton = <AccessibleButton kind="primary" onClick={this.onVerifyClick}>
{ _t("Use another login") }
</AccessibleButton>;
}
return (
<div>
<p>{ _t(
"Verify your identity to access encrypted messages and prove your identity to others.",
) }</p>
<div className="mx_CompleteSecurity_actionRow">
{ verifyButton }
{ useRecoveryKeyButton }
<AccessibleButton kind="danger" onClick={this.onSkipClick}>
{ _t("Skip") }
</AccessibleButton>
<div className="mx_CompleteSecurity_actionRow">
<AccessibleButton kind="primary" onClick={this.onResetConfirmClick}>
{ _t("Proceed with reset") }
</AccessibleButton>
</div>
</div>
</div>
);
);
} else {
const store = SetupEncryptionStore.sharedInstance();
let recoveryKeyPrompt;
if (store.keyInfo && keyHasPassphrase(store.keyInfo)) {
recoveryKeyPrompt = _t("Verify with Security Key or Phrase");
} else if (store.keyInfo) {
recoveryKeyPrompt = _t("Verify with Security Key");
}
let useRecoveryKeyButton;
if (recoveryKeyPrompt) {
useRecoveryKeyButton = <AccessibleButton kind="primary" onClick={this.onUsePassphraseClick}>
{ recoveryKeyPrompt }
</AccessibleButton>;
}
let verifyButton;
if (store.hasDevicesToVerifyAgainst) {
verifyButton = <AccessibleButton kind="primary" onClick={this.onVerifyClick}>
{ _t("Verify with another login") }
</AccessibleButton>;
}
return (
<div>
<p>{ _t(
"Verify your identity to access encrypted messages and prove your identity to others.",
) }</p>
<div className="mx_CompleteSecurity_actionRow">
{ verifyButton }
{ useRecoveryKeyButton }
</div>
<div className="mx_SetupEncryptionBody_reset">
{ _t("Forgotten or lost all recovery methods? <a>Reset all</a>", null, {
a: (sub) => <a
href=""
onClick={this.onResetClick}
className="mx_SetupEncryptionBody_reset_link">{ sub }</a>,
}) }
</div>
</div>
);
}
} else if (phase === Phase.Done) {
let message;
if (this.state.backupInfo) {
@ -215,14 +254,13 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
) }</p>
<div className="mx_CompleteSecurity_actionRow">
<AccessibleButton
className="warning"
kind="secondary"
kind="danger_outline"
onClick={this.onSkipConfirmClick}
>
{ _t("Skip") }
{ _t("I'll verify later") }
</AccessibleButton>
<AccessibleButton
kind="danger"
kind="primary"
onClick={this.onSkipBackClick}
>
{ _t("Go Back") }
@ -230,6 +268,30 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
</div>
</div>
);
} else if (phase === Phase.ConfirmReset) {
return (
<div>
<p>{ _t(
"Resetting your verification keys cannot be undone. After resetting, " +
"you won't have access to old encrypted messages, and any friends who " +
"have previously verified you will see security warnings until you " +
"re-verify with them.",
) }</p>
<p>{ _t(
"Please only proceed if you're sure you've lost all of your other " +
"devices and your security key.",
) }</p>
<div className="mx_CompleteSecurity_actionRow">
<AccessibleButton kind="danger_outline" onClick={this.onResetConfirmClick}>
{ _t("Proceed with reset") }
</AccessibleButton>
<AccessibleButton kind="primary" onClick={this.onResetBackClick}>
{ _t("Go Back") }
</AccessibleButton>
</div>
</div>
);
} else if (phase === Phase.Busy || phase === Phase.Loading) {
return <Spinner />;
} else {

View file

@ -49,16 +49,18 @@ const EncryptionInfo: React.FC<IProps> = ({
isSelfVerification,
}: IProps) => {
let content: JSX.Element;
if (waitingForOtherParty || waitingForNetwork) {
if (waitingForOtherParty && isSelfVerification) {
content = (
<div>
{ _t("To proceed, please accept the verification request on your other login.") }
</div>
);
} else if (waitingForOtherParty || waitingForNetwork) {
let text: string;
if (waitingForOtherParty) {
if (isSelfVerification) {
text = _t("Accept on your other login…");
} else {
text = _t("Waiting for %(displayName)s to accept…", {
displayName: (member as User).displayName || (member as RoomMember).name || member.userId,
});
}
text = _t("Waiting for %(displayName)s to accept…", {
displayName: (member as User).displayName || (member as RoomMember).name || member.userId,
});
} else {
text = _t("Accepting…");
}

View file

@ -35,6 +35,8 @@ import InviteReason from "../elements/InviteReason";
import { IOOBData } from "../../../stores/ThreepidInviteStore";
import Spinner from "../elements/Spinner";
import AccessibleButton from "../elements/AccessibleButton";
import { UIFeature } from "../../../settings/UIFeature";
import SettingsStore from "../../../settings/SettingsStore";
const MemberEventHtmlReasonField = "io.element.html_reason";
@ -339,8 +341,10 @@ export default class RoomPreviewBar extends React.Component<IProps, IState> {
}
case MessageCase.NotLoggedIn: {
title = _t("Join the conversation with an account");
primaryActionLabel = _t("Sign Up");
primaryActionHandler = this.onRegisterClick;
if (SettingsStore.getValue(UIFeature.Registration)) {
primaryActionLabel = _t("Sign Up");
primaryActionHandler = this.onRegisterClick;
}
secondaryActionLabel = _t("Sign In");
secondaryActionHandler = this.onLoginClick;
if (this.props.previewLoading) {

View file

@ -121,24 +121,24 @@ export default class VerificationShowSas extends React.Component<IProps, IState>
}
let confirm;
if (this.state.pending || this.state.cancelling) {
if (this.state.pending && this.props.isSelf) {
let text;
// device shouldn't be null in this situation but it can be, eg. if the device is
// logged out during verification
if (this.props.device) {
text = _t("Waiting for you to verify on your other session, %(deviceName)s (%(deviceId)s)…", {
deviceName: this.props.device ? this.props.device.getDisplayName() : '',
deviceId: this.props.device ? this.props.device.deviceId : '',
});
} else {
text = _t("Waiting for you to verify on your other session…");
}
confirm = <p>{ text }</p>;
} else if (this.state.pending || this.state.cancelling) {
let text;
if (this.state.pending) {
if (this.props.isSelf) {
// device shouldn't be null in this situation but it can be, eg. if the device is
// logged out during verification
if (this.props.device) {
text = _t("Waiting for your other session, %(deviceName)s (%(deviceId)s), to verify…", {
deviceName: this.props.device ? this.props.device.getDisplayName() : '',
deviceId: this.props.device ? this.props.device.deviceId : '',
});
} else {
text = _t("Waiting for your other session to verify…");
}
} else {
const { displayName } = this.props;
text = _t("Waiting for %(displayName)s to verify…", { displayName });
}
const { displayName } = this.props;
text = _t("Waiting for %(displayName)s to verify…", { displayName });
} else {
text = _t("Cancelling…");
}

View file

@ -2901,7 +2901,7 @@
"e.g. my-space": "např. můj-prostor",
"Silence call": "Ztlumit zvonění",
"Sound on": "Zvuk zapnutý",
"Show all rooms in Home": "Zobrazit všechny místnosti na domácí obrazovce",
"Show all rooms in Home": "Zobrazit všechny místnosti na úvodní obrazovce",
"Report to moderators prototype. In rooms that support moderation, the `report` button will let you report abuse to room moderators": "Prototyp Nahlášování moderátorům. V místnostech, které podporují moderování, vám tlačítko `nahlásit` umožní nahlásit zneužití moderátorům místnosti",
"%(senderName)s changed the <a>pinned messages</a> for the room.": "%(senderName)s změnil(a) <a>připnuté zprávy</a> v místnosti.",
"%(senderName)s kicked %(targetName)s": "%(senderName)s vykopl(a) uživatele %(targetName)s",
@ -3056,7 +3056,7 @@
"Want to add a new space instead?": "Chcete místo toho přidat nový prostor?",
"Decrypting": "Dešifrování",
"Show all rooms": "Zobrazit všechny místnosti",
"All rooms you're in will appear in Home.": "Všechny místnosti, ve kterých se nacházíte, se zobrazí na domovské obrazovce.",
"All rooms you're in will appear in Home.": "Všechny místnosti, ve kterých se nacházíte, se zobrazí na úvodní obrazovce.",
"Send pseudonymous analytics data": "Odeslat pseudonymní analytická data",
"Missed call": "Zmeškaný hovor",
"Call declined": "Hovor odmítnut",
@ -3158,9 +3158,51 @@
"This room is in some spaces youre not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Tato místnost se nachází v některých prostorech, jejichž nejste správcem. V těchto prostorech bude stará místnost stále zobrazena, ale lidé budou vyzváni, aby se připojili k nové místnosti.",
"Before you upgrade": "Než provedete aktualizaci",
"To join a space you'll need an invite.": "Pro připojení k prostoru potřebujete pozvánku.",
"You can also make Spaces from <a>communities</a>.": "Můžete také vytvořit prostory ze <a>skupin</a>.",
"You can also make Spaces from <a>communities</a>.": "Prostory můžete vytvořit také ze <a>skupin</a>.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Dočasně zobrazit skupiny místo prostorů pro tuto relaci. Podpora bude v blízké budoucnosti odstraněna. Toto provede přenačtení Elementu.",
"Display Communities instead of Spaces": "Zobrazit skupiny místo prostorů",
"Joining space …": "Připojování k prostoru…",
"%(reactors)s reacted with %(content)s": "%(reactors)s reagoval(a) na %(content)s"
"%(reactors)s reacted with %(content)s": "%(reactors)s reagoval(a) na %(content)s",
"Would you like to leave the rooms in this space?": "Chcete odejít z místností v tomto prostoru?",
"You are about to leave <spaceName/>.": "Odcházíte z <spaceName/>.",
"Leave some rooms": "Odejít z některých místností",
"Don't leave any rooms": "Neodcházet z žádné místnosti",
"Leave all rooms": "Odejít ze všech místností",
"Expand quotes │ ⇧+click": "Rozbalit uvozovky │ ⇧+kliknutí",
"Collapse quotes │ ⇧+click": "Sbalit uvozovky │ ⇧+kliknutí",
"Include Attachments": "Zahrnout přílohy",
"Size Limit": "Omezení velikosti",
"Format": "Formát",
"Select from the options below to export chats from your timeline": "Vyberte jednu z níže uvedených možností pro export chatů z časové osy",
"Export Chat": "Exportovat chat",
"Exporting your data": "Exportování dat",
"Stop": "Zastavit",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Opravdu chcete ukončit export dat? Pokud ano, budete muset začít znovu.",
"Your export was successful. Find it in your Downloads folder.": "Váš export proběhl úspěšně. Najdete jej ve složce pro stažené soubory.",
"The export was cancelled successfully": "Export byl úspěšně zrušen",
"Export Successful": "Export proběhl úspěšně",
"MB": "MB",
"Number of messages": "Počet zpráv",
"Number of messages can only be a number between %(min)s and %(max)s": "Počet zpráv může být pouze číslo mezi %(min)s a %(max)s",
"Size can only be a number between %(min)s MB and %(max)s MB": "Velikost může být pouze číslo mezi %(min)s MB a %(max)s MB",
"Enter a number between %(min)s and %(max)s": "Zadejte číslo mezi %(min)s a %(max)s",
"In reply to <a>this message</a>": "V odpovědi na <a>tuto zprávu</a>",
"Export chat": "Exportovat chat",
"File Attached": "Přiložený soubor",
"Error fetching file": "Chyba při načítání souboru",
"Topic: %(topic)s": "Téma: %(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "Toto je začátek exportu <roomName/>. Exportováno pomocí <exporterDetails/> v %(exportDate)s.",
"%(creatorName)s created this room.": "%(creatorName)s vytvořil(a) tuto místnost.",
"Media omitted - file size limit exceeded": "Vynechaná média - překročen limit velikosti souboru",
"Media omitted": "Vynechaná média",
"Current Timeline": "Aktuální časová osa",
"Specify a number of messages": "Zadejte počet zpráv",
"From the beginning": "Od začátku",
"Plain Text": "Prostý text",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "Opravdu chcete skončit během tohoto exportu?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s poslal(a) nálepku.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s změnil(a) avatar místnosti.",
"%(date)s at %(time)s": "%(date)s v %(time)s"
}

View file

@ -3134,5 +3134,26 @@
"Joining space …": "Space beitreten…",
"To join a space you'll need an invite.": "Um einem Space beizutreten brauchst du eine Einladung.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "In dieser Sitzung temporär Communities statt Spaces anzeigen. Unterstützung hierfür wird in naher Zukunft entfernt. Dies wird Element neu laden.",
"Display Communities instead of Spaces": "Communities statt Spaces anzeigen"
"Display Communities instead of Spaces": "Communities statt Spaces anzeigen",
"To join this Space, hide communities in your <a>preferences</a>": "<a>Deaktiviere Communities in den Einstellungen</a>, um diesen Space beizutreten.",
"To view this Space, hide communities in your <a>preferences</a>": "<a>Deaktiviere Communities in den Einstellungen</a>, um diesen Space anzuzeigen.",
"To join %(communityName)s, swap to communities in your <a>preferences</a>": "Um %(communityName)s beizutreten, <a>aktiviere Communities in den Einstellungen</a>",
"To view %(communityName)s, swap to communities in your <a>preferences</a>": "Um %(communityName)s anzuzeigen, <a>aktiviere Communities in den Einstellungen</a>",
"Private community": "Private Community",
"Public community": "Öffentliche Community",
"You are about to leave <spaceName/>.": "Du bist dabei, <spaceName/> zu verlassen.",
"Leave some rooms": "Zu verlassende Räume auswählen",
"Leave all rooms": "Alle Räume verlassen",
"Don't leave any rooms": "Räume nicht verlassen",
"%(reactors)s reacted with %(content)s": "%(reactors)s hat mit %(content)s reagiert",
"Some encryption parameters have been changed.": "Einige Verschlüsselungsoptionen wurden geändert.",
"Message": "Nachricht",
"Message didn't send. Click for info.": "Nachricht nicht gesendet. Klicke für Details.",
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "<a>Erstelle einen neuen Raum für deine Konversation</a>, um diese Probleme zu umgehen.",
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Es ist nicht sinnvoll, verschlüsselte Räume öffentlich zu machen.</b> Da jeder den Raum betreten kann, kann auch jeder Nachrichten lesen, was die Verschlüsselung sinnlos macht. Außerdem wird das Senden und Empfangen von Nachrichten langsamer werden.",
"Select the roles required to change various parts of the space": "Wähle, von wem folgende Aktionen ausgeführt werden können",
"Upgrade anyway": "Trotzdem upgraden",
"This room is in some spaces youre not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Dieser Raum ist in einigen Spaces, in denen du nicht Admin bist. Daher wird dort noch der alte Raum angezeigt, die Leute werden aber auf den neuen Raum hingewiesen.",
"Before you upgrade": "Bevor du upgradest",
"You can also make Spaces from <a>communities</a>.": "Du kannst Spaces auch aus <a>Communities</a> erstellen."
}

View file

@ -947,8 +947,8 @@
"Verify this session by confirming the following number appears on its screen.": "Verify this session by confirming the following number appears on its screen.",
"Verify this user by confirming the following number appears on their screen.": "Verify this user by confirming the following number appears on their screen.",
"Unable to find a supported verification method.": "Unable to find a supported verification method.",
"Waiting for your other session, %(deviceName)s (%(deviceId)s), to verify…": "Waiting for your other session, %(deviceName)s (%(deviceId)s), to verify…",
"Waiting for your other session to verify…": "Waiting for your other session to verify…",
"Waiting for you to verify on your other session, %(deviceName)s (%(deviceId)s)…": "Waiting for you to verify on your other session, %(deviceName)s (%(deviceId)s)…",
"Waiting for you to verify on your other session…": "Waiting for you to verify on your other session…",
"Waiting for %(displayName)s to verify…": "Waiting for %(displayName)s to verify…",
"Cancelling…": "Cancelling…",
"They match": "They match",
@ -1803,7 +1803,7 @@
"In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.",
"When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.",
"Back": "Back",
"Accept on your other login…": "Accept on your other login…",
"To proceed, please accept the verification request on your other login.": "To proceed, please accept the verification request on your other login.",
"Waiting for %(displayName)s to accept…": "Waiting for %(displayName)s to accept…",
"Accepting…": "Accepting…",
"Start Verification": "Start Verification",
@ -2982,8 +2982,11 @@
"Could not load user profile": "Could not load user profile",
"Decrypted event source": "Decrypted event source",
"Original event source": "Original event source",
"Unable to verify this login": "Unable to verify this login",
"Verify this login": "Verify this login",
"Session verified": "Session verified",
"Really reset verification keys?": "Really reset verification keys?",
"Skip verification for now": "Skip verification for now",
"Failed to send email": "Failed to send email",
"The email address linked to your account must be entered.": "The email address linked to your account must be entered.",
"A new password must be entered.": "A new password must be entered.",
@ -3037,13 +3040,18 @@
"Create account": "Create account",
"Host account on": "Host account on",
"Decide where your account is hosted": "Decide where your account is hosted",
"Use Security Key or Phrase": "Use Security Key or Phrase",
"Use Security Key": "Use Security Key",
"Use another login": "Use another login",
"It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.",
"Proceed with reset": "Proceed with reset",
"Verify with Security Key or Phrase": "Verify with Security Key or Phrase",
"Verify with Security Key": "Verify with Security Key",
"Verify with another login": "Verify with another login",
"Verify your identity to access encrypted messages and prove your identity to others.": "Verify your identity to access encrypted messages and prove your identity to others.",
"Your new session is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Your new session is now verified. It has access to your encrypted messages, and other users will see it as trusted.",
"Your new session is now verified. Other users will see it as trusted.": "Your new session is now verified. Other users will see it as trusted.",
"Without verifying, you wont have access to all your messages and may appear as untrusted to others.": "Without verifying, you wont have access to all your messages and may appear as untrusted to others.",
"I'll verify later": "I'll verify later",
"Resetting your verification keys cannot be undone. After resetting, you won't have access to old encrypted messages, and any friends who have previously verified you will see security warnings until you re-verify with them.": "Resetting your verification keys cannot be undone. After resetting, you won't have access to old encrypted messages, and any friends who have previously verified you will see security warnings until you re-verify with them.",
"Please only proceed if you're sure you've lost all of your other devices and your security key.": "Please only proceed if you're sure you've lost all of your other devices and your security key.",
"Failed to re-authenticate due to a homeserver problem": "Failed to re-authenticate due to a homeserver problem",
"Incorrect password": "Incorrect password",
"Failed to re-authenticate": "Failed to re-authenticate",

View file

@ -3099,5 +3099,62 @@
"What kind of Space do you want to create?": "Kian aron volas vi krei?",
"All rooms you're in will appear in Home.": "Ĉiuj ĉambroj, kie vi estas, aperos en la ĉefpaĝo.",
"Show all rooms in Home": "Montri ĉiujn ĉambrojn en ĉefpaĝo",
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s fiksis <a>mesaĝon</a> al ĉi tiu ĉambro. Vidu ĉiujn <b>fiksitajn mesaĝojn</b>."
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s fiksis <a>mesaĝon</a> al ĉi tiu ĉambro. Vidu ĉiujn <b>fiksitajn mesaĝojn</b>.",
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Por eviti tiujn problemojn, kreu <a>novan ĉifritan ĉambron</a> por la planata interparolo.",
"<b>It's not recommended to add encryption to public rooms.</b>Anyone can find and join public rooms, so anyone can read messages in them. You'll get none of the benefits of encryption, and you won't be able to turn it off later. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Ne rekomendate estas aldoni ĉifradon al publikaj ĉambroj.</b> Ĉiu ajn povas trovi publikajn ĉambrojn kaj aliĝi, do ĉiu ajn povas legi ties mesaĝojn. Vi havos neniujn avantaĝojn de ĉifrado, kaj vi ne povos ĝin malŝalti pli poste. Ĉifrado en publikaj ĉambroj malrapidigos ricevadon kaj sendadon de mesaĝoj.",
"Are you sure you want to add encryption to this public room?": "Ĉu vi certas, ke vi volas aldoni ĉifradon al ĉi tiu publika ĉambro?",
"Select the roles required to change various parts of the space": "Elekti rolojn bezonatajn por ŝanĝado de diversaj partoj de la aro",
"Change description": "Ŝanĝi priskribon",
"Change main address for the space": "Ŝanĝi ĉefadreson de aro",
"Change space name": "Ŝanĝi nomon de aro",
"Change space avatar": "Ŝanĝi bildon de aro",
"Upgrade anyway": "Tamen gradaltigi",
"This room is in some spaces youre not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Ĉi tiu ĉambro estas en iuj aroj, kiujn vi ne administras. En tiuj aroj, la malnova ĉambro aperos, sed tie oni ricevos avizon aliĝi al la nova.",
"Before you upgrade": "Antaŭ ol vi gradaltigos",
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Ĉiu en <spaceName/> povas trovi kaj aliĝi. Vi povas elekti ankaŭ aliajn arojn.",
"Currently, %(count)s spaces have access|one": "Nun, aro povas aliri",
"& %(count)s more|one": "kaj %(count)s pli",
"To join a space you'll need an invite.": "Por aliĝi al aro, vi bezonas inviton.",
"You can also make Spaces from <a>communities</a>.": "Vi ankaŭ povas krei Arojn el <a>komunumoj</a>.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Provizore montri komunumojn anstataŭ arojn por tiu ĉi salutaĵo. Subteno de tio ĉi baldaŭ malaperos. Ĉi tio re-enlegos Elementon.",
"Display Communities instead of Spaces": "Montri komunumojn anstataŭ arojn",
"Autoplay videos": "Memage ludi filmojn",
"Autoplay GIFs": "Memage ludi GIF-ojn",
"Multiple integration managers (requires manual setup)": "Pluraj kunigiloj (bezonas permanan agordon)",
"Threaded messaging": "Mesaĝaj fadenoj",
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s malfiksis mesaĝon de ĉi tiu ĉambro. Vidu ĉiujn fiksitajn mesaĝojn.",
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s malfiksis <a>mesaĝon</a> de ĉi tiu ĉambro. Vidu ĉiujn <b>fiksitajn mesaĝojn</b>.",
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s fiksis mesaĝon al ĉi tiu ĉambro. Vidu ĉiujn fiksitajn mesaĝojn.",
"To join this Space, hide communities in your <a>preferences</a>": "Por aliĝi al ĉi tiu aro, kaŝu komunumojn per viaj <a>agordoj</a>",
"To view this Space, hide communities in your <a>preferences</a>": "Por vidi ĉi tiun aron, kaŝu komunumojn per viaj <a>agordoj</a>",
"Rooms and spaces": "Ĉambroj kaj aroj",
"Results": "Rezultoj",
"To join %(communityName)s, swap to communities in your <a>preferences</a>": "Por aliĝi al %(communityName)s, ŝaltu komunumojn en viaj <a>agordoj</a>",
"To view %(communityName)s, swap to communities in your <a>preferences</a>": "Por vidi komunumon %(communityName)s, ŝaltu komunumojn en viaj <a>agordoj</a>",
"Private community": "Privata komunumo",
"Public community": "Publika komunumo",
"Forward": "Plusendi",
"Would you like to leave the rooms in this space?": "Ĉu vi volus foriri de la ĉambroj en ĉi tiu aro?",
"You are about to leave <spaceName/>.": "Vi foriros de <spaceName/>.",
"Leave some rooms": "Foriri de iuj ĉambroj",
"Leave all rooms": "Foriri de ĉiuj ĉambroj",
"Don't leave any rooms": "Foriru de neniuj ĉambroj",
"%(reactors)s reacted with %(content)s": "%(reactors)s reagis per %(content)s",
"Thread": "Fadeno",
"Some encryption parameters have been changed.": "Ŝanĝiĝis iuj parametroj de ĉifrado.",
"Role in <RoomName/>": "Rolo en <RoomName/>",
"Message": "Mesaĝo",
"Show threads": "Montri fadenojn",
"Joining space …": "Aliĝante al aro…",
"Explore %(spaceName)s": "Esplori aron %(spaceName)s",
"Message didn't send. Click for info.": "Mesaĝo ne sendiĝis. Klaku por akiri informojn.",
"Send a sticker": "Sendi glumarkon",
"Reply to thread…": "Respondi al fadeno…",
"Reply to encrypted thread…": "Respondi al ĉifrita fadeno…",
"Add emoji": "Aldoni bildosignon",
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Por eviti ĉi tiujn problemojn, kreu <a>novan publikan ĉambron</a> por la dezirata interparolo.",
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Publikigo de ĉifrataj ĉambroj estas malrekomendata.</b> Ĝi implicas, ke ĉiu povos trovi la ĉambron kaj aliĝi al ĝi, kaj ĉiu do povos legi mesaĝojn. Vi havos neniujn avantaĝojn de ĉifrado. Ĉifrado de mesaĝoj en publika ĉambro malrapidigos iliajn ricevadon kaj sendadon.",
"Are you sure you want to make this encrypted room public?": "Ĉu vi certas, ke vi volas publikigi ĉi tiun ĉifratan ĉambron?",
"Unknown failure": "Nekonata malsukceso",
"Failed to update the join rules": "Malsukcesis ĝisdatigi regulojn pri aliĝo"
}

File diff suppressed because it is too large Load diff

View file

@ -2705,7 +2705,7 @@
"Invite by username": "Kutsu kasutajanime alusel",
"What projects are you working on?": "Mis ettevõtmistega sa tegeled?",
"Decrypted event source": "Sündmuse dekrüptitud lähtekood",
"Original event source": "Algse sündmuse lähtekood",
"Original event source": "Sündmuse töötlemata lähtekood",
"Failed to remove some rooms. Try again later": "Mõnede jututubade eemaldamine ei õnnestunud. Proovi hiljem uuesti",
"Removing...": "Eemaldan...",
"Mark as not suggested": "Eemalda soovitus",
@ -3158,5 +3158,47 @@
"Before you upgrade": "Enne uuendamist",
"To join a space you'll need an invite.": "Kogukonnakeskusega liitumiseks vajad kutset.",
"%(reactors)s reacted with %(content)s": "%(reactors)s kasutajat reageeris järgnevalt: %(content)s",
"Joining space …": "Liitun kohukonnakeskusega…"
"Joining space …": "Liitun kohukonnakeskusega…",
"Would you like to leave the rooms in this space?": "Kas sa soovid lahkuda ka selle kogukonna jututubadest?",
"You are about to leave <spaceName/>.": "Sa oled lahkumas <spaceName/> kogukonnast.",
"Leave some rooms": "Lahku mõnedest jututubadest",
"Leave all rooms": "Lahku kõikidest jututubadest",
"Don't leave any rooms": "Ära lahku ühestki jututoast",
"Expand quotes │ ⇧+click": "Näita tsitaate │ ⇧+click",
"Collapse quotes │ ⇧+click": "Ahenda tsitaadid │ ⇧+click",
"Media omitted": "Osa meediat jäi eksportimata",
"Media omitted - file size limit exceeded": "Osa meediat jäi vahele failisuuruse piirangu tõttu",
"Include Attachments": "Kaasa manused",
"Size Limit": "Andmemahu piir",
"Format": "Vorming",
"Select from the options below to export chats from your timeline": "Kui soovid oma ajajoonelt mõnda vestlust eksportida, siis vali tingimused alljärgnevalt",
"Export Chat": "Ekspordi vestlus",
"Exporting your data": "Ekspordin sinu andmeid",
"Stop": "Peata",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Kas sa oled kindel, et soovid oma andmete eksporti katkestada? Kui nii toimid, siis pead hiljem uuesti alustama.",
"Your export was successful. Find it in your Downloads folder.": "Sinu andmete eksport õnnestus. Faili leiad tavapärasest allalaadimiste kaustast.",
"The export was cancelled successfully": "Ekspordi tühistamine õnnestus",
"Export Successful": "Eksport õnnestus",
"MB": "MB",
"Number of messages": "Sõnumite arv",
"Number of messages can only be a number between %(min)s and %(max)s": "Sõnumite arv saab olla ainult number%(min)s ja %(max)s vahemikust",
"Size can only be a number between %(min)s MB and %(max)s MB": "Suurus saab olla number %(min)s MB ja %(max)s MB vahemikust",
"Enter a number between %(min)s and %(max)s": "Sisesta number %(min)s ja %(max)s vahemikust",
"In reply to <a>this message</a>": "Vastuseks <a>sellele sõnumile</a>",
"Export chat": "Ekspordi vestlus",
"File Attached": "Fail on manustatud",
"Error fetching file": "Viga faili laadimisel",
"Topic: %(topic)s": "Teema: %(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "See on <roomName/> jututoast eksporditud andmekogu. Viited: <exporterDetails/>, %(exportDate)s.",
"%(creatorName)s created this room.": "%(creatorName)s lõi selle jututoa.",
"Current Timeline": "Praegune ajajoon",
"Specify a number of messages": "Määra sõnumite arv",
"From the beginning": "Algusest alates",
"Plain Text": "Vormindamata tekst",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "Kas sa oled kindel, et soovid lõpetada tegevuse selle ekspordi ajal?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s saatis kleepsu.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s muutis jututoa tunnuspilti.",
"%(date)s at %(time)s": "%(date)s %(time)s"
}

View file

@ -3162,5 +3162,12 @@
"To join a space you'll need an invite.": "Vous avez besoin dune invitation pour rejoindre un espace.",
"You can also make Spaces from <a>communities</a>.": "Vous pouvez également créer des espaces à partir de <a>communautés</a>.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Montre temporairement les communautés au lieu des espaces pour cette session. Il ne sera plus possible de le faire dans un futur proche. Cela va recharger Element.",
"Display Communities instead of Spaces": "Afficher les communautés au lieu des espaces"
"Display Communities instead of Spaces": "Afficher les communautés au lieu des espaces",
"Would you like to leave the rooms in this space?": "Voulez-vous quitter les salons de cet espace ?",
"You are about to leave <spaceName/>.": "Vous êtes sur le point de quitter <spaceName/>.",
"Leave some rooms": "Quitter certains salons",
"Leave all rooms": "Quitter tous les salons",
"Don't leave any rooms": "Ne quitter aucun salon",
"Expand quotes │ ⇧+click": "Développer les citations │ ⇧+clic",
"Collapse quotes │ ⇧+click": "Réduire les citations │ ⇧+clic"
}

View file

@ -3157,5 +3157,14 @@
"To join a space you'll need an invite.": "Para unirte a un espazo precisas un convite.",
"You can also make Spaces from <a>communities</a>.": "Tamén podes crear Espazos a partir de <a>comunidades</a>.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "De xeito temporal, mostrar comunidades no lugar de Espazos durante esta sesión. Esta función vai ser eliminada en próximas versións. Reiniciará Element.",
"Display Communities instead of Spaces": "Mostrar Comunidades no lugar de Espazos"
"Display Communities instead of Spaces": "Mostrar Comunidades no lugar de Espazos",
"Would you like to leave the rooms in this space?": "Queres sair destas salas neste espazo?",
"You are about to leave <spaceName/>.": "Vas saír de <spaceName/>.",
"Leave some rooms": "Sair de algunhas salas",
"Leave all rooms": "Sair de tódalas salas",
"Don't leave any rooms": "Non saír de ningunha sala",
"%(reactors)s reacted with %(content)s": "%(reactors)s reaccionou con %(content)s",
"Joining space …": "Uníndote ao espazo…",
"Expand quotes │ ⇧+click": "Despregar citas | ⇧+click",
"Collapse quotes │ ⇧+click": "Pechar citas | ⇧+click"
}

View file

@ -3164,5 +3164,35 @@
"You are about to leave <spaceName/>.": "Éppen el akarja hagyni <spaceName/> teret.",
"Leave some rooms": "Kilépés néhány szobából",
"Leave all rooms": "Kilépés minden szobából",
"Don't leave any rooms": "Ne lépjen ki egy szobából sem"
"Don't leave any rooms": "Ne lépjen ki egy szobából sem",
"Expand quotes │ ⇧+click": "Idézetek megnyitása │ ⇧+kattintás",
"Collapse quotes │ ⇧+click": "Idézetek bezárása│ ⇧+kattintás",
"Include Attachments": "Csatolmányokkal együtt",
"Size Limit": "Méret korlát",
"Format": "Formátum",
"Export Chat": "Beszélgetés kimentése",
"Exporting your data": "Adatai kimentése",
"Stop": "Állj",
"The export was cancelled successfully": "Az exportálás sikeresen félbeszakítva",
"Export Successful": "Exportálás sikeres",
"MB": "MB",
"Number of messages": "Üzenetek száma",
"In reply to <a>this message</a>": "Válasz erre az <a>üzenetre</a>",
"Export chat": "Beszélgetés kimentése",
"File Attached": "Fájl csatolva",
"Error fetching file": "Fájl letöltés hiba",
"Topic: %(topic)s": "Téma: %(topic)s",
"%(creatorName)s created this room.": "%(creatorName)s hozta létre ezt a szobát.",
"Media omitted - file size limit exceeded": "Média fájl kihagyva - fájl méret korlát túllépés",
"Media omitted": "Média nélkül",
"Current Timeline": "Aktuális idővonal",
"Specify a number of messages": "Üzenetek számának megadása",
"From the beginning": "Az elejétől",
"Plain Text": "Sima szöveg",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "Biztos, hogy kilép az exportálás közben?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s matricát küldött.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s megváltoztatta a szoba avatar képét.",
"%(date)s at %(time)s": "%(date)s %(time)s"
}

View file

@ -199,7 +199,7 @@
"The version of %(brand)s": "Versi %(brand)s",
"Your language of choice": "Pilihan bahasamu",
"Your homeserver's URL": "URL Homeserver Anda",
"e.g. %(exampleValue)s": "",
"e.g. %(exampleValue)s": "mis. %(exampleValue)s",
"Every page you use in the app": "Setiap halaman yang digunakan di app",
"e.g. <CurrentPageURL>": "e.g. <URLHalamanSaatIni>",
"Your device resolution": "Resolusi perangkat Anda",
@ -214,5 +214,5 @@
"Explore rooms": "Jelajahi ruang",
"Sign In": "Masuk",
"Create Account": "Buat Akun",
"Identity server": "Server Identitas"
"Identity server": "Server identitas"
}

View file

@ -1218,14 +1218,14 @@
"Do not use an identity server": "Non usare un server di identità",
"You do not have the required permissions to use this command.": "Non hai l'autorizzazione necessaria per usare questo comando.",
"Use an identity server": "Usa un server di identità",
"Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Usa un server di identità per invitare via email. Clicca \"Continua\" per usare quello predefinito (%(defaultIdentityServerName)s) o gestiscilo nelle impostazioni.",
"Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Usa un server d'identità per invitare via email. Clicca \"Continua\" per usare quello predefinito (%(defaultIdentityServerName)s) o gestiscilo nelle impostazioni.",
"Use an identity server to invite by email. Manage in Settings.": "Usa un server di identità per invitare via email. Gestisci nelle impostazioni.",
"Upgrade the room": "Aggiorna la stanza",
"Enable room encryption": "Attiva la crittografia della stanza",
"Deactivate user?": "Disattivare l'utente?",
"Deactivating this user will log them out and prevent them from logging back in. Additionally, they will leave all the rooms they are in. This action cannot be reversed. Are you sure you want to deactivate this user?": "Disattivare questo utente lo disconnetterà e ne impedirà nuovi accessi. In aggiunta, abbandonerà tutte le stanze in cui è presente. Questa azione non può essere annullata. Sei sicuro di volere disattivare questo utente?",
"Deactivate user": "Disattiva utente",
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Usa un server di identità per invitare via email. <default>Usa quello predefinito (%(defaultIdentityServerName)s)</default> o gestiscilo nelle <settings>impostazioni</settings>.",
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Usa un server d'identità per invitare via email. <default>Usa quello predefinito (%(defaultIdentityServerName)s)</default> o gestiscilo nelle <settings>impostazioni</settings>.",
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Usa un server di identità per invitare via email. Gestisci nelle <settings>impostazioni</settings>.",
"Sends a message as plain text, without interpreting it as markdown": "Invia un messaggio in testo semplice, senza interpretarlo come markdown",
"Error changing power level": "Errore cambiando il livello di poteri",
@ -1236,11 +1236,11 @@
"This invite to %(roomName)s was sent to %(email)s": "Questo invito per %(roomName)s è stato inviato a %(email)s",
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Usa un server di identià nelle impostazioni per ricevere inviti direttamente in %(brand)s.",
"Share this email in Settings to receive invites directly in %(brand)s.": "Condividi questa email nelle impostazioni per ricevere inviti direttamente in %(brand)s.",
"Change identity server": "Cambia Identity Server",
"Disconnect from the identity server <current /> and connect to <new /> instead?": "Disconnettersi dall'Identity Server <current /> e connettesi invece a <new />?",
"Disconnect identity server": "Disconnetti dall'Identity Server",
"You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Stai ancora <b> fornendo le tue informazioni personali </b> sull'Identity Server <idserver />.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Ti suggeriamo di rimuovere il tuo indirizzo email e numero di telefono dall'Identity Server prima di disconnetterti.",
"Change identity server": "Cambia server d'identità",
"Disconnect from the identity server <current /> and connect to <new /> instead?": "Disconnettersi dal server d'identità <current /> e connettesi invece a <new />?",
"Disconnect identity server": "Disconnetti dal server d'identità",
"You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Stai ancora <b> fornendo le tue informazioni personali </b> sul server d'identità <idserver />.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Ti suggeriamo di rimuovere il tuo indirizzo email e numero di telefono dal server d'identità prima di disconnetterti.",
"Disconnect anyway": "Disconnetti comunque",
"Error changing power level requirement": "Errore nella modifica del livello dei permessi",
"An error occurred changing the room's power level requirements. Ensure you have sufficient permissions and try again.": "C'é stato un errore nel cambio di libelli dei permessi. Assicurati di avere i permessi necessari e riprova.",
@ -3161,5 +3161,12 @@
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Mostra temporaneamente le comunità invece degli spazi per questa sessione. Il supporto per questa azione verrà rimosso nel breve termine. Element verrà ricaricato.",
"Display Communities instead of Spaces": "Mostra le comunità invece degli spazi",
"%(reactors)s reacted with %(content)s": "%(reactors)s ha reagito con %(content)s",
"Joining space …": "Ingresso nello spazio …"
"Joining space …": "Ingresso nello spazio …",
"Would you like to leave the rooms in this space?": "Vuoi uscire dalle stanze di questo spazio?",
"You are about to leave <spaceName/>.": "Stai per uscire da <spaceName/>.",
"Leave some rooms": "Esci da alcune stanze",
"Leave all rooms": "Esci da tutte le stanze",
"Don't leave any rooms": "Non uscire da alcuna stanza",
"Expand quotes │ ⇧+click": "Espandi le menzioni │ ⇧+clic",
"Collapse quotes │ ⇧+click": "Riduci le menzioni │ ⇧+clic"
}

View file

@ -271,7 +271,7 @@
"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.": "이 과정으로 암호화한 방에서 받은 메시지의 키를 로컬 파일로 내보낼 수 있습니다. 그런 다음 나중에 다른 Matrix 클라이언트에서 파일을 가져와서, 해당 클라이언트에서도 이 메시지를 복호화할 수 있도록 할 수 있습니다.",
"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.": "이 과정으로 다른 Matrix 클라이언트에서 내보낸 암호화 키를 가져올 수 있습니다. 그런 다음 이전 클라이언트에서 복호화할 수 있는 모든 메시지를 복호화할 수 있습니다.",
"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.": "내보낸 파일이 암호로 보호되어 있습니다. 파일을 복호화하려면, 여기에 암호를 입력해야 합니다.",
"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.": "이 이벤트를 감추길(삭제하길) 원하세요? 방 이름을 삭제하거나 주제를 바꾸면, 다시 생길 수도 있습니다.",
"Unable to restore session": "세션을 복구할 수 없음",
"If you have previously used a more recent version of %(brand)s, your session may be incompatible with this version. Close this window and return to the more recent version.": "이전에 최근 버전의 %(brand)s을 썼다면, 세션이 이 버전과 맞지 않을 것입니다. 창을 닫고 최근 버전으로 돌아가세요.",
@ -840,7 +840,7 @@
"There was an error joining the room": "방에 참가하는 동안 오류가 발생했습니다",
"Sorry, your homeserver is too old to participate in this room.": "죄송합니다, 이 방에 참여하기엔 홈서버가 너무 오래됬습니다.",
"Custom user status messages": "맞춤 사용자 상태 메시지",
"Group & filter rooms by custom tags (refresh to apply changes)": "맞춤 태그로 방을 그룹 & 필터\n(변경 사항을 적용하려면 새로고침)",
"Group & filter rooms by custom tags (refresh to apply changes)": "맞춤 태그로 방을 그룹 & 필터 (변경 사항을 적용하려면 새로고침)",
"You do not have the required permissions to use this command.": "이 명령어를 사용하기 위해 필요한 권한이 없습니다.",
"Render simple counters in room header": "방 헤더에 간단한 카운터 표현",
"Enable Emoji suggestions while typing": "입력 중 이모지 제안 켜기",
@ -1414,10 +1414,13 @@
"Create Account": "계정 만들기",
"Integration manager": "통합 관리자",
"Using this widget may share data <helpIcon /> with %(widgetDomain)s & your integration manager.": "이 위젯을 사용하면 <helpcon /> %(widgetDomain)s & 통합 관리자와 데이터를 공유합니다.",
"Identity server is": "ID 서버:",
"Identity server is": "ID 서버",
"Identity server": "ID 서버",
"Identity server (%(server)s)": "ID 서버 (%(server)s)",
"Could not connect to identity server": "ID 서버에 연결할 수 없음",
"Not a valid identity server (status code %(code)s)": "올바르지 않은 ID 서버 (상태 코드 %(code)s)",
"Identity server URL must be HTTPS": "ID 서버 URL은 HTTPS이어야 함"
"Identity server URL must be HTTPS": "ID 서버 URL은 HTTPS이어야 함",
"Appearance": "모습",
"Appearance Settings only affect this %(brand)s session.": "모습 설정은 이 %(brand)s 세션에만 영향을 끼칩니다.",
"Customise your appearance": "모습 개인화하기"
}

View file

@ -12,7 +12,7 @@
"Microphone": "Mikrofons",
"Camera": "Kamera",
"Advanced": "Papildu",
"Always show message timestamps": "Vienmēr rādīt ziņojumu laika zīmogu",
"Always show message timestamps": "Vienmēr rādīt ziņas laika zīmogu",
"Authentication": "Autentifikācija",
"%(items)s and %(lastItem)s": "%(items)s un %(lastItem)s",
"A new password must be entered.": "Nepieciešams ievadīt jauno paroli.",
@ -23,7 +23,7 @@
"Are you sure you want to reject the invitation?": "Vai tiešām vēlaties noraidīt šo uzaicinājumu?",
"Attachment": "Pielikums",
"Ban": "Liegt pieeju",
"Banned users": "Lietotāji, kuriem liegta pieeju",
"Banned users": "Lietotāji, kuriem liegta pieeja",
"Bans user with given id": "Liedz pieeju lietotājam ar norādīto id",
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "Neizdodas savienoties ar bāzes serveri. Pārbaudi tīkla savienojumu un pārliecinies, ka <a> bāzes servera SSL sertifikāts</a> ir uzticams, kā arī pārlūkā instalētie paplašinājumi nebloķē pieprasījumus.",
"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>.": "Neizdodas savienoties ar bāzes serveri izmantojot HTTP protokolu, kad pārlūka adreses laukā norādīts HTTPS protokols. Tā vietā izmanto HTTPS vai <a>iespējo nedrošos skriptus</a>.",
@ -32,7 +32,7 @@
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s nomainīja istabas nosaukumu uz %(roomName)s.",
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s dzēsa istabas nosaukumu.",
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s nomainīja istabas tematu uz \"%(topic)s\".",
"Changes your display nickname": "Nomaina jūsu parādāmo vārdu",
"Changes your display nickname": "Maina jūsu parādāmo vārdu",
"Close": "Aizvērt",
"Command error": "Komandas kļūda",
"Commands": "Komandas",
@ -47,7 +47,7 @@
"Decrypt %(text)s": "Atšifrēt %(text)s",
"Deops user with given id": "Atceļ operatora statusu lietotājam ar norādīto Id",
"Default": "Noklusējuma",
"Disinvite": "Atsaukt",
"Disinvite": "Atsaukt uzaicinājumu",
"Displays action": "Parāda darbību",
"Download %(text)s": "Lejupielādēt: %(text)s",
"Email": "Epasts",
@ -75,12 +75,12 @@
"Failed to set display name": "Neizdevās iestatīt parādāmo vārdu",
"Failed to unban": "Neizdevās atbanot/atbloķēt (atcelt pieejas liegumu)",
"Failed to upload profile picture!": "Neizdevās augšupielādēt profila attēlu!",
"Failed to verify email address: make sure you clicked the link in the email": "Neizdevās apstiprināt epasta adresi. Pārbaudi, vai Tu esi noklikšķinājis/usi saiti epasta ziņā",
"Failed to verify email address: make sure you clicked the link in the email": "Neizdevās apstiprināt epasta adresi. Pārbaudi, vai esat noklikšķinājis/usi saiti epasta ziņā",
"Failure to create room": "Neizdevās izveidot istabu",
"Favourite": "Izlase",
"Favourites": "Izlase",
"Filter room members": "Filtrēt istabas biedrus",
"Forget room": "\"Aizmirst\" istabu",
"Filter room members": "Atfiltrēt istabas dalībniekus",
"Forget room": "Aizmirst istabu",
"For security, this session has been signed out. Please sign in again.": "Drošības nolūkos šī sesija ir pārtraukta. Lūdzu, pieraksties par jaunu.",
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s no %(fromPowerLevel)s uz %(toPowerLevel)s",
"Hangup": "Beigt zvanu",
@ -107,9 +107,9 @@
"Leave room": "Pamest istabu",
"Logout": "Izrakstīties",
"Low priority": "Zema prioritāte",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas biedriem no brīža, kad tie tika uzaicināti.",
"%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas biedriem ar brīdi, kad tie pievienojās.",
"%(senderName)s made future room history visible to all room members.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas biedriem.",
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem no brīža, kad tie tika uzaicināti.",
"%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem ar brīdi, kad tie pievienojās.",
"%(senderName)s made future room history visible to all room members.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem.",
"%(senderName)s made future room history visible to anyone.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu ikvienam.",
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu nepazīstamajiem (%(visibility)s).",
"Missing room_id in request": "Iztrūkstošs room_id pieprasījumā",
@ -193,7 +193,7 @@
"This phone number is already in use": "Šis telefona numurs jau tiek izmantots",
"This room": "Šajā istabā",
"This room is not accessible by remote Matrix servers": "Šī istaba nav pieejama no citiem Matrix serveriem",
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Notika mēģinājums ielādēt šīs istabas specifisku laikpaziņojumu sadaļu, bet Tev nav atļaujas skatīt šo ziņu.",
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Notika mēģinājums specifisku posmu šīs istabas laika skalā, bet jums nav atļaujas skatīt konkrēto ziņu.",
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Mēģinājums ielādēt šīs istabas čata vēstures izvēlēto posmu neizdevās, jo tas netika atrasts.",
"Unable to add email address": "Neizdevās pievienot epasta adresi",
"Unable to remove contact information": "Neizdevās dzēst kontaktinformāciju",
@ -204,9 +204,9 @@
"Unnamed Room": "Istaba bez nosaukuma",
"Cancel": "Atcelt",
"Create new room": "Izveidot jaunu istabu",
"Dismiss": "Aizvērt/atcelt",
"Dismiss": "Aizvērt",
"You have <a>enabled</a> URL previews by default.": "URL priekšskatījumi pēc noklusējuma jums ir<a>iespējoti</a> .",
"Upload avatar": "Augšupielādēt avataru (profila attēlu)",
"Upload avatar": "Augšupielādēt avataru",
"Upload Failed": "Augšupielāde (nosūtīšana) neizdevās",
"Upload file": "Augšupielādēt failu",
"Upload new:": "Augšupielādēt jaunu:",
@ -312,7 +312,7 @@
"Create": "Izveidot",
"Featured Rooms:": "Ieteiktās istabas:",
"Featured Users:": "Ieteiktie lietotāji:",
"Automatically replace plain text Emoji": "Automātiski aizvietot tekstu ar emocīšiem (emoji)",
"Automatically replace plain text Emoji": "Automātiski aizstāt vienkāršā teksta emocijzīmes",
"Failed to upload image": "Neizdevās augšupielādēt attēlu",
"%(widgetName)s widget added by %(senderName)s": "%(senderName)s pievienoja %(widgetName)s vidžetu",
"%(widgetName)s widget removed by %(senderName)s": "%(senderName)s dzēsa vidžetu %(widgetName)s",
@ -322,7 +322,7 @@
"Send": "Sūtīt",
"Leave": "Pamest",
"Unnamed room": "Nenosaukta istaba",
"Guests can join": "Var pievienoties viesi",
"Guests can join": "Viesi var pievienoties",
"The platform you're on": "Izmantotā operētājsistēma",
"The version of %(brand)s": "%(brand)s versija",
"Your language of choice": "Izvēlētā valoda",
@ -335,10 +335,10 @@
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
"Who would you like to add to this community?": "Kurus cilvēkus Tu vēlētos pievienot šai kopienai?",
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Brīdinājums: ikviens, kurš tiek pievienots kopienai būs publiski redzams visiem, kuri zin kopienas Id",
"Invite new community members": "Uzaicināt jaunus kopienas biedrus",
"Invite new community members": "Uzaicināt jaunus kopienas dalībniekus",
"Invite to Community": "Uzaicināt kopienā",
"Which rooms would you like to add to this community?": "Kuras istabas vēlies pievienot šai kopienai?",
"Show these rooms to non-members on the community page and room list?": "Vai ne-biedriem rādīt kopienas lapā un istabu sarakstā šīs istabas?",
"Show these rooms to non-members on the community page and room list?": "Vai rādīt šis istabas kopienas lapā un istabu sarakstā tiem, kas nav dalībnieki?",
"Add rooms to the community": "Pievienot istabas kopienai",
"Add to community": "Pievienot kopienai",
"Failed to invite the following users to %(groupId)s:": "Neizdevās uzaicināt sekojošus lietotājus grupā %(groupId)s:",
@ -384,10 +384,10 @@
"World readable": "Pieejama ikvienam un no visurienes",
"Failed to remove tag %(tagName)s from room": "Neizdevās istabai noņemt birku %(tagName)s",
"Failed to add tag %(tagName)s to room": "Neizdevās istabai pievienot birku %(tagName)s",
"Banned by %(displayName)s": "%(displayName)s liedzis piekļuvi",
"Members only (since the point in time of selecting this option)": "Tikai biedri (no šī parametra iestatīšanas brīža)",
"Members only (since they were invited)": "Tikai biedri (no to uzaicināšanas brīža)",
"Members only (since they joined)": "Tikai biedri (kopš pievienošanās)",
"Banned by %(displayName)s": "%(displayName)s liedzis pieeju",
"Members only (since the point in time of selecting this option)": "Tikai dalībnieki (no šī parametra iestatīšanas brīža)",
"Members only (since they were invited)": "Tikai dalībnieki (no to uzaicināšanas brīža)",
"Members only (since they joined)": "Tikai dalībnieki (kopš pievienošanās)",
"Invalid community ID": "Nederīgs kopienas Id",
"'%(groupId)s' is not a valid community ID": "'%(groupId)s' nav derīgs kopienas Id",
"Flair": "Noskaņa",
@ -400,11 +400,11 @@
"Failed to copy": "Nokopēt neizdevās",
"A text message has been sent to %(msisdn)s": "Teksta ziņa tika nosūtīta uz %(msisdn)s",
"Remove from community": "Dzēst no kopienas",
"Disinvite this user from community?": "Atcelt šim lietotājam nosūtīto uzaicinājumu pievienoties kopienai?",
"Disinvite this user from community?": "Atsaukt šim lietotājam nosūtīto uzaicinājumu pievienoties kopienai?",
"Remove this user from community?": "Izdzēst šo lietotāju no kopienas?",
"Failed to withdraw invitation": "Neizdevās atcelt uzaicinājumu",
"Failed to remove user from community": "Neizdevās izdzēst lietotāju no kopienas",
"Filter community members": "Kopienas biedru filtrs",
"Filter community members": "Kopienas dalībnieku filtrs",
"Are you sure you want to remove '%(roomName)s' from %(groupId)s?": "Vai tiešām vēlaties dzēst '%(roomName)s' no %(groupId)s?",
"Removing a room from the community will also remove it from the community page.": "Dzēšot istabu no kopienas tā tiks dzēsta arī no kopienas lapas.",
"Failed to remove room from community": "Neizdevās dzēst istabu no kopienas",
@ -526,8 +526,8 @@
"Unable to reject invite": "Neizdevās noraidīt uzaicinājumu",
"Leave %(groupName)s?": "Pamest %(groupName)s?",
"%(inviter)s has invited you to join this community": "%(inviter)s uzaicināja jūs pievienoties šai kopienai",
"You are an administrator of this community": "Tu esi šīs kopienas administrators",
"You are a member of this community": "Tu esi šīs kopienas biedrs",
"You are an administrator of this community": "Jūs esat šīs kopienas administrators",
"You are a member of this community": "Jūs esat šīs kopienas dalībnieks",
"Long Description (HTML)": "Garais apraksts (HTML)",
"Community %(groupId)s not found": "Kopiena %(groupId)s nav atrasta",
"Your Communities": "Jūsu kopienas",
@ -546,7 +546,7 @@
"Update": "Atjaunināt",
"What's New": "Kas jauns",
"On": "Ieslēgt",
"Changelog": "Izmaiņu saraksts (vēsture)",
"Changelog": "Izmaiņu vēsture",
"Waiting for response from server": "Tiek gaidīta atbilde no servera",
"Send Custom Event": "Sūtīt individuālu notikumu",
"Failed to send logs: ": "Neizdevās nosūtīt logfailus: ",
@ -560,7 +560,7 @@
"Source URL": "Avota URL adrese",
"Messages sent by bot": "Botu nosūtītās ziņas",
"Filter results": "Filtrēt rezultātus",
"Members": "Biedri",
"Members": "Dalībnieki",
"No update available.": "Nav atjauninājumu.",
"Resend": "Nosūtīt atkārtoti",
"Collecting app version information": "Tiek iegūta programmas versijas informācija",
@ -842,7 +842,7 @@
"Interactively verify by Emoji": "Abpusēji verificēt ar emocijzīmēm",
"Manually Verify by Text": "Manuāli verificēt ar tekstu",
"%(senderName)s revoked the invitation for %(targetDisplayName)s to join the room.": "%(senderName)s atsauca uzaicinājumu %(targetDisplayName)s pievienoties istabai.",
"%(senderName)s changed the addresses for this room.": "%(senderName)s izmainīja istabas adreses.",
"%(senderName)s changed the addresses for this room.": "%(senderName)s nomainīja istabas adreses.",
"%(senderName)s removed the main address for this room.": "%(senderName)s dzēsa galveno adresi šai istabai.",
"%(senderName)s set the main address for this room to %(address)s.": "%(senderName)s iestatīja istabas galveno adresi kā %(address)s.",
"Afghanistan": "Afganistāna",
@ -920,7 +920,7 @@
"Phone numbers": "Tālruņa numuri",
"Email Address": "Epasta adrese",
"Email addresses": "Epasta adreses",
"Change topic": "Mainīt tematu",
"Change topic": "Nomainīt tematu",
"Change room avatar": "Mainīt istabas avataru",
"Change main address for the room": "Mainīt istabas galveno adresi",
"%(senderName)s changed the main and alternative addresses for this room.": "%(senderName)s nomainīja istabas galveno un alternatīvo adresi.",
@ -932,7 +932,7 @@
"Invite users": "Uzaicināt lietotājus",
"Send messages": "Sūtīt ziņas",
"Default role": "Noklusējuma loma",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Izmaiņas attiecībā uz to, kas var lasīt vēsturi, attieksies tikai uz nākamajiem ziņojumiem šajā istabā. Esošās vēstures redzamība nemainīsies.",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Izmaiņas attiecībā uz to, kas var lasīt vēsturi, attieksies tikai uz nākamajiem ziņām šajā istabā. Esošās vēstures redzamība nemainīsies.",
"Never send encrypted messages to unverified sessions in this room from this session": "Nesūtīt šifrētas ziņas no šīs sesijas neverificētām sesijām šajā istabā",
"Encrypted": "Šifrēts",
"Enable room encryption": "Iespējot istabas šifrēšanu",
@ -1053,7 +1053,7 @@
"Reject & Ignore user": "Noraidīt un ignorēt lietotāju",
"Do you want to chat with %(user)s?": "Vai vēlaties sarakstīties ar %(user)s?",
"This homeserver doesn't offer any login flows which are supported by this client.": "Šis bāzes serveris neatbalsta nevienu pierakstīšanās metodi, kuru atbalstītu šis klients.",
"Explore rooms": "Pārlūkot telpas",
"Explore rooms": "Pārlūkot istabas",
"Confirm Security Phrase": "Apstipriniet slepeno frāzi",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Nodrošinieties pret piekļuves zaudēšanu šifrētām ziņām un datiem, dublējot šifrēšanas atslēgas savā serverī.",
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Izmantojiet tikai jums zināmu slepeno frāzi un pēc izvēles saglabājiet drošības atslēgu, lai to izmantotu dublēšanai.",
@ -1113,7 +1113,7 @@
"The homeserver may be unavailable or overloaded.": "Iespējams, bāzes serveris nav pieejams vai ir pārslogots.",
"%(brand)s failed to get the public room list.": "%(brand)s neizdevās iegūt publisko istabu sarakstu.",
"%(brand)s failed to get the protocol list from the homeserver. The homeserver may be too old to support third party networks.": "%(brand)s neizdevās iegūt protokolu sarakstu no bāzes servera. Iespējams, bāzes serveris ir pārāk vecs, lai atbalstītu trešo pušu tīklus.",
"Add a photo so people know it's you.": "Pievienot foto, lai cilvēki zina, ka tas esi tu.",
"Add a photo so people know it's you.": "Pievienot foto, lai cilvēki zina, ka tas esat jūs.",
"Great, that'll help people know it's you": "Lieliski, tas ļaus cilvēkiem tevi atpazīt",
"This homeserver does not support communities": "Šis bāzes serveris neatbalsta kopienas",
"Everyone": "Jebkurš",
@ -1148,7 +1148,7 @@
"Bulk options": "Lielapjoma opcijas",
"Clear cache and reload": "Notīrīt kešatmiņu un pārlādēt",
"Versions": "Versijas",
"Keyboard Shortcuts": "Klaviatūras saīsnes",
"Keyboard Shortcuts": "Īsinājumtaustiņi",
"FAQ": "BUJ",
"For help with using %(brand)s, click <a>here</a>.": "Palīdzībai %(brand)s izmantošanā, spiediet <a>šeit</a>.",
"Account management": "Konta pārvaldība",
@ -1388,38 +1388,38 @@
"You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Jūs varat ierakstīties, taču dažas funkcijas nebūs pieejamas, kamēr nebūs pieejams identitāšu serveris. Ja arī turpmāk redzat šo brīdinājumu, lūdzu, pārbaudiet konfigurāciju vai sazinieties ar servera administratoru.",
"Cannot reach identity server": "Neizdodas sasniegt identitāšu serveri",
"Ask your %(brand)s admin to check <a>your config</a> for incorrect or duplicate entries.": "Paprasiet %(brand)s administratoram pārbaudīt, vai <a> jūsu konfigurācijas failā</a> nav nepareizu vai dublējošos ierakstu.",
"See <b>%(msgtype)s</b> messages posted to your active room": "Redzēt jūsu aktīvajā telpā izliktās <b>%(msgtype)s</b> ziņas",
"See <b>%(msgtype)s</b> messages posted to this room": "Redzēt šajā telpā izliktās <b>%(msgtype)s</b> ziņas",
"See <b>%(msgtype)s</b> messages posted to your active room": "Apskatīt <b>%(msgtype)s</b> ziņas, kas publicētas jūsu aktīvajā istabā",
"See <b>%(msgtype)s</b> messages posted to this room": "Apskatīt <b>%(msgtype)s</b> ziņas, kas publicētas šajā istabā",
"Send <b>%(msgtype)s</b> messages as you in your active room": "Sūtīt <b>%(msgtype)s</b> ziņas savā vārdā savā aktīvajā telpā",
"Send <b>%(msgtype)s</b> messages as you in this room": "Sūtīt <b>%(msgtype)s</b> ziņas savā vārdā šajā telpā",
"See general files posted to your active room": "Redzēt jūsu aktīvajā telpā izliktos failus",
"See general files posted to this room": "Redzēt šajā telpā izliktos failus",
"Send general files as you in your active room": "Sūtīt failus savā vārdā jūsu aktīvajā telpā",
"Send general files as you in this room": "Sūtīt failus savā vārdā šajā telpā",
"Send general files as you in your active room": "Sūtīt failus savā vārdā jūsu aktīvajā istabā",
"Send general files as you in this room": "Sūtīt failus savā vārdā šajā istabā",
"See videos posted to your active room": "Redzēt video, kuri izlikti jūsu aktīvajā telpā",
"See videos posted to this room": "Redzēt video, kuri izlikti šajā telpā",
"Send videos as you in your active room": "Sūtīt video savā vārdā savā aktīvajā telpā",
"Send videos as you in this room": "Sūtīt video savā vārdā šajā telpā",
"Send videos as you in your active room": "Sūtīt video savā vārdā savā aktīvajā istabā",
"Send videos as you in this room": "Sūtīt video savā vārdā šajā istabā",
"See images posted to your active room": "Redzēt attēlus, kuri izlikti jūsu aktīvajā telpā",
"See images posted to this room": "Redzēt attēlus, kuri izlikti šajā telpā",
"Send images as you in your active room": "Sūtīt attēlus savā vārdā savā aktīvajā telpā",
"Send images as you in this room": "Sūtīt attēlus savā vārdā šajā telpā",
"Send images as you in your active room": "Sūtīt attēlus savā vārdā savā aktīvajā istabā",
"Send images as you in this room": "Sūtīt attēlus savā vārdā šajā istabā",
"See emotes posted to your active room": "Redzēt emocijas, kuras izvietotas jūsu aktīvajā telpā",
"See emotes posted to this room": "Redzēt emocijas, kuras izvietotas šajā telpā",
"Send emotes as you in your active room": "Nosūtīt emocijas savā vārdā uz savu aktīvo telpu",
"Send emotes as you in this room": "Nosūtīt emocijas savā vārdā uz šo telpu",
"Send emotes as you in your active room": "Nosūtīt emocijas savā vārdā uz savu aktīvo istabu",
"Send emotes as you in this room": "Nosūtīt emocijas savā vārdā uz šo istabu",
"See text messages posted to your active room": "Redzēt teksta ziņas, kuras izvietotas jūsu aktīvajā telpā",
"See text messages posted to this room": "Redzēt teksta ziņas, kas izvietotas šajā telpā",
"Send text messages as you in your active room": "Sūtīt teksta ziņas savā vārdā jūsu aktīvajā telpā",
"Send text messages as you in this room": "Sūtīt teksta ziņas savā vārdā šajā telpā",
"Send text messages as you in your active room": "Sūtīt teksta ziņas savā vārdā jūsu aktīvajā istabā",
"Send text messages as you in this room": "Sūtīt teksta ziņas savā vārdā šajā istabā",
"See messages posted to your active room": "Redzēt ziņas, kas izvietotas jūsu aktīvajā telpā",
"See messages posted to this room": "Redzēt ziņas, kas izvietotas šajā telpā",
"Send messages as you in your active room": "Sūtiet ziņas savā vārdā jūsu aktīvajā telpā",
"Send messages as you in this room": "Sūtīt ziņas savā vārdā šajā telpā",
"Send messages as you in your active room": "Sūtiet ziņas savā vārdā jūsu aktīvajā istabā",
"Send messages as you in this room": "Sūtīt ziņas savā vārdā šajā istabā",
"The <b>%(capability)s</b> capability": "<b>%(capability)s</b> iespējas",
"See <b>%(eventType)s</b> events posted to your active room": "Redzēt, kad <b>%(eventType)s</b> notikumi izvietoti jūsu aktīvajā telpā",
"See <b>%(eventType)s</b> events posted to your active room": "Apskatīt <b>%(eventType)s</b> notikumus jūsu aktīvajā istabā",
"Send <b>%(eventType)s</b> events as you in your active room": "Sūtīt <b>%(eventType)s</b> notikumus savā vārdā savā aktīvajā telpā",
"See <b>%(eventType)s</b> events posted to this room": "Redzēt <b>%(eventType)s</b> notikumus, kas izvietoti šajā telpā",
"See <b>%(eventType)s</b> events posted to this room": "Apskatīt <b>%(eventType)s</b> notikumus šajā istabā",
"Send <b>%(eventType)s</b> events as you in this room": "Sūtiet <b>%(eventType)s</b> notikumus jūsu vārdā šajā telpā",
"with state key %(stateKey)s": "ar stāvokļa/statusa atslēgu %(stateKey)s",
"with an empty state key": "ar tukšu stāvokļa/statusa atslēgu",
@ -1428,23 +1428,23 @@
"See when a sticker is posted in this room": "Redzēt, kad šajā telpā parādās stikers",
"Send stickers to this room as you": "Nosūtīt stikerus savā vārdā uz šo telpu",
"See when people join, leave, or are invited to your active room": "Redzēt, kad cilvēki ienāk/pievienojas, pamet/atvienojas vai ir uzaicināti uz jūsu aktīvo telpu",
"Kick, ban, or invite people to this room, and make you leave": "Izspert, liegt vai uzaicināt cilvēkus uz šo telpu un likt jums aiziet",
"Kick, ban, or invite people to your active room, and make you leave": "Izspert, liegt vai uzaicināt cilvēkus uz jūsu aktīvo telpu un likt jums aiziet",
"Kick, ban, or invite people to this room, and make you leave": "Padzīt, liegt pieeju vai uzaicināt cilvēkus uz šo istabu un likt jums aiziet",
"Kick, ban, or invite people to your active room, and make you leave": "Padzīt, liegt pieeju vai uzaicināt cilvēkus uz jūsu aktīvo istabu un likt jums aiziet",
"See when people join, leave, or are invited to this room": "Redzēt, kad cilvēki ienāk/pievienojas, pamet/atvienojas vai ir uzaicināti uz šo telpu",
"See when the avatar changes in your active room": "Redzēt, kad notiek jūsu aktīvās istabas avatara izmaiņas",
"Change the avatar of your active room": "Mainīt jūsu aktīvās telpas avataru",
"Change the avatar of your active room": "Nomainīt jūsu aktīvās istabas avataru",
"See when the avatar changes in this room": "Redzēt, kad notiek šīs istabas avatara izmaiņas",
"Change the avatar of this room": "Mainīt šīs istabas avataru",
"Change the avatar of this room": "Nomainīt šīs istabas avataru",
"See when the name changes in your active room": "Redzēt, kad notiek aktīvās telpas nosaukuma izmaiņas",
"Change the name of your active room": "Mainīt jūsu aktīvās telpas nosaukumu",
"Change the name of your active room": "Nomainīt jūsu aktīvās istabas nosaukumu",
"See when the name changes in this room": "Redzēt, kad mainās šīs telpas nosaukums",
"Change the name of this room": "Mainīt šīs telpas nosaukumu",
"Change the name of this room": "Nomainīt šīs istabas nosaukumu",
"See when the topic changes in this room": "Redzēt, kad mainās šīs telpas temats",
"See when the topic changes in your active room": "Redzēt, kad mainās pašreizējā tērziņa temats",
"Change the topic of your active room": "Nomainīt jūsu aktīvās istabas tematu",
"Change the topic of this room": "Nomainīt šīs telpas tematu",
"Change which room, message, or user you're viewing": "Nomainīt telpu, ziņu vai lietotāju, kurš ir fokusā (kuru jūs skatiet)",
"Change which room you're viewing": "Nomainīt telpu, kuru jūs skatiet",
"Change the topic of this room": "Nomainīt šīs istabas tematu",
"Change which room, message, or user you're viewing": "Nomainīt istabu, ziņu vai lietotāju, kuru jūs skatiet",
"Change which room you're viewing": "Nomainīt istabu, kuru jūs skatiet",
"Send stickers into your active room": "Iesūtīt stikerus jūsu aktīvajā telpā",
"Send stickers into this room": "Šajā telpā iesūtīt stikerus",
"Remain on your screen while running": "Darbības laikā paliek uz ekrāna",
@ -1452,21 +1452,21 @@
"Dark": "Tumša",
"Light": "Gaiša",
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pārjaunoja lieguma noteikumu šablonu %(oldGlob)s uz šablonu %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kas piekļuvi liedza serveriem, kas atbilst pazīmei %(oldGlob)s, ar atbilstošu pazīmei %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kurš liedza %(oldGlob)s pazīmei atbilstošas telpas ar jaunu noteikumu, kurš liedz %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kurš aizliedza lietotājus %(oldGlob)s ar jaunu noteikumu, kurš aizliedz %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kas liedza pieeju serveriem, kas atbilst pazīmei %(oldGlob)s, ar atbilstošu pazīmei %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s izmainīja noteikumu, kurš liedz pieeju istabām, kas atbilst %(oldGlob)s pazīmei pret %(newGlob)s dēļ %(reason)s",
"%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kurš liedza pieeju lietotājiem %(oldGlob)s ar jaunu noteikumu, kurš aizliedz %(newGlob)s dēļ %(reason)s",
"%(senderName)s has updated the widget layout": "%(senderName)s ir aktualizējis vidžeta/logrīka izkārtojumu",
"%(senderName)s changed the <a>pinned messages</a> for the room.": "%(senderName)s mainīja telpas <a>piekabinātās ziņas</a>.",
"%(senderDisplayName)s upgraded this room.": "%(senderDisplayName)s modernizēja šo telpu.",
"%(senderName)s kicked %(targetName)s": "%(senderName)s izspēra %(targetName)s",
"%(senderName)s kicked %(targetName)s: %(reason)s": "%(senderName)s izspēra %(targetName)s: %(reason)s",
"%(senderName)s changed the <a>pinned messages</a> for the room.": "%(senderName)s nomainīja <a>piespraustās ziņas</a> šai istabai.",
"%(senderDisplayName)s upgraded this room.": "%(senderDisplayName)s atjaunināja šo istabu.",
"%(senderName)s kicked %(targetName)s": "%(senderName)s padzina %(targetName)s",
"%(senderName)s kicked %(targetName)s: %(reason)s": "%(senderName)s padzina %(targetName)s: %(reason)s",
"%(senderName)s withdrew %(targetName)s's invitation": "%(senderName)s atsauca %(targetName)s paredzēto uzaicinājumu",
"%(senderName)s withdrew %(targetName)s's invitation: %(reason)s": "%(senderName)s atsauca %(targetName)s paredzēto uzaicinājumu: %(reason)s",
"%(senderName)s unbanned %(targetName)s": "%(senderName)s noņēma liegumu/atbanoja %(targetName)s",
"%(targetName)s left the room": "%(targetName)s pameta/atvienojās no telpas",
"%(targetName)s left the room: %(reason)s": "%(targetName)s pameta/atvienojās no telpas: %(reason)s",
"%(targetName)s left the room": "%(targetName)s pameta istabu",
"%(targetName)s left the room: %(reason)s": "%(targetName)s pameta istabu: %(reason)s",
"%(targetName)s rejected the invitation": "%(targetName)s noraidīja uzaicinājumu",
"%(targetName)s joined the room": "%(targetName)s ienāca (pievienojās) telpā",
"%(targetName)s joined the room": "%(targetName)s pievienojās istabai",
"%(senderName)s made no change": "%(senderName)s neizdarīja izmaiņas",
"%(senderName)s set a profile picture": "%(senderName)s iestatīja profila attēlu",
"%(senderName)s changed their profile picture": "%(senderName)s nomainīja savu profila attēlu",
@ -1474,13 +1474,13 @@
"%(senderName)s removed their display name (%(oldDisplayName)s)": "%(senderName)s dzēsa savu redzamo vārdu (%(oldDisplayName)s)",
"%(senderName)s set their display name to %(displayName)s": "%(senderName)s iestatīja %(displayName)s kā savu redzamo vārdu",
"%(oldDisplayName)s changed their display name to %(displayName)s": "%(oldDisplayName)s nomainīja savu redzamo vārdu uz %(displayName)s",
"%(senderName)s banned %(targetName)s": "%(senderName)s aizliedza/nobanoja %(targetName)s",
"%(senderName)s banned %(targetName)s: %(reason)s": "%(senderName)s aizliedza/nobanoja %(targetName)s: %(reason)s",
"%(senderName)s banned %(targetName)s": "%(senderName)s liedza pieeju %(targetName)s",
"%(senderName)s banned %(targetName)s: %(reason)s": "%(senderName)s liedza pieeju %(targetName)s: %(reason)s",
"%(senderName)s invited %(targetName)s": "%(senderName)s uzaicināja %(targetName)s",
"%(targetName)s accepted an invitation": "%(targetName)s pieņēma uzaicinājumu",
"%(targetName)s accepted the invitation for %(displayName)s": "%(targetName)s pieņēma uzaicinājumu uz %(displayName)s",
"Converts the DM to a room": "Pārvērst DM par telpu",
"Converts the room to a DM": "Pārvērst telpu par DM",
"Converts the DM to a room": "Pārveido DM par istabu",
"Converts the room to a DM": "Pārveido istabu par DM",
"Places the call in the current room on hold": "Iepauzē sarunu šajā telpā",
"Takes the call in the current room off hold": "Šajā telpā iepauzētās sarunas atpauzēšana",
"Sends a message to the given user": "Nosūtīt ziņu dotajam lietotājam",
@ -1490,28 +1490,28 @@
"Displays list of commands with usages and descriptions": "Parāda komandu sarakstu ar pielietojumiem un aprakstiem",
"Sends the given emote coloured as a rainbow": "Nosūta šo emociju iekrāsotu varavīksnes krāsās",
"Sends the given message coloured as a rainbow": "Nosūta šo ziņu iekrāsotu varavīksnes krāsās",
"Forces the current outbound group session in an encrypted room to be discarded": "Piespiedu kārtā atmet/izbeidz pašreizējo izejošo grupas sesiju šifrētajā telpā",
"Forces the current outbound group session in an encrypted room to be discarded": "Piespiedu kārtā pārtrauc pašreizējo izejošo grupas sesiju šifrētajā istabā",
"The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Jūsu iesniegtā parakstīšanas atslēga atbilst parakstīšanas atslēgai, kuru saņēmāt no %(userId)s sesijas %(deviceId)s. Sesija atzīmēta kā verificēta.",
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "BRĪDINĀJUMS: ATSLĒGU VERIFIKĀCIJA NEIZDEVĀS! Parakstīšanas atslēga lietotājam %(userId)s un sesijai %(deviceId)s ir \"%(fprint)s\", kura neatbilst norādītajai atslēgai \"%(fingerprint)s\". Tas var nozīmēt, ka jūsu saziņa tiek pārtverta!",
"Verifies a user, session, and pubkey tuple": "Verificē lietotāju, sesiju un publiskās atslēgas",
"WARNING: Session already verified, but keys do NOT MATCH!": "BRĪDINĀJUMS: Sesija jau ir verificēta, bet atslēgas NESAKRĪT!",
"Unknown (user, session) pair:": "Nezināms (lietotājs, sesija) pāris:",
"You cannot modify widgets in this room.": "Jūs šajā telpā nevarat mainīt vidžetus/logrīkus.",
"You cannot modify widgets in this room.": "Jūs nevarat mainīt vidžetus/logrīkus šajā istabā.",
"Please supply a https:// or http:// widget URL": "Lūdzu ievadiet logrīka URL https:// vai http:// formā",
"Please supply a widget URL or embed code": "Ievadiet vidžeta/logrīka URL vai ievietojiet kodu",
"Adds a custom widget by URL to the room": "Pievieno telpai individuālu/pielāgotu logrīku/vidžetu ar URL-adresi",
"Adds a custom widget by URL to the room": "Pievieno istabai pielāgotu logrīku/vidžetu ar URL-adresi",
"Command failed": "Neizdevās izpildīt komandu",
"Joins room with given address": "Pievienojas telpai ar šādu adresi",
"Joins room with given address": "Pievienojas istabai ar šādu adresi",
"Use an identity server to invite by email. Manage in Settings.": "Izmantojiet identitātes serveri, lai uzaicinātu pa e-pastu. Pārvaldība pieejama Iestatījumos.",
"Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Izmantojiet identitātes serveri, lai uzaicinātu pa e-pastu. Noklikšķiniet uz Turpināt, lai izmantotu noklusējuma identitātes serveri (%(defaultIdentityServerName)s) vai nomainītu to Iestatījumos.",
"Use an identity server": "Izmantot identitāšu serveri",
"Sets the room name": "Iestata telpas nosaukumu",
"Gets or sets the room topic": "Nolasa vai iestata telpas tematu",
"Changes your avatar in all rooms": "Maina jūsu avataru visām telpām",
"Changes your avatar in this current room only": "Maina jūsu avataru tikai šajā telpā",
"Changes the avatar of the current room": "Maina šīs telpas avataru",
"Changes your display nickname in the current room only": "Maina rādāmo pseidonīmu/segvārdu tikai šai telpai",
"Upgrades a room to a new version": "Modernizē telpu uz Jauno versiju",
"Sets the room name": "Iestata istabas nosaukumu",
"Gets or sets the room topic": "Nolasa vai iestata istabas tematu",
"Changes your avatar in all rooms": "Maina jūsu avataru visās istabās",
"Changes your avatar in this current room only": "Maina jūsu avataru tikai šajā istabā",
"Changes the avatar of the current room": "Maina šīs istabas avataru",
"Changes your display nickname in the current room only": "Maina jūsu parādāmo vārdu tikai šajā istabā",
"Upgrades a room to a new version": "Atjaunina istabu uz jaunu versiju",
"Sends a message as html, without interpreting it as markdown": "Nosūta ziņu kā HTML, to neinterpretējot kā Markdown",
"Sends a message as plain text, without interpreting it as markdown": "Nosūta ziņu kā vienkāršu tekstu, to neinterpretējot kā Markdown",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Pievieno ( ͡° ͜ʖ ͡°) pirms vienkārša teksta ziņas",
@ -1783,17 +1783,141 @@
"The call could not be established": "Savienojums nevarēja tikt izveidots",
"The user you called is busy.": "Lietotājs, kuram zvanāt, ir aizņemts.",
"User Busy": "Lietotājs aizņemts",
"Your user agent": "Jūsu lietotāja-aģents",
"Your user agent": "Jūsu lietotāja aģents",
"Whether you're using %(brand)s as an installed Progressive Web App": "Vai izmantojiet %(brand)s kā instalētu progresīvo tīmekļa lietotni",
"Whether you're using %(brand)s on a device where touch is the primary input mechanism": "Vai izmantojat %(brand)s ierīcē, kurā skārnienjūtīgs ekrāns ir galvenais ievades mehānisms",
"This room is used for important messages from the Homeserver, so you cannot leave it.": "Šī telpa tiek izmantota svarīgiem ziņojumiem no bāzes servera, tāpēc jūs nevarat to atstāt.",
"Can't leave Server Notices room": "Nevar iziet no servera Paziņojumu telpas",
"Unexpected server error trying to leave the room": "Mēģinot atstāt telpu radās negaidīta servera kļūme",
"This room is used for important messages from the Homeserver, so you cannot leave it.": "Šī istaba tiek izmantota svarīgiem ziņojumiem no bāzes servera, tāpēc jūs nevarat to pamest.",
"Can't leave Server Notices room": "Nevar pamest Server Notices istabu",
"Unexpected server error trying to leave the room": "Mēģinot pamest istabu radās negaidīta servera kļūme",
"Unable to connect to Homeserver. Retrying...": "Nevar izveidot savienojumu ar bāzes/mājas serveri. Mēģinam vēlreiz ...",
"Please <a>contact your service administrator</a> to continue using the service.": "Lūdzu <a>sazinieties ar savu administratoru</a>, lai turpinātu izmantot pakalpojumu.",
"This homeserver has exceeded one of its resource limits.": "Šis bāzes/mājas serveris ir pārsniedzis vienu no tā resursu ierobežojumiem.",
"This homeserver has been blocked by its administrator.": "Šo bāzes/mājas serveri ir bloķējis tā administrators.",
"This homeserver has hit its Monthly Active User limit.": "Šis bāzes/mājas serveris ir sasniedzis ikmēneša aktīvo lietotāju ierobežojumu.",
"Unexpected error resolving identity server configuration": "Negaidīta kļūda identitātes servera konfigurācijā",
"Unexpected error resolving homeserver configuration": "Negaidīta kļūme mājas servera konfigurācijā"
"Unexpected error resolving homeserver configuration": "Negaidīta kļūme mājas servera konfigurācijā",
"Cancel All": "Atcelt visu",
"Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "Iesniedzot ziņojumu par konkrēto ziņu, tās unikālais notikuma ID tiks nosūtīts jūsu bāzes servera administratoram. Ja ziņas šajā istabā ir šifrētas, jūsu bāzes servera administrators nevarēs lasīt ziņas tekstu vai skatīt failus un attēlus.",
"Sending": "Sūta",
"Adding...": "Pievienošana…",
"Can't load this message": "Nevar ielādēt šo ziņu",
"Send voice message": "Sūtīt balss ziņu",
"Sending your message...": "Sūta jūsu ziņu…",
"Address": "Adrese",
"%(sharerName)s is presenting": "%(sharerName)s prezentē",
"Group & filter rooms by custom tags (refresh to apply changes)": "Grupēt un filtrēt istabas pēc pielāgotiem tagiem (atsvaidzināt, lai piemērotu izmaiņas)",
"Hey you. You're the best!": "Sveiks! Tu esi labākais!",
"Inviting...": "Uzaicina…",
"Share %(name)s": "Dalīties ar %(name)s",
"Try different words or check for typos. Some results may not be visible as they're private and you need an invite to join them.": "Izmēģiniet citus vārdus vai pārbaudiet drukas kļūdas. Daži rezultāti var nebūt redzami, jo tie ir privāti un ir nepieciešams uzaicinājums, lai pievienotos.",
"No results for \"%(query)s\"": "Meklējumam \"%(query)s\" nav rezultātu",
"Explore Public Rooms": "Pārlūkot publiskas istabas",
"Show preview": "Rādīt priekšskatījumu",
"View source": "Skatīt pirmkodu",
"Forward": "Pārsūtīt",
"Forgotten or lost all recovery methods? <a>Reset all</a>": "Aizmirsāt vai pazaudējāt visas atkopšanās iespējas? <a>Atiestatiet visu</a>",
"Share Community": "Dalīties ar kopienu",
"Link to most recent message": "Saite uz jaunāko ziņu",
"Share Room": "Dalīties ar istabu",
"Report Content to Your Homeserver Administrator": "Ziņojums par saturu bāzes servera administratoram",
"Send report": "Nosūtīt ziņojumu",
"Report the entire room": "Ziņot par visu istabu",
"Leave all rooms": "Pamest visas istabas",
"Invited people will be able to read old messages.": "Uzaicinātie cilvēki varēs lasīt vecās ziņas.",
"Or send invite link": "Vai nosūtiet uzaicinājuma saiti",
"If you can't see who youre looking for, send them your invite link below.": "Ja neredzat meklēto, nosūtiet savu uzaicinājuma saiti zemāk.",
"Some suggestions may be hidden for privacy.": "Daži ieteikumi var būt slēpti dēļ privātuma.",
"Search for rooms or people": "Meklēt istabas vai cilvēkus",
"Message preview": "Ziņas priekšskatījums",
"Forward message": "Pārsūtīt ziņu",
"Public room": "Publiska istaba",
"Private room (invite only)": "Privāta istaba (tikai ar ielūgumiem)",
"Only people invited will be able to find and join this room.": "Tikai uzaicinātās cilvēki varēs atrast un pievienoties šai istabai.",
"Anyone will be able to find and join this room.": "Ikviens varēs atrast un pievienoties šai istabai.",
"You can change this at any time from room settings.": "Jūs to varat mainīt istabas iestatījumos jebkurā laikā.",
"Private rooms can be found and joined by invitation only. Public rooms can be found and joined by anyone in this community.": "Privātas istabas var atrast un tām pievienoties tikai pēc uzaicinājuma. Publiskas istabas atrast un tām pievienoties var ikviens no šis kopienas.",
"Show": "Rādīt",
"Search for rooms": "Meklēt istabas",
"Server name": "Servera nosaukums",
"Enter the name of a new server you want to explore.": "Ievadiet nosaukumu jaunam serverim, kuru vēlaties pārlūkot.",
"%(severalUsers)schanged the <a>pinned messages</a> for the room %(count)s times.|other": "%(severalUsers)smainīja <a>piespraustās ziņas</a> istabā %(count)s reizes.",
"Zoom in": "Pietuvināt",
"Zoom out": "Attālināt",
"Join": "Pievienoties",
"Share content": "Dalīties ar saturu",
"Your theme": "Jūsu tēma",
"Your user ID": "Jūsu lietotāja ID",
"Show all": "Rādīt visu",
"Show image": "Rādīt attēlu",
"Call back": "Atzvanīt",
"Call declined": "Zvans noraidīts",
"Copy Room Link": "Kopēt istabas saiti",
"Invite People": "Uzaicināt cilvēkus",
"Forget Room": "Aizmirst istabu",
"Join the discussion": "Pievienoties diskusijai",
"Forget this room": "Aizmirst šo istabu",
"Joining room …": "Pievienošanās istabai…",
"Explore %(spaceName)s": "Pālūkot %(spaceName)s",
"Explore public rooms": "Pārlūkot publiskas istabas",
"Explore community rooms": "Pārlūkot kopienas istabas",
"Enable encryption in settings.": "Iespējot šifrēšanu iestatījumos.",
"%(seconds)ss left": "%(seconds)s sekundes atlikušas",
"Show %(count)s other previews|one": "Rādīt %(count)s citu priekšskatījumu",
"Show %(count)s other previews|other": "Rādīt %(count)s citus priekšskatījumus",
"Share": "Dalīties",
"Access": "Piekļuve",
"People with supported clients will be able to join the room without having a registered account.": "Cilvēki ar atbalstītām lietotnēm varēs pievienoties istabai bez reģistrēta konta.",
"Decide who can join %(roomName)s.": "Nosakiet, kas var pievienoties %(roomName)s.",
"Select the roles required to change various parts of the room": "Izvēlieties lomas, kas nepieciešamas, lai mainītu dažādus istabas parametrus",
"Timeline": "Laika skala",
"Code blocks": "Koda bloki",
"Displaying time": "Laika attēlošana",
"To view all keyboard shortcuts, click here.": "Lai apskatītu visus īsinājumtaustiņus, noklikšķiniet šeit.",
"Keyboard shortcuts": "Īsinājumtaustiņi",
"Theme": "Tēma",
"Custom theme URL": "Pielāgotas tēmas URL",
"Theme added!": "Tēma pievienota!",
"Enter a new identity server": "Ievadiet jaunu identitāšu serveri",
"Mentions & keywords": "Pieminēšana un atslēgvārdi",
"New keyword": "Jauns atslēgvārds",
"Keyword": "Atslēgvārds",
"Enable for this account": "Iespējot šim kontam",
"Messages containing keywords": "Ziņas, kas satur atslēgvārdus",
"Anyone can find and join.": "Ikviens var atrast un pievienoties.",
"Only invited people can join.": "Tikai uzaicināti cilvēki var pievienoties.",
"Private (invite only)": "Privāta (tikai ar ielūgumiem)",
"Expand": "Izvērst",
"Decide who can view and join %(spaceName)s.": "Nosakiet, kas var skatīt un pievienoties %(spaceName)s.",
"Enable guest access": "Iespējot piekļuvi viesiem",
"Invite people": "Uzaicināt cilvēkus",
"Show all rooms": "Rādīt visas istabas",
"Creating...": "Izveidošana…",
"Public": "Publiska",
"Corn": "Kukurūza",
"Show previews/thumbnails for images": "Rādīt attēlu priekšskatījumus/sīktēlus",
"Show hidden events in timeline": "Rādīt slēptos notikumus laika skalā",
"Show developer tools": "Rādīt izstrādātāja rīkus",
"Match system theme": "Pielāgoties sistēmas tēmai",
"Surround selected text when typing special characters": "Iekļaut iezīmēto tekstu, rakstot speciālās rakstzīmes",
"Use Ctrl + Enter to send a message": "Lietot Ctrl + Enter ziņas nosūtīšanai",
"Use Command + Enter to send a message": "Lietot Command + Enter ziņas nosūtīšanai",
"Use Ctrl + F to search timeline": "Lietot Ctrl + F meklēšanai laika skalā",
"Use Command + F to search timeline": "Lietot Command + F meklēšanai laika skalā",
"Enable big emoji in chat": "Iespējot lielas emocijzīmes čatā",
"Jump to the bottom of the timeline when you send a message": "Nosūtot ziņu, pāriet uz laika skalas beigām",
"Show line numbers in code blocks": "Rādīt rindu numurus koda blokos",
"Expand code blocks by default": "Izvērst koda blokus pēc noklusējuma",
"Autoplay videos": "Automātski atskaņot videoklipus",
"Autoplay GIFs": "Automātiski atskaņot GIF",
"Show read receipts sent by other users": "Rādīt izlasīšanas apliecinājumus no citiem lietotājiem",
"Show a placeholder for removed messages": "Rādīt dzēstu ziņu vietturus",
"Use custom size": "Izmantot pielāgotu izmēru",
"Font size": "Šrifta izmērs",
"Call ended": "Zvans beidzās",
"Guest": "Viesis",
"Dates are often easy to guess": "Datumi bieži vien ir viegli uzminami",
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s noņēma piespraustu ziņu šajā istabā. Skatīt visas piespraustās ziņas.",
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s noņēma piespraustu <a>ziņu</a> šajā istabā. Skatīt visas <b>piespraustās ziņas</b>.",
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s piesprauda ziņu šajā istabā. Skatīt visas piespraustās ziņas.",
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s piesprauda <a>ziņu</a> šajā istabā. Skatīt visas <b>piespraustās ziņas</b>."
}

View file

@ -902,7 +902,7 @@
"Select the roles required to change various parts of the room": "Selecteer de vereiste rollen om verschillende delen van het gesprek te wijzigen",
"Enable encryption?": "Versleuteling inschakelen?",
"Once enabled, encryption for a room cannot be disabled. Messages sent in an encrypted room cannot be seen by the server, only by the participants of the room. Enabling encryption may prevent many bots and bridges from working correctly. <a>Learn more about encryption.</a>": "Kamerversleuteling is onomkeerbaar. Berichten in versleutelde kamers zijn niet leesbaar voor de server; enkel voor de deelnemers. Veel robots en bruggen werken niet correct in versleutelde kamers. <a>Lees meer over versleuteling.</a>",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Wijzigingen aan wie de geschiedenis kan lezen gelden enkel voor toekomstige berichten in dit gesprek. De zichtbaarheid van de bestaande geschiedenis blijft ongewijzigd.",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Wijzigingen aan de leesregels van de geschiedenis gelden alleen voor toekomstige berichten in deze kamer. De zichtbaarheid van de bestaande geschiedenis blijft ongewijzigd.",
"Encryption": "Versleuteling",
"Once enabled, encryption cannot be disabled.": "Eenmaal ingeschakeld kan versleuteling niet meer worden uitgeschakeld.",
"Encrypted": "Versleuteld",
@ -1271,7 +1271,7 @@
"Find a room…": "Zoek een gesprek…",
"Find a room… (e.g. %(exampleRoom)s)": "Zoek een gesprek… (bv. %(exampleRoom)s)",
"If you can't find the room you're looking for, ask for an invite or <a>Create a new room</a>.": "Als u de kamer niet kunt vinden is het mogelijk privé, vraag dan om een uitnodiging of <a>maak een nieuwe kamer aan</a>.",
"Explore rooms": "Ontdek kamers",
"Explore rooms": "Kamers ontdekken",
"Show previews/thumbnails for images": "Miniaturen voor afbeeldingen tonen",
"Clear cache and reload": "Cache wissen en herladen",
"You are about to remove %(count)s messages by %(user)s. This cannot be undone. Do you wish to continue?|one": "U staat op het punt 1 bericht door %(user)s te verwijderen. Dit kan niet ongedaan gemaakt worden. Wilt u doorgaan?",
@ -2345,7 +2345,7 @@
"Page Down": "Page Down",
"Esc": "Esc",
"Enter": "Enter",
"Space": "Spatie",
"Space": "Ruimte",
"Ctrl": "Ctrl",
"Super": "Super",
"Shift": "Shift",
@ -2977,7 +2977,7 @@
"Connection failed": "Verbinding mislukt",
"Could not connect media": "Mediaverbinding mislukt",
"Spaces with access": "Ruimtes met toegang",
"Anyone in a space can find and join. <a>Edit which spaces can access here.</a>": "Iedereen in een ruimte kan zoeken en deelnemen. <a>Wijzig hier welke ruimtes toegang hebben.</a>",
"Anyone in a space can find and join. <a>Edit which spaces can access here.</a>": "Iedereen in een ruimte kan hem vinden en deelnemen. <a>Wijzig hier welke ruimtes toegang hebben.</a>",
"Currently, %(count)s spaces have access|other": "Momenteel hebben %(count)s ruimtes toegang",
"& %(count)s more|other": "& %(count)s meer",
"Upgrade required": "Upgrade noodzakelijk",
@ -2997,7 +2997,7 @@
"People with supported clients will be able to join the room without having a registered account.": "Personen met geschikte apps zullen aan de kamer kunnen deelnemen zonder een account te hebben.",
"Decide who can join %(roomName)s.": "Kies wie kan deelnemen aan %(roomName)s.",
"Space members": "Ruimte leden",
"Anyone in a space can find and join. You can select multiple spaces.": "Iedereen in een ruimte kan zoeken en deelnemen. U kunt meerdere ruimtes selecteren.",
"Anyone in a space can find and join. You can select multiple spaces.": "Iedereen in een ruimte kan hem vinden en deelnemen. U kunt meerdere ruimtes selecteren.",
"Visible to space members": "Zichtbaar voor ruimte leden",
"Public room": "Openbaar gesprek",
"Private room (invite only)": "Privégesprek (alleen op uitnodiging)",
@ -3035,7 +3035,7 @@
"Search for rooms or spaces": "Kamers of ruimtes zoeken",
"Add space": "Ruimte toevoegen",
"Leave %(spaceName)s": "%(spaceName)s verlaten",
"You're the only admin of some of the rooms or spaces you wish to leave. Leaving them will leave them without any admins.": "U bent de enige beheerder van sommige kamers of spaces die u wilt verlaten. Door deze te verlaten hebben ze geen beheerder meer.",
"You're the only admin of some of the rooms or spaces you wish to leave. Leaving them will leave them without any admins.": "U bent de enige beheerder van sommige kamers of ruimtes die u wilt verlaten. Door deze te verlaten hebben ze geen beheerder meer.",
"You're the only admin of this space. Leaving it will mean no one has control over it.": "U bent de enige beheerder van deze ruimte. Door het te verlaten zal er niemand meer controle over hebben.",
"You won't be able to rejoin unless you are re-invited.": "U kunt niet opnieuw deelnemen behalve als u opnieuw wordt uitgenodigd.",
"Search %(spaceName)s": "Zoek %(spaceName)s",
@ -3094,7 +3094,7 @@
"A link to the Space will be put in your community description.": "In de gemeenschapsomschrijving zal een link naar deze ruimte worden geplaatst.",
"Create Space from community": "Ruimte van gemeenschap maken",
"Failed to migrate community": "Omzetten van de gemeenschap is mislukt",
"To create a Space from another community, just pick the community in Preferences.": "Om een Space te maken van een gemeenschap kiest u de gemeenschap in Instellingen.",
"To create a Space from another community, just pick the community in Preferences.": "Om een ruimte te maken van een gemeenschap kiest u de gemeenschap in Instellingen.",
"<SpaceName/> has been made and everyone who was a part of the community has been invited to it.": "<SpaceName/> is gemaakt en iedereen die lid was van de gemeenschap is ervoor uitgenodigd.",
"Space created": "Ruimte aangemaakt",
"To view Spaces, hide communities in <a>Preferences</a>": "Om ruimtes te zien, verberg gemeenschappen in uw <a>Instellingen</a>",
@ -3142,7 +3142,7 @@
"Change main address for the space": "Hoofdadres van ruimte wijzigen",
"Change space name": "Ruimtenaam wijzigen",
"Change space avatar": "Ruimte-afbeelding wijzigen",
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Iedereen in <spaceName/> kan zoeken en deelnemen. U kunt ook andere ruimtes selecteren.",
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Iedereen in <spaceName/> kan hem vinden en deelnemen. U kunt ook andere ruimtes selecteren.",
"Message didn't send. Click for info.": "Bericht is niet verstuur. Klik voor meer info.",
"To join %(communityName)s, swap to communities in your <a>preferences</a>": "Om aan %(communityName)s deel te nemen, wissel naar gemeenschappen in uw <a>instellingen</a>",
"To view %(communityName)s, swap to communities in your <a>preferences</a>": "Om %(communityName)s te bekijken, wissel naar gemeenschappen in uw <a>instellingen</a>",
@ -3164,5 +3164,42 @@
"You are about to leave <spaceName/>.": "U staat op het punt <spaceName/> te verlaten.",
"Leave some rooms": "Sommige kamers verlaten",
"Leave all rooms": "Alle kamers verlaten",
"Don't leave any rooms": "Geen kamers verlaten"
"Don't leave any rooms": "Geen kamers verlaten",
"Expand quotes │ ⇧+click": "Quotes uitvouwen │ ⇧+click",
"Collapse quotes │ ⇧+click": "Quotes invouwen │ ⇧+click",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s Verstuurde een sticker.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s veranderde de kamerafbeelding.",
"%(date)s at %(time)s": "%(date)s om %(time)s",
"Include Attachments": "Bijlages toevoegen",
"Size Limit": "Bestandsgrootte",
"Format": "Formaat",
"Select from the options below to export chats from your timeline": "Selecteer met welke opties u uw chats wilt exporteren van uw tijdlijn",
"Export Chat": "Chat exporteren",
"Exporting your data": "Uw data aan het exporteren",
"Stop": "Stop",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Weet u zeker dat u wilt stoppen terwijl u uw data exporteert? Als u dit doet moet u later opnieuw beginnen.",
"Your export was successful. Find it in your Downloads folder.": "Uw export was succesvol. U vindt hem in uw Downloads-map.",
"The export was cancelled successfully": "De export was succesvol geannulleerd",
"Export Successful": "Export succesvol",
"MB": "MB",
"Number of messages": "Berichten aantal",
"Number of messages can only be a number between %(min)s and %(max)s": "Aantal berichten moet een getal zijn tussen %(min)s en %(max)s",
"Size can only be a number between %(min)s MB and %(max)s MB": "Bestand moet een grootte hebben tussen %(min)s MB en %(max)s MB",
"Enter a number between %(min)s and %(max)s": "Voer een nummer tussen %(min)s en %(max)s in",
"In reply to <a>this message</a>": "In antwoord op <a>dit bericht</a>",
"Export chat": "Chat exporteren",
"File Attached": "Bijgevoegd bestand",
"Error fetching file": "Fout bij bestand opvragen",
"Topic: %(topic)s": "Onderwerp: %(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "Dit is de start van de export van <roomName/>. Geëxporteerd door <exporterDetails/> op %(exportDate)s.",
"%(creatorName)s created this room.": "%(creatorName)s heeft deze kamer gemaakt.",
"Media omitted - file size limit exceeded": "Media weggelaten - limiet bestandsgrootte overschreden",
"Media omitted": "Media weglaten",
"Current Timeline": "Huidige tijdlijn",
"Specify a number of messages": "Kies het aantal berichten",
"From the beginning": "Van het begin",
"Plain Text": "Platte tekst",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "Weet u zeker dat u wilt afsluiten tijdens een export?"
}

View file

@ -933,7 +933,7 @@
"Show hidden events in timeline": "Pokaż ukryte wydarzenia na linii czasowej",
"Allow fallback call assist server turn.matrix.org when your homeserver does not offer one (your IP address would be shared during a call)": "Pozwól na awaryjny serwer wspomagania połączeń turn.matrix.org, gdy Twój serwer domowy takiego nie oferuje (Twój adres IP będzie udostępniony podczas połączenia)",
"Messages containing my username": "Wiadomości zawierające moją nazwę użytkownika",
"Encrypted messages in one-to-one chats": "Zaszyforwane wiadomości w rozmowach jeden-do-jednego",
"Encrypted messages in one-to-one chats": "Zaszyfrowane wiadomości w rozmowach jeden-do-jednego",
"Encrypted messages in group chats": "Zaszyfrowane wiadomości w rozmowach grupowych",
"When rooms are upgraded": "Kiedy pokoje są uaktualniane",
"The other party cancelled the verification.": "Druga strona anulowała weryfikację.",
@ -1068,7 +1068,7 @@
"Find a room… (e.g. %(exampleRoom)s)": "Znajdź pokój… (np. %(exampleRoom)s)",
"If you can't find the room you're looking for, ask for an invite or <a>Create a new room</a>.": "Jeżeli nie możesz znaleźć szukanego pokoju, poproś o zaproszenie albo <a>stwórz nowy pokój</a>.",
"Show typing notifications": "Pokazuj powiadomienia o pisaniu",
"Match system theme": "Dopasuj do motywu systemego",
"Match system theme": "Dopasuj do motywu systemowego",
"They match": "Pasują do siebie",
"They don't match": "Nie pasują do siebie",
"Upload": "Prześlij",

View file

@ -3138,5 +3138,62 @@
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s открепляет сообщение из этой комнаты. Просмотрите все прикрепленые сообщения.",
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s открепляет <a>сообщение</a> из этой комнаты. Просмотрите все <b>прикрепленые сообщения</b>.",
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s прикрепляет сообщение в этой комнате. Просмотрите все прикрепленные сообщения.",
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s прикрепляет <a>сообщение</a> в этой комнате. Просмотрите все <b>прикрепленые сообщения</b>."
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s прикрепляет <a>сообщение</a> в этой комнате. Просмотрите все <b>прикрепленые сообщения</b>.",
"To join this Space, hide communities in your <a>preferences</a>": "Чтобы присоединиться к этому пространству, скройте сообщества в ваших <a>настройках</a>",
"To view this Space, hide communities in your <a>preferences</a>": "Чтобы просмотреть это пространство, скройте сообщества в ваших <a>настройках</a>",
"To join %(communityName)s, swap to communities in your <a>preferences</a>": "Чтобы присоединиться к %(communityName)s, переключитесь на сообщества в ваших <a>настройках</a>",
"To view %(communityName)s, swap to communities in your <a>preferences</a>": "Для просмотра %(communityName)s, переключитесь на сообщества в ваших <a>настройках</a>",
"Private community": "Приватное сообщество",
"Public community": "Публичное сообщество",
"Leave some rooms": "Покинуть несколько комнат",
"Leave all rooms": "Покинуть все комнаты",
"Don't leave any rooms": "Не покидать ни одну комнату",
"Would you like to leave the rooms in this space?": "Хотите ли вы покинуть комнаты в этом пространстве?",
"You are about to leave <spaceName/>.": "Вы собираетесь покинуть <spaceName/>.",
"%(reactors)s reacted with %(content)s": "%(reactors)s отреагировали %(content)s",
"Expand quotes │ ⇧+click": "Развернуть цитаты │ ⇧+нажатие",
"Collapse quotes │ ⇧+click": "Свернуть цитаты │ ⇧+нажатие",
"Message": "Сообщение",
"Joining space …": "Присоединение к пространству…",
"Message didn't send. Click for info.": "Сообщение не отправлено. Нажмите для получения информации.",
"Upgrade anyway": "Обновить в любом случае",
"This room is in some spaces youre not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Эта комната находится в некоторых пространствах, администратором которых вы не являетесь. В этих пространствах старая комната будет по-прежнему отображаться, но людям будет предложено присоединиться к новой.",
"Before you upgrade": "Перед обновлением",
"To join a space you'll need an invite.": "Чтобы присоединиться к пространству, вам нужно получить приглашение.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Временно показывать сообщества вместо пространств для этой сессии. Поддержка этого будет удалена в ближайшем будущем. Это перезагрузит Element.",
"Display Communities instead of Spaces": "Показывать сообщества вместо пространств",
"You can also make Spaces from <a>communities</a>.": "Вы также можете создать пространство из <a>сообщества</a>.",
"Include Attachments": "Включить вложения",
"Size Limit": "Ограничение по размеру",
"Format": "Формат",
"Export Chat": "Экспорт чата",
"Exporting your data": "Экспорт ваших данных",
"Stop": "Стоп",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Вы уверены, что хотите прекратить экспорт данных? Если да, то вам придется начать все сначала.",
"Your export was successful. Find it in your Downloads folder.": "Ваш экспорт звершен. Найдите его в папке \"Загрузки\".",
"The export was cancelled successfully": "Экспорт был отменен",
"Export Successful": "Экспорт завершен",
"MB": "Мб",
"Number of messages": "Количество сообщений",
"Number of messages can only be a number between %(min)s and %(max)s": "Количество сообщений может быть только числом между %(min)s и %(max)s",
"Size can only be a number between %(min)s MB and %(max)s MB": "Размер может быть только числом между %(min)s Мб и %(max)s Мб",
"Enter a number between %(min)s and %(max)s": "Введите число между %(min)s и %(max)s",
"In reply to <a>this message</a>": "В ответ на <a>это сообщение</a>",
"Export chat": "Экспорт чата",
"File Attached": "Файл прикреплен",
"Error fetching file": "Ошибка при получении файла",
"Topic: %(topic)s": "Тема: %(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "Это начало экспорта <roomName/>. Экспортировано <exporterDetails/> в %(exportDate)s.",
"%(creatorName)s created this room.": "%(creatorName)s создал(а) эту комнату.",
"Media omitted - file size limit exceeded": "Медиа пропущены - превышен лимит размера файла",
"Media omitted": "Медиа пропущены",
"Specify a number of messages": "Укажите количество сообщений",
"From the beginning": "С начала",
"Plain Text": "Текст",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "Вы уверены, что хотите выйти во время экспорта?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s отправил(а) стикер.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s сменил(а) аватар комнаты.",
"%(date)s at %(time)s": "%(date)s в %(time)s"
}

View file

@ -3161,5 +3161,42 @@
"You are about to leave <spaceName/>.": "Ju ndan një hap nga braktisja e <spaceName/>.",
"Leave some rooms": "Braktis disa dhoma",
"Leave all rooms": "Braktisi krejt dhomat",
"Don't leave any rooms": "Mos braktis ndonjë dhomë"
"Don't leave any rooms": "Mos braktis ndonjë dhomë",
"Expand quotes │ ⇧+click": "Hapi citimet │ ⇧+klikim",
"Collapse quotes │ ⇧+click": "Tkurri citimet │ ⇧+klikim",
"Format": "Format",
"MB": "MB",
"JSON": "JSON",
"HTML": "HTML",
"Include Attachments": "Përfshi Bashkëngjitje",
"Size Limit": "Kufi Madhësie",
"Select from the options below to export chats from your timeline": "Që të eksportohen fjalosje prej rrjedhës tuaj kohore, përzgjidhni prej mundësive më poshtë",
"Export Chat": "Eksportoni Fjalosje",
"Exporting your data": "Eksportim i të dhënave tuaja",
"Stop": "Ndale",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Jeni i sigurt se doni të ndalet eksportimi i të dhënave tuaja? Nëse po, do tju duhet tia filloni nga e para.",
"Your export was successful. Find it in your Downloads folder.": "Eksportimi juaj qe i suksesshëm. E keni te dosja juaj Shkarkime.",
"The export was cancelled successfully": "Eksportimi u anulua me sukses",
"Export Successful": "Eksportim i Suksesshëm",
"Number of messages": "Numër mesazhesh",
"Number of messages can only be a number between %(min)s and %(max)s": "Numri i mesazheve mund të jetë vetëm një numër mes %(min)s dhe %(max)s",
"Size can only be a number between %(min)s MB and %(max)s MB": "Madhësia mund të jetë vetëm një numër mes %(min)s MB dhe %(max)s MB",
"Enter a number between %(min)s and %(max)s": "Jepni një numër mes %(min)s dhe %(max)s",
"In reply to <a>this message</a>": "Në përgjigje të <a>këtij mesazhi</a>",
"Export chat": "Eksportoni fjalosje",
"File Attached": "Kartelë Bashkëngjitur",
"Error fetching file": "Gabim në sjellje kartele",
"Topic: %(topic)s": "Temë: %(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "Ky është fillimi i eksportimit të <roomName/>. Eksportuar nga <exporterDetails/> më %(exportDate)s.",
"%(creatorName)s created this room.": "%(creatorName)s krijoi këtë dhomë.",
"Media omitted - file size limit exceeded": "U la jashtë media - u tejkalua kufi madhësie kartele",
"Media omitted": "U la jashtë media",
"Current Timeline": "Rrjedhë Kohore e Tanishme",
"Specify a number of messages": "Përcaktoni një numër mesazhesh",
"From the beginning": "Që nga fillimi",
"Plain Text": "Tekst i Thjeshtë",
"Are you sure you want to exit during this export?": "Jeni i sigurt se doni të dilet gjatë këtij eksportimi?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s dërgoi një ngjitës.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s ndryshoi avatarin e dhomës.",
"%(date)s at %(time)s": "%(date)s më %(time)s"
}

View file

@ -3159,5 +3159,10 @@
"To join a space you'll need an invite.": "För att gå med i ett utrymme så behöver du en inbjudan.",
"You can also make Spaces from <a>communities</a>.": "Du kan också göra utrymmen av <a>gemenskaper</a>.",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "Visa tillfälligt gemenskaper istället för utrymmen för den här sessionen. Stöd för detta kommer snart att tas bort. Detta kommer att ladda om Element.",
"Display Communities instead of Spaces": "Visa gemenskaper istället för utrymmen"
"Display Communities instead of Spaces": "Visa gemenskaper istället för utrymmen",
"Would you like to leave the rooms in this space?": "Vill du lämna rummen i det här utrymmet?",
"You are about to leave <spaceName/>.": "Du kommer att lämna <spaceName/>.",
"Leave some rooms": "Lämna vissa rum",
"Leave all rooms": "Lämna alla rum",
"Don't leave any rooms": "Lämna inga rum"
}

View file

@ -42,7 +42,7 @@
"Anyone": "Кожний",
"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 reject the invitation?": "Ви впевнені, що хочете відхилити запрошення?",
"Attachment": "Прикріплення",
"Ban": "Заблокувати",
"Banned users": "Заблоковані користувачі",
@ -511,12 +511,12 @@
"Command failed": "Не вдалося виконати команду",
"Could not find user in room": "Не вдалося знайти користувача в кімнаті",
"Please supply a widget URL or embed code": "Вкажіть URL або код вбудовування розширення",
"Verifies a user, session, and pubkey tuple": "Звіряє користувача, сеанс та кортеж відкритого ключа",
"Verifies a user, session, and pubkey tuple": "Звіряє користувача, сеанс та супровід відкритого ключа",
"Unknown (user, session) pair:": "Невідома пара (користувача, сеансу):",
"Session already verified!": "Сеанс вже підтверджений!",
"WARNING: Session already verified, but keys do NOT MATCH!": "УВАГА: Сеанс вже підтверджений, проте ключі НЕ ЗБІГАЮТЬСЯ!",
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "УВАГА: НЕ ВДАЛОСЯ ЗДІЙСНИТИ ЗВІРЯННЯ КЛЮЧА! Ключем для %(userId)s та сеансу %(deviceId)s є \"%(fprint)s\", що не відповідає наданому ключу \"%(fingerprint)s\". Це може означати, що ваші повідомлення перехоплюють!",
"The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Наданий вами ключ підпису збігається з ключем підпису, що ви отримали від сеансу %(deviceId)s %(userId)s. Сеанс позначено як звірений.",
"Session already verified!": "Сеанс вже звірено!",
"WARNING: Session already verified, but keys do NOT MATCH!": "УВАГА: Сеанс вже звірено, проте ключі НЕ ЗБІГАЮТЬСЯ!",
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "УВАГА: НЕ ВДАЛОСЯ ЗВІРИТИ КЛЮЧ! Ключем для %(userId)s та сеансу %(deviceId)s є «%(fprint)s», що не збігається з наданим ключем «%(fingerprint)s». Це може означати, що ваші повідомлення перехоплюють!",
"The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Наданий вами ключ підпису збігається з ключем підпису, що ви отримали від сеансу %(deviceId)s %(userId)s. Сеанс позначено звіреним.",
"Sends the given emote coloured as a rainbow": "Надсилає вказаний смайлик, розфарбований веселкою",
"Displays list of commands with usages and descriptions": "Відбиває перелік команд із прикладами вжитку та описом",
"Displays information about a user": "Показує відомості про користувача",
@ -559,10 +559,10 @@
"%(senderName)s created a rule banning servers matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування серверів зі збігом з %(glob)s через %(reason)s",
"Light": "Світла",
"Dark": "Темна",
"You signed in to a new session without verifying it:": "Ви увійшли в новий сеанс, не підтвердивши його:",
"Verify your other session using one of the options below.": "Перевірте інший сеанс за допомогою одного із варіантів знизу.",
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) починає новий сеанс без його підтвердження:",
"Ask this user to verify their session, or manually verify it below.": "Попросіть цього користувача підтвердити сеанс, або підтвердьте його власноруч унизу.",
"You signed in to a new session without verifying it:": "Ви увійшли в новий сеанс, не звіривши його:",
"Verify your other session using one of the options below.": "Звірте інший сеанс за допомогою одного з варіантів знизу.",
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) починає новий сеанс без його звірення:",
"Ask this user to verify their session, or manually verify it below.": "Попросіть цього користувача звірити сеанс, або звірте його власноруч унизу.",
"Not Trusted": "Не довірений",
"Manually Verify by Text": "Ручна перевірка за допомогою тексту",
"Interactively verify by Emoji": "Інтерактивно звірити за допомогою емодзі",
@ -907,7 +907,7 @@
"Upgrade public room": "Поліпшити відкриту кімнату",
"Restore your key backup to upgrade your encryption": "Відновіть резервну копію вашого ключа, щоб поліпшити шифрування",
"You'll need to authenticate with the server to confirm the upgrade.": "Ви матимете пройти розпізнання на сервері щоб підтвердити поліпшування.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Поліпште цей сеанс щоб уможливити звіряння інших сеансів, надаючи їм доступ до зашифрованих повідомлень та позначуючи їх довіреними для інших користувачів.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Оновіть цей сеанс, щоб уможливити звірення інших сеансів, надаючи їм доступ до зашифрованих повідомлень та позначаючи їх довіреними для інших користувачів.",
"Upgrade your encryption": "Поліпшити ваше шифрування",
"Show a placeholder for removed messages": "Показувати замісну позначку замість видалених повідомлень",
"Show join/leave messages (invites/kicks/bans unaffected)": "Показувати повідомлення про приєднання/вихід (не впливає на запрошення/викидання/блокування)",
@ -971,11 +971,11 @@
"Verify this user by confirming the following emoji appear on their screen.": "Звірте цього користувача підтвердженням того, що наступні емодзі з'являються на його екрані.",
"Emoji picker": "Обирач емодзі",
"The session you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "Сеанс, який ви намагаєтесь звірити, не підтримує сканування QR-коду або звіряння за допомогою емодзі, що є підтримувані %(brand)s. Спробуйте використати інший клієнт.",
"If you can't scan the code above, verify by comparing unique emoji.": "Якщо ви не можете відсканувати вищезазначений код, звірте порівнянням унікальних емодзі.",
"If you can't scan the code above, verify by comparing unique emoji.": "Якщо ви не можете сканувати зазначений код, звірте порівнянням унікальних емодзі.",
"Verify by comparing unique emoji.": "Звірити порівнянням унікальних емодзі.",
"Verify by emoji": "Звірити за допомогою емодзі",
"Compare emoji": "Порівняти емодзі",
"Your new session is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Ваш новий сеанс тепер є звірений. Він має доступ до ваших зашифрованих повідомлень, а інші користувачі бачитимуть його як довірений.",
"Your new session is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Ваш новий сеанс звірено. Він має доступ до ваших зашифрованих повідомлень, а інші користувачі бачитимуть його довіреним.",
"Emoji": "Емодзі",
"Emoji Autocomplete": "Самодоповнення емодзі",
"%(senderName)s created a ban rule matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування зі збігом з %(glob)s через %(reason)s",
@ -1355,11 +1355,11 @@
"%(severalUsers)sjoined %(count)s times|other": "%(severalUsers)sприєдналися %(count)s разів",
"Members only (since they joined)": "Лише учасники (від часу приєднання)",
"This room is not accessible by remote Matrix servers": "Ця кімната недоступна для віддалених серверів Matrix",
"Manually verify all remote sessions": "Перевірити всі сеанси власноруч",
"Manually verify all remote sessions": "Звірити всі сеанси власноруч",
"Explore rooms": "Каталог кімнат",
"Session key:": "Ключ сеансу:",
"Hide sessions": "Сховати сеанси",
"Hide verified sessions": "Сховати підтверджені сеанси",
"Hide verified sessions": "Сховати звірені сеанси",
"Session ID:": "ID сеансу:",
"Click the button below to confirm setting up encryption.": "Клацніть на кнопку внизу, щоб підтвердити налаштування шифрування.",
"Confirm encryption setup": "Підтвердити налаштування шифрування",
@ -1377,7 +1377,7 @@
"Try again": "Спробувати ще раз",
"%(creator)s created this DM.": "%(creator)s створює цю приватну розмову.",
"Share Link to User": "Поділитися посиланням на користувача",
"Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their avatar.": "Повідомлення тут захищено наскрізним шифруванням. Підтвердьте %(displayName)s у їхньому профілі — натиснувши на їх аватар.",
"Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their avatar.": "Повідомлення тут захищено наскрізним шифруванням. Звірте %(displayName)s у їхньому профілі — натиснувши на їх аватар.",
"<a>In reply to</a> <pill>": "<a>У відповідь на</a> <pill>",
"The user you called is busy.": "Користувач, якого ви викликаєте, зайнятий.",
"User Busy": "Користувач зайнятий",
@ -1419,7 +1419,7 @@
"Not trusted": "Не довірений",
"Trusted": "Довірений",
"This backup is trusted because it has been restored on this session": "Ця резервна копія довірена, оскільки її було відновлено у цьому сеансі",
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Індивідуально перевіряйте кожен сеанс, який використовується користувачем, щоб позначити його довіреним, не довіряючи пристроям перехресного підписування.",
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Індивідуально звіряйте кожен сеанс, який використовується користувачем, щоб позначити його довіреним, не довіряючи пристроям перехресного підписування.",
"To be secure, do this in person or use a trusted way to communicate.": "Для забезпечення безпеки зробіть це особисто або скористайтесь надійним способом зв'язку.",
"You can change this at any time from room settings.": "Ви завжди можете змінити це у налаштуваннях кімнати.",
"Room settings": "Налаштування кімнати",
@ -1623,12 +1623,12 @@
"Your homeserver rejected your log in attempt. This could be due to things just taking too long. Please try again. If this continues, please contact your homeserver administrator.": "Ваш домашній сервер намагався відхилити спробу вашого входу. Це може бути пов'язано з занадто тривалим часом входу. Повторіть спробу. Якщо це триватиме й далі, зверніться до адміністратора домашнього сервера.",
"Your homeserver was unreachable and was not able to log you in. Please try again. If this continues, please contact your homeserver administrator.": "Ваш домашній сервер був недоступний і вхід не виконано. Повторіть спробу. Якщо це триватиме й далі, зверніться до адміністратора свого домашнього сервера.",
"We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "Ми попросили переглядач запам’ятати, який домашній сервер ви використовуєте, щоб дозволити вам увійти, але, на жаль, ваш переглядач забув його. Перейдіть на сторінку входу та повторіть спробу.",
"You've successfully verified %(deviceName)s (%(deviceId)s)!": "Ви успішно підтвердили %(deviceName)s (%(deviceId)s)!",
"You've successfully verified your device!": "Ви успішно підтвердили свій пристрій!",
"You've successfully verified %(displayName)s!": "Ви успішно підтвердили %(displayName)s!",
"You've successfully verified %(deviceName)s (%(deviceId)s)!": "Ви успішно звірили %(deviceName)s (%(deviceId)s)!",
"You've successfully verified your device!": "Ви успішно звірили свій пристрій!",
"You've successfully verified %(displayName)s!": "Ви успішно звірили %(displayName)s!",
"Almost there! Is %(displayName)s showing the same shield?": "Майже готово! Ваш %(displayName)s показує той самий щит?",
"Almost there! Is your other session showing the same shield?": "Майже готово! Ваш інший сеанс показує той самий щит?",
"Verify by scanning": "Підтвердити скануванням",
"Verify by scanning": "Звірити скануванням",
"Remove recent messages by %(user)s": "Вилучити останні повідомлення від %(user)s",
"Remove recent messages": "Видалити останні повідомлення",
"Edit devices": "Керувати пристроями",
@ -1638,11 +1638,11 @@
"Server Options": "Опції сервера",
"Verify your identity to access encrypted messages and prove your identity to others.": "Підтвердьте свою особу, щоб отримати доступ до зашифрованих повідомлень і довести свою справжність іншим.",
"Allow this widget to verify your identity": "Дозволити цьому розширенню перевіряти вашу особу",
"Verify this login": "Підтвердити цей вхід",
"Verify other login": "Підтвердити інший вхід",
"Verify this login": "Звірити цей вхід",
"Verify other login": "Звірити інший вхід",
"Use another login": "Інший обліковий запис",
"Use Security Key": "Використати ключ безпеки",
"Without verifying, you wont have access to all your messages and may appear as untrusted to others.": "Без підтвердження ви не матимете доступу до всіх своїх повідомлень, а інші бачитимуть вас ненадійними.",
"Without verifying, you wont have access to all your messages and may appear as untrusted to others.": "Без звірки ви не матимете доступу до всіх своїх повідомлень, а інші бачитимуть вас недовіреними.",
"New? <a>Create account</a>": "Вперше тут? <a>Створіть обліковий запис</a>",
"Forgotten your password?": "Забули свій пароль?",
"Forgot password?": "Забули пароль?",
@ -1659,8 +1659,8 @@
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s відкріплює <a>повідомлення</a> з цієї кімнати. Перегляньте всі <b>прикріплені повідомлення</b>.",
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s прикріплює повідомлення до цієї кімнати. Перегляньте всі прикріплені повідомлення.",
"%(senderName)s pinned <a>a message</a> to this room. See all <b>pinned messages</b>.": "%(senderName)s прикріплює <a>повідомлення</a> до цієї кімнати. Перегляньте всі <b>прикріплені повідомлення</b>.",
"Verify this user by confirming the following number appears on their screen.": "Перевірте цього користувача, підтвердивши, що на екрані з'явилося таке число.",
"Verify this session by confirming the following number appears on its screen.": "Перевірте цей сеанс, підтвердивши, що на екрані з'явилося це число.",
"Verify this user by confirming the following number appears on their screen.": "Звірте справжність цього користувача, підтвердивши, що на екрані з'явилося таке число.",
"Verify this session by confirming the following number appears on its screen.": "Звірте цей сеанс, підтвердивши, що на екрані з'явилося це число.",
"They don't match": "Вони не збігаються",
"They match": "Вони збігаються",
"Return to call": "Повернутися до виклику",
@ -1692,7 +1692,7 @@
"Enable desktop notifications": "Увімкнути сповіщення стільниці",
"Don't miss a reply": "Не пропустіть відповідей",
"Review to ensure your account is safe": "Перевірте, щоб переконатися, що ваш обліковий запис у безпеці",
"You have unverified logins": "У вас є не підтверджені сеанси",
"You have unverified logins": "У вас є незвірені сеанси",
"Error leaving room": "Помилка під час виходу з кімнати",
"This homeserver has been blocked by its administrator.": "Цей домашній сервер заблокований адміністратором.",
"See when the name changes in your active room": "Бачити, коли зміниться назва активної кімнати",
@ -1726,7 +1726,7 @@
"Start sharing your screen": "Почати показ екрана",
"Start the camera": "Запустити камеру",
"Scan this unique code": "Скануйте цей унікальний код",
"Verify this session by completing one of the following:": "Підтвердьте цей сеанс одним із запропонованих способів:",
"Verify this session by completing one of the following:": "Звірте цей сеанс одним із запропонованих способів:",
"Leave %(groupName)s?": "Вийти з %(groupName)s?",
"Leave Community": "Вийти зі спільноти",
"Add a User": "Додати користувача",
@ -1900,7 +1900,7 @@
"Community Autocomplete": "Автозаповнення спільноти",
"Command Autocomplete": "Команда автозаповнення",
"Commands": "Команди",
"Your new session is now verified. Other users will see it as trusted.": "Тепер ваша новий сеанс тепер підтверджено. Інші користувачі побачать її довіреною.",
"Your new session is now verified. Other users will see it as trusted.": "Ваш новий сеанс звірено. Інші користувачі побачать його довіреним.",
"Registration Successful": "Реєстрацію успішно виконано",
"You can now close this window or <a>log in</a> to your new account.": "Тепер можете закрити це вікно або <a>увійти</a> до свого нового облікового запису.",
"<a>Log in</a> to your new account.": "<a>Увійти</a> до нового облікового запису.",
@ -1908,7 +1908,7 @@
"Set a new password": "Установити новий пароль",
"Return to login screen": "Повернутися на сторінку входу",
"Send Reset Email": "Надіслати електронного листа скидання пароля",
"Session verified": "Сеанс підтверджено",
"Session verified": "Сеанс звірено",
"User settings": "Користувацькі налаштування",
"Community settings": "Налаштування спільноти",
"Switch theme": "Змінити тему",
@ -2110,5 +2110,31 @@
"There was an error finding this widget.": "Сталася помилка під час пошуку розширення.",
"Active Widgets": "Активні розширення",
"Verification Requests": "Запит перевірки",
"There was a problem communicating with the server. Please try again.": "Виникла проблема зв'язку з сервером. Повторіть спробу."
"There was a problem communicating with the server. Please try again.": "Виникла проблема зв'язку з сервером. Повторіть спробу.",
"You're not currently a member of any communities.": "Ви не приєдналися до жодної групи.",
"Loading...": "Завантаження...",
"Failed to load group members": "Не вдалося завантажити учасників групи",
"Can't load this message": "Не вдалося завантажити це повідомлення",
"Click here to see older messages.": "Клацніть тут, щоб переглянути давніші повідомлення.",
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s вилучає аватар кімнати.",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>реагує на %(shortName)s</reactedWith>",
"%(reactors)s reacted with %(content)s": "%(reactors)s реагує на %(content)s",
"Reactions": "Реакції",
"Add reaction": "Додати реакцію",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s надсилає наліпку.",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s змінює аватар кімнати.",
"%(date)s at %(time)s": "%(date)s о %(time)s",
"Manually export keys": "Експорт ключів власноруч",
"Don't leave any rooms": "Не виходити з будь-якої кімнати",
"Updating %(brand)s": "Оновлення %(brand)s",
"Clear cache and resync": "Очистити кеш і повторно синхронізувати",
"Incompatible local cache": "Несумісний локальний кеш",
"Signature upload failed": "Не вдалося вивантажити підпис",
"Signature upload success": "Підпис успішно вивантажено",
"Unable to upload": "Не вдалося вивантажити",
"Cancelled signature upload": "Вивантаження підпису скасовано",
"Upload completed": "Вивантаження виконано",
"Search %(spaceName)s": "Пошук %(spaceName)s",
"Leave some rooms": "Вийте з кількох кімнат",
"Leave all rooms": "Вийти з кімнати"
}

View file

@ -3164,5 +3164,42 @@
"You are about to leave <spaceName/>.": "你即将离开 <spaceName/>。",
"Leave some rooms": "离开一些聊天室",
"Leave all rooms": "离开所有聊天室",
"Don't leave any rooms": "不离开任何聊天室"
"Don't leave any rooms": "不离开任何聊天室",
"Collapse quotes │ ⇧+click": "折叠引号│ ⇧+click",
"Expand quotes │ ⇧+click": "展开引号│ ⇧+click",
"Number of messages can only be a number between %(min)s and %(max)s": "消息数只能是一个介于 %(min)s 和 %(max)s 之间的整数",
"Include Attachments": "包括附件",
"Size Limit": "大小限制",
"Format": "格式",
"Select from the options below to export chats from your timeline": "从下面的选项中选择以从时间轴导出聊天记录",
"Export Chat": "导出聊天",
"Exporting your data": "导出你的数据",
"Stop": "停止",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "您确定要停止导出数据吗?如果你这样做了,你需要重新开始。",
"Your export was successful. Find it in your Downloads folder.": "导出成功了。你可以在下载文件夹中找到导出文件。",
"The export was cancelled successfully": "成功取消了导出",
"Export Successful": "成功导出",
"MB": "MB",
"Number of messages": "消息数",
"Size can only be a number between %(min)s MB and %(max)s MB": "大小只能是 %(min)sMB 和 %(max)sMB 之间的一个数字",
"Enter a number between %(min)s and %(max)s": "输入一个 %(min)s 和 %(max)s 之间的数字",
"In reply to <a>this message</a>": "回复<a>此消息</a>",
"Export chat": "导出聊天",
"File Attached": "已附加文件",
"Error fetching file": "获取文件出错",
"Topic: %(topic)s": "话题:%(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "这是 <roomName/> 导出的开始。导出人 <exporterDetails/>,导出日期 %(exportDate)s。",
"%(creatorName)s created this room.": "%(creatorName)s 创建了此聊天室。",
"Media omitted - file size limit exceeded": "省略了媒体文件 - 超出了文件大小限制",
"Media omitted": "省略了媒体文件",
"Current Timeline": "当前时间线",
"Specify a number of messages": "指定消息数",
"From the beginning": "从开头",
"Plain Text": "纯文本",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "您确定要在导出未完成时退出吗?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s 发送了一张贴纸。",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s 更改了聊天室头像。",
"%(date)s at %(time)s": "%(date)s 的 %(time)s"
}

View file

@ -3160,5 +3160,49 @@
"To join a space you'll need an invite.": "若要加入空間,您必須被邀請。",
"You can also make Spaces from <a>communities</a>.": "您也可以從<a>社群</a>建立空間。",
"Temporarily show communities instead of Spaces for this session. Support for this will be removed in the near future. This will reload Element.": "為此工作階段暫時顯示社群而非空間。對此功能的支援將在不久的將來移除。這將會重新載入 Element。",
"Display Communities instead of Spaces": "顯示社群而非空間"
"Display Communities instead of Spaces": "顯示社群而非空間",
"Would you like to leave the rooms in this space?": "您想要離開此空間中的聊天室嗎?",
"You are about to leave <spaceName/>.": "您將要離開 <spaceName/>。",
"Leave some rooms": "離開部份聊天室",
"Leave all rooms": "離開所有聊天室",
"Don't leave any rooms": "不要離開任何聊天室",
"%(reactors)s reacted with %(content)s": "%(reactors)s 使用了 %(content)s 反應",
"Joining space …": "正在加入空間……",
"Expand quotes │ ⇧+click": "展開引用 │ ⇧+點擊",
"Collapse quotes │ ⇧+click": "折疊引用 │ ⇧+點擊",
"Include Attachments": "包含附件",
"Size Limit": "大小限制",
"Format": "格式",
"Select from the options below to export chats from your timeline": "從下面的選項中選擇以從您的時間軸匯出聊天",
"Export Chat": "匯出聊天",
"Exporting your data": "正在匯出您的資料",
"Stop": "停止",
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "您確定您要停止匯出您的資料嗎?若您這麼做,您就必須重新開始。",
"Your export was successful. Find it in your Downloads folder.": "您匯出成功。請在您的下載資料夾中尋找它。",
"The export was cancelled successfully": "匯出已成功取消",
"Export Successful": "匯出成功",
"MB": "MB",
"Number of messages": "訊息數",
"Number of messages can only be a number between %(min)s and %(max)s": "訊息數只能是 %(min)s MB 至 %(max)s MB 間的數字",
"Size can only be a number between %(min)s MB and %(max)s MB": "大小只能是 %(min)s MB 至 %(max)s MB 間的數字",
"Enter a number between %(min)s and %(max)s": "輸入介於 %(min)s 至 %(max)s 間的數字",
"In reply to <a>this message</a>": "回覆<a>此訊息</a>",
"Export chat": "匯出聊天",
"File Attached": "已附加檔案",
"Error fetching file": "擷取檔案錯誤",
"Topic: %(topic)s": "主題:%(topic)s",
"This is the start of export of <roomName/>. Exported by <exporterDetails/> at %(exportDate)s.": "這是 <roomName/> 匯出的開始。由 <exporterDetails/> 於 %(exportDate)s 匯出。",
"%(creatorName)s created this room.": "%(creatorName)s 建立了此聊天室。",
"Media omitted - file size limit exceeded": "媒體省略 - 超過檔案大小限制",
"Media omitted": "媒體省略",
"Current Timeline": "目前時間軸",
"Specify a number of messages": "指定訊息數量",
"From the beginning": "從一開始",
"Plain Text": "純文字",
"JSON": "JSON",
"HTML": "HTML",
"Are you sure you want to exit during this export?": "您確定您要從此匯出流程中退出嗎?",
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s 傳送了貼圖。",
"%(senderDisplayName)s changed the room avatar.": "%(senderDisplayName)s 變更了聊天室大頭照。",
"%(date)s at %(time)s": "%(date)s 於 %(time)s"
}

View file

@ -22,6 +22,9 @@ import { PHASE_DONE as VERIF_PHASE_DONE } from "matrix-js-sdk/src/crypto/verific
import { MatrixClientPeg } from '../MatrixClientPeg';
import { accessSecretStorage, AccessCancelledError } from '../SecurityManager';
import Modal from '../Modal';
import InteractiveAuthDialog from '../components/views/dialogs/InteractiveAuthDialog';
import { _t } from '../languageHandler';
import { logger } from "matrix-js-sdk/src/logger";
@ -32,6 +35,7 @@ export enum Phase {
Done = 3, // final done stage, but still showing UX
ConfirmSkip = 4,
Finished = 5, // UX can be closed
ConfirmReset = 6,
}
export class SetupEncryptionStore extends EventEmitter {
@ -103,20 +107,23 @@ export class SetupEncryptionStore extends EventEmitter {
this.keyInfo = keys[this.keyId];
}
// do we have any other devices which are E2EE which we can verify against?
// do we have any other verified devices which are E2EE which we can verify against?
const dehydratedDevice = await cli.getDehydratedDevice();
this.hasDevicesToVerifyAgainst = cli.getStoredDevicesForUser(cli.getUserId()).some(
const ownUserId = cli.getUserId();
const crossSigningInfo = cli.getStoredCrossSigningForUser(ownUserId);
this.hasDevicesToVerifyAgainst = cli.getStoredDevicesForUser(ownUserId).some(
device =>
device.getIdentityKey() &&
(!dehydratedDevice || (device.deviceId != dehydratedDevice.device_id)),
(!dehydratedDevice || (device.deviceId != dehydratedDevice.device_id)) &&
crossSigningInfo.checkDeviceTrust(
crossSigningInfo,
device,
false,
true,
).isCrossSigningVerified(),
);
if (!this.hasDevicesToVerifyAgainst && !this.keyInfo) {
// skip before we can even render anything.
this.phase = Phase.Finished;
} else {
this.phase = Phase.Intro;
}
this.phase = Phase.Intro;
this.emit("update");
}
@ -208,6 +215,50 @@ export class SetupEncryptionStore extends EventEmitter {
this.emit("update");
}
public reset(): void {
this.phase = Phase.ConfirmReset;
this.emit("update");
}
public async resetConfirm(): Promise<void> {
try {
// If we've gotten here, the user presumably lost their
// secret storage key if they had one. Start by resetting
// secret storage and setting up a new recovery key, then
// create new cross-signing keys once that succeeds.
await accessSecretStorage(async () => {
const cli = MatrixClientPeg.get();
await cli.bootstrapCrossSigning({
authUploadDeviceSigningKeys: async (makeRequest) => {
const { finished } = Modal.createTrackedDialog(
'Cross-signing keys dialog', '', InteractiveAuthDialog,
{
title: _t("Setting up keys"),
matrixClient: cli,
makeRequest,
},
);
const [confirmed] = await finished;
if (!confirmed) {
throw new Error("Cross-signing key upload auth canceled");
}
},
setupNewCrossSigning: true,
});
this.phase = Phase.Finished;
}, true);
} catch (e) {
console.error("Error resetting cross-signing", e);
this.phase = Phase.Intro;
}
this.emit("update");
}
public returnAfterReset(): void {
this.phase = Phase.Intro;
this.emit("update");
}
public done(): void {
this.phase = Phase.Finished;
this.emit("update");
@ -226,4 +277,8 @@ export class SetupEncryptionStore extends EventEmitter {
request.on("change", this.onVerificationRequestChange);
this.emit("update");
}
public lostKeys(): boolean {
return !this.hasDevicesToVerifyAgainst && !this.keyInfo;
}
}

782
yarn.lock

File diff suppressed because it is too large Load diff