Migrate more strings to translation keys (#11599)
parent
0583fc8090
commit
d00ba74aaa
|
@ -220,7 +220,7 @@ export default class AddThreepid {
|
|||
body: _t(
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.",
|
||||
),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
@ -323,7 +323,7 @@ export default class AddThreepid {
|
|||
[SSOAuthEntry.PHASE_PREAUTH]: {
|
||||
title: _t("Use Single Sign On to continue"),
|
||||
body: _t("Confirm adding this phone number by using Single Sign On to prove your identity."),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -303,7 +303,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent<IProp
|
|||
[SSOAuthEntry.PHASE_PREAUTH]: {
|
||||
title: _t("Use Single Sign On to continue"),
|
||||
body: _t("To continue, use Single Sign On to prove your identity."),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -384,12 +384,12 @@ export default class ForgotPassword extends React.Component<Props, State> {
|
|||
|
||||
public renderSetPassword(): JSX.Element {
|
||||
const submitButtonChild =
|
||||
this.state.phase === Phase.ResettingPassword ? <Spinner w={16} h={16} /> : _t("Reset password");
|
||||
this.state.phase === Phase.ResettingPassword ? <Spinner w={16} h={16} /> : _t("auth|reset_password_action");
|
||||
|
||||
return (
|
||||
<>
|
||||
<LockIcon className="mx_AuthBody_lockIcon" />
|
||||
<h1>{_t("Reset your password")}</h1>
|
||||
<h1>{_t("auth|reset_password_title")}</h1>
|
||||
<form onSubmit={this.onSubmitForm}>
|
||||
<fieldset disabled={this.state.phase === Phase.ResettingPassword}>
|
||||
<div className="mx_AuthBody_fieldRow">
|
||||
|
|
|
@ -874,7 +874,7 @@ export class SSOAuthEntry extends React.Component<ISSOAuthEntryProps, ISSOAuthEn
|
|||
if (this.state.phase === SSOAuthEntry.PHASE_PREAUTH) {
|
||||
continueButton = (
|
||||
<AccessibleButton onClick={this.onStartAuthClick} kind={this.props.continueKind || "primary"}>
|
||||
{this.props.continueText || _t("Single Sign On")}
|
||||
{this.props.continueText || _t("auth|sso")}
|
||||
</AccessibleButton>
|
||||
);
|
||||
} else {
|
||||
|
|
|
@ -45,8 +45,8 @@ interface IBetaPillProps {
|
|||
|
||||
export const BetaPill: React.FC<IBetaPillProps> = ({
|
||||
onClick,
|
||||
tooltipTitle = _t("This is a beta feature"),
|
||||
tooltipCaption = _t("Click for more info"),
|
||||
tooltipTitle = _t("labs|beta_feature"),
|
||||
tooltipCaption = _t("labs|click_for_info"),
|
||||
}) => {
|
||||
if (onClick) {
|
||||
return (
|
||||
|
@ -94,18 +94,16 @@ const BetaCard: React.FC<IProps> = ({ title: titleOverride, featureId }) => {
|
|||
let refreshWarning: string | undefined;
|
||||
if (requiresRefresh) {
|
||||
const brand = SdkConfig.get().brand;
|
||||
refreshWarning = value
|
||||
? _t("Leaving the beta will reload %(brand)s.", { brand })
|
||||
: _t("Joining the beta will reload %(brand)s.", { brand });
|
||||
refreshWarning = value ? _t("labs|leave_beta_reload", { brand }) : _t("labs|join_beta_reload", { brand });
|
||||
}
|
||||
|
||||
let content: ReactNode;
|
||||
if (busy) {
|
||||
content = <InlineSpinner />;
|
||||
} else if (value) {
|
||||
content = _t("Leave the beta");
|
||||
content = _t("labs|leave_beta");
|
||||
} else {
|
||||
content = _t("Join the beta");
|
||||
content = _t("labs|join_beta");
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
@ -47,14 +47,14 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
|
||||
return (
|
||||
<BaseDialog
|
||||
title={_t("Download %(brand)s", { brand })}
|
||||
title={_t("onboarding|download_brand", { brand })}
|
||||
className="mx_AppDownloadDialog"
|
||||
fixedWidth
|
||||
onFinished={onFinished}
|
||||
>
|
||||
{desktopBuilds?.get("available") && (
|
||||
<div className="mx_AppDownloadDialog_desktop">
|
||||
<Heading size="3">{_t("Download %(brand)s Desktop", { brand })}</Heading>
|
||||
<Heading size="3">{_t("onboarding|download_brand_desktop", { brand })}</Heading>
|
||||
<AccessibleButton
|
||||
kind="primary"
|
||||
element="a"
|
||||
|
@ -62,7 +62,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
target="_blank"
|
||||
onClick={() => {}}
|
||||
>
|
||||
{_t("Download %(brand)s Desktop", { brand })}
|
||||
{_t("onboarding|download_brand_desktop", { brand })}
|
||||
</AccessibleButton>
|
||||
</div>
|
||||
)}
|
||||
|
@ -71,7 +71,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
<Heading size="3">{_t("common|ios")}</Heading>
|
||||
<QRCode data={urlAppStore} margin={0} width={172} />
|
||||
<div className="mx_AppDownloadDialog_info">
|
||||
{_t("%(qrCode)s or %(appLinks)s", {
|
||||
{_t("onboarding|qr_or_app_links", {
|
||||
appLinks: "",
|
||||
qrCode: "",
|
||||
})}
|
||||
|
@ -81,7 +81,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
element="a"
|
||||
href={urlAppStore}
|
||||
target="_blank"
|
||||
aria-label={_t("Download on the App Store")}
|
||||
aria-label={_t("onboarding|download_app_store")}
|
||||
onClick={() => {}}
|
||||
>
|
||||
<IOSBadge />
|
||||
|
@ -92,7 +92,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
<Heading size="3">{_t("common|android")}</Heading>
|
||||
<QRCode data={urlAndroid} margin={0} width={172} />
|
||||
<div className="mx_AppDownloadDialog_info">
|
||||
{_t("%(qrCode)s or %(appLinks)s", {
|
||||
{_t("onboarding|qr_or_app_links", {
|
||||
appLinks: "",
|
||||
qrCode: "",
|
||||
})}
|
||||
|
@ -102,7 +102,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
element="a"
|
||||
href={urlGooglePlay}
|
||||
target="_blank"
|
||||
aria-label={_t("Get it on Google Play")}
|
||||
aria-label={_t("onboarding|download_google_play")}
|
||||
onClick={() => {}}
|
||||
>
|
||||
<GooglePlayBadge />
|
||||
|
@ -111,7 +111,7 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
element="a"
|
||||
href={urlFDroid}
|
||||
target="_blank"
|
||||
aria-label={_t("Get it on F-Droid")}
|
||||
aria-label={_t("onboarding|download_f_droid")}
|
||||
onClick={() => {}}
|
||||
>
|
||||
<FDroidBadge />
|
||||
|
@ -120,8 +120,8 @@ export const AppDownloadDialog: FC<Props> = ({ onFinished }) => {
|
|||
</div>
|
||||
</div>
|
||||
<div className="mx_AppDownloadDialog_legal">
|
||||
<p>{_t("App Store® and the Apple logo® are trademarks of Apple Inc.")}</p>
|
||||
<p>{_t("Google Play and the Google Play logo are trademarks of Google LLC.")}</p>
|
||||
<p>{_t("onboarding|apple_trademarks")}</p>
|
||||
<p>{_t("onboarding|google_trademarks")}</p>
|
||||
</div>
|
||||
</BaseDialog>
|
||||
);
|
||||
|
|
|
@ -74,7 +74,7 @@ export default class DeactivateAccountDialog extends React.Component<IProps, ISt
|
|||
const dialogAesthetics = {
|
||||
[SSOAuthEntry.PHASE_PREAUTH]: {
|
||||
body: _t("Confirm your account deactivation by using Single Sign On to prove your identity."),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "danger",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -106,7 +106,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
const [isExporting, setExporting] = useState(false);
|
||||
const sizeLimitRef = useRef<Field>(null);
|
||||
const messageCountRef = useRef<Field>(null);
|
||||
const [exportProgressText, setExportProgressText] = useState(_t("Processing…"));
|
||||
const [exportProgressText, setExportProgressText] = useState(_t("export_chat|processing"));
|
||||
const [displayCancel, setCancelWarning] = useState(false);
|
||||
const [exportCancelled, setExportCancelled] = useState(false);
|
||||
const [exportSuccessful, setExportSuccessful] = useState(false);
|
||||
|
@ -173,7 +173,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
invalid: () => {
|
||||
const min = 1;
|
||||
const max = 2000;
|
||||
return _t("Enter a number between %(min)s and %(max)s", {
|
||||
return _t("export_chat|enter_number_between_min_max", {
|
||||
min,
|
||||
max,
|
||||
});
|
||||
|
@ -188,7 +188,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
invalid: () => {
|
||||
const min = 1;
|
||||
const max = 2000;
|
||||
return _t("Size can only be a number between %(min)s MB and %(max)s MB", { min, max });
|
||||
return _t("export_chat|size_limit_min_max", { min, max });
|
||||
},
|
||||
},
|
||||
],
|
||||
|
@ -209,7 +209,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
invalid: () => {
|
||||
const min = 1;
|
||||
const max = 10 ** 8;
|
||||
return _t("Enter a number between %(min)s and %(max)s", {
|
||||
return _t("export_chat|enter_number_between_min_max", {
|
||||
min,
|
||||
max,
|
||||
});
|
||||
|
@ -224,7 +224,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
invalid: () => {
|
||||
const min = 1;
|
||||
const max = 10 ** 8;
|
||||
return _t("Number of messages can only be a number between %(min)s and %(max)s", { min, max });
|
||||
return _t("export_chat|num_messages_min_max", { min, max });
|
||||
},
|
||||
},
|
||||
],
|
||||
|
@ -270,7 +270,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
value={numberOfMessages.toString()}
|
||||
ref={messageCountRef}
|
||||
onValidate={onValidateNumberOfMessages}
|
||||
label={_t("Number of messages")}
|
||||
label={_t("export_chat|num_messages")}
|
||||
onChange={(e) => {
|
||||
setNumberOfMessages(parseInt(e.target.value));
|
||||
}}
|
||||
|
@ -284,8 +284,8 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
// Display successful cancellation message
|
||||
return (
|
||||
<InfoDialog
|
||||
title={_t("Export Cancelled")}
|
||||
description={_t("The export was cancelled successfully")}
|
||||
title={_t("export_chat|cancelled")}
|
||||
description={_t("export_chat|cancelled_detail")}
|
||||
hasCloseButton={true}
|
||||
onFinished={onFinished}
|
||||
/>
|
||||
|
@ -294,8 +294,8 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
// Display successful export message
|
||||
return (
|
||||
<InfoDialog
|
||||
title={_t("Export Successful")}
|
||||
description={_t("Your export was successful. Find it in your Downloads folder.")}
|
||||
title={_t("export_chat|successful")}
|
||||
description={_t("export_chat|successful_detail")}
|
||||
hasCloseButton={true}
|
||||
onFinished={onFinished}
|
||||
/>
|
||||
|
@ -310,7 +310,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
onFinished={onFinished}
|
||||
fixedWidth={true}
|
||||
>
|
||||
<p>{_t("Are you sure you want to stop exporting your data? If you do, you'll need to start over.")}</p>
|
||||
<p>{_t("export_chat|confirm_stop")}</p>
|
||||
<DialogButtons
|
||||
primaryButton={_t("action|stop")}
|
||||
primaryButtonClass="danger"
|
||||
|
@ -325,19 +325,19 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
// Display export settings
|
||||
return (
|
||||
<BaseDialog
|
||||
title={isExporting ? _t("Exporting your data") : _t("Export Chat")}
|
||||
title={isExporting ? _t("export_chat|exporting_your_data") : _t("export_chat|title")}
|
||||
className={`mx_ExportDialog ${isExporting && "mx_ExportDialog_Exporting"}`}
|
||||
contentId="mx_Dialog_content"
|
||||
hasCancel={true}
|
||||
onFinished={onFinished}
|
||||
fixedWidth={true}
|
||||
>
|
||||
{!isExporting ? <p>{_t("Select from the options below to export chats from your timeline")}</p> : null}
|
||||
{!isExporting ? <p>{_t("export_chat|select_option")}</p> : null}
|
||||
|
||||
<div className="mx_ExportDialog_options">
|
||||
{!!setExportFormat && (
|
||||
<>
|
||||
<span className="mx_ExportDialog_subheading">{_t("Format")}</span>
|
||||
<span className="mx_ExportDialog_subheading">{_t("export_chat|format")}</span>
|
||||
|
||||
<StyledRadioGroup
|
||||
name="exportFormat"
|
||||
|
@ -350,7 +350,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
|
||||
{!!setExportType && (
|
||||
<>
|
||||
<span className="mx_ExportDialog_subheading">{_t("Messages")}</span>
|
||||
<span className="mx_ExportDialog_subheading">{_t("export_chat|messages")}</span>
|
||||
|
||||
<Field
|
||||
id="export-type"
|
||||
|
@ -368,7 +368,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
|
||||
{setSizeLimit && (
|
||||
<>
|
||||
<span className="mx_ExportDialog_subheading">{_t("Size Limit")}</span>
|
||||
<span className="mx_ExportDialog_subheading">{_t("export_chat|size_limit")}</span>
|
||||
|
||||
<Field
|
||||
id="size-limit"
|
||||
|
@ -392,7 +392,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
|||
checked={includeAttachments}
|
||||
onChange={(e) => setAttachments((e.target as HTMLInputElement).checked)}
|
||||
>
|
||||
{_t("Include Attachments")}
|
||||
{_t("export_chat|include_attachments")}
|
||||
</StyledCheckbox>
|
||||
</>
|
||||
)}
|
||||
|
|
|
@ -99,7 +99,7 @@ export default class InteractiveAuthDialog<T> extends React.Component<Interactiv
|
|||
[SSOAuthEntry.PHASE_PREAUTH]: {
|
||||
title: _t("Use Single Sign On to continue"),
|
||||
body: _t("To continue, use Single Sign On to prove your identity."),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -216,7 +216,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
((this.state.nature == Nature.Other || this.state.nature == NonStandardValue.Admin) && !reason)
|
||||
) {
|
||||
this.setState({
|
||||
err: _t("Please fill why you're reporting."),
|
||||
err: _t("report_content|missing_reason"),
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
@ -225,7 +225,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
// We need a `reason`.
|
||||
if (!reason) {
|
||||
this.setState({
|
||||
err: _t("Please fill why you're reporting."),
|
||||
err: _t("report_content|missing_reason"),
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
@ -295,8 +295,8 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
const ignoreUserCheckbox = (
|
||||
<LabelledCheckbox
|
||||
value={this.state.ignoreUserToo}
|
||||
label={_t("Ignore user")}
|
||||
byline={_t("Check if you want to hide all current and future messages from this user.")}
|
||||
label={_t("report_content|ignore_user")}
|
||||
byline={_t("report_content|hide_messages_from_user")}
|
||||
onChange={this.onIgnoreUserTooChanged}
|
||||
disabled={this.state.busy}
|
||||
/>
|
||||
|
@ -317,7 +317,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
let subtitle: string;
|
||||
switch (this.state.nature) {
|
||||
case Nature.Disagreement:
|
||||
subtitle = _t("What this user is writing is wrong.\nThis will be reported to the room moderators.");
|
||||
subtitle = _t("report_content|nature_disagreement");
|
||||
break;
|
||||
case Nature.Toxic:
|
||||
subtitle = _t(
|
||||
|
@ -353,7 +353,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
);
|
||||
break;
|
||||
default:
|
||||
subtitle = _t("Please pick a nature and describe what makes this message abusive.");
|
||||
subtitle = _t("report_content|nature");
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -371,7 +371,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
checked={this.state.nature == Nature.Disagreement}
|
||||
onChange={this.onNatureChosen}
|
||||
>
|
||||
{_t("Disagree")}
|
||||
{_t("report_content|disagree")}
|
||||
</StyledRadioButton>
|
||||
<StyledRadioButton
|
||||
name="nature"
|
||||
|
@ -379,7 +379,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
checked={this.state.nature == Nature.Toxic}
|
||||
onChange={this.onNatureChosen}
|
||||
>
|
||||
{_t("Toxic Behaviour")}
|
||||
{_t("report_content|toxic_behaviour")}
|
||||
</StyledRadioButton>
|
||||
<StyledRadioButton
|
||||
name="nature"
|
||||
|
@ -387,7 +387,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
checked={this.state.nature == Nature.Illegal}
|
||||
onChange={this.onNatureChosen}
|
||||
>
|
||||
{_t("Illegal Content")}
|
||||
{_t("report_content|illegal_content")}
|
||||
</StyledRadioButton>
|
||||
<StyledRadioButton
|
||||
name="nature"
|
||||
|
@ -395,7 +395,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
checked={this.state.nature == Nature.Spam}
|
||||
onChange={this.onNatureChosen}
|
||||
>
|
||||
{_t("Spam or propaganda")}
|
||||
{_t("report_content|spam_or_propaganda")}
|
||||
</StyledRadioButton>
|
||||
<StyledRadioButton
|
||||
name="nature"
|
||||
|
@ -403,7 +403,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
checked={this.state.nature == NonStandardValue.Admin}
|
||||
onChange={this.onNatureChosen}
|
||||
>
|
||||
{_t("Report the entire room")}
|
||||
{_t("report_content|report_entire_room")}
|
||||
</StyledRadioButton>
|
||||
<StyledRadioButton
|
||||
name="nature"
|
||||
|
@ -443,7 +443,7 @@ export default class ReportEventDialog extends React.Component<IProps, IState> {
|
|||
<BaseDialog
|
||||
className="mx_ReportEventDialog"
|
||||
onFinished={this.props.onFinished}
|
||||
title={_t("Report Content to Your Homeserver Administrator")}
|
||||
title={_t("report_content|report_content_to_homeserver")}
|
||||
contentId="mx_ReportEventDialog"
|
||||
>
|
||||
<div className="mx_ReportEventDialog" id="mx_ReportEventDialog">
|
||||
|
|
|
@ -114,7 +114,7 @@ export default class CreateCrossSigningDialog extends React.PureComponent<IProps
|
|||
[SSOAuthEntry.PHASE_PREAUTH]: {
|
||||
title: _t("Use Single Sign On to continue"),
|
||||
body: _t("To continue, use Single Sign On to prove your identity."),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -106,7 +106,7 @@ export function RoomResultContextMenus({ room }: Props): JSX.Element {
|
|||
const target = ev.target as HTMLElement;
|
||||
setNotificationMenuPosition(target.getBoundingClientRect());
|
||||
}}
|
||||
title={_t("Notification options")}
|
||||
title={_t("room_list|notification_options")}
|
||||
isExpanded={notificationMenuPosition !== null}
|
||||
/>
|
||||
)}
|
||||
|
|
|
@ -263,15 +263,15 @@ const findVisibleRoomMembers = (visibleRooms: Room[], cli: MatrixClient, filterD
|
|||
|
||||
const roomAriaUnreadLabel = (room: Room, notification: RoomNotificationState): string | undefined => {
|
||||
if (notification.hasMentions) {
|
||||
return _t("%(count)s unread messages including mentions.", {
|
||||
return _t("a11y|n_unread_messages_mentions", {
|
||||
count: notification.count,
|
||||
});
|
||||
} else if (notification.hasUnreadCount) {
|
||||
return _t("%(count)s unread messages.", {
|
||||
return _t("a11y|n_unread_messages", {
|
||||
count: notification.count,
|
||||
});
|
||||
} else if (notification.isUnread) {
|
||||
return _t("Unread messages.");
|
||||
return _t("a11y|unread_messages");
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ const QRCode: React.FC<IProps> = ({ data, className, ...options }) => {
|
|||
|
||||
return (
|
||||
<div className={classNames("mx_QRCode", className)}>
|
||||
{dataUri ? <img src={dataUri} className="mx_VerificationQRCode" alt={_t("QR Code")} /> : <Spinner />}
|
||||
{dataUri ? <img src={dataUri} className="mx_VerificationQRCode" alt={_t("common|qr_code")} /> : <Spinner />}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -92,11 +92,11 @@ const SSOButton: React.FC<ISSOButtonProps> = ({
|
|||
}) => {
|
||||
let label: string;
|
||||
if (idp) {
|
||||
label = _t("Continue with %(provider)s", { provider: idp.name });
|
||||
label = _t("auth|continue_with_idp", { provider: idp.name });
|
||||
} else if (DELEGATED_OIDC_COMPATIBILITY.findIn<boolean>(flow)) {
|
||||
label = _t("action|continue");
|
||||
} else {
|
||||
label = _t("Sign in with single sign-on");
|
||||
label = _t("auth|sign_in_with_sso");
|
||||
}
|
||||
|
||||
const onClick = (): void => {
|
||||
|
|
|
@ -457,7 +457,7 @@ export default class AliasSettings extends React.Component<IProps, IState> {
|
|||
>
|
||||
<details onToggle={this.onLocalAliasesToggled} open={this.state.detailsOpen}>
|
||||
<summary className="mx_AliasSettings_localAddresses">
|
||||
{this.state.detailsOpen ? _t("Show less") : _t("Show more")}
|
||||
{this.state.detailsOpen ? _t("room_list|show_less") : _t("Show more")}
|
||||
</summary>
|
||||
{localAliasesList}
|
||||
</details>
|
||||
|
|
|
@ -157,11 +157,7 @@ const DmAuxButton: React.FC<IAuxButtonProps> = ({ tabIndex, dispatcher = default
|
|||
showSpaceInvite(activeSpace);
|
||||
}}
|
||||
disabled={!canInvite}
|
||||
tooltip={
|
||||
canInvite
|
||||
? undefined
|
||||
: _t("You do not have permissions to invite people to this space")
|
||||
}
|
||||
tooltip={canInvite ? undefined : _t("spaces|error_no_permission_invite")}
|
||||
/>
|
||||
)}
|
||||
</IconizedContextMenuOptionList>
|
||||
|
@ -253,11 +249,7 @@ const UntaggedAuxButton: React.FC<IAuxButtonProps> = ({ tabIndex }) => {
|
|||
PosthogTrackers.trackInteraction("WebRoomListRoomsSublistPlusMenuCreateRoomItem", e);
|
||||
}}
|
||||
disabled={!canAddRooms}
|
||||
tooltip={
|
||||
canAddRooms
|
||||
? undefined
|
||||
: _t("You do not have permissions to create new rooms in this space")
|
||||
}
|
||||
tooltip={canAddRooms ? undefined : _t("spaces|error_no_permission_create_room")}
|
||||
/>
|
||||
{videoRoomsEnabled && (
|
||||
<IconizedContextMenuOption
|
||||
|
@ -273,11 +265,7 @@ const UntaggedAuxButton: React.FC<IAuxButtonProps> = ({ tabIndex }) => {
|
|||
);
|
||||
}}
|
||||
disabled={!canAddRooms}
|
||||
tooltip={
|
||||
canAddRooms
|
||||
? undefined
|
||||
: _t("You do not have permissions to create new rooms in this space")
|
||||
}
|
||||
tooltip={canAddRooms ? undefined : _t("spaces|error_no_permission_create_room")}
|
||||
>
|
||||
<BetaPill />
|
||||
</IconizedContextMenuOption>
|
||||
|
@ -292,9 +280,7 @@ const UntaggedAuxButton: React.FC<IAuxButtonProps> = ({ tabIndex }) => {
|
|||
showAddExistingRooms(activeSpace);
|
||||
}}
|
||||
disabled={!canAddRooms}
|
||||
tooltip={
|
||||
canAddRooms ? undefined : _t("You do not have permissions to add rooms to this space")
|
||||
}
|
||||
tooltip={canAddRooms ? undefined : _t("spaces|error_no_permission_add_room")}
|
||||
/>
|
||||
</>
|
||||
) : null}
|
||||
|
|
|
@ -267,9 +267,7 @@ const RoomListHeader: React.FC<IProps> = ({ onVisibilityChange }) => {
|
|||
closePlusMenu();
|
||||
}}
|
||||
disabled={!canAddSubRooms}
|
||||
tooltip={
|
||||
!canAddSubRooms ? _t("You do not have permissions to add rooms to this space") : undefined
|
||||
}
|
||||
tooltip={!canAddSubRooms ? _t("spaces|error_no_permission_add_room") : undefined}
|
||||
/>
|
||||
{canCreateSpaces && (
|
||||
<IconizedContextMenuOption
|
||||
|
@ -282,11 +280,7 @@ const RoomListHeader: React.FC<IProps> = ({ onVisibilityChange }) => {
|
|||
closePlusMenu();
|
||||
}}
|
||||
disabled={!canAddSubSpaces}
|
||||
tooltip={
|
||||
!canAddSubSpaces
|
||||
? _t("You do not have permissions to add spaces to this space")
|
||||
: undefined
|
||||
}
|
||||
tooltip={!canAddSubSpaces ? _t("spaces|error_no_permission_add_space") : undefined}
|
||||
>
|
||||
<BetaPill />
|
||||
</IconizedContextMenuOption>
|
||||
|
|
|
@ -584,14 +584,14 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
onChange={this.onUnreadFirstChanged}
|
||||
checked={isUnreadFirst}
|
||||
>
|
||||
{_t("Show rooms with unread messages first")}
|
||||
{_t("room_list|sort_unread_first")}
|
||||
</StyledMenuItemCheckbox>
|
||||
<StyledMenuItemCheckbox
|
||||
onClose={this.onCloseMenu}
|
||||
onChange={this.onMessagePreviewChanged}
|
||||
checked={this.layout.showPreviews}
|
||||
>
|
||||
{_t("Show previews of messages")}
|
||||
{_t("room_list|show_previews")}
|
||||
</StyledMenuItemCheckbox>
|
||||
</fieldset>
|
||||
</React.Fragment>
|
||||
|
@ -607,14 +607,14 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
>
|
||||
<div className="mx_RoomSublist_contextMenu">
|
||||
<fieldset>
|
||||
<legend className="mx_RoomSublist_contextMenu_title">{_t("Sort by")}</legend>
|
||||
<legend className="mx_RoomSublist_contextMenu_title">{_t("room_list|sort_by")}</legend>
|
||||
<StyledMenuItemRadio
|
||||
onClose={this.onCloseMenu}
|
||||
onChange={() => this.onTagSortChanged(SortAlgorithm.Recent)}
|
||||
checked={!isAlphabetical}
|
||||
name={`mx_${this.props.tagId}_sortBy`}
|
||||
>
|
||||
{_t("Activity")}
|
||||
{_t("room_list|sort_by_activity")}
|
||||
</StyledMenuItemRadio>
|
||||
<StyledMenuItemRadio
|
||||
onClose={this.onCloseMenu}
|
||||
|
@ -622,7 +622,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
checked={isAlphabetical}
|
||||
name={`mx_${this.props.tagId}_sortBy`}
|
||||
>
|
||||
{_t("A-Z")}
|
||||
{_t("room_list|sort_by_alphabet")}
|
||||
</StyledMenuItemRadio>
|
||||
</fieldset>
|
||||
{otherSections}
|
||||
|
@ -636,7 +636,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
<ContextMenuTooltipButton
|
||||
className="mx_RoomSublist_menuButton"
|
||||
onClick={this.onOpenMenuClick}
|
||||
title={_t("List options")}
|
||||
title={_t("room_list|sublist_options")}
|
||||
isExpanded={!!this.state.contextMenuPosition}
|
||||
/>
|
||||
{contextMenu}
|
||||
|
@ -788,7 +788,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
if (this.slidingSyncMode) {
|
||||
numMissing = RoomListStore.instance.getCount(this.props.tagId) - amountFullyShown;
|
||||
}
|
||||
const label = _t("Show %(count)s more", { count: numMissing });
|
||||
const label = _t("room_list|show_n_more", { count: numMissing });
|
||||
let showMoreText: ReactNode = <span className="mx_RoomSublist_showNButtonText">{label}</span>;
|
||||
if (this.props.isMinimized) showMoreText = null;
|
||||
showNButton = (
|
||||
|
@ -806,7 +806,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
);
|
||||
} else if (this.numTiles > this.layout.defaultVisibleTiles) {
|
||||
// we have all tiles visible - add a button to show less
|
||||
const label = _t("Show less");
|
||||
const label = _t("room_list|show_less");
|
||||
let showLessText: ReactNode = <span className="mx_RoomSublist_showNButtonText">{label}</span>;
|
||||
if (this.props.isMinimized) showLessText = null;
|
||||
showNButton = (
|
||||
|
|
|
@ -313,7 +313,7 @@ export class RoomTile extends React.PureComponent<ClassProps, State> {
|
|||
<ContextMenuTooltipButton
|
||||
className={classes}
|
||||
onClick={this.onNotificationsMenuOpenClick}
|
||||
title={_t("Notification options")}
|
||||
title={_t("room_list|notification_options")}
|
||||
isExpanded={!!this.state.notificationsMenuPosition}
|
||||
tabIndex={isActive ? 0 : -1}
|
||||
/>
|
||||
|
@ -433,17 +433,17 @@ export class RoomTile extends React.PureComponent<ClassProps, State> {
|
|||
} else if (this.notificationState.hasMentions) {
|
||||
ariaLabel +=
|
||||
" " +
|
||||
_t("%(count)s unread messages including mentions.", {
|
||||
_t("a11y|n_unread_messages_mentions", {
|
||||
count: this.notificationState.count,
|
||||
});
|
||||
} else if (this.notificationState.hasUnreadCount) {
|
||||
ariaLabel +=
|
||||
" " +
|
||||
_t("%(count)s unread messages.", {
|
||||
_t("a11y|n_unread_messages", {
|
||||
count: this.notificationState.count,
|
||||
});
|
||||
} else if (this.notificationState.isUnread) {
|
||||
ariaLabel += " " + _t("Unread messages.");
|
||||
ariaLabel += " " + _t("a11y|unread_messages");
|
||||
}
|
||||
|
||||
let ariaDescribedBy: string;
|
||||
|
|
|
@ -56,7 +56,7 @@ export const deleteDevicesWithInteractiveAuth = async (
|
|||
body: _t("Confirm logging out these devices by using Single Sign On to prove your identity.", {
|
||||
count: numDevices,
|
||||
}),
|
||||
continueText: _t("Single Sign On"),
|
||||
continueText: _t("auth|sso"),
|
||||
continueKind: "primary",
|
||||
},
|
||||
[SSOAuthEntry.PHASE_POSTAUTH]: {
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
"powered by Matrix": "مشغل بواسطة Matrix",
|
||||
"Use Single Sign On to continue": "استعمل الولوج الموحّد للمواصلة",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "أكّد إضافتك لعنوان البريد هذا باستعمال الولوج الموحّد لإثبات هويّتك.",
|
||||
"Single Sign On": "الولوج الموحّد",
|
||||
"Confirm adding email": "أكّد إضافة البريد الإلكتروني",
|
||||
"Click the button below to confirm adding this email address.": "انقر الزر بالأسفل لتأكيد إضافة عنوان البريد الإلكتروني هذا.",
|
||||
"Add Email Address": "أضِف بريدًا إلكترونيًا",
|
||||
|
@ -258,33 +257,13 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "هذه الغرفة تشغل إصدار الغرفة <roomVersion /> ، والذي عده الخادم الوسيط هذا بأنه<i> غير مستقر </i>.",
|
||||
"This room has already been upgraded.": "سبق وأن تمت ترقية هذه الغرفة.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "ستؤدي ترقية هذه الغرفة إلى إغلاق النسخة الحالية للغرفة وإنشاء غرفة تمت ترقيتها بنفس الاسم.",
|
||||
"Unread messages.": "رسائل غير المقروءة.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "رسالة واحدة غير مقروءة.",
|
||||
"other": "%(count)s من الرسائل غير مقروءة."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "إشارة واحدة غير مقروءة.",
|
||||
"other": "%(count)s من الرسائل والإشارات غير المقروءة."
|
||||
},
|
||||
"Room options": "خيارات الغرفة",
|
||||
"Low Priority": "أولوية منخفضة",
|
||||
"Favourite": "تفضيل",
|
||||
"Favourited": "فُضلت",
|
||||
"Forget Room": "انسَ الغرفة",
|
||||
"Notification options": "خيارات الإشعارات",
|
||||
"Show %(count)s more": {
|
||||
"one": "أظهر %(count)s زيادة",
|
||||
"other": "أظهر %(count)s زيادة"
|
||||
},
|
||||
"Jump to first invite.": "الانتقال لأول دعوة.",
|
||||
"Jump to first unread room.": "الانتقال لأول غرفة لم تقرأ.",
|
||||
"List options": "خيارات القائمة",
|
||||
"A-Z": "ألفبائي",
|
||||
"Activity": "النشاط",
|
||||
"Sort by": "ترتيب حسب",
|
||||
"Show previews of messages": "إظهار معاينات للرسائل",
|
||||
"Show rooms with unread messages first": "اعرض الغرف ذات الرسائل غير المقروءة أولاً",
|
||||
"%(roomName)s is not accessible at this time.": "لا يمكن الوصول إلى %(roomName)s في الوقت الحالي.",
|
||||
"%(roomName)s does not exist.": "الغرفة %(roomName)s ليست موجودة.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "لا يمكن معاينة %(roomName)s. هل تريد الانضمام إليها؟",
|
||||
|
@ -570,7 +549,6 @@
|
|||
"New passwords don't match": "كلمات المرور الجديدة لا تتطابق",
|
||||
"No display name": "لا اسم ظاهر",
|
||||
"Show more": "أظهر أكثر",
|
||||
"Show less": "أظهر أقل",
|
||||
"This bridge is managed by <user />.": "هذا الجسر يديره <user />.",
|
||||
"Accept <policyLink /> to continue:": "قبول <policyLink /> للمتابعة:",
|
||||
"Your server isn't responding to some <a>requests</a>.": "خادمك لا يتجاوب مع بعض <a>الطلبات</a>.",
|
||||
|
@ -1385,7 +1363,6 @@
|
|||
"unsupported": "المكالمات غير مدعومة",
|
||||
"unsupported_browser": "لا يمكنك إجراء المكالمات في هذا المتصفّح."
|
||||
},
|
||||
"Messages": "الرسائل",
|
||||
"Other": "أخرى",
|
||||
"Advanced": "متقدم",
|
||||
"room_settings": {
|
||||
|
@ -1433,5 +1410,36 @@
|
|||
"category_flags": "الأعلام",
|
||||
"categories": "التصنيفات",
|
||||
"quick_reactions": "ردود الفعل السريعة"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "الولوج الموحّد"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "الرسائل"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "اعرض الغرف ذات الرسائل غير المقروءة أولاً",
|
||||
"show_previews": "إظهار معاينات للرسائل",
|
||||
"sort_by": "ترتيب حسب",
|
||||
"sort_by_activity": "النشاط",
|
||||
"sort_by_alphabet": "ألفبائي",
|
||||
"sublist_options": "خيارات القائمة",
|
||||
"show_n_more": {
|
||||
"one": "أظهر %(count)s زيادة",
|
||||
"other": "أظهر %(count)s زيادة"
|
||||
},
|
||||
"show_less": "أظهر أقل",
|
||||
"notification_options": "خيارات الإشعارات"
|
||||
},
|
||||
"a11y": {
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "إشارة واحدة غير مقروءة.",
|
||||
"other": "%(count)s من الرسائل والإشارات غير المقروءة."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "رسالة واحدة غير مقروءة.",
|
||||
"other": "%(count)s من الرسائل غير مقروءة."
|
||||
},
|
||||
"unread_messages": "رسائل غير المقروءة."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -291,7 +291,6 @@
|
|||
"video_call": "Video çağırış",
|
||||
"call_failed": "Uğursuz zəng"
|
||||
},
|
||||
"Messages": "Mesajlar",
|
||||
"devtools": {
|
||||
"category_other": "Digər"
|
||||
},
|
||||
|
@ -299,5 +298,8 @@
|
|||
"Advanced": "Təfərrüatlar",
|
||||
"labs": {
|
||||
"group_profile": "Profil"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Mesajlar"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -405,7 +405,6 @@
|
|||
"Invalid identity server discovery response": "Невалиден отговор по време на откриването на конфигурацията за сървъра за самоличност",
|
||||
"General failure": "Обща грешка",
|
||||
"Failed to perform homeserver discovery": "Неуспешно откриване на конфигурацията за сървъра",
|
||||
"Sign in with single sign-on": "Влезте посредством single-sign-on",
|
||||
"That matches!": "Това съвпада!",
|
||||
"That doesn't match.": "Това не съвпада.",
|
||||
"Go back to set it again.": "Върнете се за да настройте нова.",
|
||||
|
@ -749,9 +748,6 @@
|
|||
},
|
||||
"Remove recent messages": "Премахни скорошни съобщения",
|
||||
"Italics": "Наклонено",
|
||||
"Please fill why you're reporting.": "Въведете защо докладвате.",
|
||||
"Report Content to Your Homeserver Administrator": "Докладвай съдържание до администратора на сървъра",
|
||||
"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.": "Докладването на съобщението ще изпрати уникалният номер на събитието (event ID) до администратора на сървъра. Ако съобщенията в стаята са шифровани, администратора няма да може да прочете текста им или да види снимките или файловете.",
|
||||
"Explore rooms": "Открий стаи",
|
||||
"Verify the link in your inbox": "Потвърдете линка във вашата пощенска кутия",
|
||||
"Read Marker lifetime (ms)": "Живот на маркера за прочитане (мсек)",
|
||||
|
@ -774,15 +770,6 @@
|
|||
"Your email address hasn't been verified yet": "Имейл адресът ви все още не е потвърден",
|
||||
"Click the link in the email you received to verify and then click continue again.": "Кликнете на връзката получена по имейл за да потвърдите, а след това натиснете продължи отново.",
|
||||
"Room %(name)s": "Стая %(name)s",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s непрочетени съобщения, включително споменавания.",
|
||||
"one": "1 непрочетено споменаване."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s непрочетени съобщения.",
|
||||
"one": "1 непрочетено съобщение."
|
||||
},
|
||||
"Unread messages.": "Непрочетени съобщения.",
|
||||
"Failed to deactivate user": "Неуспешно деактивиране на потребител",
|
||||
"This client does not support end-to-end encryption.": "Този клиент не поддържа шифроване от край до край.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Съобщенията в тази стая не са шифровани от край до край.",
|
||||
|
@ -893,7 +880,6 @@
|
|||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Следните потребители не съществуват или са невалидни и не могат да бъдат поканени: %(csvNames)s",
|
||||
"Use Single Sign On to continue": "Използвайте Single Sign On за да продължите",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Потвърдете добавянето на този имейл адрес като потвърдите идентичността си чрез Single Sign On.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding email": "Потвърдете добавянето на имейл",
|
||||
"Click the button below to confirm adding this email address.": "Кликнете бутона по-долу за да потвърдите добавянето на имейл адреса.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Потвърдете добавянето на този телефонен номер като докажете идентичността си чрез използване на Single Sign On.",
|
||||
|
@ -928,7 +914,6 @@
|
|||
"Later": "По-късно",
|
||||
"Other users may not trust it": "Други потребители може да не се доверят",
|
||||
"This bridge was provisioned by <user />.": "Мостът е настроен от <user />.",
|
||||
"Show less": "Покажи по-малко",
|
||||
"Your homeserver does not support cross-signing.": "Сървърът ви не поддържа кръстосано-подписване.",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Профилът ви има самоличност за кръстосано подписване в секретно складиране, но все още не е доверено от тази сесия.",
|
||||
"well formed": "коректен",
|
||||
|
@ -1051,7 +1036,6 @@
|
|||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Собствения размер на шрифта може да бъде единствено между %(min)s pt и %(max)s pt",
|
||||
"Use between %(min)s pt and %(max)s pt": "Изберете между %(min)s pt и %(max)s pt",
|
||||
"You've successfully verified your device!": "Успешно потвърдихте устройството си!",
|
||||
"QR Code": "QR код",
|
||||
"To continue, use Single Sign On to prove your identity.": "За да продължите, използвайте Single Sign On за да потвърдите самоличността си.",
|
||||
"Confirm to continue": "Потвърдете за да продължите",
|
||||
"Click the button below to confirm your identity.": "Кликнете бутона по-долу за да потвърдите самоличността си.",
|
||||
|
@ -1147,18 +1131,10 @@
|
|||
"Toggle right panel": "Превключване на десния панел",
|
||||
"Cancel autocomplete": "Отказване на подсказките",
|
||||
"No recently visited rooms": "Няма наскоро-посетени стаи",
|
||||
"Sort by": "Подреди по",
|
||||
"Activity": "Активност",
|
||||
"A-Z": "Азбучен ред",
|
||||
"Show %(count)s more": {
|
||||
"other": "Покажи още %(count)s",
|
||||
"one": "Покажи още %(count)s"
|
||||
},
|
||||
"Use custom size": "Използвай собствен размер",
|
||||
"Hey you. You're the best!": "Хей, ти. Върхът си!",
|
||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "Автентичността на това шифровано съобщение не може да бъде гарантирана на това устройство.",
|
||||
"Message preview": "Преглед на съобщението",
|
||||
"List options": "Опции на списъка",
|
||||
"Room options": "Настройки на стаята",
|
||||
"Safeguard against losing access to encrypted messages & data": "Защитете се срещу загуба на достъп до криптирани съобшения и информация",
|
||||
"Set up Secure Backup": "Конфигуриране на Защитен Архив",
|
||||
|
@ -1234,9 +1210,6 @@
|
|||
},
|
||||
"Favourited": "В любими",
|
||||
"Forget Room": "Забрави стаята",
|
||||
"Notification options": "Настройки за уведомление",
|
||||
"Show previews of messages": "Показвай преглед на съобщенията",
|
||||
"Show rooms with unread messages first": "Показвай стаи с непрочетени съобщения първи",
|
||||
"Explore public rooms": "Прегледай публични стаи",
|
||||
"Show Widgets": "Покажи приспособленията",
|
||||
"Hide Widgets": "Скрий приспособленията",
|
||||
|
@ -1663,7 +1636,8 @@
|
|||
"secure_backup": "Защитено резервно копие",
|
||||
"cross_signing": "Кръстосано-подписване",
|
||||
"identity_server": "Сървър за самоличност",
|
||||
"integration_manager": "Мениджър на интеграции"
|
||||
"integration_manager": "Мениджър на интеграции",
|
||||
"qr_code": "QR код"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Продължи",
|
||||
|
@ -1744,7 +1718,16 @@
|
|||
"send_report": "Изпрати доклад"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Потребителско меню"
|
||||
"user_menu": "Потребителско меню",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s непрочетени съобщения, включително споменавания.",
|
||||
"one": "1 непрочетено споменаване."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s непрочетени съобщения.",
|
||||
"one": "1 непрочетено съобщение."
|
||||
},
|
||||
"unread_messages": "Непрочетени съобщения."
|
||||
},
|
||||
"labs": {
|
||||
"pinning": "Функция за закачане на съобщения",
|
||||
|
@ -2172,7 +2155,6 @@
|
|||
"unsupported": "Обажданията не се поддържат",
|
||||
"unsupported_browser": "Не можете да провеждате обаждания в този браузър."
|
||||
},
|
||||
"Messages": "Съобщения",
|
||||
"Other": "Други",
|
||||
"Advanced": "Разширени",
|
||||
"room_settings": {
|
||||
|
@ -2228,5 +2210,31 @@
|
|||
"fireworks_message": "изпраща фойерверки",
|
||||
"snowfall_description": "Изпраща даденото съобщение със снеговалеж",
|
||||
"snowfall_message": "изпраща снеговалеж"
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Влезте посредством single-sign-on",
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Съобщения"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Показвай стаи с непрочетени съобщения първи",
|
||||
"show_previews": "Показвай преглед на съобщенията",
|
||||
"sort_by": "Подреди по",
|
||||
"sort_by_activity": "Активност",
|
||||
"sort_by_alphabet": "Азбучен ред",
|
||||
"sublist_options": "Опции на списъка",
|
||||
"show_n_more": {
|
||||
"other": "Покажи още %(count)s",
|
||||
"one": "Покажи още %(count)s"
|
||||
},
|
||||
"show_less": "Покажи по-малко",
|
||||
"notification_options": "Настройки за уведомление"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Въведете защо докладвате.",
|
||||
"report_content_to_homeserver": "Докладвай съдържание до администратора на сървъра",
|
||||
"description": "Докладването на съобщението ще изпрати уникалният номер на събитието (event ID) до администратора на сървъра. Ако съобщенията в стаята са шифровани, администратора няма да може да прочете текста им или да види снимките или файловете."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -392,8 +392,6 @@
|
|||
"Confirm your account deactivation by using Single Sign On to prove your identity.": "Confirma la desactivació del teu compte mitjançant la inscripció única SSO (per demostrar la teva identitat).",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirma l'addició d'aquest número de telèfon mitjançant la inscripció única SSO (per demostrar la teva identitat).",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirma l'addició d'aquest correu electrònic mitjançant la inscripció única SSO (per demostrar la teva identitat).",
|
||||
"Sign in with single sign-on": "Inicia sessió mitjançant la inscripció única (SSO)",
|
||||
"Single Sign On": "Inscripció única (SSO)",
|
||||
"Use Single Sign On to continue": "Utilitza la inscripció única (SSO) per a continuar",
|
||||
"Click the button below to confirm adding this phone number.": "Fes clic al botó de sota per confirmar l'addició d'aquest número de telèfon.",
|
||||
"Confirm adding phone number": "Confirma l'addició del número de telèfon",
|
||||
|
@ -712,7 +710,6 @@
|
|||
"unable_to_access_microphone": "No s'ha pogut accedir al micròfon",
|
||||
"unable_to_access_media": "No s'ha pogut accedir a la càmera web / micròfon"
|
||||
},
|
||||
"Messages": "Missatges",
|
||||
"Other": "Altres",
|
||||
"Advanced": "Avançat",
|
||||
"composer": {
|
||||
|
@ -723,5 +720,12 @@
|
|||
"permissions": {
|
||||
"state_default": "Canvia la configuració"
|
||||
}
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Inicia sessió mitjançant la inscripció única (SSO)",
|
||||
"sso": "Inscripció única (SSO)"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Missatges"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -548,7 +548,6 @@
|
|||
"Join millions for free on the largest public server": "Přidejte k miliónům registrovaným na největším veřejném serveru",
|
||||
"Couldn't load page": "Nepovedlo se načíst stránku",
|
||||
"Your password has been reset.": "Heslo bylo resetováno.",
|
||||
"Sign in with single sign-on": "Přihlásit se přes jednotné přihlašování",
|
||||
"Create account": "Vytvořit účet",
|
||||
"Unable to query for supported registration methods.": "Nepovedlo se načíst podporované způsoby přihlášení.",
|
||||
"The user must be unbanned before they can be invited.": "Aby mohl být uživatel pozván, musí být jeho vykázání zrušeno.",
|
||||
|
@ -695,9 +694,6 @@
|
|||
"Show advanced": "Zobrazit pokročilé možnosti",
|
||||
"Your homeserver doesn't seem to support this feature.": "Váš domovský server asi tuto funkci nepodporuje.",
|
||||
"Message edits": "Úpravy zpráv",
|
||||
"Please fill why you're reporting.": "Vyplňte prosím co chcete nahlásit.",
|
||||
"Report Content to Your Homeserver Administrator": "Nahlásit obsah správci vašeho domovského serveru",
|
||||
"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.": "Nahlášení této zprávy pošle její jedinečné 'event ID' správci vašeho domovského serveru. Pokud jsou zprávy šifrované, správce nebude mít možnost přečíst text zprávy ani se podívat na soubory nebo obrázky.",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Aktualizace této místnosti vyžaduje uzavření stávající místnosti a vytvoření nové místnosti, která ji nahradí. Pro usnadnění procesu pro členy místnosti, provedeme:",
|
||||
"Command Help": "Nápověda příkazu",
|
||||
"Find others by phone or email": "Najít ostatní pomocí e-mailu nebo telefonu",
|
||||
|
@ -751,15 +747,6 @@
|
|||
"This invite to %(roomName)s was sent to %(email)s": "Pozvánka do %(roomName)s byla odeslána na adresu %(email)s",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Používat server identit z nastavení k přijímání pozvánek přímo v %(brand)su.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Sdílet tento e-mail v nastavení, abyste mohli dostávat pozvánky přímo v %(brand)su.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s nepřečtených zpráv a zmínek.",
|
||||
"one": "Nepřečtená zmínka."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s nepřečtených zpráv.",
|
||||
"one": "Nepřečtená zpráva."
|
||||
},
|
||||
"Unread messages.": "Nepřečtené zprávy.",
|
||||
"Failed to deactivate user": "Deaktivace uživatele se nezdařila",
|
||||
"This client does not support end-to-end encryption.": "Tento klient nepodporuje koncové šifrování.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Zprávy nejsou koncově šifrované.",
|
||||
|
@ -890,7 +877,6 @@
|
|||
"Later": "Později",
|
||||
"This bridge was provisioned by <user />.": "Toto propojení poskytuje <user />.",
|
||||
"This bridge is managed by <user />.": "Toto propojení spravuje <user />.",
|
||||
"Show less": "Zobrazit méně",
|
||||
"Show more": "Více",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Váš účet má v bezpečném úložišti identitu pro křížový podpis, ale v této relaci jí zatím nevěříte.",
|
||||
"Cross-signing public keys:": "Veřejné klíče pro křížový podpis:",
|
||||
|
@ -1018,7 +1004,6 @@
|
|||
"Enter a server name": "Zadejte jméno serveru",
|
||||
"Use Single Sign On to continue": "Pokračovat pomocí Jednotného přihlášení",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrďte přidání této adresy pomocí Jednotného přihlášení.",
|
||||
"Single Sign On": "Jednotné přihlášení",
|
||||
"Confirm adding email": "Potvrdit přidání emailu",
|
||||
"Click the button below to confirm adding this email address.": "Kliknutím na tlačítko potvrdíte přidání emailové adresy.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrďte přidání telefonního čísla pomocí Jednotného přihlášení.",
|
||||
|
@ -1069,17 +1054,6 @@
|
|||
"Contact your <a>server admin</a>.": "Kontaktujte <a>administrátora serveru</a>.",
|
||||
"Ok": "Ok",
|
||||
"Are you sure you want to cancel entering passphrase?": "Chcete určitě zrušit zadávání přístupové fráze?",
|
||||
"Show rooms with unread messages first": "Zobrazovat místnosti s nepřečtenými zprávami jako první",
|
||||
"Show previews of messages": "Zobrazovat náhledy zpráv",
|
||||
"Sort by": "Řadit dle",
|
||||
"Activity": "Aktivity",
|
||||
"A-Z": "A–Z",
|
||||
"List options": "Možnosti seznamu",
|
||||
"Show %(count)s more": {
|
||||
"other": "Zobrazit %(count)s dalších",
|
||||
"one": "Zobrazit %(count)s další"
|
||||
},
|
||||
"Notification options": "Možnosti oznámení",
|
||||
"Favourited": "Oblíbená",
|
||||
"Forget Room": "Zapomenout místnost",
|
||||
"Room options": "Možnosti místnosti",
|
||||
|
@ -1092,7 +1066,6 @@
|
|||
"Message deleted on %(date)s": "Zpráva byla odstraněna %(date)s",
|
||||
"Edited at %(date)s": "Upraveno %(date)s",
|
||||
"Click to view edits": "Klikněte pro zobrazení úprav",
|
||||
"QR Code": "QR kód",
|
||||
"Room address": "Adresa místnosti",
|
||||
"This address is available to use": "Tato adresa je dostupná",
|
||||
"This address is already in use": "Tato adresa je již používána",
|
||||
|
@ -1244,7 +1217,6 @@
|
|||
"Keys restored": "Klíče byly obnoveny",
|
||||
"You're all caught up.": "Vše vyřízeno.",
|
||||
"You've previously used a newer version of %(brand)s with this session. To use this version again with end to end encryption, you will need to sign out and back in again.": "V této relaci jste již dříve používali novější verzi %(brand)s. Chcete-li tuto verzi znovu použít s šifrováním, budete se muset odhlásit a znovu přihlásit.",
|
||||
"Continue with %(provider)s": "Pokračovat s %(provider)s",
|
||||
"Server Options": "Možnosti serveru",
|
||||
"This version of %(brand)s does not support viewing some encrypted files": "Tato verze %(brand)s nepodporuje zobrazení některých šifrovaných souborů",
|
||||
"This version of %(brand)s does not support searching encrypted messages": "Tato verze %(brand)s nepodporuje hledání v šifrovaných zprávách",
|
||||
|
@ -1703,9 +1675,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Tuto změnu nebudete moci vrátit zpět, protože budete degradováni, pokud jste posledním privilegovaným uživatelem v daném prostoru, nebude možné znovu získat oprávnění.",
|
||||
"Empty room": "Prázdná místnost",
|
||||
"Suggested Rooms": "Doporučené místnosti",
|
||||
"You do not have permissions to add rooms to this space": "Nemáte oprávnění k přidávání místností do tohoto prostoru",
|
||||
"Add existing room": "Přidat existující místnost",
|
||||
"You do not have permissions to create new rooms in this space": "Nemáte oprávnění k vytváření nových místností v tomto prostoru",
|
||||
"Invite to this space": "Pozvat do tohoto prostoru",
|
||||
"Your message was sent": "Zpráva byla odeslána",
|
||||
"Space options": "Nastavení prostoru",
|
||||
|
@ -1797,8 +1767,6 @@
|
|||
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Vyberte místnosti nebo konverzace, které chcete přidat. Toto je prostor pouze pro vás, nikdo nebude informován. Později můžete přidat další.",
|
||||
"You have no ignored users.": "Nemáte žádné ignorované uživatele.",
|
||||
"Select a room below first": "Nejprve si vyberte místnost níže",
|
||||
"Join the beta": "Připojit se k beta verzi",
|
||||
"Leave the beta": "Opustit beta verzi",
|
||||
"Want to add a new room instead?": "Chcete místo toho přidat novou místnost?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Přidávání místnosti...",
|
||||
|
@ -1847,17 +1815,6 @@
|
|||
"Show preview": "Zobrazit náhled",
|
||||
"View source": "Zobrazit zdroj",
|
||||
"Settings - %(spaceName)s": "Nastavení - %(spaceName)s",
|
||||
"Report the entire room": "Nahlásit celou místnost",
|
||||
"Spam or propaganda": "Spam nebo propaganda",
|
||||
"Illegal Content": "Nelegální obsah",
|
||||
"Toxic Behaviour": "Nevhodné chování",
|
||||
"Disagree": "Nesouhlasím",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Vyberte prosím charakter zprávy a popište, v čem je tato zpráva zneužitelná.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Jakýkoli jiný důvod. Popište problém.\nTento problém bude nahlášen moderátorům místnosti.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Tato místnost je věnována nelegálnímu a nevhodnému obsahu nebo moderátoři nedokáží nelegální a nevhodný obsah moderovat.\nTata skutečnost bude nahlášena správcům %(homeserver)s. Správci NEBUDOU moci číst zašifrovaný obsah této místnosti.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Tento uživatel spamuje místnost reklamami, odkazy na reklamy nebo propagandou.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Tento uživatel se chová nezákonně, například zveřejňuje osobní údaje o cizích lidech nebo vyhrožuje násilím.\nTato skutečnost bude nahlášena moderátorům místnosti, kteří to mohou předat právním orgánům.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "To, co tento uživatel píše, je špatné.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"Please provide an address": "Uveďte prosím adresu",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Inicializace vyhledávání zpráv se nezdařila, zkontrolujte <a>svá nastavení</a>",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Nastavte adresy pro tento prostor, aby jej uživatelé mohli najít prostřednictvím domovského serveru (%(localDomain)s)",
|
||||
|
@ -2018,21 +1975,7 @@
|
|||
"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í",
|
||||
"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",
|
||||
"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",
|
||||
"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.": "Resetování ověřovacích klíčů nelze vrátit zpět. Po jejich resetování nebudete mít přístup ke starým zašifrovaným zprávám a všem přátelům, kteří vás dříve ověřili, se zobrazí bezpečnostní varování, dokud se u nich znovu neověříte.",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "Nabídka pro %(spaceName)s",
|
||||
"Join public room": "Připojit se k veřejné místnosti",
|
||||
"Add people": "Přidat lidi",
|
||||
"You do not have permissions to invite people to this space": "Nemáte oprávnění zvát lidi do tohoto prostoru",
|
||||
"Invite to space": "Pozvat do prostoru",
|
||||
"Start new chat": "Zahájit nový chat",
|
||||
"Recently viewed": "Nedávno zobrazené",
|
||||
|
@ -2310,9 +2252,6 @@
|
|||
"Poll": "Hlasování",
|
||||
"Voice Message": "Hlasová zpráva",
|
||||
"Hide stickers": "Skrýt nálepky",
|
||||
"You do not have permissions to add spaces to this space": "Nemáte oprávnění přidávat prostory do tohoto prostoru",
|
||||
"Click for more info": "Klikněte pro více informací",
|
||||
"This is a beta feature": "Jedná se o funkci ve vývoji",
|
||||
"Use <arrows/> to scroll": "K pohybu použijte <arrows/>",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Zpětná vazba odeslána! Děkujeme, vážíme si toho!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s a %(space2Name)s",
|
||||
|
@ -2334,7 +2273,6 @@
|
|||
"Switch to space by number": "Přepnout do prostoru podle čísla",
|
||||
"Pinned": "Připnuto",
|
||||
"Open thread": "Otevřít vlákno",
|
||||
"Export Cancelled": "Export zrušen",
|
||||
"What location type do you want to share?": "Jaký typ polohy chcete sdílet?",
|
||||
"Drop a Pin": "Zvolená poloha",
|
||||
"My live location": "Moje poloha živě",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"To create your account, open the link in the email we just sent to %(emailAddress)s.": "Pro vytvoření účtu, otevřete odkaz v e-mailu, který jsme právě zaslali na adresu %(emailAddress)s.",
|
||||
"Unread email icon": "Ikona nepřečteného e-mailu",
|
||||
"Check your email to continue": "Zkontrolujte svůj e-mail a pokračujte",
|
||||
"Check if you want to hide all current and future messages from this user.": "Zaškrtněte, pokud chcete skrýt všechny aktuální a budoucí zprávy od tohoto uživatele.",
|
||||
"Ignore user": "Ignorovat uživatele",
|
||||
"View related event": "Zobrazit související událost",
|
||||
"Read receipts": "Potvrzení o přečtení",
|
||||
"Failed to set direct message tag": "Nepodařilo se nastavit značku přímé zprávy",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "Deaktivace účtu je trvalá akce - buďte opatrní!",
|
||||
"Un-maximise": "Zrušit maximalizaci",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Po odhlášení budou tyto klíče z tohoto zařízení odstraněny, což znamená, že nebudete moci číst zašifrované zprávy, pokud k nim nemáte klíče v jiných zařízeních nebo je nemáte zálohované na serveru.",
|
||||
"Joining the beta will reload %(brand)s.": "Po připojení k betě se %(brand)s znovu načte.",
|
||||
"Leaving the beta will reload %(brand)s.": "Po opuštění beta verze se %(brand)s znovu načte.",
|
||||
"Video rooms are a beta feature": "Video místnosti jsou beta funkce",
|
||||
"Enable hardware acceleration": "Povolit hardwarovou akceleraci",
|
||||
"If you can't see who you're looking for, send them your invite link.": "Pokud nevidíte, koho hledáte, pošlete mu odkaz na pozvánku.",
|
||||
|
@ -2556,13 +2490,6 @@
|
|||
"Choose a locale": "Zvolte jazyk",
|
||||
"Spell check": "Kontrola pravopisu",
|
||||
"We're creating a room with %(names)s": "Vytváříme místnost s %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play a logo Google Play jsou ochranné známky společnosti Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® a logo Apple® jsou ochranné známky společnosti Apple Inc.",
|
||||
"Get it on F-Droid": "Získat na F-Droid",
|
||||
"Get it on Google Play": "Získat na Google Play",
|
||||
"Download on the App Store": "Stáhnout v App Store",
|
||||
"Download %(brand)s Desktop": "Stáhnout %(brand)s Desktop",
|
||||
"Download %(brand)s": "Stáhnout %(brand)s",
|
||||
"Inactive for %(inactiveAgeDays)s+ days": "Neaktivní po dobu %(inactiveAgeDays)s+ dnů",
|
||||
"Session details": "Podrobnosti o relaci",
|
||||
"IP address": "IP adresa",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s a %(user2)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s nebo %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s nebo %(recoveryFile)s",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s nebo %(appLinks)s",
|
||||
"Sliding Sync configuration": "Nastavení klouzavé synchronizace",
|
||||
"Proxy URL": "URL proxy serveru",
|
||||
"Proxy URL (optional)": "URL proxy serveru (volitelné)",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Postupujte podle pokynů zaslaných na <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Odhlásit se ze všech zařízení",
|
||||
"Confirm new password": "Potvrďte nové heslo",
|
||||
"Reset your password": "Obnovení vašeho hesla",
|
||||
"Reset password": "Obnovit heslo",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Příliš mnoho pokusů v krátkém čase. Zkuste to znovu po %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Příliš mnoho pokusů v krátkém čase. Před dalším pokusem nějakou dobu počkejte.",
|
||||
"Change input device": "Změnit vstupní zařízení",
|
||||
|
@ -2830,12 +2754,9 @@
|
|||
"Loading live location…": "Načítání polohy živě…",
|
||||
"Fetching keys from server…": "Načítání klíčů ze serveru…",
|
||||
"Checking…": "Kontrola…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Tato místnost je věnována nelegálnímu a nevhodnému obsahu nebo moderátoři nedokáží nelegální a nevhodný obsah moderovat.\nTato skutečnost bude nahlášena správcům %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Tento uživatel se chová nevhodně, například uráží ostatní uživatele, sdílí obsah určený pouze pro dospělé v místnosti určené pro rodiny s dětmi nebo jinak porušuje pravidla této místnosti.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"Waiting for partner to confirm…": "Čekání na potvrzení partnerem…",
|
||||
"Joining room…": "Vstupování do místnosti…",
|
||||
"Joining space…": "Připojování k prostoru…",
|
||||
"Processing…": "Zpracování…",
|
||||
"Adding…": "Přidání…",
|
||||
"Write something…": "Napište něco…",
|
||||
"Rejecting invite…": "Odmítání pozvánky…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Search all rooms": "Vyhledávat ve všech místnostech",
|
||||
"Search this room": "Vyhledávat v této místnosti",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Bez serveru identit nelze uživatele pozvat e-mailem. K nějakému se můžete připojit v \"Nastavení\".",
|
||||
"Unable to create room with moderation bot": "Nelze vytvořit místnost s moderačním botem",
|
||||
"Failed to download source media, no source url was found": "Nepodařilo se stáhnout zdrojové médium, nebyla nalezena žádná zdrojová url adresa",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Jakmile se pozvaní uživatelé připojí k %(brand)s, budete moci chatovat a místnost bude koncově šifrovaná",
|
||||
"Waiting for users to join %(brand)s": "Čekání na připojení uživatelů k %(brand)s",
|
||||
|
@ -3091,7 +3011,8 @@
|
|||
"secure_backup": "Zabezpečená záloha",
|
||||
"cross_signing": "Křížové podepisování",
|
||||
"identity_server": "Server identit",
|
||||
"integration_manager": "Správce integrací"
|
||||
"integration_manager": "Správce integrací",
|
||||
"qr_code": "QR kód"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Pokračovat",
|
||||
|
@ -3195,7 +3116,16 @@
|
|||
"clear": "Smazat"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Uživatelská nabídka"
|
||||
"user_menu": "Uživatelská nabídka",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s nepřečtených zpráv a zmínek.",
|
||||
"one": "Nepřečtená zmínka."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s nepřečtených zpráv.",
|
||||
"one": "Nepřečtená zpráva."
|
||||
},
|
||||
"unread_messages": "Nepřečtené zprávy."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Video místnosti",
|
||||
|
@ -3250,7 +3180,13 @@
|
|||
"group_themes": "Motivy vzhledu",
|
||||
"group_encryption": "Šifrování",
|
||||
"group_experimental": "Experimentální",
|
||||
"group_developer": "Pro vývojáře"
|
||||
"group_developer": "Pro vývojáře",
|
||||
"beta_feature": "Jedná se o funkci ve vývoji",
|
||||
"click_for_info": "Klikněte pro více informací",
|
||||
"leave_beta_reload": "Po opuštění beta verze se %(brand)s znovu načte.",
|
||||
"join_beta_reload": "Po připojení k betě se %(brand)s znovu načte.",
|
||||
"leave_beta": "Opustit beta verzi",
|
||||
"join_beta": "Připojit se k beta verzi"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Domov",
|
||||
|
@ -3381,7 +3317,15 @@
|
|||
"enable_notifications": "Zapnout oznámení",
|
||||
"download_app_description": "Vezměte si %(brand)s s sebou a nic vám neunikne",
|
||||
"download_app_action": "Stáhnout aplikace",
|
||||
"download_app": "Stáhnout %(brand)s"
|
||||
"download_app": "Stáhnout %(brand)s",
|
||||
"download_brand": "Stáhnout %(brand)s",
|
||||
"download_brand_desktop": "Stáhnout %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s nebo %(appLinks)s",
|
||||
"download_app_store": "Stáhnout v App Store",
|
||||
"download_google_play": "Získat na Google Play",
|
||||
"download_f_droid": "Získat na F-Droid",
|
||||
"apple_trademarks": "App Store® a logo Apple® jsou ochranné známky společnosti Apple Inc.",
|
||||
"google_trademarks": "Google Play a logo Google Play jsou ochranné známky společnosti Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Zobrazovat zkratky do nedávno zobrazených místností navrchu",
|
||||
|
@ -3600,7 +3544,24 @@
|
|||
"error_fetching_file": "Chyba při načítání souboru",
|
||||
"file_attached": "Přiložený soubor",
|
||||
"fetching_events": "Stahování událostí…",
|
||||
"creating_output": "Vytváření výstupu…"
|
||||
"creating_output": "Vytváření výstupu…",
|
||||
"processing": "Zpracování…",
|
||||
"enter_number_between_min_max": "Zadejte číslo mezi %(min)s a %(max)s",
|
||||
"size_limit_min_max": "Velikost může být pouze číslo mezi %(min)s MB a %(max)s MB",
|
||||
"num_messages_min_max": "Počet zpráv může být pouze číslo mezi %(min)s a %(max)s",
|
||||
"num_messages": "Počet zpráv",
|
||||
"cancelled": "Export zrušen",
|
||||
"cancelled_detail": "Export byl úspěšně zrušen",
|
||||
"successful": "Export proběhl úspěšně",
|
||||
"successful_detail": "Váš export proběhl úspěšně. Najdete jej ve složce pro stažené soubory.",
|
||||
"confirm_stop": "Opravdu chcete ukončit export dat? Pokud ano, budete muset začít znovu.",
|
||||
"exporting_your_data": "Exportování dat",
|
||||
"title": "Exportovat chat",
|
||||
"select_option": "Vyberte jednu z níže uvedených možností pro export chatů z časové osy",
|
||||
"format": "Formát",
|
||||
"messages": "Zprávy",
|
||||
"size_limit": "Omezení velikosti",
|
||||
"include_attachments": "Zahrnout přílohy"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Vytvořit video místnost",
|
||||
|
@ -4014,7 +3975,6 @@
|
|||
"unsupported": "Hovory nejsou podporovány",
|
||||
"unsupported_browser": "V tomto prohlížeči nelze uskutečňovat hovory."
|
||||
},
|
||||
"Messages": "Zprávy",
|
||||
"Other": "Další možnosti",
|
||||
"Advanced": "Rozšířené",
|
||||
"room_settings": {
|
||||
|
@ -4102,5 +4062,53 @@
|
|||
"spaceinvaders_message": "pošle space invaders",
|
||||
"hearts_description": "Odešle danou zprávu se srdíčky",
|
||||
"hearts_message": "posílá srdíčka"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Nemáte oprávnění zvát lidi do tohoto prostoru",
|
||||
"error_no_permission_create_room": "Nemáte oprávnění k vytváření nových místností v tomto prostoru",
|
||||
"error_no_permission_add_room": "Nemáte oprávnění k přidávání místností do tohoto prostoru",
|
||||
"error_no_permission_add_space": "Nemáte oprávnění přidávat prostory do tohoto prostoru"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Pokračovat s %(provider)s",
|
||||
"sign_in_with_sso": "Přihlásit se přes jednotné přihlašování",
|
||||
"sso": "Jednotné přihlášení",
|
||||
"reset_password_action": "Obnovit heslo",
|
||||
"reset_password_title": "Obnovení vašeho hesla"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Zobrazovat místnosti s nepřečtenými zprávami jako první",
|
||||
"show_previews": "Zobrazovat náhledy zpráv",
|
||||
"sort_by": "Řadit dle",
|
||||
"sort_by_activity": "Aktivity",
|
||||
"sort_by_alphabet": "A–Z",
|
||||
"sublist_options": "Možnosti seznamu",
|
||||
"show_n_more": {
|
||||
"other": "Zobrazit %(count)s dalších",
|
||||
"one": "Zobrazit %(count)s další"
|
||||
},
|
||||
"show_less": "Zobrazit méně",
|
||||
"notification_options": "Možnosti oznámení"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Vyplňte prosím co chcete nahlásit.",
|
||||
"unable_create_room_moderation_bot": "Nelze vytvořit místnost s moderačním botem",
|
||||
"ignore_user": "Ignorovat uživatele",
|
||||
"hide_messages_from_user": "Zaškrtněte, pokud chcete skrýt všechny aktuální a budoucí zprávy od tohoto uživatele.",
|
||||
"nature_disagreement": "To, co tento uživatel píše, je špatné.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"nature_toxic": "Tento uživatel se chová nevhodně, například uráží ostatní uživatele, sdílí obsah určený pouze pro dospělé v místnosti určené pro rodiny s dětmi nebo jinak porušuje pravidla této místnosti.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"nature_illegal": "Tento uživatel se chová nezákonně, například zveřejňuje osobní údaje o cizích lidech nebo vyhrožuje násilím.\nTato skutečnost bude nahlášena moderátorům místnosti, kteří to mohou předat právním orgánům.",
|
||||
"nature_spam": "Tento uživatel spamuje místnost reklamami, odkazy na reklamy nebo propagandou.\nTato skutečnost bude nahlášena moderátorům místnosti.",
|
||||
"report_to_homeserver_encrypted": "Tato místnost je věnována nelegálnímu a nevhodnému obsahu nebo moderátoři nedokáží nelegální a nevhodný obsah moderovat.\nTata skutečnost bude nahlášena správcům %(homeserver)s. Správci NEBUDOU moci číst zašifrovaný obsah této místnosti.",
|
||||
"report_to_homeserver": "Tato místnost je věnována nelegálnímu a nevhodnému obsahu nebo moderátoři nedokáží nelegální a nevhodný obsah moderovat.\nTato skutečnost bude nahlášena správcům %(homeserver)s.",
|
||||
"nature_other": "Jakýkoli jiný důvod. Popište problém.\nTento problém bude nahlášen moderátorům místnosti.",
|
||||
"nature": "Vyberte prosím charakter zprávy a popište, v čem je tato zpráva zneužitelná.",
|
||||
"disagree": "Nesouhlasím",
|
||||
"toxic_behaviour": "Nevhodné chování",
|
||||
"illegal_content": "Nelegální obsah",
|
||||
"spam_or_propaganda": "Spam nebo propaganda",
|
||||
"report_entire_room": "Nahlásit celou místnost",
|
||||
"report_content_to_homeserver": "Nahlásit obsah správci vašeho domovského serveru",
|
||||
"description": "Nahlášení této zprávy pošle její jedinečné 'event ID' správci vašeho domovského serveru. Pokud jsou zprávy šifrované, správce nebude mít možnost přečíst text zprávy ani se podívat na soubory nebo obrázky."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -194,7 +194,6 @@
|
|||
"Add Phone Number": "Tilføj telefonnummer",
|
||||
"Use Single Sign On to continue": "Brug engangs login for at fortsætte",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Bekræft tilføjelsen af denne email adresse ved at bruge Single Sign On til at bevise din identitet.",
|
||||
"Single Sign On": "Engangs login",
|
||||
"Confirm adding email": "Bekræft tilføjelse af email",
|
||||
"Click the button below to confirm adding this email address.": "Klik på knappen herunder for at bekræfte tilføjelsen af denne email adresse.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Bekræft tilføjelsen af dette telefonnummer ved at bruge Single Sign On til at bevise din identitet.",
|
||||
|
@ -231,7 +230,6 @@
|
|||
"Permissions": "Tilladelser",
|
||||
"Headphones": "Hovedtelefoner",
|
||||
"Show more": "Vis mere",
|
||||
"Show less": "Vis mindre",
|
||||
"Passwords don't match": "Adgangskoderne matcher ikke",
|
||||
"Confirm password": "Bekræft adgangskode",
|
||||
"Enter password": "Indtast adgangskode",
|
||||
|
@ -762,7 +760,6 @@
|
|||
"m.text": "%(senderName)s: %(message)s",
|
||||
"m.sticker": "%(senderName)s: %(stickerName)s"
|
||||
},
|
||||
"Messages": "Beskeder",
|
||||
"Other": "Andre",
|
||||
"Advanced": "Avanceret",
|
||||
"composer": {
|
||||
|
@ -791,5 +788,14 @@
|
|||
},
|
||||
"emoji": {
|
||||
"categories": "Kategorier"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Engangs login"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Beskeder"
|
||||
},
|
||||
"room_list": {
|
||||
"show_less": "Vis mindre"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -416,7 +416,6 @@
|
|||
"If you didn't set the new recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Wenn du die neue Wiederherstellungsmethode nicht festgelegt hast, versucht ein Angreifer möglicherweise, auf dein Konto zuzugreifen. Ändere dein Kontopasswort und lege sofort eine neue Wiederherstellungsmethode in den Einstellungen fest.",
|
||||
"Set up Secure Messages": "Richte sichere Nachrichten ein",
|
||||
"Go to Settings": "Gehe zu Einstellungen",
|
||||
"Sign in with single sign-on": "Einmalanmeldung nutzen",
|
||||
"Unrecognised address": "Nicht erkannte Adresse",
|
||||
"The following users may not exist": "Eventuell existieren folgende Benutzer nicht",
|
||||
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Profile für die nachfolgenden Matrix-IDs wurden nicht gefunden – willst du sie dennoch einladen?",
|
||||
|
@ -779,12 +778,9 @@
|
|||
"Verify session": "Sitzung verifizieren",
|
||||
"Session key": "Sitzungsschlüssel",
|
||||
"Recent Conversations": "Letzte Unterhaltungen",
|
||||
"Report Content to Your Homeserver Administrator": "Inhalte an die Administration deines Heim-Servers melden",
|
||||
"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.": "Wenn du diese Nachricht meldest, wird die eindeutige Ereignis-ID an die Administration deines Heim-Servers übermittelt. Wenn die Nachrichten in diesem Raum verschlüsselt sind, wird deine Heim-Server-Administration nicht in der Lage sein, Nachrichten zu lesen oder Medien einzusehen.",
|
||||
"%(creator)s created and configured the room.": "%(creator)s hat den Raum erstellt und konfiguriert.",
|
||||
"Use Single Sign On to continue": "Einmalanmeldung zum Fortfahren nutzen",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Bestätige die neue E-Mail-Adresse mit Single-Sign-On, um deine Identität nachzuweisen.",
|
||||
"Single Sign On": "Single Sign-on",
|
||||
"Confirm adding email": "Hinzugefügte E-Mail-Addresse bestätigen",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Bestätige die hinzugefügte Telefonnummer, indem du deine Identität mittels der Einmalanmeldung nachweist.",
|
||||
"Click the button below to confirm adding this phone number.": "Klicke unten die Schaltfläche, um die hinzugefügte Telefonnummer zu bestätigen.",
|
||||
|
@ -800,7 +796,6 @@
|
|||
"Cancelling…": "Abbrechen…",
|
||||
"This bridge was provisioned by <user />.": "Diese Brücke wurde von <user /> bereitgestellt.",
|
||||
"This bridge is managed by <user />.": "Diese Brücke wird von <user /> verwaltet.",
|
||||
"Show less": "Weniger anzeigen",
|
||||
"Forgotten your password?": "Passwort vergessen?",
|
||||
"You're signed out": "Du wurdest abgemeldet",
|
||||
"Clear all data in this session?": "Alle Daten dieser Sitzung löschen?",
|
||||
|
@ -884,15 +879,6 @@
|
|||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Verknüpfe einen Identitäts-Server in den Einstellungen, um die Einladungen direkt in %(brand)s zu erhalten.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Teile diese E-Mail-Adresse in den Einstellungen, um Einladungen direkt in %(brand)s zu erhalten.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "Vorschau von %(roomName)s kann nicht angezeigt werden. Möchtest du den Raum betreten?",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s ungelesene Nachrichten einschließlich Erwähnungen.",
|
||||
"one": "1 ungelesene Erwähnung."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s ungelesene Nachrichten.",
|
||||
"one": "1 ungelesene Nachricht."
|
||||
},
|
||||
"Unread messages.": "Ungelesene Nachrichten.",
|
||||
"This room has already been upgraded.": "Dieser Raum wurde bereits aktualisiert.",
|
||||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Dieser Raum läuft mit der Raumversion <roomVersion />, welche dieser Heim-Server als <i>instabil</i> markiert hat.",
|
||||
"Unknown Command": "Unbekannter Befehl",
|
||||
|
@ -987,7 +973,6 @@
|
|||
"Toggle Italics": "Kursiv",
|
||||
"Toggle Quote": "Zitat umschalten",
|
||||
"New line": "Neue Zeile",
|
||||
"Please fill why you're reporting.": "Bitte gib an, weshalb du einen Fehler meldest.",
|
||||
"Upgrade private room": "Privaten Raum aktualisieren",
|
||||
"Upgrade public room": "Öffentlichen Raum aktualisieren",
|
||||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Dies beeinflusst meistens nur, wie der Raum auf dem Server verarbeitet wird. Solltest du Probleme mit %(brand)s haben, <a>melde bitte einen Programmfehler</a>.",
|
||||
|
@ -1107,7 +1092,6 @@
|
|||
"Toggle right panel": "Rechtes Panel ein-/ausblenden",
|
||||
"Opens chat with the given user": "Öffnet eine Unterhaltung mit dieser Person",
|
||||
"You've successfully verified your device!": "Du hast dein Gerät erfolgreich verifiziert!",
|
||||
"QR Code": "QR-Code",
|
||||
"To continue, use Single Sign On to prove your identity.": "Zum Fortfahren, nutze „Single Sign-On“ um deine Identität zu bestätigen.",
|
||||
"Confirm to continue": "Bestätige um fortzufahren",
|
||||
"Click the button below to confirm your identity.": "Klicke den Button unten um deine Identität zu bestätigen.",
|
||||
|
@ -1146,16 +1130,8 @@
|
|||
"Feedback": "Rückmeldung",
|
||||
"Room ID or address of ban list": "Raum-ID oder Adresse der Verbotsliste",
|
||||
"No recently visited rooms": "Keine kürzlich besuchten Räume",
|
||||
"Sort by": "Sortieren nach",
|
||||
"Message preview": "Nachrichtenvorschau",
|
||||
"List options": "Optionen anzeigen",
|
||||
"Show %(count)s more": {
|
||||
"other": "%(count)s weitere anzeigen",
|
||||
"one": "%(count)s weitere anzeigen"
|
||||
},
|
||||
"Room options": "Raumoptionen",
|
||||
"Activity": "Aktivität",
|
||||
"A-Z": "A–Z",
|
||||
"Looks good!": "Sieht gut aus!",
|
||||
"Use custom size": "Andere Schriftgröße verwenden",
|
||||
"Hey you. You're the best!": "Hey du. Du bist großartig!",
|
||||
|
@ -1164,9 +1140,6 @@
|
|||
"Wrong file type": "Falscher Dateityp",
|
||||
"Are you sure you want to cancel entering passphrase?": "Bist du sicher, dass du die Eingabe der Passphrase abbrechen möchtest?",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "Das Durchsuchen von verschlüsselten Nachrichten wird aus Sicherheitsgründen nur von %(brand)s Desktop unterstützt. <desktopLink>Hier gehts zum Download</desktopLink>.",
|
||||
"Show rooms with unread messages first": "Räume mit ungelesenen Nachrichten zuerst zeigen",
|
||||
"Show previews of messages": "Nachrichtenvorschau anzeigen",
|
||||
"Notification options": "Benachrichtigungsoptionen",
|
||||
"Forget Room": "Raum vergessen",
|
||||
"Favourited": "Favorisiert",
|
||||
"This room is public": "Dieser Raum ist öffentlich",
|
||||
|
@ -1621,7 +1594,6 @@
|
|||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Aufgepasst: Wenn du keine E-Mail-Adresse angibst und dein Passwort vergisst, kannst du den <b>Zugriff auf deinen Konto dauerhaft verlieren</b>.",
|
||||
"Continuing without email": "Ohne E-Mail fortfahren",
|
||||
"Reason (optional)": "Grund (optional)",
|
||||
"Continue with %(provider)s": "Weiter mit %(provider)s",
|
||||
"Server Options": "Server-Einstellungen",
|
||||
"Host account on": "Konto betreiben auf",
|
||||
"Hold": "Halten",
|
||||
|
@ -1743,8 +1715,6 @@
|
|||
"This space is not public. You will not be able to rejoin without an invite.": "Du wirst diesen privaten Space nur mit einer Einladung wieder betreten können.",
|
||||
"Failed to save space settings.": "Spaceeinstellungen konnten nicht gespeichert werden.",
|
||||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Das Entfernen von Rechten kann nicht rückgängig gemacht werden. Falls sie dir niemand anderer zurückgeben kann, kannst du sie nie wieder erhalten.",
|
||||
"You do not have permissions to add rooms to this space": "Du hast keine Berechtigung, Räume zu diesem Space hinzuzufügen",
|
||||
"You do not have permissions to create new rooms in this space": "Du hast keine Berechtigung, neue Räume in diesem Space zu erstellen",
|
||||
"Edit devices": "Sitzungen anzeigen",
|
||||
"We couldn't create your DM.": "Wir konnten deine Direktnachricht nicht erstellen.",
|
||||
"Add existing rooms": "Bestehende Räume hinzufügen",
|
||||
|
@ -1799,8 +1769,6 @@
|
|||
"You have no ignored users.": "Du ignorierst keine Benutzer.",
|
||||
"Error processing voice message": "Fehler beim Verarbeiten der Sprachnachricht",
|
||||
"Select a room below first": "Wähle vorher einen Raum aus",
|
||||
"Join the beta": "Beta beitreten",
|
||||
"Leave the beta": "Beta verlassen",
|
||||
"Want to add a new room instead?": "Willst du einen neuen Raum hinzufügen?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Raum hinzufügen …",
|
||||
|
@ -1843,19 +1811,10 @@
|
|||
"See when people join, leave, or are invited to your active room": "Anzeigen, wenn Leute den aktuellen Raum betreten, verlassen oder in ihn eingeladen werden",
|
||||
"Error - Mixed content": "Fehler - Uneinheitlicher Inhalt",
|
||||
"View source": "Rohdaten anzeigen",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Die Person verbreitet Falschinformation.\nDies wird an die Raummoderation gemeldet.",
|
||||
"Report": "Melden",
|
||||
"Collapse reply thread": "Antworten verbergen",
|
||||
"Show preview": "Vorschau zeigen",
|
||||
"Settings - %(spaceName)s": "Einstellungen - %(spaceName)s",
|
||||
"Report the entire room": "Den ganzen Raum melden",
|
||||
"Spam or propaganda": "Spam oder Propaganda",
|
||||
"Illegal Content": "Illegale Inhalte",
|
||||
"Toxic Behaviour": "Toxisches Verhalten",
|
||||
"Disagree": "Ablehnen",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Bitte wähle eine Kategorie aus und beschreibe, was die Nachricht missbräuchlich macht.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Anderer Grund. Bitte beschreibe das Problem.\nDies wird an die Raummoderation gemeldet.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Dieser Benutzer spammt den Raum mit Werbung, Links zu Werbung oder Propaganda.\nDies wird an die Raummoderation gemeldet.",
|
||||
"Please provide an address": "Bitte gib eine Adresse an",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Füge Adressen für diesen Space hinzu, damit andere Leute ihn über deinen Heim-Server (%(localDomain)s) finden können",
|
||||
"To publish an address, it needs to be set as a local address first.": "Damit du die Adresse veröffentlichen kannst, musst du sie zuerst als lokale Adresse hinzufügen.",
|
||||
|
@ -1879,8 +1838,6 @@
|
|||
"Some invites couldn't be sent": "Einige Einladungen konnten nicht versendet werden",
|
||||
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Die anderen wurden gesendet, aber die folgenden Leute konnten leider nicht in <RoomName/> eingeladen werden",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Initialisierung der Suche fehlgeschlagen, für weitere Informationen öffne <a>deine Einstellungen</a>",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Der Raum beinhaltet illegale oder toxische Nachrichten und die Raummoderation verhindert es nicht.\nDies wird an die Betreiber von %(homeserver)s gemeldet werden. Diese können jedoch die verschlüsselten Nachrichten nicht lesen.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Diese Person verhält sich illegal, beispielsweise durch das Veröffentlichen persönlicher Daten oder Gewaltdrohungen.\nDies wird an die Raummoderation gemeldet, welche dies an die Behörden weitergeben kann.",
|
||||
"Unnamed audio": "Unbenannte Audiodatei",
|
||||
"Show %(count)s other previews": {
|
||||
"one": "%(count)s andere Vorschau zeigen",
|
||||
|
@ -2028,20 +1985,7 @@
|
|||
"View in room": "Im Raum anzeigen",
|
||||
"Enter your Security Phrase or <button>use your Security Key</button> to continue.": "Um fortzufahren gib die Sicherheitsphrase ein oder <button>verwende deinen Sicherheitsschlüssel</button>.",
|
||||
"Would you like to leave the rooms in this space?": "Willst du die Räume in diesem Space verlassen?",
|
||||
"Include Attachments": "Anhänge einbeziehen",
|
||||
"Size Limit": "Größenlimit",
|
||||
"Format": "Format",
|
||||
"Export Chat": "Unterhaltung exportieren",
|
||||
"Exporting your data": "Deine Daten werden exportiert",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Willst du das Exportieren deiner Daten wirklich abbrechen? Falls ja, musst du komplett von neu beginnen.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Export erfolgreich. Du kannst ihn in deinem Download-Verzeichnis finden.",
|
||||
"The export was cancelled successfully": "Exportieren abgebrochen",
|
||||
"Export Successful": "Exportieren erfolgreich",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Anzahl der Nachrichten",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Die Anzahl der Nachrichten mus zwischen %(min)s und %(max)s liegen",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Die Größe muss eine Zahl zwischen %(min)s MB und %(max)s MB sein",
|
||||
"Enter a number between %(min)s and %(max)s": "Gib eine Zahl zwischen %(min)s und %(max)s ein",
|
||||
"In reply to <a>this message</a>": "Antwort auf <a>diese Nachricht</a>",
|
||||
"Downloading": "Herunterladen",
|
||||
"No answer": "Keine Antwort",
|
||||
|
@ -2077,7 +2021,6 @@
|
|||
"We call the places where you can host your account 'homeservers'.": "Wir nennen die Orte, an denen du dein Benutzerkonto speichern kannst, „Heim-Server“.",
|
||||
"These are likely ones other room admins are a part of.": "Das sind vermutliche solche, in denen andere Raumadministratoren Mitglieder sind.",
|
||||
"If you can't see who you're looking for, send them your invite link below.": "Wenn du die gesuchte Person nicht findest, sende ihr den Einladungslink zu.",
|
||||
"Select from the options below to export chats from your timeline": "Wähle die gewünschten Optionen für den Export des Verlaufs",
|
||||
"Add a space to a space you manage.": "Einen Space zu einem Space den du verwaltest hinzufügen.",
|
||||
"You can't disable this later. Bridges & most bots won't work yet.": "Du kannst dies später nicht deaktivieren. Brücken und die meisten Bots werden noch nicht funktionieren.",
|
||||
"Add option": "Antwortmöglichkeit hinzufügen",
|
||||
|
@ -2148,7 +2091,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s-Menü",
|
||||
"Join public room": "Öffentlichen Raum betreten",
|
||||
"Add people": "Personen hinzufügen",
|
||||
"You do not have permissions to invite people to this space": "Du hast keine Berechtigung, Personen in diesen Space einzuladen",
|
||||
"Invite to space": "In Space einladen",
|
||||
"Start new chat": "Neue Direktnachricht",
|
||||
"Recently viewed": "Kürzlich besucht",
|
||||
|
@ -2309,12 +2251,9 @@
|
|||
"Poll": "Umfrage",
|
||||
"Voice Message": "Sprachnachricht",
|
||||
"Hide stickers": "Sticker ausblenden",
|
||||
"You do not have permissions to add spaces to this space": "Du hast keine Berechtigung, Spaces zu diesem Space hinzuzufügen",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Rückmeldung gesendet! Danke, wir wissen es zu schätzen!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s und %(space2Name)s",
|
||||
"Use <arrows/> to scroll": "Benutze <arrows/> zum scrollen",
|
||||
"Click for more info": "Klicke für mehr Infos",
|
||||
"This is a beta feature": "Dies ist eine Betafunktion",
|
||||
"Automatically send debug logs when key backup is not functioning": "Sende automatisch Protokolle zur Fehlerkorrektur, wenn die Schlüsselsicherung nicht funktioniert",
|
||||
"Open user settings": "Benutzereinstellungen öffnen",
|
||||
"Switch to space by number": "Mit Nummer zu Space springen",
|
||||
|
@ -2349,7 +2288,6 @@
|
|||
"Match system": "An System anpassen",
|
||||
"Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Antworte auf einen Thread oder klicke bei einer Nachricht auf „%(replyInThread)s“, um einen Thread zu starten.",
|
||||
"We'll create rooms for each of them.": "Wir werden für jedes einen Raum erstellen.",
|
||||
"Export Cancelled": "Exportieren abgebrochen",
|
||||
"What location type do you want to share?": "Wie willst du deinen Standort teilen?",
|
||||
"Drop a Pin": "Standort setzen",
|
||||
"My live location": "Mein Echtzeit-Standort",
|
||||
|
@ -2476,14 +2414,12 @@
|
|||
"Show: Matrix rooms": "Zeige: Matrix-Räume",
|
||||
"Open room": "Raum öffnen",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Wenn du dich abmeldest, werden die Schlüssel auf diesem Gerät gelöscht. Das bedeutet, dass du keine verschlüsselten Nachrichten mehr lesen kannst, wenn du die Schlüssel nicht auf einem anderen Gerät oder eine Sicherung auf dem Server hast.",
|
||||
"Ignore user": "Nutzer ignorieren",
|
||||
"Show rooms": "Räume zeigen",
|
||||
"Search for": "Suche nach",
|
||||
"%(count)s Members": {
|
||||
"one": "%(count)s Mitglied",
|
||||
"other": "%(count)s Mitglieder"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Prüfe, ob du alle aktuellen und zukünftigen Nachrichten dieses Nutzers verstecken willst.",
|
||||
"Show spaces": "Spaces zeigen",
|
||||
"You cannot search for rooms that are neither a room nor a space": "Du kannst nicht nach Räumen suchen, die kein Raum oder Space sind",
|
||||
"Some results may be hidden for privacy": "Einige Vorschläge könnten aus Gründen der Privatsphäre ausgeblendet sein",
|
||||
|
@ -2495,8 +2431,6 @@
|
|||
"Live location ended": "Echtzeit-Standort beendet",
|
||||
"Live until %(expiryTime)s": "Echtzeit bis %(expiryTime)s",
|
||||
"Updated %(humanizedUpdateTime)s": "%(humanizedUpdateTime)s aktualisiert",
|
||||
"Joining the beta will reload %(brand)s.": "Die Teilnahme an der Beta wird %(brand)s neustarten.",
|
||||
"Leaving the beta will reload %(brand)s.": "Das Verlassen der Beta wird %(brand)s neustarten.",
|
||||
"Other options": "Andere Optionen",
|
||||
"If you can't find the room you're looking for, ask for an invite or create a new room.": "Falls du den Raum nicht findest, frag nach einer Einladung oder erstelle einen neuen Raum.",
|
||||
"An error occurred whilst sharing your live location, please try again": "Ein Fehler ist während des Teilens deines Echtzeit-Standorts aufgetreten, bitte versuche es erneut",
|
||||
|
@ -2558,7 +2492,6 @@
|
|||
"other": "In %(spaceName)s und %(count)s weiteren Spaces."
|
||||
},
|
||||
"In %(spaceName)s.": "Im Space %(spaceName)s.",
|
||||
"Download %(brand)s": "%(brand)s herunterladen",
|
||||
"Reset bearing to north": "Ausrichtung nach Norden zurücksetzen",
|
||||
"Mapbox logo": "Mapbox Logo",
|
||||
"Location not available": "Standort nicht verfügbar",
|
||||
|
@ -2569,9 +2502,6 @@
|
|||
"Online community members": "Online Community-Mitglieder",
|
||||
"You don't have permission to share locations": "Dir fehlt die Berechtigung, Echtzeit-Standorte freigeben zu dürfen",
|
||||
"Un-maximise": "Maximieren rückgängig machen",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play und das Google Play Logo sind eingetragene Markenzeichen von Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® und das Apple Logo® sind eingetragene Markenzeichen von Apple Inc.",
|
||||
"Download on the App Store": "Im App Store herunterladen",
|
||||
"Start a group chat": "Gruppenunterhaltung beginnen",
|
||||
"If you can't see who you're looking for, send them your invite link.": "Falls du nicht findest wen du suchst, send ihnen deinen Einladungslink.",
|
||||
"Interactively verify by emoji": "Interaktiv per Emoji verifizieren",
|
||||
|
@ -2582,9 +2512,6 @@
|
|||
"Signing out your devices will delete the message encryption keys stored on them, making encrypted chat history unreadable.": "Das Abmelden deines Geräts wird die Verschlüsselungsschlüssel löschen, woraufhin verschlüsselte Nachrichtenverläufe nicht mehr lesbar sein werden.",
|
||||
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>Tipp:</b> Nutze “%(replyInThread)s” beim Schweben über eine Nachricht.",
|
||||
"To join, please enable video rooms in Labs first": "Zum Betreten, aktiviere bitte Videoräume in den Laboreinstellungen",
|
||||
"Download %(brand)s Desktop": "%(brand)s Desktop herunterladen",
|
||||
"Get it on Google Play": "In Google Play erhältlich",
|
||||
"Get it on F-Droid": "In F-Droid erhältlich",
|
||||
"View related event": "Zugehöriges Ereignis anzeigen",
|
||||
"Stop and close": "Beenden und schließen",
|
||||
"We'll help you get connected.": "Wir helfen dir, dich zu vernetzen.",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s und %(user2)s",
|
||||
"Sliding Sync configuration": "Sliding-Sync-Konfiguration",
|
||||
"Your server has native support": "Dein Server unterstützt dies nativ",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s oder %(appLinks)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s oder %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s oder %(recoveryFile)s",
|
||||
"Proxy URL": "Proxy-URL",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Befolge die Anweisungen, die wir an <b>%(email)s</b> gesendet haben",
|
||||
"Sign out of all devices": "Auf allen Geräten abmelden",
|
||||
"Confirm new password": "Neues Passwort bestätigen",
|
||||
"Reset your password": "Setze dein Passwort zurück",
|
||||
"Reset password": "Passwort zurücksetzen",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Zu viele Versuche in zu kurzer Zeit. Versuche es erneut nach %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Zu viele Versuche in zu kurzer Zeit. Warte ein wenig, bevor du es erneut versuchst.",
|
||||
"Change input device": "Eingabegerät wechseln",
|
||||
|
@ -2828,11 +2752,8 @@
|
|||
"Loading live location…": "Lade Live-Standort …",
|
||||
"Fetching keys from server…": "Lade Schlüssel vom Server …",
|
||||
"Checking…": "Überprüfe …",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Der Raum beinhaltet illegale oder toxische Nachrichten und die Raummoderation verhindert es nicht.\nDies wird an die Betreiber von %(homeserver)s gemeldet werden.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Dieser Benutzer zeigt toxisches Verhalten, etwa durch Beleidigen anderer Personen, Teilen von Erwachseneninhalten in familienfreundlichen Räumen oder anderweitiges Missachten von Raumregeln.\nDies wird an die Raummoderatoren gemeldet.",
|
||||
"Enable '%(manageIntegrations)s' in Settings to do this.": "Aktiviere „%(manageIntegrations)s“ in den Einstellungen, um dies zu tun.",
|
||||
"Waiting for partner to confirm…": "Warte auf Bestätigung des Gesprächspartners …",
|
||||
"Processing…": "Verarbeite …",
|
||||
"Adding…": "Füge hinzu …",
|
||||
"Write something…": "Schreibe etwas …",
|
||||
"Rejecting invite…": "Lehne Einladung ab …",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "Unbekannter Fehler während der Passwortänderung (%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "Fehler während der Passwortänderung: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Einladen per E-Mail-Adresse ist nicht ohne Identitäts-Server möglich. Du kannst einen unter „Einstellungen“ einrichten.",
|
||||
"Unable to create room with moderation bot": "Erstellen eines Raumes mit Moderations-Bot nicht möglich",
|
||||
"Failed to download source media, no source url was found": "Herunterladen der Quellmedien fehlgeschlagen, da keine Quell-URL gefunden wurde",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Sobald eingeladene Benutzer %(brand)s beigetreten sind, werdet ihr euch unterhalten können und der Raum wird Ende-zu-Ende-verschlüsselt sein",
|
||||
"Waiting for users to join %(brand)s": "Warte darauf, dass Benutzer %(brand)s beitreten",
|
||||
|
@ -3091,7 +3011,8 @@
|
|||
"secure_backup": "Verschlüsselte Sicherung",
|
||||
"cross_signing": "Quersignierung",
|
||||
"identity_server": "Identitäts-Server",
|
||||
"integration_manager": "Integrationsverwaltung"
|
||||
"integration_manager": "Integrationsverwaltung",
|
||||
"qr_code": "QR-Code"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Fortfahren",
|
||||
|
@ -3195,7 +3116,16 @@
|
|||
"clear": "Löschen"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Benutzermenü"
|
||||
"user_menu": "Benutzermenü",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s ungelesene Nachrichten einschließlich Erwähnungen.",
|
||||
"one": "1 ungelesene Erwähnung."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s ungelesene Nachrichten.",
|
||||
"one": "1 ungelesene Nachricht."
|
||||
},
|
||||
"unread_messages": "Ungelesene Nachrichten."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videoräume",
|
||||
|
@ -3250,7 +3180,13 @@
|
|||
"group_themes": "Themen",
|
||||
"group_encryption": "Verschlüsselung",
|
||||
"group_experimental": "Experimentell",
|
||||
"group_developer": "Entwickler"
|
||||
"group_developer": "Entwickler",
|
||||
"beta_feature": "Dies ist eine Betafunktion",
|
||||
"click_for_info": "Klicke für mehr Infos",
|
||||
"leave_beta_reload": "Das Verlassen der Beta wird %(brand)s neustarten.",
|
||||
"join_beta_reload": "Die Teilnahme an der Beta wird %(brand)s neustarten.",
|
||||
"leave_beta": "Beta verlassen",
|
||||
"join_beta": "Beta beitreten"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Startseite",
|
||||
|
@ -3381,7 +3317,15 @@
|
|||
"enable_notifications": "Benachrichtigungen einschalten",
|
||||
"download_app_description": "Nimm %(brand)s mit, um nichts mehr zu verpassen",
|
||||
"download_app_action": "Apps herunterladen",
|
||||
"download_app": "%(brand)s herunterladen"
|
||||
"download_app": "%(brand)s herunterladen",
|
||||
"download_brand": "%(brand)s herunterladen",
|
||||
"download_brand_desktop": "%(brand)s Desktop herunterladen",
|
||||
"qr_or_app_links": "%(qrCode)s oder %(appLinks)s",
|
||||
"download_app_store": "Im App Store herunterladen",
|
||||
"download_google_play": "In Google Play erhältlich",
|
||||
"download_f_droid": "In F-Droid erhältlich",
|
||||
"apple_trademarks": "App Store® und das Apple Logo® sind eingetragene Markenzeichen von Apple Inc.",
|
||||
"google_trademarks": "Google Play und das Google Play Logo sind eingetragene Markenzeichen von Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Kürzlich besuchte Räume anzeigen",
|
||||
|
@ -3600,7 +3544,24 @@
|
|||
"error_fetching_file": "Fehler beim Laden der Datei",
|
||||
"file_attached": "Datei angehängt",
|
||||
"fetching_events": "Rufe Ereignisse ab …",
|
||||
"creating_output": "Erstelle Ausgabe …"
|
||||
"creating_output": "Erstelle Ausgabe …",
|
||||
"processing": "Verarbeite …",
|
||||
"enter_number_between_min_max": "Gib eine Zahl zwischen %(min)s und %(max)s ein",
|
||||
"size_limit_min_max": "Die Größe muss eine Zahl zwischen %(min)s MB und %(max)s MB sein",
|
||||
"num_messages_min_max": "Die Anzahl der Nachrichten mus zwischen %(min)s und %(max)s liegen",
|
||||
"num_messages": "Anzahl der Nachrichten",
|
||||
"cancelled": "Exportieren abgebrochen",
|
||||
"cancelled_detail": "Exportieren abgebrochen",
|
||||
"successful": "Exportieren erfolgreich",
|
||||
"successful_detail": "Export erfolgreich. Du kannst ihn in deinem Download-Verzeichnis finden.",
|
||||
"confirm_stop": "Willst du das Exportieren deiner Daten wirklich abbrechen? Falls ja, musst du komplett von neu beginnen.",
|
||||
"exporting_your_data": "Deine Daten werden exportiert",
|
||||
"title": "Unterhaltung exportieren",
|
||||
"select_option": "Wähle die gewünschten Optionen für den Export des Verlaufs",
|
||||
"format": "Format",
|
||||
"messages": "Nachrichten",
|
||||
"size_limit": "Größenlimit",
|
||||
"include_attachments": "Anhänge einbeziehen"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Videoraum erstellen",
|
||||
|
@ -4014,7 +3975,6 @@
|
|||
"unsupported": "Anrufe werden nicht unterstützt",
|
||||
"unsupported_browser": "Sie können in diesem Browser keien Anrufe durchführen."
|
||||
},
|
||||
"Messages": "Nachrichten",
|
||||
"Other": "Sonstiges",
|
||||
"Advanced": "Erweitert",
|
||||
"room_settings": {
|
||||
|
@ -4102,5 +4062,53 @@
|
|||
"spaceinvaders_message": "sendet Space Invaders",
|
||||
"hearts_description": "Sendet die Nachricht mit Herzen",
|
||||
"hearts_message": "Sendet Herzen"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Du hast keine Berechtigung, Personen in diesen Space einzuladen",
|
||||
"error_no_permission_create_room": "Du hast keine Berechtigung, neue Räume in diesem Space zu erstellen",
|
||||
"error_no_permission_add_room": "Du hast keine Berechtigung, Räume zu diesem Space hinzuzufügen",
|
||||
"error_no_permission_add_space": "Du hast keine Berechtigung, Spaces zu diesem Space hinzuzufügen"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Weiter mit %(provider)s",
|
||||
"sign_in_with_sso": "Einmalanmeldung nutzen",
|
||||
"sso": "Single Sign-on",
|
||||
"reset_password_action": "Passwort zurücksetzen",
|
||||
"reset_password_title": "Setze dein Passwort zurück"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Räume mit ungelesenen Nachrichten zuerst zeigen",
|
||||
"show_previews": "Nachrichtenvorschau anzeigen",
|
||||
"sort_by": "Sortieren nach",
|
||||
"sort_by_activity": "Aktivität",
|
||||
"sort_by_alphabet": "A–Z",
|
||||
"sublist_options": "Optionen anzeigen",
|
||||
"show_n_more": {
|
||||
"other": "%(count)s weitere anzeigen",
|
||||
"one": "%(count)s weitere anzeigen"
|
||||
},
|
||||
"show_less": "Weniger anzeigen",
|
||||
"notification_options": "Benachrichtigungsoptionen"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Bitte gib an, weshalb du einen Fehler meldest.",
|
||||
"unable_create_room_moderation_bot": "Erstellen eines Raumes mit Moderations-Bot nicht möglich",
|
||||
"ignore_user": "Nutzer ignorieren",
|
||||
"hide_messages_from_user": "Prüfe, ob du alle aktuellen und zukünftigen Nachrichten dieses Nutzers verstecken willst.",
|
||||
"nature_disagreement": "Die Person verbreitet Falschinformation.\nDies wird an die Raummoderation gemeldet.",
|
||||
"nature_toxic": "Dieser Benutzer zeigt toxisches Verhalten, etwa durch Beleidigen anderer Personen, Teilen von Erwachseneninhalten in familienfreundlichen Räumen oder anderweitiges Missachten von Raumregeln.\nDies wird an die Raummoderatoren gemeldet.",
|
||||
"nature_illegal": "Diese Person verhält sich illegal, beispielsweise durch das Veröffentlichen persönlicher Daten oder Gewaltdrohungen.\nDies wird an die Raummoderation gemeldet, welche dies an die Behörden weitergeben kann.",
|
||||
"nature_spam": "Dieser Benutzer spammt den Raum mit Werbung, Links zu Werbung oder Propaganda.\nDies wird an die Raummoderation gemeldet.",
|
||||
"report_to_homeserver_encrypted": "Der Raum beinhaltet illegale oder toxische Nachrichten und die Raummoderation verhindert es nicht.\nDies wird an die Betreiber von %(homeserver)s gemeldet werden. Diese können jedoch die verschlüsselten Nachrichten nicht lesen.",
|
||||
"report_to_homeserver": "Der Raum beinhaltet illegale oder toxische Nachrichten und die Raummoderation verhindert es nicht.\nDies wird an die Betreiber von %(homeserver)s gemeldet werden.",
|
||||
"nature_other": "Anderer Grund. Bitte beschreibe das Problem.\nDies wird an die Raummoderation gemeldet.",
|
||||
"nature": "Bitte wähle eine Kategorie aus und beschreibe, was die Nachricht missbräuchlich macht.",
|
||||
"disagree": "Ablehnen",
|
||||
"toxic_behaviour": "Toxisches Verhalten",
|
||||
"illegal_content": "Illegale Inhalte",
|
||||
"spam_or_propaganda": "Spam oder Propaganda",
|
||||
"report_entire_room": "Den ganzen Raum melden",
|
||||
"report_content_to_homeserver": "Inhalte an die Administration deines Heim-Servers melden",
|
||||
"description": "Wenn du diese Nachricht meldest, wird die eindeutige Ereignis-ID an die Administration deines Heim-Servers übermittelt. Wenn die Nachrichten in diesem Raum verschlüsselt sind, wird deine Heim-Server-Administration nicht in der Lage sein, Nachrichten zu lesen oder Medien einzusehen."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -591,7 +591,6 @@
|
|||
"Connectivity to the server has been lost": "Χάθηκε η συνδεσιμότητα με τον διακομιστή",
|
||||
"User Busy": "Χρήστης Απασχολημένος",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Επιβεβαιώστε την προσθήκη αυτού του αριθμού τηλεφώνου με την χρήση Single Sign On για να επικυρώσετε την ταυτότητα σας.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Επιβεβαιώστε την προσθήκη αυτής της διεύθυνσης ηλ. ταχυδρομείου με την χρήση Single Sign On για να επικυρώσετε την ταυτότητα σας.",
|
||||
"Use Single Sign On to continue": "Χρήση Single Sign On για συνέχεια",
|
||||
"Unignored user": "Χρήστης από κατάργηση παράβλεψης",
|
||||
|
@ -1157,17 +1156,13 @@
|
|||
"Reason: %(reason)s": "Αιτία: %(reason)s",
|
||||
"Sign Up": "Εγγραφή",
|
||||
"Join the conversation with an account": "Συμμετοχή στη συζήτηση με λογιαριασμό",
|
||||
"You do not have permissions to add spaces to this space": "Δεν έχετε δικαίωμα προσθήκης χώρων σε αυτόν τον χώρο",
|
||||
"Add space": "Προσθήκη χώρου",
|
||||
"Empty room": "Άδειο δωμάτιο",
|
||||
"Suggested Rooms": "Προτεινόμενα δωμάτια",
|
||||
"Add room": "Προσθήκη δωματίου",
|
||||
"Explore public rooms": "Εξερευνήστε δημόσια δωμάτια",
|
||||
"You do not have permissions to add rooms to this space": "Δεν έχετε δικαίωμα προσθήκης δωματίων σε αυτόν τον χώρο",
|
||||
"Add existing room": "Προσθήκη υπάρχοντος δωματίου",
|
||||
"You do not have permissions to create new rooms in this space": "Δεν έχετε δικαίωμα δημιουργίας νέων δωματίων σε αυτόν τον χώρο",
|
||||
"Add people": "Προσθήκη ατόμων",
|
||||
"You do not have permissions to invite people to this space": "Δεν έχετε δικαίωμα πρόσκλησης ατόμων σε αυτόν τον χώρο",
|
||||
"Invite to space": "Πρόσκληση στον χώρο",
|
||||
"Start new chat": "Έναρξη νέας συνομιλίας",
|
||||
"Room options": "Επιλογές δωματίου",
|
||||
|
@ -1312,12 +1307,6 @@
|
|||
"The room upgrade could not be completed": "Δεν ήταν δυνατή η ολοκλήρωση της αναβάθμισης δωματίου",
|
||||
"Failed to upgrade room": "Αποτυχία αναβάθμισης δωματίου",
|
||||
"Room Settings - %(roomName)s": "Ρυθμίσεις Δωματίου - %(roomName)s",
|
||||
"Report Content to Your Homeserver Administrator": "Αναφορά Περιεχομένου στον Διαχειριστή του Διακομιστή σας",
|
||||
"Report the entire room": "Αναφορά ολόκληρου του δωματίου",
|
||||
"Spam or propaganda": "Spam ή προπαγάνδα",
|
||||
"Illegal Content": "Παράνομο Περιεχόμενο",
|
||||
"Toxic Behaviour": "Τοξική Συμπεριφορά",
|
||||
"Disagree": "Διαφωνώ",
|
||||
"Email (optional)": "Email (προαιρετικό)",
|
||||
"You were banned from %(roomName)s by %(memberName)s": "Έχετε αποκλειστεί από το %(roomName)s από τον %(memberName)s",
|
||||
"Re-join": "Επανασύνδεση",
|
||||
|
@ -1399,7 +1388,6 @@
|
|||
"Doesn't look like a valid email address": "Δε μοιάζει με έγκυρη διεύθυνση email",
|
||||
"Enter email address": "Εισάγετε διεύθυνση email",
|
||||
"This room is public": "Αυτό το δωμάτιο είναι δημόσιο",
|
||||
"Click for more info": "Κλικ για περισσότερες πληροφορίες",
|
||||
"Move right": "Μετακίνηση δεξιά",
|
||||
"Move left": "Μετακίνηση αριστερά",
|
||||
"Revoke permissions": "Ανάκληση αδειών",
|
||||
|
@ -1491,29 +1479,8 @@
|
|||
"Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Το Matrix.org είναι ο μεγαλύτερος δημόσιος διακομιστής στον κόσμο, επομένως είναι ένα καλό μέρος για να ξεκινήσετε.",
|
||||
"Specify a homeserver": "Καθορίστε τον κεντρικό διακομιστή σας",
|
||||
"Invalid URL": "Μη έγκυρο URL",
|
||||
"Unread messages.": "Μη αναγνωσμένα μηνύματα.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 μη αναγνωσμένο μήνυμα.",
|
||||
"other": "%(count)s μη αναγνωσμένα μηνύματα."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 μη αναγνωσμένη αναφορά.",
|
||||
"other": "%(count)s μη αναγνωσμένα μηνύματα συμπεριλαμβανομένων των αναφορών."
|
||||
},
|
||||
"Copy room link": "Αντιγραφή συνδέσμου δωματίου",
|
||||
"Forget Room": "Ξεχάστε το δωμάτιο",
|
||||
"Notification options": "Επιλογές ειδοποίησης",
|
||||
"Show less": "Εμφάνιση λιγότερων",
|
||||
"Show %(count)s more": {
|
||||
"one": "Εμφάνιση %(count)s περισσότερων",
|
||||
"other": "Εμφάνιση %(count)s περισσότερων"
|
||||
},
|
||||
"List options": "Επιλογές λίστας",
|
||||
"A-Z": "Α-Ω",
|
||||
"Activity": "Δραστηριότητα",
|
||||
"Sort by": "Ταξινόμηση κατά",
|
||||
"Show previews of messages": "Εμφάνιση προεπισκοπήσεων μηνυμάτων",
|
||||
"Show rooms with unread messages first": "Εμφάνιση δωματίων με μη αναγνωσμένα μηνύματα πρώτα",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "Δεν είναι δυνατή η προεπισκόπηση του %(roomName)s. Θέλετε να συμμετάσχετε;",
|
||||
"You're previewing %(roomName)s. Want to join it?": "Κάνετε προεπισκόπηση στο %(roomName)s. Θέλετε να συμμετάσχετε;",
|
||||
"Reject & Ignore user": "Απόρριψη & Παράβλεψη χρήστη",
|
||||
|
@ -1612,12 +1579,7 @@
|
|||
},
|
||||
"No microphone found": "Δε βρέθηκε μικρόφωνο",
|
||||
"We were unable to access your microphone. Please check your browser settings and try again.": "Δεν ήταν δυνατή η πρόσβαση στο μικρόφωνο σας. Ελέγξτε τις ρυθμίσεις του προγράμματος περιήγησης σας και δοκιμάστε ξανά.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Η εξαγωγή σας ήταν επιτυχής. Βρείτε τη στο φάκελο Λήψεις.",
|
||||
"Export Successful": "Επιτυχής Εξαγωγή",
|
||||
"The export was cancelled successfully": "Η εξαγωγή ακυρώθηκε με επιτυχία",
|
||||
"Export Cancelled": "Η Εξαγωγή ακυρώθηκε",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Αριθμός μηνυμάτων",
|
||||
"End Poll": "Τερματισμός δημοσκόπησης",
|
||||
"Server did not require any authentication": "Ο διακομιστής δεν απαίτησε κάποιο έλεγχο ταυτότητας",
|
||||
"Server did not return valid authentication information.": "Ο διακομιστής δεν επέστρεψε έγκυρες πληροφορίες ελέγχου ταυτότητας.",
|
||||
|
@ -1770,7 +1732,6 @@
|
|||
"Discovery": "Ανακάλυψη",
|
||||
"Developer tools": "Εργαλεία προγραμματιστή",
|
||||
"Got It": "Κατανοώ",
|
||||
"Export Chat": "Εξαγωγή Συνομιλίας",
|
||||
"Sending": "Αποστολή",
|
||||
"Anyone will be able to find and join this room, not just members of <SpaceName/>.": "Οποιοσδήποτε θα μπορεί να βρει και να εγγραφεί σε αυτόν τον χώρο, όχι μόνο μέλη του <SpaceName/>.",
|
||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Μπορείτε να χρησιμοποιήσετε τις προσαρμοσμένες επιλογές διακομιστή για να συνδεθείτε σε άλλους διακομιστές Matrix, καθορίζοντας μια διαφορετική διεύθυνση URL του κεντρικού διακομιστή. Αυτό σας επιτρέπει να χρησιμοποιείτε το %(brand)s με έναν υπάρχοντα λογαριασμό Matrix σε διαφορετικό τοπικό διακομιστή.",
|
||||
|
@ -1783,10 +1744,6 @@
|
|||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "Μπορείτε να επικοινωνήσετε μαζί μου εάν θέλετε να έρθετε σε επαφή ή να με αφήσετε να δοκιμάσω επερχόμενες ιδέες",
|
||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Η πλατφόρμα και το όνομα χρήστη σας θα καταγραφούν για να μας βοηθήσουν να χρησιμοποιήσουμε τα σχόλιά σας όσο μπορούμε περισσότερο.",
|
||||
"Feedback sent": "Τα σχόλια στάλθηκαν",
|
||||
"Select from the options below to export chats from your timeline": "Επιλέξτε από τις παρακάτω επιλογές για να εξαγάγετε συνομιλίες από το χρονολόγιό σας",
|
||||
"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 MB και %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Εισαγάγετε έναν αριθμό μεταξύ %(min)s και %(max)s",
|
||||
"Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "Είστε βέβαιοι ότι θέλετε να τερματίσετε αυτήν τη δημοσκόπηση; Αυτό θα εμφανίσει τα τελικά αποτελέσματα της δημοσκόπησης και θα εμποδίσει νέους ψήφους.",
|
||||
"Sorry, the poll did not end. Please try again.": "Συγνώμη, η δημοσκόπηση δεν τερματίστηκε. Παρακαλώ προσπαθήστε ξανά.",
|
||||
"Failed to end poll": "Αποτυχία τερματισμού της δημοσκόπησης",
|
||||
|
@ -1852,7 +1809,6 @@
|
|||
"e.g. my-room": "π.χ. my-room",
|
||||
"Room address": "Διεύθυνση δωματίου",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Αδυναμία φόρτωσης του συμβάντος στο οποίο δόθηκε απάντηση, είτε δεν υπάρχει είτε δεν έχετε άδεια να το προβάλετε.",
|
||||
"QR Code": "Κωδικός QR",
|
||||
"Results are only revealed when you end the poll": "Τα αποτελέσματα αποκαλύπτονται μόνο όταν τελειώσετε τη δημοσκόπηση",
|
||||
"Voters see results as soon as they have voted": "Οι ψηφοφόροι βλέπουν τα αποτελέσματα μόλις ψηφίσουν",
|
||||
"Add option": "Προσθήκη επιλογής",
|
||||
|
@ -2097,9 +2053,6 @@
|
|||
"Country Dropdown": "Αναπτυσσόμενο μενού Χώρας",
|
||||
"This homeserver would like to make sure you are not a robot.": "Αυτός ο κεντρικός διακομιστής θα ήθελε να βεβαιωθεί ότι δεν είστε ρομπότ.",
|
||||
"You are sharing your live location": "Μοιράζεστε την τρέχουσα τοποθεσία σας",
|
||||
"Join the beta": "Συμμετοχή στη beta",
|
||||
"Leave the beta": "Αποχώρηση από τη beta",
|
||||
"This is a beta feature": "Αυτή είναι μια δυνατότητα beta",
|
||||
"Failed to load list of rooms.": "Αποτυχία φόρτωσης λίστας δωματίων.",
|
||||
"Mark as suggested": "Επισήμανση ως προτεινόμενο",
|
||||
"Mark as not suggested": "Επισήμανση ως μη προτεινόμενο",
|
||||
|
@ -2131,9 +2084,6 @@
|
|||
"Confirm to continue": "Επιβεβαιώστε για να συνεχίσετε",
|
||||
"To continue, use Single Sign On to prove your identity.": "Για να συνεχίσετε, χρησιμοποιήστε σύνδεση Single Sign On για να αποδείξετε την ταυτότητά σας.",
|
||||
"Feedback": "Ανατροφοδότηση",
|
||||
"Include Attachments": "Συμπεριλάβετε Συνημμένα",
|
||||
"Size Limit": "Όριο Μεγέθους",
|
||||
"Format": "Μορφή",
|
||||
"Enter the name of a new server you want to explore.": "Εισαγάγετε το όνομα ενός νέου διακομιστή που θέλετε να εξερευνήσετε.",
|
||||
"Add a new server": "Προσθήκη νέου διακομιστή",
|
||||
"Your server": "Ο διακομιστής σας",
|
||||
|
@ -2141,16 +2091,12 @@
|
|||
"You are not allowed to view this server's rooms list": "Δεν επιτρέπεται να δείτε τη λίστα δωματίων αυτού του διακομιστή",
|
||||
"Looks good": "Φαίνεται καλό",
|
||||
"Enter a server name": "Εισαγάγετε ένα όνομα διακομιστή",
|
||||
"Sign in with single sign-on": "Συνδεθείτε με απλή σύνδεση",
|
||||
"Continue with %(provider)s": "Συνεχίστε με %(provider)s",
|
||||
"Join millions for free on the largest public server": "Συμμετέχετε δωρεάν στον μεγαλύτερο δημόσιο διακομιστή",
|
||||
"Popout widget": "Αναδυόμενη μικροεφαρμογή",
|
||||
"Widget ID": "Ταυτότητα μικροεφαρμογής",
|
||||
"toggle event": "μεταβολή συμβάντος",
|
||||
"Could not connect media": "Δεν ήταν δυνατή η σύνδεση πολυμέσων",
|
||||
"Home is useful for getting an overview of everything.": "Ο Αρχικός χώρος είναι χρήσιμος για να έχετε μια επισκόπηση των πάντων.",
|
||||
"Exporting your data": "Εξαγωγή των δεδομένων σας",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Είστε βέβαιοι ότι θέλετε να διακόψετε την εξαγωγή των δεδομένων σας; Εάν το κάνετε, θα πρέπει να ξεκινήσετε από την αρχή.",
|
||||
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Δεν είναι δυνατή η εύρεση προφίλ για τα αναγνωριστικά Matrix που αναφέρονται παρακάτω - θα θέλατε να τα προσκαλέσετε ούτως ή άλλως;",
|
||||
"Adding spaces has moved.": "Η προσθήκη χώρων μετακινήθηκε.",
|
||||
"And %(count)s more...": {
|
||||
|
@ -2232,13 +2178,6 @@
|
|||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Αυτό συνήθως επηρεάζει μόνο τον τρόπο επεξεργασίας του δωματίου στον διακομιστή. Εάν αντιμετωπίζετε προβλήματα με το %(brand)s σας, <a>αναφέρετε ένα σφάλμα</a>.",
|
||||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Αυτό συνήθως επηρεάζει μόνο τον τρόπο επεξεργασίας του δωματίου στον διακομιστή. Εάν αντιμετωπίζετε προβλήματα με το %(brand)s σας, αναφέρετε ένα σφάλμα.",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Η αναβάθμιση αυτού του δωματίου απαιτεί τη διαγραφή του και τη δημιουργία ενός νέου δωματίου στη θέση του. Για να προσφέρουμε στα μέλη του την καλύτερη δυνατή εμπειρία, θα:",
|
||||
"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.": "Η αναφορά αυτού του μηνύματος θα στείλει το μοναδικό «αναγνωριστικό συμβάντος» στον διαχειριστή του διακομιστή σας. Εάν τα μηνύματα σε αυτό το δωμάτιο είναι κρυπτογραφημένα, ο διαχειριστής του διακομιστή σας δε θα μπορεί να διαβάσει το κείμενο του μηνύματος ή να προβάλει αρχεία και εικόνες.",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Παρακαλώ επιλέξτε το είδος και περιγράψτε τι κάνει αυτό το μήνυμα καταχρηστικό.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Οποιοσδήποτε άλλος λόγος. Παρακαλώ περιγράψτε το πρόβλημα.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Αυτός ο χρήστης στέλνει ανεπιθύμητα μηνύματα στην αίθουσα με διαφημίσεις, συνδέσμους προς διαφημίσεις ή προπαγάνδα.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Αυτός ο χρήστης εμφανίζει παράνομη συμπεριφορά, για παράδειγμα, διαρρέει απόρρητες πληροφορίες ατόμων ή απειλεί με βία.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου, οι οποίοι ενδέχεται να το αναφέρουν στις αρμόδιες αρχές.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Αυτό που γράφει αυτός ο χρήστης είναι λάθος.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"Please fill why you're reporting.": "Παρακαλώ πείτε μας γιατί κάνετε αναφορά.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Μια προειδοποίηση, αν δεν προσθέσετε ένα email και ξεχάσετε τον κωδικό πρόσβασης, ενδέχεται να <b>χάσετε οριστικά την πρόσβαση στον λογαριασμό σας</b>.",
|
||||
"Incompatible local cache": "Μη συμβατή τοπική κρυφή μνήμη",
|
||||
"%(brand)s encountered an error during upload of:": "Το %(brand)s αντιμετώπισε ένα σφάλμα κατά τη μεταφόρτωση του:",
|
||||
|
@ -2287,7 +2226,6 @@
|
|||
"About homeservers": "Σχετικά με τους κεντρικούς διακομιστές",
|
||||
"Other homeserver": "Άλλος κεντρικός διακομιστής",
|
||||
"Unable to validate homeserver": "Δεν είναι δυνατή η επικύρωση του κεντρικού διακομιστή",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Αυτό το δωμάτιο είναι αφιερωμένο σε παράνομο ή τοξικό περιεχόμενο ή οι συντονιστές αποτυγχάνουν να μετριάσουν το παράνομο ή τοξικό περιεχόμενο.\nΑυτό θα αναφερθεί στους διαχειριστές του %(homeserver)s. Οι διαχειριστές ΔΕ θα μπορούν να διαβάσουν το κρυπτογραφημένο περιεχόμενο αυτού του δωματίου.",
|
||||
"The integration manager is offline or it cannot reach your homeserver.": "Ο διαχειριστής πρόσθετων είναι εκτός σύνδεσης ή δεν μπορεί να επικοινωνήσει με κεντρικό διακομιστή σας.",
|
||||
"The widget will verify your user ID, but won't be able to perform actions for you:": "Η μικροεφαρμογή θα επαληθεύσει το αναγνωριστικό χρήστη σας, αλλά δε θα μπορεί να εκτελέσει ενέργειες για εσάς:",
|
||||
"Allow this widget to verify your identity": "Επιτρέψτε σε αυτήν τη μικροεφαρμογή να επαληθεύσει την ταυτότητά σας",
|
||||
|
@ -2546,7 +2484,8 @@
|
|||
"secure_backup": "Ασφαλές αντίγραφο ασφαλείας",
|
||||
"cross_signing": "Διασταυρούμενη υπογραφή",
|
||||
"identity_server": "Διακομιστής ταυτότητας",
|
||||
"integration_manager": "Διαχειριστής πρόσθετων"
|
||||
"integration_manager": "Διαχειριστής πρόσθετων",
|
||||
"qr_code": "Κωδικός QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Συνέχεια",
|
||||
|
@ -2644,7 +2583,16 @@
|
|||
"clear": "Καθαρισμός"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Μενού χρήστη"
|
||||
"user_menu": "Μενού χρήστη",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 μη αναγνωσμένη αναφορά.",
|
||||
"other": "%(count)s μη αναγνωσμένα μηνύματα συμπεριλαμβανομένων των αναφορών."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 μη αναγνωσμένο μήνυμα.",
|
||||
"other": "%(count)s μη αναγνωσμένα μηνύματα."
|
||||
},
|
||||
"unread_messages": "Μη αναγνωσμένα μηνύματα."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Δωμάτια βίντεο",
|
||||
|
@ -2672,7 +2620,11 @@
|
|||
"group_themes": "Θέματα",
|
||||
"group_encryption": "Κρυπτογράφηση",
|
||||
"group_experimental": "Πειραματικό",
|
||||
"group_developer": "Προγραμματιστής"
|
||||
"group_developer": "Προγραμματιστής",
|
||||
"beta_feature": "Αυτή είναι μια δυνατότητα beta",
|
||||
"click_for_info": "Κλικ για περισσότερες πληροφορίες",
|
||||
"leave_beta": "Αποχώρηση από τη beta",
|
||||
"join_beta": "Συμμετοχή στη beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Αρχική",
|
||||
|
@ -2929,7 +2881,23 @@
|
|||
"export_info": "Αυτή είναι η αρχή της εξαγωγής του <roomName/>. Εξήχθησαν από <exporterDetails/> στις %(exportDate)s.",
|
||||
"topic": "Θέμα: %(topic)s",
|
||||
"error_fetching_file": "Σφάλμα κατά την ανάκτηση του αρχείου",
|
||||
"file_attached": "Tο αρχείο επισυνάφθηκε"
|
||||
"file_attached": "Tο αρχείο επισυνάφθηκε",
|
||||
"enter_number_between_min_max": "Εισαγάγετε έναν αριθμό μεταξύ %(min)s και %(max)s",
|
||||
"size_limit_min_max": "Το μέγεθος μπορεί να είναι μόνο ένας αριθμός μεταξύ %(min)s MB και %(max)s MB",
|
||||
"num_messages_min_max": "Ο αριθμός των μηνυμάτων μπορεί να είναι μόνο ένας αριθμός μεταξύ %(min)s και %(max)s",
|
||||
"num_messages": "Αριθμός μηνυμάτων",
|
||||
"cancelled": "Η Εξαγωγή ακυρώθηκε",
|
||||
"cancelled_detail": "Η εξαγωγή ακυρώθηκε με επιτυχία",
|
||||
"successful": "Επιτυχής Εξαγωγή",
|
||||
"successful_detail": "Η εξαγωγή σας ήταν επιτυχής. Βρείτε τη στο φάκελο Λήψεις.",
|
||||
"confirm_stop": "Είστε βέβαιοι ότι θέλετε να διακόψετε την εξαγωγή των δεδομένων σας; Εάν το κάνετε, θα πρέπει να ξεκινήσετε από την αρχή.",
|
||||
"exporting_your_data": "Εξαγωγή των δεδομένων σας",
|
||||
"title": "Εξαγωγή Συνομιλίας",
|
||||
"select_option": "Επιλέξτε από τις παρακάτω επιλογές για να εξαγάγετε συνομιλίες από το χρονολόγιό σας",
|
||||
"format": "Μορφή",
|
||||
"messages": "Μηνύματα",
|
||||
"size_limit": "Όριο Μεγέθους",
|
||||
"include_attachments": "Συμπεριλάβετε Συνημμένα"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Δημιουργήστε ένα δωμάτιο βίντεο",
|
||||
|
@ -3320,7 +3288,6 @@
|
|||
"unsupported": "Η κλήσεις δεν υποστηρίζονται",
|
||||
"unsupported_browser": "Δεν μπορείτε να πραγματοποιήσετε κλήσεις σε αυτό το πρόγραμμα περιήγησης."
|
||||
},
|
||||
"Messages": "Μηνύματα",
|
||||
"Other": "Άλλα",
|
||||
"Advanced": "Προχωρημένες",
|
||||
"room_settings": {
|
||||
|
@ -3402,5 +3369,46 @@
|
|||
"snowfall_message": "Στέλνει χιονόπτωση",
|
||||
"spaceinvaders_description": "Στέλνει το δεδομένο μήνυμα με εφέ διαστημικού θέματος",
|
||||
"spaceinvaders_message": "στέλνει διαστημικούς εισβολείς"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Δεν έχετε δικαίωμα πρόσκλησης ατόμων σε αυτόν τον χώρο",
|
||||
"error_no_permission_create_room": "Δεν έχετε δικαίωμα δημιουργίας νέων δωματίων σε αυτόν τον χώρο",
|
||||
"error_no_permission_add_room": "Δεν έχετε δικαίωμα προσθήκης δωματίων σε αυτόν τον χώρο",
|
||||
"error_no_permission_add_space": "Δεν έχετε δικαίωμα προσθήκης χώρων σε αυτόν τον χώρο"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Συνεχίστε με %(provider)s",
|
||||
"sign_in_with_sso": "Συνδεθείτε με απλή σύνδεση",
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Εμφάνιση δωματίων με μη αναγνωσμένα μηνύματα πρώτα",
|
||||
"show_previews": "Εμφάνιση προεπισκοπήσεων μηνυμάτων",
|
||||
"sort_by": "Ταξινόμηση κατά",
|
||||
"sort_by_activity": "Δραστηριότητα",
|
||||
"sort_by_alphabet": "Α-Ω",
|
||||
"sublist_options": "Επιλογές λίστας",
|
||||
"show_n_more": {
|
||||
"one": "Εμφάνιση %(count)s περισσότερων",
|
||||
"other": "Εμφάνιση %(count)s περισσότερων"
|
||||
},
|
||||
"show_less": "Εμφάνιση λιγότερων",
|
||||
"notification_options": "Επιλογές ειδοποίησης"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Παρακαλώ πείτε μας γιατί κάνετε αναφορά.",
|
||||
"nature_disagreement": "Αυτό που γράφει αυτός ο χρήστης είναι λάθος.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"nature_illegal": "Αυτός ο χρήστης εμφανίζει παράνομη συμπεριφορά, για παράδειγμα, διαρρέει απόρρητες πληροφορίες ατόμων ή απειλεί με βία.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου, οι οποίοι ενδέχεται να το αναφέρουν στις αρμόδιες αρχές.",
|
||||
"nature_spam": "Αυτός ο χρήστης στέλνει ανεπιθύμητα μηνύματα στην αίθουσα με διαφημίσεις, συνδέσμους προς διαφημίσεις ή προπαγάνδα.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"report_to_homeserver_encrypted": "Αυτό το δωμάτιο είναι αφιερωμένο σε παράνομο ή τοξικό περιεχόμενο ή οι συντονιστές αποτυγχάνουν να μετριάσουν το παράνομο ή τοξικό περιεχόμενο.\nΑυτό θα αναφερθεί στους διαχειριστές του %(homeserver)s. Οι διαχειριστές ΔΕ θα μπορούν να διαβάσουν το κρυπτογραφημένο περιεχόμενο αυτού του δωματίου.",
|
||||
"nature_other": "Οποιοσδήποτε άλλος λόγος. Παρακαλώ περιγράψτε το πρόβλημα.\nΑυτό θα αναφερθεί στους συντονιστές του δωματίου.",
|
||||
"nature": "Παρακαλώ επιλέξτε το είδος και περιγράψτε τι κάνει αυτό το μήνυμα καταχρηστικό.",
|
||||
"disagree": "Διαφωνώ",
|
||||
"toxic_behaviour": "Τοξική Συμπεριφορά",
|
||||
"illegal_content": "Παράνομο Περιεχόμενο",
|
||||
"spam_or_propaganda": "Spam ή προπαγάνδα",
|
||||
"report_entire_room": "Αναφορά ολόκληρου του δωματίου",
|
||||
"report_content_to_homeserver": "Αναφορά Περιεχομένου στον Διαχειριστή του Διακομιστή σας",
|
||||
"description": "Η αναφορά αυτού του μηνύματος θα στείλει το μοναδικό «αναγνωριστικό συμβάντος» στον διαχειριστή του διακομιστή σας. Εάν τα μηνύματα σε αυτό το δωμάτιο είναι κρυπτογραφημένα, ο διαχειριστής του διακομιστή σας δε θα μπορεί να διαβάσει το κείμενο του μηνύματος ή να προβάλει αρχεία και εικόνες."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,13 @@
|
|||
"No identity access token found": "No identity access token found",
|
||||
"Use Single Sign On to continue": "Use Single Sign On to continue",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirm adding this email address by using Single Sign On to prove your identity.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"auth": {
|
||||
"sso": "Single Sign On",
|
||||
"continue_with_idp": "Continue with %(provider)s",
|
||||
"sign_in_with_sso": "Sign in with single sign-on",
|
||||
"reset_password_action": "Reset password",
|
||||
"reset_password_title": "Reset your password"
|
||||
},
|
||||
"Confirm adding email": "Confirm adding email",
|
||||
"Click the button below to confirm adding this email address.": "Click the button below to confirm adding this email address.",
|
||||
"action": {
|
||||
|
@ -184,6 +190,7 @@
|
|||
"encryption_enabled": "Encryption enabled",
|
||||
"image": "Image",
|
||||
"reactions": "Reactions",
|
||||
"qr_code": "QR Code",
|
||||
"homeserver": "Homeserver",
|
||||
"help": "Help",
|
||||
"matrix": "Matrix",
|
||||
|
@ -977,7 +984,24 @@
|
|||
},
|
||||
"file_attached": "File Attached",
|
||||
"fetching_events": "Fetching events…",
|
||||
"creating_output": "Creating output…"
|
||||
"creating_output": "Creating output…",
|
||||
"processing": "Processing…",
|
||||
"enter_number_between_min_max": "Enter a number between %(min)s and %(max)s",
|
||||
"size_limit_min_max": "Size can only be a number between %(min)s MB and %(max)s MB",
|
||||
"num_messages_min_max": "Number of messages can only be a number between %(min)s and %(max)s",
|
||||
"num_messages": "Number of messages",
|
||||
"cancelled": "Export Cancelled",
|
||||
"cancelled_detail": "The export was cancelled successfully",
|
||||
"successful": "Export Successful",
|
||||
"successful_detail": "Your export was successful. Find it in your Downloads folder.",
|
||||
"confirm_stop": "Are you sure you want to stop exporting your data? If you do, you'll need to start over.",
|
||||
"exporting_your_data": "Exporting your data",
|
||||
"title": "Export Chat",
|
||||
"select_option": "Select from the options below to export chats from your timeline",
|
||||
"format": "Format",
|
||||
"messages": "Messages",
|
||||
"size_limit": "Size Limit",
|
||||
"include_attachments": "Include Attachments"
|
||||
},
|
||||
"That's fine": "That's fine",
|
||||
"analytics": {
|
||||
|
@ -1120,7 +1144,13 @@
|
|||
"hidebold": "Hide notification dot (only display counters badges)",
|
||||
"intentional_mentions": "Enable intentional mentions",
|
||||
"ask_to_join": "Enable ask to join",
|
||||
"new_room_decoration_ui": "New room header & details interface"
|
||||
"new_room_decoration_ui": "New room header & details interface",
|
||||
"beta_feature": "This is a beta feature",
|
||||
"click_for_info": "Click for more info",
|
||||
"leave_beta_reload": "Leaving the beta will reload %(brand)s.",
|
||||
"join_beta_reload": "Joining the beta will reload %(brand)s.",
|
||||
"leave_beta": "Leave the beta",
|
||||
"join_beta": "Join the beta"
|
||||
},
|
||||
"Thank you for trying the beta, please go into as much detail as you can so we can improve it.": "Thank you for trying the beta, please go into as much detail as you can so we can improve it.",
|
||||
"Notification Settings": "Notification Settings",
|
||||
|
@ -1305,7 +1335,15 @@
|
|||
"one": "Only %(count)s step to go"
|
||||
},
|
||||
"you_did_it": "You did it!",
|
||||
"complete_these": "Complete these to get the most out of %(brand)s"
|
||||
"complete_these": "Complete these to get the most out of %(brand)s",
|
||||
"download_brand": "Download %(brand)s",
|
||||
"download_brand_desktop": "Download %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s or %(appLinks)s",
|
||||
"download_app_store": "Download on the App Store",
|
||||
"download_google_play": "Get it on Google Play",
|
||||
"download_f_droid": "Get it on F-Droid",
|
||||
"apple_trademarks": "App Store® and the Apple logo® are trademarks of Apple Inc.",
|
||||
"google_trademarks": "Google Play and the Google Play logo are trademarks of Google LLC."
|
||||
},
|
||||
"Ongoing call": "Ongoing call",
|
||||
"You do not have permission to start video calls": "You do not have permission to start video calls",
|
||||
|
@ -2121,14 +2159,17 @@
|
|||
},
|
||||
"Start new chat": "Start new chat",
|
||||
"Invite to space": "Invite to space",
|
||||
"You do not have permissions to invite people to this space": "You do not have permissions to invite people to this space",
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "You do not have permissions to invite people to this space",
|
||||
"error_no_permission_create_room": "You do not have permissions to create new rooms in this space",
|
||||
"error_no_permission_add_room": "You do not have permissions to add rooms to this space",
|
||||
"error_no_permission_add_space": "You do not have permissions to add spaces to this space"
|
||||
},
|
||||
"Add people": "Add people",
|
||||
"Explore rooms": "Explore rooms",
|
||||
"New room": "New room",
|
||||
"You do not have permissions to create new rooms in this space": "You do not have permissions to create new rooms in this space",
|
||||
"New video room": "New video room",
|
||||
"Add existing room": "Add existing room",
|
||||
"You do not have permissions to add rooms to this space": "You do not have permissions to add rooms to this space",
|
||||
"Explore public rooms": "Explore public rooms",
|
||||
"Add room": "Add room",
|
||||
"Saved Items": "Saved Items",
|
||||
|
@ -2137,7 +2178,6 @@
|
|||
"Historical": "Historical",
|
||||
"Suggested Rooms": "Suggested Rooms",
|
||||
"Add space": "Add space",
|
||||
"You do not have permissions to add spaces to this space": "You do not have permissions to add spaces to this space",
|
||||
"Join public room": "Join public room",
|
||||
"Currently joining %(count)s rooms": {
|
||||
"other": "Currently joining %(count)s rooms",
|
||||
|
@ -2212,27 +2252,32 @@
|
|||
"To view, please enable video rooms in Labs first": "To view, please enable video rooms in Labs first",
|
||||
"To join, please enable video rooms in Labs first": "To join, please enable video rooms in Labs first",
|
||||
"Show Labs settings": "Show Labs settings",
|
||||
"Show rooms with unread messages first": "Show rooms with unread messages first",
|
||||
"Show previews of messages": "Show previews of messages",
|
||||
"Sort by": "Sort by",
|
||||
"Activity": "Activity",
|
||||
"A-Z": "A-Z",
|
||||
"List options": "List options",
|
||||
"Show %(count)s more": {
|
||||
"other": "Show %(count)s more",
|
||||
"one": "Show %(count)s more"
|
||||
"room_list": {
|
||||
"sort_unread_first": "Show rooms with unread messages first",
|
||||
"show_previews": "Show previews of messages",
|
||||
"sort_by": "Sort by",
|
||||
"sort_by_activity": "Activity",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "List options",
|
||||
"show_n_more": {
|
||||
"other": "Show %(count)s more",
|
||||
"one": "Show %(count)s more"
|
||||
},
|
||||
"show_less": "Show less",
|
||||
"notification_options": "Notification options"
|
||||
},
|
||||
"Show less": "Show less",
|
||||
"Notification options": "Notification options",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s unread messages including mentions.",
|
||||
"one": "1 unread mention."
|
||||
"a11y": {
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s unread messages including mentions.",
|
||||
"one": "1 unread mention."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s unread messages.",
|
||||
"one": "1 unread message."
|
||||
},
|
||||
"unread_messages": "Unread messages.",
|
||||
"user_menu": "User menu"
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s unread messages.",
|
||||
"one": "1 unread message."
|
||||
},
|
||||
"Unread messages.": "Unread messages.",
|
||||
"Joined": "Joined",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.",
|
||||
"This room has already been upgraded.": "This room has already been upgraded.",
|
||||
|
@ -2649,7 +2694,6 @@
|
|||
"Results are only revealed when you end the poll": "Results are only revealed when you end the poll",
|
||||
"Power level": "Power level",
|
||||
"Custom level": "Custom level",
|
||||
"QR Code": "QR Code",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Unable to load event that was replied to, it either does not exist or you do not have permission to view it.",
|
||||
"<a>In reply to</a> <pill>": "<a>In reply to</a> <pill>",
|
||||
"In reply to <a>this message</a>": "In reply to <a>this message</a>",
|
||||
|
@ -2686,8 +2730,6 @@
|
|||
"Join millions for free on the largest public server": "Join millions for free on the largest public server",
|
||||
"<w>WARNING:</w> <description/>": "<w>WARNING:</w> <description/>",
|
||||
"Choose a locale": "Choose a locale",
|
||||
"Continue with %(provider)s": "Continue with %(provider)s",
|
||||
"Sign in with single sign-on": "Sign in with single sign-on",
|
||||
"And %(count)s more...": {
|
||||
"other": "And %(count)s more..."
|
||||
},
|
||||
|
@ -2724,14 +2766,6 @@
|
|||
"Create a new room": "Create a new room",
|
||||
"Search for rooms": "Search for rooms",
|
||||
"Adding spaces has moved.": "Adding spaces has moved.",
|
||||
"Download %(brand)s": "Download %(brand)s",
|
||||
"Download %(brand)s Desktop": "Download %(brand)s Desktop",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s or %(appLinks)s",
|
||||
"Download on the App Store": "Download on the App Store",
|
||||
"Get it on Google Play": "Get it on Google Play",
|
||||
"Get it on F-Droid": "Get it on F-Droid",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® and the Apple logo® are trademarks of Apple Inc.",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play and the Google Play logo are trademarks of Google LLC.",
|
||||
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?",
|
||||
"The following users may not exist": "The following users may not exist",
|
||||
"Invite anyway and never warn me again": "Invite anyway and never warn me again",
|
||||
|
@ -2927,24 +2961,7 @@
|
|||
"End Poll": "End Poll",
|
||||
"Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.",
|
||||
"An error has occurred.": "An error has occurred.",
|
||||
"Processing…": "Processing…",
|
||||
"Enter a number between %(min)s and %(max)s": "Enter a number between %(min)s and %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Size can only be a number between %(min)s MB and %(max)s MB",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Number of messages can only be a number between %(min)s and %(max)s",
|
||||
"Number of messages": "Number of messages",
|
||||
"MB": "MB",
|
||||
"Export Cancelled": "Export Cancelled",
|
||||
"The export was cancelled successfully": "The export was cancelled successfully",
|
||||
"Export Successful": "Export Successful",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Your export was successful. Find it in your Downloads folder.",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Are you sure you want to stop exporting your data? If you do, you'll need to start over.",
|
||||
"Exporting your data": "Exporting your data",
|
||||
"Export Chat": "Export Chat",
|
||||
"Select from the options below to export chats from your timeline": "Select from the options below to export chats from your timeline",
|
||||
"Format": "Format",
|
||||
"Messages": "Messages",
|
||||
"Size Limit": "Size Limit",
|
||||
"Include Attachments": "Include Attachments",
|
||||
"Feedback sent": "Feedback sent",
|
||||
"Comment": "Comment",
|
||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Your platform and username will be noted to help us use your feedback as much as we can.",
|
||||
|
@ -3063,24 +3080,26 @@
|
|||
"Continuing without email": "Continuing without email",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.",
|
||||
"Email (optional)": "Email (optional)",
|
||||
"Please fill why you're reporting.": "Please fill why you're reporting.",
|
||||
"report_content": {
|
||||
"missing_reason": "Please fill why you're reporting.",
|
||||
"ignore_user": "Ignore user",
|
||||
"hide_messages_from_user": "Check if you want to hide all current and future messages from this user.",
|
||||
"nature_disagreement": "What this user is writing is wrong.\nThis will be reported to the room moderators.",
|
||||
"nature": "Please pick a nature and describe what makes this message abusive.",
|
||||
"disagree": "Disagree",
|
||||
"toxic_behaviour": "Toxic Behaviour",
|
||||
"illegal_content": "Illegal Content",
|
||||
"spam_or_propaganda": "Spam or propaganda",
|
||||
"report_entire_room": "Report the entire room",
|
||||
"report_content_to_homeserver": "Report Content to Your Homeserver Administrator"
|
||||
},
|
||||
"Unable to create room with moderation bot": "Unable to create room with moderation bot",
|
||||
"Ignore user": "Ignore user",
|
||||
"Check if you want to hide all current and future messages from this user.": "Check if you want to hide all current and future messages from this user.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "What this user is writing is wrong.\nThis will be reported to the room moderators.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Any other reason. Please describe the problem.\nThis will be reported to the room moderators.",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Please pick a nature and describe what makes this message abusive.",
|
||||
"Disagree": "Disagree",
|
||||
"Toxic Behaviour": "Toxic Behaviour",
|
||||
"Illegal Content": "Illegal Content",
|
||||
"Spam or propaganda": "Spam or propaganda",
|
||||
"Report the entire room": "Report the entire room",
|
||||
"Report Content to Your Homeserver Administrator": "Report Content to Your Homeserver Administrator",
|
||||
"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.": "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.",
|
||||
"Room Settings - %(roomName)s": "Room Settings - %(roomName)s",
|
||||
"Failed to upgrade room": "Failed to upgrade room",
|
||||
|
@ -3306,12 +3325,6 @@
|
|||
"Revoke permissions": "Revoke permissions",
|
||||
"Move left": "Move left",
|
||||
"Move right": "Move right",
|
||||
"This is a beta feature": "This is a beta feature",
|
||||
"Click for more info": "Click for more info",
|
||||
"Leaving the beta will reload %(brand)s.": "Leaving the beta will reload %(brand)s.",
|
||||
"Joining the beta will reload %(brand)s.": "Joining the beta will reload %(brand)s.",
|
||||
"Leave the beta": "Leave the beta",
|
||||
"Join the beta": "Join the beta",
|
||||
"Updated %(humanizedUpdateTime)s": "Updated %(humanizedUpdateTime)s",
|
||||
"Live until %(expiryTime)s": "Live until %(expiryTime)s",
|
||||
"Loading live location…": "Loading live location…",
|
||||
|
@ -3525,9 +3538,6 @@
|
|||
"Switch to light mode": "Switch to light mode",
|
||||
"Switch to dark mode": "Switch to dark mode",
|
||||
"Switch theme": "Switch theme",
|
||||
"a11y": {
|
||||
"user_menu": "User menu"
|
||||
},
|
||||
"Could not load user profile": "Could not load user profile",
|
||||
"Decrypted event source": "Decrypted event source",
|
||||
"Decrypted source unavailable": "Decrypted source unavailable",
|
||||
|
@ -3544,8 +3554,6 @@
|
|||
"Too many attempts in a short time. Retry after %(timeout)s.": "Too many attempts in a short time. Retry after %(timeout)s.",
|
||||
"Signing out your devices will delete the message encryption keys stored on them, making encrypted chat history unreadable.": "Signing out your devices will delete the message encryption keys stored on them, making encrypted chat history unreadable.",
|
||||
"If you want to retain access to your chat history in encrypted rooms, set up Key Backup or export your message keys from one of your other devices before proceeding.": "If you want to retain access to your chat history in encrypted rooms, set up Key Backup or export your message keys from one of your other devices before proceeding.",
|
||||
"Reset password": "Reset password",
|
||||
"Reset your password": "Reset your password",
|
||||
"Confirm new password": "Confirm new password",
|
||||
"A new password must be entered.": "A new password must be entered.",
|
||||
"New passwords must match each other.": "New passwords must match each other.",
|
||||
|
|
|
@ -297,7 +297,6 @@
|
|||
"Explore rooms": "Explore rooms",
|
||||
"Click the button below to confirm adding this email address.": "Click the button below to confirm adding this email address.",
|
||||
"Confirm adding email": "Confirm adding email",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirm adding this email address by using Single Sign On to prove your identity.",
|
||||
"Use Single Sign On to continue": "Use Single Sign On to continue",
|
||||
"%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait while we resynchronize with the server!",
|
||||
|
@ -509,11 +508,16 @@
|
|||
"category_room": "Room",
|
||||
"category_other": "Other"
|
||||
},
|
||||
"Messages": "Messages",
|
||||
"Other": "Other",
|
||||
"Advanced": "Advanced",
|
||||
"labs": {
|
||||
"group_profile": "Profile",
|
||||
"group_rooms": "Rooms"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Messages"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -666,7 +666,6 @@
|
|||
"Homeserver URL does not appear to be a valid Matrix homeserver": "URL por hejmservilo ŝajne ne ligas al valida hejmservilo de Matrix",
|
||||
"Invalid identity server discovery response": "Nevalida eltrova respondo de identiga servilo",
|
||||
"Identity server URL does not appear to be a valid identity server": "URL por identiga servilo ŝajne ne ligas al valida identiga servilo",
|
||||
"Sign in with single sign-on": "Saluti per ununura saluto",
|
||||
"Failed to re-authenticate due to a homeserver problem": "Malsukcesis reaŭtentikigi pro hejmservila problemo",
|
||||
"Failed to re-authenticate": "Malsukcesis reaŭtentikigi",
|
||||
"Enter your password to sign in and regain access to your account.": "Enigu vian pasvorton por saluti kaj rehavi aliron al via konto.",
|
||||
|
@ -763,15 +762,6 @@
|
|||
"This invite to %(roomName)s was sent to %(email)s": "La invito al %(roomName)s sendiĝis al %(email)s",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Uzu identigan servilon en Agordoj por ricevadi invitojn rekte per %(brand)s.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Havigu ĉi tiun retpoŝtadreson per Agordoj por ricevadi invitojn rekte per %(brand)s.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s nelegitaj mesaĝoj, inkluzive menciojn.",
|
||||
"one": "1 nelegita mencio."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s nelegitaj mesaĝoj.",
|
||||
"one": "1 nelegita mesaĝo."
|
||||
},
|
||||
"Unread messages.": "Nelegitaj mesaĝoj.",
|
||||
"Failed to deactivate user": "Malsukcesis malaktivigi uzanton",
|
||||
"This client does not support end-to-end encryption.": "Ĉi tiu kliento ne subtenas tutvojan ĉifradon.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Mesaĝoj en ĉi tiu ĉambro ne estas tutvoje ĉifrataj.",
|
||||
|
@ -795,9 +785,6 @@
|
|||
"Topic (optional)": "Temo (malnepra)",
|
||||
"Hide advanced": "Kaŝi specialajn",
|
||||
"Show advanced": "Montri specialajn",
|
||||
"Please fill why you're reporting.": "Bonvolu skribi, kial vi raportas.",
|
||||
"Report Content to Your Homeserver Administrator": "Raporti enhavon al la administrantode via hejmservilo",
|
||||
"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.": "Per raporto de ĉi tiu mesaĝo vi sendos ĝian unikan «identigilon de okazo» al la administranto de via hejmservilo. Se mesaĝoj en ĉi tiu ĉambro estas ĉifrataj, la administranto de via hejmservilo ne povos legi la tekston de la mesaĝo, nek rigardi dosierojn aŭ bildojn.",
|
||||
"Command Help": "Helpo pri komando",
|
||||
"To continue you need to accept the terms of this service.": "Por pluigi, vi devas akcepti la uzokondiĉojn de ĉi tiu servo.",
|
||||
"Document": "Dokumento",
|
||||
|
@ -873,7 +860,6 @@
|
|||
"How fast should messages be downloaded.": "Kiel rapide elŝuti mesaĝojn.",
|
||||
"Waiting for %(displayName)s to verify…": "Atendas kontrolon de %(displayName)s…",
|
||||
"Cancelling…": "Nuligante…",
|
||||
"Show less": "Montri malpli",
|
||||
"Show more": "Montri pli",
|
||||
"Not Trusted": "Nefidata",
|
||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) salutis novan salutaĵon ne kontrolante ĝin:",
|
||||
|
@ -1060,7 +1046,6 @@
|
|||
"Verify all users in a room to ensure it's secure.": "Kontrolu ĉiujn uzantojn en ĉambro por certigi, ke ĝi sekuras.",
|
||||
"Use Single Sign On to continue": "Daŭrigi per ununura saluto",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Konfirmi aldonon de ĉi tiu retpoŝtadreso, uzante ununuran saluton por pruvi vian identecon.",
|
||||
"Single Sign On": "Ununura saluto",
|
||||
"Confirm adding email": "Konfirmi aldonon de retpoŝtadreso",
|
||||
"Click the button below to confirm adding this email address.": "Klaku la ĉi-suban butonon por konfirmi aldonon de ĉi tiu retpoŝtadreso.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Konfirmu aldonon de ĉi tiu telefonnumero per identiĝo per ununura saluto.",
|
||||
|
@ -1112,7 +1097,6 @@
|
|||
"Click the button below to confirm your identity.": "Klaku sube la butonon por konfirmi vian identecon.",
|
||||
"Confirm encryption setup": "Konfirmi agordon de ĉifrado",
|
||||
"Click the button below to confirm setting up encryption.": "Klaku sube la butonon por konfirmi agordon de ĉifrado.",
|
||||
"QR Code": "Rapidresponda kodo",
|
||||
"Dismiss read marker and jump to bottom": "Forigi legomarkon kaj iri al fundo",
|
||||
"Jump to oldest unread message": "Iri al plej malnova nelegita mesaĝo",
|
||||
"Upload a file": "Alŝuti dosieron",
|
||||
|
@ -1147,15 +1131,6 @@
|
|||
"The authenticity of this encrypted message can't be guaranteed on this device.": "La aŭtentikeco de ĉi tiu ĉifrita mesaĝo ne povas esti garantiita sur ĉi tiu aparato.",
|
||||
"No recently visited rooms": "Neniuj freŝdate vizititaj ĉambroj",
|
||||
"Message preview": "Antaŭrigardo al mesaĝo",
|
||||
"Sort by": "Ordigi laŭ",
|
||||
"Activity": "Aktiveco",
|
||||
"A-Z": "A–Z",
|
||||
"List options": "Elektebloj pri listo",
|
||||
"Show %(count)s more": {
|
||||
"other": "Montri %(count)s pliajn",
|
||||
"one": "Montri %(count)s plian"
|
||||
},
|
||||
"Notification options": "Elektebloj pri sciigoj",
|
||||
"Favourited": "Elstarigita",
|
||||
"Forget Room": "Forgesi ĉambron",
|
||||
"Room options": "Elektebloj pri ĉambro",
|
||||
|
@ -1178,8 +1153,6 @@
|
|||
"Set a Security Phrase": "Agordi Sekurecan frazon",
|
||||
"Confirm Security Phrase": "Konfirmi Sekurecan frazon",
|
||||
"Save your Security Key": "Konservi vian Sekurecan ŝlosilon",
|
||||
"Show rooms with unread messages first": "Montri ĉambrojn kun nelegitaj mesaĝoj kiel unuajn",
|
||||
"Show previews of messages": "Montri antaŭrigardojn al mesaĝoj",
|
||||
"This room is public": "Ĉi tiu ĉambro estas publika",
|
||||
"Edited at %(date)s": "Redaktita je %(date)s",
|
||||
"Click to view edits": "Klaku por vidi redaktojn",
|
||||
|
@ -1564,7 +1537,6 @@
|
|||
"Too Many Calls": "Tro multaj vokoj",
|
||||
"Invite by email": "Inviti per retpoŝto",
|
||||
"Reason (optional)": "Kialo (malnepra)",
|
||||
"Continue with %(provider)s": "Daŭrigi per %(provider)s",
|
||||
"Server Options": "Elektebloj de servilo",
|
||||
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
||||
"one": "Sekure kaŝmemori ĉifritajn mesaĝojn loke por ke ili aperu inter serĉrezultoj, uzante %(size)s por deponi mesaĝojn el %(rooms)s ĉambroj.",
|
||||
|
@ -1711,9 +1683,7 @@
|
|||
"Edit devices": "Redakti aparatojn",
|
||||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Vi ne povos malfari ĉi tiun ŝanĝon, ĉar vi malrangaltigas vin mem; se vi estas la lasta altranga uzanto de la aro, vi ne plu povos rehavi viajn rajtojn.",
|
||||
"Empty room": "Malplena ĉambro",
|
||||
"You do not have permissions to add rooms to this space": "Vi ne havas permeson aldoni ĉambrojn al ĉi tiu aro",
|
||||
"Add existing room": "Aldoni jaman ĉambron",
|
||||
"You do not have permissions to create new rooms in this space": "Vi ne havas permeson krei novajn ĉambrojn en ĉi tiu aro",
|
||||
"Invite to this space": "Inviti al ĉi tiu aro",
|
||||
"Your message was sent": "Via mesaĝo sendiĝis",
|
||||
"Leave space": "Forlasi aron",
|
||||
|
@ -1815,8 +1785,6 @@
|
|||
"Verification requested": "Kontrolpeto",
|
||||
"You are the only person here. If you leave, no one will be able to join in the future, including you.": "Vi estas la nura persono tie ĉi. Se vi foriros, neniu alia plu povos aliĝi, inkluzive vin mem.",
|
||||
"Avatar": "Profilbildo",
|
||||
"Join the beta": "Aliĝi al provado",
|
||||
"Leave the beta": "Ĉesi provadon",
|
||||
"If you reset everything, you will restart with no trusted sessions, no trusted users, and might not be able to see past messages.": "Se vi restarigos ĉion, vi rekomencos sen fidataj salutaĵoj, uzantoj, kaj eble ne povos vidi antaŭajn mesaĝojn.",
|
||||
"Only do this if you have no other device to complete verification with.": "Faru tion ĉi nur se vi ne havas alian aparaton, per kiu vi kontrolus ceterajn.",
|
||||
"Forgotten or lost all recovery methods? <a>Reset all</a>": "Ĉu vi forgesis aŭ perdis ĉiujn manierojn de rehavo? <a>Restarigu ĉion</a>",
|
||||
|
@ -1916,17 +1884,6 @@
|
|||
"Settings - %(spaceName)s": "Agordoj – %(spaceName)s",
|
||||
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>Sciu, ke gradaltigo kreos novan version de la ĉambro</b>. Ĉiuj nunaj mesaĝoj restos en ĉi tiu arĥivita ĉambro.",
|
||||
"Automatically invite members from this room to the new one": "Memage inviti anojn de ĉi tiu ĉambro al la nova",
|
||||
"Report the entire room": "Raporti la tutan ĉambron",
|
||||
"Spam or propaganda": "Rubmesaĝo aŭ propagando",
|
||||
"Illegal Content": "Kontraŭleĝa enhavo",
|
||||
"Toxic Behaviour": "Vunda konduto",
|
||||
"Disagree": "Malkonsento",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Bonvolu elekti karakteron kaj priskribi, kial la mesaĝo estas mistrakta.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Alia kialo. Bonvolu priskribi la problemon.\nĈi tio raportiĝos al reguligistoj de la ĉambro.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Ĉi tiu ĉambro estas destinita al kontraŭleĝa al vunda enhavo, aŭ la reguligistoj ne sukcesas tian enhavon reguligi.\nĈi tio raportiĝos al administrantoj de %(homeserver)s. La administrantoj NE povos legi ĉifritan historion de ĉi tiu ĉambro.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Ĉi tiu uzanto sendas rubmesaĝojn kun reklamoj, ligiloj al reklamoj, aŭ al propagando.\nĈi tio raportiĝos al reguligistoj de la ĉambro.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Ĉi tiu uzanto kondutas kontraŭleĝe, ekzemple malkaŝante personajn informojn pri aliuloj, aŭ minacante per agreso.\nĈi tio raportiĝos al reguligistoj de la ĉambro, kiuj povos ĝin plusendi al leĝa aŭtoritato.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Tio, kion skribas ĉi tiu uzanto, maltaŭgas.\nTio ĉi raportiĝos al reguligistoj de la ĉambro.",
|
||||
"Other spaces or rooms you might not know": "Aliaj aroj aŭ ĉambroj, kiujn vi eble ne konas",
|
||||
"Spaces you know that contain this room": "Konataj aroj, kiuj enhavas ĉi tiun ĉambron",
|
||||
"Search spaces": "Serĉi arojn",
|
||||
|
@ -2154,8 +2111,6 @@
|
|||
"Location": "Loko",
|
||||
"Shared a location: ": "Kunhavis lokon: ",
|
||||
"Shared their location: ": "Kunhavis sian lokon: ",
|
||||
"Reset password": "Restarigu vian pasvorton",
|
||||
"Reset your password": "Restarigu vian pasvorton",
|
||||
"Confirm new password": "Konfirmu novan pasvorton",
|
||||
"Sign out of all devices": "Elsaluti en ĉiuj aparatoj",
|
||||
"You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "Vi estis elsalutita el ĉiuj aparatoj kaj ne plu ricevos puŝajn sciigojn. Por reŝalti sciigojn, ensalutu denove sur ĉiu aparato.",
|
||||
|
@ -2218,9 +2173,6 @@
|
|||
"Inactive sessions are sessions you have not used in some time, but they continue to receive encryption keys.": "Neaktivaj salutaĵoj estas salutaĵoj, kiujn vi ne uzis dum kelka tempo, sed ili daŭre ricevas ĉifrajn ŝlosilojn.",
|
||||
"Inactive sessions": "Neaktivaj salutaĵoj",
|
||||
"Unverified sessions": "Nekontrolitaj salutaĵoj",
|
||||
"Include Attachments": "Inkluzivi Aldonaĵojn",
|
||||
"Size Limit": "Grandeca Limo",
|
||||
"Select from the options below to export chats from your timeline": "Elektu el la subaj elektoj por eksporti babilojn el via historio",
|
||||
"Public rooms": "Publikajn ĉambrojn",
|
||||
"Show details": "Montri detalojn",
|
||||
"Hide details": "Kaŝi detalojn",
|
||||
|
@ -2230,8 +2182,6 @@
|
|||
"IP address": "IP-adreso",
|
||||
"Browser": "Retumilo",
|
||||
"Add privileged users": "Aldoni rajtigitan uzanton",
|
||||
"Number of messages": "Nombro da mesaĝoj",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Nombro da mesaĝoj povas esti nur nombro inter %(min)s kaj %(max)s",
|
||||
"That's fine": "Tio estas bone",
|
||||
"Map feedback": "Sugestoj pri la mapo",
|
||||
"Developer": "Programisto",
|
||||
|
@ -2323,7 +2273,8 @@
|
|||
"secure_backup": "Sekura savkopiado",
|
||||
"cross_signing": "Delegaj subskriboj",
|
||||
"identity_server": "Identiga servilo",
|
||||
"integration_manager": "Kunigilo"
|
||||
"integration_manager": "Kunigilo",
|
||||
"qr_code": "Rapidresponda kodo"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Daŭrigi",
|
||||
|
@ -2415,7 +2366,16 @@
|
|||
"send_report": "Sendi raporton"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menuo de uzanto"
|
||||
"user_menu": "Menuo de uzanto",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s nelegitaj mesaĝoj, inkluzive menciojn.",
|
||||
"one": "1 nelegita mencio."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s nelegitaj mesaĝoj.",
|
||||
"one": "1 nelegita mesaĝo."
|
||||
},
|
||||
"unread_messages": "Nelegitaj mesaĝoj."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videoĉambroj",
|
||||
|
@ -2445,7 +2405,9 @@
|
|||
"group_rooms": "Ĉambroj",
|
||||
"group_voip": "Voĉo kaj vido",
|
||||
"group_encryption": "Ĉifrado",
|
||||
"group_developer": "Programisto"
|
||||
"group_developer": "Programisto",
|
||||
"leave_beta": "Ĉesi provadon",
|
||||
"join_beta": "Aliĝi al provado"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Hejmo",
|
||||
|
@ -2647,7 +2609,13 @@
|
|||
"topic": "Temo: %(topic)s",
|
||||
"error_fetching_file": "Eraro alportante dosieron",
|
||||
"fetching_events": "Alportante okazojn…",
|
||||
"creating_output": "Kreante eligon…"
|
||||
"creating_output": "Kreante eligon…",
|
||||
"num_messages_min_max": "Nombro da mesaĝoj povas esti nur nombro inter %(min)s kaj %(max)s",
|
||||
"num_messages": "Nombro da mesaĝoj",
|
||||
"select_option": "Elektu el la subaj elektoj por eksporti babilojn el via historio",
|
||||
"messages": "Mesaĝoj",
|
||||
"size_limit": "Grandeca Limo",
|
||||
"include_attachments": "Inkluzivi Aldonaĵojn"
|
||||
},
|
||||
"create_room": {
|
||||
"title_public_room": "Krei publikan ĉambron",
|
||||
|
@ -3005,7 +2973,6 @@
|
|||
"unsupported": "Vokoj estas nesubtenataj",
|
||||
"unsupported_browser": "Vi ne povas telefoni per ĉi tiu retumilo."
|
||||
},
|
||||
"Messages": "Mesaĝoj",
|
||||
"Other": "Alia",
|
||||
"Advanced": "Altnivela",
|
||||
"room_settings": {
|
||||
|
@ -3071,5 +3038,46 @@
|
|||
"snowfall_message": "sendas neĝadon",
|
||||
"spaceinvaders_description": "Sendas mesaĝon kun la efekto de kosmo",
|
||||
"spaceinvaders_message": "sendas imiton de ludo « Space Invaders »"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_create_room": "Vi ne havas permeson krei novajn ĉambrojn en ĉi tiu aro",
|
||||
"error_no_permission_add_room": "Vi ne havas permeson aldoni ĉambrojn al ĉi tiu aro"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Daŭrigi per %(provider)s",
|
||||
"sign_in_with_sso": "Saluti per ununura saluto",
|
||||
"sso": "Ununura saluto",
|
||||
"reset_password_action": "Restarigu vian pasvorton",
|
||||
"reset_password_title": "Restarigu vian pasvorton"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Montri ĉambrojn kun nelegitaj mesaĝoj kiel unuajn",
|
||||
"show_previews": "Montri antaŭrigardojn al mesaĝoj",
|
||||
"sort_by": "Ordigi laŭ",
|
||||
"sort_by_activity": "Aktiveco",
|
||||
"sort_by_alphabet": "A–Z",
|
||||
"sublist_options": "Elektebloj pri listo",
|
||||
"show_n_more": {
|
||||
"other": "Montri %(count)s pliajn",
|
||||
"one": "Montri %(count)s plian"
|
||||
},
|
||||
"show_less": "Montri malpli",
|
||||
"notification_options": "Elektebloj pri sciigoj"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Bonvolu skribi, kial vi raportas.",
|
||||
"nature_disagreement": "Tio, kion skribas ĉi tiu uzanto, maltaŭgas.\nTio ĉi raportiĝos al reguligistoj de la ĉambro.",
|
||||
"nature_illegal": "Ĉi tiu uzanto kondutas kontraŭleĝe, ekzemple malkaŝante personajn informojn pri aliuloj, aŭ minacante per agreso.\nĈi tio raportiĝos al reguligistoj de la ĉambro, kiuj povos ĝin plusendi al leĝa aŭtoritato.",
|
||||
"nature_spam": "Ĉi tiu uzanto sendas rubmesaĝojn kun reklamoj, ligiloj al reklamoj, aŭ al propagando.\nĈi tio raportiĝos al reguligistoj de la ĉambro.",
|
||||
"report_to_homeserver_encrypted": "Ĉi tiu ĉambro estas destinita al kontraŭleĝa al vunda enhavo, aŭ la reguligistoj ne sukcesas tian enhavon reguligi.\nĈi tio raportiĝos al administrantoj de %(homeserver)s. La administrantoj NE povos legi ĉifritan historion de ĉi tiu ĉambro.",
|
||||
"nature_other": "Alia kialo. Bonvolu priskribi la problemon.\nĈi tio raportiĝos al reguligistoj de la ĉambro.",
|
||||
"nature": "Bonvolu elekti karakteron kaj priskribi, kial la mesaĝo estas mistrakta.",
|
||||
"disagree": "Malkonsento",
|
||||
"toxic_behaviour": "Vunda konduto",
|
||||
"illegal_content": "Kontraŭleĝa enhavo",
|
||||
"spam_or_propaganda": "Rubmesaĝo aŭ propagando",
|
||||
"report_entire_room": "Raporti la tutan ĉambron",
|
||||
"report_content_to_homeserver": "Raporti enhavon al la administrantode via hejmservilo",
|
||||
"description": "Per raporto de ĉi tiu mesaĝo vi sendos ĝian unikan «identigilon de okazo» al la administranto de via hejmservilo. Se mesaĝoj en ĉi tiu ĉambro estas ĉifrataj, la administranto de via hejmservilo ne povos legi la tekston de la mesaĝo, nek rigardi dosierojn aŭ bildojn."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -547,15 +547,6 @@
|
|||
"Accept <policyLink /> to continue:": "<policyLink />, acepta para continuar:",
|
||||
"Cannot connect to integration manager": "No se puede conectar al gestor de integraciones",
|
||||
"The integration manager is offline or it cannot reach your homeserver.": "El gestor de integraciones está desconectado o no puede conectar con su servidor.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s mensajes sin leer incluyendo menciones.",
|
||||
"one": "1 mención sin leer."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s mensajes sin leer.",
|
||||
"one": "1 mensaje sin leer."
|
||||
},
|
||||
"Unread messages.": "Mensajes sin leer.",
|
||||
"Jump to first unread room.": "Saltar a la primera sala sin leer.",
|
||||
"You have %(count)s unread notifications in a prior version of this room.": {
|
||||
"other": "Tiene %(count)s notificaciones sin leer en una versión anterior de esta sala.",
|
||||
|
@ -571,7 +562,6 @@
|
|||
"Lock": "Bloquear",
|
||||
"Other users may not trust it": "Puede que otros usuarios no confíen en ella",
|
||||
"Later": "Más tarde",
|
||||
"Show less": "Ver menos",
|
||||
"Show more": "Ver más",
|
||||
"in memory": "en memoria",
|
||||
"not found": "no encontrado",
|
||||
|
@ -598,8 +588,6 @@
|
|||
"You'll lose access to your encrypted messages": "Perderás acceso a tus mensajes cifrados",
|
||||
"Are you sure you want to sign out?": "¿Estás seguro de que quieres salir?",
|
||||
"Message edits": "Ediciones del mensaje",
|
||||
"Please fill why you're reporting.": "Por favor, explica por qué estás denunciando.",
|
||||
"Report Content to Your Homeserver Administrator": "Denunciar contenido al administrador de tu servidor base",
|
||||
"Room Settings - %(roomName)s": "Configuración de la sala - %(roomName)s",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Actualizar esta sala requiere cerrar la instancia actual de esta sala y crear una nueva sala en su lugar. Para dar a los miembros de la sala la mejor experiencia, haremos lo siguiente:",
|
||||
"Upgrade private room": "Actualizar sala privada",
|
||||
|
@ -693,7 +681,6 @@
|
|||
"You should:": "Deberías:",
|
||||
"Use Single Sign On to continue": "Continuar con registro único (SSO)",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirma la nueva dirección de correo usando SSO para probar tu identidad.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding email": "Confirmar un nuevo correo electrónico",
|
||||
"Click the button below to confirm adding this email address.": "Haz clic en el botón de abajo para confirmar esta nueva dirección de correo electrónico.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirma el nuevo número de teléfono usando SSO para probar tu identidad.",
|
||||
|
@ -782,7 +769,6 @@
|
|||
"Power level": "Nivel de poder",
|
||||
"e.g. my-room": "p.ej. mi-sala",
|
||||
"Some characters not allowed": "Algunos caracteres no están permitidos",
|
||||
"Sign in with single sign-on": "Ingresar con un Registro Único",
|
||||
"Enter a server name": "Escribe un nombre de servidor",
|
||||
"Looks good": "Se ve bien",
|
||||
"Can't find this server or its room list": "No se ha podido encontrar este servidor o su lista de salas",
|
||||
|
@ -978,7 +964,6 @@
|
|||
"Confirm this user's session by comparing the following with their User Settings:": "Confirma la sesión de este usuario comparando lo siguiente con su configuración:",
|
||||
"If they don't match, the security of your communication may be compromised.": "Si no coinciden, la seguridad de su comunicación puede estar comprometida.",
|
||||
"Your homeserver doesn't seem to support this feature.": "Tu servidor base no parece soportar esta funcionalidad.",
|
||||
"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.": "Denunciar este mensaje enviará su único «event ID al administrador de tu servidor base. Si los mensajes en esta sala están cifrados, el administrador de tu servidor no podrá leer el texto del mensaje ni ver ningún archivo o imagen.",
|
||||
"Command Help": "Ayuda del comando",
|
||||
"Verification Request": "Solicitud de verificación",
|
||||
"Restoring keys from backup": "Restaurando las claves desde copia de seguridad",
|
||||
|
@ -1072,17 +1057,6 @@
|
|||
"ready": "Listo",
|
||||
"not ready": "no está listo",
|
||||
"Room ID or address of ban list": "ID de sala o dirección de la lista de prohibición",
|
||||
"Show rooms with unread messages first": "Colocar al principio las salas con mensajes sin leer",
|
||||
"Show previews of messages": "Incluir una vista previa del último mensaje",
|
||||
"Sort by": "Ordenar por",
|
||||
"Activity": "Actividad",
|
||||
"A-Z": "A-Z",
|
||||
"List options": "Opciones de la lista",
|
||||
"Show %(count)s more": {
|
||||
"other": "Ver %(count)s más",
|
||||
"one": "Ver %(count)s más"
|
||||
},
|
||||
"Notification options": "Ajustes de notificaciones",
|
||||
"Forget Room": "Olvidar sala",
|
||||
"Favourited": "Favorecido",
|
||||
"Room options": "Opciones de la sala",
|
||||
|
@ -1099,7 +1073,6 @@
|
|||
"Edited at %(date)s": "Última vez editado: %(date)s",
|
||||
"Click to view edits": "Haz clic para ver las ediciones",
|
||||
"Information": "Información",
|
||||
"QR Code": "Código QR",
|
||||
"Room address": "Dirección de la sala",
|
||||
"This address is available to use": "Esta dirección está disponible para usar",
|
||||
"This address is already in use": "Esta dirección ya está en uso",
|
||||
|
@ -1338,7 +1311,6 @@
|
|||
"Use email to optionally be discoverable by existing contacts.": "También puedes usarlo para que tus contactos te encuentren fácilmente.",
|
||||
"Add an email to be able to reset your password.": "Añade un correo para poder restablecer tu contraseña si te olvidas.",
|
||||
"Continue with %(ssoButtons)s": "Continuar con %(ssoButtons)s",
|
||||
"Continue with %(provider)s": "Continuar con %(provider)s",
|
||||
"Channel: <channelLink/>": "Canal: <channelLink/>",
|
||||
"Update %(brand)s": "Actualizar %(brand)s",
|
||||
"Nigeria": "Nigeria",
|
||||
|
@ -1707,9 +1679,7 @@
|
|||
"Space selection": "Selección de espacio",
|
||||
"Empty room": "Sala vacía",
|
||||
"Suggested Rooms": "Salas sugeridas",
|
||||
"You do not have permissions to add rooms to this space": "No tienes permisos para añadir salas a este espacio",
|
||||
"Add existing room": "Añadir sala ya existente",
|
||||
"You do not have permissions to create new rooms in this space": "No tienes permisos para crear nuevas salas en este espacio",
|
||||
"Invite to this space": "Invitar al espacio",
|
||||
"Your message was sent": "Mensaje enviado",
|
||||
"Space options": "Opciones del espacio",
|
||||
|
@ -1797,8 +1767,6 @@
|
|||
"What do you want to organise?": "¿Qué quieres organizar?",
|
||||
"You have no ignored users.": "No has ignorado a nadie.",
|
||||
"Select a room below first": "Selecciona una sala de abajo primero",
|
||||
"Join the beta": "Unirme a la beta",
|
||||
"Leave the beta": "Salir de la beta",
|
||||
"Want to add a new room instead?": "¿Quieres añadir una sala nueva en su lugar?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"other": "Añadiendo salas… (%(progress)s de %(count)s)",
|
||||
|
@ -1842,22 +1810,11 @@
|
|||
"Pinned messages": "Mensajes fijados",
|
||||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Si tienes permisos, abre el menú de cualquier mensaje y selecciona <b>Fijar</b> para colocarlo aquí.",
|
||||
"Nothing pinned, yet": "Ningún mensaje fijado… todavía",
|
||||
"Disagree": "No estoy de acuerdo",
|
||||
"Report": "Denunciar",
|
||||
"Collapse reply thread": "Ocultar respuestas",
|
||||
"Show preview": "Mostrar vista previa",
|
||||
"View source": "Ver código fuente",
|
||||
"Settings - %(spaceName)s": "Ajustes - %(spaceName)s",
|
||||
"Report the entire room": "Denunciar la sala entera",
|
||||
"Spam or propaganda": "Publicidad no deseada o propaganda",
|
||||
"Illegal Content": "Contenido ilegal",
|
||||
"Toxic Behaviour": "Comportamiento tóxico",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Por favor, escoge una categoría y explica por qué el mensaje es abusivo.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Otro motivo. Por favor, describe el problema.\nSe avisará a los moderadores de la sala.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Esta sala está dedicada a un tema ilegal o contenido tóxico, o los moderadores no están tomando medidas frente a este tipo de contenido.\nSe avisará a los administradores de %(homeserver)s, pero no podrán leer el contenido cifrado de la sala.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Esta persona está mandando publicidad no deseada o propaganda.\nSe avisará a los moderadores de la sala.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Esta persona está comportándose de manera posiblemente ilegal. Por ejemplo, amenazando con violencia física o con revelar datos personales.\nSe avisará a los moderadores de la sala, que podrían denunciar los hechos.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Lo que esta persona está escribiendo no está bien.\nSe avisará a los moderadores de la sala.",
|
||||
"Please provide an address": "Por favor, elige una dirección",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Ha fallado el sistema de búsqueda de mensajes. Comprueba <a>tus ajustes</a> para más información",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Elige una dirección para este espacio y los usuarios de tu servidor base (%(localDomain)s) podrán encontrarlo a través del buscador",
|
||||
|
@ -2018,15 +1975,9 @@
|
|||
"Would you like to leave the rooms in this space?": "¿Quieres salir también de las salas del espacio?",
|
||||
"You are about to leave <spaceName/>.": "Estás a punto de salirte de <spaceName/>.",
|
||||
"%(reactors)s reacted with %(content)s": "%(reactors)s han reaccionado con %(content)s",
|
||||
"Exporting your data": "Exportando tus datos",
|
||||
"Export Chat": "Exportar conversación",
|
||||
"Include Attachments": "Incluir archivos adjuntos",
|
||||
"Size Limit": "Límite de tamaño",
|
||||
"Format": "Formato",
|
||||
"MB": "MB",
|
||||
"In reply to <a>this message</a>": "En respuesta a <a>este mensaje</a>",
|
||||
"Export chat": "Exportar conversación",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "El tamaño solo puede ser un número de %(min)s a %(max)s MB",
|
||||
"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.": "Parece que no tienes una clave de seguridad u otros dispositivos para la verificación. Este dispositivo no podrá acceder los mensajes cifrados antiguos. Para verificar tu identidad en este dispositivo, tendrás que restablecer tus claves de verificación.",
|
||||
"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.": "Una vez restableces las claves de verificación, no lo podrás deshacer. Después de restablecerlas, no podrás acceder a los mensajes cifrados antiguos, y cualquier persona que te haya verificado verá avisos de seguridad hasta que vuelvas a hacer la verificación con ella.",
|
||||
"I'll verify later": "La verificaré en otro momento",
|
||||
|
@ -2035,14 +1986,6 @@
|
|||
"Proceed with reset": "Continuar y restablecer",
|
||||
"Skip verification for now": "Saltar la verificación por ahora",
|
||||
"Really reset verification keys?": "¿De verdad quieres restablecer las claves de verificación?",
|
||||
"Select from the options below to export chats from your timeline": "Elige cómo quieres exportar los mensajes",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "¿Seguro que quieres parar la exportación de tus datos? Si quieres exportarlos más adelante, tendrás que empezarla de nuevo.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "La exportación ha terminado correctamente. La puedes encontrar en tu carpeta de Descargas.",
|
||||
"The export was cancelled successfully": "Has cancelado la exportación",
|
||||
"Export Successful": "Exportado con éxito",
|
||||
"Number of messages": "Número de mensajes",
|
||||
"Enter a number between %(min)s and %(max)s": "Escribe un número entre %(min)s y %(max)s",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "El número de mensajes solo puede ser de %(min)s a %(max)s",
|
||||
"They won't be able to access whatever you're not an admin of.": "No podrán acceder a donde no tengas permisos de administración.",
|
||||
"Show:": "Mostrar:",
|
||||
"Shows all threads from current room": "Muestra todos los hilos de la sala actual",
|
||||
|
@ -2189,7 +2132,6 @@
|
|||
"%(spaceName)s menu": "Menú de %(spaceName)s",
|
||||
"Join public room": "Unirse a la sala pública",
|
||||
"Add people": "Añadir gente",
|
||||
"You do not have permissions to invite people to this space": "No tienes permiso para invitar a este espacio",
|
||||
"Invite to space": "Invitar al espacio",
|
||||
"Start new chat": "Crear conversación",
|
||||
"Share location": "Compartir ubicación",
|
||||
|
@ -2281,20 +2223,17 @@
|
|||
"Jump to date": "Saltar a una fecha",
|
||||
"The beginning of the room": "Inicio de la sala",
|
||||
"Internal room ID": "ID interna de la sala",
|
||||
"This is a beta feature": "Esta funcionalidad está en beta",
|
||||
"Feedback sent! Thanks, we appreciate it!": "¡Opinión enviada! Gracias, te lo agradecemos.",
|
||||
"If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Si alguien te ha dicho que copies o pegues algo aquí, ¡lo más seguro es que te estén intentando timar!",
|
||||
"Wait!": "¡Espera!",
|
||||
"Use <arrows/> to scroll": "Usa <arrows/> para desplazarte",
|
||||
"Location": "Ubicación",
|
||||
"You do not have permissions to add spaces to this space": "No tienes permisos para añadir espacios a este espacio",
|
||||
"Poll": "Encuesta",
|
||||
"Voice Message": "Mensaje de voz",
|
||||
"Hide stickers": "Ocultar pegatinas",
|
||||
"Encrypted messages before this point are unavailable.": "Los mensajes cifrados antes de este punto no están disponibles.",
|
||||
"You don't have permission to view messages from before you joined.": "No tienes permisos para ver mensajes enviados antes de que te unieras.",
|
||||
"You don't have permission to view messages from before you were invited.": "No tienes permisos para ver mensajes enviados antes de que te invitaran.",
|
||||
"Click for more info": "Haz clic para más info.",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s y %(space2Name)s",
|
||||
"Scroll up in the timeline": "Subir en la línea de tiempo",
|
||||
"Navigate to previous message in composer history": "Ir al anterior mensaje en el historial del editor",
|
||||
|
@ -2309,7 +2248,6 @@
|
|||
"Unable to check if username has been taken. Try again later.": "No ha sido posible comprobar si el nombre de usuario está libre. Inténtalo de nuevo más tarde.",
|
||||
"Search Dialog": "Ventana de búsqueda",
|
||||
"Join %(roomAddress)s": "Unirte a %(roomAddress)s",
|
||||
"Export Cancelled": "Exportación cancelada",
|
||||
"Results are only revealed when you end the poll": "Los resultados se mostrarán cuando cierres la encuesta",
|
||||
"Voters see results as soon as they have voted": "Quienes voten podrán ver los resultados",
|
||||
"Closed poll": "Encuesta cerrada",
|
||||
|
@ -2489,17 +2427,13 @@
|
|||
"one": "%(count)s persona unida",
|
||||
"other": "%(count)s personas unidas"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Comprueba que realmente quieres ocultar todos los mensajes actuales y futuros de este usuario.",
|
||||
"View related event": "Ver evento relacionado",
|
||||
"Ignore user": "Ignorar usuario",
|
||||
"Failed to set direct message tag": "Fallo al poner la etiqueta al mensaje directo",
|
||||
"Read receipts": "Acuses de recibo",
|
||||
"You were disconnected from the call. (Error: %(message)s)": "Te has desconectado de la llamada. (Error: %(message)s)",
|
||||
"Connection lost": "Conexión interrumpida",
|
||||
"Deactivating your account is a permanent action — be careful!": "Desactivar tu cuenta es para siempre, ¡ten cuidado!",
|
||||
"Un-maximise": "Dejar de maximizar",
|
||||
"Joining the beta will reload %(brand)s.": "Al unirte a la beta, %(brand)s volverá a cargarse.",
|
||||
"Leaving the beta will reload %(brand)s.": "Al salir de la beta, %(brand)s volverá a cargarse.",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Al cerrar sesión, estas claves serán eliminadas del dispositivo. Esto significa que no podrás leer mensajes cifrados salvo que tengas sus claves en otros dispositivos, o hayas hecho una copia de seguridad usando el servidor.",
|
||||
"Video rooms are a beta feature": "Las salas de vídeo están en beta",
|
||||
"Enable hardware acceleration": "Activar aceleración por hardware",
|
||||
|
@ -2553,13 +2487,6 @@
|
|||
"Send your first message to invite <displayName/> to chat": "Envía tu primer mensaje para invitar a <displayName/> a la conversación",
|
||||
"Saved Items": "Elementos guardados",
|
||||
"Messages in this chat will be end-to-end encrypted.": "Los mensajes en esta conversación serán cifrados de extremo a extremo.",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play y el logo de Google Play son marcas registradas de Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® y el logo de Apple® son marcas registradas de Apple Inc.",
|
||||
"Get it on F-Droid": "Disponible en F-Droid",
|
||||
"Get it on Google Play": "Disponible en Google Play",
|
||||
"Download on the App Store": "Descargar en la App Store",
|
||||
"Download %(brand)s Desktop": "Descargar %(brand)s para escritorio",
|
||||
"Download %(brand)s": "Descargar %(brand)s",
|
||||
"Choose a locale": "Elige un idioma",
|
||||
"Session details": "Detalles de la sesión",
|
||||
"IP address": "Dirección IP",
|
||||
|
@ -2627,7 +2554,6 @@
|
|||
"Sliding Sync configuration": "Configuración de la sincronización progresiva",
|
||||
"Your server lacks native support": "Tu servidor no es compatible",
|
||||
"Your server has native support": "Tu servidor es compatible",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s o %(appLinks)s",
|
||||
"Video call ended": "Videollamada terminada",
|
||||
"%(name)s started a video call": "%(name)s comenzó una videollamada",
|
||||
"Room info": "Info. de la sala",
|
||||
|
@ -2757,7 +2683,6 @@
|
|||
"Mute room": "Silenciar sala",
|
||||
"Fetching keys from server…": "Obteniendo claves del servidor…",
|
||||
"Checking…": "Comprobando…",
|
||||
"Processing…": "Procesando…",
|
||||
"Adding…": "Añadiendo…",
|
||||
"Write something…": "Escribe algo…",
|
||||
"Message in %(room)s": "Mensaje en %(room)s",
|
||||
|
@ -2938,7 +2863,8 @@
|
|||
"secure_backup": "Copia de seguridad segura",
|
||||
"cross_signing": "Firma cruzada",
|
||||
"identity_server": "Servidor de identidad",
|
||||
"integration_manager": "Gestor de integración"
|
||||
"integration_manager": "Gestor de integración",
|
||||
"qr_code": "Código QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Continuar",
|
||||
|
@ -3040,7 +2966,16 @@
|
|||
"clear": "Borrar"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menú del Usuario"
|
||||
"user_menu": "Menú del Usuario",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s mensajes sin leer incluyendo menciones.",
|
||||
"one": "1 mención sin leer."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s mensajes sin leer.",
|
||||
"one": "1 mensaje sin leer."
|
||||
},
|
||||
"unread_messages": "Mensajes sin leer."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Salas de vídeo",
|
||||
|
@ -3089,7 +3024,13 @@
|
|||
"group_themes": "Temas",
|
||||
"group_encryption": "Cifrado",
|
||||
"group_experimental": "Experimentos",
|
||||
"group_developer": "Desarrollo"
|
||||
"group_developer": "Desarrollo",
|
||||
"beta_feature": "Esta funcionalidad está en beta",
|
||||
"click_for_info": "Haz clic para más info.",
|
||||
"leave_beta_reload": "Al salir de la beta, %(brand)s volverá a cargarse.",
|
||||
"join_beta_reload": "Al unirte a la beta, %(brand)s volverá a cargarse.",
|
||||
"leave_beta": "Salir de la beta",
|
||||
"join_beta": "Unirme a la beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Inicio",
|
||||
|
@ -3218,7 +3159,15 @@
|
|||
"enable_notifications": "Activar notificaciones",
|
||||
"download_app_description": "No te pierdas nada llevándote %(brand)s contigo",
|
||||
"download_app_action": "Descargar apps",
|
||||
"download_app": "Descargar %(brand)s"
|
||||
"download_app": "Descargar %(brand)s",
|
||||
"download_brand": "Descargar %(brand)s",
|
||||
"download_brand_desktop": "Descargar %(brand)s para escritorio",
|
||||
"qr_or_app_links": "%(qrCode)s o %(appLinks)s",
|
||||
"download_app_store": "Descargar en la App Store",
|
||||
"download_google_play": "Disponible en Google Play",
|
||||
"download_f_droid": "Disponible en F-Droid",
|
||||
"apple_trademarks": "App Store® y el logo de Apple® son marcas registradas de Apple Inc.",
|
||||
"google_trademarks": "Google Play y el logo de Google Play son marcas registradas de Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Incluir encima de la lista de salas unos atajos a las últimas salas que hayas visto",
|
||||
|
@ -3413,7 +3362,24 @@
|
|||
"error_fetching_file": "Error al recuperar el archivo",
|
||||
"file_attached": "Archivo adjunto",
|
||||
"fetching_events": "Recuperando eventos…",
|
||||
"creating_output": "Creando resultado…"
|
||||
"creating_output": "Creando resultado…",
|
||||
"processing": "Procesando…",
|
||||
"enter_number_between_min_max": "Escribe un número entre %(min)s y %(max)s",
|
||||
"size_limit_min_max": "El tamaño solo puede ser un número de %(min)s a %(max)s MB",
|
||||
"num_messages_min_max": "El número de mensajes solo puede ser de %(min)s a %(max)s",
|
||||
"num_messages": "Número de mensajes",
|
||||
"cancelled": "Exportación cancelada",
|
||||
"cancelled_detail": "Has cancelado la exportación",
|
||||
"successful": "Exportado con éxito",
|
||||
"successful_detail": "La exportación ha terminado correctamente. La puedes encontrar en tu carpeta de Descargas.",
|
||||
"confirm_stop": "¿Seguro que quieres parar la exportación de tus datos? Si quieres exportarlos más adelante, tendrás que empezarla de nuevo.",
|
||||
"exporting_your_data": "Exportando tus datos",
|
||||
"title": "Exportar conversación",
|
||||
"select_option": "Elige cómo quieres exportar los mensajes",
|
||||
"format": "Formato",
|
||||
"messages": "Mensajes",
|
||||
"size_limit": "Límite de tamaño",
|
||||
"include_attachments": "Incluir archivos adjuntos"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Crear una sala de vídeo",
|
||||
|
@ -3815,7 +3781,6 @@
|
|||
"unsupported": "Las llamadas no son compatibles",
|
||||
"unsupported_browser": "No puedes llamar usando este navegador de internet."
|
||||
},
|
||||
"Messages": "Mensajes",
|
||||
"Other": "Otros",
|
||||
"Advanced": "Avanzado",
|
||||
"room_settings": {
|
||||
|
@ -3903,5 +3868,48 @@
|
|||
"spaceinvaders_message": "enviar space invaders",
|
||||
"hearts_description": "Envía corazones junto al mensaje",
|
||||
"hearts_message": "envía corazones"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "No tienes permiso para invitar a este espacio",
|
||||
"error_no_permission_create_room": "No tienes permisos para crear nuevas salas en este espacio",
|
||||
"error_no_permission_add_room": "No tienes permisos para añadir salas a este espacio",
|
||||
"error_no_permission_add_space": "No tienes permisos para añadir espacios a este espacio"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Continuar con %(provider)s",
|
||||
"sign_in_with_sso": "Ingresar con un Registro Único",
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Colocar al principio las salas con mensajes sin leer",
|
||||
"show_previews": "Incluir una vista previa del último mensaje",
|
||||
"sort_by": "Ordenar por",
|
||||
"sort_by_activity": "Actividad",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Opciones de la lista",
|
||||
"show_n_more": {
|
||||
"other": "Ver %(count)s más",
|
||||
"one": "Ver %(count)s más"
|
||||
},
|
||||
"show_less": "Ver menos",
|
||||
"notification_options": "Ajustes de notificaciones"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Por favor, explica por qué estás denunciando.",
|
||||
"ignore_user": "Ignorar usuario",
|
||||
"hide_messages_from_user": "Comprueba que realmente quieres ocultar todos los mensajes actuales y futuros de este usuario.",
|
||||
"nature_disagreement": "Lo que esta persona está escribiendo no está bien.\nSe avisará a los moderadores de la sala.",
|
||||
"nature_illegal": "Esta persona está comportándose de manera posiblemente ilegal. Por ejemplo, amenazando con violencia física o con revelar datos personales.\nSe avisará a los moderadores de la sala, que podrían denunciar los hechos.",
|
||||
"nature_spam": "Esta persona está mandando publicidad no deseada o propaganda.\nSe avisará a los moderadores de la sala.",
|
||||
"report_to_homeserver_encrypted": "Esta sala está dedicada a un tema ilegal o contenido tóxico, o los moderadores no están tomando medidas frente a este tipo de contenido.\nSe avisará a los administradores de %(homeserver)s, pero no podrán leer el contenido cifrado de la sala.",
|
||||
"nature_other": "Otro motivo. Por favor, describe el problema.\nSe avisará a los moderadores de la sala.",
|
||||
"nature": "Por favor, escoge una categoría y explica por qué el mensaje es abusivo.",
|
||||
"disagree": "No estoy de acuerdo",
|
||||
"toxic_behaviour": "Comportamiento tóxico",
|
||||
"illegal_content": "Contenido ilegal",
|
||||
"spam_or_propaganda": "Publicidad no deseada o propaganda",
|
||||
"report_entire_room": "Denunciar la sala entera",
|
||||
"report_content_to_homeserver": "Denunciar contenido al administrador de tu servidor base",
|
||||
"description": "Denunciar este mensaje enviará su único «event ID al administrador de tu servidor base. Si los mensajes en esta sala están cifrados, el administrador de tu servidor no podrá leer el texto del mensaje ni ver ningún archivo o imagen."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -115,12 +115,7 @@
|
|||
"Share Link to User": "Jaga viidet kasutaja kohta",
|
||||
"Admin Tools": "Haldustoimingud",
|
||||
"Reject & Ignore user": "Hülga ja eira kasutaja",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 lugemata mainimine.",
|
||||
"other": "%(count)s lugemata sõnumit kaasa arvatud mainimised."
|
||||
},
|
||||
"Filter results": "Filtreeri tulemusi",
|
||||
"Report Content to Your Homeserver Administrator": "Teata sisust Sinu koduserveri haldurile",
|
||||
"Share Room": "Jaga jututuba",
|
||||
"Link to most recent message": "Viide kõige viimasele sõnumile",
|
||||
"Share User": "Jaga viidet kasutaja kohta",
|
||||
|
@ -431,7 +426,6 @@
|
|||
"Other users may not trust it": "Teised kasutajad ei pruugi seda usaldada",
|
||||
"Set up": "Võta kasutusele",
|
||||
"Accept <policyLink /> to continue:": "Jätkamiseks nõustu <policyLink />'ga:",
|
||||
"Show less": "Näita vähem",
|
||||
"Show more": "Näita rohkem",
|
||||
"Warning!": "Hoiatus!",
|
||||
"Do you want to set an email address?": "Kas sa soovid seadistada e-posti aadressi?",
|
||||
|
@ -539,11 +533,6 @@
|
|||
"%(roomName)s can't be previewed. Do you want to join it?": "Jututoal %(roomName)s puudub eelvaate võimalus. Kas sa soovid sellega liituda?",
|
||||
"%(roomName)s does not exist.": "Jututuba %(roomName)s ei ole olemas.",
|
||||
"%(roomName)s is not accessible at this time.": "Jututuba %(roomName)s ei ole parasjagu kättesaadav.",
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s lugemata teadet.",
|
||||
"one": "1 lugemata teade."
|
||||
},
|
||||
"Unread messages.": "Lugemata sõnumid.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Selle jututoa versiooni uuendamine sulgeb tema praeguse instantsi ja loob sama nimega uuendatud jututoa.",
|
||||
"This room has already been upgraded.": "See jututuba on juba uuendatud.",
|
||||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Selle jututoa versioon on <roomVersion /> ning see koduserver on tema märkinud <i>ebastabiilseks</i>.",
|
||||
|
@ -589,7 +578,6 @@
|
|||
"Confirm account deactivation": "Kinnita konto sulgemine",
|
||||
"There was a problem communicating with the server. Please try again.": "Serveriühenduses tekkis viga. Palun proovi uuesti.",
|
||||
"Server did not return valid authentication information.": "Serveri saadetud vastuses ei olnud kehtivat autentimisteavet.",
|
||||
"Please fill why you're reporting.": "Palun kirjelda veateate põhjust.",
|
||||
"Something went wrong trying to invite the users.": "Kasutajatele kutse saatmisel läks midagi viltu.",
|
||||
"We couldn't invite those users. Please check the users you want to invite and try again.": "Meil ei õnnestunud neile kasutajatele kutset saata. Palun kontrolli, keda soovid kutsuda ning proovi uuesti.",
|
||||
"Failed to find the following users": "Järgnevaid kasutajaid ei õnnestunud leida",
|
||||
|
@ -756,11 +744,6 @@
|
|||
"You do not have permission to post to this room": "Sul ei ole õigusi siia jututuppa kirjutamiseks",
|
||||
"Italics": "Kaldkiri",
|
||||
"Message preview": "Sõnumi eelvaade",
|
||||
"List options": "Loendi valikud",
|
||||
"Show %(count)s more": {
|
||||
"other": "Näita veel %(count)s sõnumit",
|
||||
"one": "Näita veel %(count)s sõnumit"
|
||||
},
|
||||
"Upgrade this room to version %(version)s": "Uuenda jututuba versioonini %(version)s",
|
||||
"Upgrade Room Version": "Uuenda jututoa versioon",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Selle jututoa uuendamine eeldab tema praeguse ilmingu tegevuse lõpetamist ja uue jututoa loomist selle asemele. Selleks, et kõik kulgeks jututoas osalejate jaoks ladusalt, toimime nüüd nii:",
|
||||
|
@ -827,7 +810,6 @@
|
|||
"Feedback": "Tagasiside",
|
||||
"Use Single Sign On to continue": "Jätkamiseks kasuta ühekordset sisselogimist",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Kinnita selle e-posti aadress kasutades oma isiku tuvastamiseks ühekordset sisselogimist (Single Sign On).",
|
||||
"Single Sign On": "SSO Ühekordne sisselogimine",
|
||||
"Confirm adding email": "Kinnita e-posti aadressi lisamine",
|
||||
"Click the button below to confirm adding this email address.": "Klõpsi järgnevat nuppu e-posti aadressi lisamise kinnitamiseks.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Kinnita selle telefoninumbri lisamine kasutades oma isiku tuvastamiseks ühekordset sisselogimist (Single Sign On).",
|
||||
|
@ -974,13 +956,11 @@
|
|||
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Sind juhatatakse kolmanda osapoole veebisaiti, kus sa saad autentida oma kontoga %(integrationsUrl)s kasutamiseks. Kas sa soovid jätkata?",
|
||||
"Power level": "Õiguste tase",
|
||||
"Custom level": "Kohandatud õigused",
|
||||
"QR Code": "QR kood",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Ei ole võimalik laadida seda sündmust, millele vastus on tehtud - teda kas pole olemas või sul pole õigusi seda näha.",
|
||||
"Room address": "Jututoa aadress",
|
||||
"Some characters not allowed": "Mõned tähemärgid ei ole siin lubatud",
|
||||
"This address is available to use": "See aadress on kasutatav",
|
||||
"This address is already in use": "See aadress on juba kasutusel",
|
||||
"Sign in with single sign-on": "Logi sisse ühekordse sisselogimise abil",
|
||||
"And %(count)s more...": {
|
||||
"other": "Ja %(count)s muud..."
|
||||
},
|
||||
|
@ -1013,7 +993,6 @@
|
|||
"If they don't match, the security of your communication may be compromised.": "Kui nad omavahel ei klapi, siis teie suhtluse turvalisus võib olla ohus.",
|
||||
"Your homeserver doesn't seem to support this feature.": "Tundub, et sinu koduserver ei toeta sellist funktsionaalsust.",
|
||||
"Message edits": "Sõnumite muutmised",
|
||||
"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.": "Sellest sõnumist teatamine saadab tema unikaalse sõnumi tunnuse sinu koduserveri haldurile. Kui selle jututoa sõnumid on krüptitud, siis sinu koduserveri haldur ei saa lugeda selle sõnumi teksti ega vaadata seal leiduvaid faile ja pilte.",
|
||||
"Failed to upgrade room": "Jututoa versiooni uuendamine ei õnnestunud",
|
||||
"The room upgrade could not be completed": "Jututoa uuendust ei õnnestunud teha",
|
||||
"Please check your email and click on the link it contains. Once this is done, click continue.": "Palun vaata oma e-kirju ning klõpsi meie saadetud kirjas leiduvat linki. Kui see on tehtud, siis vajuta Jätka-nuppu.",
|
||||
|
@ -1099,7 +1078,6 @@
|
|||
"Deactivate account": "Deaktiveeri kasutajakonto",
|
||||
"For help with using %(brand)s, click <a>here</a>.": "Kui otsid lisateavet %(brand)s'i kasutamise kohta, palun vaata <a>siia</a>.",
|
||||
"Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, <code>@bot:*</code> would ignore all users that have the name 'bot' on any server.": "Lisa siia kasutajad ja serverid, mida sa soovid eirata. Kui soovid, et %(brand)s kasutaks üldist asendamist, siis kasuta tärni. Näiteks <code>@bot:*</code> eirab kõikide serverite kasutajat 'bot'.",
|
||||
"Notification options": "Teavituste eelistused",
|
||||
"Room options": "Jututoa eelistused",
|
||||
"This room is public": "See jututuba on avalik",
|
||||
"Room avatar": "Jututoa tunnuspilt ehk avatar",
|
||||
|
@ -1141,11 +1119,6 @@
|
|||
"This backup is trusted because it has been restored on this session": "See varukoopia on usaldusväärne, sest ta on taastatud sellest sessioonist",
|
||||
"Start using Key Backup": "Võta kasutusele krüptovõtmete varundamine",
|
||||
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Sa hetkel ei kasuta isikutuvastusserverit. Et olla leitav ja ise leida sinule teadaolevaid inimesi seadista ta alljärgnevalt.",
|
||||
"Show rooms with unread messages first": "Näita lugemata sõnumitega jututubasid esimesena",
|
||||
"Show previews of messages": "Näita sõnumite eelvaateid",
|
||||
"Sort by": "Järjestamisviis",
|
||||
"Activity": "Aktiivsuse alusel",
|
||||
"A-Z": "Tähestiku järjekorras",
|
||||
"Jump to first unread room.": "Siirdu esimesse lugemata jututuppa.",
|
||||
"Jump to first invite.": "Siirdu esimese kutse juurde.",
|
||||
"Recovery Method Removed": "Taastemeetod on eemaldatud",
|
||||
|
@ -1604,7 +1577,6 @@
|
|||
"New here? <a>Create an account</a>": "Täitsa uus asi sinu jaoks? <a>Loo omale kasutajakonto</a>",
|
||||
"Got an account? <a>Sign in</a>": "Sul on kasutajakonto olemas? <a>Siis logi sisse</a>",
|
||||
"Continuing without email": "Jätka ilma e-posti aadressi seadistamiseta",
|
||||
"Continue with %(provider)s": "Jätka %(provider)s kasutamist",
|
||||
"Server Options": "Serveri seadistused",
|
||||
"Host account on": "Sinu kasutajakontot teenindab",
|
||||
"Decide where your account is hosted": "Vali kes võiks sinu kasutajakontot teenindada",
|
||||
|
@ -1693,9 +1665,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Kuna sa vähendad enda õigusi, siis sul ei pruugi hiljem olla võimalik seda muutust tagasi pöörata. Kui sa juhtumisi oled viimane haldusõigustega kasutaja kogukonnakeskuses, siis hiljem on võimatu samu õigusi tagasi saada.",
|
||||
"Empty room": "Tühi jututuba",
|
||||
"Suggested Rooms": "Soovitatud jututoad",
|
||||
"You do not have permissions to add rooms to this space": "Sul pole õigusi siia kogukonnakeskusesse lisada jututubasid",
|
||||
"Add existing room": "Lisa olemasolev jututuba",
|
||||
"You do not have permissions to create new rooms in this space": "Sul pole õigusi luua siin kogukonnakeskuses uusi jututubasid",
|
||||
"Invite to this space": "Kutsu siia kogukonnakeskusesse",
|
||||
"Your message was sent": "Sinu sõnum sai saadetud",
|
||||
"Space options": "Kogukonnakeskus eelistused",
|
||||
|
@ -1798,8 +1768,6 @@
|
|||
"What do you want to organise?": "Mida sa soovid ette võtta?",
|
||||
"You have no ignored users.": "Sa ei ole veel kedagi eiranud.",
|
||||
"Select a room below first": "Esmalt vali alljärgnevast üks jututuba",
|
||||
"Join the beta": "Hakka kasutama beetaversiooni",
|
||||
"Leave the beta": "Lõpeta beetaversiooni kasutamine",
|
||||
"Want to add a new room instead?": "Kas sa selle asemel soovid lisada jututuba?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Lisan jututuba...",
|
||||
|
@ -1865,17 +1833,6 @@
|
|||
"Show preview": "Näita eelvaadet",
|
||||
"View source": "Vaata lähtekoodi",
|
||||
"Settings - %(spaceName)s": "Seadistused - %(spaceName)s",
|
||||
"Toxic Behaviour": "Ebasobilik käitumine",
|
||||
"Report the entire room": "Teata tervest jututoast",
|
||||
"Spam or propaganda": "Spämm või propaganda",
|
||||
"Illegal Content": "Seadustega keelatud sisu",
|
||||
"Disagree": "Ma ei nõustu sisuga",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "See jututuba tundub olema keskendunud seadusevastase või ohtliku sisu levitamisele, kuid võib-olla ka ei suuda moderaatorid sellist sisu kõrvaldada.\n%(homeserver)s koduserveri haldajad saavad selle kohta teate, aga kuna jututoa sisu on krüptitud, siis nad ei pruugi saada seda lugeda.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Selle kasutaja tegevus on seadusevastane, milleks võib olla doksimine ehk teiste eraeluliste andmete avaldamine või vägivallaga ähvardamine.\nJututoa moderaatorid saavad selle kohta teate ning nad võivad sellest teatada ka ametivõimudele.",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Palun vali rikkumise olemus ja kirjelda mis teeb selle sõnumi kuritahtlikuks.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Mõni muu põhjus. Palun kirjelda seda detailsemalt.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Selle kasutaja loodud sisu on vale.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "See kasutaja spämmib jututuba reklaamidega, reklaamlinkidega või propagandaga.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"Please provide an address": "Palun sisesta aadress",
|
||||
"Unnamed audio": "Nimetu helifail",
|
||||
"Code blocks": "Lähtekoodi lõigud",
|
||||
|
@ -2017,21 +1974,7 @@
|
|||
"Leave some rooms": "Lahku mõnedest jututubadest",
|
||||
"Leave all rooms": "Lahku kõikidest jututubadest",
|
||||
"Don't leave any rooms": "Ära lahku ühestki jututoast",
|
||||
"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",
|
||||
"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",
|
||||
"Proceed with reset": "Jätka kustutamisega",
|
||||
|
@ -2177,7 +2120,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s menüü",
|
||||
"Join public room": "Liitu avaliku jututoaga",
|
||||
"Add people": "Lisa inimesi",
|
||||
"You do not have permissions to invite people to this space": "Sul pole õigusi siia kogukonda osalejate kutsumiseks",
|
||||
"Invite to space": "Kutsu siia kogukonnakeskusesse",
|
||||
"Start new chat": "Alusta uut vestlust",
|
||||
"Recently viewed": "Hiljuti vaadatud",
|
||||
|
@ -2309,9 +2251,6 @@
|
|||
"Poll": "Küsitlus",
|
||||
"Voice Message": "Häälsõnum",
|
||||
"Hide stickers": "Peida kleepsud",
|
||||
"You do not have permissions to add spaces to this space": "Sul pole õigusi siia kogukonda teiste kogukondade lisamiseks",
|
||||
"Click for more info": "Lisateabe jaoks klõpsi",
|
||||
"This is a beta feature": "See on veel katsetamisjärgus funktsionaalsus",
|
||||
"Use <arrows/> to scroll": "Kerimiseks kasuta <arrows/>",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Tagasiside on saadetud. Täname, sellest on loodetavasti kasu!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s ja %(space2Name)s",
|
||||
|
@ -2329,7 +2268,6 @@
|
|||
"Search Dialog": "Otsinguvaade",
|
||||
"Open user settings": "Ava kasutaja seadistused",
|
||||
"Open thread": "Ava jutulõng",
|
||||
"Export Cancelled": "Eksport on katkestatud",
|
||||
"Switch to space by number": "Vaata kogukonnakeskust tema numbri alusel",
|
||||
"Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Vasta jätkuvas jutulõngas või uue jutulõnga loomiseks kasuta „%(replyInThread)s“ valikut, mida kuvatakse hiire liigutamisel sõnumi kohal.",
|
||||
"What location type do you want to share?": "Missugust asukohta sa soovid jagada?",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"other": "%(count)s osalejat liitus",
|
||||
"one": "%(count)s osaleja liitus"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Selle valikuga peidad kõik antud kasutaja praegused ja tulevased sõnumid.",
|
||||
"Ignore user": "Eira kasutajat",
|
||||
"View related event": "Vaata seotud sündmust",
|
||||
"Read receipts": "Lugemisteatised",
|
||||
"Failed to set direct message tag": "Otsevestluse sildi seadmine ei õnnestunud",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "Kuna kasutajakonto dektiveerimist ei saa tagasi pöörata, siis palun ole ettevaatlik!",
|
||||
"Un-maximise": "Lõpeta täisvaate kasutamine",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Kui sa logid välja, siis krüptovõtmed kustutatakse sellest seadmest. Seega, kui sul pole krüptovõtmeid varundatud teistes seadmetes või kasutusel serveripoolset varundust, siis sa krüptitud sõnumeid hiljem lugeda ei saa.",
|
||||
"Joining the beta will reload %(brand)s.": "Beeta-funktsionaalsuste kasutusele võtmisel laadime uuesti rakenduse %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Beeta-funktsionaalsuste kasutamise lõpetamisel laadime uuesti rakenduse %(brand)s.",
|
||||
"Video rooms are a beta feature": "Videotoad on veel beeta-funktsionaalsus",
|
||||
"Enable hardware acceleration": "Kasuta riistvaralist kiirendust",
|
||||
"Remove search filter for %(filter)s": "Eemalda otsingufilter „%(filter)s“",
|
||||
|
@ -2553,13 +2487,6 @@
|
|||
"Saved Items": "Salvestatud failid",
|
||||
"Spell check": "Õigekirja kontroll",
|
||||
"You're in": "Kõik on tehtud",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play ja Google Play logo on Google LLC kaubamärgid.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® ja Apple logo® on Apple Inc kaubamärgid.",
|
||||
"Get it on F-Droid": "Laadi alla F-Droid'ist",
|
||||
"Get it on Google Play": "Laadi alla Google Play'st",
|
||||
"Download on the App Store": "Laadi alla App Store'st",
|
||||
"Download %(brand)s Desktop": "Laadi alla %(brand)s töölaua rakendusena",
|
||||
"Download %(brand)s": "Laadi alla %(brand)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "Sinu koduserver ei võimalda lugemisteatiste keelamist.",
|
||||
"Share your activity and status with others.": "Jaga teistega oma olekut ja tegevusi.",
|
||||
"Last activity": "Viimati kasutusel",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"We're creating a room with %(names)s": "Me loome jututoa järgnevaist: %(names)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s või %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s või %(recoveryFile)s",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s või %(appLinks)s",
|
||||
"Proxy URL": "Puhverserveri aadress",
|
||||
"Proxy URL (optional)": "Puhverserveri aadress (kui vaja)",
|
||||
"To disable you will need to log out and back in, use with caution!": "Väljalülitamiseks palun logi välja ning seejärel tagasi, kuid ole sellega ettevaatlik!",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Järgi juhendit, mille saatsime <b>%(email)s</b> e-posti aadressile",
|
||||
"Sign out of all devices": "Logi kõik oma seadmed võrgust välja",
|
||||
"Confirm new password": "Kinnita oma uus salasõna",
|
||||
"Reset your password": "Lähtesta oma salasõna",
|
||||
"Reset password": "Lähtesta salasõna",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Liiga palju päringuid napis ajavahemikus. Enne uuesti proovimist palun oota %(timeout)s sekundit.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Liiga palju päringuid napis ajavahemikus. Enne uuesti proovimist palun oota veidi.",
|
||||
"Thread root ID: %(threadRootId)s": "Jutulõnga esimese kirje tunnus: %(threadRootId)s",
|
||||
|
@ -2832,10 +2756,7 @@
|
|||
"Loading live location…": "Reaalajas asukoht on laadimisel…",
|
||||
"Fetching keys from server…": "Laadin serverist võtmeid…",
|
||||
"Checking…": "Kontrollin…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "See jututuba tundub olema keskendunud seadusevastase või ohtliku sisu levitamisele, kuid võib-olla ka ei suuda moderaatorid sellist sisu kõrvaldada.\n%(homeserver)s koduserveri haldajad saavad selle kohta teate.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Selle kasutaja tegevus on äärmiselt ebasobilik, milleks võib olla teiste jututoas osalejate solvamine, peresõbralikku jututuppa täiskasvanutele mõeldud sisu lisamine või muul viisil jututoa reeglite rikkumine.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"Waiting for partner to confirm…": "Ootan teise osapoole kinnitust…",
|
||||
"Processing…": "Töötlemisel…",
|
||||
"Adding…": "Lisan…",
|
||||
"Write something…": "Kirjuta midagi…",
|
||||
"Rejecting invite…": "Hülgan kutset…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "Tundmatu viga salasõna muutmisel (%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "Salasõna muutmisel tekkis viga: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Kui isikutuvastusserver on seadistamata, siis e-posti teel kutset saata ei saa. Soovi korral saad seda muuta Seadistuste vaatest.",
|
||||
"Unable to create room with moderation bot": "Moderaatori roboti abil ei õnnestu jututuba luua",
|
||||
"Failed to download source media, no source url was found": "Kuna meedia aadressi ei leidu, siis allalaadimine ei õnnestu",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Kui kutse saanud kasutajad on liitunud %(brand)s'ga, siis saad sa nendega suhelda ja jututuba on läbivalt krüptitud",
|
||||
"Waiting for users to join %(brand)s": "Kasutajate liitumise ootel %(brand)s'ga",
|
||||
|
@ -3087,7 +3007,8 @@
|
|||
"secure_backup": "Turvaline varundus",
|
||||
"cross_signing": "Risttunnustamine",
|
||||
"identity_server": "Isikutuvastusserver",
|
||||
"integration_manager": "Lõiminguhaldur"
|
||||
"integration_manager": "Lõiminguhaldur",
|
||||
"qr_code": "QR kood"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Jätka",
|
||||
|
@ -3190,7 +3111,16 @@
|
|||
"clear": "Eemalda"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Kasutajamenüü"
|
||||
"user_menu": "Kasutajamenüü",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 lugemata mainimine.",
|
||||
"other": "%(count)s lugemata sõnumit kaasa arvatud mainimised."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s lugemata teadet.",
|
||||
"one": "1 lugemata teade."
|
||||
},
|
||||
"unread_messages": "Lugemata sõnumid."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videotoad",
|
||||
|
@ -3245,7 +3175,13 @@
|
|||
"group_themes": "Teemad",
|
||||
"group_encryption": "Krüptimine",
|
||||
"group_experimental": "Katsed",
|
||||
"group_developer": "Arendajad"
|
||||
"group_developer": "Arendajad",
|
||||
"beta_feature": "See on veel katsetamisjärgus funktsionaalsus",
|
||||
"click_for_info": "Lisateabe jaoks klõpsi",
|
||||
"leave_beta_reload": "Beeta-funktsionaalsuste kasutamise lõpetamisel laadime uuesti rakenduse %(brand)s.",
|
||||
"join_beta_reload": "Beeta-funktsionaalsuste kasutusele võtmisel laadime uuesti rakenduse %(brand)s.",
|
||||
"leave_beta": "Lõpeta beetaversiooni kasutamine",
|
||||
"join_beta": "Hakka kasutama beetaversiooni"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Avaleht",
|
||||
|
@ -3376,7 +3312,15 @@
|
|||
"enable_notifications": "Lülita seadistused välja",
|
||||
"download_app_description": "Võta %(brand)s nutiseadmesse kaasa ning ära jäta suhtlemist vahele",
|
||||
"download_app_action": "Laadi alla rakendusi",
|
||||
"download_app": "Laadi alla %(brand)s"
|
||||
"download_app": "Laadi alla %(brand)s",
|
||||
"download_brand": "Laadi alla %(brand)s",
|
||||
"download_brand_desktop": "Laadi alla %(brand)s töölaua rakendusena",
|
||||
"qr_or_app_links": "%(qrCode)s või %(appLinks)s",
|
||||
"download_app_store": "Laadi alla App Store'st",
|
||||
"download_google_play": "Laadi alla Google Play'st",
|
||||
"download_f_droid": "Laadi alla F-Droid'ist",
|
||||
"apple_trademarks": "App Store® ja Apple logo® on Apple Inc kaubamärgid.",
|
||||
"google_trademarks": "Google Play ja Google Play logo on Google LLC kaubamärgid."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Näita viimati külastatud jututubade viiteid jututubade loendi kohal",
|
||||
|
@ -3595,7 +3539,24 @@
|
|||
"error_fetching_file": "Viga faili laadimisel",
|
||||
"file_attached": "Fail on manustatud",
|
||||
"fetching_events": "Laadime sündmusi…",
|
||||
"creating_output": "Loome väljundit…"
|
||||
"creating_output": "Loome väljundit…",
|
||||
"processing": "Töötlemisel…",
|
||||
"enter_number_between_min_max": "Sisesta number %(min)s ja %(max)s vahemikust",
|
||||
"size_limit_min_max": "Suurus saab olla number %(min)s MB ja %(max)s MB vahemikust",
|
||||
"num_messages_min_max": "Sõnumite arv saab olla ainult number%(min)s ja %(max)s vahemikust",
|
||||
"num_messages": "Sõnumite arv",
|
||||
"cancelled": "Eksport on katkestatud",
|
||||
"cancelled_detail": "Ekspordi tühistamine õnnestus",
|
||||
"successful": "Eksport õnnestus",
|
||||
"successful_detail": "Sinu andmete eksport õnnestus. Faili leiad tavapärasest allalaadimiste kaustast.",
|
||||
"confirm_stop": "Kas sa oled kindel, et soovid oma andmete eksporti katkestada? Kui nii toimid, siis pead hiljem uuesti alustama.",
|
||||
"exporting_your_data": "Ekspordin sinu andmeid",
|
||||
"title": "Ekspordi vestlus",
|
||||
"select_option": "Kui soovid oma ajajoonelt mõnda vestlust eksportida, siis vali tingimused alljärgnevalt",
|
||||
"format": "Vorming",
|
||||
"messages": "Sõnumid",
|
||||
"size_limit": "Andmemahu piir",
|
||||
"include_attachments": "Kaasa manused"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Loo uus videotuba",
|
||||
|
@ -4009,7 +3970,6 @@
|
|||
"unsupported": "Kõneteenus ei ole toetatud",
|
||||
"unsupported_browser": "Selle veebibrauseriga sa ei saa helistada."
|
||||
},
|
||||
"Messages": "Sõnumid",
|
||||
"Other": "Muud",
|
||||
"Advanced": "Teave arendajatele",
|
||||
"room_settings": {
|
||||
|
@ -4097,5 +4057,53 @@
|
|||
"spaceinvaders_message": "korraldab ühe pisikese tulnukate vallutusretke",
|
||||
"hearts_description": "Lisab sellele sõnumile südamed",
|
||||
"hearts_message": "saadame südameid"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Sul pole õigusi siia kogukonda osalejate kutsumiseks",
|
||||
"error_no_permission_create_room": "Sul pole õigusi luua siin kogukonnakeskuses uusi jututubasid",
|
||||
"error_no_permission_add_room": "Sul pole õigusi siia kogukonnakeskusesse lisada jututubasid",
|
||||
"error_no_permission_add_space": "Sul pole õigusi siia kogukonda teiste kogukondade lisamiseks"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Jätka %(provider)s kasutamist",
|
||||
"sign_in_with_sso": "Logi sisse ühekordse sisselogimise abil",
|
||||
"sso": "SSO Ühekordne sisselogimine",
|
||||
"reset_password_action": "Lähtesta salasõna",
|
||||
"reset_password_title": "Lähtesta oma salasõna"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Näita lugemata sõnumitega jututubasid esimesena",
|
||||
"show_previews": "Näita sõnumite eelvaateid",
|
||||
"sort_by": "Järjestamisviis",
|
||||
"sort_by_activity": "Aktiivsuse alusel",
|
||||
"sort_by_alphabet": "Tähestiku järjekorras",
|
||||
"sublist_options": "Loendi valikud",
|
||||
"show_n_more": {
|
||||
"other": "Näita veel %(count)s sõnumit",
|
||||
"one": "Näita veel %(count)s sõnumit"
|
||||
},
|
||||
"show_less": "Näita vähem",
|
||||
"notification_options": "Teavituste eelistused"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Palun kirjelda veateate põhjust.",
|
||||
"unable_create_room_moderation_bot": "Moderaatori roboti abil ei õnnestu jututuba luua",
|
||||
"ignore_user": "Eira kasutajat",
|
||||
"hide_messages_from_user": "Selle valikuga peidad kõik antud kasutaja praegused ja tulevased sõnumid.",
|
||||
"nature_disagreement": "Selle kasutaja loodud sisu on vale.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"nature_toxic": "Selle kasutaja tegevus on äärmiselt ebasobilik, milleks võib olla teiste jututoas osalejate solvamine, peresõbralikku jututuppa täiskasvanutele mõeldud sisu lisamine või muul viisil jututoa reeglite rikkumine.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"nature_illegal": "Selle kasutaja tegevus on seadusevastane, milleks võib olla doksimine ehk teiste eraeluliste andmete avaldamine või vägivallaga ähvardamine.\nJututoa moderaatorid saavad selle kohta teate ning nad võivad sellest teatada ka ametivõimudele.",
|
||||
"nature_spam": "See kasutaja spämmib jututuba reklaamidega, reklaamlinkidega või propagandaga.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"report_to_homeserver_encrypted": "See jututuba tundub olema keskendunud seadusevastase või ohtliku sisu levitamisele, kuid võib-olla ka ei suuda moderaatorid sellist sisu kõrvaldada.\n%(homeserver)s koduserveri haldajad saavad selle kohta teate, aga kuna jututoa sisu on krüptitud, siis nad ei pruugi saada seda lugeda.",
|
||||
"report_to_homeserver": "See jututuba tundub olema keskendunud seadusevastase või ohtliku sisu levitamisele, kuid võib-olla ka ei suuda moderaatorid sellist sisu kõrvaldada.\n%(homeserver)s koduserveri haldajad saavad selle kohta teate.",
|
||||
"nature_other": "Mõni muu põhjus. Palun kirjelda seda detailsemalt.\nJututoa moderaatorid saavad selle kohta teate.",
|
||||
"nature": "Palun vali rikkumise olemus ja kirjelda mis teeb selle sõnumi kuritahtlikuks.",
|
||||
"disagree": "Ma ei nõustu sisuga",
|
||||
"toxic_behaviour": "Ebasobilik käitumine",
|
||||
"illegal_content": "Seadustega keelatud sisu",
|
||||
"spam_or_propaganda": "Spämm või propaganda",
|
||||
"report_entire_room": "Teata tervest jututoast",
|
||||
"report_content_to_homeserver": "Teata sisust Sinu koduserveri haldurile",
|
||||
"description": "Sellest sõnumist teatamine saadab tema unikaalse sõnumi tunnuse sinu koduserveri haldurile. Kui selle jututoa sõnumid on krüptitud, siis sinu koduserveri haldur ei saa lugeda selle sõnumi teksti ega vaadata seal leiduvaid faile ja pilte."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -376,7 +376,6 @@
|
|||
"Unable to restore backup": "Ezin izan da babes-kopia berrezarri",
|
||||
"No backup found!": "Ez da babes-kopiarik aurkitu!",
|
||||
"Failed to decrypt %(failedCount)s sessions!": "Ezin izan dira %(failedCount)s saio deszifratu!",
|
||||
"Sign in with single sign-on": "Hai saioa urrats batean",
|
||||
"Failed to perform homeserver discovery": "Huts egin du hasiera-zerbitzarien bilaketak",
|
||||
"Invalid homeserver discovery response": "Baliogabeko hasiera-zerbitzarien bilaketaren erantzuna",
|
||||
"Use a few words, avoid common phrases": "Erabili hitz gutxi batzuk, ekidin ohiko esaldiak",
|
||||
|
@ -753,14 +752,6 @@
|
|||
"This invite to %(roomName)s was sent to %(email)s which is not associated with your account": "%(roomName)s gelarako gonbidapena zure kontuarekin lotuta ez dagoen %(email)s helbidera bidali da",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Erabili identitate zerbitzari bat ezarpenetan gonbidapenak zuzenean %(brand)s-en jasotzeko.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Partekatu e-mail hau ezarpenetan gonbidapenak zuzenean %(brand)s-en jasotzeko.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "irakurri gabeko %(count)s mezu aipamenak barne.",
|
||||
"one": "Irakurri gabeko aipamen 1."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "irakurri gabeko %(count)s mezu.",
|
||||
"one": "Irakurri gabeko mezu 1."
|
||||
},
|
||||
"Show image": "Erakutsi irudia",
|
||||
"e.g. my-room": "adib. nire-gela",
|
||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Erabili identitate-zerbitzari bat e-mail bidez gonbidatzeko. <default>Erabili lehenetsitakoa (%(defaultIdentityServerName)s)</default> edo gehitu bat <settings>Ezarpenak</settings> atalean.",
|
||||
|
@ -770,9 +761,6 @@
|
|||
"Topic (optional)": "Mintzagaia (aukerakoa)",
|
||||
"Hide advanced": "Ezkutatu aurreratua",
|
||||
"Show advanced": "Erakutsi aurreratua",
|
||||
"Please fill why you're reporting.": "Idatzi zergatik salatzen duzun.",
|
||||
"Report Content to Your Homeserver Administrator": "Salatu edukia zure hasiera-zerbitzariko administratzaileari",
|
||||
"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.": "Mezu hau salatzeak bere 'gertaera ID'-a bidaliko dio hasiera-zerbitzariko administratzaileari. Gela honetako mezuak zifratuta badaude, zure hasiera-zerbitzariko administratzaileak ezin izango du mezuaren testua irakurri edo irudirik ikusi.",
|
||||
"To continue you need to accept the terms of this service.": "Jarraitzeko erabilera baldintzak onartu behar dituzu.",
|
||||
"Document": "Dokumentua",
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Captcha-ren gako publikoa falta da hasiera-zerbitzariaren konfigurazioan. Eman honen berri hasiera-zerbitzariaren administratzaileari.",
|
||||
|
@ -788,7 +776,6 @@
|
|||
"contact the administrators of identity server <idserver />": "<idserver /> identitate-zerbitzariko administratzaileekin kontaktuak jarri",
|
||||
"wait and try again later": "itxaron eta berriro saiatu",
|
||||
"Room %(name)s": "%(name)s gela",
|
||||
"Unread messages.": "Irakurri gabeko mezuak.",
|
||||
"Failed to deactivate user": "Huts egin du erabiltzailea desaktibatzeak",
|
||||
"This client does not support end-to-end encryption.": "Bezero honek ez du muturretik muturrerako zifratzea onartzen.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Gela honetako mezuak ez daude muturretik muturrera zifratuta.",
|
||||
|
@ -920,7 +907,6 @@
|
|||
"How fast should messages be downloaded.": "Zeinen azkar deskargatu behar diren mezuak.",
|
||||
"Waiting for %(displayName)s to verify…": "%(displayName)s egiaztatu bitartean zain…",
|
||||
"This bridge was provisioned by <user />.": "Zubi hau <user /> erabiltzaileak hornitu du.",
|
||||
"Show less": "Erakutsi gutxiago",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Zure kontuak zeharkako sinatze identitate bat du biltegi sekretuan, baina saio honek ez du oraindik fidagarritzat.",
|
||||
"in memory": "memorian",
|
||||
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "Saio honek <b>ez du zure gakoen babes-kopia egiten</b>, baina badago berreskuratu eta gehitu deakezun aurreko babes-kopia bat.",
|
||||
|
@ -1059,7 +1045,6 @@
|
|||
"Cancel replying to a message": "Utzi mezua erantzuteari",
|
||||
"Use Single Sign On to continue": "Erabili Single sign-on jarraitzeko",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Baieztatu e-mail hau gehitzea Single sign-on bidez zure identitatea frogatuz.",
|
||||
"Single Sign On": "Single sign-on",
|
||||
"Confirm adding email": "Baieztatu e-maila gehitzea",
|
||||
"Click the button below to confirm adding this email address.": "Sakatu beheko botoia e-mail helbide hau gehitzea berresteko.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Baieztatu telefono zenbaki hau gehitzea Single sign-on bidez zure identitatea frogatuz.",
|
||||
|
@ -1104,7 +1089,6 @@
|
|||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Letra tamaina pertsonalizatua %(min)s pt eta %(max)s pt bitartean egon behar du",
|
||||
"Use between %(min)s pt and %(max)s pt": "Erabili %(min)s pt eta %(max)s pt bitarteko balioa",
|
||||
"You've successfully verified your device!": "Ongi egiaztatu duzu zure gailua!",
|
||||
"QR Code": "QR kodea",
|
||||
"To continue, use Single Sign On to prove your identity.": "Jarraitzeko, erabili Single Sign On zure identitatea frogatzeko.",
|
||||
"Confirm to continue": "Berretsi jarraitzeko",
|
||||
"Click the button below to confirm your identity.": "Sakatu azpiko botoia zure identitatea frogatzeko.",
|
||||
|
@ -1128,15 +1112,7 @@
|
|||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Zure zerbitzariko administratzaileak muturretik muturrerako zifratzea desgaitu du lehenetsita gela probatuetan eta mezu zuzenetan.",
|
||||
"To link to this room, please add an address.": "Gela hau estekatzeko, gehitu helbide bat.",
|
||||
"No recently visited rooms": "Ez dago azkenaldian bisitatutako gelarik",
|
||||
"Sort by": "Ordenatu honela",
|
||||
"Activity": "Jarduera",
|
||||
"A-Z": "A-Z",
|
||||
"Message preview": "Mezu-aurrebista",
|
||||
"List options": "Zerrenda-aukerak",
|
||||
"Show %(count)s more": {
|
||||
"other": "Erakutsi %(count)s gehiago",
|
||||
"one": "Erakutsi %(count)s gehiago"
|
||||
},
|
||||
"Room options": "Gelaren aukerak",
|
||||
"Error creating address": "Errorea helbidea sortzean",
|
||||
"There was an error creating that address. It may not be allowed by the server or a temporary failure occurred.": "Errorea gertatu da helbidea sortzean. Agian ez du zerbitzariak onartzen edo behin behineko arazo bat egon da.",
|
||||
|
@ -1156,7 +1132,6 @@
|
|||
"Change notification settings": "Aldatu jakinarazpenen ezarpenak",
|
||||
"Use custom size": "Erabili tamaina pertsonalizatua",
|
||||
"Hey you. You're the best!": "Aupa txo. Onena zara!",
|
||||
"Notification options": "Jakinarazpen ezarpenak",
|
||||
"Forget Room": "Ahaztu gela",
|
||||
"This room is public": "Gela hau publikoa da",
|
||||
"Click to view edits": "Klik egin edizioak ikusteko",
|
||||
|
@ -1224,7 +1199,8 @@
|
|||
"system_alerts": "Sistemaren alertak",
|
||||
"cross_signing": "Zeharkako sinadura",
|
||||
"identity_server": "Identitate zerbitzaria",
|
||||
"integration_manager": "Integrazio-kudeatzailea"
|
||||
"integration_manager": "Integrazio-kudeatzailea",
|
||||
"qr_code": "QR kodea"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Jarraitu",
|
||||
|
@ -1301,7 +1277,16 @@
|
|||
"send_report": "Bidali salaketa"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Erabiltzailea-menua"
|
||||
"user_menu": "Erabiltzailea-menua",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "irakurri gabeko %(count)s mezu aipamenak barne.",
|
||||
"one": "Irakurri gabeko aipamen 1."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "irakurri gabeko %(count)s mezu.",
|
||||
"one": "Irakurri gabeko mezu 1."
|
||||
},
|
||||
"unread_messages": "Irakurri gabeko mezuak."
|
||||
},
|
||||
"labs": {
|
||||
"pinning": "Mezuak finkatzea",
|
||||
|
@ -1683,7 +1668,6 @@
|
|||
"unknown_caller": "Dei-egile ezezaguna",
|
||||
"call_failed": "Deiak huts egin du"
|
||||
},
|
||||
"Messages": "Mezuak",
|
||||
"Other": "Beste bat",
|
||||
"Advanced": "Aurreratua",
|
||||
"room_settings": {
|
||||
|
@ -1730,5 +1714,29 @@
|
|||
"category_flags": "Banderak",
|
||||
"categories": "Kategoriak",
|
||||
"quick_reactions": "Erreakzio azkarrak"
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Hai saioa urrats batean",
|
||||
"sso": "Single sign-on"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Mezuak"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_by": "Ordenatu honela",
|
||||
"sort_by_activity": "Jarduera",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Zerrenda-aukerak",
|
||||
"show_n_more": {
|
||||
"other": "Erakutsi %(count)s gehiago",
|
||||
"one": "Erakutsi %(count)s gehiago"
|
||||
},
|
||||
"show_less": "Erakutsi gutxiago",
|
||||
"notification_options": "Jakinarazpen ezarpenak"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Idatzi zergatik salatzen duzun.",
|
||||
"report_content_to_homeserver": "Salatu edukia zure hasiera-zerbitzariko administratzaileari",
|
||||
"description": "Mezu hau salatzeak bere 'gertaera ID'-a bidaliko dio hasiera-zerbitzariko administratzaileari. Gela honetako mezuak zifratuta badaude, zure hasiera-zerbitzariko administratzaileak ezin izango du mezuaren testua irakurri edo irudirik ikusi."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
"This email address is already in use": "این آدرس ایمیل در حال حاضر در حال استفاده است",
|
||||
"This phone number is already in use": "این شماره تلفن در حال استفاده است",
|
||||
"Use Single Sign On to continue": "برای ادامه، از ورود یکپارچه استفاده کنید",
|
||||
"Single Sign On": "ورود یکپارچه",
|
||||
"Confirm adding email": "تأیید افزودن رایانامه",
|
||||
"Add Email Address": "افزودن نشانی رایانامه",
|
||||
"Confirm adding phone number": "تأیید افزودن شماره تلفن",
|
||||
|
@ -506,7 +505,6 @@
|
|||
"The server has denied your request.": "سرور درخواست شما را رد کرده است.",
|
||||
"Use your Security Key to continue.": "برای ادامه از کلید امنیتی خود استفاده کنید.",
|
||||
"%(creator)s created and configured the room.": "%(creator)s اتاق را ایجاد و پیکربندی کرد.",
|
||||
"Report Content to Your Homeserver Administrator": "گزارش محتوا به مدیر سرور خود",
|
||||
"Be found by phone or email": "از طریق تلفن یا ایمیل پیدا شوید",
|
||||
"Find others by phone or email": "دیگران را از طریق تلفن یا ایمیل پیدا کنید",
|
||||
"Sign out and remove encryption keys?": "خروج از حساب کاربری و حذف کلیدهای رمزنگاری؟",
|
||||
|
@ -522,7 +520,6 @@
|
|||
"a new cross-signing key signature": "یک کلید امضای متقابل جدید",
|
||||
"a new master key signature": "یک شاهکلید جدید",
|
||||
"Close dialog or context menu": "بستن پنجره یا منوی محتوا",
|
||||
"Please fill why you're reporting.": "لطفا توضیح دهید که چرا گزارش میدهید.",
|
||||
"Password is allowed, but unsafe": "گذرواژه مجاز است ، اما ناامن است",
|
||||
"Upload files (%(current)s of %(total)s)": "بارگذاری فایلها (%(current)s از %(total)s)",
|
||||
"Failed to decrypt %(failedCount)s sessions!": "رمزگشایی %(failedCount)s نشست موفقیتآمیز نبود!",
|
||||
|
@ -737,9 +734,7 @@
|
|||
"And %(count)s more...": {
|
||||
"other": "و %(count)s مورد بیشتر ..."
|
||||
},
|
||||
"Sign in with single sign-on": "با احراز هویت یکپارچه وارد شوید",
|
||||
"This server does not support authentication with a phone number.": "این سرور از قابلیت احراز با شماره تلفن پشتیبانی نمی کند.",
|
||||
"Continue with %(provider)s": "با %(provider)s ادامه دهید",
|
||||
"Continue with %(ssoButtons)s": "با %(ssoButtons)s ادامه بده",
|
||||
"Join millions for free on the largest public server": "به بزرگترین سرور عمومی با میلیون ها نفر کاربر بپیوندید",
|
||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s یا %(usernamePassword)s",
|
||||
|
@ -766,7 +761,6 @@
|
|||
"User Autocomplete": "تکمیل خودکار کاربر",
|
||||
"Enter a Security Phrase": "یک عبارت امنیتی وارد کنید",
|
||||
"Great! This Security Phrase looks strong enough.": "عالی! این عبارت امنیتی به اندازه کافی قوی به نظر می رسد.",
|
||||
"QR Code": "کد QR",
|
||||
"Custom level": "سطح دلخواه",
|
||||
"Power level": "سطح قدرت",
|
||||
"That matches!": "مطابقت دارد!",
|
||||
|
@ -924,18 +918,8 @@
|
|||
"Room avatar": "آواتار اتاق",
|
||||
"Room Topic": "موضوع اتاق",
|
||||
"Room Name": "نام اتاق",
|
||||
"Show %(count)s more": {
|
||||
"other": "نمایش %(count)s مورد بیشتر",
|
||||
"one": "نمایش %(count)s مورد بیشتر"
|
||||
},
|
||||
"Jump to first invite.": "به اولین دعوت بروید.",
|
||||
"Jump to first unread room.": "به اولین اتاق خوانده نشده بروید.",
|
||||
"List options": "لیست گزینهها",
|
||||
"A-Z": "حروف الفبا",
|
||||
"Activity": "فعالیت",
|
||||
"Sort by": "مرتب سازی بر اساس",
|
||||
"Show previews of messages": "مشاهده پیشنمایش پیامها",
|
||||
"Show rooms with unread messages first": "ابتدا اتاق های با پیام خوانده نشده را نمایش بده",
|
||||
"%(roomName)s is not accessible at this time.": "در حال حاضر %(roomName)s قابل دسترسی نیست.",
|
||||
"%(roomName)s does not exist.": "%(roomName)s وجود ندارد.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "پیش بینی %(roomName)s امکان پذیر نیست. آیا می خواهید به آن بپیوندید؟",
|
||||
|
@ -966,8 +950,6 @@
|
|||
"Historical": "تاریخی",
|
||||
"Low priority": "اولویت کم",
|
||||
"Explore public rooms": "کاوش در اتاقهای عمومی",
|
||||
"You do not have permissions to add rooms to this space": "شما اجازه افزودن اتاق به این فضای کاری را ندارید",
|
||||
"You do not have permissions to create new rooms in this space": "شما اجازه ایجاد اتاق جدید در این فضای کاری را ندارید",
|
||||
"Add room": "افزودن اتاق",
|
||||
"Rooms": "اتاقها",
|
||||
"Open dial pad": "باز کردن صفحه شمارهگیری",
|
||||
|
@ -1281,20 +1263,9 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "این اتاق از نسخه اتاق <roomVersion /> استفاده می کند، که این سرور آن را به عنوان <i> ناپایدار</i> علامت گذاری کرده است.",
|
||||
"This room has already been upgraded.": "این اتاق قبلاً ارتقا یافته است.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "با ارتقا این اتاق نسخه فعلی اتاق خاموش شده و یک اتاق ارتقا یافته به همین نام ایجاد می شود.",
|
||||
"Unread messages.": "پیام های خوانده نشده.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "۱ پیام خوانده نشده.",
|
||||
"other": "%(count)s پیام خوانده نشده."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "۱ اشاره خوانده نشده.",
|
||||
"other": "%(count)s پیامهای خوانده نشده از جمله اشارهها."
|
||||
},
|
||||
"Room options": "تنظیمات اتاق",
|
||||
"Favourited": "مورد علاقه",
|
||||
"Forget Room": "اتاق را فراموش کن",
|
||||
"Notification options": "تنظیمات اعلان",
|
||||
"Show less": "نمایش کمتر",
|
||||
"exists": "وجود دارد",
|
||||
"Homeserver feature support:": "قابلیتهای پشتیبانیشده سمت سرور:",
|
||||
"User signing private key:": "کلید امضاء خصوصی کاربر:",
|
||||
|
@ -1591,8 +1562,6 @@
|
|||
"Something went wrong in confirming your identity. Cancel and try again.": "تائید هویت شما با مشکل مواجه شد. لطفا فرآیند را لغو کرده و مجددا اقدام نمائید.",
|
||||
"This room is public": "این اتاق عمومی است",
|
||||
"Avatar": "نمایه",
|
||||
"Join the beta": "اضافهشدن به نسخهی بتا",
|
||||
"Leave the beta": "ترک نسخهی بتا",
|
||||
"Move right": "به سمت راست ببر",
|
||||
"Move left": "به سمت چپ ببر",
|
||||
"Revoke permissions": "دسترسیها را لغو کنید",
|
||||
|
@ -1798,7 +1767,6 @@
|
|||
"Create a new room with the same name, description and avatar": "یک اتاق جدید با همان نام ، توضیحات و نمایه ایجاد کنید",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "ارتقاء این اتاق نیازمند بستن نسخهی فعلی و ساختن درجای یک اتاق جدید است. برای داشتن بهترین تجربهی کاربری ممکن، ما:",
|
||||
"The room upgrade could not be completed": "متاسفانه فرآیند ارتقاء اتاق به پایان نرسید",
|
||||
"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.": "گزارش این پیام شناسهی منحصر به فرد رخداد آن را برای مدیر سرور ارسال میکند. اگر پیامهای این اتاق رمزشده باشند، مدیر سرور شما امکان خواندن متن آن پیام یا مشاهدهی عکس یا فایلهای دیگر را نخواهد داشت.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "حواستان را جمع کنید، اگر ایمیلی اضافه نکرده و گذرواژهی خود را فراموش کنید ، ممکن است <b>دسترسی به حساب کاربری خود را برای همیشه از دست دهید</b>.",
|
||||
"Doesn't look like a valid email address": "به نظر نمیرسد یک آدرس ایمیل معتبر باشد",
|
||||
"If they don't match, the security of your communication may be compromised.": "اگر آنها مطابقت نداشتهباشند ، ممکن است امنیت ارتباطات شما به خطر افتاده باشد.",
|
||||
|
@ -2055,7 +2023,8 @@
|
|||
"secure_backup": "پشتیبانگیری امن",
|
||||
"cross_signing": "امضاء متقابل",
|
||||
"identity_server": "کارساز هویت",
|
||||
"integration_manager": "مدیر یکپارچگی"
|
||||
"integration_manager": "مدیر یکپارچگی",
|
||||
"qr_code": "کد QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "ادامه",
|
||||
|
@ -2144,7 +2113,16 @@
|
|||
"send_report": "ارسال گزارش"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "منوی کاربر"
|
||||
"user_menu": "منوی کاربر",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "۱ اشاره خوانده نشده.",
|
||||
"other": "%(count)s پیامهای خوانده نشده از جمله اشارهها."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "۱ پیام خوانده نشده.",
|
||||
"other": "%(count)s پیام خوانده نشده."
|
||||
},
|
||||
"unread_messages": "پیام های خوانده نشده."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "اتاق های تصویری",
|
||||
|
@ -2166,7 +2144,9 @@
|
|||
"group_themes": "قالب ها",
|
||||
"group_encryption": "رمزنگاری",
|
||||
"group_experimental": "تجربی",
|
||||
"group_developer": "توسعه دهنده"
|
||||
"group_developer": "توسعه دهنده",
|
||||
"leave_beta": "ترک نسخهی بتا",
|
||||
"join_beta": "اضافهشدن به نسخهی بتا"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "خانه",
|
||||
|
@ -2345,7 +2325,8 @@
|
|||
"creator_summary": "%(creatorName)s این اتاق ساخته شده.",
|
||||
"topic": "عنوان: %(topic)s",
|
||||
"error_fetching_file": "خطا در واکشی فایل",
|
||||
"file_attached": "فایل ضمیمه شد"
|
||||
"file_attached": "فایل ضمیمه شد",
|
||||
"messages": "پیام ها"
|
||||
},
|
||||
"create_room": {
|
||||
"title_public_room": "ساختن اتاق عمومی",
|
||||
|
@ -2682,7 +2663,6 @@
|
|||
"unsupported": "تماس ها پشتیبانی نمی شوند",
|
||||
"unsupported_browser": "شما نمیتوانید در این مرورگر تماس برقرار کنید."
|
||||
},
|
||||
"Messages": "پیام ها",
|
||||
"Other": "دیگر",
|
||||
"Advanced": "پیشرفته",
|
||||
"room_settings": {
|
||||
|
@ -2746,5 +2726,33 @@
|
|||
"snowfall_message": "انیمیشن بارش برف را ارسال کن",
|
||||
"spaceinvaders_description": "پیام داده شده را به صورت مضمون فضای کاری ارسال می کند",
|
||||
"spaceinvaders_message": "ارسال مهاجمان فضایی"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_create_room": "شما اجازه ایجاد اتاق جدید در این فضای کاری را ندارید",
|
||||
"error_no_permission_add_room": "شما اجازه افزودن اتاق به این فضای کاری را ندارید"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "با %(provider)s ادامه دهید",
|
||||
"sign_in_with_sso": "با احراز هویت یکپارچه وارد شوید",
|
||||
"sso": "ورود یکپارچه"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "ابتدا اتاق های با پیام خوانده نشده را نمایش بده",
|
||||
"show_previews": "مشاهده پیشنمایش پیامها",
|
||||
"sort_by": "مرتب سازی بر اساس",
|
||||
"sort_by_activity": "فعالیت",
|
||||
"sort_by_alphabet": "حروف الفبا",
|
||||
"sublist_options": "لیست گزینهها",
|
||||
"show_n_more": {
|
||||
"other": "نمایش %(count)s مورد بیشتر",
|
||||
"one": "نمایش %(count)s مورد بیشتر"
|
||||
},
|
||||
"show_less": "نمایش کمتر",
|
||||
"notification_options": "تنظیمات اعلان"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "لطفا توضیح دهید که چرا گزارش میدهید.",
|
||||
"report_content_to_homeserver": "گزارش محتوا به مدیر سرور خود",
|
||||
"description": "گزارش این پیام شناسهی منحصر به فرد رخداد آن را برای مدیر سرور ارسال میکند. اگر پیامهای این اتاق رمزشده باشند، مدیر سرور شما امکان خواندن متن آن پیام یا مشاهدهی عکس یا فایلهای دیگر را نخواهد داشت."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -395,7 +395,6 @@
|
|||
"Go to Settings": "Siirry asetuksiin",
|
||||
"Success!": "Onnistui!",
|
||||
"Create account": "Luo tili",
|
||||
"Sign in with single sign-on": "Kirjaudu sisään käyttäen kertakirjautumista",
|
||||
"Terms and Conditions": "Käyttöehdot",
|
||||
"Couldn't load page": "Sivun lataaminen ei onnistunut",
|
||||
"Email (optional)": "Sähköposti (valinnainen)",
|
||||
|
@ -732,9 +731,6 @@
|
|||
"For a large amount of messages, this might take some time. Please don't refresh your client in the meantime.": "Suuren viestimäärän tapauksessa toiminto voi kestää jonkin aikaa. Älä lataa asiakasohjelmaasi uudelleen sillä aikaa.",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Aseta identiteettipalvelin asetuksissa saadaksesi kutsuja suoraan %(brand)sissa.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Jaa tämä sähköposti asetuksissa saadaksesi kutsuja suoraan %(brand)sissa.",
|
||||
"Please fill why you're reporting.": "Kerro miksi teet ilmoitusta.",
|
||||
"Report Content to Your Homeserver Administrator": "Ilmoita sisällöstä kotipalvelimesi ylläpitäjälle",
|
||||
"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.": "Tämän viestin ilmoittaminen lähettää sen yksilöllisen tapahtumatunnuksen (event ID) kotipalvelimesi ylläpitäjälle. Jos tämän huoneen viestit on salattu, kotipalvelimesi ylläpitäjä ei voi lukea viestin tekstiä tai nähdä tiedostoja tai kuvia.",
|
||||
"Explore rooms": "Selaa huoneita",
|
||||
"Unable to revoke sharing for phone number": "Puhelinnumeron jakamista ei voi kumota",
|
||||
"Deactivate user?": "Poista käyttäjä pysyvästi?",
|
||||
|
@ -745,14 +741,6 @@
|
|||
"Please enter a name for the room": "Syötä huoneelle nimi",
|
||||
"Topic (optional)": "Aihe (valinnainen)",
|
||||
"Clear cache and reload": "Tyhjennä välimuisti ja lataa uudelleen",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s lukematonta viestiä, sisältäen maininnat.",
|
||||
"one": "Yksi lukematon maininta."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s lukematonta viestiä.",
|
||||
"one": "Yksi lukematon viesti."
|
||||
},
|
||||
"Show image": "Näytä kuva",
|
||||
"Close dialog": "Sulje dialogi",
|
||||
"To continue you need to accept the terms of this service.": "Sinun täytyy hyväksyä palvelun käyttöehdot jatkaaksesi.",
|
||||
|
@ -789,7 +777,6 @@
|
|||
"eg: @bot:* or example.org": "esim. @bot:* tai esimerkki.org",
|
||||
"Your email address hasn't been verified yet": "Sähköpostiosoitettasi ei ole vielä varmistettu",
|
||||
"Verify the link in your inbox": "Varmista sähköpostiisi saapunut linkki",
|
||||
"Unread messages.": "Lukemattomat viestit.",
|
||||
"Message Actions": "Viestitoiminnot",
|
||||
"None": "Ei mitään",
|
||||
"View rules": "Näytä säännöt",
|
||||
|
@ -890,7 +877,6 @@
|
|||
"Cancel entering passphrase?": "Peruuta salasanan syöttäminen?",
|
||||
"Encryption upgrade available": "Salauksen päivitys saatavilla",
|
||||
"Later": "Myöhemmin",
|
||||
"Show less": "Näytä vähemmän",
|
||||
"in memory": "muistissa",
|
||||
"Bridges": "Sillat",
|
||||
"Unknown Command": "Tuntematon komento",
|
||||
|
@ -974,7 +960,6 @@
|
|||
"Cancel autocomplete": "Peruuta automaattinen täydennys",
|
||||
"Use Single Sign On to continue": "Jatka kertakirjautumista käyttäen",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Vahvista tämän sähköpostiosoitteen lisääminen todistamalla henkilöllisyytesi kertakirjautumista käyttäen.",
|
||||
"Single Sign On": "Kertakirjautuminen",
|
||||
"Confirm adding email": "Vahvista sähköpostin lisääminen",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Vahvista tämän puhelinnumeron lisääminen todistamalla henkilöllisyytesi kertakirjautumista käyttäen.",
|
||||
"Confirm adding phone number": "Vahvista puhelinnumeron lisääminen",
|
||||
|
@ -1009,7 +994,6 @@
|
|||
"You signed in to a new session without verifying it:": "Olet kirjautunut uuteen istuntoon varmentamatta sitä:",
|
||||
"Verify your other session using one of the options below.": "Varmenna toinen istuntosi käyttämällä yhtä seuraavista tavoista.",
|
||||
"Almost there! Is %(displayName)s showing the same shield?": "Melkein valmista! Näyttääkö %(displayName)s saman kilven?",
|
||||
"QR Code": "QR-koodi",
|
||||
"To continue, use Single Sign On to prove your identity.": "Todista henkilöllisyytesi kertakirjautumisen avulla jatkaaksesi.",
|
||||
"If they don't match, the security of your communication may be compromised.": "Jos ne eivät täsmää, viestinnän turvallisuus saattaa olla vaarantunut.",
|
||||
"Restoring keys from backup": "Palautetaan avaimia varmuuskopiosta",
|
||||
|
@ -1097,7 +1081,6 @@
|
|||
"This address is available to use": "Tämä osoite on käytettävissä",
|
||||
"This address is already in use": "Tämä osoite on jo käytössä",
|
||||
"No recently visited rooms": "Ei hiljattain vierailtuja huoneita",
|
||||
"Sort by": "Lajittelutapa",
|
||||
"Switch to light mode": "Vaihda vaaleaan teemaan",
|
||||
"Switch to dark mode": "Vaihda tummaan teemaan",
|
||||
"Switch theme": "Vaihda teemaa",
|
||||
|
@ -1105,7 +1088,6 @@
|
|||
"Feedback": "Palaute",
|
||||
"Looks good!": "Hyvältä näyttää!",
|
||||
"Use custom size": "Käytä mukautettua kokoa",
|
||||
"Notification options": "Ilmoitusasetukset",
|
||||
"Room options": "Huoneen asetukset",
|
||||
"This room is public": "Tämä huone on julkinen",
|
||||
"Video conference started by %(senderName)s": "%(senderName)s aloitti ryhmävideopuhelun",
|
||||
|
@ -1116,10 +1098,6 @@
|
|||
"Wrong file type": "Väärä tiedostotyyppi",
|
||||
"Room address": "Huoneen osoite",
|
||||
"Message deleted on %(date)s": "Viesti poistettu %(date)s",
|
||||
"Show %(count)s more": {
|
||||
"one": "Näytä %(count)s lisää",
|
||||
"other": "Näytä %(count)s lisää"
|
||||
},
|
||||
"Read Marker off-screen lifetime (ms)": "Viestin luetuksi merkkaamisen kesto, kun Element ei ole näkyvissä (ms)",
|
||||
"Add widgets, bridges & bots": "Lisää sovelmia, siltoja ja botteja",
|
||||
"Edit widgets, bridges & bots": "Muokkaa sovelmia, siltoja ja botteja",
|
||||
|
@ -1142,8 +1120,6 @@
|
|||
"Click to view edits": "Napsauta nähdäksesi muokkaukset",
|
||||
"Edited at %(date)s": "Muokattu %(date)s",
|
||||
"Forget Room": "Unohda huone",
|
||||
"Show previews of messages": "Näytä viestien esikatselut",
|
||||
"Show rooms with unread messages first": "Näytä ensimmäisenä huoneet, joissa on lukemattomia viestejä",
|
||||
"This is the start of <roomName/>.": "Tästä alkaa <roomName/>.",
|
||||
"%(displayName)s created this room.": "%(displayName)s loi tämän huoneen.",
|
||||
"You created this room.": "Loit tämän huoneen.",
|
||||
|
@ -1351,9 +1327,6 @@
|
|||
"Hide Widgets": "Piilota sovelmat",
|
||||
"Show Widgets": "Näytä sovelmat",
|
||||
"Explore public rooms": "Selaa julkisia huoneita",
|
||||
"List options": "Lajittele",
|
||||
"Activity": "Aktiivisuus",
|
||||
"A-Z": "A-Ö",
|
||||
"Server Options": "Palvelinasetukset",
|
||||
"Information": "Tiedot",
|
||||
"Zimbabwe": "Zimbabwe",
|
||||
|
@ -1559,7 +1532,6 @@
|
|||
"Failed to transfer call": "Puhelunsiirto epäonnistui",
|
||||
"A call can only be transferred to a single user.": "Puhelun voi siirtää vain yhdelle käyttäjälle.",
|
||||
"Block anyone not part of %(serverName)s from ever joining this room.": "Estä muita kuin palvelimen %(serverName)s jäseniä liittymästä tähän huoneeseen.",
|
||||
"Continue with %(provider)s": "Jatka käyttäen palveluntarjoajaa %(provider)s",
|
||||
"Open dial pad": "Avaa näppäimistö",
|
||||
"Dial pad": "Näppäimistö",
|
||||
"There was an error looking up the phone number": "Puhelinnumeron haussa tapahtui virhe",
|
||||
|
@ -1672,21 +1644,14 @@
|
|||
"Unable to copy room link": "Huoneen linkin kopiointi ei onnistu",
|
||||
"Error downloading audio": "Virhe ääntä ladattaessa",
|
||||
"Avatar": "Avatar",
|
||||
"Join the beta": "Liity beetaan",
|
||||
"Leave the beta": "Poistu beetasta",
|
||||
"Show preview": "Näytä esikatselu",
|
||||
"View source": "Näytä lähde",
|
||||
"Settings - %(spaceName)s": "Asetukset - %(spaceName)s",
|
||||
"Report the entire room": "Raportoi koko huone",
|
||||
"Search spaces": "Etsi avaruuksia",
|
||||
"You may contact me if you have any follow up questions": "Voitte olla yhteydessä minuun, jos teillä on lisäkysymyksiä",
|
||||
"Search for rooms or people": "Etsi huoneita tai ihmisiä",
|
||||
"Message preview": "Viestin esikatselu",
|
||||
"Sent": "Lähetetty",
|
||||
"Include Attachments": "Sisällytä liitteet",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Oletko varma, että haluat lopettaa tietojen viennin? Jos lopetat, joudut aloittamaan alusta.",
|
||||
"Export Successful": "Vienti onnistui",
|
||||
"Number of messages": "Viestien määrä",
|
||||
"Server did not require any authentication": "Palvelin ei vaatinut mitään tunnistautumista",
|
||||
"Only people invited will be able to find and join this space.": "Vain kutsutut ihmiset voivat löytää tämän avaruuden ja liittyä siihen.",
|
||||
"Public space": "Julkinen avaruus",
|
||||
|
@ -1799,7 +1764,6 @@
|
|||
"Please enter a name for the space": "Anna nimi avaruudelle",
|
||||
"Address": "Osoite",
|
||||
"Create a new space": "Luo uusi avaruus",
|
||||
"You do not have permissions to create new rooms in this space": "Sinulla ei ole oikeuksia luoda uusia huoneita tässä avaruudessa",
|
||||
"Create a space": "Luo avaruus",
|
||||
"I'll verify later": "Vahvistan myöhemmin",
|
||||
"Skip verification for now": "Ohita vahvistus toistaiseksi",
|
||||
|
@ -1808,11 +1772,8 @@
|
|||
"Who are you working with?": "Kenen kanssa työskentelet?",
|
||||
"Results": "Tulokset",
|
||||
"Suggested": "Ehdotettu",
|
||||
"Illegal Content": "Laiton sisältö",
|
||||
"You won't be able to rejoin unless you are re-invited.": "Et voi liittyä uudelleen, ellei sinua kutsuta uudelleen.",
|
||||
"User Directory": "Käyttäjähakemisto",
|
||||
"Size Limit": "Kokoraja",
|
||||
"The export was cancelled successfully": "Vienti peruttiin onnistuneesti",
|
||||
"MB": "Mt",
|
||||
"Server did not return valid authentication information.": "Palvelin ei palauttanut kelvollista tunnistautumistietoa.",
|
||||
"Please provide an address": "Määritä osoite",
|
||||
|
@ -1833,11 +1794,6 @@
|
|||
"Leave all rooms": "Poistu kaikista huoneista",
|
||||
"Don't leave any rooms": "Älä poistu mistään huoneesta",
|
||||
"Or send invite link": "Tai lähetä kutsulinkki",
|
||||
"Export Chat": "Vie keskustelu",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Vienti onnistui. Se löytyy Lataukset-kansiosta.",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Viestimäärän täytyy olla luku väliltä %(min)s…%(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Koon täytyy olla luku väliltä %(min)s…%(max)s Mt",
|
||||
"Enter a number between %(min)s and %(max)s": "Anna luku väliltä %(min)s…%(max)s",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Viestihaun alustus epäonnistui. Lisätietoa <a>asetuksissa</a>.",
|
||||
"Error - Mixed content": "Virhe – sekasisältö",
|
||||
"Error loading Widget": "Virhe sovelman lataamisessa",
|
||||
|
@ -1910,8 +1866,6 @@
|
|||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Aseta osoitteita tälle avaruudelle, jotta käyttäjät löytävät tämän avaruuden kotipalvelimeltasi (%(localDomain)s)",
|
||||
"This space has no local addresses": "Tällä avaruudella ei ole paikallista osoitetta",
|
||||
"%(spaceName)s menu": "%(spaceName)s-valikko",
|
||||
"You do not have permissions to add rooms to this space": "Sinulla ei ole oikeuksia lisätä huoneita tähän avaruuteen",
|
||||
"You do not have permissions to invite people to this space": "Sinulla ei ole oikeuksia kutsua ihmisiä tähän avaruuteen",
|
||||
"Invite to space": "Kutsu avaruuteen",
|
||||
"Select the roles required to change various parts of the space": "Valitse roolit, jotka vaaditaan avaruuden eri osioiden muuttamiseen",
|
||||
"Rooms outside of a space": "Huoneet, jotka eivät kuulu mihinkään avaruuteen",
|
||||
|
@ -2054,7 +2008,6 @@
|
|||
"Recent searches": "Viimeaikaiset haut",
|
||||
"Other searches": "Muut haut",
|
||||
"Public rooms": "Julkiset huoneet",
|
||||
"Export Cancelled": "Vienti peruttu",
|
||||
"The poll has ended. Top answer: %(topAnswer)s": "Kysely on päättynyt. Suosituin vastaus: %(topAnswer)s",
|
||||
"The poll has ended. No votes were cast.": "Kysely on päättynyt. Ääniä ei annettu.",
|
||||
"You are about to remove %(count)s messages by %(user)s. This will remove them permanently for everyone in the conversation. Do you wish to continue?": {
|
||||
|
@ -2116,8 +2069,6 @@
|
|||
"Wait!": "Odota!",
|
||||
"Own your conversations.": "Omista keskustelusi.",
|
||||
"Unnamed audio": "Nimetön ääni",
|
||||
"Click for more info": "Napsauta tästä saadaksesi lisätietoja",
|
||||
"This is a beta feature": "Tämä on beetaominaisuus",
|
||||
"Start audio stream": "Käynnistä äänen suoratoisto",
|
||||
"Unable to start audio streaming.": "Äänen suoratoiston aloittaminen ei onnistu.",
|
||||
"Open in OpenStreetMap": "Avaa OpenStreetMapissa",
|
||||
|
@ -2127,8 +2078,6 @@
|
|||
"Link to room": "Linkitä huoneeseen",
|
||||
"Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.org on maailman suurin julkinen kotipalvelin, joten se on hyvä valinta useimmille.",
|
||||
"Automatically invite members from this room to the new one": "Kutsu jäsenet tästä huoneesta automaattisesti uuteen huoneeseen",
|
||||
"Spam or propaganda": "Roskapostitusta tai propagandaa",
|
||||
"Toxic Behaviour": "Myrkyllinen käyttäytyminen",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Palaute lähetetty. Kiitos, arvostamme sitä!",
|
||||
"%(featureName)s Beta feedback": "Ominaisuuden %(featureName)s beetapalaute",
|
||||
"Including you, %(commaSeparatedMembers)s": "Mukaan lukien sinä, %(commaSeparatedMembers)s",
|
||||
|
@ -2140,7 +2089,6 @@
|
|||
"Copy room link": "Kopioi huoneen linkki",
|
||||
"New video room": "Uusi videohuone",
|
||||
"New room": "Uusi huone",
|
||||
"Ignore user": "Sivuuta käyttäjä",
|
||||
"You don't have permission to do this": "Sinulla ei ole lupaa tehdä tätä",
|
||||
"Failed to end poll": "Kyselyn päättäminen epäonnistui",
|
||||
"Hide my messages from new joiners": "Piilota viestini uusilta liittyjiltä",
|
||||
|
@ -2217,7 +2165,6 @@
|
|||
"Open thread": "Avaa ketju",
|
||||
"This room or space does not exist.": "Tätä huonetta tai avaruutta ei ole olemassa.",
|
||||
"Forget this space": "Unohda tämä avaruus",
|
||||
"You do not have permissions to add spaces to this space": "Sinulla ei ole oikeuksia lisätä avaruuksia tähän avaruuteen",
|
||||
"Recently viewed": "Äskettäin katsottu",
|
||||
"%(members)s and more": "%(members)s ja enemmän",
|
||||
"Copy link to thread": "Kopioi linkki ketjuun",
|
||||
|
@ -2332,11 +2279,6 @@
|
|||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s tai %(recoveryFile)s",
|
||||
"Your server lacks native support": "Palvelimellasi ei ole natiivitukea",
|
||||
"Your server has native support": "Palvelimellasi on natiivituki",
|
||||
"Get it on F-Droid": "Hanki F-Droidista",
|
||||
"Get it on Google Play": "Hanki Google Playsta",
|
||||
"Download on the App Store": "Lataa App Storesta",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s tai %(appLinks)s",
|
||||
"Download %(brand)s Desktop": "Lataa %(brand)sin työpöytäversio",
|
||||
"Online community members": "Verkkoyhteisöjen jäsenet",
|
||||
"Coworkers and teams": "Työkaverit ja tiimit",
|
||||
"Friends and family": "Kaverit ja perhe",
|
||||
|
@ -2401,7 +2343,6 @@
|
|||
"Sessions": "Istunnot",
|
||||
"Share your activity and status with others.": "Jaa toimintasi ja tilasi muiden kanssa.",
|
||||
"Spell check": "Oikeinkirjoituksen tarkistus",
|
||||
"Download %(brand)s": "Lataa %(brand)s",
|
||||
"Sorry — this call is currently full": "Pahoittelut — tämä puhelu on täynnä",
|
||||
"Unknown room": "Tuntematon huone",
|
||||
"Mapbox logo": "Mapboxin logo",
|
||||
|
@ -2504,10 +2445,7 @@
|
|||
},
|
||||
"Reply in thread": "Vastaa ketjuun",
|
||||
"That e-mail address or phone number is already in use.": "Tämä sähköpostiosoite tai puhelinnumero on jo käytössä.",
|
||||
"Exporting your data": "Tietojen vienti",
|
||||
"You can't disable this later. The room will be encrypted but the embedded call will not.": "Et voi poistaa tätä käytöstä myöhemmin. Huone salataan, mutta siihen upotettu puhelu ei ole salattu.",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play ja the Google Play -logo ovat Google LLC.:n tavaramerkkejä",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® ja Apple logo® ovat Apple Inc.:n tavaramerkkejä",
|
||||
"This address had invalid server or is already in use": "Tässä osoitteessa on virheellinen palvelin tai se on jo käytössä",
|
||||
"Navigate to previous message in composer history": "Siirry edelliseen viestiin muokkainhistoriassa",
|
||||
"Navigate to next message in composer history": "Siirry seuraavaan viestiin muokkainhistoriassa",
|
||||
|
@ -2515,8 +2453,6 @@
|
|||
"Navigate to next message to edit": "Siirry seuraavaan viestiin muokataksesi",
|
||||
"Original event source": "Alkuperäinen tapahtumalähde",
|
||||
"Sign in new device": "Kirjaa sisään uusi laite",
|
||||
"Joining the beta will reload %(brand)s.": "Beetaan liittyminen lataa %(brand)sin uudelleen.",
|
||||
"Leaving the beta will reload %(brand)s.": "Beetasta poistuminen lataa %(brand)sin uudelleen.",
|
||||
"Drop a Pin": "Sijoita karttaneula",
|
||||
"Click to drop a pin": "Napsauta sijoittaaksesi karttaneulan",
|
||||
"Click to move the pin": "Napsauta siirtääksesi karttaneulaa",
|
||||
|
@ -2538,8 +2474,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Seuraa osoitteeseen <b>%(email)s</b> lähetettyjä ohjeita",
|
||||
"Sign out of all devices": "Kirjaudu ulos kaikista laitteista",
|
||||
"Confirm new password": "Vahvista uusi salasana",
|
||||
"Reset your password": "Nollaa salasanasi",
|
||||
"Reset password": "Nollaa salasana",
|
||||
"<w>WARNING:</w> <description/>": "<w>VAROITUS:</w> <description/>",
|
||||
"Unable to decrypt message": "Viestin salauksen purkaminen ei onnistu",
|
||||
"Change layout": "Vaihda asettelua",
|
||||
|
@ -2624,7 +2558,6 @@
|
|||
"Fetching keys from server…": "Noudetaan avaimia palvelimelta…",
|
||||
"Checking…": "Tarkistetaan…",
|
||||
"Invites by email can only be sent one at a time": "Sähköpostikutsuja voi lähettää vain yhden kerrallaan",
|
||||
"Processing…": "Käsitellään…",
|
||||
"Adding…": "Lisätään…",
|
||||
"Write something…": "Kirjoita joitain…",
|
||||
"Message from %(user)s": "Viesti käyttäjältä %(user)s",
|
||||
|
@ -2779,7 +2712,8 @@
|
|||
"secure_backup": "Turvallinen varmuuskopio",
|
||||
"cross_signing": "Ristiinvarmennus",
|
||||
"identity_server": "Identiteettipalvelin",
|
||||
"integration_manager": "Integraatiohallinta"
|
||||
"integration_manager": "Integraatiohallinta",
|
||||
"qr_code": "QR-koodi"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Jatka",
|
||||
|
@ -2881,7 +2815,16 @@
|
|||
"clear": "Tyhjennä"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Käyttäjän valikko"
|
||||
"user_menu": "Käyttäjän valikko",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s lukematonta viestiä, sisältäen maininnat.",
|
||||
"one": "Yksi lukematon maininta."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s lukematonta viestiä.",
|
||||
"one": "Yksi lukematon viesti."
|
||||
},
|
||||
"unread_messages": "Lukemattomat viestit."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videohuoneet",
|
||||
|
@ -2921,7 +2864,13 @@
|
|||
"group_themes": "Teemat",
|
||||
"group_encryption": "Salaus",
|
||||
"group_experimental": "Kokeellinen",
|
||||
"group_developer": "Kehittäjä"
|
||||
"group_developer": "Kehittäjä",
|
||||
"beta_feature": "Tämä on beetaominaisuus",
|
||||
"click_for_info": "Napsauta tästä saadaksesi lisätietoja",
|
||||
"leave_beta_reload": "Beetasta poistuminen lataa %(brand)sin uudelleen.",
|
||||
"join_beta_reload": "Beetaan liittyminen lataa %(brand)sin uudelleen.",
|
||||
"leave_beta": "Poistu beetasta",
|
||||
"join_beta": "Liity beetaan"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Etusivu",
|
||||
|
@ -3048,7 +2997,15 @@
|
|||
"enable_notifications": "Ota ilmoitukset käyttöön",
|
||||
"download_app_description": "Älä jää mistään paitsi, ota %(brand)s mukaasi",
|
||||
"download_app_action": "Lataa sovellukset",
|
||||
"download_app": "Lataa %(brand)s"
|
||||
"download_app": "Lataa %(brand)s",
|
||||
"download_brand": "Lataa %(brand)s",
|
||||
"download_brand_desktop": "Lataa %(brand)sin työpöytäversio",
|
||||
"qr_or_app_links": "%(qrCode)s tai %(appLinks)s",
|
||||
"download_app_store": "Lataa App Storesta",
|
||||
"download_google_play": "Hanki Google Playsta",
|
||||
"download_f_droid": "Hanki F-Droidista",
|
||||
"apple_trademarks": "App Store® ja Apple logo® ovat Apple Inc.:n tavaramerkkejä",
|
||||
"google_trademarks": "Google Play ja the Google Play -logo ovat Google LLC.:n tavaramerkkejä"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Näytä oikotiet viimeksi katsottuihin huoneisiin huoneluettelon yläpuolella",
|
||||
|
@ -3220,7 +3177,22 @@
|
|||
"error_fetching_file": "Virhe tiedostoa noutaessa",
|
||||
"file_attached": "Tiedosto liitetty",
|
||||
"fetching_events": "Noudetaan tapahtumia…",
|
||||
"creating_output": "Luodaan tulostetta…"
|
||||
"creating_output": "Luodaan tulostetta…",
|
||||
"processing": "Käsitellään…",
|
||||
"enter_number_between_min_max": "Anna luku väliltä %(min)s…%(max)s",
|
||||
"size_limit_min_max": "Koon täytyy olla luku väliltä %(min)s…%(max)s Mt",
|
||||
"num_messages_min_max": "Viestimäärän täytyy olla luku väliltä %(min)s…%(max)s",
|
||||
"num_messages": "Viestien määrä",
|
||||
"cancelled": "Vienti peruttu",
|
||||
"cancelled_detail": "Vienti peruttiin onnistuneesti",
|
||||
"successful": "Vienti onnistui",
|
||||
"successful_detail": "Vienti onnistui. Se löytyy Lataukset-kansiosta.",
|
||||
"confirm_stop": "Oletko varma, että haluat lopettaa tietojen viennin? Jos lopetat, joudut aloittamaan alusta.",
|
||||
"exporting_your_data": "Tietojen vienti",
|
||||
"title": "Vie keskustelu",
|
||||
"messages": "Viestit",
|
||||
"size_limit": "Kokoraja",
|
||||
"include_attachments": "Sisällytä liitteet"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Luo videohuone",
|
||||
|
@ -3609,7 +3581,6 @@
|
|||
"unsupported": "Puhelut eivät ole tuettuja",
|
||||
"unsupported_browser": "Et voi soittaa puheluja tässä selaimessa."
|
||||
},
|
||||
"Messages": "Viestit",
|
||||
"Other": "Muut",
|
||||
"Advanced": "Lisäasetukset",
|
||||
"room_settings": {
|
||||
|
@ -3694,5 +3665,42 @@
|
|||
"spaceinvaders_description": "Lähetä annettu viesti avaruusteemaisella tehosteella",
|
||||
"hearts_description": "Lähettää viestin sydämien kera",
|
||||
"hearts_message": "lähettää sydämiä"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Sinulla ei ole oikeuksia kutsua ihmisiä tähän avaruuteen",
|
||||
"error_no_permission_create_room": "Sinulla ei ole oikeuksia luoda uusia huoneita tässä avaruudessa",
|
||||
"error_no_permission_add_room": "Sinulla ei ole oikeuksia lisätä huoneita tähän avaruuteen",
|
||||
"error_no_permission_add_space": "Sinulla ei ole oikeuksia lisätä avaruuksia tähän avaruuteen"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Jatka käyttäen palveluntarjoajaa %(provider)s",
|
||||
"sign_in_with_sso": "Kirjaudu sisään käyttäen kertakirjautumista",
|
||||
"sso": "Kertakirjautuminen",
|
||||
"reset_password_action": "Nollaa salasana",
|
||||
"reset_password_title": "Nollaa salasanasi"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Näytä ensimmäisenä huoneet, joissa on lukemattomia viestejä",
|
||||
"show_previews": "Näytä viestien esikatselut",
|
||||
"sort_by": "Lajittelutapa",
|
||||
"sort_by_activity": "Aktiivisuus",
|
||||
"sort_by_alphabet": "A-Ö",
|
||||
"sublist_options": "Lajittele",
|
||||
"show_n_more": {
|
||||
"one": "Näytä %(count)s lisää",
|
||||
"other": "Näytä %(count)s lisää"
|
||||
},
|
||||
"show_less": "Näytä vähemmän",
|
||||
"notification_options": "Ilmoitusasetukset"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Kerro miksi teet ilmoitusta.",
|
||||
"ignore_user": "Sivuuta käyttäjä",
|
||||
"toxic_behaviour": "Myrkyllinen käyttäytyminen",
|
||||
"illegal_content": "Laiton sisältö",
|
||||
"spam_or_propaganda": "Roskapostitusta tai propagandaa",
|
||||
"report_entire_room": "Raportoi koko huone",
|
||||
"report_content_to_homeserver": "Ilmoita sisällöstä kotipalvelimesi ylläpitäjälle",
|
||||
"description": "Tämän viestin ilmoittaminen lähettää sen yksilöllisen tapahtumatunnuksen (event ID) kotipalvelimesi ylläpitäjälle. Jos tämän huoneen viestit on salattu, kotipalvelimesi ylläpitäjä ei voi lukea viestin tekstiä tai nähdä tiedostoja tai kuvia."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -366,7 +366,6 @@
|
|||
"To avoid losing your chat history, you must export your room keys before logging out. You will need to go back to the newer version of %(brand)s to do this": "Pour éviter de perdre l’historique de vos discussions, vous devez exporter vos clés avant de vous déconnecter. Vous devez revenir à une version plus récente de %(brand)s pour pouvoir le faire",
|
||||
"Incompatible Database": "Base de données incompatible",
|
||||
"Continue With Encryption Disabled": "Continuer avec le chiffrement désactivé",
|
||||
"Sign in with single sign-on": "Se connecter avec l’authentification unique",
|
||||
"Unable to load! Check your network connectivity and try again.": "Chargement impossible ! Vérifiez votre connexion au réseau et réessayez.",
|
||||
"Delete Backup": "Supprimer la sauvegarde",
|
||||
"Unable to load key backup status": "Impossible de charger l’état de sauvegarde des clés",
|
||||
|
@ -751,9 +750,6 @@
|
|||
"Remove recent messages": "Supprimer les messages récents",
|
||||
"Explore rooms": "Parcourir les salons",
|
||||
"Verify the link in your inbox": "Vérifiez le lien dans votre boîte de réception",
|
||||
"Please fill why you're reporting.": "Dites-nous pourquoi vous envoyez un signalement.",
|
||||
"Report Content to Your Homeserver Administrator": "Signaler le contenu à l’administrateur de votre serveur d’accueil",
|
||||
"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.": "Le signalement de ce message enverra son « event ID » unique à l’administrateur de votre serveur d’accueil. Si les messages dans ce salon sont chiffrés, l’administrateur ne pourra pas lire le texte du message ou voir les fichiers ou les images.",
|
||||
"Read Marker lifetime (ms)": "Durée de vie du repère de lecture (ms)",
|
||||
"Read Marker off-screen lifetime (ms)": "Durée de vie du repère de lecture en dehors de l’écran (ms)",
|
||||
"e.g. my-room": "par ex. mon-salon",
|
||||
|
@ -770,14 +766,6 @@
|
|||
"User Autocomplete": "Autocomplétion d’utilisateur",
|
||||
"Show image": "Afficher l’image",
|
||||
"Clear cache and reload": "Vider le cache et recharger",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s messages non lus y compris les mentions.",
|
||||
"one": "1 mention non lue."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s messages non lus.",
|
||||
"one": "1 message non lu."
|
||||
},
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Clé public du captcha manquante dans la configuration du serveur d’accueil. Veuillez le signaler à l’administrateur de votre serveur d’accueil.",
|
||||
"Your email address hasn't been verified yet": "Votre adresse e-mail n’a pas encore été vérifiée",
|
||||
"Click the link in the email you received to verify and then click continue again.": "Cliquez sur le lien dans l’e-mail que vous avez reçu pour la vérifier et cliquez encore sur continuer.",
|
||||
|
@ -797,7 +785,6 @@
|
|||
"Jump to first unread room.": "Sauter au premier salon non lu.",
|
||||
"Jump to first invite.": "Sauter à la première invitation.",
|
||||
"Room %(name)s": "Salon %(name)s",
|
||||
"Unread messages.": "Messages non lus.",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "Cette action nécessite l’accès au serveur d’identité par défaut <server /> afin de valider une adresse e-mail ou un numéro de téléphone, mais le serveur n’a aucune condition de service.",
|
||||
"Message Actions": "Actions de message",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
|
@ -922,7 +909,6 @@
|
|||
"Indexed messages:": "Messages indexés :",
|
||||
"Waiting for %(displayName)s to verify…": "En attente de la vérification de %(displayName)s…",
|
||||
"This bridge was provisioned by <user />.": "Cette passerelle a été fournie par <user />.",
|
||||
"Show less": "En voir moins",
|
||||
"This room is bridging messages to the following platforms. <a>Learn more.</a>": "Ce salon transmet les messages vers les plateformes suivantes. <a>En savoir plus.</a>",
|
||||
"Bridges": "Passerelles",
|
||||
"Waiting for %(displayName)s to accept…": "En attente d’acceptation par %(displayName)s…",
|
||||
|
@ -1062,7 +1048,6 @@
|
|||
"Cancel replying to a message": "Annuler la réponse à un message",
|
||||
"Use Single Sign On to continue": "Utiliser l’authentification unique pour continuer",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirmez l’ajout de cette adresse e-mail en utilisant l’authentification unique pour prouver votre identité.",
|
||||
"Single Sign On": "Authentification unique",
|
||||
"Confirm adding email": "Confirmer l’ajout de l’e-mail",
|
||||
"Click the button below to confirm adding this email address.": "Cliquez sur le bouton ci-dessous pour confirmer l’ajout de l’adresse e-mail.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirmez l’ajout de ce numéro de téléphone en utilisant l’authentification unique pour prouver votre identité.",
|
||||
|
@ -1112,7 +1097,6 @@
|
|||
"Click the button below to confirm your identity.": "Cliquez sur le bouton ci-dessous pour confirmer votre identité.",
|
||||
"Confirm encryption setup": "Confirmer la configuration du chiffrement",
|
||||
"Click the button below to confirm setting up encryption.": "Cliquez sur le bouton ci-dessous pour confirmer la configuration du chiffrement.",
|
||||
"QR Code": "QR code",
|
||||
"Dismiss read marker and jump to bottom": "Ignorer le signet de lecture et aller en bas",
|
||||
"Jump to oldest unread message": "Aller au plus ancien message non lu",
|
||||
"Upload a file": "Envoyer un fichier",
|
||||
|
@ -1146,16 +1130,8 @@
|
|||
"All settings": "Tous les paramètres",
|
||||
"Feedback": "Commentaire",
|
||||
"No recently visited rooms": "Aucun salon visité récemment",
|
||||
"Sort by": "Trier par",
|
||||
"Message preview": "Aperçu de message",
|
||||
"List options": "Options de liste",
|
||||
"Show %(count)s more": {
|
||||
"other": "En afficher %(count)s de plus",
|
||||
"one": "En afficher %(count)s de plus"
|
||||
},
|
||||
"Room options": "Options du salon",
|
||||
"Activity": "Activité",
|
||||
"A-Z": "A-Z",
|
||||
"Looks good!": "Ça a l’air correct !",
|
||||
"Use custom size": "Utiliser une taille personnalisée",
|
||||
"Hey you. You're the best!": "Hé vous. Vous êtes le meilleur !",
|
||||
|
@ -1174,9 +1150,6 @@
|
|||
"Set a Security Phrase": "Définir une phrase de sécurité",
|
||||
"Confirm Security Phrase": "Confirmer la phrase de sécurité",
|
||||
"Save your Security Key": "Sauvegarder votre clé de sécurité",
|
||||
"Show rooms with unread messages first": "Afficher les salons non lus en premier",
|
||||
"Show previews of messages": "Afficher un aperçu des messages",
|
||||
"Notification options": "Paramètres de notifications",
|
||||
"Favourited": "Favori",
|
||||
"Forget Room": "Oublier le salon",
|
||||
"This room is public": "Ce salon est public",
|
||||
|
@ -1587,7 +1560,6 @@
|
|||
"A call can only be transferred to a single user.": "Un appel ne peut être transféré qu’à un seul utilisateur.",
|
||||
"Invite by email": "Inviter par e-mail",
|
||||
"Reason (optional)": "Raison (optionnelle)",
|
||||
"Continue with %(provider)s": "Continuer avec %(provider)s",
|
||||
"Server Options": "Options serveur",
|
||||
"This is the start of <roomName/>.": "C’est le début de <roomName/>.",
|
||||
"Add a photo, so people can easily spot your room.": "Ajoutez une photo afin que les gens repèrent facilement votre salon.",
|
||||
|
@ -1707,9 +1679,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Vous ne pourrez pas annuler ce changement puisque vous vous rétrogradez. Si vous êtes le dernier utilisateur a privilèges de cet espace, il deviendra impossible d’en reprendre contrôle.",
|
||||
"Empty room": "Salon vide",
|
||||
"Suggested Rooms": "Salons recommandés",
|
||||
"You do not have permissions to add rooms to this space": "Vous n’avez pas la permission d’ajouter des salons à cet espace",
|
||||
"Add existing room": "Ajouter un salon existant",
|
||||
"You do not have permissions to create new rooms in this space": "Vous n’avez pas la permission de créer de nouveaux salons dans cet espace",
|
||||
"Invite to this space": "Inviter dans cet espace",
|
||||
"Your message was sent": "Votre message a été envoyé",
|
||||
"Space options": "Options de l’espace",
|
||||
|
@ -1799,8 +1769,6 @@
|
|||
"You have no ignored users.": "Vous n’avez ignoré personne.",
|
||||
"Your access token gives full access to your account. Do not share it with anyone.": "Votre jeton d’accès donne un accès intégral à votre compte. Ne le partagez avec personne.",
|
||||
"Select a room below first": "Sélectionnez un salon ci-dessous d’abord",
|
||||
"Join the beta": "Rejoindre la bêta",
|
||||
"Leave the beta": "Quitter la bêta",
|
||||
"Want to add a new room instead?": "Voulez-vous plutôt ajouter un nouveau salon ?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Ajout du salon…",
|
||||
|
@ -1842,21 +1810,11 @@
|
|||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Si vous avez les permissions, ouvrez le menu de n’importe quel message et sélectionnez <b>Épingler</b> pour les afficher ici.",
|
||||
"Nothing pinned, yet": "Rien d’épinglé, pour l’instant",
|
||||
"End-to-end encryption isn't enabled": "Le chiffrement de bout en bout n’est pas activé",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Toute autre raison. Veuillez décrire le problème.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Cet utilisateur inonde le salon de publicités ou liens vers des publicités, ou vers de la propagande.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Cet utilisateur fait preuve d’un comportement illicite, par exemple en publiant des informations personnelles d’autres ou en proférant des menaces.\nCeci sera signalé aux modérateurs du salon qui pourront l’escalader aux autorités.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Ce que cet utilisateur écrit est déplacé.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"Report": "Signaler",
|
||||
"Collapse reply thread": "Masquer le fil de discussion",
|
||||
"Show preview": "Afficher l’aperçu",
|
||||
"View source": "Afficher la source",
|
||||
"Settings - %(spaceName)s": "Paramètres - %(spaceName)s",
|
||||
"Report the entire room": "Signaler le salon entier",
|
||||
"Spam or propaganda": "Publicité ou propagande",
|
||||
"Illegal Content": "Contenu illicite",
|
||||
"Toxic Behaviour": "Comportement toxique",
|
||||
"Disagree": "Désaccord",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Veuillez choisir la nature du rapport et décrire ce qui rend ce message abusif.",
|
||||
"Please provide an address": "Veuillez fournir une adresse",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Échec de l’initialisation de la recherche de messages, vérifiez <a>vos paramètres</a> pour plus d’information",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Définissez les adresses de cet espace pour que les utilisateurs puissent le trouver avec votre serveur d’accueil (%(localDomain)s)",
|
||||
|
@ -1950,7 +1908,6 @@
|
|||
"Add space": "Ajouter un espace",
|
||||
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>Veuillez notez que la mise-à-jour va créer une nouvelle version de ce salon</b>. Tous les messages actuels resteront dans ce salon archivé.",
|
||||
"Automatically invite members from this room to the new one": "Inviter automatiquement les membres de ce salon dans le nouveau",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Ce salon est utilisé pour du contenu toxique ou illégal, ou les modérateurs ont échoué à modérer le contenu toxique ou illégal.\nCela sera signalé aux administrateurs de %(homeserver)s. Les administrateurs ne pourront PAS lire le contenu chiffré ce salon.",
|
||||
"These are likely ones other room admins are a part of.": "Ces autres administrateurs du salon en font probablement partie.",
|
||||
"Other spaces or rooms you might not know": "Autres espaces ou salons que vous pourriez ne pas connaître",
|
||||
"Spaces you know that contain this room": "Les espaces connus qui contiennent ce salon",
|
||||
|
@ -2018,21 +1975,7 @@
|
|||
"Leave some rooms": "Quitter certains salons",
|
||||
"Leave all rooms": "Quitter tous les salons",
|
||||
"Don't leave any rooms": "Ne quitter aucun salon",
|
||||
"Include Attachments": "Inclure les fichiers attachés",
|
||||
"Size Limit": "Taille maximale",
|
||||
"Format": "Format",
|
||||
"Select from the options below to export chats from your timeline": "Sélectionner les options ci-dessous pour exporter les conversations de votre historique",
|
||||
"Export Chat": "Exporter la conversation",
|
||||
"Exporting your data": "Export de vos données",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Êtes vous sûr de vouloir arrêter l’export de vos données ? Si vous le fait, vous devrez recommencer depuis le début.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Votre export est réussi. Vous le trouverez dans votre dossier Téléchargements.",
|
||||
"The export was cancelled successfully": "Cet export a été annulé avec succès",
|
||||
"Export Successful": "Export réussi",
|
||||
"MB": "Mo",
|
||||
"Number of messages": "Nombre de messages",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Le nombre de messages ne peut être qu’un nombre compris entre %(min)s et %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "La taille ne peut être qu'un nombre compris entre %(min)s Mo et %(max)s Mo",
|
||||
"Enter a number between %(min)s and %(max)s": "Entrez un nombre entre %(min)s et %(max)s",
|
||||
"In reply to <a>this message</a>": "En réponse à <a>ce message</a>",
|
||||
"Export chat": "Exporter la conversation",
|
||||
"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.": "La réinitialisation de vos clés de vérification ne peut pas être annulé. Après la réinitialisation, vous n’aurez plus accès à vos anciens messages chiffrés, et tous les amis que vous aviez précédemment vérifiés verront des avertissement de sécurité jusqu'à ce vous les vérifiiez à nouveau.",
|
||||
|
@ -2167,7 +2110,6 @@
|
|||
"%(spaceName)s menu": "Menu %(spaceName)s",
|
||||
"Join public room": "Rejoindre le salon public",
|
||||
"Add people": "Ajouter des personnes",
|
||||
"You do not have permissions to invite people to this space": "Vous n’avez pas la permission d’inviter des personnes dans cet espace",
|
||||
"Invite to space": "Inviter dans l’espace",
|
||||
"Start new chat": "Commencer une nouvelle conversation privée",
|
||||
"Recently viewed": "Affiché récemment",
|
||||
|
@ -2315,7 +2257,6 @@
|
|||
"No virtual room for this room": "Aucun salon virtuel pour ce salon",
|
||||
"Switches to this room's virtual room, if it has one": "Bascule dans le salon virtuel de ce salon, s'il en a un",
|
||||
"Automatically send debug logs when key backup is not functioning": "Envoyer automatiquement les journaux de débogage lorsque la sauvegarde des clés ne fonctionne pas",
|
||||
"You do not have permissions to add spaces to this space": "Vous n'avez pas les permissions nécessaires pour ajouter des espaces à cet espace",
|
||||
"Open thread": "Ouvrir le fil de discussion",
|
||||
"Pinned": "Épinglé",
|
||||
"Results will be visible when the poll is ended": "Les résultats seront visibles lorsque le sondage sera terminé",
|
||||
|
@ -2328,15 +2269,12 @@
|
|||
"Search Dialog": "Fenêtre de recherche",
|
||||
"Use <arrows/> to scroll": "Utilisez <arrows/> pour faire défiler",
|
||||
"Join %(roomAddress)s": "Rejoindre %(roomAddress)s",
|
||||
"Export Cancelled": "Export annulé",
|
||||
"Results are only revealed when you end the poll": "Les résultats ne sont révélés que lorsque vous terminez le sondage",
|
||||
"Voters see results as soon as they have voted": "Les participants voient les résultats dès qu'ils ont voté",
|
||||
"Closed poll": "Sondage terminé",
|
||||
"Open poll": "Ouvrir le sondage",
|
||||
"Poll type": "Type de sondage",
|
||||
"Edit poll": "Modifier le sondage",
|
||||
"Click for more info": "Cliquez pour en savoir plus",
|
||||
"This is a beta feature": "Il s'agit d'une fonctionnalité bêta",
|
||||
"%(brand)s could not send your location. Please try again later.": "%(brand)s n'a pas pu envoyer votre position. Veuillez réessayer plus tard.",
|
||||
"We couldn't send your location": "Nous n'avons pas pu envoyer votre position",
|
||||
"Open user settings": "Ouvrir les paramètres de l'utilisateur",
|
||||
|
@ -2483,8 +2421,6 @@
|
|||
"An error occurred whilst sharing your live location, please try again": "Une erreur s’est produite pendant le partage de votre position, veuillez réessayer plus tard",
|
||||
"An error occurred whilst sharing your live location": "Une erreur s’est produite pendant le partage de votre position",
|
||||
"View related event": "Afficher les événements liés",
|
||||
"Check if you want to hide all current and future messages from this user.": "Cocher pour masquer tous les messages présents et futurs de cet utilisateur.",
|
||||
"Ignore user": "Ignorer l’utilisateur",
|
||||
"Click to read topic": "Cliquer pour lire le sujet",
|
||||
"Edit topic": "Modifier le sujet",
|
||||
"Joining…": "En train de rejoindre…",
|
||||
|
@ -2498,8 +2434,6 @@
|
|||
"You were disconnected from the call. (Error: %(message)s)": "Vous avez déconnecté de l’appel. (Erreur : %(message)s)",
|
||||
"Connection lost": "Connexion perdue",
|
||||
"Un-maximise": "Dé-maximiser",
|
||||
"Joining the beta will reload %(brand)s.": "Rejoindre la bêta va recharger %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Quitter la bêta va recharger %(brand)s.",
|
||||
"Remove search filter for %(filter)s": "Supprimer le filtre de recherche pour %(filter)s",
|
||||
"Start a group chat": "Démarrer une conversation de groupe",
|
||||
"Other options": "Autres options",
|
||||
|
@ -2555,13 +2489,6 @@
|
|||
"Send your first message to invite <displayName/> to chat": "Envoyez votre premier message pour inviter <displayName/> à discuter",
|
||||
"Choose a locale": "Choisir une langue",
|
||||
"Spell check": "Vérificateur orthographique",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play et le logo Google Play sont des marques déposées de Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® et le logo Apple® sont des marques déposées de Apple Inc.",
|
||||
"Get it on F-Droid": "Récupérez-le sur F-Droid",
|
||||
"Get it on Google Play": "Récupérez-le sur Google Play",
|
||||
"Download on the App Store": "Télécharger sur l’App Store",
|
||||
"Download %(brand)s Desktop": "Télécharger %(brand)s Desktop",
|
||||
"Download %(brand)s": "Télécharger %(brand)s",
|
||||
"We're creating a room with %(names)s": "Nous créons un salon avec %(names)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "Votre serveur ne supporte pas la désactivation de l’envoi des accusés de réception.",
|
||||
"Share your activity and status with others.": "Partager votre activité et votre statut avec les autres.",
|
||||
|
@ -2617,7 +2544,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "Votre serveur manque d’un support natif, vous devez spécifier un serveur mandataire (proxy)",
|
||||
"Your server lacks native support": "Votre serveur manque d’un support natif",
|
||||
"Your server has native support": "Votre serveur a un support natif",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s ou %(appLinks)s",
|
||||
"You need to be able to kick users to do that.": "Vous devez avoir l’autorisation d’expulser des utilisateurs pour faire ceci.",
|
||||
"Sign out of this session": "Se déconnecter de cette session",
|
||||
"Voice broadcast": "Diffusion audio",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Suivez les instructions envoyées à <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Déconnecter tous les appareils",
|
||||
"Confirm new password": "Confirmer le nouveau mot de passe",
|
||||
"Reset your password": "Réinitialise votre mot de passe",
|
||||
"Reset password": "Réinitialiser le mot de passe",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Trop de tentatives consécutives. Réessayez après %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Trop de tentatives consécutives. Attendez un peu avant de réessayer.",
|
||||
"Thread root ID: %(threadRootId)s": "ID du fil de discussion racine : %(threadRootId)s",
|
||||
|
@ -2816,8 +2740,6 @@
|
|||
"Warning: your personal data (including encryption keys) is still stored in this session. Clear it if you're finished using this session, or want to sign in to another account.": "Attention : vos données personnelles (y compris les clés de chiffrement) seront stockées dans cette session. Effacez-les si vous n’utilisez plus cette session ou si vous voulez vous connecter à un autre compte.",
|
||||
"Scan QR code": "Scanner le QR code",
|
||||
"Select '%(scanQRCode)s'": "Sélectionnez « %(scanQRCode)s »",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Ce salon est utilisé pour du contenu toxique ou illégal, ou les modérateurs ont échoué à modérer le contenu toxique ou illégal.\n Cela sera signalé aux administrateurs de %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Cet utilisateur fait preuve d’un comportement toxique, par exemple en insultant les autres ou en partageant du contenu pour adultes dans un salon familial, ou en violant les règles de ce salon.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"Enable '%(manageIntegrations)s' in Settings to do this.": "Activez « %(manageIntegrations)s » dans les paramètres pour faire ça.",
|
||||
"<b>Warning</b>: upgrading a room will <i>not automatically migrate room members to the new version of the room.</i> We'll post a link to the new room in the old version of the room - room members will have to click this link to join the new room.": "<b>Attention</b> : la mise à niveau du salon <i>ne migrera pas automatiquement les membres du salon vers la nouvelle version du salon.</i> Nous enverrons un lien vers le nouveau salon dans l’ancienne version du salon. Les participants au salon devront cliquer sur ce lien pour rejoindre le nouveau salon.",
|
||||
"Your personal ban list holds all the users/servers you personally don't want to see messages from. After ignoring your first user/server, a new room will show up in your room list named '%(myBanList)s' - stay in this room to keep the ban list in effect.": "Votre liste de bannissement personnelle contient tous les utilisateurs/serveurs dont vous ne voulez pas voir les messages personnellement. Quand vous aurez ignoré votre premier utilisateur/serveur, un nouveau salon nommé « %(myBanList)s » apparaîtra dans la liste de vos salons − restez dans ce salon pour que la liste de bannissement soit effective.",
|
||||
|
@ -2835,7 +2757,6 @@
|
|||
"Fetching keys from server…": "Récupération des clés depuis le serveur…",
|
||||
"Checking…": "Vérification…",
|
||||
"Waiting for partner to confirm…": "Attente de la confirmation du partenaire…",
|
||||
"Processing…": "Traitement…",
|
||||
"Adding…": "Ajout…",
|
||||
"Write something…": "Écrivez quelque chose…",
|
||||
"Rejecting invite…": "Rejet de l’invitation…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "Erreur inconnue du changement de mot de passe (%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "Erreur lors du changement de mot de passe : %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Impossible d’inviter un utilisateur par e-mail sans un serveur d’identité. Vous pouvez vous connecter à un serveur dans les « Paramètres ».",
|
||||
"Unable to create room with moderation bot": "Impossible de créer le salon avec un robot de modération",
|
||||
"Failed to download source media, no source url was found": "Impossible de télécharger la source du média, aucune URL source n’a été trouvée",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Une fois que les utilisateurs invités seront connectés sur %(brand)s, vous pourrez discuter et le salon sera chiffré de bout en bout",
|
||||
"Waiting for users to join %(brand)s": "En attente de connexion des utilisateurs à %(brand)s",
|
||||
|
@ -3087,7 +3007,8 @@
|
|||
"secure_backup": "Sauvegarde sécurisée",
|
||||
"cross_signing": "Signature croisée",
|
||||
"identity_server": "Serveur d’identité",
|
||||
"integration_manager": "Gestionnaire d’intégration"
|
||||
"integration_manager": "Gestionnaire d’intégration",
|
||||
"qr_code": "QR code"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Continuer",
|
||||
|
@ -3190,7 +3111,16 @@
|
|||
"clear": "Effacer"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu utilisateur"
|
||||
"user_menu": "Menu utilisateur",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s messages non lus y compris les mentions.",
|
||||
"one": "1 mention non lue."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s messages non lus.",
|
||||
"one": "1 message non lu."
|
||||
},
|
||||
"unread_messages": "Messages non lus."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Salons vidéo",
|
||||
|
@ -3245,7 +3175,13 @@
|
|||
"group_themes": "Thèmes",
|
||||
"group_encryption": "Chiffrement",
|
||||
"group_experimental": "Expérimental",
|
||||
"group_developer": "Développeur"
|
||||
"group_developer": "Développeur",
|
||||
"beta_feature": "Il s'agit d'une fonctionnalité bêta",
|
||||
"click_for_info": "Cliquez pour en savoir plus",
|
||||
"leave_beta_reload": "Quitter la bêta va recharger %(brand)s.",
|
||||
"join_beta_reload": "Rejoindre la bêta va recharger %(brand)s.",
|
||||
"leave_beta": "Quitter la bêta",
|
||||
"join_beta": "Rejoindre la bêta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Accueil",
|
||||
|
@ -3376,7 +3312,15 @@
|
|||
"enable_notifications": "Activer les notifications",
|
||||
"download_app_description": "Ne ratez pas une miette en emportant %(brand)s avec vous",
|
||||
"download_app_action": "Télécharger les applications",
|
||||
"download_app": "Télécharger %(brand)s"
|
||||
"download_app": "Télécharger %(brand)s",
|
||||
"download_brand": "Télécharger %(brand)s",
|
||||
"download_brand_desktop": "Télécharger %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s ou %(appLinks)s",
|
||||
"download_app_store": "Télécharger sur l’App Store",
|
||||
"download_google_play": "Récupérez-le sur Google Play",
|
||||
"download_f_droid": "Récupérez-le sur F-Droid",
|
||||
"apple_trademarks": "App Store® et le logo Apple® sont des marques déposées de Apple Inc.",
|
||||
"google_trademarks": "Google Play et le logo Google Play sont des marques déposées de Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Afficher les raccourcis vers les salons vus récemment au-dessus de la liste des salons",
|
||||
|
@ -3595,7 +3539,24 @@
|
|||
"error_fetching_file": "Erreur lors de la récupération du fichier",
|
||||
"file_attached": "Fichier attaché",
|
||||
"fetching_events": "Récupération des évènements…",
|
||||
"creating_output": "Création du résultat…"
|
||||
"creating_output": "Création du résultat…",
|
||||
"processing": "Traitement…",
|
||||
"enter_number_between_min_max": "Entrez un nombre entre %(min)s et %(max)s",
|
||||
"size_limit_min_max": "La taille ne peut être qu'un nombre compris entre %(min)s Mo et %(max)s Mo",
|
||||
"num_messages_min_max": "Le nombre de messages ne peut être qu’un nombre compris entre %(min)s et %(max)s",
|
||||
"num_messages": "Nombre de messages",
|
||||
"cancelled": "Export annulé",
|
||||
"cancelled_detail": "Cet export a été annulé avec succès",
|
||||
"successful": "Export réussi",
|
||||
"successful_detail": "Votre export est réussi. Vous le trouverez dans votre dossier Téléchargements.",
|
||||
"confirm_stop": "Êtes vous sûr de vouloir arrêter l’export de vos données ? Si vous le fait, vous devrez recommencer depuis le début.",
|
||||
"exporting_your_data": "Export de vos données",
|
||||
"title": "Exporter la conversation",
|
||||
"select_option": "Sélectionner les options ci-dessous pour exporter les conversations de votre historique",
|
||||
"format": "Format",
|
||||
"messages": "Messages",
|
||||
"size_limit": "Taille maximale",
|
||||
"include_attachments": "Inclure les fichiers attachés"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Créer un salon visio",
|
||||
|
@ -4009,7 +3970,6 @@
|
|||
"unsupported": "Les appels ne sont pas pris en charge",
|
||||
"unsupported_browser": "Vous ne pouvez pas passer d’appels dans ce navigateur."
|
||||
},
|
||||
"Messages": "Messages",
|
||||
"Other": "Autre",
|
||||
"Advanced": "Avancé",
|
||||
"room_settings": {
|
||||
|
@ -4097,5 +4057,53 @@
|
|||
"spaceinvaders_message": "Envoie les Space Invaders",
|
||||
"hearts_description": "Envoie le message donné avec des cœurs",
|
||||
"hearts_message": "envoie des cœurs"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Vous n’avez pas la permission d’inviter des personnes dans cet espace",
|
||||
"error_no_permission_create_room": "Vous n’avez pas la permission de créer de nouveaux salons dans cet espace",
|
||||
"error_no_permission_add_room": "Vous n’avez pas la permission d’ajouter des salons à cet espace",
|
||||
"error_no_permission_add_space": "Vous n'avez pas les permissions nécessaires pour ajouter des espaces à cet espace"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Continuer avec %(provider)s",
|
||||
"sign_in_with_sso": "Se connecter avec l’authentification unique",
|
||||
"sso": "Authentification unique",
|
||||
"reset_password_action": "Réinitialiser le mot de passe",
|
||||
"reset_password_title": "Réinitialise votre mot de passe"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Afficher les salons non lus en premier",
|
||||
"show_previews": "Afficher un aperçu des messages",
|
||||
"sort_by": "Trier par",
|
||||
"sort_by_activity": "Activité",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Options de liste",
|
||||
"show_n_more": {
|
||||
"other": "En afficher %(count)s de plus",
|
||||
"one": "En afficher %(count)s de plus"
|
||||
},
|
||||
"show_less": "En voir moins",
|
||||
"notification_options": "Paramètres de notifications"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Dites-nous pourquoi vous envoyez un signalement.",
|
||||
"unable_create_room_moderation_bot": "Impossible de créer le salon avec un robot de modération",
|
||||
"ignore_user": "Ignorer l’utilisateur",
|
||||
"hide_messages_from_user": "Cocher pour masquer tous les messages présents et futurs de cet utilisateur.",
|
||||
"nature_disagreement": "Ce que cet utilisateur écrit est déplacé.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"nature_toxic": "Cet utilisateur fait preuve d’un comportement toxique, par exemple en insultant les autres ou en partageant du contenu pour adultes dans un salon familial, ou en violant les règles de ce salon.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"nature_illegal": "Cet utilisateur fait preuve d’un comportement illicite, par exemple en publiant des informations personnelles d’autres ou en proférant des menaces.\nCeci sera signalé aux modérateurs du salon qui pourront l’escalader aux autorités.",
|
||||
"nature_spam": "Cet utilisateur inonde le salon de publicités ou liens vers des publicités, ou vers de la propagande.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"report_to_homeserver_encrypted": "Ce salon est utilisé pour du contenu toxique ou illégal, ou les modérateurs ont échoué à modérer le contenu toxique ou illégal.\nCela sera signalé aux administrateurs de %(homeserver)s. Les administrateurs ne pourront PAS lire le contenu chiffré ce salon.",
|
||||
"report_to_homeserver": "Ce salon est utilisé pour du contenu toxique ou illégal, ou les modérateurs ont échoué à modérer le contenu toxique ou illégal.\n Cela sera signalé aux administrateurs de %(homeserver)s.",
|
||||
"nature_other": "Toute autre raison. Veuillez décrire le problème.\nCeci sera signalé aux modérateurs du salon.",
|
||||
"nature": "Veuillez choisir la nature du rapport et décrire ce qui rend ce message abusif.",
|
||||
"disagree": "Désaccord",
|
||||
"toxic_behaviour": "Comportement toxique",
|
||||
"illegal_content": "Contenu illicite",
|
||||
"spam_or_propaganda": "Publicité ou propagande",
|
||||
"report_entire_room": "Signaler le salon entier",
|
||||
"report_content_to_homeserver": "Signaler le contenu à l’administrateur de votre serveur d’accueil",
|
||||
"description": "Le signalement de ce message enverra son « event ID » unique à l’administrateur de votre serveur d’accueil. Si les messages dans ce salon sont chiffrés, l’administrateur ne pourra pas lire le texte du message ou voir les fichiers ou les images."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,7 @@
|
|||
{
|
||||
"Sign in with": "Sínigh isteach le",
|
||||
"Already have an account? <a>Sign in here</a>": "An bhfuil cuntas agat cheana? <a>Sínigh isteach anseo</a>",
|
||||
"Show less": "Taispeáin níos lú",
|
||||
"Show more": "Taispeáin níos mó",
|
||||
"Show %(count)s more": {
|
||||
"one": "Taispeáin %(count)s níos mó",
|
||||
"other": "Taispeáin %(count)s níos mó"
|
||||
},
|
||||
"Switch to dark mode": "Athraigh go mód dorcha",
|
||||
"Switch to light mode": "Athraigh go mód geal",
|
||||
"Got an account? <a>Sign in</a>": "An bhfuil cuntas agat? <a>Sínigh isteach</a>",
|
||||
|
@ -241,8 +236,6 @@
|
|||
"Algorithm:": "Algartam:",
|
||||
"Information": "Eolas",
|
||||
"Favourited": "Roghnaithe",
|
||||
"A-Z": "A-Z",
|
||||
"Activity": "Gníomhaíocht",
|
||||
"Feedback": "Aiseolas",
|
||||
"Ok": "Togha",
|
||||
"Autocomplete": "Uathiomlánaigh",
|
||||
|
@ -416,7 +409,6 @@
|
|||
"Add Email Address": "Cuir seoladh ríomhphoist",
|
||||
"Click the button below to confirm adding this email address.": "Cliceáil an cnaipe thíos chun an seoladh ríomhphoist nua a dheimhniú.",
|
||||
"Confirm adding email": "Deimhnigh an seoladh ríomhphoist nua",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Deimhnigh an seoladh ríomhphoist seo le SSO mar cruthúnas céannachta.",
|
||||
"Explore rooms": "Breathnaigh thart ar na seomraí",
|
||||
"Create Account": "Déan cuntas a chruthú",
|
||||
|
@ -447,7 +439,6 @@
|
|||
"Global": "Uilíoch",
|
||||
"Keyword": "Eochairfhocal",
|
||||
"Report": "Tuairiscigh",
|
||||
"Disagree": "Easaontaigh",
|
||||
"Visibility": "Léargas",
|
||||
"Address": "Seoladh",
|
||||
"Sent": "Seolta",
|
||||
|
@ -780,7 +771,6 @@
|
|||
"call_failed_media_permissions": "Tugtar cead an ceamara gréasáin a úsáid",
|
||||
"call_failed_media_applications": "Níl aon fheidhmchlár eile ag úsáid an cheamara gréasáin"
|
||||
},
|
||||
"Messages": "Teachtaireachtaí",
|
||||
"Other": "Eile",
|
||||
"Advanced": "Forbartha",
|
||||
"room_settings": {
|
||||
|
@ -807,5 +797,23 @@
|
|||
"category_symbols": "Siombailí",
|
||||
"category_flags": "Bratacha",
|
||||
"categories": "Catagóire"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Teachtaireachtaí"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_by_activity": "Gníomhaíocht",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"show_n_more": {
|
||||
"one": "Taispeáin %(count)s níos mó",
|
||||
"other": "Taispeáin %(count)s níos mó"
|
||||
},
|
||||
"show_less": "Taispeáin níos lú"
|
||||
},
|
||||
"report_content": {
|
||||
"disagree": "Easaontaigh"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -341,7 +341,6 @@
|
|||
"Please <a>contact your service administrator</a> to continue using this service.": "Por favor <a>contacte coa administración do servizo</a> para continuar utilizando o servizo.",
|
||||
"Use Single Sign On to continue": "Usar Single Sign On para continuar",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirma que queres engadir este email usando Single Sign On como proba de identidade.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding email": "Confirma novo email",
|
||||
"Click the button below to confirm adding this email address.": "Preme no botón inferior para confirmar que queres engadir o email.",
|
||||
"Add Email Address": "Engadir email",
|
||||
|
@ -351,7 +350,6 @@
|
|||
"Add Phone Number": "Engadir novo Número",
|
||||
"Sign In or Create Account": "Conéctate ou Crea unha Conta",
|
||||
"Sign Up": "Rexistro",
|
||||
"Sign in with single sign-on": "Entrar usando Single Sign On",
|
||||
"Deleting cross-signing keys is permanent. Anyone you have verified with will see security alerts. You almost certainly don't want to do this, unless you've lost every device you can cross-sign from.": "O eliminación das chaves de sinatura cruzada é permanente. Calquera a quen verificases con elas verá alertas de seguridade. Seguramente non queres facer esto, a menos que perdeses todos os dispositivos nos que podías asinar.",
|
||||
"Confirm your account deactivation by using Single Sign On to prove your identity.": "Confirma a desactivación da túa conta usando Single Sign On para probar a túa identidade.",
|
||||
"To continue, use Single Sign On to prove your identity.": "Para continuar, usa Single Sign On para probar a túa identidade.",
|
||||
|
@ -570,7 +568,6 @@
|
|||
"Accept <policyLink /> to continue:": "Acepta <policyLink /> para continuar:",
|
||||
"This bridge was provisioned by <user />.": "Esta ponte está proporcionada por <user />.",
|
||||
"This bridge is managed by <user />.": "Esta ponte está xestionada por <user />.",
|
||||
"Show less": "Mostrar menos",
|
||||
"Show more": "Mostrar máis",
|
||||
"Your homeserver does not support cross-signing.": "O teu servidor non soporta a sinatura cruzada.",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "A túa conta ten unha identidade de sinatura cruzada no almacenaxe segredo, pero aínda non confiaches nela nesta sesión.",
|
||||
|
@ -759,25 +756,8 @@
|
|||
"Start chatting": "Comeza a conversa",
|
||||
"<userName/> invited you": "<userName/> convidoute",
|
||||
"Reject & Ignore user": "Rexeitar e Ignorar usuaria",
|
||||
"Sort by": "Orde por",
|
||||
"Activity": "Actividade",
|
||||
"A-Z": "A-Z",
|
||||
"Message preview": "Vista previa da mensaxe",
|
||||
"List options": "Opcións da listaxe",
|
||||
"Add room": "Engadir sala",
|
||||
"Show %(count)s more": {
|
||||
"other": "Mostrar %(count)s máis",
|
||||
"one": "Mostrar %(count)s máis"
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s mensaxes non lidas incluíndo mencións.",
|
||||
"one": "1 mención non lida."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s mensaxe non lidas.",
|
||||
"one": "1 mensaxe non lida."
|
||||
},
|
||||
"Unread messages.": "Mensaxes non lidas.",
|
||||
"Room options": "Opcións da Sala",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Ao actualizar a sala pecharás a instancia actual da sala e crearás unha versión mellorada co mesmo nome.",
|
||||
"This room has already been upgraded.": "Esta sala xa foi actualizada.",
|
||||
|
@ -898,7 +878,6 @@
|
|||
"Rotate Left": "Rotar á esquerda",
|
||||
"Rotate Right": "Rotar á dereita",
|
||||
"Language Dropdown": "Selector de idioma",
|
||||
"QR Code": "Código QR",
|
||||
"Room address": "Enderezo da sala",
|
||||
"e.g. my-room": "ex. a-miña-sala",
|
||||
"Some characters not allowed": "Algúns caracteres non permitidos",
|
||||
|
@ -988,9 +967,6 @@
|
|||
"Verify session": "Verificar sesión",
|
||||
"Your homeserver doesn't seem to support this feature.": "O servidor non semella soportar esta característica.",
|
||||
"Message edits": "Edicións da mensaxe",
|
||||
"Please fill why you're reporting.": "Escribe a razón do informe.",
|
||||
"Report Content to Your Homeserver Administrator": "Denuncia sobre contido á Administración do teu servidor",
|
||||
"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.": "Ao denunciar esta mensaxe vasnos enviar o seu 'event ID' único á administración do servidor. Se as mensaxes da sala están cifradas, a administración do servidor non poderá ler o texto da mensaxe ou ver imaxes ou ficheiros.",
|
||||
"Failed to upgrade room": "Fallou a actualización da sala",
|
||||
"The room upgrade could not be completed": "A actualización da sala non se completou",
|
||||
"Upgrade this room to version %(version)s": "Actualiza esta sala á versión %(version)s",
|
||||
|
@ -1175,13 +1151,10 @@
|
|||
"Confirm Security Phrase": "Confirma a Frase de Seguridade",
|
||||
"Save your Security Key": "Garda a Chave de Seguridade",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s non pode por na caché local de xeito as mensaxes cifradas cando usa un navegador web. Usa <desktopLink>%(brand)s Desktop</desktopLink> para que as mensaxes cifradas aparezan nos resultados.",
|
||||
"Notification options": "Opcións de notificación",
|
||||
"Favourited": "Con marca de Favorita",
|
||||
"Forget Room": "Esquecer sala",
|
||||
"If the other version of %(brand)s is still open in another tab, please close it as using %(brand)s on the same host with both lazy loading enabled and disabled simultaneously will cause issues.": "Se a outra versión de %(brand)s aínda está aberta noutra lapela, péchaa xa que usar %(brand)s no mesmo servidor con carga preguiceira activada e desactivada ao mesmo tempo causará problemas.",
|
||||
"This room is public": "Esta é unha sala pública",
|
||||
"Show rooms with unread messages first": "Mostrar primeiro as salas con mensaxes sen ler",
|
||||
"Show previews of messages": "Mostrar vista previa das mensaxes",
|
||||
"Edited at %(date)s": "Editado o %(date)s",
|
||||
"Click to view edits": "Preme para ver as edicións",
|
||||
"Are you sure you want to cancel entering passphrase?": "¿Estás seguro de que non queres escribir a frase de paso?",
|
||||
|
@ -1621,7 +1594,6 @@
|
|||
"Specify a homeserver": "Indica un servidor de inicio",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Lembra que se non engades un email e esqueces o contrasinal <b>perderás de xeito permanente o acceso á conta</b>.",
|
||||
"Continuing without email": "Continuando sen email",
|
||||
"Continue with %(provider)s": "Continuar con %(provider)s",
|
||||
"Server Options": "Opcións do servidor",
|
||||
"Reason (optional)": "Razón (optativa)",
|
||||
"Invalid URL": "URL non válido",
|
||||
|
@ -1708,9 +1680,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Non poderás desfacer este cambio xa que te estás degradando a ti mesma, se es a última usuaria con privilexios no espazo será imposible volver a obter os privilexios.",
|
||||
"Empty room": "Sala baleira",
|
||||
"Suggested Rooms": "Salas suxeridas",
|
||||
"You do not have permissions to add rooms to this space": "Non tes permiso para engadir salas a este espazo",
|
||||
"Add existing room": "Engadir sala existente",
|
||||
"You do not have permissions to create new rooms in this space": "Non tes permiso para crear novas salas neste espazo",
|
||||
"Invite to this space": "Convidar a este espazo",
|
||||
"Your message was sent": "Enviouse a túa mensaxe",
|
||||
"Space options": "Opcións do Espazo",
|
||||
|
@ -1798,8 +1768,6 @@
|
|||
"What do you want to organise?": "Que queres organizar?",
|
||||
"You have no ignored users.": "Non tes usuarias ignoradas.",
|
||||
"Select a room below first": "Primeiro elixe embaixo unha sala",
|
||||
"Join the beta": "Unirse á beta",
|
||||
"Leave the beta": "Saír da beta",
|
||||
"Want to add a new room instead?": "Queres engadir unha nova sala?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Engadindo sala...",
|
||||
|
@ -1851,10 +1819,6 @@
|
|||
"Could not connect to identity server": "Non hai conexión co Servidor de Identidade",
|
||||
"Not a valid identity server (status code %(code)s)": "Servidor de Identidade non válido (código de estado %(code)s)",
|
||||
"Identity server URL must be HTTPS": "O URL do servidor de identidade debe comezar HTTPS",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Esta sala está dedicada a contido ilegal ou tóxico ou a moderación non modera os contidos tóxicos ou ilegais.\nEsto vaise denunciar ante a administración de %(homeserver)s. As administradoras NON poderán ler o contido cifrado desta sala.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Esta usuaria está facendo spam na sala con anuncios, ligazóns a anuncios ou propaganda.\nEsto vai ser denunciado ante a moderación da sala.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Esta usuaria está a comportarse dun xeito ilegal, por exemplo ameazando a persoas ou exhibindo violencia.\nEsto vaise denunciar ante a moderación da sala que podería presentar o caso ante as autoridades legais.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "O que escribe esta usuaria non é correcto.\nSerá denunciado á moderación da sala.",
|
||||
"User Directory": "Directorio de Usuarias",
|
||||
"Please provide an address": "Proporciona un enderezo",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Fallou a inicialización da busca de mensaxes, comproba <a>os axustes</a> para máis información",
|
||||
|
@ -1903,13 +1867,6 @@
|
|||
"Show preview": "Ver vista previa",
|
||||
"View source": "Ver fonte",
|
||||
"Settings - %(spaceName)s": "Axustes - %(spaceName)s",
|
||||
"Report the entire room": "Denunciar a toda a sala",
|
||||
"Spam or propaganda": "Spam ou propaganda",
|
||||
"Illegal Content": "Contido ilegal",
|
||||
"Toxic Behaviour": "Comportamento tóxico",
|
||||
"Disagree": "En desacordo",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Escolle unha opción e describe a razón pola que esta é unha mensaxe abusiva.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Outra razón. Por favor, describe o problema.\nInformaremos disto á moderación da sala.",
|
||||
"The call is in an unknown state!": "Esta chamada ten un estado descoñecido!",
|
||||
"Call back": "Devolver a chamada",
|
||||
"No answer": "Sen resposta",
|
||||
|
@ -2026,21 +1983,7 @@
|
|||
"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.": "Semella que non tes unha Chave de Seguridade ou outros dispositivos cos que verificar. Este dispositivo non poderá acceder a mensaxes antigas cifradas. Para poder verificar a túa identidade neste dispositivo tes que restablecer as chaves de verificación.",
|
||||
"Skip verification for now": "Omitir a verificación por agora",
|
||||
"Really reset verification keys?": "Queres restablecer as chaves de verificación?",
|
||||
"Include Attachments": "Incluír anexos",
|
||||
"Size Limit": "Límite do tamaño",
|
||||
"Format": "Formato",
|
||||
"Select from the options below to export chats from your timeline": "Elixe entre as opcións seguintes para exportar a túa cronoloxía",
|
||||
"Export Chat": "Exportar chat",
|
||||
"Exporting your data": "Exportando os teus datos",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Tes a certeza de querer deter a exportación de datos? Se é así, terás que volver a iniciala.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "A exportación foi correcta. Atoparala no cartafol de Descargas.",
|
||||
"The export was cancelled successfully": "Cancelouse con éxito a exportación",
|
||||
"Export Successful": "Exportación correcta",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Número de mensaxes",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "O número de mensaxes só pode ser un número entre %(min)s e %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "O tamaño só pode ser un número entre %(min)s MB e %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Escribe un número entre %(min)s e %(max)s",
|
||||
"In reply to <a>this message</a>": "En resposta a <a>esta mensaxe</a>",
|
||||
"Export chat": "Exportar chat",
|
||||
"Show:": "Mostrar:",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "Menú de %(spaceName)s",
|
||||
"Join public room": "Unirse a sala pública",
|
||||
"Add people": "Engadir persoas",
|
||||
"You do not have permissions to invite people to this space": "Non tes permiso para poder convidar a persoas a este espazo",
|
||||
"Invite to space": "Convidar ao espazo",
|
||||
"Start new chat": "Iniciar un novo chat",
|
||||
"Recently viewed": "Visto recentemente",
|
||||
|
@ -2279,7 +2221,6 @@
|
|||
"Unknown error fetching location. Please try again later.": "Erro descoñecido ao obter a localización, inténtao máis tarde.",
|
||||
"Timed out trying to fetch your location. Please try again later.": "Caducou o intento de obter a localización, inténtao máis tarde.",
|
||||
"Failed to fetch your location. Please try again later.": "Non se obtivo a localización, inténtao máis tarde.",
|
||||
"You do not have permissions to add spaces to this space": "Non tes permiso para engadir espazos a este espazo",
|
||||
"Redo edit": "Refacer a edición",
|
||||
"Force complete": "Forzar completamento",
|
||||
"Undo edit": "Desfacer a edición",
|
||||
|
@ -2310,8 +2251,6 @@
|
|||
"Device verified": "Dispositivo verificado",
|
||||
"Verify this device": "Verifica este dispositivo",
|
||||
"Unable to verify this device": "Non se puido verificar este dispositivo",
|
||||
"Click for more info": "Preme para máis info",
|
||||
"This is a beta feature": "Esta é unha característica beta",
|
||||
"Use <arrows/> to scroll": "Usa <arrows/> para desprazarte",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Opinión enviada! Moitas grazas!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s e %(space2Name)s",
|
||||
|
@ -2329,7 +2268,6 @@
|
|||
"Results will be visible when the poll is ended": "Os resultados serán visibles cando remate a enquisa",
|
||||
"Open user settings": "Abrir axustes",
|
||||
"Switch to space by number": "Cambia á sala polo número",
|
||||
"Export Cancelled": "Exportación cancelada",
|
||||
"What location type do you want to share?": "Que tipo de localización queres compartir?",
|
||||
"Drop a Pin": "Fixa a posición",
|
||||
"My live location": "Localización en direto",
|
||||
|
@ -2483,8 +2421,6 @@
|
|||
"An error occurred whilst sharing your live location, please try again": "Algo fallou ao compartir a túa localización en directo, inténtao outra vez",
|
||||
"An error occurred whilst sharing your live location": "Algo fallou ao intentar compartir a túa localización en directo",
|
||||
"View related event": "Ver evento relacionado",
|
||||
"Check if you want to hide all current and future messages from this user.": "Marcar para agochar as mensaxes actuais e futuras desta usuaria.",
|
||||
"Ignore user": "Ignorar usuaria",
|
||||
"Click to read topic": "Preme para ler o tema",
|
||||
"Edit topic": "Editar asunto",
|
||||
"Joining…": "Entrando…",
|
||||
|
@ -2498,8 +2434,6 @@
|
|||
"Connection lost": "Perdeuse a conexión",
|
||||
"Deactivating your account is a permanent action — be careful!": "A desactivación da conta é unha acción permanente — coidado!",
|
||||
"Un-maximise": "Restablecer",
|
||||
"Joining the beta will reload %(brand)s.": "Ao unirte á beta recargaremos %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Ao saír da beta volveremos a cargar %(brand)s.",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Ao saír, estas chaves serán eliminadas deste dispositivo, o que significa que non poderás ler as mensaxes cifradas a menos que teñas as chaves noutro dos teus dispositivos, ou unha copia de apoio no servidor.",
|
||||
"Video rooms are a beta feature": "As salas de vídeo están en fase beta",
|
||||
"Enable hardware acceleration": "Activar aceleración por hardware",
|
||||
|
@ -2556,13 +2490,6 @@
|
|||
"Choose a locale": "Elixe o idioma",
|
||||
"Spell check": "Corrección",
|
||||
"We're creating a room with %(names)s": "Estamos creando unha sala con %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play e o logo de Google Play son marcas de Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® e o Apple logo® son marcas de Apple Inc.",
|
||||
"Get it on F-Droid": "Descargar desde F-Droid",
|
||||
"Get it on Google Play": "Descargar desde Google Play",
|
||||
"Download on the App Store": "Descargar na App Store",
|
||||
"Download %(brand)s Desktop": "Descargar %(brand)s Desktop",
|
||||
"Download %(brand)s": "Descargar %(brand)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "O teu servidor non ten soporte para desactivar o envío de resgardos de lectura.",
|
||||
"Share your activity and status with others.": "Comparte a túa actividade e estado con outras persoas.",
|
||||
"Inactive for %(inactiveAgeDays)s+ days": "Inactiva durante %(inactiveAgeDays)s+ días",
|
||||
|
@ -2616,7 +2543,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "O teu servidor non ten servidor nativo, tes que indicar un proxy",
|
||||
"Your server lacks native support": "O teu servidor non ten soporte nativo",
|
||||
"Your server has native support": "O teu servidor ten soporte nativo",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s ou %(appLinks)s",
|
||||
"Show shortcut to welcome checklist above the room list": "Mostrar atallo á lista de comprobacións de benvida sobre a lista de salas",
|
||||
"You need to be able to kick users to do that.": "Tes que poder expulsar usuarias para facer eso.",
|
||||
"Voice broadcast": "Emisión de voz",
|
||||
|
@ -2707,7 +2633,8 @@
|
|||
"secure_backup": "Copia Segura",
|
||||
"cross_signing": "Sinatura cruzada",
|
||||
"identity_server": "Servidor de identidade",
|
||||
"integration_manager": "Xestor de Integracións"
|
||||
"integration_manager": "Xestor de Integracións",
|
||||
"qr_code": "Código QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Continuar",
|
||||
|
@ -2807,7 +2734,16 @@
|
|||
"clear": "Limpar"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menú de usuaria"
|
||||
"user_menu": "Menú de usuaria",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s mensaxes non lidas incluíndo mencións.",
|
||||
"one": "1 mención non lida."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s mensaxe non lidas.",
|
||||
"one": "1 mensaxe non lida."
|
||||
},
|
||||
"unread_messages": "Mensaxes non lidas."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Salas de vídeo",
|
||||
|
@ -2839,7 +2775,13 @@
|
|||
"group_themes": "Decorados",
|
||||
"group_encryption": "Cifrado",
|
||||
"group_experimental": "Experimental",
|
||||
"group_developer": "Desenvolvemento"
|
||||
"group_developer": "Desenvolvemento",
|
||||
"beta_feature": "Esta é unha característica beta",
|
||||
"click_for_info": "Preme para máis info",
|
||||
"leave_beta_reload": "Ao saír da beta volveremos a cargar %(brand)s.",
|
||||
"join_beta_reload": "Ao unirte á beta recargaremos %(brand)s.",
|
||||
"leave_beta": "Saír da beta",
|
||||
"join_beta": "Unirse á beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Inicio",
|
||||
|
@ -2957,7 +2899,15 @@
|
|||
"enable_notifications": "Activa as notificacións",
|
||||
"download_app_description": "Non perdas nada e leva %(brand)s contigo",
|
||||
"download_app_action": "Descargar apps",
|
||||
"download_app": "Descargar %(brand)s"
|
||||
"download_app": "Descargar %(brand)s",
|
||||
"download_brand": "Descargar %(brand)s",
|
||||
"download_brand_desktop": "Descargar %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s ou %(appLinks)s",
|
||||
"download_app_store": "Descargar na App Store",
|
||||
"download_google_play": "Descargar desde Google Play",
|
||||
"download_f_droid": "Descargar desde F-Droid",
|
||||
"apple_trademarks": "App Store® e o Apple logo® son marcas de Apple Inc.",
|
||||
"google_trademarks": "Google Play e o logo de Google Play son marcas de Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Mostrar atallos a salas vistas recentemente enriba da lista de salas",
|
||||
|
@ -3136,7 +3086,23 @@
|
|||
"export_info": "Este é o inicio da exportación de <roomName/>. Exportada por <exporterDetails/> o %(exportDate)s.",
|
||||
"topic": "Asunto: %(topic)s",
|
||||
"error_fetching_file": "Erro ao obter o ficheiro",
|
||||
"file_attached": "Ficheiro anexado"
|
||||
"file_attached": "Ficheiro anexado",
|
||||
"enter_number_between_min_max": "Escribe un número entre %(min)s e %(max)s",
|
||||
"size_limit_min_max": "O tamaño só pode ser un número entre %(min)s MB e %(max)s MB",
|
||||
"num_messages_min_max": "O número de mensaxes só pode ser un número entre %(min)s e %(max)s",
|
||||
"num_messages": "Número de mensaxes",
|
||||
"cancelled": "Exportación cancelada",
|
||||
"cancelled_detail": "Cancelouse con éxito a exportación",
|
||||
"successful": "Exportación correcta",
|
||||
"successful_detail": "A exportación foi correcta. Atoparala no cartafol de Descargas.",
|
||||
"confirm_stop": "Tes a certeza de querer deter a exportación de datos? Se é así, terás que volver a iniciala.",
|
||||
"exporting_your_data": "Exportando os teus datos",
|
||||
"title": "Exportar chat",
|
||||
"select_option": "Elixe entre as opcións seguintes para exportar a túa cronoloxía",
|
||||
"format": "Formato",
|
||||
"messages": "Mensaxes",
|
||||
"size_limit": "Límite do tamaño",
|
||||
"include_attachments": "Incluír anexos"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Crear sala de vídeo",
|
||||
|
@ -3531,7 +3497,6 @@
|
|||
"unsupported": "Non hai soporte para chamadas",
|
||||
"unsupported_browser": "Non podes facer chamadas con este navegador."
|
||||
},
|
||||
"Messages": "Mensaxes",
|
||||
"Other": "Outro",
|
||||
"Advanced": "Avanzado",
|
||||
"room_settings": {
|
||||
|
@ -3617,5 +3582,48 @@
|
|||
"spaceinvaders_message": "enviar invasores espaciais",
|
||||
"hearts_description": "Engádelle moitos corazóns á mensaxe",
|
||||
"hearts_message": "envía corazóns"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Non tes permiso para poder convidar a persoas a este espazo",
|
||||
"error_no_permission_create_room": "Non tes permiso para crear novas salas neste espazo",
|
||||
"error_no_permission_add_room": "Non tes permiso para engadir salas a este espazo",
|
||||
"error_no_permission_add_space": "Non tes permiso para engadir espazos a este espazo"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Continuar con %(provider)s",
|
||||
"sign_in_with_sso": "Entrar usando Single Sign On",
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Mostrar primeiro as salas con mensaxes sen ler",
|
||||
"show_previews": "Mostrar vista previa das mensaxes",
|
||||
"sort_by": "Orde por",
|
||||
"sort_by_activity": "Actividade",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Opcións da listaxe",
|
||||
"show_n_more": {
|
||||
"other": "Mostrar %(count)s máis",
|
||||
"one": "Mostrar %(count)s máis"
|
||||
},
|
||||
"show_less": "Mostrar menos",
|
||||
"notification_options": "Opcións de notificación"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Escribe a razón do informe.",
|
||||
"ignore_user": "Ignorar usuaria",
|
||||
"hide_messages_from_user": "Marcar para agochar as mensaxes actuais e futuras desta usuaria.",
|
||||
"nature_disagreement": "O que escribe esta usuaria non é correcto.\nSerá denunciado á moderación da sala.",
|
||||
"nature_illegal": "Esta usuaria está a comportarse dun xeito ilegal, por exemplo ameazando a persoas ou exhibindo violencia.\nEsto vaise denunciar ante a moderación da sala que podería presentar o caso ante as autoridades legais.",
|
||||
"nature_spam": "Esta usuaria está facendo spam na sala con anuncios, ligazóns a anuncios ou propaganda.\nEsto vai ser denunciado ante a moderación da sala.",
|
||||
"report_to_homeserver_encrypted": "Esta sala está dedicada a contido ilegal ou tóxico ou a moderación non modera os contidos tóxicos ou ilegais.\nEsto vaise denunciar ante a administración de %(homeserver)s. As administradoras NON poderán ler o contido cifrado desta sala.",
|
||||
"nature_other": "Outra razón. Por favor, describe o problema.\nInformaremos disto á moderación da sala.",
|
||||
"nature": "Escolle unha opción e describe a razón pola que esta é unha mensaxe abusiva.",
|
||||
"disagree": "En desacordo",
|
||||
"toxic_behaviour": "Comportamento tóxico",
|
||||
"illegal_content": "Contido ilegal",
|
||||
"spam_or_propaganda": "Spam ou propaganda",
|
||||
"report_entire_room": "Denunciar a toda a sala",
|
||||
"report_content_to_homeserver": "Denuncia sobre contido á Administración do teu servidor",
|
||||
"description": "Ao denunciar esta mensaxe vasnos enviar o seu 'event ID' único á administración do servidor. Se as mensaxes da sala están cifradas, a administración do servidor non poderá ler o texto da mensaxe ou ver imaxes ou ficheiros."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -79,7 +79,6 @@
|
|||
"Add Email Address": "הוספת כתובת מייל",
|
||||
"Click the button below to confirm adding this email address.": "לחץ על הכפתור בכדי לאשר הוספה של כתובת מייל הזו.",
|
||||
"Confirm adding email": "אשר הוספת כתובת מייל",
|
||||
"Single Sign On": "כניסה חד שלבית",
|
||||
"Opens chat with the given user": "פתח שיחה עם המשתמש הזה",
|
||||
"Forces the current outbound group session in an encrypted room to be discarded": "מאלץ להתעלם מהתקשורת היוצאת מהתחברות של קבוצה בחדר מוצפן",
|
||||
"The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "המפתח החתום שנתתם תואם את המפתח שקבלתם מ %(userId)s מהתחברות %(deviceId)s. ההתחברות סומנה כמאושרת.",
|
||||
|
@ -553,7 +552,6 @@
|
|||
"New passwords don't match": "הססמאות החדשות לא תואמות",
|
||||
"No display name": "אין שם לתצוגה",
|
||||
"Show more": "הצג יותר",
|
||||
"Show less": "הצג פחות",
|
||||
"This bridge is managed by <user />.": "הגשר הזה מנוהל על ידי משתמש <user />.",
|
||||
"This bridge was provisioned by <user />.": "הגשר הזה נוצר על ידי משתמש <user />.",
|
||||
"Accept <policyLink /> to continue:": "קבל <policyLink /> להמשך:",
|
||||
|
@ -741,8 +739,6 @@
|
|||
"And %(count)s more...": {
|
||||
"other": "ו%(count)s עוד..."
|
||||
},
|
||||
"Sign in with single sign-on": "היכנס באמצעות כניסה יחידה",
|
||||
"Continue with %(provider)s": "המשך עם %(provider)s",
|
||||
"Join millions for free on the largest public server": "הצטרפו למיליונים בחינם בשרת הציבורי הגדול ביותר",
|
||||
"Server Options": "אפשרויות שרת",
|
||||
"This address is already in use": "כתובת זו נמצאת בשימוש",
|
||||
|
@ -752,7 +748,6 @@
|
|||
"Room address": "כתובת חדר",
|
||||
"<a>In reply to</a> <pill>": "<a> בתשובה ל- </a> <pill>",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "לא ניתן לטעון אירוע שהשיב לו, או שהוא לא קיים או שאין לך הרשאה להציג אותו.",
|
||||
"QR Code": "קוד QR",
|
||||
"Custom level": "דרגה מותאמת",
|
||||
"Power level": "דרגת מנהל",
|
||||
"Language Dropdown": "תפריט שפות",
|
||||
|
@ -914,15 +909,6 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "חדר זה מריץ את גרסת החדר <roomVersion/>, ששרת הבית הזה סימן כ- <i> לא יציב </i>.",
|
||||
"This room has already been upgraded.": "החדר הזה כבר שודרג.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "שדרוג חדר זה יסגור את המופע הנוכחי של החדר וייצור חדר משודרג עם אותו שם.",
|
||||
"Unread messages.": "הודעות שלא נקראו.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 הודעה שלא נקראה.",
|
||||
"other": "%(count)s הודעות שלא נקראו."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 אזכור שלא נקרא.",
|
||||
"other": "%(count)s הודעות שלא נקראו כולל אזכורים."
|
||||
},
|
||||
"Room options": "אפשרויות חדר",
|
||||
"Sign Up": "הרשמה",
|
||||
"Join the conversation with an account": "הצטרף לשיחה עם חשבון",
|
||||
|
@ -1192,19 +1178,8 @@
|
|||
"Back up your keys before signing out to avoid losing them.": "גבה את המפתחות שלך לפני היציאה כדי להימנע מלאבד אותם.",
|
||||
"Favourited": "מועדפים",
|
||||
"Forget Room": "שכח חדר",
|
||||
"Notification options": "אפשרויות התרעות",
|
||||
"Show %(count)s more": {
|
||||
"one": "הצג עוד %(count)s",
|
||||
"other": "הצג עוד %(count)s"
|
||||
},
|
||||
"Jump to first invite.": "קפצו להזמנה ראשונה.",
|
||||
"Jump to first unread room.": "קפצו לחדר הראשון שלא נקרא.",
|
||||
"List options": "רשימת אפשרויות",
|
||||
"A-Z": "א-ת",
|
||||
"Activity": "פעילות",
|
||||
"Sort by": "סדר לפי",
|
||||
"Show previews of messages": "הצג תצוגה מקדימה של הודעות",
|
||||
"Show rooms with unread messages first": "הצג תחילה חדרים עם הודעות שלא נקראו",
|
||||
"%(roomName)s is not accessible at this time.": "לא ניתן להכנס אל %(roomName)s בזמן הזה.",
|
||||
"%(roomName)s does not exist.": "%(roomName)s לא קיים.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "לא ניתן לצפות ב־%(roomName)s. האם תרצו להצטרף?",
|
||||
|
@ -1389,9 +1364,6 @@
|
|||
"The room upgrade could not be completed": "לא ניתן היה להשלים את שדרוג החדר",
|
||||
"Failed to upgrade room": "שדרוג החדר נכשל",
|
||||
"Room Settings - %(roomName)s": "הגדרות חדר - %(roomName)s",
|
||||
"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.": "דיווח על הודעה זו ישלח את 'מזהה האירוע' הייחודי למנהל שרת הבית שלך. אם הודעות בחדר זה מוצפנות, מנהל שרת הבית שלך לא יוכל לקרוא את טקסט ההודעה או להציג קבצים או תמונות.",
|
||||
"Report Content to Your Homeserver Administrator": "דווח על תוכן למנהל שרת הבית שלך",
|
||||
"Please fill why you're reporting.": "אנא מלאו מדוע אתם מדווחים.",
|
||||
"Email (optional)": "דוא\"ל (לא חובה)",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "שים לב, אם לא תשייך כתובת דואר אלקטרוני ותשכח את הסיסמה שלך, אתה תאבד <b>לצמיתות</b> את הגישה לחשבונך.",
|
||||
"Continuing without email": "ממשיך ללא דוא\"ל",
|
||||
|
@ -1805,19 +1777,7 @@
|
|||
"Allow people to preview your space before they join.": "אפשרו לאנשים תצוגה מקדימה של מרחב העבודה שלכם לפני שהם מצטרפים.",
|
||||
"Preview Space": "תצוגה מקדימה של מרחב העבודה",
|
||||
"Failed to update the visibility of this space": "עדכון הנראות של מרחב העבודה הזה נכשל",
|
||||
"Size Limit": "הגבלת גודל",
|
||||
"Format": "פורמט",
|
||||
"Exporting your data": "מייצא את המידע שלכם",
|
||||
"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.": "הייצוא שלכם הצליח. מיצאו אותו בתיקיית ההורדות שלכם.",
|
||||
"Export Successful": "ייצוא בוצע בהצלחה",
|
||||
"The export was cancelled successfully": "הייצוא בוטל בהצלחה",
|
||||
"Export Cancelled": "ייצוא בוטל",
|
||||
"MB": "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": "גודל יכול להיות רק מספר בין MB %(min)s ו MB%(max)s",
|
||||
"Enter a number between %(min)s and %(max)s": "הכניסו מספר בין %(min)s ל %(max)s",
|
||||
"Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "האם אתם בטוחים שברצונכם לסיים את הסקר הזה? זה יציג את התוצאות הסופיות של הסקר וימנע מאנשים את האפשרות להצביע.",
|
||||
"End Poll": "סיים סקר",
|
||||
"Sorry, the poll did not end. Please try again.": "סליחה, הסקר לא הסתיים. נא נסו שוב.",
|
||||
|
@ -1894,14 +1854,8 @@
|
|||
"Message preview": "צפו בהודעה",
|
||||
"Published addresses can be used by anyone on any server to join your room.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף לחלל העבודה שלכם.",
|
||||
"Published addresses can be used by anyone on any server to join your space.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף למרחב העבודה שלכם.",
|
||||
"Include Attachments": "כלול קבצים מצורפים",
|
||||
"If you want to retain access to your chat history in encrypted rooms, set up Key Backup or export your message keys from one of your other devices before proceeding.": "אם ברצונכם לשמור על גישה להיסטוריית הצ'אט שלכם בחדרים מוצפנים, הגדירו גיבוי מפתחות או ייצאו את מפתחות ההודעות שלכם מאחד מהמכשירים האחרים שלכם לפני שתמשיך.",
|
||||
"Select from the options below to export chats from your timeline": "ביחרו מבין האפשרויות למטה כדי לייצא צ'אטים מציר הזמן שלכם",
|
||||
"Export Chat": "ייצוא צ'אט",
|
||||
"Export chat": "ייצוא צ'אט",
|
||||
"Joining the beta will reload %(brand)s.": "הצטרפות לפיתוח תטען מחדש את %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "עזיבת הניסוי תטען מחדש את %(brand)s.",
|
||||
"Join the beta": "הצטרך לניסוי",
|
||||
"Please note: this is a labs feature using a temporary implementation. This means you will not be able to delete your location history, and advanced users will be able to see your location history even after you stop sharing your live location with this room.": "שימו לב: זוהי תכונת פיתוח המשתמשת ביישום זמני. משמעות הדבר היא שלא תוכלו למחוק את היסטוריית המיקומים שלכם, ומשתמשים מתקדמים יוכלו לראות את היסטוריית המיקומים שלך גם לאחר שתפסיקו לשתף את המיקום החי שלכם עם החדר הזה.",
|
||||
"Show Labs settings": "הצג את אופציית מעבדת הפיתוח",
|
||||
"To join, please enable video rooms in Labs first": "כדי להצטרף, נא אפשר תחילה וידאו במעבדת הפיתוח",
|
||||
|
@ -1956,11 +1910,7 @@
|
|||
"This room or space does not exist.": "חדר זה או מרחב עבודה אינם קיימים.",
|
||||
"Forget this space": "שכח את מרחב עבודה זה",
|
||||
"%(spaceName)s menu": "תפריט %(spaceName)s",
|
||||
"You do not have permissions to add spaces to this space": "אין לכם הרשאה להוסיף מרחב עבודה אל מרחב העבודה הנוכחי",
|
||||
"Add space": "הוסיפו מרחב עבודה",
|
||||
"You do not have permissions to create new rooms in this space": "אין לכם הרשאה ליצור חדרים חדשים במרחב העבודה הנוכחי",
|
||||
"You do not have permissions to add rooms to this space": "אין לכם השאה להוסיף חדשרים למרחב העבודה הנוכחי",
|
||||
"You do not have permissions to invite people to this space": "אין לכם הרשאה להזמין משתתפים אל מרחב עבודה זה",
|
||||
"Invite to space": "הזמינו אל מרחב העבודה",
|
||||
"Private space": "מרחב עבודה פרטי",
|
||||
"Public space": "מרחב עבודה ציבורי",
|
||||
|
@ -2146,7 +2096,8 @@
|
|||
"secure_backup": "גיבוי מאובטח",
|
||||
"cross_signing": "חתימה צולבת",
|
||||
"identity_server": "שרת הזדהות",
|
||||
"integration_manager": "מנהל אינטגרציה"
|
||||
"integration_manager": "מנהל אינטגרציה",
|
||||
"qr_code": "קוד QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "המשך",
|
||||
|
@ -2237,7 +2188,16 @@
|
|||
"send_report": "שלח דיווח"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "תפריט משתמש"
|
||||
"user_menu": "תפריט משתמש",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 אזכור שלא נקרא.",
|
||||
"other": "%(count)s הודעות שלא נקראו כולל אזכורים."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 הודעה שלא נקראה.",
|
||||
"other": "%(count)s הודעות שלא נקראו."
|
||||
},
|
||||
"unread_messages": "הודעות שלא נקראו."
|
||||
},
|
||||
"labs": {
|
||||
"latex_maths": "בצע מתמטיקה של LaTeX בהודעות",
|
||||
|
@ -2256,7 +2216,10 @@
|
|||
"group_moderation": "מְתִינוּת",
|
||||
"group_encryption": "הצפנה",
|
||||
"group_experimental": "נִסיוֹנִי",
|
||||
"group_developer": "מפתח"
|
||||
"group_developer": "מפתח",
|
||||
"leave_beta_reload": "עזיבת הניסוי תטען מחדש את %(brand)s.",
|
||||
"join_beta_reload": "הצטרפות לפיתוח תטען מחדש את %(brand)s.",
|
||||
"join_beta": "הצטרך לניסוי"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "הבית",
|
||||
|
@ -2465,7 +2428,23 @@
|
|||
"export_info": "זאת התחלת ייצוא של <roomName/>. ייצוא ע\"י <exporterDetails/> ב %(exportDate)s.",
|
||||
"topic": "נושא: %(topic)s",
|
||||
"error_fetching_file": "שגיאה באחזור הקובץ",
|
||||
"file_attached": "מצורף קובץ"
|
||||
"file_attached": "מצורף קובץ",
|
||||
"enter_number_between_min_max": "הכניסו מספר בין %(min)s ל %(max)s",
|
||||
"size_limit_min_max": "גודל יכול להיות רק מספר בין MB %(min)s ו MB%(max)s",
|
||||
"num_messages_min_max": "מספר ההודעות יכול להיות רק מספר בין %(min)s ו %(max)s",
|
||||
"num_messages": "מספר הודעות",
|
||||
"cancelled": "ייצוא בוטל",
|
||||
"cancelled_detail": "הייצוא בוטל בהצלחה",
|
||||
"successful": "ייצוא בוצע בהצלחה",
|
||||
"successful_detail": "הייצוא שלכם הצליח. מיצאו אותו בתיקיית ההורדות שלכם.",
|
||||
"confirm_stop": "האם אתם בטוחים שברצונכם להפסיק לייצא את הנתונים שלכם? אם כן, תצטרכו להתחיל מחדש.",
|
||||
"exporting_your_data": "מייצא את המידע שלכם",
|
||||
"title": "ייצוא צ'אט",
|
||||
"select_option": "ביחרו מבין האפשרויות למטה כדי לייצא צ'אטים מציר הזמן שלכם",
|
||||
"format": "פורמט",
|
||||
"messages": "הודעות",
|
||||
"size_limit": "הגבלת גודל",
|
||||
"include_attachments": "כלול קבצים מצורפים"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "צרו חדר וידאו",
|
||||
|
@ -2813,7 +2792,6 @@
|
|||
"unsupported": "שיחות לא נתמכות",
|
||||
"unsupported_browser": "לא ניתן לבצע שיחות בדפדפן זה."
|
||||
},
|
||||
"Messages": "הודעות",
|
||||
"Other": "אחר",
|
||||
"Advanced": "מתקדם",
|
||||
"room_settings": {
|
||||
|
@ -2888,5 +2866,35 @@
|
|||
"spaceinvaders_description": "שולח את ההודעה הנתונה עם אפקט בנושא חלל",
|
||||
"spaceinvaders_message": "שולח פולשים לחלל",
|
||||
"hearts_message": "שולח לבבות"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "אין לכם הרשאה להזמין משתתפים אל מרחב עבודה זה",
|
||||
"error_no_permission_create_room": "אין לכם הרשאה ליצור חדרים חדשים במרחב העבודה הנוכחי",
|
||||
"error_no_permission_add_room": "אין לכם השאה להוסיף חדשרים למרחב העבודה הנוכחי",
|
||||
"error_no_permission_add_space": "אין לכם הרשאה להוסיף מרחב עבודה אל מרחב העבודה הנוכחי"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "המשך עם %(provider)s",
|
||||
"sign_in_with_sso": "היכנס באמצעות כניסה יחידה",
|
||||
"sso": "כניסה חד שלבית"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "הצג תחילה חדרים עם הודעות שלא נקראו",
|
||||
"show_previews": "הצג תצוגה מקדימה של הודעות",
|
||||
"sort_by": "סדר לפי",
|
||||
"sort_by_activity": "פעילות",
|
||||
"sort_by_alphabet": "א-ת",
|
||||
"sublist_options": "רשימת אפשרויות",
|
||||
"show_n_more": {
|
||||
"one": "הצג עוד %(count)s",
|
||||
"other": "הצג עוד %(count)s"
|
||||
},
|
||||
"show_less": "הצג פחות",
|
||||
"notification_options": "אפשרויות התרעות"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "אנא מלאו מדוע אתם מדווחים.",
|
||||
"report_content_to_homeserver": "דווח על תוכן למנהל שרת הבית שלך",
|
||||
"description": "דיווח על הודעה זו ישלח את 'מזהה האירוע' הייחודי למנהל שרת הבית שלך. אם הודעות בחדר זה מוצפנות, מנהל שרת הבית שלך לא יוכל לקרוא את טקסט ההודעה או להציג קבצים או תמונות."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -474,7 +474,6 @@
|
|||
"Add Email Address": "ईमेल पता जोड़ें",
|
||||
"Click the button below to confirm adding this email address.": "इस ईमेल पते को जोड़ने की पुष्टि करने के लिए नीचे दिए गए बटन पर क्लिक करें।",
|
||||
"Confirm adding email": "ईमेल जोड़ने की पुष्टि करें",
|
||||
"Single Sign On": "केवल हस्ताक्षर के ऊपर",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "अपनी पहचान साबित करने के लिए सिंगल साइन ऑन का उपयोग करके इस ईमेल पते को जोड़ने की पुष्टि करें।",
|
||||
"Use Single Sign On to continue": "जारी रखने के लिए सिंगल साइन ऑन का उपयोग करें",
|
||||
"common": {
|
||||
|
@ -691,5 +690,8 @@
|
|||
"complete_title": "सत्यापित!",
|
||||
"complete_description": "आपने इस उपयोगकर्ता को सफलतापूर्वक सत्यापित कर लिया है।"
|
||||
}
|
||||
},
|
||||
"auth": {
|
||||
"sso": "केवल हस्ताक्षर के ऊपर"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -137,7 +137,6 @@
|
|||
"Unable to load! Check your network connectivity and try again.": "Učitavanje nije moguće! Provjerite mrežnu povezanost i pokušajte ponovo.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrdite dodavanje ovog telefonskog broja koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrdite dodavanje ove email adrese koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||
"Single Sign On": "Jedinstvena prijava (SSO)",
|
||||
"Use Single Sign On to continue": "Koristite jedinstvenu prijavu (SSO) za nastavak",
|
||||
"Add Phone Number": "Dodaj telefonski broj",
|
||||
"Click the button below to confirm adding this phone number.": "Kliknite gumb ispod da biste potvrdili dodavanje ovog telefonskog broja.",
|
||||
|
@ -172,5 +171,8 @@
|
|||
"call_failed_media_applications": "Da ni jedna druga aplikacija već ne koristi web kameru",
|
||||
"already_in_call": "Već u pozivu",
|
||||
"already_in_call_person": "Već ste u pozivu sa tom osobom."
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Jedinstvena prijava (SSO)"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -366,7 +366,6 @@
|
|||
"To avoid losing your chat history, you must export your room keys before logging out. You will need to go back to the newer version of %(brand)s to do this": "Hogy a régi üzenetekhez továbbra is hozzáférhess kijelentkezés előtt ki kell mentened a szobák titkosító kulcsait. Ehhez a %(brand)s egy frissebb verzióját kell használnod",
|
||||
"Incompatible Database": "Nem kompatibilis adatbázis",
|
||||
"Continue With Encryption Disabled": "Folytatás a titkosítás kikapcsolásával",
|
||||
"Sign in with single sign-on": "Bejelentkezés „egyszeri bejelentkezéssel”",
|
||||
"Unable to load! Check your network connectivity and try again.": "A betöltés sikertelen. Ellenőrizze a hálózati kapcsolatot, és próbálja újra.",
|
||||
"Delete Backup": "Mentés törlése",
|
||||
"Unable to load key backup status": "A mentett kulcsok állapotát nem lehet betölteni",
|
||||
|
@ -751,9 +750,6 @@
|
|||
"An error occurred changing the room's power level requirements. Ensure you have sufficient permissions and try again.": "Hiba történt a szobához szükséges hozzáférési szint megváltoztatása során. Ellenőrizze, hogy megvan-e hozzá a megfelelő jogosultsága, és próbálja újra.",
|
||||
"Explore rooms": "Szobák felderítése",
|
||||
"Verify the link in your inbox": "Ellenőrizd a hivatkozást a bejövő leveleid között",
|
||||
"Please fill why you're reporting.": "Adja meg, hogy miért jelenti.",
|
||||
"Report Content to Your Homeserver Administrator": "Tartalom bejelentése a Matrix-kiszolgáló rendszergazdájának",
|
||||
"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.": "Az üzenet bejelentése egy egyedi „eseményazonosítót” küld el a Matrix-kiszolgáló rendszergazdájának. Ha az üzenetek titkosítottak a szobában, akkor a Matrix-kiszolgáló rendszergazdája nem tudja elolvasni az üzenetet, vagy nem tudja megnézni a fájlokat vagy képeket.",
|
||||
"Read Marker lifetime (ms)": "Olvasási visszajelzés érvényessége (ms)",
|
||||
"Read Marker off-screen lifetime (ms)": "Olvasási visszajelzés érvényessége a képernyőn kívül (ms)",
|
||||
"e.g. my-room": "pl.: szobam",
|
||||
|
@ -763,14 +759,6 @@
|
|||
"Show advanced": "Speciális beállítások megjelenítése",
|
||||
"Close dialog": "Ablak bezárása",
|
||||
"Clear cache and reload": "Gyorsítótár ürítése és újratöltés",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s olvasatlan üzenet megemlítéssel.",
|
||||
"one": "1 olvasatlan megemlítés."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s olvasatlan üzenet.",
|
||||
"one": "1 olvasatlan üzenet."
|
||||
},
|
||||
"Show image": "Kép megjelenítése",
|
||||
"To continue you need to accept the terms of this service.": "A folytatáshoz el kell fogadnia a felhasználási feltételeket.",
|
||||
"Document": "Dokumentum",
|
||||
|
@ -797,7 +785,6 @@
|
|||
"Jump to first unread room.": "Ugrás az első olvasatlan szobához.",
|
||||
"Jump to first invite.": "Újrás az első meghívóhoz.",
|
||||
"Room %(name)s": "Szoba: %(name)s",
|
||||
"Unread messages.": "Olvasatlan üzenetek.",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "Ez a művelet az e-mail-cím vagy telefonszám ellenőrzése miatt hozzáférést igényel a(z) <server /> alapértelmezett azonosítási kiszolgálójához, de a kiszolgálónak nincsenek felhasználási feltételei.",
|
||||
"Message Actions": "Üzenet Műveletek",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
|
@ -914,7 +901,6 @@
|
|||
"Encryption upgrade available": "A titkosítási fejlesztés elérhető",
|
||||
"Enable message search in encrypted rooms": "Üzenetek keresésének bekapcsolása a titkosított szobákban",
|
||||
"This bridge was provisioned by <user />.": "Ezt a hidat a következő készítette: <user />.",
|
||||
"Show less": "Kevesebb megjelenítése",
|
||||
"Securely cache encrypted messages locally for them to appear in search results.": "A titkosított üzenetek biztonságos helyi gyorsítótárazása, hogy megjelenhessenek a keresési találatok között.",
|
||||
"%(brand)s is missing some components required for securely caching encrypted messages locally. If you'd like to experiment with this feature, build a custom %(brand)s Desktop with <nativeLink>search components added</nativeLink>.": "A titkosított üzenetek biztonságos helyi tárolásához hiányzik néhány összetevő a(z) %(brand)s alkalmazásból. Ha kísérletezni szeretne ezzel a funkcióval, akkor állítson össze egy egyéni asztali %(brand)s alkalmazást, amely <nativeLink>tartalmazza a keresési összetevőket</nativeLink>.",
|
||||
"Message search": "Üzenet keresése",
|
||||
|
@ -1059,7 +1045,6 @@
|
|||
"Toggle right panel": "Jobb oldali panel be/ki",
|
||||
"Cancel autocomplete": "Automatikus kiegészítés megszakítása",
|
||||
"Use Single Sign On to continue": "A folytatáshoz használja az egyszeri bejelentkezést (SSO)",
|
||||
"Single Sign On": "Egyszeri bejelentkezés",
|
||||
"%(name)s is requesting verification": "%(name)s ellenőrzést kér",
|
||||
"well formed": "helyesen formázott",
|
||||
"unexpected type": "váratlan típus",
|
||||
|
@ -1107,7 +1092,6 @@
|
|||
"Verify your other session using one of the options below.": "Ellenőrizze a másik munkamenetét a lenti lehetőségek egyikével.",
|
||||
"Opens chat with the given user": "Megnyitja a beszélgetést a megadott felhasználóval",
|
||||
"You've successfully verified your device!": "Sikeresen ellenőrizted az eszközödet!",
|
||||
"QR Code": "QR kód",
|
||||
"To continue, use Single Sign On to prove your identity.": "A folytatáshoz, használja az egyszeri bejelentkezést, hogy megerősítse a személyazonosságát.",
|
||||
"Confirm to continue": "Erősítsd meg a továbblépéshez",
|
||||
"Click the button below to confirm your identity.": "A személyazonossága megerősítéséhez kattintson a lenti gombra.",
|
||||
|
@ -1141,21 +1125,13 @@
|
|||
"Use a different passphrase?": "Másik jelmondat használata?",
|
||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "A kiszolgáló rendszergazdája alapértelmezetten kikapcsolta a végpontok közötti titkosítást a privát szobákban és a közvetlen beszélgetésekben.",
|
||||
"No recently visited rooms": "Nincsenek nemrégiben meglátogatott szobák",
|
||||
"Sort by": "Rendezés",
|
||||
"Message preview": "Üzenet előnézet",
|
||||
"List options": "Lista beállításai",
|
||||
"Show %(count)s more": {
|
||||
"other": "Még %(count)s megjelenítése",
|
||||
"one": "Még %(count)s megjelenítése"
|
||||
},
|
||||
"Room options": "Szoba beállítások",
|
||||
"Switch to light mode": "Világos módra váltás",
|
||||
"Switch to dark mode": "Sötét módra váltás",
|
||||
"Switch theme": "Kinézet váltása",
|
||||
"All settings": "Minden beállítás",
|
||||
"Feedback": "Visszajelzés",
|
||||
"Activity": "Aktivitás",
|
||||
"A-Z": "A-Z",
|
||||
"Looks good!": "Jónak tűnik!",
|
||||
"Use custom size": "Egyéni méret használata",
|
||||
"Hey you. You're the best!": "Szia! Te vagy a legjobb!",
|
||||
|
@ -1174,15 +1150,12 @@
|
|||
"Set a Security Phrase": "Biztonsági Jelmondat beállítása",
|
||||
"Confirm Security Phrase": "Biztonsági jelmondat megerősítése",
|
||||
"Save your Security Key": "Mentse el a biztonsági kulcsát",
|
||||
"Notification options": "Értesítési beállítások",
|
||||
"Favourited": "Kedvencnek jelölt",
|
||||
"Forget Room": "Szoba elfelejtése",
|
||||
"This room is public": "Ez egy nyilvános szoba",
|
||||
"Are you sure you want to cancel entering passphrase?": "Biztos, hogy megszakítja a jelmondat bevitelét?",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "A(z) %(brand)s nem képes helyileg biztonságosan elmenteni a titkosított üzeneteket, ha webböngészőben fut. Használja az <desktopLink>asztali %(brand)s</desktopLink> alkalmazást, hogy az üzenetekben való kereséskor a titkosított üzenetek is megjelenjenek.",
|
||||
"Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, <code>@bot:*</code> would ignore all users that have the name 'bot' on any server.": "A mellőzendő felhasználókat és kiszolgálókat itt adja meg. Használjon csillagot a(z) %(brand)s kliensben, hogy minden karakterre illeszkedjen. Például a <code>@bot:*</code> figyelmen kívül fog hagyni minden „bot” nevű felhasználót, minden kiszolgálóról.",
|
||||
"Show rooms with unread messages first": "Olvasatlan üzeneteket tartalmazó szobák megjelenítése elől",
|
||||
"Show previews of messages": "Üzenet előnézet megjelenítése",
|
||||
"Edited at %(date)s": "Szerkesztve ekkor: %(date)s",
|
||||
"Click to view edits": "A szerkesztések megtekintéséhez kattints",
|
||||
"Change notification settings": "Értesítési beállítások megváltoztatása",
|
||||
|
@ -1564,7 +1537,6 @@
|
|||
"Unable to validate homeserver": "A Matrix-kiszolgálót nem lehet ellenőrizni",
|
||||
"Continuing without email": "Folytatás e-mail-cím nélkül",
|
||||
"Reason (optional)": "Ok (opcionális)",
|
||||
"Continue with %(provider)s": "Folytatás ezzel a szolgáltatóval: %(provider)s",
|
||||
"See <b>%(msgtype)s</b> messages posted to your active room": "Az aktív szobájába küldött <b>%(msgtype)s</b> üzenetek megjelenítése",
|
||||
"See <b>%(msgtype)s</b> messages posted to this room": "Az ebbe a szobába küldött <b>%(msgtype)s</b> üzenetek megjelenítése",
|
||||
"See general files posted to your active room": "Az aktív szobádba küldött fájlok megjelenítése",
|
||||
|
@ -1708,9 +1680,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Nem fogja tudni visszavonni ezt a változtatást, mert lefokozza magát, ha Ön az utolsó privilegizált felhasználó a térben, akkor lehetetlen lesz a jogosultságok visszanyerése.",
|
||||
"Empty room": "Üres szoba",
|
||||
"Suggested Rooms": "Javasolt szobák",
|
||||
"You do not have permissions to add rooms to this space": "Nincs jogosultsága szobát hozzáadni ehhez a térhez",
|
||||
"Add existing room": "Létező szoba hozzáadása",
|
||||
"You do not have permissions to create new rooms in this space": "Nincs jogosultsága szoba létrehozására ebben a térben",
|
||||
"Invite to this space": "Meghívás a térbe",
|
||||
"Your message was sent": "Üzenet elküldve",
|
||||
"Space options": "Tér beállításai",
|
||||
|
@ -1798,8 +1768,6 @@
|
|||
"What do you want to organise?": "Mit szeretne megszervezni?",
|
||||
"You have no ignored users.": "Nincsenek mellőzött felhasználók.",
|
||||
"Select a room below first": "Először válasszon ki szobát alulról",
|
||||
"Join the beta": "Csatlakozás béta lehetőségekhez",
|
||||
"Leave the beta": "Béta kikapcsolása",
|
||||
"Want to add a new room instead?": "Inkább új szobát adna hozzá?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Szobák hozzáadása…",
|
||||
|
@ -1843,10 +1811,6 @@
|
|||
"Nothing pinned, yet": "Még semmi sincs kitűzve",
|
||||
"End-to-end encryption isn't enabled": "Végpontok közötti titkosítás nincs engedélyezve",
|
||||
"Some invites couldn't be sent": "Néhány meghívót nem sikerült elküldeni",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Válassza ki az üzenet természetét, vagy írja le, hogy miért elítélendő.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Ez a szoba illegális vagy mérgező tartalmat közvetít, vagy a moderátorok képtelenek ezeket megfelelően moderálni.\nEz jelezve lesz a(z) %(homeserver)s rendszergazdái felé. Az rendszergazdák NEM tudják olvasni a szoba titkosított tartalmát.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "A felhasználó kéretlen reklámokkal, reklámhivatkozásokkal vagy propagandával bombázza a szobát.\nEz jelezve lesz a szoba moderátorai felé.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "A felhasználó illegális viselkedést valósít meg, például kipécézett valakit vagy tettlegességgel fenyeget.\nEz moderátorok felé jelzésre kerül akik akár hivatalos személyek felé továbbíthatják ezt.",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Üzenek keresés kezdő beállítása sikertelen, ellenőrizze a <a>beállításait</a> további információkért",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Cím beállítása ehhez a térhez, hogy a felhasználók a matrix szerveren megtalálhassák (%(localDomain)s)",
|
||||
"To publish an address, it needs to be set as a local address first.": "A cím publikálásához először helyi címet kell beállítani.",
|
||||
|
@ -1860,13 +1824,6 @@
|
|||
"Show preview": "Előnézet megjelenítése",
|
||||
"View source": "Forrás megtekintése",
|
||||
"Settings - %(spaceName)s": "Beállítások – %(spaceName)s",
|
||||
"Report the entire room": "Az egész szoba jelentése",
|
||||
"Spam or propaganda": "Kéretlen tartalom vagy propaganda",
|
||||
"Illegal Content": "Törvénytelen tartalom",
|
||||
"Toxic Behaviour": "Mérgező viselkedés",
|
||||
"Disagree": "Nem értek egyet",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Bármi más ok. Írja le a problémát.\nEz lesz elküldve a szoba moderátorainak.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Amit ez a felhasználó ír az rossz.\nErről a szoba moderátorának jelentés készül.",
|
||||
"Please provide an address": "Kérem adja meg a címet",
|
||||
"This space has no local addresses": "Ennek a térnek nincs helyi címe",
|
||||
"Space information": "Tér információi",
|
||||
|
@ -2018,31 +1975,17 @@
|
|||
"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",
|
||||
"Include Attachments": "Csatolmányokkal együtt",
|
||||
"Size Limit": "Méret korlát",
|
||||
"Format": "Formátum",
|
||||
"Export Chat": "Beszélgetés exportálása",
|
||||
"Exporting your data": "Adatai exportálása",
|
||||
"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 exportálása",
|
||||
"I'll verify later": "Később ellenőrzöm",
|
||||
"Proceed with reset": "Lecserélés folytatása",
|
||||
"Skip verification for now": "Ellenőrzés kihagyása most",
|
||||
"Really reset verification keys?": "Biztos, hogy lecseréli az ellenőrzési kulcsokat?",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Biztos, hogy megállítja az adatai exportálását? Ha igen, később újra előröl kell kezdeni.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Az exportálás sikeres volt. Megtalálja a Letöltések könyvtárban.",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Az üzenetek száma csak %(min)s és %(max)s közötti szám lehet",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "A méret csak %(min)s MB és %(max)s MB közötti szám lehet",
|
||||
"Enter a number between %(min)s and %(max)s": "Adjon meg egy számot %(min)s és %(max)s között",
|
||||
"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.": "Az ellenőrzéshez használt kulcsok alaphelyzetbe állítását nem lehet visszavonni. A visszaállítás után nem fog hozzáférni a régi titkosított üzenetekhez, és minden ismerőse, aki eddig ellenőrizte a személyazonosságát, biztonsági figyelmeztetést fog látni, amíg újra nem ellenőrzi.",
|
||||
"Verify with Security Key": "Ellenőrzés Biztonsági Kulccsal",
|
||||
"Verify with Security Key or Phrase": "Ellenőrzés Biztonsági Kulccsal vagy Jelmondattal",
|
||||
"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.": "Úgy tűnik, hogy nem rendelkezik biztonsági kulccsal, vagy másik eszközzel, amelyikkel ellenőrizhetné. Ezzel az eszközzel nem fér majd hozzá a régi titkosított üzenetekhez. Ahhoz, hogy a személyazonosságát ezen az eszközön ellenőrizni lehessen, az ellenőrzédi kulcsokat alaphelyzetbe kell állítani.",
|
||||
"Select from the options below to export chats from your timeline": "Az idővonalon a beszélgetés exportálásához tartozó beállítások kiválasztása",
|
||||
"Create poll": "Szavazás létrehozása",
|
||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||
"one": "Terek frissítése…",
|
||||
|
@ -2177,7 +2120,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s menű",
|
||||
"Join public room": "Belépés nyilvános szobába",
|
||||
"Add people": "Felhasználók meghívása",
|
||||
"You do not have permissions to invite people to this space": "Nincs jogosultságod embereket meghívni erre a térre",
|
||||
"Invite to space": "Meghívás a térbe",
|
||||
"Start new chat": "Új beszélgetés indítása",
|
||||
"Recently viewed": "Nemrég megtekintett",
|
||||
|
@ -2310,10 +2252,7 @@
|
|||
"Poll": "Szavazás",
|
||||
"Voice Message": "Hang üzenet",
|
||||
"Hide stickers": "Matricák elrejtése",
|
||||
"You do not have permissions to add spaces to this space": "Nincs jogosultsága, hogy tereket adjon hozzá ehhez a térhez",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s és %(space2Name)s",
|
||||
"Click for more info": "Kattintson a további információkhoz",
|
||||
"This is a beta feature": "Ez egy beta állapotú funkció",
|
||||
"Use <arrows/> to scroll": "Görgetés ezekkel: <arrows/>",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Visszajelzés elküldve. Köszönjük, nagyra értékeljük.",
|
||||
"Automatically send debug logs when key backup is not functioning": "Hibakeresési naplók automatikus küldése, ha a kulcsmentés nem működik",
|
||||
|
@ -2334,7 +2273,6 @@
|
|||
"Open thread": "Üzenetszál megnyitása",
|
||||
"No virtual room for this room": "Ehhez a szobához nincs virtuális szoba",
|
||||
"Switches to this room's virtual room, if it has one": "Átváltás a szoba virtuális szobájába, ha létezik",
|
||||
"Export Cancelled": "Exportálás megszakítva",
|
||||
"Match system": "Rendszer beállításával megegyező",
|
||||
"What location type do you want to share?": "Milyen jellegű földrajzi helyzetet szeretne megosztani?",
|
||||
"Drop a Pin": "Hely kijelölése",
|
||||
|
@ -2490,8 +2428,6 @@
|
|||
"other": "%(count)s személy belépett"
|
||||
},
|
||||
"View related event": "Kapcsolódó események megjelenítése",
|
||||
"Check if you want to hide all current and future messages from this user.": "Válaszd ki ha ennek a felhasználónak a jelenlegi és jövőbeli üzeneteit el szeretnéd rejteni.",
|
||||
"Ignore user": "Felhasználó mellőzése",
|
||||
"Read receipts": "Olvasási visszajelzés",
|
||||
"You were disconnected from the call. (Error: %(message)s)": "A híváskapcsolat megszakadt (Hiba: %(message)s)",
|
||||
"Failed to set direct message tag": "Nem sikerült a közvetlen beszélgetés címkét beállítani",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Un-maximise": "Kicsinyítés",
|
||||
"Deactivating your account is a permanent action — be careful!": "A fiók felfüggesztése végleges — legyen óvatos!",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "A kijelentkezéssel a kulcsok az eszközről törlődnek, ami azt jelenti, hogy ha nincsenek meg máshol a kulcsok, vagy nincsenek mentve a kiszolgálón, akkor a titkosított üzenetek olvashatatlanná válnak.",
|
||||
"Joining the beta will reload %(brand)s.": "A béta funkció bekapcsolása újratölti ezt: %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "A béta kikapcsolása újratölti ezt: %(brand)s.",
|
||||
"Remove search filter for %(filter)s": "Keresési szűrő eltávolítása innen: %(filter)s",
|
||||
"Start a group chat": "Csoportos csevegés indítása",
|
||||
"Other options": "További lehetőségek",
|
||||
|
@ -2553,13 +2487,6 @@
|
|||
"Send your first message to invite <displayName/> to chat": "Küldj egy üzenetet ahhoz, hogy meghívd <displayName/> felhasználót",
|
||||
"Messages in this chat will be end-to-end encrypted.": "Az üzenetek ebben a beszélgetésben végponti titkosítással vannak védve.",
|
||||
"We're creating a room with %(names)s": "Szobát készítünk: %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "A Google Play és a Google Play logó a Google LLC védjegye.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "Az App Store® és az Apple logo® az Apple Inc. védjegyei.",
|
||||
"Get it on F-Droid": "Letöltés az F-Droidról",
|
||||
"Get it on Google Play": "Letöltés a Google Play-ből",
|
||||
"Download on the App Store": "Letöltés az App Store-ból",
|
||||
"Download %(brand)s Desktop": "Asztali %(brand)s letöltése",
|
||||
"Download %(brand)s": "A(z) %(brand)s letöltése",
|
||||
"Choose a locale": "Válasszon nyelvet",
|
||||
"Saved Items": "Mentett elemek",
|
||||
"Last activity": "Utolsó tevékenység",
|
||||
|
@ -2617,7 +2544,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "A kiszolgálója nem támogatja natívan, proxy kiszolgálót kell beállítani",
|
||||
"Your server lacks native support": "A kiszolgálója nem támogatja natívan",
|
||||
"Your server has native support": "A kiszolgálója natívan támogatja",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s vagy %(appLinks)s",
|
||||
"Voice broadcast": "Hangközvetítés",
|
||||
"Sign out of this session": "Kijelentkezés ebből a munkamenetből",
|
||||
"Rename session": "Munkamenet átnevezése",
|
||||
|
@ -2725,8 +2651,6 @@
|
|||
"That e-mail address or phone number is already in use.": "Ez az e-mail cím vagy telefonszám már használatban van.",
|
||||
"Sign out of all devices": "Kijelentkezés minden eszközből",
|
||||
"Confirm new password": "Új jelszó megerősítése",
|
||||
"Reset your password": "Jelszó megváltoztatása",
|
||||
"Reset password": "Jelszó visszaállítása",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Rövid idő alatt túl sok próbálkozás. Próbálkozzon ennyi idő múlva: %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Rövid idő alatt túl sok próbálkozás. Várjon egy kicsit mielőtt újra próbálkozik.",
|
||||
"Show details": "Részletek megmutatása",
|
||||
|
@ -2831,11 +2755,8 @@
|
|||
"There are no active polls in this room": "Nincsenek aktív szavazások ebben a szobában",
|
||||
"Fetching keys from server…": "Kulcsok lekérése a kiszolgálóról…",
|
||||
"Checking…": "Ellenőrzés…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Ez a szoba illegális vagy mérgező tartalmat közvetít, vagy a moderátorok képtelenek ezeket megfelelően moderálni.\nEz jelezve lesz a(z) %(homeserver)s rendszergazdái felé.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "A felhasználó mérgező viselkedést jelenít meg, például más felhasználókat inzultál vagy felnőtt tartalmat oszt meg egy családbarát szobában vagy más módon sérti meg a szoba szabályait.\nEz moderátorok felé jelzésre kerül.",
|
||||
"Enable '%(manageIntegrations)s' in Settings to do this.": "Ehhez engedélyezd a(z) „%(manageIntegrations)s”-t a Beállításokban.",
|
||||
"Waiting for partner to confirm…": "Várakozás a partner megerősítésére…",
|
||||
"Processing…": "Feldolgozás…",
|
||||
"Adding…": "Hozzáadás…",
|
||||
"Declining…": "Elutasítás…",
|
||||
"Rejecting invite…": "Meghívó elutasítása…",
|
||||
|
@ -2929,7 +2850,6 @@
|
|||
"Error while changing password: %(error)s": "Hiba a jelszó módosítása során: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Matrix-kiszolgáló nélkül nem lehet felhasználókat meghívni e-mailben. Kapcsolódjon egyhez a „Beállítások” alatt.",
|
||||
"Failed to download source media, no source url was found": "A forrásmédia letöltése sikertelen, nem található forráswebcím",
|
||||
"Unable to create room with moderation bot": "Nem hozható létre szoba moderációs bottal",
|
||||
"common": {
|
||||
"about": "Névjegy",
|
||||
"analytics": "Analitika",
|
||||
|
@ -3018,7 +2938,8 @@
|
|||
"secure_backup": "Biztonsági mentés",
|
||||
"cross_signing": "Eszközök közti hitelesítés",
|
||||
"identity_server": "Azonosítási kiszolgáló",
|
||||
"integration_manager": "Integrációkezelő"
|
||||
"integration_manager": "Integrációkezelő",
|
||||
"qr_code": "QR kód"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Folytatás",
|
||||
|
@ -3120,7 +3041,16 @@
|
|||
"clear": "Törlés"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Felhasználói menü"
|
||||
"user_menu": "Felhasználói menü",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s olvasatlan üzenet megemlítéssel.",
|
||||
"one": "1 olvasatlan megemlítés."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s olvasatlan üzenet.",
|
||||
"one": "1 olvasatlan üzenet."
|
||||
},
|
||||
"unread_messages": "Olvasatlan üzenetek."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videószobák",
|
||||
|
@ -3170,7 +3100,13 @@
|
|||
"group_themes": "Témák",
|
||||
"group_encryption": "Titkosítás",
|
||||
"group_experimental": "Kísérleti",
|
||||
"group_developer": "Fejlesztői"
|
||||
"group_developer": "Fejlesztői",
|
||||
"beta_feature": "Ez egy beta állapotú funkció",
|
||||
"click_for_info": "Kattintson a további információkhoz",
|
||||
"leave_beta_reload": "A béta kikapcsolása újratölti ezt: %(brand)s.",
|
||||
"join_beta_reload": "A béta funkció bekapcsolása újratölti ezt: %(brand)s.",
|
||||
"leave_beta": "Béta kikapcsolása",
|
||||
"join_beta": "Csatlakozás béta lehetőségekhez"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Kezdőlap",
|
||||
|
@ -3301,7 +3237,15 @@
|
|||
"enable_notifications": "Értesítések bekapcsolása",
|
||||
"download_app_description": "Ne maradjon le semmiről, legyen Önnél a(z) %(brand)s",
|
||||
"download_app_action": "Alkalmazások letöltése",
|
||||
"download_app": "A(z) %(brand)s letöltése"
|
||||
"download_app": "A(z) %(brand)s letöltése",
|
||||
"download_brand": "A(z) %(brand)s letöltése",
|
||||
"download_brand_desktop": "Asztali %(brand)s letöltése",
|
||||
"qr_or_app_links": "%(qrCode)s vagy %(appLinks)s",
|
||||
"download_app_store": "Letöltés az App Store-ból",
|
||||
"download_google_play": "Letöltés a Google Play-ből",
|
||||
"download_f_droid": "Letöltés az F-Droidról",
|
||||
"apple_trademarks": "Az App Store® és az Apple logo® az Apple Inc. védjegyei.",
|
||||
"google_trademarks": "A Google Play és a Google Play logó a Google LLC védjegye."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Gyors elérési gombok megjelenítése a nemrég meglátogatott szobákhoz a szobalista felett",
|
||||
|
@ -3510,7 +3454,24 @@
|
|||
"error_fetching_file": "Fájlletöltési hiba",
|
||||
"file_attached": "Fájl mellékelve",
|
||||
"fetching_events": "Események lekérése…",
|
||||
"creating_output": "Kimenet létrehozása…"
|
||||
"creating_output": "Kimenet létrehozása…",
|
||||
"processing": "Feldolgozás…",
|
||||
"enter_number_between_min_max": "Adjon meg egy számot %(min)s és %(max)s között",
|
||||
"size_limit_min_max": "A méret csak %(min)s MB és %(max)s MB közötti szám lehet",
|
||||
"num_messages_min_max": "Az üzenetek száma csak %(min)s és %(max)s közötti szám lehet",
|
||||
"num_messages": "Üzenetek száma",
|
||||
"cancelled": "Exportálás megszakítva",
|
||||
"cancelled_detail": "Az exportálás sikeresen félbeszakítva",
|
||||
"successful": "Exportálás sikeres",
|
||||
"successful_detail": "Az exportálás sikeres volt. Megtalálja a Letöltések könyvtárban.",
|
||||
"confirm_stop": "Biztos, hogy megállítja az adatai exportálását? Ha igen, később újra előröl kell kezdeni.",
|
||||
"exporting_your_data": "Adatai exportálása",
|
||||
"title": "Beszélgetés exportálása",
|
||||
"select_option": "Az idővonalon a beszélgetés exportálásához tartozó beállítások kiválasztása",
|
||||
"format": "Formátum",
|
||||
"messages": "Üzenetek",
|
||||
"size_limit": "Méret korlát",
|
||||
"include_attachments": "Csatolmányokkal együtt"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Videó szoba készítése",
|
||||
|
@ -3913,7 +3874,6 @@
|
|||
"unsupported": "A hívások nem támogatottak",
|
||||
"unsupported_browser": "Nem indíthat hívást ebben a böngészőben."
|
||||
},
|
||||
"Messages": "Üzenetek",
|
||||
"Other": "Egyéb",
|
||||
"Advanced": "Speciális",
|
||||
"room_settings": {
|
||||
|
@ -4001,5 +3961,53 @@
|
|||
"spaceinvaders_message": "space invaders küldése",
|
||||
"hearts_description": "Szívecskékkel küldi el az üzenetet",
|
||||
"hearts_message": "szívecskéket küld"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Nincs jogosultságod embereket meghívni erre a térre",
|
||||
"error_no_permission_create_room": "Nincs jogosultsága szoba létrehozására ebben a térben",
|
||||
"error_no_permission_add_room": "Nincs jogosultsága szobát hozzáadni ehhez a térhez",
|
||||
"error_no_permission_add_space": "Nincs jogosultsága, hogy tereket adjon hozzá ehhez a térhez"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Folytatás ezzel a szolgáltatóval: %(provider)s",
|
||||
"sign_in_with_sso": "Bejelentkezés „egyszeri bejelentkezéssel”",
|
||||
"sso": "Egyszeri bejelentkezés",
|
||||
"reset_password_action": "Jelszó visszaállítása",
|
||||
"reset_password_title": "Jelszó megváltoztatása"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Olvasatlan üzeneteket tartalmazó szobák megjelenítése elől",
|
||||
"show_previews": "Üzenet előnézet megjelenítése",
|
||||
"sort_by": "Rendezés",
|
||||
"sort_by_activity": "Aktivitás",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Lista beállításai",
|
||||
"show_n_more": {
|
||||
"other": "Még %(count)s megjelenítése",
|
||||
"one": "Még %(count)s megjelenítése"
|
||||
},
|
||||
"show_less": "Kevesebb megjelenítése",
|
||||
"notification_options": "Értesítési beállítások"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Adja meg, hogy miért jelenti.",
|
||||
"unable_create_room_moderation_bot": "Nem hozható létre szoba moderációs bottal",
|
||||
"ignore_user": "Felhasználó mellőzése",
|
||||
"hide_messages_from_user": "Válaszd ki ha ennek a felhasználónak a jelenlegi és jövőbeli üzeneteit el szeretnéd rejteni.",
|
||||
"nature_disagreement": "Amit ez a felhasználó ír az rossz.\nErről a szoba moderátorának jelentés készül.",
|
||||
"nature_toxic": "A felhasználó mérgező viselkedést jelenít meg, például más felhasználókat inzultál vagy felnőtt tartalmat oszt meg egy családbarát szobában vagy más módon sérti meg a szoba szabályait.\nEz moderátorok felé jelzésre kerül.",
|
||||
"nature_illegal": "A felhasználó illegális viselkedést valósít meg, például kipécézett valakit vagy tettlegességgel fenyeget.\nEz moderátorok felé jelzésre kerül akik akár hivatalos személyek felé továbbíthatják ezt.",
|
||||
"nature_spam": "A felhasználó kéretlen reklámokkal, reklámhivatkozásokkal vagy propagandával bombázza a szobát.\nEz jelezve lesz a szoba moderátorai felé.",
|
||||
"report_to_homeserver_encrypted": "Ez a szoba illegális vagy mérgező tartalmat közvetít, vagy a moderátorok képtelenek ezeket megfelelően moderálni.\nEz jelezve lesz a(z) %(homeserver)s rendszergazdái felé. Az rendszergazdák NEM tudják olvasni a szoba titkosított tartalmát.",
|
||||
"report_to_homeserver": "Ez a szoba illegális vagy mérgező tartalmat közvetít, vagy a moderátorok képtelenek ezeket megfelelően moderálni.\nEz jelezve lesz a(z) %(homeserver)s rendszergazdái felé.",
|
||||
"nature_other": "Bármi más ok. Írja le a problémát.\nEz lesz elküldve a szoba moderátorainak.",
|
||||
"nature": "Válassza ki az üzenet természetét, vagy írja le, hogy miért elítélendő.",
|
||||
"disagree": "Nem értek egyet",
|
||||
"toxic_behaviour": "Mérgező viselkedés",
|
||||
"illegal_content": "Törvénytelen tartalom",
|
||||
"spam_or_propaganda": "Kéretlen tartalom vagy propaganda",
|
||||
"report_entire_room": "Az egész szoba jelentése",
|
||||
"report_content_to_homeserver": "Tartalom bejelentése a Matrix-kiszolgáló rendszergazdájának",
|
||||
"description": "Az üzenet bejelentése egy egyedi „eseményazonosítót” küld el a Matrix-kiszolgáló rendszergazdájának. Ha az üzenetek titkosítottak a szobában, akkor a Matrix-kiszolgáló rendszergazdája nem tudja elolvasni az üzenetet, vagy nem tudja megnézni a fájlokat vagy képeket."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -458,7 +458,6 @@
|
|||
"Add Email Address": "Tambahkan Alamat Email",
|
||||
"Click the button below to confirm adding this email address.": "Klik tombol di bawah untuk mengkonfirmasi penambahan alamat email ini.",
|
||||
"Confirm adding email": "Konfirmasi penambahan email",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Konfirmasi penambahan alamat email ini dengan menggunakan Single Sign On untuk membuktikan identitas Anda.",
|
||||
"Use Single Sign On to continue": "Gunakan Single Sign On untuk melanjutkan",
|
||||
"expand": "buka",
|
||||
|
@ -482,8 +481,6 @@
|
|||
"Information": "Informasi",
|
||||
"Widgets": "Widget",
|
||||
"Favourited": "Difavorit",
|
||||
"A-Z": "A-Z",
|
||||
"Activity": "Aktivitas",
|
||||
"ready": "siap",
|
||||
"Algorithm:": "Algoritma:",
|
||||
"Autocomplete": "Pelengkapan Otomatis",
|
||||
|
@ -676,9 +673,7 @@
|
|||
"Results": "Hasil",
|
||||
"Joined": "Tergabung",
|
||||
"Joining": "Bergabung",
|
||||
"Disagree": "Tidak Setuju",
|
||||
"Sent": "Terkirim",
|
||||
"Format": "Format",
|
||||
"MB": "MB",
|
||||
"Custom level": "Tingkat kustom",
|
||||
"Decrypting": "Mendekripsi",
|
||||
|
@ -1179,26 +1174,7 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Ruangan ini berjalan dengan versi ruangan <roomVersion />, yang homeserver ini menandainya sebagai <i>tidak stabil</i>.",
|
||||
"This room has already been upgraded.": "Ruangan ini telah ditingkatkan.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Meningkatkan ruangan ini akan mematikan instansi ruangan saat ini dan membuat ruangan yang ditingkatkan dengan nama yang sama.",
|
||||
"Unread messages.": "Pesan yang belum dibaca.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 pesan yang belum dibaca.",
|
||||
"other": "%(count)s pesan yang belum dibaca."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 sebutan yang belum dibaca.",
|
||||
"other": "%(count)s pesan yang belum dibaca termasuk sebutan."
|
||||
},
|
||||
"Forget Room": "Lupakan Ruangan",
|
||||
"Notification options": "Opsi notifikasi",
|
||||
"Show less": "Tampilkan lebih sedikit",
|
||||
"Show %(count)s more": {
|
||||
"one": "Tampilkan %(count)s lagi",
|
||||
"other": "Tampilkan %(count)s lagi"
|
||||
},
|
||||
"List options": "Tampilkan daftar opsi",
|
||||
"Sort by": "Sortir berdasarkan",
|
||||
"Show previews of messages": "Tampilkan tampilan pesan",
|
||||
"Show rooms with unread messages first": "Tampilkan ruangan dengan pesan yang belum dibaca dahulu",
|
||||
"%(roomName)s is not accessible at this time.": "%(roomName)s tidak dapat diakses sekarang.",
|
||||
"%(roomName)s does not exist.": "%(roomName)s tidak ada.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s tidak dapat ditampilkan. Apakah Anda ingin bergabung?",
|
||||
|
@ -1224,9 +1200,7 @@
|
|||
"Empty room": "Ruangan kosong",
|
||||
"Suggested Rooms": "Ruangan yang Disarankan",
|
||||
"Explore public rooms": "Jelajahi ruangan publik",
|
||||
"You do not have permissions to add rooms to this space": "Anda tidak memiliki izin untuk menambahkan ruangan di space ini",
|
||||
"Add existing room": "Tambahkan ruangan yang sudah ada",
|
||||
"You do not have permissions to create new rooms in this space": "Anda tidak memiliki izin untuk membuat ruangan baru di space ini",
|
||||
"Create new room": "Buat ruangan baru",
|
||||
"Show Widgets": "Tampilkan Widget",
|
||||
"Hide Widgets": "Sembunyikan Widget",
|
||||
|
@ -1465,8 +1439,6 @@
|
|||
"Add widgets, bridges & bots": "Tambahkan widget, jembatan & bot",
|
||||
"Edit widgets, bridges & bots": "Edit widget, jembatan & bot",
|
||||
"Set my room layout for everyone": "Tetapkan tata letak ruangan saya untuk semuanya",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Ukuran harus sebuah angka antara %(min)s MB dan %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Masukkan sebuah angka antara %(min)s dan %(max)s",
|
||||
"Server did not return valid authentication information.": "Server tidak memberikan informasi autentikasi yang absah.",
|
||||
"Server did not require any authentication": "Server tidak membutuhkan autentikasi apa pun",
|
||||
"There was a problem communicating with the server. Please try again.": "Terjadi sebuah masalah ketika berkomunikasi dengan server. Mohon coba lagi.",
|
||||
|
@ -1541,13 +1513,11 @@
|
|||
"Your server": "Server Anda",
|
||||
"Can't find this server or its room list": "Tidak dapat menemukan server ini atau daftar ruangannya",
|
||||
"You are not allowed to view this server's rooms list": "Anda tidak diizinkan untuk menampilkan daftar ruangan server ini",
|
||||
"Sign in with single sign-on": "Masuk dengan single sign on",
|
||||
"Looks good": "Kelihatannya bagus",
|
||||
"Enter a server name": "Masukkan sebuah nama server",
|
||||
"And %(count)s more...": {
|
||||
"other": "Dan %(count)s lagi..."
|
||||
},
|
||||
"Continue with %(provider)s": "Lanjutkan dengan %(provider)s",
|
||||
"Join millions for free on the largest public server": "Bergabung dengan jutaan orang lainnya secara gratis di server publik terbesar",
|
||||
"Server Options": "Opsi Server",
|
||||
"This address is already in use": "Alamat ini sudah digunakan",
|
||||
|
@ -1559,7 +1529,6 @@
|
|||
"In reply to <a>this message</a>": "Membalas ke <a>pesan ini</a>",
|
||||
"<a>In reply to</a> <pill>": "<a>Membalas ke</a> <pill>",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Tidak dapat memuat peristiwa yang dibalas, karena tidak ada atau Anda tidak memiliki izin untuk menampilkannya.",
|
||||
"QR Code": "Kode QR",
|
||||
"Add option": "Tambahkan opsi",
|
||||
"Write an option": "Tulis sebuah opsi",
|
||||
"Option %(number)s": "Opsi %(number)s",
|
||||
|
@ -1638,19 +1607,6 @@
|
|||
"The room upgrade could not be completed": "Peningkatan ruangan tidak dapat diselesaikan",
|
||||
"Failed to upgrade room": "Gagal untuk meningkatkan ruangan",
|
||||
"Room Settings - %(roomName)s": "Pengaturan Ruangan — %(roomName)s",
|
||||
"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.": "Melaporkan pesan ini akan mengirimkan ID peristiwa yang untuk ke administrator homeserver Anda. Jika pesan-pesan di ruangan ini terenkripsi, maka administrator homeserver Anda tidak akan dapat membaca teks pesan atau menampilkan file atau gambar apa saja.",
|
||||
"Report Content to Your Homeserver Administrator": "Laporkan Konten ke Administrator Homeserver Anda",
|
||||
"Report the entire room": "Laporkan seluruh ruangan",
|
||||
"Spam or propaganda": "Spam atau propaganda",
|
||||
"Illegal Content": "Konten Ilegal",
|
||||
"Toxic Behaviour": "Kelakukan Toxic",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Harap pilih sifat dan jelaskan apa yang membuat pesan ini kasar.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Alasan yang lain. Mohon jelaskan masalahnya.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Ruangan ini khusus untuk konten ilegal atau toxic atau moderator gagal untuk memoderasikan konten ilegal atau toxic.\nIni akan dilaporkan ke administrator %(homeserver)s. Administrator TIDAK akan dapat membaca konten yang terenkripsi di ruangan ini.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Pengguna ini spam ruangan dengan iklan, tautan ke iklan atau ke propaganda.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Pengguna ini menampilkan kelakuan yang ilegal, misalnya dengan doxing orang lain atau ancaman kekerasan.\nIni akan dilaporkan ke moderator ruangan yang mungkin melaporkannya juga ke otoritas hukum.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Apa yang ditulis pengguna itu salah.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"Please fill why you're reporting.": "Mohon isi kenapa Anda melaporkan.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Sekadar mengingatkan saja, jika Anda belum menambahkan sebuah email dan Anda lupa kata sandi, Anda mungkin <b>dapat kehilangan akses ke akun Anda</b>.",
|
||||
"Terms of Service": "Persyaratan Layanan",
|
||||
"You may contact me if you have any follow up questions": "Anda mungkin menghubungi saya jika Anda mempunyai pertanyaan lanjutan",
|
||||
|
@ -1662,17 +1618,6 @@
|
|||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Mohon lihat <existingIssuesLink>bug yang sudah ada di GitHub</existingIssuesLink> dahulu. Tidak ada? <newIssueLink>Buat yang baru</newIssueLink>.",
|
||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "Jika Anda membuat issue, silakan kirimkan <debugLogsLink>log pengawakutu</debugLogsLink> untuk membantu kami menemukan masalahnya.",
|
||||
"Feedback sent": "Masukan terkirim",
|
||||
"Include Attachments": "Tambahkan Lampiran",
|
||||
"Size Limit": "Batas Ukuran",
|
||||
"Select from the options below to export chats from your timeline": "Pilih dari opsi di bawah untuk mengekspor obrolan dari lini masa Anda",
|
||||
"Export Chat": "Ekspor Obrolan",
|
||||
"Exporting your data": "Mengekspor data Anda",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Apakah Anda yakin Anda ingin menghentikan mengekspor data Anda? Jika iya, Anda harus mulai lagi dari awal.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Ekspor Anda berhasil. Temukan di folder Unduhan Anda.",
|
||||
"The export was cancelled successfully": "Ekspor berhasil dibatalkan",
|
||||
"Export Successful": "Ekspor Berhasil",
|
||||
"Number of messages": "Jumlah pesan",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Jumlah pesan hanya boleh antara %(min)s dan %(max)s",
|
||||
"Unable to query secret storage status": "Tidak dapat menanyakan status penyimpanan rahasia",
|
||||
"Already have an account? <a>Sign in here</a>": "Sudah memiliki sebuah akun? <a>Masuk di sini</a>",
|
||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Atau %(usernamePassword)s",
|
||||
|
@ -1843,8 +1788,6 @@
|
|||
"Country Dropdown": "Dropdown Negara",
|
||||
"This homeserver would like to make sure you are not a robot.": "Homeserver ini memastikan Anda bahwa Anda bukan sebuah robot.",
|
||||
"This room is public": "Ruangan ini publik",
|
||||
"Join the beta": "Bergabung dengan beta",
|
||||
"Leave the beta": "Tinggalkan beta",
|
||||
"Move right": "Pindah ke kanan",
|
||||
"Move left": "Pindah ke kiri",
|
||||
"Revoke permissions": "Cabut izin",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "Menu %(spaceName)s",
|
||||
"Join public room": "Bergabung dengan ruangan publik",
|
||||
"Add people": "Tambahkan orang",
|
||||
"You do not have permissions to invite people to this space": "Anda tidak diizinkan untuk mengundang orang-orang ke space ini",
|
||||
"Invite to space": "Undang ke space",
|
||||
"Start new chat": "Mulai obrolan baru",
|
||||
"Recently viewed": "Baru saja dilihat",
|
||||
|
@ -2310,10 +2252,7 @@
|
|||
"Poll": "Poll",
|
||||
"Voice Message": "Pesan Suara",
|
||||
"Hide stickers": "Sembunyikan stiker",
|
||||
"You do not have permissions to add spaces to this space": "Anda tidak memiliki izin untuk menambahkan space ke space ini",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s dan %(space2Name)s",
|
||||
"Click for more info": "Klik untuk info lanjut",
|
||||
"This is a beta feature": "Ini adalah fitur beta",
|
||||
"Use <arrows/> to scroll": "Gunakan <arrows/> untuk menggulirkan",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Masukan terkirim! Terima kasih, kami mengapresiasinya!",
|
||||
"Automatically send debug logs when key backup is not functioning": "Kirim catatan pengawakutu secara otomatis ketika pencadangan kunci tidak berfungsi",
|
||||
|
@ -2334,7 +2273,6 @@
|
|||
"Pinned": "Disematkan",
|
||||
"Open thread": "Buka utasan",
|
||||
"No virtual room for this room": "Tidak ada ruangan virtual untuk ruangan ini",
|
||||
"Export Cancelled": "Ekspor Dibatalkan",
|
||||
"What location type do you want to share?": "Tipe lokasi apa yang Anda ingin bagikan?",
|
||||
"Drop a Pin": "Drop sebuah Pin",
|
||||
"My live location": "Lokasi langsung saya",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"one": "%(count)s orang bergabung",
|
||||
"other": "%(count)s orang bergabung"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Periksa jika Anda ingin menyembunyikan semua pesan saat ini dan pesan baru dari pengguna ini.",
|
||||
"Ignore user": "Abaikan pengguna",
|
||||
"View related event": "Tampilkan peristiwa terkait",
|
||||
"Read receipts": "Laporan dibaca",
|
||||
"Failed to set direct message tag": "Gagal menetapkan tanda pesan langsung",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "Menonaktifkan akun Anda adalah aksi yang permanen — hati-hati!",
|
||||
"Un-maximise": "Minimalkan",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Ketika Anda keluar, kunci-kunci ini akan dihapus dari perangkat ini, yang berarti Anda tidak dapat membaca pesan-pesan terenkripsi kecuali jika Anda mempunyai kuncinya di perangkat Anda yang lain, atau telah mencadangkannya ke server.",
|
||||
"Joining the beta will reload %(brand)s.": "Bergabung dengan beta akan memuat ulang %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Meninggalkan beta akan memuat ulang %(brand)s.",
|
||||
"Video rooms are a beta feature": "Ruangan video adalah fitur beta",
|
||||
"Enable hardware acceleration": "Aktifkan akselerasi perangkat keras",
|
||||
"Remove search filter for %(filter)s": "Hapus saringan pencarian untuk %(filter)s",
|
||||
|
@ -2555,14 +2489,7 @@
|
|||
"Saved Items": "Item yang Tersimpan",
|
||||
"Choose a locale": "Pilih locale",
|
||||
"Spell check": "Pemeriksa ejaan",
|
||||
"Download %(brand)s": "Unduh %(brand)s",
|
||||
"We're creating a room with %(names)s": "Kami sedang membuat sebuah ruangan dengan %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play dan logo Google Play adalah merek dagang Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® dan logo Apple® adalah merek dagang Apple Inc.",
|
||||
"Get it on F-Droid": "Dapatkan di F-Droid",
|
||||
"Get it on Google Play": "Dapatkan di Google Play",
|
||||
"Download on the App Store": "Unduh di App Store",
|
||||
"Download %(brand)s Desktop": "Unduh %(brand)s Desktop",
|
||||
"Your server doesn't support disabling sending read receipts.": "Server Anda tidak mendukung penonaktifkan pengiriman laporan dibaca.",
|
||||
"Share your activity and status with others.": "Bagikan aktivitas dan status Anda dengan orang lain.",
|
||||
"Last activity": "Aktivitas terakhir",
|
||||
|
@ -2617,7 +2544,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "Server Anda belum mendukungnya, Anda harus menetapkan sebuah proksi",
|
||||
"Your server lacks native support": "Server Anda belum mendukungnya",
|
||||
"Your server has native support": "Server Anda mendukungnya",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s atau %(appLinks)s",
|
||||
"You need to be able to kick users to do that.": "Anda harus dapat mengeluarkan pengguna untuk melakukan itu.",
|
||||
"Sign out of this session": "Keluarkan sesi ini",
|
||||
"Rename session": "Ubah nama sesi",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Ikuti petunjuk yang dikirim ke <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Keluarkan semua perangkat",
|
||||
"Confirm new password": "Konfirmasi kata sandi baru",
|
||||
"Reset your password": "Atur ulang kata sandi Anda",
|
||||
"Reset password": "Atur ulang kata sandi",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Terlalu banyak upaya dalam waktu yang singkat. Coba lagi setelah %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Terlalu banyak upaya. Tunggu beberapa waktu sebelum mencoba lagi.",
|
||||
"Thread root ID: %(threadRootId)s": "ID akar utasan: %(threadRootId)s",
|
||||
|
@ -2832,10 +2756,7 @@
|
|||
"Loading live location…": "Memuat lokasi langsung…",
|
||||
"Fetching keys from server…": "Mendapatkan kunci- dari server…",
|
||||
"Checking…": "Memeriksa…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Ruangan ini khusus untuk konten ilegal atau toksik atau moderator gagal untuk memoderasikan konten ilegal atau toksik.\nIni akan dilaporkan ke administrator %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Pengguna ini menampilkan kelakuan yang toksik, misalnya dengan menghina pengguna lain atau membagikan konten dewasa di ruangan ramah keluarga atau merusak aturan ruangan.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"Waiting for partner to confirm…": "Menunggu pengguna untuk konfirmasi…",
|
||||
"Processing…": "Memproses…",
|
||||
"Adding…": "Menambahkan…",
|
||||
"Write something…": "Tulis sesuatu…",
|
||||
"Rejecting invite…": "Menolak undangan…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Error while changing password: %(error)s": "Terjadi kesalahan mengubah kata sandi: %(error)s",
|
||||
"WebGL is required to display maps, please enable it in your browser settings.": "WebGL diperlukam untuk menampilkan peta, silakan aktifkan di pengaturan peramban.",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Tidak dapat mengundang pengguna dengan surel tanpa server identitas. Anda dapat menghubungkan di \"Pengaturan\".",
|
||||
"Unable to create room with moderation bot": "Tidak dapat membuat ruangan dengan bot moderasi",
|
||||
"Failed to download source media, no source url was found": "Gagal mengunduh media sumber, tidak ada URL sumber yang ditemukan",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Setelah pengguna yang diundang telah bergabung ke %(brand)s, Anda akan dapat bercakapan dan ruangan akan terenkripsi secara ujung ke ujung",
|
||||
"Waiting for users to join %(brand)s": "Menunggu pengguna untuk bergabung ke %(brand)s",
|
||||
|
@ -3091,7 +3011,8 @@
|
|||
"secure_backup": "Cadangan Aman",
|
||||
"cross_signing": "Penandatanganan silang",
|
||||
"identity_server": "Server identitas",
|
||||
"integration_manager": "Manajer integrasi"
|
||||
"integration_manager": "Manajer integrasi",
|
||||
"qr_code": "Kode QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Lanjut",
|
||||
|
@ -3195,7 +3116,16 @@
|
|||
"clear": "Hapus"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu pengguna"
|
||||
"user_menu": "Menu pengguna",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 sebutan yang belum dibaca.",
|
||||
"other": "%(count)s pesan yang belum dibaca termasuk sebutan."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 pesan yang belum dibaca.",
|
||||
"other": "%(count)s pesan yang belum dibaca."
|
||||
},
|
||||
"unread_messages": "Pesan yang belum dibaca."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Ruangan video",
|
||||
|
@ -3250,7 +3180,13 @@
|
|||
"group_themes": "Tema",
|
||||
"group_encryption": "Enkripsi",
|
||||
"group_experimental": "Eksperimental",
|
||||
"group_developer": "Pengembang"
|
||||
"group_developer": "Pengembang",
|
||||
"beta_feature": "Ini adalah fitur beta",
|
||||
"click_for_info": "Klik untuk info lanjut",
|
||||
"leave_beta_reload": "Meninggalkan beta akan memuat ulang %(brand)s.",
|
||||
"join_beta_reload": "Bergabung dengan beta akan memuat ulang %(brand)s.",
|
||||
"leave_beta": "Tinggalkan beta",
|
||||
"join_beta": "Bergabung dengan beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Beranda",
|
||||
|
@ -3381,7 +3317,15 @@
|
|||
"enable_notifications": "Nyalakan notifikasi",
|
||||
"download_app_description": "Jangan lewatkan hal-hal dengan membawa %(brand)s dengan Anda",
|
||||
"download_app_action": "Unduh aplikasi",
|
||||
"download_app": "Unduh %(brand)s"
|
||||
"download_app": "Unduh %(brand)s",
|
||||
"download_brand": "Unduh %(brand)s",
|
||||
"download_brand_desktop": "Unduh %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s atau %(appLinks)s",
|
||||
"download_app_store": "Unduh di App Store",
|
||||
"download_google_play": "Dapatkan di Google Play",
|
||||
"download_f_droid": "Dapatkan di F-Droid",
|
||||
"apple_trademarks": "App Store® dan logo Apple® adalah merek dagang Apple Inc.",
|
||||
"google_trademarks": "Google Play dan logo Google Play adalah merek dagang Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Tampilkan jalan pintas ke ruangan yang baru saja ditampilkan di atas daftar ruangan",
|
||||
|
@ -3600,7 +3544,24 @@
|
|||
"error_fetching_file": "Terjadi kesalahan saat mendapatkan file",
|
||||
"file_attached": "File Dilampirkan",
|
||||
"fetching_events": "Mendapatkan peristiwa…",
|
||||
"creating_output": "Membuat keluaran…"
|
||||
"creating_output": "Membuat keluaran…",
|
||||
"processing": "Memproses…",
|
||||
"enter_number_between_min_max": "Masukkan sebuah angka antara %(min)s dan %(max)s",
|
||||
"size_limit_min_max": "Ukuran harus sebuah angka antara %(min)s MB dan %(max)s MB",
|
||||
"num_messages_min_max": "Jumlah pesan hanya boleh antara %(min)s dan %(max)s",
|
||||
"num_messages": "Jumlah pesan",
|
||||
"cancelled": "Ekspor Dibatalkan",
|
||||
"cancelled_detail": "Ekspor berhasil dibatalkan",
|
||||
"successful": "Ekspor Berhasil",
|
||||
"successful_detail": "Ekspor Anda berhasil. Temukan di folder Unduhan Anda.",
|
||||
"confirm_stop": "Apakah Anda yakin Anda ingin menghentikan mengekspor data Anda? Jika iya, Anda harus mulai lagi dari awal.",
|
||||
"exporting_your_data": "Mengekspor data Anda",
|
||||
"title": "Ekspor Obrolan",
|
||||
"select_option": "Pilih dari opsi di bawah untuk mengekspor obrolan dari lini masa Anda",
|
||||
"format": "Format",
|
||||
"messages": "Pesan",
|
||||
"size_limit": "Batas Ukuran",
|
||||
"include_attachments": "Tambahkan Lampiran"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Buat sebuah ruangan video",
|
||||
|
@ -4014,7 +3975,6 @@
|
|||
"unsupported": "Panggilan tidak didukung",
|
||||
"unsupported_browser": "Anda tidak dapat membuat panggilan di browser ini."
|
||||
},
|
||||
"Messages": "Pesan",
|
||||
"Other": "Lainnya",
|
||||
"Advanced": "Tingkat Lanjut",
|
||||
"room_settings": {
|
||||
|
@ -4102,5 +4062,53 @@
|
|||
"spaceinvaders_message": "mengirim penjajah luar angkasa",
|
||||
"hearts_description": "Kirim pesan dengan hati",
|
||||
"hearts_message": "mengirim hati"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Anda tidak diizinkan untuk mengundang orang-orang ke space ini",
|
||||
"error_no_permission_create_room": "Anda tidak memiliki izin untuk membuat ruangan baru di space ini",
|
||||
"error_no_permission_add_room": "Anda tidak memiliki izin untuk menambahkan ruangan di space ini",
|
||||
"error_no_permission_add_space": "Anda tidak memiliki izin untuk menambahkan space ke space ini"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Lanjutkan dengan %(provider)s",
|
||||
"sign_in_with_sso": "Masuk dengan single sign on",
|
||||
"sso": "Single Sign On",
|
||||
"reset_password_action": "Atur ulang kata sandi",
|
||||
"reset_password_title": "Atur ulang kata sandi Anda"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Tampilkan ruangan dengan pesan yang belum dibaca dahulu",
|
||||
"show_previews": "Tampilkan tampilan pesan",
|
||||
"sort_by": "Sortir berdasarkan",
|
||||
"sort_by_activity": "Aktivitas",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Tampilkan daftar opsi",
|
||||
"show_n_more": {
|
||||
"one": "Tampilkan %(count)s lagi",
|
||||
"other": "Tampilkan %(count)s lagi"
|
||||
},
|
||||
"show_less": "Tampilkan lebih sedikit",
|
||||
"notification_options": "Opsi notifikasi"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Mohon isi kenapa Anda melaporkan.",
|
||||
"unable_create_room_moderation_bot": "Tidak dapat membuat ruangan dengan bot moderasi",
|
||||
"ignore_user": "Abaikan pengguna",
|
||||
"hide_messages_from_user": "Periksa jika Anda ingin menyembunyikan semua pesan saat ini dan pesan baru dari pengguna ini.",
|
||||
"nature_disagreement": "Apa yang ditulis pengguna itu salah.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"nature_toxic": "Pengguna ini menampilkan kelakuan yang toksik, misalnya dengan menghina pengguna lain atau membagikan konten dewasa di ruangan ramah keluarga atau merusak aturan ruangan.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"nature_illegal": "Pengguna ini menampilkan kelakuan yang ilegal, misalnya dengan doxing orang lain atau ancaman kekerasan.\nIni akan dilaporkan ke moderator ruangan yang mungkin melaporkannya juga ke otoritas hukum.",
|
||||
"nature_spam": "Pengguna ini spam ruangan dengan iklan, tautan ke iklan atau ke propaganda.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"report_to_homeserver_encrypted": "Ruangan ini khusus untuk konten ilegal atau toxic atau moderator gagal untuk memoderasikan konten ilegal atau toxic.\nIni akan dilaporkan ke administrator %(homeserver)s. Administrator TIDAK akan dapat membaca konten yang terenkripsi di ruangan ini.",
|
||||
"report_to_homeserver": "Ruangan ini khusus untuk konten ilegal atau toksik atau moderator gagal untuk memoderasikan konten ilegal atau toksik.\nIni akan dilaporkan ke administrator %(homeserver)s.",
|
||||
"nature_other": "Alasan yang lain. Mohon jelaskan masalahnya.\nIni akan dilaporkan ke moderator ruangan.",
|
||||
"nature": "Harap pilih sifat dan jelaskan apa yang membuat pesan ini kasar.",
|
||||
"disagree": "Tidak Setuju",
|
||||
"toxic_behaviour": "Kelakukan Toxic",
|
||||
"illegal_content": "Konten Ilegal",
|
||||
"spam_or_propaganda": "Spam atau propaganda",
|
||||
"report_entire_room": "Laporkan seluruh ruangan",
|
||||
"report_content_to_homeserver": "Laporkan Konten ke Administrator Homeserver Anda",
|
||||
"description": "Melaporkan pesan ini akan mengirimkan ID peristiwa yang untuk ke administrator homeserver Anda. Jika pesan-pesan di ruangan ini terenkripsi, maka administrator homeserver Anda tidak akan dapat membaca teks pesan atau menampilkan file atau gambar apa saja."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -224,7 +224,6 @@
|
|||
"Change notification settings": "Breytta tilkynningastillingum",
|
||||
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "Þú getur ekki sent nein skilaboð fyrr en þú hefur farið yfir og samþykkir <consentLink>skilmála okkar</consentLink>.",
|
||||
"Send a Direct Message": "Senda bein skilaboð",
|
||||
"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.": "Tilkynning um þessi skilaboð mun senda einstakt 'atviksauðkenni' til stjórnanda heimaþjóns. Ef skilaboð í þessari spjallrás eru dulrituð getur stjórnandi heimaþjóns ekki lesið skilaboðatextann eða skoðað skrár eða myndir.",
|
||||
"Send as message": "Senda sem skilaboð",
|
||||
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Þú getur notað <code>/help</code> til að lista tilteknar skipanir. Ætlaðir þú að senda þetta sem skilaboð?",
|
||||
"Never send encrypted messages to unverified sessions in this room from this session": "Aldrei senda dulrituð skilaboð af þessu tæki til ósannvottaðra tækja á þessari spjallrás úr þessari setu",
|
||||
|
@ -347,10 +346,8 @@
|
|||
"%(duration)sh": "%(duration)sklst",
|
||||
"%(duration)sm": "%(duration)sm",
|
||||
"%(duration)ss": "%(duration)ss",
|
||||
"Show less": "Sýna minna",
|
||||
"Message deleted on %(date)s": "Skilaboð eytt á %(date)s",
|
||||
"Message edits": "Breytingar á skilaboðum",
|
||||
"List options": "Lista valkosti",
|
||||
"Create a Group Chat": "Búa til hópspjall",
|
||||
"Explore Public Rooms": "Kanna almenningsspjallrásir",
|
||||
"Explore public rooms": "Kanna almenningsspjallrásir",
|
||||
|
@ -641,7 +638,6 @@
|
|||
"Answered Elsewhere": "Svarað annars staðar",
|
||||
"The user you called is busy.": "Notandinn sem þú hringdir í er upptekinn.",
|
||||
"User Busy": "Notandi upptekinn",
|
||||
"Single Sign On": "Einföld innskráning (single-sign-on)",
|
||||
"Use Single Sign On to continue": "Notaðu einfalda innskráningu (single-sign-on) til að halda áfram",
|
||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s eða %(usernamePassword)s",
|
||||
"Someone already has that username, please try another.": "Einhver annar er að nota þetta notandanafn, prófaðu eitthvað annað.",
|
||||
|
@ -695,7 +691,6 @@
|
|||
"Enter email address": "Skrifaðu netfang",
|
||||
"This room is public": "Þessi spjallrás er opinber",
|
||||
"Avatar": "Auðkennismynd",
|
||||
"Join the beta": "Taka þátt í Beta-prófunum",
|
||||
"Move right": "Færa til hægri",
|
||||
"Move left": "Færa til vinstri",
|
||||
"Manage & explore rooms": "Sýsla með og kanna spjallrásir",
|
||||
|
@ -738,8 +733,6 @@
|
|||
"Sent": "Sent",
|
||||
"Sending": "Sendi",
|
||||
"Comment": "Athugasemd",
|
||||
"Format": "Snið",
|
||||
"Export Successful": "Útflutningur tókst",
|
||||
"MB": "MB",
|
||||
"Public space": "Opinbert svæði",
|
||||
"Private space (invite only)": "Einkasvæði (einungis gegn boði)",
|
||||
|
@ -751,7 +744,6 @@
|
|||
"Add existing rooms": "Bæta við fyrirliggjandi spjallrásum",
|
||||
"Server name": "Heiti þjóns",
|
||||
"Looks good": "Lítur vel út",
|
||||
"QR Code": "QR-kóði",
|
||||
"Create options": "Búa til valkosti",
|
||||
"Information": "Upplýsingar",
|
||||
"Rotate Right": "Snúa til hægri",
|
||||
|
@ -782,15 +774,7 @@
|
|||
"Stop recording": "Stöðva upptöku",
|
||||
"No microphone found": "Enginn hljóðnemi fannst",
|
||||
"Mark all as read": "Merkja allt sem lesið",
|
||||
"Unread messages.": "Ólesin skilaboð.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 ólesin skilaboð.",
|
||||
"other": "%(count)s ólesin skilaboð."
|
||||
},
|
||||
"Copy room link": "Afrita tengil spjallrásar",
|
||||
"A-Z": "A-Ö",
|
||||
"Activity": "Virkni",
|
||||
"Sort by": "Raða eftir",
|
||||
"%(roomName)s does not exist.": "%(roomName)s er ekki til.",
|
||||
"Do you want to join %(roomName)s?": "Viltu taka þátt í %(roomName)s?",
|
||||
"Start chatting": "Hefja spjall",
|
||||
|
@ -919,7 +903,6 @@
|
|||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Reyndi að hlaða inn tilteknum punkti úr tímalínu þessarar spjallrásar, en tókst ekki að finna þetta.",
|
||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Reyndi að hlaða inn tilteknum punkti úr tímalínu þessarar spjallrásar, en þú ert ekki með heimild til að skoða tilteknu skilaboðin.",
|
||||
"See room timeline (devtools)": "Skoða tímalínu spjallrásar (forritaratól)",
|
||||
"Select from the options below to export chats from your timeline": "Veldu úr valkostunum hér fyrir neðan til að flytja spjall út úr tímalínunni þinni",
|
||||
"Video conference started by %(senderName)s": "Myndfjarfundur hafinn af %(senderName)s",
|
||||
"Video conference updated by %(senderName)s": "Myndfjarfundur uppfærður af %(senderName)s",
|
||||
"Video conference ended by %(senderName)s": "Myndfjarfundi lokið af %(senderName)s",
|
||||
|
@ -1035,7 +1018,6 @@
|
|||
"Add a new server": "Bæta við nýjum þjóni",
|
||||
"Your server": "Netþjónninn þinn",
|
||||
"Can't find this server or its room list": "Fann ekki þennan netþjón eða spjallrásalista hans",
|
||||
"Sign in with single sign-on": "Skrá inn með einfaldri innskráningu (single sign-on)",
|
||||
"This address is already in use": "Þetta vistfang er nú þegar í notkun",
|
||||
"Open poll": "Opna könnun",
|
||||
"Poll type": "Tegund könnunar",
|
||||
|
@ -1059,7 +1041,6 @@
|
|||
"Empty room": "Tóm spjallrás",
|
||||
"Suggested Rooms": "Tillögur að spjallrásum",
|
||||
"Add people": "Bæta við fólki",
|
||||
"You do not have permissions to invite people to this space": "Þú hefur ekki heimild til að bjóða fólk á þetta svæði",
|
||||
"Invite to space": "Bjóða inn á svæði",
|
||||
"Start new chat": "Hefja nýtt spjall",
|
||||
"Show Widgets": "Sýna viðmótshluta",
|
||||
|
@ -1182,13 +1163,6 @@
|
|||
"Cannot reach homeserver": "Næ ekki að tengjast heimaþjóni",
|
||||
"Could not find user in room": "Gat ekki fundið notanda á spjallrás",
|
||||
"Favourited": "Í eftirlætum",
|
||||
"Notification options": "Valkostir tilkynninga",
|
||||
"Show %(count)s more": {
|
||||
"one": "Birta %(count)s til viðbótar",
|
||||
"other": "Birta %(count)s til viðbótar"
|
||||
},
|
||||
"Show previews of messages": "Sýna forskoðun skilaboða",
|
||||
"Show rooms with unread messages first": "Birta spjallrásir með ólesnum skilaboðum fyrst",
|
||||
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Svæði eru ný leið til að hópa fólk og spjallrásir. Hverskyns svæði langar þig til að útbúa? Þessu má breyta síðar.",
|
||||
"Spanner": "Skrúflykill",
|
||||
"Waiting for %(displayName)s to verify…": "Bíð eftir að %(displayName)s sannreyni…",
|
||||
|
@ -1200,7 +1174,6 @@
|
|||
"Other homeserver": "Annar heimaþjónn",
|
||||
"Sign into your homeserver": "Skráðu þig inn á heimaþjóninn þinn",
|
||||
"Unable to validate homeserver": "Ekki tókst að sannreyna heimaþjón",
|
||||
"Report Content to Your Homeserver Administrator": "Kæra efni til kerfisstjóra heimaþjónsins þíns",
|
||||
"Your homeserver": "Heimaþjónninn þinn",
|
||||
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Stilltu vistföng fyrir þessa spjallrás svo notendur geti fundið hana í gegnum heimaþjóninn þinn (%(localDomain)s)",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Stilltu vistföng fyrir þetta svæði svo notendur geti fundið það í gegnum heimaþjóninn þinn (%(localDomain)s)",
|
||||
|
@ -1514,11 +1487,6 @@
|
|||
"You're all caught up.": "Þú hefur klárað að lesa allt.",
|
||||
"Upgrade public room": "Uppfæra almenningsspjallrás",
|
||||
"Upgrade private room": "Uppfæra einkaspjallrás",
|
||||
"Report the entire room": "Kæra alla spjallrásina",
|
||||
"Spam or propaganda": "Ruslpóstur eða áróður",
|
||||
"Illegal Content": "Ólöglegt efni",
|
||||
"Toxic Behaviour": "Eitruð hegðun",
|
||||
"Disagree": "Ósammála",
|
||||
"Verify session": "Sannprófa setu",
|
||||
"Search spaces": "Leita að svæðum",
|
||||
"%(count)s members": {
|
||||
|
@ -1535,11 +1503,6 @@
|
|||
"Invite by email": "Bjóða með tölvupósti",
|
||||
"Search for rooms or people": "Leita að spjallrásum eða fólki",
|
||||
"You don't have permission to do this": "Þú hefur ekki heimildir til að gera þetta",
|
||||
"Include Attachments": "Hafa með viðhengi",
|
||||
"Size Limit": "Stærðarmörk",
|
||||
"Export Cancelled": "Hætt við útflutning",
|
||||
"Number of messages": "Fjöldi skilaboða",
|
||||
"Enter a number between %(min)s and %(max)s": "Settu inn tölu á milli %(min)s og %(max)s",
|
||||
"End Poll": "Ljúka könnun",
|
||||
"Sorry, the poll did not end. Please try again.": "Því miður, könnuninni lauk ekki. Prófaðu aftur.",
|
||||
"Failed to end poll": "Mistókst að ljúka könnun",
|
||||
|
@ -1559,7 +1522,6 @@
|
|||
"Sorry, the poll you tried to create was not posted.": "Því miður, könnunin sem þú varst að reyna að útbúa birtist ekki.",
|
||||
"Joined": "Gekk í hópinn",
|
||||
"Enter a server name": "Settu inn nafn á þjóni",
|
||||
"Continue with %(provider)s": "Halda áfram með %(provider)s",
|
||||
"e.g. my-room": "t.d. mín-spjallrás",
|
||||
"Room address": "Vistfang spjallrásar",
|
||||
"In reply to <a>this message</a>": "Sem svar við <a>þessum skilaboðum</a>",
|
||||
|
@ -1676,7 +1638,6 @@
|
|||
"Add a photo so people know it's you.": "Bættu við mynd, svo fólk viti að þetta sért þú.",
|
||||
"Confirm your identity by entering your account password below.": "Staðfestu auðkennin þín með því að setja inn hér fyrir neðan lykilorðið á aðganginn þinn.",
|
||||
"Country Dropdown": "Fellilisti með löndum",
|
||||
"Click for more info": "Smelltu til að sjá frekari upplýsingar",
|
||||
"Collapse reply thread": "Fella saman svarþráð",
|
||||
"Enter Security Phrase": "Settu inn öryggisfrasa",
|
||||
"Click the button below to confirm setting up encryption.": "Smelltu á hnappinn hér að neðan til að staðfesta uppsetningu á dulritun.",
|
||||
|
@ -1704,10 +1665,6 @@
|
|||
"other": "%(count)s svör"
|
||||
},
|
||||
"Add some now": "Bæta við núna",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 ólesin tilvísun í þig.",
|
||||
"other": "%(count)s ólesin skilaboð að meðtöldum þar sem minnst er á þig."
|
||||
},
|
||||
"%(roomName)s is not accessible at this time.": "%(roomName)s er ekki aðgengileg í augnablikinu.",
|
||||
"Do you want to chat with %(user)s?": "Viltu spjalla við %(user)s?",
|
||||
"Add space": "Bæta við svæði",
|
||||
|
@ -1751,8 +1708,6 @@
|
|||
"Failed to decrypt %(failedCount)s sessions!": "Mistókst að afkóða %(failedCount)s setur!",
|
||||
"Find others by phone or email": "Finndu aðra með símanúmeri eða tölvupóstfangi",
|
||||
"Failed to upgrade room": "Mistókst að uppfæra spjallrás",
|
||||
"Export Chat": "Flytja út spjall",
|
||||
"Exporting your data": "Útflutningur gagnanna þinna",
|
||||
"Error - Mixed content": "Villa - blandað efni",
|
||||
"Error loading Widget": "Villa við að hlaða inn viðmótshluta",
|
||||
"Failed to fetch your location. Please try again later.": "Mistókst að sækja staðsetninguna þína. Reyndu aftur síðar.",
|
||||
|
@ -1778,7 +1733,6 @@
|
|||
"Sign in with SSO": "Skrá inn með einfaldri innskráningu (SSO)",
|
||||
"Token incorrect": "Rangt teikn",
|
||||
"You are sharing your live location": "Þú ert að deila staðsetninu þinni í rauntíma",
|
||||
"This is a beta feature": "Þetta er beta-prófunareiginleiki",
|
||||
"Revoke permissions": "Afturkalla heimildir",
|
||||
"Take a picture": "Taktu mynd",
|
||||
"Start audio stream": "Hefja hljóðstreymi",
|
||||
|
@ -1836,7 +1790,6 @@
|
|||
"Phone (optional)": "Sími (valfrjálst)",
|
||||
"Password is allowed, but unsafe": "Lykilorð er leyfilegt, en óöruggt",
|
||||
"Nice, strong password!": "Fínt, sterkt lykilorð!",
|
||||
"Leave the beta": "Fara út úr Beta-prófunarútgáfu",
|
||||
"Keys restored": "Dulritunarlyklar endurheimtir",
|
||||
"No backup found!": "Ekkert öryggisafrit fannst!",
|
||||
"Incorrect Security Phrase": "Rangur öryggisfrasi",
|
||||
|
@ -1851,7 +1804,6 @@
|
|||
"Invite someone using their name, username (like <userId/>) or <a>share this space</a>.": "Bjóddu einhverjum með því að nota nafn, notandanafn (eins og <userId/>) eða <a>deildu þessu svæði</a>.",
|
||||
"Invite someone using their name, email address, username (like <userId/>) or <a>share this space</a>.": "Bjóddu einhverjum með því að nota nafn, tölvupóstfang, notandanafn (eins og <userId/>) eða <a>deildu þessu svæði</a>.",
|
||||
"Or send invite link": "Eða senda boðstengil",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Fjöldi skilaboða getur aðeins verið tala á milli %(min)s og %(max)s",
|
||||
"Incompatible Database": "Ósamhæfður gagnagrunnur",
|
||||
"No recent messages by %(user)s found": "Engin nýleg skilaboð frá %(user)s fundust",
|
||||
"Not all selected were added": "Ekki var öllu völdu bætt við",
|
||||
|
@ -1881,9 +1833,6 @@
|
|||
"one": "Er núna að ganga til liðs við %(count)s spjallrás",
|
||||
"other": "Er núna að ganga til liðs við %(count)s spjallrásir"
|
||||
},
|
||||
"You do not have permissions to add spaces to this space": "Þú hefur ekki heimild til að bæta svæðum í þetta svæði",
|
||||
"You do not have permissions to add rooms to this space": "Þú hefur ekki heimild til að bæta spjallrásum í þetta svæði",
|
||||
"You do not have permissions to create new rooms in this space": "Þú hefur ekki heimild til að búa til nýjar spjallrásir í þessu svæði",
|
||||
"<a>Add a topic</a> to help people know what it is about.": "<a>Bættu við umfjöllunarefni</a> svo fólk viti að um hvað málin snúist.",
|
||||
"Unable to verify this device": "Tókst ekki að sannreyna þetta tæki",
|
||||
"Scroll to most recent messages": "Skruna að nýjustu skilaboðunum",
|
||||
|
@ -2038,13 +1987,6 @@
|
|||
"You are about to leave <spaceName/>.": "Þú ert í þann mund að yfirgefa <spaceName/>.",
|
||||
"Automatically invite members from this room to the new one": "Bjóða meðlimum á þessari spjallrás sjálfvirkt yfir í þá nýju",
|
||||
"Create a new room with the same name, description and avatar": "Búa til nýja spjallrás með sama heiti, lýsingu og auðkennismynd",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Veldu ástæðu og lýstu því hvað gerir þessi skilaboð ótæk.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Einhver önnur ástæða. Lýstu vandamálinu.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Þessi spjallrás er tileinkuð ólöglegu eða eitruðu efni eða skorti á viðbrögðum umsjónarmanna gagnvart ólöglegu eða eitruðu efni.\nÞetta verður tilkynnt til stjórnenda %(homeserver)s. Kerfisstjórarnir geta EKKI LESIÐ dulritað efni þessarar spjallrásar.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Þessi notandi er að dreifa auglýsingum inn á spjallrásina, tenglum á auglýsingar eða áróður.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Þessi notandi er að sýna ólöglega hegðun, til dæmis með því að hrella aðra notendur eða hóta ofbeldi.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar, sem gætu þurft að tilkynna þetta til viðeigandi yfirvalda.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Það sem notandinn er að skrifa sem er rangt.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"Please fill why you're reporting.": "Fylltu út skýringu á því hvers vegna þú ert að kæra.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Bara til að minna á; ef þú gleymir lykilorðinu þínu, <b>þá er engin leið til að endurheimta aðganginn þinn</b>.",
|
||||
"Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Óþekkt pörun (notandi, seta): (%(userId)s, %(deviceId)s)",
|
||||
"See when the avatar changes in your active room": "Sjá þegar auðkennismynd virku spjallrásarinnar þinnar breytist",
|
||||
|
@ -2203,7 +2145,6 @@
|
|||
"one": "%(count)s meðlimur",
|
||||
"other": "%(count)s meðlimir"
|
||||
},
|
||||
"Ignore user": "Hunsa notanda",
|
||||
"Add new server…": "Bæta við nýjum þjóni…",
|
||||
"%(count)s participants": {
|
||||
"one": "1 þáttakandi",
|
||||
|
@ -2241,11 +2182,6 @@
|
|||
"Proxy URL (optional)": "Slóð milliþjóns (valfrjálst)",
|
||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Notaðu auðkennisþjón til að geta boðið með tölvupósti. <default>Notaðu sjálfgefinn auðkennisþjón (%(defaultIdentityServerName)s(</default> eða sýslaðu með þetta í <settings>stillingunum</settings>.",
|
||||
"Open room": "Opin spjallrás",
|
||||
"Get it on F-Droid": "Ná í á F-Droid",
|
||||
"Get it on Google Play": "Ná í á Google Play",
|
||||
"Download on the App Store": "Sækja á App Store forritasafni",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s eða %(appLinks)s",
|
||||
"Download %(brand)s Desktop": "Sækja %(brand)s Desktop fyrir vinnutölvur",
|
||||
"Show: Matrix rooms": "Birta: Matrix-spjallrásir",
|
||||
"Remove server “%(roomServer)s”": "Fjarlægja netþjóninn “%(roomServer)s”",
|
||||
"Online community members": "Meðlimi samfélags á netinu",
|
||||
|
@ -2325,23 +2261,18 @@
|
|||
"Sign out of this session": "Skrá út úr þessari setu",
|
||||
"Receive push notifications on this session.": "Taka á móti ýti-tilkynningum á þessu tæki.",
|
||||
"Toggle push notifications on this session.": "Víxla af/á ýti-tilkynningum á þessu tæki.",
|
||||
"Download %(brand)s": "Sækja %(brand)s",
|
||||
"Start a conversation with someone using their name or username (like <userId/>).": "Byrjaðu samtal með einhverjum með því að nota nafn viðkomandi eða notandanafn (eins og <userId/>).",
|
||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "Byrjaðu samtal með einhverjum með því að nota nafn viðkomandi, tölvupóstfang eða notandanafn (eins og <userId/>).",
|
||||
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Notaðu auðkennisþjón til að geta boðið með tölvupósti. Sýslaðu með þetta í <settings>stillingunum</settings>.",
|
||||
"Something went wrong trying to invite the users.": "Eitthvað fór úrskeiðis við að bjóða notendunum.",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Stærð getur aðeins verið tala á milli %(min)s og %(max)s",
|
||||
"The poll has ended. Top answer: %(topAnswer)s": "Könnuninni er lokið. Efsta svarið: %(topAnswer)s",
|
||||
"You will no longer be able to log in": "Þú munt ekki lengur geta skráð þig inn",
|
||||
"You will not be able to reactivate your account": "Þú munt ekki geta endurvirkjað aðganginn þinn",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play og Google Play táknmerkið eru vörumerki í eigu Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® og Apple logo® eru vörumerki í eigu Apple Inc.",
|
||||
"Using this widget may share data <helpIcon /> with %(widgetDomain)s.": "Að nota þennan viðmótshluta gæti deilt gögnum <helpIcon /> með %(widgetDomain)s.",
|
||||
"Any of the following data may be shared:": "Eftirfarandi gögnum gæti verið deilt:",
|
||||
"You don't have permission to share locations": "Þú hefur ekki heimildir til að deila staðsetningum",
|
||||
"Enable live location sharing": "Virkja deilingu rauntímastaðsetninga",
|
||||
"Messages in this chat will be end-to-end encrypted.": "Skilaboð í þessu spjalli verða enda-í-enda dulrituð.",
|
||||
"Joining the beta will reload %(brand)s.": "Ef tekið er þátt í beta-prófunum verður %(brand)s endurhlaðið.",
|
||||
"If you can't find the room you're looking for, ask for an invite or create a new room.": "Ef þú finnur ekki spjallrásina sem þú leitar að, skaltu biðja um boð eða útbúa nýja spjallrás.",
|
||||
"If you can't see who you're looking for, send them your invite link.": "Ef þú sérð ekki þann sem þú ert að leita að, ættirðu að senda viðkomandi boðstengil.",
|
||||
"Some results may be hidden for privacy": "Sumar niðurstöður gætu verið faldar þar sem þær eru einkamál",
|
||||
|
@ -2395,8 +2326,6 @@
|
|||
"You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "Þú hefur verið skráður út úr öllum tækjum og munt ekki lengur fá ýti-tilkynningar. Til að endurvirkja tilkynningar, þarf að skrá sig aftur inn á hverju tæki fyrir sig.",
|
||||
"Sign out of all devices": "Skrá út af öllum tækjum",
|
||||
"Confirm new password": "Staðfestu nýja lykilorðið",
|
||||
"Reset your password": "Endurstilltu lykilorðið þitt",
|
||||
"Reset password": "Endurstilla lykilorð",
|
||||
"Waiting for device to sign in": "Bíð eftir að tækið skráist inn",
|
||||
"Review and approve the sign in": "Yfirfarðu og samþykktu innskráninguna",
|
||||
"The scanned code is invalid.": "Skannaði kóðinn er ógildur.",
|
||||
|
@ -2580,7 +2509,8 @@
|
|||
"secure_backup": "Varið öryggisafrit",
|
||||
"cross_signing": "Kross-undirritun",
|
||||
"identity_server": "Auðkennisþjónn",
|
||||
"integration_manager": "Samþættingarstýring"
|
||||
"integration_manager": "Samþættingarstýring",
|
||||
"qr_code": "QR-kóði"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Halda áfram",
|
||||
|
@ -2681,7 +2611,16 @@
|
|||
"clear": "Hreinsa"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Valmynd notandans"
|
||||
"user_menu": "Valmynd notandans",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 ólesin tilvísun í þig.",
|
||||
"other": "%(count)s ólesin skilaboð að meðtöldum þar sem minnst er á þig."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 ólesin skilaboð.",
|
||||
"other": "%(count)s ólesin skilaboð."
|
||||
},
|
||||
"unread_messages": "Ólesin skilaboð."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Myndspjallrásir",
|
||||
|
@ -2720,7 +2659,12 @@
|
|||
"group_themes": "Þemu",
|
||||
"group_encryption": "Dulritun",
|
||||
"group_experimental": "Á tilraunastigi",
|
||||
"group_developer": "Forritari"
|
||||
"group_developer": "Forritari",
|
||||
"beta_feature": "Þetta er beta-prófunareiginleiki",
|
||||
"click_for_info": "Smelltu til að sjá frekari upplýsingar",
|
||||
"join_beta_reload": "Ef tekið er þátt í beta-prófunum verður %(brand)s endurhlaðið.",
|
||||
"leave_beta": "Fara út úr Beta-prófunarútgáfu",
|
||||
"join_beta": "Taka þátt í Beta-prófunum"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Forsíða",
|
||||
|
@ -2839,7 +2783,15 @@
|
|||
"enable_notifications": "Kveikja á tilkynningum",
|
||||
"download_app_description": "Ekki missa af neinu og taktu %(brand)s með þér",
|
||||
"download_app_action": "Sækja forrit",
|
||||
"download_app": "Sækja %(brand)s"
|
||||
"download_app": "Sækja %(brand)s",
|
||||
"download_brand": "Sækja %(brand)s",
|
||||
"download_brand_desktop": "Sækja %(brand)s Desktop fyrir vinnutölvur",
|
||||
"qr_or_app_links": "%(qrCode)s eða %(appLinks)s",
|
||||
"download_app_store": "Sækja á App Store forritasafni",
|
||||
"download_google_play": "Ná í á Google Play",
|
||||
"download_f_droid": "Ná í á F-Droid",
|
||||
"apple_trademarks": "App Store® og Apple logo® eru vörumerki í eigu Apple Inc.",
|
||||
"google_trademarks": "Google Play og Google Play táknmerkið eru vörumerki í eigu Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Sýna flýtileiðir í nýskoðaðar spjallrásir fyrir ofan listann yfir spjallrásir",
|
||||
|
@ -3016,7 +2968,20 @@
|
|||
"export_info": "Þetta er upphaf útflutning á <roomName/>. Var flutt út af <exporterDetails/> þann %(exportDate)s.",
|
||||
"topic": "Umfjöllunarefni: %(topic)s",
|
||||
"error_fetching_file": "Villa við að sækja skrá",
|
||||
"file_attached": "Viðhengd skrá"
|
||||
"file_attached": "Viðhengd skrá",
|
||||
"enter_number_between_min_max": "Settu inn tölu á milli %(min)s og %(max)s",
|
||||
"size_limit_min_max": "Stærð getur aðeins verið tala á milli %(min)s og %(max)s",
|
||||
"num_messages_min_max": "Fjöldi skilaboða getur aðeins verið tala á milli %(min)s og %(max)s",
|
||||
"num_messages": "Fjöldi skilaboða",
|
||||
"cancelled": "Hætt við útflutning",
|
||||
"successful": "Útflutningur tókst",
|
||||
"exporting_your_data": "Útflutningur gagnanna þinna",
|
||||
"title": "Flytja út spjall",
|
||||
"select_option": "Veldu úr valkostunum hér fyrir neðan til að flytja spjall út úr tímalínunni þinni",
|
||||
"format": "Snið",
|
||||
"messages": "Skilaboð",
|
||||
"size_limit": "Stærðarmörk",
|
||||
"include_attachments": "Hafa með viðhengi"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Búa til myndspjallrás",
|
||||
|
@ -3397,7 +3362,6 @@
|
|||
"unsupported": "Ekki er stuðningur við símtöl",
|
||||
"unsupported_browser": "Þú getur ekki hringt símtöl í þessum vafra."
|
||||
},
|
||||
"Messages": "Skilaboð",
|
||||
"Other": "Annað",
|
||||
"Advanced": "Nánar",
|
||||
"room_settings": {
|
||||
|
@ -3484,5 +3448,49 @@
|
|||
"spaceinvaders_message": "sendir geimverur til árásar",
|
||||
"hearts_description": "Sendir skilaboðin með hjörtum",
|
||||
"hearts_message": "sendir hjörtu"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Þú hefur ekki heimild til að bjóða fólk á þetta svæði",
|
||||
"error_no_permission_create_room": "Þú hefur ekki heimild til að búa til nýjar spjallrásir í þessu svæði",
|
||||
"error_no_permission_add_room": "Þú hefur ekki heimild til að bæta spjallrásum í þetta svæði",
|
||||
"error_no_permission_add_space": "Þú hefur ekki heimild til að bæta svæðum í þetta svæði"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Halda áfram með %(provider)s",
|
||||
"sign_in_with_sso": "Skrá inn með einfaldri innskráningu (single sign-on)",
|
||||
"sso": "Einföld innskráning (single-sign-on)",
|
||||
"reset_password_action": "Endurstilla lykilorð",
|
||||
"reset_password_title": "Endurstilltu lykilorðið þitt"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Birta spjallrásir með ólesnum skilaboðum fyrst",
|
||||
"show_previews": "Sýna forskoðun skilaboða",
|
||||
"sort_by": "Raða eftir",
|
||||
"sort_by_activity": "Virkni",
|
||||
"sort_by_alphabet": "A-Ö",
|
||||
"sublist_options": "Lista valkosti",
|
||||
"show_n_more": {
|
||||
"one": "Birta %(count)s til viðbótar",
|
||||
"other": "Birta %(count)s til viðbótar"
|
||||
},
|
||||
"show_less": "Sýna minna",
|
||||
"notification_options": "Valkostir tilkynninga"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Fylltu út skýringu á því hvers vegna þú ert að kæra.",
|
||||
"ignore_user": "Hunsa notanda",
|
||||
"nature_disagreement": "Það sem notandinn er að skrifa sem er rangt.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"nature_illegal": "Þessi notandi er að sýna ólöglega hegðun, til dæmis með því að hrella aðra notendur eða hóta ofbeldi.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar, sem gætu þurft að tilkynna þetta til viðeigandi yfirvalda.",
|
||||
"nature_spam": "Þessi notandi er að dreifa auglýsingum inn á spjallrásina, tenglum á auglýsingar eða áróður.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"report_to_homeserver_encrypted": "Þessi spjallrás er tileinkuð ólöglegu eða eitruðu efni eða skorti á viðbrögðum umsjónarmanna gagnvart ólöglegu eða eitruðu efni.\nÞetta verður tilkynnt til stjórnenda %(homeserver)s. Kerfisstjórarnir geta EKKI LESIÐ dulritað efni þessarar spjallrásar.",
|
||||
"nature_other": "Einhver önnur ástæða. Lýstu vandamálinu.\nÞetta verður tilkynnt til umsjónarmanna spjallrásarinnar.",
|
||||
"nature": "Veldu ástæðu og lýstu því hvað gerir þessi skilaboð ótæk.",
|
||||
"disagree": "Ósammála",
|
||||
"toxic_behaviour": "Eitruð hegðun",
|
||||
"illegal_content": "Ólöglegt efni",
|
||||
"spam_or_propaganda": "Ruslpóstur eða áróður",
|
||||
"report_entire_room": "Kæra alla spjallrásina",
|
||||
"report_content_to_homeserver": "Kæra efni til kerfisstjóra heimaþjónsins þíns",
|
||||
"description": "Tilkynning um þessi skilaboð mun senda einstakt 'atviksauðkenni' til stjórnanda heimaþjóns. Ef skilaboð í þessari spjallrás eru dulrituð getur stjórnandi heimaþjóns ekki lesið skilaboðatextann eða skoðað skrár eða myndir."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -402,7 +402,6 @@
|
|||
"Failed to decrypt %(failedCount)s sessions!": "Decifrazione di %(failedCount)s sessioni fallita!",
|
||||
"Failed to perform homeserver discovery": "Ricerca dell'homeserver fallita",
|
||||
"Invalid homeserver discovery response": "Risposta della ricerca homeserver non valida",
|
||||
"Sign in with single sign-on": "Accedi con single sign-on",
|
||||
"That matches!": "Corrisponde!",
|
||||
"That doesn't match.": "Non corrisponde.",
|
||||
"Go back to set it again.": "Torna per reimpostare.",
|
||||
|
@ -756,19 +755,8 @@
|
|||
"Topic (optional)": "Argomento (facoltativo)",
|
||||
"Hide advanced": "Nascondi avanzate",
|
||||
"Show advanced": "Mostra avanzate",
|
||||
"Please fill why you're reporting.": "Inserisci il motivo della segnalazione.",
|
||||
"Report Content to Your Homeserver Administrator": "Segnala il contenuto all'amministratore dell'homeserver",
|
||||
"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.": "La segnalazione di questo messaggio invierà il suo 'ID evento' univoco all'amministratore del tuo homeserver. Se i messaggi della stanza sono cifrati, l'amministratore non potrà leggere il messaggio o vedere file e immagini.",
|
||||
"Explore rooms": "Esplora stanze",
|
||||
"Clear cache and reload": "Svuota la cache e ricarica",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s messaggi non letti incluse le citazioni.",
|
||||
"one": "1 citazione non letta."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s messaggi non letti.",
|
||||
"one": "1 messaggio non letto."
|
||||
},
|
||||
"Show image": "Mostra immagine",
|
||||
"To continue you need to accept the terms of this service.": "Per continuare devi accettare le condizioni di servizio.",
|
||||
"Document": "Documento",
|
||||
|
@ -797,7 +785,6 @@
|
|||
"Jump to first invite.": "Salta al primo invito.",
|
||||
"Command Autocomplete": "Autocompletamento comando",
|
||||
"Room %(name)s": "Stanza %(name)s",
|
||||
"Unread messages.": "Messaggi non letti.",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "Questa azione richiede l'accesso al server di identità predefinito <server /> per verificare un indirizzo email o numero di telefono, ma il server non ha termini di servizio.",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
"My Ban List": "Mia lista ban",
|
||||
|
@ -916,7 +903,6 @@
|
|||
"Enable message search in encrypted rooms": "Attiva la ricerca messaggi nelle stanze cifrate",
|
||||
"Waiting for %(displayName)s to verify…": "In attesa della verifica da %(displayName)s …",
|
||||
"This bridge was provisioned by <user />.": "Questo bridge è stato fornito da <user />.",
|
||||
"Show less": "Mostra meno",
|
||||
"Securely cache encrypted messages locally for them to appear in search results.": "Tieni in cache localmente i messaggi cifrati in modo sicuro affinché appaiano nei risultati di ricerca.",
|
||||
"%(brand)s is missing some components required for securely caching encrypted messages locally. If you'd like to experiment with this feature, build a custom %(brand)s Desktop with <nativeLink>search components added</nativeLink>.": "A %(brand)s mancano alcuni componenti richiesti per tenere in cache i messaggi cifrati in modo sicuro. Se vuoi sperimentare questa funzionalità, compila un %(brand)s Desktop personale con <nativeLink>i componenti di ricerca aggiunti</nativeLink>.",
|
||||
"Verifies a user, session, and pubkey tuple": "Verifica un utente, una sessione e una tupla pubblica",
|
||||
|
@ -1063,7 +1049,6 @@
|
|||
"Sign in with SSO": "Accedi con SSO",
|
||||
"Use Single Sign On to continue": "Usa Single Sign On per continuare",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Conferma aggiungendo questa email usando Single Sign On per provare la tua identità.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding email": "Conferma aggiungendo email",
|
||||
"Click the button below to confirm adding this email address.": "Clicca il pulsante sotto per confermare l'aggiunta di questa email.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Conferma aggiungendo questo numero di telefono usando Single Sign On per provare la tua identità.",
|
||||
|
@ -1113,7 +1098,6 @@
|
|||
"Click the button below to confirm your identity.": "Clicca il pulsante sotto per confermare la tua identità.",
|
||||
"Confirm encryption setup": "Conferma impostazione crittografia",
|
||||
"Click the button below to confirm setting up encryption.": "Clicca il pulsante sotto per confermare l'impostazione della crittografia.",
|
||||
"QR Code": "Codice QR",
|
||||
"Dismiss read marker and jump to bottom": "Scarta il segno di lettura e salta alla fine",
|
||||
"Jump to oldest unread message": "Salta al messaggio non letto più vecchio",
|
||||
"Upload a file": "Invia un file",
|
||||
|
@ -1147,23 +1131,14 @@
|
|||
"All settings": "Tutte le impostazioni",
|
||||
"Feedback": "Feedback",
|
||||
"No recently visited rooms": "Nessuna stanza visitata di recente",
|
||||
"Sort by": "Ordina per",
|
||||
"Message preview": "Anteprima messaggio",
|
||||
"List options": "Opzioni lista",
|
||||
"Show %(count)s more": {
|
||||
"other": "Mostra altri %(count)s",
|
||||
"one": "Mostra %(count)s altro"
|
||||
},
|
||||
"Room options": "Opzioni stanza",
|
||||
"Activity": "Attività",
|
||||
"A-Z": "A-Z",
|
||||
"Looks good!": "Sembra giusta!",
|
||||
"Use custom size": "Usa dimensione personalizzata",
|
||||
"Hey you. You're the best!": "Ehi tu. Sei il migliore!",
|
||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "L'autenticità di questo messaggio cifrato non può essere garantita su questo dispositivo.",
|
||||
"Message deleted on %(date)s": "Messaggio eliminato il %(date)s",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s non può tenere in cache i messaggi cifrati quando usato in un browser web. Usa <desktopLink>%(brand)s Desktop</desktopLink> affinché i messaggi cifrati appaiano nei risultati di ricerca.",
|
||||
"Notification options": "Opzioni di notifica",
|
||||
"Favourited": "Preferito",
|
||||
"Forget Room": "Dimentica stanza",
|
||||
"Wrong file type": "Tipo di file errato",
|
||||
|
@ -1180,8 +1155,6 @@
|
|||
"Confirm Security Phrase": "Conferma frase di sicurezza",
|
||||
"Save your Security Key": "Salva la tua chiave di sicurezza",
|
||||
"This room is public": "Questa stanza è pubblica",
|
||||
"Show rooms with unread messages first": "Mostra prima le stanze con messaggi non letti",
|
||||
"Show previews of messages": "Mostra anteprime dei messaggi",
|
||||
"Edited at %(date)s": "Modificato il %(date)s",
|
||||
"Click to view edits": "Clicca per vedere le modifiche",
|
||||
"Are you sure you want to cancel entering passphrase?": "Sei sicuro di volere annullare l'inserimento della frase?",
|
||||
|
@ -1604,7 +1577,6 @@
|
|||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Solo un avviso, se non aggiungi un'email e dimentichi la password, potresti <b>perdere permanentemente l'accesso al tuo account</b>.",
|
||||
"Continuing without email": "Continuando senza email",
|
||||
"Reason (optional)": "Motivo (facoltativo)",
|
||||
"Continue with %(provider)s": "Continua con %(provider)s",
|
||||
"Server Options": "Opzioni server",
|
||||
"See <b>%(msgtype)s</b> messages posted to your active room": "Vedi messaggi <b>%(msgtype)s</b> inviati alla tua stanza attiva",
|
||||
"See <b>%(msgtype)s</b> messages posted to this room": "Vedi messaggi <b>%(msgtype)s</b> inviati a questa stanza",
|
||||
|
@ -1708,9 +1680,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Non potrai annullare questa modifica dato che ti stai declassando, se sei l'ultimo utente privilegiato nello spazio sarà impossibile riottenere il grado.",
|
||||
"Empty room": "Stanza vuota",
|
||||
"Suggested Rooms": "Stanze suggerite",
|
||||
"You do not have permissions to add rooms to this space": "Non hai i permessi per aggiungere stanze a questo spazio",
|
||||
"Add existing room": "Aggiungi stanza esistente",
|
||||
"You do not have permissions to create new rooms in this space": "Non hai i permessi per creare stanze in questo spazio",
|
||||
"Invite to this space": "Invita in questo spazio",
|
||||
"Your message was sent": "Il tuo messaggio è stato inviato",
|
||||
"Space options": "Opzioni dello spazio",
|
||||
|
@ -1798,8 +1768,6 @@
|
|||
"What do you want to organise?": "Cosa vuoi organizzare?",
|
||||
"You have no ignored users.": "Non hai utenti ignorati.",
|
||||
"Select a room below first": "Prima seleziona una stanza sotto",
|
||||
"Join the beta": "Unisciti alla beta",
|
||||
"Leave the beta": "Abbandona la beta",
|
||||
"Want to add a new room instead?": "Vuoi invece aggiungere una nuova stanza?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Aggiunta stanza...",
|
||||
|
@ -1846,11 +1814,6 @@
|
|||
"Show preview": "Mostra anteprima",
|
||||
"View source": "Visualizza sorgente",
|
||||
"Settings - %(spaceName)s": "Impostazioni - %(spaceName)s",
|
||||
"Report the entire room": "Segnala l'intera stanza",
|
||||
"Spam or propaganda": "Spam o propaganda",
|
||||
"Illegal Content": "Contenuto illegale",
|
||||
"Toxic Behaviour": "Cattivo comportamento",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Scegli la natura del problema e descrivi cosa rende questo messaggio un abuso.",
|
||||
"Please provide an address": "Inserisci un indirizzo",
|
||||
"This space has no local addresses": "Questo spazio non ha indirizzi locali",
|
||||
"Space information": "Informazioni spazio",
|
||||
|
@ -1865,12 +1828,6 @@
|
|||
"Collapse reply thread": "Riduci conversazione di risposta",
|
||||
"Some invites couldn't be sent": "Alcuni inviti non sono stati spediti",
|
||||
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Abbiamo inviato gli altri, ma non è stato possibile invitare le seguenti persone in <RoomName/>",
|
||||
"Disagree": "Rifiuta",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Altri motivi. Si prega di descrivere il problema.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Questa stanza è dedicata a contenuti illegali o dannosi, oppure i moderatori non riescono a censurare questo tipo di contenuti.\nVerrà segnalata agli amministratori di %(homeserver)s. Gli amministratori NON potranno leggere i contenuti cifrati di questa stanza.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Questo utente sta facendo spam nella stanza con pubblicità, collegamenti ad annunci o a propagande.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Questo utente sta mostrando un comportamento illegale, ad esempio facendo doxing o minacciando violenza.\nVerrà segnalato ai moderatori della stanza che potrebbero portarlo in ambito legale.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Questo utente sta scrivendo cose sbagliate.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Inizializzazione ricerca messaggi fallita, controlla <a>le impostazioni</a> per maggiori informazioni",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Imposta gli indirizzi per questo spazio affinché gli utenti lo trovino attraverso il tuo homeserver (%(localDomain)s)",
|
||||
"To publish an address, it needs to be set as a local address first.": "Per pubblicare un indirizzo, deve prima essere impostato come indirizzo locale.",
|
||||
|
@ -2026,21 +1983,7 @@
|
|||
"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.": "Pare che tu non abbia una chiave di sicurezza o altri dispositivi con cui poterti verificare. Questo dispositivo non potrà accedere ai vecchi messaggi cifrati. Per potere verificare la tua ideintità su questo dispositivo, dovrai reimpostare le chiavi di verifica.",
|
||||
"Skip verification for now": "Salta la verifica per adesso",
|
||||
"Really reset verification keys?": "Reimpostare le chiavi di verifica?",
|
||||
"Include Attachments": "Includi allegati",
|
||||
"Size Limit": "Limite dimensione",
|
||||
"Format": "Formato",
|
||||
"Select from the options below to export chats from your timeline": "Seleziona dalle opzioni sotto per esportare le chat dalla linea temporale",
|
||||
"Export Chat": "Esporta conversazione",
|
||||
"Exporting your data": "Esportazione dei dati",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Vuoi davvero fermare l'esportazione dei dati? Se lo fai, dovrai ricominciare da capo.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Esportazione riuscita. La puoi trovare nella cartella Download.",
|
||||
"The export was cancelled successfully": "Esportazione annullata correttamente",
|
||||
"Export Successful": "Esportazione riuscita",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Numero di messaggi",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Il numero di messaggi può essere solo tra %(min)s e %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "La dimensione può essere solo tra %(min)s MB e %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Inserisci un numero tra %(min)s e %(max)s",
|
||||
"In reply to <a>this message</a>": "In risposta a <a>questo messaggio</a>",
|
||||
"Export chat": "Esporta conversazione",
|
||||
"Create poll": "Crea sondaggio",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "Menu di %(spaceName)s",
|
||||
"Join public room": "Entra nella stanza pubblica",
|
||||
"Add people": "Aggiungi persone",
|
||||
"You do not have permissions to invite people to this space": "Non hai l'autorizzazione di invitare persone in questo spazio",
|
||||
"Invite to space": "Invita nello spazio",
|
||||
"Start new chat": "Inizia nuova chat",
|
||||
"%(count)s votes cast. Vote to see the results": {
|
||||
|
@ -2310,9 +2252,6 @@
|
|||
"Poll": "Sondaggio",
|
||||
"Voice Message": "Messaggio vocale",
|
||||
"Hide stickers": "Nascondi gli adesivi",
|
||||
"You do not have permissions to add spaces to this space": "Non hai i permessi per aggiungere spazi in questo spazio",
|
||||
"Click for more info": "Clicca per altre info",
|
||||
"This is a beta feature": "Questa è una funzionalità beta",
|
||||
"Use <arrows/> to scroll": "Usa <arrows/> per scorrere",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Opinione inviata! Grazie, lo apprezziamo!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s e %(space2Name)s",
|
||||
|
@ -2331,7 +2270,6 @@
|
|||
"Open user settings": "Apri impostazioni utente",
|
||||
"Switch to space by number": "Passa allo spazio per numero",
|
||||
"Search Dialog": "Finestra di ricerca",
|
||||
"Export Cancelled": "Esportazione annullata",
|
||||
"What location type do you want to share?": "Che tipo di posizione vuoi condividere?",
|
||||
"Drop a Pin": "Lascia una puntina",
|
||||
"My live location": "La mia posizione in tempo reale",
|
||||
|
@ -2490,8 +2428,6 @@
|
|||
"other": "Sono entrate %(count)s persone"
|
||||
},
|
||||
"View related event": "Vedi evento correlato",
|
||||
"Check if you want to hide all current and future messages from this user.": "Seleziona se vuoi nascondere tutti i messaggi attuali e futuri di questo utente.",
|
||||
"Ignore user": "Ignora utente",
|
||||
"Read receipts": "Ricevuta di lettura",
|
||||
"Failed to set direct message tag": "Impostazione etichetta chat diretta fallita",
|
||||
"You were disconnected from the call. (Error: %(message)s)": "Sei stato disconnesso dalla chiamata. (Errore: %(message)s)",
|
||||
|
@ -2513,8 +2449,6 @@
|
|||
"Remove server “%(roomServer)s”": "Rimuovi server “%(roomServer)s”",
|
||||
"Video rooms are a beta feature": "Le stanze video sono una funzionalità beta",
|
||||
"Enable hardware acceleration": "Attiva l'accelerazione hardware",
|
||||
"Joining the beta will reload %(brand)s.": "Unirsi alla beta ricaricherà %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Lasciare la beta ricaricherà %(brand)s.",
|
||||
"Remove search filter for %(filter)s": "Rimuovi filtro di ricerca per %(filter)s",
|
||||
"Start a group chat": "Inizia una conversazione di gruppo",
|
||||
"Other options": "Altre opzioni",
|
||||
|
@ -2555,13 +2489,6 @@
|
|||
"Saved Items": "Elementi salvati",
|
||||
"Choose a locale": "Scegli una lingua",
|
||||
"Spell check": "Controllo ortografico",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play e il logo Google Play sono marchi registrati di Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® e il logo Apple® sono marchi registrati di Apple Inc.",
|
||||
"Get it on F-Droid": "Ottienilo su F-Droid",
|
||||
"Get it on Google Play": "Ottienilo su Google Play",
|
||||
"Download on the App Store": "Scarica dall'App Store",
|
||||
"Download %(brand)s Desktop": "Scarica %(brand)s Desktop",
|
||||
"Download %(brand)s": "Scarica %(brand)s",
|
||||
"We're creating a room with %(names)s": "Stiamo creando una stanza con %(names)s",
|
||||
"Last activity": "Ultima attività",
|
||||
"Current session": "Sessione attuale",
|
||||
|
@ -2617,7 +2544,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "Il tuo server non ha il supporto nativo, devi specificare un proxy",
|
||||
"Your server lacks native support": "Il tuo server non ha il supporto nativo",
|
||||
"Your server has native support": "Il tuo server ha il supporto nativo",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s o %(appLinks)s",
|
||||
"Sign out of this session": "Disconnetti da questa sessione",
|
||||
"You need to be able to kick users to do that.": "Devi poter cacciare via utenti per completare l'azione.",
|
||||
"Voice broadcast": "Trasmissione vocale",
|
||||
|
@ -2725,8 +2651,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Segui le istruzioni inviate a <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Disconnetti tutti i dispositivi",
|
||||
"Confirm new password": "Conferma nuova password",
|
||||
"Reset your password": "Reimposta la tua password",
|
||||
"Reset password": "Reimposta password",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Troppi tentativi in poco tempo. Riprova dopo %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Troppi tentativi in poco tempo. Attendi un po' prima di riprovare.",
|
||||
"Show details": "Mostra dettagli",
|
||||
|
@ -2830,11 +2754,8 @@
|
|||
"Loading live location…": "Caricamento posizione in tempo reale…",
|
||||
"Fetching keys from server…": "Ricezione delle chiavi dal server…",
|
||||
"Checking…": "Controllo…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Questa stanza è dedicata a contenuti illegali o dannosi, oppure i moderatori non riescono a censurare questo tipo di contenuti.\nVerrà segnalata agli amministratori di %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Questo utente sta mostrando un cattivo comportamento, ad esempio insultando altri utenti o condividendo contenuti per adulti in una stanza per tutti, oppure violando le regole della stessa.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"Enable '%(manageIntegrations)s' in Settings to do this.": "Attiva '%(manageIntegrations)s' nelle impostazioni per continuare.",
|
||||
"Waiting for partner to confirm…": "In attesa che il partner confermi…",
|
||||
"Processing…": "Elaborazione…",
|
||||
"Adding…": "Aggiunta…",
|
||||
"Write something…": "Scrivi qualcosa…",
|
||||
"Rejecting invite…": "Rifiuto dell'invito…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "Errore sconosciuto di modifica della password (%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "Errore nella modifica della password: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Impossibile invitare l'utente per email senza un server d'identità. Puoi connetterti a uno in \"Impostazioni\".",
|
||||
"Unable to create room with moderation bot": "Impossibile creare la stanza con il bot di moderazione",
|
||||
"Failed to download source media, no source url was found": "Scaricamento della fonte fallito, nessun url trovato",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Una volta che gli utenti si saranno uniti a %(brand)s, potrete scrivervi e la stanza sarà crittografata end-to-end",
|
||||
"Waiting for users to join %(brand)s": "In attesa che gli utenti si uniscano a %(brand)s",
|
||||
|
@ -3091,7 +3011,8 @@
|
|||
"secure_backup": "Backup Sicuro",
|
||||
"cross_signing": "Firma incrociata",
|
||||
"identity_server": "Server di identità",
|
||||
"integration_manager": "Gestore di integrazioni"
|
||||
"integration_manager": "Gestore di integrazioni",
|
||||
"qr_code": "Codice QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Continua",
|
||||
|
@ -3195,7 +3116,16 @@
|
|||
"clear": "Svuota"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu utente"
|
||||
"user_menu": "Menu utente",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s messaggi non letti incluse le citazioni.",
|
||||
"one": "1 citazione non letta."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s messaggi non letti.",
|
||||
"one": "1 messaggio non letto."
|
||||
},
|
||||
"unread_messages": "Messaggi non letti."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Stanze video",
|
||||
|
@ -3250,7 +3180,13 @@
|
|||
"group_themes": "Temi",
|
||||
"group_encryption": "Crittografia",
|
||||
"group_experimental": "Sperimentale",
|
||||
"group_developer": "Sviluppatore"
|
||||
"group_developer": "Sviluppatore",
|
||||
"beta_feature": "Questa è una funzionalità beta",
|
||||
"click_for_info": "Clicca per altre info",
|
||||
"leave_beta_reload": "Lasciare la beta ricaricherà %(brand)s.",
|
||||
"join_beta_reload": "Unirsi alla beta ricaricherà %(brand)s.",
|
||||
"leave_beta": "Abbandona la beta",
|
||||
"join_beta": "Unisciti alla beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Pagina iniziale",
|
||||
|
@ -3381,7 +3317,15 @@
|
|||
"enable_notifications": "Attiva le notifiche",
|
||||
"download_app_description": "Non perderti niente portando %(brand)s con te",
|
||||
"download_app_action": "Scarica app",
|
||||
"download_app": "Scarica %(brand)s"
|
||||
"download_app": "Scarica %(brand)s",
|
||||
"download_brand": "Scarica %(brand)s",
|
||||
"download_brand_desktop": "Scarica %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s o %(appLinks)s",
|
||||
"download_app_store": "Scarica dall'App Store",
|
||||
"download_google_play": "Ottienilo su Google Play",
|
||||
"download_f_droid": "Ottienilo su F-Droid",
|
||||
"apple_trademarks": "App Store® e il logo Apple® sono marchi registrati di Apple Inc.",
|
||||
"google_trademarks": "Google Play e il logo Google Play sono marchi registrati di Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Mostra scorciatoie per le stanze viste di recente sopra l'elenco stanze",
|
||||
|
@ -3600,7 +3544,24 @@
|
|||
"error_fetching_file": "Errore di recupero del file",
|
||||
"file_attached": "File allegato",
|
||||
"fetching_events": "Ricezione eventi…",
|
||||
"creating_output": "Creazione output…"
|
||||
"creating_output": "Creazione output…",
|
||||
"processing": "Elaborazione…",
|
||||
"enter_number_between_min_max": "Inserisci un numero tra %(min)s e %(max)s",
|
||||
"size_limit_min_max": "La dimensione può essere solo tra %(min)s MB e %(max)s MB",
|
||||
"num_messages_min_max": "Il numero di messaggi può essere solo tra %(min)s e %(max)s",
|
||||
"num_messages": "Numero di messaggi",
|
||||
"cancelled": "Esportazione annullata",
|
||||
"cancelled_detail": "Esportazione annullata correttamente",
|
||||
"successful": "Esportazione riuscita",
|
||||
"successful_detail": "Esportazione riuscita. La puoi trovare nella cartella Download.",
|
||||
"confirm_stop": "Vuoi davvero fermare l'esportazione dei dati? Se lo fai, dovrai ricominciare da capo.",
|
||||
"exporting_your_data": "Esportazione dei dati",
|
||||
"title": "Esporta conversazione",
|
||||
"select_option": "Seleziona dalle opzioni sotto per esportare le chat dalla linea temporale",
|
||||
"format": "Formato",
|
||||
"messages": "Messaggi",
|
||||
"size_limit": "Limite dimensione",
|
||||
"include_attachments": "Includi allegati"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Crea una stanza video",
|
||||
|
@ -4014,7 +3975,6 @@
|
|||
"unsupported": "Le chiamate non sono supportate",
|
||||
"unsupported_browser": "Non puoi fare chiamate in questo browser."
|
||||
},
|
||||
"Messages": "Messaggi",
|
||||
"Other": "Altro",
|
||||
"Advanced": "Avanzato",
|
||||
"room_settings": {
|
||||
|
@ -4102,5 +4062,53 @@
|
|||
"spaceinvaders_message": "invia space invaders",
|
||||
"hearts_description": "Invia il messaggio con cuori",
|
||||
"hearts_message": "invia cuori"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Non hai l'autorizzazione di invitare persone in questo spazio",
|
||||
"error_no_permission_create_room": "Non hai i permessi per creare stanze in questo spazio",
|
||||
"error_no_permission_add_room": "Non hai i permessi per aggiungere stanze a questo spazio",
|
||||
"error_no_permission_add_space": "Non hai i permessi per aggiungere spazi in questo spazio"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Continua con %(provider)s",
|
||||
"sign_in_with_sso": "Accedi con single sign-on",
|
||||
"sso": "Single Sign On",
|
||||
"reset_password_action": "Reimposta password",
|
||||
"reset_password_title": "Reimposta la tua password"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Mostra prima le stanze con messaggi non letti",
|
||||
"show_previews": "Mostra anteprime dei messaggi",
|
||||
"sort_by": "Ordina per",
|
||||
"sort_by_activity": "Attività",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Opzioni lista",
|
||||
"show_n_more": {
|
||||
"other": "Mostra altri %(count)s",
|
||||
"one": "Mostra %(count)s altro"
|
||||
},
|
||||
"show_less": "Mostra meno",
|
||||
"notification_options": "Opzioni di notifica"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Inserisci il motivo della segnalazione.",
|
||||
"unable_create_room_moderation_bot": "Impossibile creare la stanza con il bot di moderazione",
|
||||
"ignore_user": "Ignora utente",
|
||||
"hide_messages_from_user": "Seleziona se vuoi nascondere tutti i messaggi attuali e futuri di questo utente.",
|
||||
"nature_disagreement": "Questo utente sta scrivendo cose sbagliate.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"nature_toxic": "Questo utente sta mostrando un cattivo comportamento, ad esempio insultando altri utenti o condividendo contenuti per adulti in una stanza per tutti, oppure violando le regole della stessa.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"nature_illegal": "Questo utente sta mostrando un comportamento illegale, ad esempio facendo doxing o minacciando violenza.\nVerrà segnalato ai moderatori della stanza che potrebbero portarlo in ambito legale.",
|
||||
"nature_spam": "Questo utente sta facendo spam nella stanza con pubblicità, collegamenti ad annunci o a propagande.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"report_to_homeserver_encrypted": "Questa stanza è dedicata a contenuti illegali o dannosi, oppure i moderatori non riescono a censurare questo tipo di contenuti.\nVerrà segnalata agli amministratori di %(homeserver)s. Gli amministratori NON potranno leggere i contenuti cifrati di questa stanza.",
|
||||
"report_to_homeserver": "Questa stanza è dedicata a contenuti illegali o dannosi, oppure i moderatori non riescono a censurare questo tipo di contenuti.\nVerrà segnalata agli amministratori di %(homeserver)s.",
|
||||
"nature_other": "Altri motivi. Si prega di descrivere il problema.\nVerrà segnalato ai moderatori della stanza.",
|
||||
"nature": "Scegli la natura del problema e descrivi cosa rende questo messaggio un abuso.",
|
||||
"disagree": "Rifiuta",
|
||||
"toxic_behaviour": "Cattivo comportamento",
|
||||
"illegal_content": "Contenuto illegale",
|
||||
"spam_or_propaganda": "Spam o propaganda",
|
||||
"report_entire_room": "Segnala l'intera stanza",
|
||||
"report_content_to_homeserver": "Segnala il contenuto all'amministratore dell'homeserver",
|
||||
"description": "La segnalazione di questo messaggio invierà il suo 'ID evento' univoco all'amministratore del tuo homeserver. Se i messaggi della stanza sono cifrati, l'amministratore non potrà leggere il messaggio o vedere file e immagini."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -483,8 +483,6 @@
|
|||
"Clear all data in this session?": "このセッションの全てのデータを削除してよろしいですか?",
|
||||
"Clear all data": "全てのデータを消去",
|
||||
"Message edits": "メッセージの編集履歴",
|
||||
"Report Content to Your Homeserver Administrator": "あなたのホームサーバーの管理者にコンテンツを報告",
|
||||
"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.": "このメッセージを報告すると、このメッセージの一意の「イベントID」があなたのホームサーバーの管理者に送信されます。このルーム内のメッセージが暗号化されている場合、ホームサーバーの管理者はメッセージのテキストを読んだり、ファイルや画像を表示したりすることはできません。",
|
||||
"Sign out and remove encryption keys?": "サインアウトして、暗号鍵を削除しますか?",
|
||||
"Terms of Service": "利用規約",
|
||||
"To continue you need to accept the terms of this service.": "続行するには、このサービスの利用規約に同意する必要があります。",
|
||||
|
@ -557,7 +555,6 @@
|
|||
"More options": "他のオプション",
|
||||
"Manually verify all remote sessions": "全てのリモートセッションを手動で認証",
|
||||
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "クロス署名された端末を信頼せず、ユーザーが使用する各セッションを個別に認証し、信頼済に設定。",
|
||||
"Show less": "詳細を非表示",
|
||||
"Show more": "さらに表示",
|
||||
"This backup is trusted because it has been restored on this session": "このバックアップは、このセッションで復元されたため信頼されています",
|
||||
"Enable end-to-end encryption": "エンドツーエンド暗号化を有効にする",
|
||||
|
@ -577,10 +574,8 @@
|
|||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)sはプレビューできません。ルームに参加しますか?",
|
||||
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "アドレスを設定すると、他のユーザーがあなたのホームサーバー(%(localDomain)s)を通じてこのルームを見つけられるようになります。",
|
||||
"If you've joined lots of rooms, this might take a while": "多くのルームに参加している場合は、時間がかかる可能性があります",
|
||||
"Single Sign On": "シングルサインオン",
|
||||
"Use custom size": "ユーザー定義のサイズを使用",
|
||||
"Hey you. You're the best!": "こんにちは、よろしくね!",
|
||||
"Notification options": "通知設定",
|
||||
"Verify User": "ユーザーの認証",
|
||||
"Your homeserver": "あなたのホームサーバー",
|
||||
"%(displayName)s cancelled verification.": "%(displayName)sが認証をキャンセルしました。",
|
||||
|
@ -595,15 +590,9 @@
|
|||
"Start verification again from their profile.": "プロフィールから再度認証を開始してください。",
|
||||
"Do not use an identity server": "IDサーバーを使用しない",
|
||||
"Composer": "入力欄",
|
||||
"Sort by": "並び替え",
|
||||
"List options": "オプションの一覧を表示",
|
||||
"Use Single Sign On to continue": "シングルサインオンを使用して続行",
|
||||
"Accept <policyLink /> to continue:": "<policyLink />に同意して続行:",
|
||||
"Always show the window menu bar": "常にウィンドウメニューバーを表示",
|
||||
"Show %(count)s more": {
|
||||
"other": "さらに%(count)s件を表示",
|
||||
"one": "さらに%(count)s件を表示"
|
||||
},
|
||||
"Favourited": "お気に入り登録中",
|
||||
"Room options": "ルームの設定",
|
||||
"Ignored users": "無視しているユーザー",
|
||||
|
@ -720,21 +709,8 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "このルームはホームサーバーが<i>不安定</i>と判断したルームバージョン<roomVersion />で動作しています。",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "このルームをアップグレードすると、現在のルームの使用を終了し、アップグレードしたルームを同じ名前で作成します。",
|
||||
"This room has already been upgraded.": "このルームは既にアップグレードされています。",
|
||||
"Unread messages.": "未読メッセージ。",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "未読メッセージ1件。",
|
||||
"other": "未読メッセージ%(count)s件。"
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "未読のメンション1件。",
|
||||
"other": "メンションを含む未読メッセージ%(count)s件。"
|
||||
},
|
||||
"Jump to first invite.": "最初の招待に移動。",
|
||||
"Jump to first unread room.": "未読のある最初のルームにジャンプします。",
|
||||
"A-Z": "アルファベット順",
|
||||
"Activity": "アクティビティー順",
|
||||
"Show previews of messages": "メッセージのプレビューを表示",
|
||||
"Show rooms with unread messages first": "未読メッセージのあるルームを最初に表示",
|
||||
"You're previewing %(roomName)s. Want to join it?": "ルーム %(roomName)s のプレビューです。参加しますか?",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "このメールアドレスを設定から共有すると、%(brand)sから招待を受け取れます。",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "設定からIDサーバーを使用すると、%(brand)sから直接招待を受け取れます。",
|
||||
|
@ -1361,9 +1337,7 @@
|
|||
"You don't have permission to delete the address.": "アドレスを削除する権限がありません。",
|
||||
"Empty room": "空のルーム",
|
||||
"Suggested Rooms": "おすすめのルーム",
|
||||
"You do not have permissions to add rooms to this space": "このスペースにルームを追加する権限がありません",
|
||||
"Add existing room": "既存のルームを追加",
|
||||
"You do not have permissions to create new rooms in this space": "このスペースに新しいルームを作成する権限がありません",
|
||||
"Invite to this space": "このスペースに招待",
|
||||
"Your message was sent": "メッセージが送信されました",
|
||||
"Space options": "スペースのオプション",
|
||||
|
@ -1380,8 +1354,6 @@
|
|||
"This homeserver has been blocked by its administrator.": "このホームサーバーは管理者によりブロックされています。",
|
||||
"Edit devices": "端末を編集",
|
||||
"You have no ignored users.": "無視しているユーザーはいません。",
|
||||
"Join the beta": "ベータ版に参加",
|
||||
"Leave the beta": "ベータ版を終了",
|
||||
"Your access token gives full access to your account. Do not share it with anyone.": "アクセストークンを用いると、あなたのアカウントの全ての情報にアクセスできます。外部に公開したり、誰かと共有したりしないでください。",
|
||||
"Save Changes": "変更を保存",
|
||||
"Edit settings relating to your space.": "スペースの設定を変更します。",
|
||||
|
@ -1461,16 +1433,9 @@
|
|||
"Spaces to show": "表示するスペース",
|
||||
"Sidebar": "サイドバー",
|
||||
"Show all rooms": "全てのルームを表示",
|
||||
"QR Code": "QRコード",
|
||||
"Home options": "ホームのオプション",
|
||||
"Report": "報告",
|
||||
"Files": "ファイル",
|
||||
"Number of messages": "メッセージ数",
|
||||
"Include Attachments": "添付ファイルを含める",
|
||||
"Size Limit": "サイズ制限",
|
||||
"Format": "形式",
|
||||
"Select from the options below to export chats from your timeline": "以下のオプションを選択して、チャットをエクスポートできます",
|
||||
"Export Chat": "チャットをエクスポート",
|
||||
"Export chat": "チャットをエクスポート",
|
||||
"View source": "ソースコードを表示",
|
||||
"Failed to send": "送信に失敗しました",
|
||||
|
@ -1561,7 +1526,6 @@
|
|||
"An unknown error occurred": "不明なエラーが発生しました",
|
||||
"unknown person": "不明な人間",
|
||||
"Jump to oldest unread message": "最も古い未読メッセージに移動",
|
||||
"Sign in with single sign-on": "シングルサインオンを使用してサインイン",
|
||||
"In reply to <a>this message</a>": "<a>このメッセージ</a>への返信",
|
||||
"Edit poll": "アンケートを編集",
|
||||
"Select room from the room list": "ルーム一覧からルームを選択",
|
||||
|
@ -1687,7 +1651,6 @@
|
|||
"We call the places where you can host your account 'homeservers'.": "Matrixでは、あなたが自分のアカウントを管理する場所を「ホームサーバー」と呼んでいます。",
|
||||
"Decide where your account is hosted": "アカウントを管理する場所を決めましょう",
|
||||
"Host account on": "アカウントを以下のホームサーバーでホスト",
|
||||
"Continue with %(provider)s": "%(provider)sで続行",
|
||||
"Join millions for free on the largest public server": "最大の公開サーバーで、数百万人に無料で参加",
|
||||
"Already have an account? <a>Sign in here</a>": "既にアカウントがありますか?<a>ここからサインインしてください</a>",
|
||||
"Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "新しいアカウント(%(newAccountId)s)が登録されましたが、あなたは別のアカウント(%(loggedInUserId)s)でログインしています。",
|
||||
|
@ -1717,7 +1680,6 @@
|
|||
"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.": "認証鍵のリセットは取り消せません。リセットすると、以前の暗号化されたメッセージにはアクセスできなくなります。また、あなたのアカウントを認証した連絡先には、再認証するまで、セキュリティーに関する警告が表示されます。",
|
||||
"Really reset verification keys?": "本当に認証鍵をリセットしますか?",
|
||||
"Start new chat": "チャットを開始",
|
||||
"You do not have permissions to invite people to this space": "このスペースにユーザーを招待する権限がありません",
|
||||
"Invite to space": "スペースに招待",
|
||||
"Force complete": "強制的に自動補完",
|
||||
"Activate selected button": "選択したボタンを有効にする",
|
||||
|
@ -1762,7 +1724,6 @@
|
|||
"Search for spaces": "スペースを検索",
|
||||
"Share location": "位置情報を共有",
|
||||
"Feedback sent! Thanks, we appreciate it!": "フィードバックを送信しました!ありがとうございました!",
|
||||
"This is a beta feature": "この機能はベータ版です",
|
||||
"Can't edit poll": "アンケートは編集できません",
|
||||
"Poll type": "アンケートの種類",
|
||||
"Open poll": "投票の際に結果を公開",
|
||||
|
@ -1798,7 +1759,6 @@
|
|||
"Signature upload success": "署名のアップロードに成功しました",
|
||||
"Cancelled signature upload": "署名のアップロードをキャンセルしました",
|
||||
"This address does not point at this room": "このアドレスはこのルームを指していません",
|
||||
"You do not have permissions to add spaces to this space": "このスペースに別のスペースを追加する権限がありません",
|
||||
"Open in OpenStreetMap": "OpenStreetMapで開く",
|
||||
"Please enter a name for the room": "ルームの名前を入力してください",
|
||||
"The following users may not exist": "次のユーザーは存在しない可能性があります",
|
||||
|
@ -1812,7 +1772,6 @@
|
|||
"Share %(name)s": "%(name)sを共有",
|
||||
"Application window": "アプリケーションのウィンドウ",
|
||||
"Verification Request": "認証の要求",
|
||||
"Exporting your data": "データをエクスポートしています",
|
||||
"Feedback sent": "フィードバックを送信しました",
|
||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "追加で確認が必要な事項や、テストすべき新しいアイデアがある場合は、連絡可",
|
||||
"Verification requested": "認証が必要です",
|
||||
|
@ -1852,8 +1811,6 @@
|
|||
"Select spaces": "スペースを選択",
|
||||
"Your homeserver doesn't seem to support this feature.": "ホームサーバーはこの機能をサポートしていません。",
|
||||
"Verify session": "セッションを認証",
|
||||
"Spam or propaganda": "スパム、プロパガンダ",
|
||||
"Illegal Content": "不法なコンテンツ",
|
||||
"To view all keyboard shortcuts, <a>click here</a>.": "<a>ここをクリック</a>すると、全てのキーボードのショートカットを表示します。",
|
||||
"<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>暗号化されたルームを公開することは推奨されません。</b>ルームを公開すると、誰でもルームを検索、参加して、メッセージを読むことができるため、暗号化の利益を得ることができません。また、公開ルームでメッセージを暗号化すると、メッセージの送受信が遅くなります。",
|
||||
"Are you sure you want to make this encrypted room public?": "この暗号化されたルームを公開してよろしいですか?",
|
||||
|
@ -1862,7 +1819,6 @@
|
|||
"Incorrect Security Phrase": "セキュリティーフレーズが正しくありません",
|
||||
"Messaging": "メッセージ",
|
||||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "権限がある場合は、メッセージのメニューを開いて<b>固定</b>を選択すると、ここにメッセージが表示されます。",
|
||||
"The export was cancelled successfully": "エクスポートをキャンセルしました",
|
||||
"Invite your teammates": "チームの仲間を招待しましょう",
|
||||
"No results found": "検索結果がありません",
|
||||
"Private space (invite only)": "非公開スペース(招待者のみ参加可能)",
|
||||
|
@ -1872,7 +1828,6 @@
|
|||
"MB": "MB",
|
||||
"Failed to end poll": "アンケートの終了に失敗しました",
|
||||
"End Poll": "アンケートを終了",
|
||||
"Export Successful": "エクスポートが成功しました",
|
||||
"Add people": "連絡先を追加",
|
||||
"View message": "メッセージを表示",
|
||||
"End-to-end encryption isn't enabled": "エンドツーエンド暗号化が有効になっていません",
|
||||
|
@ -1954,10 +1909,6 @@
|
|||
"Confirm to continue": "確認して続行",
|
||||
"Failed to find the following users": "次のユーザーの発見に失敗しました",
|
||||
"Sorry, the poll did not end. Please try again.": "アンケートを終了できませんでした。もう一度やり直してください。",
|
||||
"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.": "エクスポートに成功しました。ダウンロード先のフォルダーを確認してください。",
|
||||
"Enter a number between %(min)s and %(max)s": "%(min)sから%(max)sまでの間の数字を入力してください",
|
||||
"Export Cancelled": "エクスポートをキャンセルしました",
|
||||
"Are you sure you want to deactivate your account? This is irreversible.": "アカウントを無効化してよろしいですか?この操作は元に戻すことができません。",
|
||||
"Want to add an existing space instead?": "代わりに既存のスペースを追加しますか?",
|
||||
"Space visibility": "スペースの見え方",
|
||||
|
@ -1968,7 +1919,6 @@
|
|||
"Avatar": "アバター",
|
||||
"Revoke permissions": "権限を取り消す",
|
||||
"Incompatible Database": "互換性のないデータベース",
|
||||
"Disagree": "同意しない",
|
||||
"Hold": "保留",
|
||||
"Resume": "再開",
|
||||
"Country Dropdown": "国一覧",
|
||||
|
@ -2080,7 +2030,6 @@
|
|||
"Use a different passphrase?": "異なるパスフレーズを使用しますか?",
|
||||
"Please review and accept all of the homeserver's policies": "ホームサーバーの運営方針を確認し、同意してください",
|
||||
"Space Autocomplete": "スペースの自動補完",
|
||||
"Click for more info": "クリックすると詳細を表示",
|
||||
"Start audio stream": "音声ストリーミングを開始",
|
||||
"Failed to start livestream": "ライブストリームの開始に失敗しました",
|
||||
"Unable to start audio streaming.": "音声ストリーミングを開始できません。",
|
||||
|
@ -2092,7 +2041,6 @@
|
|||
"The server has denied your request.": "サーバーがリクエストを拒否しました。",
|
||||
"Server isn't responding": "サーバーが応答していません",
|
||||
"You're all caught up.": "未読はありません。",
|
||||
"Toxic Behaviour": "危害を加える振る舞い",
|
||||
"Continuing without email": "メールアドレスを使用せずに続行",
|
||||
"Data on this screen is shared with %(widgetDomain)s": "このスクリーンのデータは%(widgetDomain)sと共有されます",
|
||||
"If they don't match, the security of your communication may be compromised.": "一致していない場合は、コミュニケーションのセキュリティーが損なわれている可能性があります。",
|
||||
|
@ -2130,7 +2078,6 @@
|
|||
"Command error: Unable to find rendering type (%(renderingType)s)": "コマンドエラー:レンダリングの種類(%(renderingType)s)が見つかりません",
|
||||
"Error processing voice message": "音声メッセージを処理する際にエラーが発生しました",
|
||||
"Error loading Widget": "ウィジェットを読み込む際にエラーが発生しました",
|
||||
"Please fill why you're reporting.": "報告する理由を記入してください。",
|
||||
"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.": "セキュリティーキーもしくは認証可能な端末が設定されていません。この端末では、以前暗号化されたメッセージにアクセスすることができません。この端末で本人確認を行うには、認証用の鍵を再設定する必要があります。",
|
||||
"<inviter/> invites you": "<inviter/>があなたを招待しています",
|
||||
"Decrypted event source": "復号化したイベントのソースコード",
|
||||
|
@ -2177,7 +2124,6 @@
|
|||
"These files are <b>too large</b> to upload. The file size limit is %(limit)s.": "アップロードしようとしているファイルのサイズが<b>大きすぎます</b>。最大のサイズは%(limit)sです。",
|
||||
"a new master key signature": "新しいマスターキーの署名",
|
||||
"This widget may use cookies.": "このウィジェットはクッキーを使用する可能性があります。",
|
||||
"Report the entire room": "ルーム全体を報告",
|
||||
"Visible to space members": "スペースの参加者に表示",
|
||||
"Search names and descriptions": "名前と説明文を検索",
|
||||
"Currently joining %(count)s rooms": {
|
||||
|
@ -2272,8 +2218,6 @@
|
|||
"Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "%(brand)sでは、インテグレーションマネージャーでこれを行うことができません。管理者に連絡してください。",
|
||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "これらの問題を避けるには、予定している会話用に<a>暗号化されたルーム</a>を新しく作成してください。",
|
||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "これらの問題を避けるには、予定している会話用に<a>公開ルーム</a>を新しく作成してください。",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "サイズは%(min)sMBから%(max)sMBの間で指定してください",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "メッセージの数は%(min)sから%(max)sの間で指定してください",
|
||||
"In encrypted rooms, verify all users to ensure it's secure.": "暗号化されたルームでは、安全確認のために全てのユーザーを認証しましょう。",
|
||||
"Including you, %(commaSeparatedMembers)s": "あなたと%(commaSeparatedMembers)sを含む",
|
||||
"Can't create a thread from an event with an existing relation": "既存の関係のあるイベントからスレッドを作成することはできません",
|
||||
|
@ -2330,11 +2274,6 @@
|
|||
"Threads help keep your conversations on-topic and easy to track.": "スレッド機能を使うと、会話のテーマを維持したり、会話を簡単に追跡したりすることができます。",
|
||||
"Confirm this user's session by comparing the following with their User Settings:": "ユーザー設定画面で以下を比較し、このユーザーのセッションを承認してください:",
|
||||
"Confirm by comparing the following with the User Settings in your other session:": "他のセッションのユーザー設定で、以下を比較して承認してください:",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "不法なコンテンツの投稿が行われ、モデレーターによる適切な管理がなされていない。\nこのルームを%(homeserver)sの管理者に報告します。ただし、管理者がこのルームの暗号化されたコンテンツを読み取ることはできません。",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "ユーザーが広告や、広告・プロパガンダへのリンクのスパムを行っている。\nこのユーザーをルームのモデレーターに報告します。",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "ユーザーの投稿内容が正しくない。\nこのユーザーをルームのモデレーターに報告します。",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "その他の理由。問題を記入してください。\nルームのモデレーターに報告します。",
|
||||
"Please pick a nature and describe what makes this message abusive.": "特徴を選び、このメッセージを報告する理由を記入してください。",
|
||||
"Currently, %(count)s spaces have access": {
|
||||
"other": "現在%(count)s個のスペースがアクセスできます",
|
||||
"one": "現在1個のスペースがアクセスできます"
|
||||
|
@ -2432,7 +2371,6 @@
|
|||
"IP address": "IPアドレス",
|
||||
"Browser": "ブラウザー",
|
||||
"Click the button below to confirm your identity.": "本人確認のため、下のボタンをクリックしてください。",
|
||||
"Ignore user": "ユーザーを無視",
|
||||
"Proxy URL (optional)": "プロクシーのURL(任意)",
|
||||
"Proxy URL": "プロクシーのURL",
|
||||
"%(count)s Members": {
|
||||
|
@ -2492,7 +2430,6 @@
|
|||
"one": "%(count)s人が参加しました",
|
||||
"other": "%(count)s人が参加しました"
|
||||
},
|
||||
"Download %(brand)s": "%(brand)sをダウンロード",
|
||||
"Show shortcut to welcome checklist above the room list": "ルームの一覧の上に、最初に設定すべき項目のチェックリストのショートカットを表示",
|
||||
"You are already recording a voice broadcast. Please end your current voice broadcast to start a new one.": "既に音声配信を録音しています。新しく始めるには現在の音声配信を終了してください。",
|
||||
"Close sidebar": "サイドバーを閉じる",
|
||||
|
@ -2520,14 +2457,7 @@
|
|||
"Hide formatting": "フォーマットを表示しない",
|
||||
"Show formatting": "フォーマットを表示",
|
||||
"Updated %(humanizedUpdateTime)s": "%(humanizedUpdateTime)sに更新",
|
||||
"Joining the beta will reload %(brand)s.": "ベータ版に参加すると%(brand)sをリロードします。",
|
||||
"Unsent": "未送信",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google PlayとGoogle PlayロゴはGoogle LLC.の商標です。",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store®とAppleロゴ®はApple Incの商標です。",
|
||||
"Get it on F-Droid": "F-Droidで入手",
|
||||
"Download on the App Store": "App Storeでダウンロード",
|
||||
"Get it on Google Play": "Google Playで入手",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)sまたは%(appLinks)s",
|
||||
"Not all selected were added": "選択されたもの全てが追加されてはいません",
|
||||
"Show: Matrix rooms": "表示:Matrixルーム",
|
||||
"Add new server…": "新しいサーバーを追加…",
|
||||
|
@ -2619,9 +2549,7 @@
|
|||
"An error occurred whilst sharing your live location, please try again": "位置情報(ライブ)を共有している際にエラーが発生しました。もう一度やり直してください",
|
||||
"An error occurred whilst sharing your live location": "位置情報(ライブ)を共有している際にエラーが発生しました",
|
||||
"An error occurred while stopping your live location": "位置情報(ライブ)を停止する際にエラーが発生しました",
|
||||
"Leaving the beta will reload %(brand)s.": "ベータ版を終了すると%(brand)sをリロードします。",
|
||||
"Failed to set direct message tag": "ダイレクトメッセージのタグの設定に失敗しました",
|
||||
"Download %(brand)s Desktop": "%(brand)sデスクトップをダウンロード",
|
||||
"Online community members": "オンラインコミュニティーのメンバー",
|
||||
"View related event": "関連するイベントを表示",
|
||||
"Live location sharing": "位置情報(ライブ)の共有",
|
||||
|
@ -2633,7 +2561,6 @@
|
|||
"<w>WARNING:</w> <description/>": "<w>警告:</w><description/>",
|
||||
"Early previews": "早期プレビュー",
|
||||
"Send email": "電子メールを送信",
|
||||
"Reset password": "パスワードを再設定",
|
||||
"Close call": "通話を終了",
|
||||
"Verified sessions": "認証済のセッション",
|
||||
"Search for": "検索",
|
||||
|
@ -2704,7 +2631,6 @@
|
|||
"No unverified sessions found.": "未認証のセッションはありません。",
|
||||
"Decrypted source unavailable": "復号化したソースコードが利用できません",
|
||||
"Thread root ID: %(threadRootId)s": "スレッドのルートID:%(threadRootId)s",
|
||||
"Reset your password": "パスワードを再設定",
|
||||
"Sign out of all devices": "全ての端末からサインアウト",
|
||||
"Confirm new password": "新しいパスワードを確認",
|
||||
"Currently removing messages in %(count)s rooms": {
|
||||
|
@ -2785,7 +2711,6 @@
|
|||
"Sliding Sync configuration": "スライド式同期の設定",
|
||||
"Remove search filter for %(filter)s": "%(filter)sの検索フィルターを削除",
|
||||
"Some results may be hidden": "いくつかの結果が表示されていない可能性があります",
|
||||
"Check if you want to hide all current and future messages from this user.": "このユーザーのメッセージを非表示にするかどうか確認してください。",
|
||||
"The widget will verify your user ID, but won't be able to perform actions for you:": "ウィジェットはあなたのユーザーIDを認証しますが、操作を行うことはできません:",
|
||||
"In %(spaceName)s.": "スペース %(spaceName)s内。",
|
||||
"In spaces %(space1Name)s and %(space2Name)s.": "スペース %(space1Name)sと%(space2Name)s内。",
|
||||
|
@ -2828,7 +2753,6 @@
|
|||
"Fetching keys from server…": "鍵をサーバーから取得しています…",
|
||||
"Checking…": "確認しています…",
|
||||
"Waiting for partner to confirm…": "相手の承認を待機しています…",
|
||||
"Processing…": "処理しています…",
|
||||
"Adding…": "追加しています…",
|
||||
"Write something…": "記入してください…",
|
||||
"Rejecting invite…": "招待を拒否しています…",
|
||||
|
@ -2935,7 +2859,8 @@
|
|||
"secure_backup": "セキュアバックアップ",
|
||||
"cross_signing": "クロス署名",
|
||||
"identity_server": "IDサーバー",
|
||||
"integration_manager": "インテグレーションマネージャー"
|
||||
"integration_manager": "インテグレーションマネージャー",
|
||||
"qr_code": "QRコード"
|
||||
},
|
||||
"action": {
|
||||
"continue": "続行",
|
||||
|
@ -3036,7 +2961,16 @@
|
|||
"clear": "消去"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "ユーザーメニュー"
|
||||
"user_menu": "ユーザーメニュー",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "未読のメンション1件。",
|
||||
"other": "メンションを含む未読メッセージ%(count)s件。"
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "未読メッセージ1件。",
|
||||
"other": "未読メッセージ%(count)s件。"
|
||||
},
|
||||
"unread_messages": "未読メッセージ。"
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "ビデオ通話ルーム",
|
||||
|
@ -3083,7 +3017,13 @@
|
|||
"group_themes": "テーマ",
|
||||
"group_encryption": "暗号化",
|
||||
"group_experimental": "実験的",
|
||||
"group_developer": "開発者"
|
||||
"group_developer": "開発者",
|
||||
"beta_feature": "この機能はベータ版です",
|
||||
"click_for_info": "クリックすると詳細を表示",
|
||||
"leave_beta_reload": "ベータ版を終了すると%(brand)sをリロードします。",
|
||||
"join_beta_reload": "ベータ版に参加すると%(brand)sをリロードします。",
|
||||
"leave_beta": "ベータ版を終了",
|
||||
"join_beta": "ベータ版に参加"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "ホーム",
|
||||
|
@ -3209,7 +3149,15 @@
|
|||
"enable_notifications": "通知を有効にする",
|
||||
"download_app_description": "%(brand)sを持ち歩いて、情報を見逃さないようにしましょう",
|
||||
"download_app_action": "アプリをダウンロード",
|
||||
"download_app": "%(brand)sをダウンロード"
|
||||
"download_app": "%(brand)sをダウンロード",
|
||||
"download_brand": "%(brand)sをダウンロード",
|
||||
"download_brand_desktop": "%(brand)sデスクトップをダウンロード",
|
||||
"qr_or_app_links": "%(qrCode)sまたは%(appLinks)s",
|
||||
"download_app_store": "App Storeでダウンロード",
|
||||
"download_google_play": "Google Playで入手",
|
||||
"download_f_droid": "F-Droidで入手",
|
||||
"apple_trademarks": "App Store®とAppleロゴ®はApple Incの商標です。",
|
||||
"google_trademarks": "Google PlayとGoogle PlayロゴはGoogle LLC.の商標です。"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "ルームの一覧の上に、最近表示したルームのショートカットを表示",
|
||||
|
@ -3409,7 +3357,24 @@
|
|||
"error_fetching_file": "ファイルの取得中にエラーが発生しました",
|
||||
"file_attached": "添付されたファイル",
|
||||
"fetching_events": "イベントを取得しています…",
|
||||
"creating_output": "出力しています…"
|
||||
"creating_output": "出力しています…",
|
||||
"processing": "処理しています…",
|
||||
"enter_number_between_min_max": "%(min)sから%(max)sまでの間の数字を入力してください",
|
||||
"size_limit_min_max": "サイズは%(min)sMBから%(max)sMBの間で指定してください",
|
||||
"num_messages_min_max": "メッセージの数は%(min)sから%(max)sの間で指定してください",
|
||||
"num_messages": "メッセージ数",
|
||||
"cancelled": "エクスポートをキャンセルしました",
|
||||
"cancelled_detail": "エクスポートをキャンセルしました",
|
||||
"successful": "エクスポートが成功しました",
|
||||
"successful_detail": "エクスポートに成功しました。ダウンロード先のフォルダーを確認してください。",
|
||||
"confirm_stop": "データのエクスポートを停止してよろしいですか?改めてやり直す必要があります。",
|
||||
"exporting_your_data": "データをエクスポートしています",
|
||||
"title": "チャットをエクスポート",
|
||||
"select_option": "以下のオプションを選択して、チャットをエクスポートできます",
|
||||
"format": "形式",
|
||||
"messages": "メッセージ",
|
||||
"size_limit": "サイズ制限",
|
||||
"include_attachments": "添付ファイルを含める"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "ビデオ通話ルームを作成",
|
||||
|
@ -3807,7 +3772,6 @@
|
|||
"unsupported": "通話はサポートされていません",
|
||||
"unsupported_browser": "このブラウザーで通話を発信することはできません。"
|
||||
},
|
||||
"Messages": "メッセージ",
|
||||
"Other": "その他",
|
||||
"Advanced": "詳細",
|
||||
"room_settings": {
|
||||
|
@ -3895,5 +3859,49 @@
|
|||
"spaceinvaders_message": "スペースインベーダーを送る",
|
||||
"hearts_description": "メッセージをハートと共に送信",
|
||||
"hearts_message": "ハートを送信"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "このスペースにユーザーを招待する権限がありません",
|
||||
"error_no_permission_create_room": "このスペースに新しいルームを作成する権限がありません",
|
||||
"error_no_permission_add_room": "このスペースにルームを追加する権限がありません",
|
||||
"error_no_permission_add_space": "このスペースに別のスペースを追加する権限がありません"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "%(provider)sで続行",
|
||||
"sign_in_with_sso": "シングルサインオンを使用してサインイン",
|
||||
"sso": "シングルサインオン",
|
||||
"reset_password_action": "パスワードを再設定",
|
||||
"reset_password_title": "パスワードを再設定"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "未読メッセージのあるルームを最初に表示",
|
||||
"show_previews": "メッセージのプレビューを表示",
|
||||
"sort_by": "並び替え",
|
||||
"sort_by_activity": "アクティビティー順",
|
||||
"sort_by_alphabet": "アルファベット順",
|
||||
"sublist_options": "オプションの一覧を表示",
|
||||
"show_n_more": {
|
||||
"other": "さらに%(count)s件を表示",
|
||||
"one": "さらに%(count)s件を表示"
|
||||
},
|
||||
"show_less": "詳細を非表示",
|
||||
"notification_options": "通知設定"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "報告する理由を記入してください。",
|
||||
"ignore_user": "ユーザーを無視",
|
||||
"hide_messages_from_user": "このユーザーのメッセージを非表示にするかどうか確認してください。",
|
||||
"nature_disagreement": "ユーザーの投稿内容が正しくない。\nこのユーザーをルームのモデレーターに報告します。",
|
||||
"nature_spam": "ユーザーが広告や、広告・プロパガンダへのリンクのスパムを行っている。\nこのユーザーをルームのモデレーターに報告します。",
|
||||
"report_to_homeserver_encrypted": "不法なコンテンツの投稿が行われ、モデレーターによる適切な管理がなされていない。\nこのルームを%(homeserver)sの管理者に報告します。ただし、管理者がこのルームの暗号化されたコンテンツを読み取ることはできません。",
|
||||
"nature_other": "その他の理由。問題を記入してください。\nルームのモデレーターに報告します。",
|
||||
"nature": "特徴を選び、このメッセージを報告する理由を記入してください。",
|
||||
"disagree": "同意しない",
|
||||
"toxic_behaviour": "危害を加える振る舞い",
|
||||
"illegal_content": "不法なコンテンツ",
|
||||
"spam_or_propaganda": "スパム、プロパガンダ",
|
||||
"report_entire_room": "ルーム全体を報告",
|
||||
"report_content_to_homeserver": "あなたのホームサーバーの管理者にコンテンツを報告",
|
||||
"description": "このメッセージを報告すると、このメッセージの一意の「イベントID」があなたのホームサーバーの管理者に送信されます。このルーム内のメッセージが暗号化されている場合、ホームサーバーの管理者はメッセージのテキストを読んだり、ファイルや画像を表示したりすることはできません。"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -151,10 +151,6 @@
|
|||
"Bell": "janbe",
|
||||
"Headphones": "selsnapra",
|
||||
"Rooms": "ve zilbe'i",
|
||||
"Show %(count)s more": {
|
||||
"other": "nu viska %(count)s na du",
|
||||
"one": "nu viska %(count)s na du"
|
||||
},
|
||||
"Search…": "nu sisku",
|
||||
"Sunday": "li jy. dy. ze detri",
|
||||
"Monday": "li jy. dy. pa detri",
|
||||
|
@ -223,7 +219,6 @@
|
|||
"Are you sure you want to leave the room '%(roomName)s'?": ".i xu do birti le du'u do kaidji le ka co'u pagbu le se zilbe'i be fo la'o zoi. %(roomName)s .zoi",
|
||||
"For security, this session has been signed out. Please sign in again.": ".i ki'u lo nu snura co'u jaspu le se samtcise'u .i ko za'u re'u co'a se jaspu",
|
||||
"<a>In reply to</a> <pill>": ".i nu <a>spuda</a> tu'a la'o zoi. <pill> .zoi",
|
||||
"Show less": "nu viska so'u da",
|
||||
"Unable to share email address": ".i da nabmi fi lo nu jungau le du'u samymri judri",
|
||||
"Unable to share phone number": ".i da nabmi fi lo nu jungau le du'u fonjudri",
|
||||
"Edit message": "nu basti fi le ka notci",
|
||||
|
@ -441,7 +436,6 @@
|
|||
"video_call": "nu vidvi fonjo'e",
|
||||
"call_failed": ".i da nabmi fi lo nu co'a fonjo'e"
|
||||
},
|
||||
"Messages": "notci",
|
||||
"devtools": {
|
||||
"category_other": "drata"
|
||||
},
|
||||
|
@ -471,5 +465,15 @@
|
|||
"complete_title": ".i mo'u co'a lacri",
|
||||
"complete_description": ".i mo'u co'a lacri le pilno"
|
||||
}
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "notci"
|
||||
},
|
||||
"room_list": {
|
||||
"show_n_more": {
|
||||
"other": "nu viska %(count)s na du",
|
||||
"one": "nu viska %(count)s na du"
|
||||
},
|
||||
"show_less": "nu viska so'u da"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"Failed to verify email address: make sure you clicked the link in the email": "ელ. ფოსტის მისამართის ვერიფიკაცია ვერ მოხერხდა: დარწმუნდი, რომ დააჭირე ბმულს ელ. ფოსტის წერილში",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "ამ ტელეფონის ნომრის დასადასტურებლად გამოიყენე ერთჯერადი ავტორიზაცია, საკუთარი იდენტობის დასადასტურებლად.",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "ელ. ფოსტის მისამართის დასადასტურებლად გამოიყენე ერთჯერადი ავტორიზაცია, საკუთარი იდენტობის დასადასტურებლად.",
|
||||
"Single Sign On": "ერთჯერადი ავტორიზაცია",
|
||||
"This phone number is already in use": "ტელეფონის ეს ნომერი დაკავებულია",
|
||||
"Identity server not set": "იდენთიფიკაციის სერვერი არ არის განსაზღვრული",
|
||||
"No identity access token found": "იდენთიფიკაციის წვდომის ტოკენი ვერ მოიძებნა",
|
||||
|
@ -60,5 +59,8 @@
|
|||
"hours_minutes_seconds_left": "%(hours)sს %(minutes)sწთ %(seconds)sწმ დარჩა",
|
||||
"minutes_seconds_left": "%(minutes)sწთ %(seconds)sწმ დარჩა",
|
||||
"seconds_left": "%(seconds)sწმ დარჩა"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "ერთჯერადი ავტორიზაცია"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -48,7 +48,6 @@
|
|||
"Anchor": "Tamdeyt",
|
||||
"Headphones": "Wennez",
|
||||
"Folder": "Akaram",
|
||||
"Show less": "Sken-d drus",
|
||||
"Show more": "Sken-d ugar",
|
||||
"Warning!": "Ɣur-k·m!",
|
||||
"Current password": "Awal uffir amiran",
|
||||
|
@ -75,9 +74,6 @@
|
|||
"Email Address": "Tansa n yimayl",
|
||||
"Phone Number": "Uṭṭun n tiliɣri",
|
||||
"Sign Up": "Jerred",
|
||||
"Sort by": "Semyizwer s",
|
||||
"Activity": "Armud",
|
||||
"A-Z": "A-Z",
|
||||
"Server error": "Tuccḍa n uqeddac",
|
||||
"Are you sure?": "Tebɣiḍ s tidet?",
|
||||
"Sunday": "Acer",
|
||||
|
@ -133,7 +129,6 @@
|
|||
"Your %(brand)s is misconfigured": "%(brand)s inek(inem) ur ittusbadu ara",
|
||||
"Use Single Sign On to continue": "Seqdec anekcum asuf akken ad tkemmleḍ",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Sentem timerna n tansa-a n yimayl s useqdec n unekcum asuf i ubeggen n timagit-in(im).",
|
||||
"Single Sign On": "Anekcum asuf",
|
||||
"Confirm adding email": "Sentem timerna n yimayl",
|
||||
"Click the button below to confirm adding this email address.": "Sit ɣef tqeffalt yellan ddaw i usentem n tmerna n tansa-a n yimayl.",
|
||||
"Add Email Address": "Rnu tansa n yimayl",
|
||||
|
@ -437,7 +432,6 @@
|
|||
"Join the discussion": "Ttekki deg udiwenni",
|
||||
"Start chatting": "Bdu adiwenni",
|
||||
"%(roomName)s is not accessible at this time.": "%(roomName)s ulac anekcum ɣer-s akka tura.",
|
||||
"Show previews of messages": "Sken tiskanin n yiznan",
|
||||
"Jump to first unread room.": "Ɛeddi ɣer texxamt tamezwarut ur nettwaɣra ara.",
|
||||
"Jump to first invite.": "Ɛreddi ɣer tinnubga tamezwarut.",
|
||||
"Add room": "Rnu taxxamt",
|
||||
|
@ -501,7 +495,6 @@
|
|||
"Custom level": "Sagen aswir",
|
||||
"<a>In reply to</a> <pill>": "<a>Deg tririt i</a> <pill>",
|
||||
"e.g. my-room": "e.g. taxxamt-inu",
|
||||
"Sign in with single sign-on": "Qqen s unekcum asuf",
|
||||
"And %(count)s more...": {
|
||||
"other": "D %(count)s ugar..."
|
||||
},
|
||||
|
@ -602,23 +595,7 @@
|
|||
"Forget this room": "Ttu taxxamt-a",
|
||||
"Reject & Ignore user": "Agi & Zgel aseqdac",
|
||||
"%(roomName)s does not exist.": "%(roomName)s ulac-it.",
|
||||
"Show rooms with unread messages first": "Sken tixxamin yesεan iznan ur nettwaɣra ara d timezwura",
|
||||
"List options": "Tixtiṛiyin n tebdart",
|
||||
"Show %(count)s more": {
|
||||
"other": "Sken %(count)s ugar",
|
||||
"one": "Sken %(count)s ugar"
|
||||
},
|
||||
"Notification options": "Tixtiṛiyin n wulɣu",
|
||||
"Room options": "Tixtiṛiyin n texxamt",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 ubdar ur nettwaɣra ara.",
|
||||
"other": "%(count)s yiznan ur nettwaɣra ara rnu ɣer-sen ibdaren."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "Iznan ur nettwaɣra ara %(count)s.",
|
||||
"one": "1 yizen ur nettwaɣra ara."
|
||||
},
|
||||
"Unread messages.": "Iznan ur nettwaɣra ara.",
|
||||
"All Rooms": "Akk tixxamin",
|
||||
"Unknown Command": "Taladna tarussint",
|
||||
"Mark all as read": "Creḍ kullec yettwaɣra",
|
||||
|
@ -647,7 +624,6 @@
|
|||
"Rotate Left": "Zzi ɣer uzelmaḍ",
|
||||
"Rotate Right": "Zzi ɣer uyeffus",
|
||||
"Language Dropdown": "Tabdart n udrurem n tutlayin",
|
||||
"QR Code": "Tangalt QR",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "YEgguma ad d-tali tedyant iɣef d-ttunefk tririt, ahat d tilin ur telli ara neɣ ur tesɛiḍ ara tisirag ad tt-twaliḍ.",
|
||||
"Room address": "Tansa n texxamt",
|
||||
"Some characters not allowed": "Kra n yisekkilen ur ttusirgen ara",
|
||||
|
@ -932,8 +908,6 @@
|
|||
"On": "Yermed",
|
||||
"Noisy": "Sɛan ṣṣut",
|
||||
"wait and try again later": "ṛǧu syen ɛreḍ tikkelt-nniḍen",
|
||||
"Please fill why you're reporting.": "Ttxil-k·m ini-aɣ-d ayɣer i d-tettazneḍ alɣu.",
|
||||
"Report Content to Your Homeserver Administrator": "Ttxil-k·m azen aneqqis i unedbal-ik·im n usebter agejdan",
|
||||
"Security Phrase": "Tafyirt n tɣellist",
|
||||
"Restoring keys from backup": "Tiririt n tsura seg uḥraz",
|
||||
"%(completed)s of %(total)s keys restored": "%(completed)s n %(total)s tsura i yettwarran",
|
||||
|
@ -1199,7 +1173,6 @@
|
|||
"You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Ilaq ad tesremdeḍ aya ma yella taxxamt ad tettwaseqdec kan i uttekki d trebbaɛ tigensanin ɣef uqeddac-ik·im agejdan. Ayagi ur yettubeddal ara ɣer sdat.",
|
||||
"You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "Ilaq ad tsenseḍ aya ma yella taxxamt ad tettuseqdac i uttekki d trebbaɛ tuffiɣin i yesɛan aqeddac-nsent agejdan. Aya ur yettwabeddal ara ɣer sdat.",
|
||||
"Block anyone not part of %(serverName)s from ever joining this room.": "Asewḥel n yal amdan ur nettekki ara deg %(serverName)s ur d-irennu ara akk ɣer texamt-a.",
|
||||
"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.": "Timenna ɣef yizen-a ad yazen \"asulay n uneḍru\" asuf i unedbal n uqeddac agejdan. Ma yella iznan n texxamt-a ttwawgelhen, anedbal-ik·im n uqeddac agejdan ur yettizmir ara ad d-iɣer aḍris n yizen neɣ senqed ifuyla neɣ tugniwin.",
|
||||
"To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "I wakken ad tkemmleḍ aseqdec n uqeddac agejdan n %(homeserverDomain)s ilaq ad talseḍ asenqed syen ad tqebleḍ tiwtilin-nneɣ s umata.",
|
||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Isefka n lqem aqbur n %(brand)s ttwafen. Ayagi ad d-yeglu s yir tamahalt n uwgelhen seg yixef ɣer yixef deg lqem aqbur. Iznan yettwawgelhen seg yixef ɣer yixef yettumbeddalen yakan mi akken yettuseqdac lqem aqbur yezmer ur asen-ittekkes ara uwgelhen deg lqem-a. Aya yezmer daɣen ad d-yeglu asefsex n yiznan yettumbeddalen s lqem-a. Ma yella temlaleḍ-d uguren, ffeɣ syen tuɣaleḍ-d tikkelt-nniḍen. I wakken ad tḥerzeḍ amazray n yiznan, sifeḍ rnu ales kter tisura-ik·im.",
|
||||
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "Ur tezmireḍ ara ad tazneḍ iznan alamma tesneqdeḍ syen ad tqebleḍ <consentLink>tiwtilin-nneɣ</consentLink>.",
|
||||
|
@ -1563,7 +1536,8 @@
|
|||
"secure_backup": "Aklas aɣellsan",
|
||||
"cross_signing": "Azmul anmidag",
|
||||
"identity_server": "Aqeddac n timagit",
|
||||
"integration_manager": "Amsefrak n umsidef"
|
||||
"integration_manager": "Amsefrak n umsidef",
|
||||
"qr_code": "Tangalt QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Kemmel",
|
||||
|
@ -1645,7 +1619,16 @@
|
|||
"send_report": "Azen aneqqis"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Umuɣ n useqdac"
|
||||
"user_menu": "Umuɣ n useqdac",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 ubdar ur nettwaɣra ara.",
|
||||
"other": "%(count)s yiznan ur nettwaɣra ara rnu ɣer-sen ibdaren."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "Iznan ur nettwaɣra ara %(count)s.",
|
||||
"one": "1 yizen ur nettwaɣra ara."
|
||||
},
|
||||
"unread_messages": "Iznan ur nettwaɣra ara."
|
||||
},
|
||||
"labs": {
|
||||
"pinning": "Arezzi n yizen",
|
||||
|
@ -2059,7 +2042,6 @@
|
|||
"call_failed_media_permissions": "Tettynefk tsiregt i useqdec takamiṛat",
|
||||
"call_failed_media_applications": "Ulac asnas-nniḍen i iseqdacen takamiṛat"
|
||||
},
|
||||
"Messages": "Iznan",
|
||||
"Other": "Nniḍen",
|
||||
"Advanced": "Talqayt",
|
||||
"room_settings": {
|
||||
|
@ -2107,5 +2089,31 @@
|
|||
"category_flags": "Anayen",
|
||||
"categories": "Taggayin",
|
||||
"quick_reactions": "Tisedmirin tiruradin"
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Qqen s unekcum asuf",
|
||||
"sso": "Anekcum asuf"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Iznan"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Sken tixxamin yesεan iznan ur nettwaɣra ara d timezwura",
|
||||
"show_previews": "Sken tiskanin n yiznan",
|
||||
"sort_by": "Semyizwer s",
|
||||
"sort_by_activity": "Armud",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Tixtiṛiyin n tebdart",
|
||||
"show_n_more": {
|
||||
"other": "Sken %(count)s ugar",
|
||||
"one": "Sken %(count)s ugar"
|
||||
},
|
||||
"show_less": "Sken-d drus",
|
||||
"notification_options": "Tixtiṛiyin n wulɣu"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Ttxil-k·m ini-aɣ-d ayɣer i d-tettazneḍ alɣu.",
|
||||
"report_content_to_homeserver": "Ttxil-k·m azen aneqqis i unedbal-ik·im n usebter agejdan",
|
||||
"description": "Timenna ɣef yizen-a ad yazen \"asulay n uneḍru\" asuf i unedbal n uqeddac agejdan. Ma yella iznan n texxamt-a ttwawgelhen, anedbal-ik·im n uqeddac agejdan ur yettizmir ara ad d-iɣer aḍris n yizen neɣ senqed ifuyla neɣ tugniwin."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -688,7 +688,6 @@
|
|||
"This account has been deactivated.": "이 계정은 비활성화되었습니다.",
|
||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "지금 %(hs)s 서버로 로그인하고 있는데, matrix.org로 로그인해야 합니다.",
|
||||
"Failed to perform homeserver discovery": "홈서버 검색 수행에 실패함",
|
||||
"Sign in with single sign-on": "통합 인증(SSO)으로 로그인",
|
||||
"Create account": "계정 만들기",
|
||||
"Registration has been disabled on this homeserver.": "이 홈서버는 등록이 비활성화되어 있습니다.",
|
||||
"Unable to query for supported registration methods.": "지원하는 등록 방식을 쿼리할 수 없습니다.",
|
||||
|
@ -749,9 +748,6 @@
|
|||
},
|
||||
"Remove recent messages": "최근 메시지 삭제",
|
||||
"Explore rooms": "방 검색",
|
||||
"Please fill why you're reporting.": "왜 신고하는 지 이유를 적어주세요.",
|
||||
"Report Content to Your Homeserver Administrator": "홈서버 관리자에게 내용 신고하기",
|
||||
"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.": "이 메시지를 신고하면 고유 '이벤트 ID'를 홈서버의 관리자에게 보내게 됩니다. 이 방의 메시지가 암호화되어 있다면, 홈서버 관리자는 메시지 문자를 읽거나 파일 혹은 사진을 볼 수 없습니다.",
|
||||
"Verify the link in your inbox": "메일함에 있는 링크로 확인",
|
||||
"Read Marker lifetime (ms)": "이전 대화 경계선 표시 시간 (ms)",
|
||||
"Read Marker off-screen lifetime (ms)": "이전 대화 경계선 사라지는 시간 (ms)",
|
||||
|
@ -769,14 +765,6 @@
|
|||
"User Autocomplete": "사용자 자동 완성",
|
||||
"Show image": "이미지 보이기",
|
||||
"Clear cache and reload": "캐시 지우기 및 새로고침",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "언급을 포함한 %(count)s개의 읽지 않은 메시지.",
|
||||
"one": "1개의 읽지 않은 언급."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s개의 읽지 않은 메시지.",
|
||||
"one": "1개의 읽지 않은 메시지."
|
||||
},
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "홈서버 설정에서 캡챠 공개 키가 없습니다. 홈서버 관리자에게 이것을 신고해주세요.",
|
||||
"Your email address hasn't been verified yet": "이메일 주소가 아직 확인되지 않았습니다",
|
||||
"Click the link in the email you received to verify and then click continue again.": "받은 이메일에 있는 링크를 클릭해서 확인한 후에 계속하기를 클릭하세요.",
|
||||
|
@ -796,7 +784,6 @@
|
|||
"Jump to first unread room.": "읽지 않은 첫 방으로 건너뜁니다.",
|
||||
"Jump to first invite.": "첫 초대로 건너뜁니다.",
|
||||
"Room %(name)s": "%(name)s 방",
|
||||
"Unread messages.": "읽지 않은 메시지.",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "이 작업에는 이메일 주소 또는 전화번호를 확인하기 위해 기본 ID 서버 <server />에 접근해야 합니다. 하지만 서버가 서비스 약관을 갖고 있지 않습니다.",
|
||||
"Message Actions": "메시지 동작",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
|
@ -928,7 +915,6 @@
|
|||
"All rooms": "모든 방 목록",
|
||||
"Create a new space": "새로운 스페이스 만들기",
|
||||
"Create a space": "스페이스 만들기",
|
||||
"Export Chat": "대화 내보내기",
|
||||
"Export chat": "대화 내보내기",
|
||||
"Room settings": "방 설정",
|
||||
"Hide Widgets": "위젯 숨기기",
|
||||
|
@ -947,9 +933,6 @@
|
|||
"Start a conversation with someone using their name or username (like <userId/>).": "이름이나 사용자명(<userId/> 형식)을 사용하는 사람들과 대화를 시작하세요.",
|
||||
"Direct Messages": "다이렉트 메세지",
|
||||
"Explore public rooms": "공개 방 목록 살펴보기",
|
||||
"Show %(count)s more": {
|
||||
"other": "%(count)s개 더 보기"
|
||||
},
|
||||
"If you can't see who you're looking for, send them your invite link below.": "찾으려는 사람이 보이지 않으면, 아래의 초대링크를 보내세요.",
|
||||
"Some suggestions may be hidden for privacy.": "일부 추천 목록은 개인 정보 보호를 위해 보이지 않을 수 있습니다.",
|
||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "이름, 이메일, 사용자명(<userId/>) 으로 대화를 시작하세요.",
|
||||
|
@ -1441,7 +1424,6 @@
|
|||
"unable_to_access_media": "웹캠 / 마이크에 접근 불가",
|
||||
"already_in_call": "이미 전화중"
|
||||
},
|
||||
"Messages": "메시지",
|
||||
"Other": "기타",
|
||||
"Advanced": "고급",
|
||||
"room_settings": {
|
||||
|
@ -1481,5 +1463,33 @@
|
|||
"category_symbols": "기호",
|
||||
"category_flags": "깃발",
|
||||
"quick_reactions": "빠른 리액션"
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "통합 인증(SSO)으로 로그인"
|
||||
},
|
||||
"export_chat": {
|
||||
"title": "대화 내보내기",
|
||||
"messages": "메시지"
|
||||
},
|
||||
"room_list": {
|
||||
"show_n_more": {
|
||||
"other": "%(count)s개 더 보기"
|
||||
}
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "왜 신고하는 지 이유를 적어주세요.",
|
||||
"report_content_to_homeserver": "홈서버 관리자에게 내용 신고하기",
|
||||
"description": "이 메시지를 신고하면 고유 '이벤트 ID'를 홈서버의 관리자에게 보내게 됩니다. 이 방의 메시지가 암호화되어 있다면, 홈서버 관리자는 메시지 문자를 읽거나 파일 혹은 사진을 볼 수 없습니다."
|
||||
},
|
||||
"a11y": {
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "언급을 포함한 %(count)s개의 읽지 않은 메시지.",
|
||||
"one": "1개의 읽지 않은 언급."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s개의 읽지 않은 메시지.",
|
||||
"one": "1개의 읽지 않은 메시지."
|
||||
},
|
||||
"unread_messages": "읽지 않은 메시지."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
"Add Email Address": "ເພີ່ມອີເມວ",
|
||||
"Click the button below to confirm adding this email address.": "ກົດປຸ່ມຂ້າງລຸ່ມເພື່ອຢືນຢັນການເພີ່ມອີເມວນີ້.",
|
||||
"Confirm adding email": "ຢືນຢັນການເພີ່ມອີເມວ",
|
||||
"Single Sign On": "ເຂົ້າລະບົບແບບປະຕູດຽວ (SSO)",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "ຢືນຢັນການເພີ່ມອີເມວນີ້ໂດຍໃຊ້ ແບບປະຕູດຍວ (SSO)ເພື່ອພິສູດຕົວຕົນຂອງທ່ານ.",
|
||||
"Use Single Sign On to continue": "ໃຊ້ການເຂົ້າສູ່ລະບົບແບບປະຕູດຽວ (SSO) ເພື່ອສືບຕໍ່",
|
||||
"This phone number is already in use": "ເບີໂທນີ້ຖືກໃຊ້ແລ້ວ",
|
||||
|
@ -628,9 +627,6 @@
|
|||
"No live locations": "ບໍ່ມີສະຖານທີ່ປັດຈູບັນ",
|
||||
"Live location error": "ສະຖານທີ່ປັດຈຸບັນຜິດພາດ",
|
||||
"Live location ended": "ສະຖານທີ່ປັດຈຸບັນສິ້ນສຸດລົງແລ້ວ",
|
||||
"Join the beta": "ເຂົ້າຮ່ວມເບຕ້າ",
|
||||
"Click for more info": "ກົດສຳລັບຂໍ້ມູນເພີ່ມເຕີມ",
|
||||
"This is a beta feature": "ນີ້ແມ່ນຄຸນສົມບັດເບຕ້າ",
|
||||
"Move right": "ຍ້າຍໄປທາງຂວາ",
|
||||
"Move left": "ຍ້າຍໄປທາງຊ້າຍ",
|
||||
"Revoke permissions": "ຖອນການອະນຸຍາດ",
|
||||
|
@ -670,8 +666,6 @@
|
|||
"Join millions for free on the largest public server": "ເຂົ້າຮ່ວມຫຼາຍລ້ານຄົນໄດ້ໂດຍບໍ່ເສຍຄ່າໃນເຊີບເວີສາທາລະນະທີ່ໃຫຍ່ທີ່ສຸດ",
|
||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "ທ່ານສາມາດໃຊ້ຕົວເລືອກເຊີບເວີແບບກຳນົດເອງເພື່ອເຂົ້າສູ່ລະບົບເຊີບເວີ Matrix ອື່ນໂດຍການລະບຸ URL ເຊີບເວີອື່ນ. ນີ້ແມ່ນອະນຸຍາດໃຫ້ທ່ານໃຊ້ %(brand)s ກັບບັນຊີ Matrix ທີ່ມີຢູ່ແລ້ວໃນ homeserver ອື່ນ.",
|
||||
"Server Options": "ຕົວເລືອກເຊີບເວີ",
|
||||
"Sign in with single sign-on": "ເຂົ້າສູ່ລະບົບດ້ວຍການລົງຊື່ເຂົ້າໃຊ້ພຽງຄັ້ງດຽວ",
|
||||
"Continue with %(provider)s": "ສືບຕໍ່ກັບ %(provider)s",
|
||||
"Your server": "ເຊີບເວີຂອງທ່ານ",
|
||||
"Can't find this server or its room list": "ບໍ່ສາມາດຊອກຫາເຊີບເວີນີ້ ຫຼື ລາຍຊື່ຫ້ອງຂອງມັນໄດ້",
|
||||
"You are not allowed to view this server's rooms list": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງລາຍຊື່ຫ້ອງຂອງເຊີບເວີນີ້",
|
||||
|
@ -735,7 +729,6 @@
|
|||
"In reply to <a>this message</a>": "ໃນການຕອບກັບ <a>ຂໍ້ຄວາມນີ້</a>",
|
||||
"<a>In reply to</a> <pill>": "<a>ຕອບກັບ</a> <pill>",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "ບໍ່ສາມາດໂຫຼດກິດຈະກຳທີ່ຕອບກັບມາໄດ້, ມັນບໍ່ຢູ່ ຫຼື ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງມັນ.",
|
||||
"QR Code": "ລະຫັດ QR",
|
||||
"Custom level": "ລະດັບທີ່ກໍາຫນົດເອງ",
|
||||
"Power level": "ລະດັບພະລັງງານ",
|
||||
"Results are only revealed when you end the poll": "ຜົນໄດ້ຮັບຈະຖືກເປີດເຜີຍເມື່ອທ່ານສິ້ນສຸດແບບສຳຫຼວດເທົ່ານັ້ນ",
|
||||
|
@ -1010,15 +1003,6 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "ຫ້ອງນີ້ກຳລັງດຳເນິນເວີຊັ້ນຫ້ອງ <roomVersion />, ເຊິ່ງ homeserver ນີ້ໄດ້ສ້າງເຄື່ອງໝາຍເປັນ <i>unstable</i>.",
|
||||
"This room has already been upgraded.": "ຫ້ອງນີ້ໄດ້ຖືກປັບປຸງແລ້ວ.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "ການຍົກລະດັບຫ້ອງນີ້ຈະປິດຕົວຢ່າງປັດຈຸບັນຂອງຫ້ອງ ແລະ ຍົກລະດັບການສ້າງຫ້ອງທີ່ມີຊື່ດຽວກັນ.",
|
||||
"Unread messages.": "ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ.",
|
||||
"other": "%(count)s ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "ການກ່າວເຖິງທີ່ຍັງບໍ່ໄດ້ອ່ານ 1.",
|
||||
"other": "%(count)s ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ ລວມທັງການກ່າວເຖິງ."
|
||||
},
|
||||
"%(count)s participants": {
|
||||
"one": "ຜູ້ເຂົ້າຮ່ວມ 1ຄົນ",
|
||||
"other": "ຜູ້ເຂົ້າຮ່ວມ %(count)s ຄົນ"
|
||||
|
@ -1028,18 +1012,6 @@
|
|||
"Favourite": "ສິ່ງທີ່ມັກ",
|
||||
"Favourited": "ສີ່ງທີ່ມັກ",
|
||||
"Forget Room": "ລືມຫ້ອງ",
|
||||
"Notification options": "ຕົວເລືອກການແຈ້ງເຕືອນ",
|
||||
"Show less": "ສະແດງໜ້ອຍລົງ",
|
||||
"Show %(count)s more": {
|
||||
"one": "ສະແດງ %(count)s ເພີ່ມເຕີມ",
|
||||
"other": "ສະແດງ %(count)s ເພີ່ມເຕີມ"
|
||||
},
|
||||
"List options": "ລາຍຊື່ຕົວເລືອກ",
|
||||
"A-Z": "A-Z",
|
||||
"Activity": "ກິດຈະກໍາ",
|
||||
"Sort by": "ຈັດຮຽງຕາມ",
|
||||
"Show previews of messages": "ສະແດງຕົວຢ່າງຂອງຂໍ້ຄວາມ",
|
||||
"Show rooms with unread messages first": "ສະແດງຫ້ອງຂໍ້ຄວາມທີ່ຍັງບໍ່ທັນໄດ້ອ່ານກ່ອນ",
|
||||
"%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s ຖືກສົ່ງຄືນໃນຂະນະທີ່ພະຍາຍາມເຂົ້າເຖິງຫ້ອງ ຫຼື ພື້ນທີ່. ຖ້າຫາກທ່ານຄິດວ່າທ່ານກໍາລັງເຫັນຂໍ້ຄວາມນີ້ຜິດພາດ, ກະລຸນາ <issueLink>ສົ່ງບົດລາຍງານ bug</issueLink>.",
|
||||
"Try again later, or ask a room or space admin to check if you have access.": "ລອງໃໝ່ໃນພາຍຫຼັງ, ຫຼື ຂໍໃຫ້ຜູ້ຄຸ້ມຄອງຫ້ອງ ຫຼື ຜູ້ຄຸ້ມຄອງພື້ນທີ່ກວດເບິ່ງວ່າທ່ານມີການເຂົ້າເຖິງ ຫຼື ບໍ່.",
|
||||
"Force complete": "ບັງຄັບໃຫ້ສໍາເລັດ",
|
||||
|
@ -1596,7 +1568,6 @@
|
|||
"Your display name": "ສະແດງຊື່ຂອງທ່ານ",
|
||||
"Any of the following data may be shared:": "ຂໍ້ມູນຕໍ່ໄປນີ້ອາດຈະຖືກແບ່ງປັນ:",
|
||||
"Cancel search": "ຍົກເລີກການຄົ້ນຫາ",
|
||||
"The export was cancelled successfully": "ຍົກເລີກການສົ່ງອອກສຳເລັດແລ້ວ",
|
||||
"MB": "ເມກາໄບ",
|
||||
"Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສິ້ນສຸດການສຳຫຼວດນີ້? ນີ້ຈະສະແດງຜົນສຸດທ້າຍຂອງການລົງຄະແນນສຽງ ແລະ ຢຸດບໍ່ໃຫ້ປະຊາຊົນສາມາດລົງຄະແນນສຽງໄດ້.",
|
||||
"End Poll": "ສິ້ນສຸດການສຳຫຼວດ",
|
||||
|
@ -1646,20 +1617,6 @@
|
|||
"Please enter a name for the room": "ກະລຸນາໃສ່ຊື່ຫ້ອງ",
|
||||
"Clear all data": "ລຶບລ້າງຂໍ້ມູນທັງໝົດ",
|
||||
"Feedback sent": "ສົ່ງຄຳຕິຊົມແລ້ວ",
|
||||
"Include Attachments": "ລວມເອົາໄຟລ໌ຄັດຕິດ",
|
||||
"Size Limit": "ຂະໜາດຈຳກັດ",
|
||||
"Format": "ຮູບແບບ",
|
||||
"Select from the options below to export chats from your timeline": "ເລືອກ ຕົວເລືອກຂ້າງລຸ່ມນີ້ເພື່ອສົ່ງອອກການສົນທະນາຈາກທາມລາຍຂອງທ່ານ",
|
||||
"Export Chat": "ສົ່ງອອກການສົນທະນາ",
|
||||
"Exporting your data": "ກຳລັງສົ່ງອອກຂໍ້ມູນຂອງທ່ານ",
|
||||
"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.": "ການສົ່ງອອກຂອງທ່ານສຳເລັດແລ້ວ. ຊອກຫາຢູ່ໃນໂຟນເດີການດາວໂຫຼດຂອງທ່ານ.",
|
||||
"Export Successful": "ສົ່ງອອກສຳເລັດ",
|
||||
"Export Cancelled": "ຍົກເລີກການສົ່ງອອກ",
|
||||
"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 MB ແລະ %(max)s MB ເທົ່ານັ້ນ",
|
||||
"Enter a number between %(min)s and %(max)s": "ໃສ່ຕົວເລກລະຫວ່າງ %(min)s ແລະ %(max)s",
|
||||
"An error has occurred.": "ໄດ້ເກີດຂໍ້ຜິດພາດ.",
|
||||
"Sorry, the poll did not end. Please try again.": "ຂໍອະໄພ,ບໍ່ສາມາດສິ້ນສຸດການສຳຫຼວດ. ກະລຸນາລອງອີກຄັ້ງ.",
|
||||
"Failed to end poll": "ບໍ່ສາມາດສີ່ນສູດການສຳຫຼວດ",
|
||||
|
@ -1688,7 +1645,6 @@
|
|||
"Use a more compact 'Modern' layout": "ໃຊ້ຮູບແບບ 'ທັນສະໄຫມ' ທີ່ກະທັດຮັດກວ່າ",
|
||||
"Show polls button": "ສະແດງປຸ່ມແບບສຳຫຼວດ",
|
||||
"Use custom size": "ໃຊ້ຂະຫນາດທີ່ກໍາຫນົດເອງ",
|
||||
"Leave the beta": "ອອກຈາກເບຕ້າ",
|
||||
"Reply in thread": "ຕອບໃນກະທູ້",
|
||||
"Developer": "ນັກພັດທະນາ",
|
||||
"Experimental": "ທົດລອງ",
|
||||
|
@ -1924,12 +1880,6 @@
|
|||
"See emotes posted to your active room": "ເບິ່ງໂພສ emotes ໃນຫ້ອງຂອງທ່ານ",
|
||||
"See emotes posted to this room": "ເບິ່ງໂພສ emotes ໃນຫ້ອງນີ້",
|
||||
"Send emotes as you in your active room": "ສົ່ງ emotes ໃນຂະນະທີ່ທ່ານຢູ່ໃນຫ້ອງຂອງທ່ານ",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "ເຫດຜົນອື່ນໆ. ກະລຸນາອະທິບາຍບັນຫາ.\nອັນນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "ຫ້ອງນີ້ສ້າງຂຶ້ນເພື່ອເນື້ອຫາທີ່ຜິດກົດຫມາຍ ຫຼື ບໍ່ເໝາະສົມ ຫຼື ຜູ້ຄວບຄຸມບໍ່ສາມາດຄຸ້ມຄອງເນື້ອຫາທີ່ຜິດກົດຫມາຍຫຼື ບໍ່ເໝາະສົມ.\nອັນນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ບໍລິຫານຂອງ %(homeserver)s. ຜູ້ຄຸ້ມຄອງລະບົບຈະບໍ່ສາມາດອ່ານເນື້ອຫາທີ່ເຂົ້າລະຫັດໄວ້ຂອງຫ້ອງນີ້ໄດ້.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "ຜູ້ໃຊ້ນີ້ແມ່ນ spamming ຫ້ອງທີ່ມີການໂຄສະນາ, ການເຊື່ອມຕໍ່ກັບການໂຄສະນາ ຫຼື ການເຜີຍແຜ່.\nສິ່ງນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "ຜູ້ໃຊ້ນີ້ກຳລັງສະແດງພຶດຕິກຳທີ່ຜິດກົດໝາຍ, ດ້ວຍການໃສ່ຮ້າຍປ້າຍສີ ຫຼືຂົ່ມຂູ່ຄວາມຮຸນແຮງ.\nອັນນີ້ຈະຖືກລາຍງານຕໍ່ຜູ້ຄວບຄຸມຫ້ອງ ອາດຈະສົ່ງເລື່ອງຕໍ່ໃຫ້ເຈົ້າໜ້າທີ່ທາງກົດໝາຍ.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "ສິ່ງທີ່ຜູ້ໃຊ້ນີ້ຂຽນແມ່ນຜິດພາດ.\nສິ່ງນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"Please fill why you're reporting.": "ກະລຸນາຕື່ມຂໍ້ມູນວ່າເປັນຫຍັງທ່ານກໍາລັງລາຍງານ.",
|
||||
"Email (optional)": "ອີເມວ (ທາງເລືອກ)",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "ກະລຸນາຮັບຊາບວ່າ, ຖ້າທ່ານບໍ່ເພີ່ມອີເມວ ແລະ ລືມລະຫັດຜ່ານຂອງທ່ານ, ທ່ານອາດ <b>ສູນເສຍການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງຖາວອນ</b>.",
|
||||
"Confirm logging out these devices by using Single Sign On to prove your identity.": {
|
||||
|
@ -1948,15 +1898,10 @@
|
|||
"Low priority": "ບູລິມະສິດຕໍ່າ",
|
||||
"Add room": "ເພີ່ມຫ້ອງ",
|
||||
"Explore public rooms": "ສຳຫຼວດຫ້ອງສາທາລະນະ",
|
||||
"You do not have permissions to add rooms to this space": "ທ່ານບໍ່ມີສິດໃນການເພີ່ມຫ້ອງໃສ່ພື້ນທີ່ນີ້",
|
||||
"Add existing room": "ເພີ່ມຫ້ອງທີ່ມີຢູ່",
|
||||
"New video room": "ຫ້ອງວິດີໂອໃຫມ່",
|
||||
"You do not have permissions to create new rooms in this space": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ສ້າງຫ້ອງໃຫມ່ໃນພື້ນທີ່ນີ້",
|
||||
"New room": "ຫ້ອງໃຫມ່",
|
||||
"Explore rooms": "ການສຳຫຼວດຫ້ອງ",
|
||||
"Illegal Content": "ເນື້ອຫາທີ່ຜິດຕໍ່ກົດໝາຍ",
|
||||
"Toxic Behaviour": "ພຶດຕິກຳທີ່ບໍ່ເປັນມິດ",
|
||||
"Disagree": "ບໍ່ເຫັນດີ",
|
||||
"Connecting": "ກຳລັງເຊື່ອມຕໍ່",
|
||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s%(day)s%(fullYear)s%(time)s",
|
||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
|
||||
|
@ -2071,7 +2016,6 @@
|
|||
"other": "ປະຈຸບັນກຳລັງເຂົ້າຮ່ວມ %(count)s ຫ້ອງ"
|
||||
},
|
||||
"Join public room": "ເຂົ້າຮ່ວມຫ້ອງສາທາລະນະ",
|
||||
"You do not have permissions to add spaces to this space": "ທ່ານບໍ່ມີການອະນຸຍາດໃຫ້ເພີ່ມພື້ນທີ່ໃສ່ພື້ນທີ່ນີ້",
|
||||
"Add space": "ເພີ່ມພື້ນທີ່",
|
||||
"Don't leave any rooms": "ຢ່າອອກຈາກຫ້ອງ",
|
||||
"Would you like to leave the rooms in this space?": "ທ່ານຕ້ອງການອອກຈາກຫ້ອງໃນພື້ນທີ່ນີ້ບໍ?",
|
||||
|
@ -2348,10 +2292,6 @@
|
|||
"Preparing to download logs": "ກຳລັງກະກຽມດາວໂຫຼດບັນທຶກ",
|
||||
"Failed to send logs: ": "ສົ່ງບັນທຶກບໍ່ສຳເລັດ: ",
|
||||
"Room Settings - %(roomName)s": "ການຕັ້ງຄ່າຫ້ອງ - %(roomName)s",
|
||||
"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.": "ການລາຍງານຂໍ້ຄວາມນີ້ຈະສົ່ງ 'ID ເຫດການ' ທີ່ບໍ່ຊໍ້າກັນໄປຫາຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານ. ຖ້າຂໍ້ຄວາມຢູ່ໃນຫ້ອງນີ້ຖືກເຂົ້າລະຫັດໄວ້, ຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານຈະບໍ່ສາມາດອ່ານຂໍ້ຄວາມ ຫຼືເບິ່ງໄຟລ໌ ຫຼືຮູບພາບຕ່າງໆໄດ້.",
|
||||
"Report Content to Your Homeserver Administrator": "ລາຍງານເນື້ອຫາໃຫ້ຜູ້ຄຸ້ມຄອງລະບົບ Homeserver ຂອງທ່ານ",
|
||||
"Report the entire room": "ລາຍງານຫ້ອງທັງໝົດ",
|
||||
"Spam or propaganda": "ຂໍ້ຄວາມຂີ້ເຫຍື້ອ ຫຼື ການໂຄສະນາເຜີຍແຜ່",
|
||||
"Close preview": "ປິດຕົວຢ່າງ",
|
||||
"Show %(count)s other previews": {
|
||||
"one": "ສະແດງຕົວຢ່າງ %(count)s ອື່ນໆ",
|
||||
|
@ -2390,13 +2330,11 @@
|
|||
"Invited": "ເຊີນ",
|
||||
"Start new chat": "ເລີ່ມການສົນທະນາໃໝ່",
|
||||
"Add people": "ເພີ່ມຄົນ",
|
||||
"You do not have permissions to invite people to this space": "ທ່ານບໍ່ມີສິດທີ່ຈະເຊີນຄົນເຂົ້າມາໃນພື້ນທີ່ນີ້",
|
||||
"Invite to space": "ເຊີນໄປຍັງພື້ນທີ່",
|
||||
"a key signature": "ລາຍເຊັນຫຼັກ",
|
||||
"a device cross-signing signature": "ການ cross-signing ອຸປະກອນ",
|
||||
"a new cross-signing key signature": "ການລົງລາຍເຊັນ cross-signing ແບບໃໝ່",
|
||||
"Thank you!": "ຂອບໃຈ!",
|
||||
"Please pick a nature and describe what makes this message abusive.": "ກະລຸນາເລືອກລັກສະນະ ແລະ ການອະທິບາຍຂອງຂໍ້ຄວາມໃດໜຶ່ງທີ່ສຸພາບ.",
|
||||
"Link to room": "ເຊື່ອມຕໍ່ທີ່ຫ້ອງ",
|
||||
"Link to selected message": "ເຊື່ອມຕໍ່ກັບຂໍ້ຄວາມທີ່ເລືອກ",
|
||||
"Share Room Message": "ແບ່ງປັນຂໍ້ຄວາມໃນຫ້ອງ",
|
||||
|
@ -2482,8 +2420,6 @@
|
|||
"Check your email to continue": "ກວດເມວຂອງທ່ານເພື່ອສືບຕໍ່",
|
||||
"An error occurred whilst sharing your live location, please try again": "ພົບບັນຫາຕອນກຳລັງແບ່ງປັນຈຸດພິກັດຂອງທ່ານ, ກະລຸນາລອງໃໝ່",
|
||||
"An error occurred whilst sharing your live location": "ພົບບັນຫາຕອນກຳລັງແບ່ງປັນຈຸດພິກັດຂອງທ່ານ",
|
||||
"Check if you want to hide all current and future messages from this user.": "ກວດຄືນຫາກວ່ທ່ານຕ້ອງການເຊື່ອງການສົນທະນາກັບຜູ້ໃຊ້ນີ້ດຽວນີ້ ຫຼືໃນອະນາຄົດ.",
|
||||
"Ignore user": "ລະເວັ້ນຜູ້ໃຊ້",
|
||||
"Click to read topic": "ກົດເພື່ອອ່ານຫົວຂໍ້",
|
||||
"Edit topic": "ແກ້ໄຂຫົວຂໍ້",
|
||||
"Joining…": "ກຳລັງເຂົ້າ…",
|
||||
|
@ -2568,7 +2504,8 @@
|
|||
"secure_backup": "ການສໍາຮອງທີ່ປອດໄພ",
|
||||
"cross_signing": "ການເຂົ້າລະຫັດແບບໄຂ້ວ",
|
||||
"identity_server": "ຕົວເຊີບເວີ",
|
||||
"integration_manager": "ຜູ້ຈັດການປະສົມປະສານ"
|
||||
"integration_manager": "ຜູ້ຈັດການປະສົມປະສານ",
|
||||
"qr_code": "ລະຫັດ QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "ສືບຕໍ່",
|
||||
|
@ -2665,7 +2602,16 @@
|
|||
"clear": "ຈະແຈ້ງ"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "ເມນູຜູ້ໃຊ້"
|
||||
"user_menu": "ເມນູຜູ້ໃຊ້",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "ການກ່າວເຖິງທີ່ຍັງບໍ່ໄດ້ອ່ານ 1.",
|
||||
"other": "%(count)s ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ ລວມທັງການກ່າວເຖິງ."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ.",
|
||||
"other": "%(count)s ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ."
|
||||
},
|
||||
"unread_messages": "ຂໍ້ຄວາມທີ່ຍັງບໍ່ໄດ້ອ່ານ."
|
||||
},
|
||||
"labs": {
|
||||
"msc3531_hide_messages_pending_moderation": "ໃຫ້ຜູ້ຄວບຄຸມການເຊື່ອງຂໍ້ຄວາມທີ່ລໍຖ້າການກັ່ນຕອງ.",
|
||||
|
@ -2687,7 +2633,11 @@
|
|||
"group_themes": "ຫົວຂໍ້",
|
||||
"group_encryption": "ການເຂົ້າລະຫັດ",
|
||||
"group_experimental": "ທົດລອງ",
|
||||
"group_developer": "ນັກພັດທະນາ"
|
||||
"group_developer": "ນັກພັດທະນາ",
|
||||
"beta_feature": "ນີ້ແມ່ນຄຸນສົມບັດເບຕ້າ",
|
||||
"click_for_info": "ກົດສຳລັບຂໍ້ມູນເພີ່ມເຕີມ",
|
||||
"leave_beta": "ອອກຈາກເບຕ້າ",
|
||||
"join_beta": "ເຂົ້າຮ່ວມເບຕ້າ"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "ໜ້າຫຼັກ",
|
||||
|
@ -2944,7 +2894,23 @@
|
|||
"export_info": "ນີ້ແມ່ນຈຸດເລີ່ມຕົ້ນຂອງການສົ່ງອອກຂອງ <roomName/>. ສົ່ງອອກໂດຍ <exporterDetails/> ທີ່ %(exportDate)s.",
|
||||
"topic": "ຫົວຂໍ້: %(topic)s",
|
||||
"error_fetching_file": "ເກີດຄວາມຜິດພາດໃນການດຶງໄຟລ໌",
|
||||
"file_attached": "ແນບໄຟລ໌"
|
||||
"file_attached": "ແນບໄຟລ໌",
|
||||
"enter_number_between_min_max": "ໃສ່ຕົວເລກລະຫວ່າງ %(min)s ແລະ %(max)s",
|
||||
"size_limit_min_max": "ຂະໜາດສາມາດເປັນຕົວເລກລະຫວ່າງ %(min)s MB ແລະ %(max)s MB ເທົ່ານັ້ນ",
|
||||
"num_messages_min_max": "ຈໍານວນຂໍ້ຄວາມສາມາດເປັນຕົວເລກລະຫວ່າງ %(min)s ແລະ %(max)s ເທົ່ານັ້ນ",
|
||||
"num_messages": "ຈໍານວນຂໍ້ຄວາມ",
|
||||
"cancelled": "ຍົກເລີກການສົ່ງອອກ",
|
||||
"cancelled_detail": "ຍົກເລີກການສົ່ງອອກສຳເລັດແລ້ວ",
|
||||
"successful": "ສົ່ງອອກສຳເລັດ",
|
||||
"successful_detail": "ການສົ່ງອອກຂອງທ່ານສຳເລັດແລ້ວ. ຊອກຫາຢູ່ໃນໂຟນເດີການດາວໂຫຼດຂອງທ່ານ.",
|
||||
"confirm_stop": "ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການຢຸດການສົ່ງອອກຂໍ້ມູນຂອງທ່ານ? ຖ້າທ່ານດຳເນິນການ, ທ່ານຈະຕ້ອງເລີ່ມຕົ້ນໃໝ່.",
|
||||
"exporting_your_data": "ກຳລັງສົ່ງອອກຂໍ້ມູນຂອງທ່ານ",
|
||||
"title": "ສົ່ງອອກການສົນທະນາ",
|
||||
"select_option": "ເລືອກ ຕົວເລືອກຂ້າງລຸ່ມນີ້ເພື່ອສົ່ງອອກການສົນທະນາຈາກທາມລາຍຂອງທ່ານ",
|
||||
"format": "ຮູບແບບ",
|
||||
"messages": "ຂໍ້ຄວາມ",
|
||||
"size_limit": "ຂະໜາດຈຳກັດ",
|
||||
"include_attachments": "ລວມເອົາໄຟລ໌ຄັດຕິດ"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "ສ້າງຫ້ອງວິດີໂອ",
|
||||
|
@ -3335,7 +3301,6 @@
|
|||
"unsupported": "ບໍ່ຮອງຮັບການໂທ",
|
||||
"unsupported_browser": "ທ່ານບໍ່ສາມາດໂທອອກໃນບຣາວເຊີນີ້ໄດ້."
|
||||
},
|
||||
"Messages": "ຂໍ້ຄວາມ",
|
||||
"Other": "ອື່ນໆ",
|
||||
"Advanced": "ຂັ້ນສູງ",
|
||||
"room_settings": {
|
||||
|
@ -3419,5 +3384,48 @@
|
|||
"spaceinvaders_message": "ສົ່ງຜູ້ຮຸກຮານພື້ນທີ່",
|
||||
"hearts_description": "ສົ່ງຂໍ້ຄວາມທີ່ກຳນົດ ດ້ວຍຮູບຫົວໃຈ",
|
||||
"hearts_message": "ສົ່ງຮູບຫົວໃຈ"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "ທ່ານບໍ່ມີສິດທີ່ຈະເຊີນຄົນເຂົ້າມາໃນພື້ນທີ່ນີ້",
|
||||
"error_no_permission_create_room": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ສ້າງຫ້ອງໃຫມ່ໃນພື້ນທີ່ນີ້",
|
||||
"error_no_permission_add_room": "ທ່ານບໍ່ມີສິດໃນການເພີ່ມຫ້ອງໃສ່ພື້ນທີ່ນີ້",
|
||||
"error_no_permission_add_space": "ທ່ານບໍ່ມີການອະນຸຍາດໃຫ້ເພີ່ມພື້ນທີ່ໃສ່ພື້ນທີ່ນີ້"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "ສືບຕໍ່ກັບ %(provider)s",
|
||||
"sign_in_with_sso": "ເຂົ້າສູ່ລະບົບດ້ວຍການລົງຊື່ເຂົ້າໃຊ້ພຽງຄັ້ງດຽວ",
|
||||
"sso": "ເຂົ້າລະບົບແບບປະຕູດຽວ (SSO)"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "ສະແດງຫ້ອງຂໍ້ຄວາມທີ່ຍັງບໍ່ທັນໄດ້ອ່ານກ່ອນ",
|
||||
"show_previews": "ສະແດງຕົວຢ່າງຂອງຂໍ້ຄວາມ",
|
||||
"sort_by": "ຈັດຮຽງຕາມ",
|
||||
"sort_by_activity": "ກິດຈະກໍາ",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "ລາຍຊື່ຕົວເລືອກ",
|
||||
"show_n_more": {
|
||||
"one": "ສະແດງ %(count)s ເພີ່ມເຕີມ",
|
||||
"other": "ສະແດງ %(count)s ເພີ່ມເຕີມ"
|
||||
},
|
||||
"show_less": "ສະແດງໜ້ອຍລົງ",
|
||||
"notification_options": "ຕົວເລືອກການແຈ້ງເຕືອນ"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "ກະລຸນາຕື່ມຂໍ້ມູນວ່າເປັນຫຍັງທ່ານກໍາລັງລາຍງານ.",
|
||||
"ignore_user": "ລະເວັ້ນຜູ້ໃຊ້",
|
||||
"hide_messages_from_user": "ກວດຄືນຫາກວ່ທ່ານຕ້ອງການເຊື່ອງການສົນທະນາກັບຜູ້ໃຊ້ນີ້ດຽວນີ້ ຫຼືໃນອະນາຄົດ.",
|
||||
"nature_disagreement": "ສິ່ງທີ່ຜູ້ໃຊ້ນີ້ຂຽນແມ່ນຜິດພາດ.\nສິ່ງນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"nature_illegal": "ຜູ້ໃຊ້ນີ້ກຳລັງສະແດງພຶດຕິກຳທີ່ຜິດກົດໝາຍ, ດ້ວຍການໃສ່ຮ້າຍປ້າຍສີ ຫຼືຂົ່ມຂູ່ຄວາມຮຸນແຮງ.\nອັນນີ້ຈະຖືກລາຍງານຕໍ່ຜູ້ຄວບຄຸມຫ້ອງ ອາດຈະສົ່ງເລື່ອງຕໍ່ໃຫ້ເຈົ້າໜ້າທີ່ທາງກົດໝາຍ.",
|
||||
"nature_spam": "ຜູ້ໃຊ້ນີ້ແມ່ນ spamming ຫ້ອງທີ່ມີການໂຄສະນາ, ການເຊື່ອມຕໍ່ກັບການໂຄສະນາ ຫຼື ການເຜີຍແຜ່.\nສິ່ງນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"report_to_homeserver_encrypted": "ຫ້ອງນີ້ສ້າງຂຶ້ນເພື່ອເນື້ອຫາທີ່ຜິດກົດຫມາຍ ຫຼື ບໍ່ເໝາະສົມ ຫຼື ຜູ້ຄວບຄຸມບໍ່ສາມາດຄຸ້ມຄອງເນື້ອຫາທີ່ຜິດກົດຫມາຍຫຼື ບໍ່ເໝາະສົມ.\nອັນນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ບໍລິຫານຂອງ %(homeserver)s. ຜູ້ຄຸ້ມຄອງລະບົບຈະບໍ່ສາມາດອ່ານເນື້ອຫາທີ່ເຂົ້າລະຫັດໄວ້ຂອງຫ້ອງນີ້ໄດ້.",
|
||||
"nature_other": "ເຫດຜົນອື່ນໆ. ກະລຸນາອະທິບາຍບັນຫາ.\nອັນນີ້ຈະຖືກລາຍງານໃຫ້ຜູ້ຄວບຄຸມຫ້ອງ.",
|
||||
"nature": "ກະລຸນາເລືອກລັກສະນະ ແລະ ການອະທິບາຍຂອງຂໍ້ຄວາມໃດໜຶ່ງທີ່ສຸພາບ.",
|
||||
"disagree": "ບໍ່ເຫັນດີ",
|
||||
"toxic_behaviour": "ພຶດຕິກຳທີ່ບໍ່ເປັນມິດ",
|
||||
"illegal_content": "ເນື້ອຫາທີ່ຜິດຕໍ່ກົດໝາຍ",
|
||||
"spam_or_propaganda": "ຂໍ້ຄວາມຂີ້ເຫຍື້ອ ຫຼື ການໂຄສະນາເຜີຍແຜ່",
|
||||
"report_entire_room": "ລາຍງານຫ້ອງທັງໝົດ",
|
||||
"report_content_to_homeserver": "ລາຍງານເນື້ອຫາໃຫ້ຜູ້ຄຸ້ມຄອງລະບົບ Homeserver ຂອງທ່ານ",
|
||||
"description": "ການລາຍງານຂໍ້ຄວາມນີ້ຈະສົ່ງ 'ID ເຫດການ' ທີ່ບໍ່ຊໍ້າກັນໄປຫາຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານ. ຖ້າຂໍ້ຄວາມຢູ່ໃນຫ້ອງນີ້ຖືກເຂົ້າລະຫັດໄວ້, ຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານຈະບໍ່ສາມາດອ່ານຂໍ້ຄວາມ ຫຼືເບິ່ງໄຟລ໌ ຫຼືຮູບພາບຕ່າງໆໄດ້."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -506,8 +506,6 @@
|
|||
"Are you sure you want to deactivate your account? This is irreversible.": "Ar tikrai norite deaktyvuoti savo paskyrą? Tai yra negrįžtama.",
|
||||
"Verify session": "Patvirtinti seansą",
|
||||
"Are you sure you want to sign out?": "Ar tikrai norite atsijungti?",
|
||||
"Report Content to Your Homeserver Administrator": "Pranešti apie turinį serverio administratoriui",
|
||||
"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.": "Pranešant apie šią netinkamą žinutę, serverio administratoriui bus nusiųstas unikalus 'įvykio ID'. Jei žinutės šiame kambaryje yra šifruotos, serverio administratorius negalės perskaityti žinutės teksto ar peržiūrėti failų arba paveikslėlių.",
|
||||
"Are you sure you want to reject the invitation?": "Ar tikrai norite atmesti pakvietimą?",
|
||||
"Nice, strong password!": "Puiku, stiprus slaptažodis!",
|
||||
"Old cryptography data detected": "Aptikti seni kriptografijos duomenys",
|
||||
|
@ -515,7 +513,6 @@
|
|||
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Atnaujinkite šį seansą, kad jam būtų leista patvirtinti kitus seansus, suteikiant jiems prieigą prie šifruotų žinučių ir juos pažymint kaip patikimus kitiems vartotojams.",
|
||||
"Use Single Sign On to continue": "Norėdami tęsti naudokite Vieną Prisijungimą",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Patvirtinkite šio el. pašto adreso pridėjimą naudodami Vieną Prisijungimą, kad įrodytumėte savo tapatybę.",
|
||||
"Single Sign On": "Vienas Prisijungimas",
|
||||
"Confirm adding email": "Patvirtinkite el. pašto pridėjimą",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Patvirtinkite šio tel. nr. pridėjimą naudodami Vieną Prisijungimą, kad įrodytumėte savo tapatybę.",
|
||||
"Confirm adding phone number": "Patvirtinkite telefono numerio pridėjimą",
|
||||
|
@ -853,21 +850,13 @@
|
|||
"Joins room with given address": "Prisijungia prie kambario su nurodytu adresu",
|
||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Jūs ignoravote šį vartotoją, todėl jo žinutė yra paslėpta. <a>Rodyti vistiek.</a>",
|
||||
"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.": "Kai kas nors į savo žinutę įtraukia URL, gali būti rodoma URL peržiūra, suteikianti daugiau informacijos apie tą nuorodą, tokios kaip pavadinimas, aprašymas ir vaizdas iš svetainės.",
|
||||
"Show %(count)s more": {
|
||||
"one": "Rodyti dar %(count)s",
|
||||
"other": "Rodyti dar %(count)s"
|
||||
},
|
||||
"Show previews of messages": "Rodyti žinučių peržiūras",
|
||||
"Show rooms with unread messages first": "Pirmiausia rodyti kambarius su neperskaitytomis žinutėmis",
|
||||
"Show Widgets": "Rodyti Valdiklius",
|
||||
"Always show the window menu bar": "Visada rodyti lango meniu juostą",
|
||||
"Show less": "Rodyti mažiau",
|
||||
"Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "Neleisti vartotojams kalbėti senoje kambario versijoje ir paskelbti pranešimą, kuriame vartotojams patariama persikelti į naują kambarį",
|
||||
"Update any local room aliases to point to the new room": "Atnaujinkite vietinių kambarių slapyvardžius, kad nurodytumėte į naująjį kambarį",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Norint atnaujinti šį kambarį, reikia uždaryti esamą kambario instanciją ir vietoje jo sukurti naują kambarį. Norėdami suteikti kambario nariams kuo geresnę patirtį, mes:",
|
||||
"Upgrade Room Version": "Atnaujinti Kambario Versiją",
|
||||
"Upgrade this room to version %(version)s": "Atnaujinti šį kambarį į %(version)s versiją",
|
||||
"Please fill why you're reporting.": "Įrašykite kodėl pranešate.",
|
||||
"Put a link back to the old room at the start of the new room so people can see old messages": "Naujojo kambario pradžioje įdėkite nuorodą į senąjį kambarį, kad žmonės galėtų matyti senas žinutes",
|
||||
"Ignoring people is done through ban lists which contain rules for who to ban. Subscribing to a ban list means the users/servers blocked by that list will be hidden from you.": "Žmonių ignoravimas atliekamas naudojant draudimų sąrašus, kuriuose yra taisyklės, nurodančios kas turi būti draudžiami. Užsiprenumeravus draudimų sąrašą, vartotojai/serveriai, užblokuoti šio sąrašo, bus nuo jūsų paslėpti.",
|
||||
"The call was answered on another device.": "Į skambutį buvo atsiliepta kitame įrenginyje.",
|
||||
|
@ -953,17 +942,12 @@
|
|||
"You are currently ignoring:": "Šiuo metu ignoruojate:",
|
||||
"Are you sure? You will lose your encrypted messages if your keys are not backed up properly.": "Ar tikrai? Jūs prarasite savo šifruotas žinutes, jei jūsų raktams nebus tinkamai sukurtos atsarginės kopijos.",
|
||||
"Your keys are <b>not being backed up from this session</b>.": "Jūsų raktams <b>nėra daromos atsarginės kopijos iš šio seanso</b>.",
|
||||
"A-Z": "A-Ž",
|
||||
"Activity": "Aktyvumą",
|
||||
"Sort by": "Rūšiuoti pagal",
|
||||
"List options": "Sąrašo parinktys",
|
||||
"Notification Autocomplete": "Pranešimo Automatinis Užbaigimas",
|
||||
"Room Notification": "Kambario Pranešimas",
|
||||
"You have %(count)s unread notifications in a prior version of this room.": {
|
||||
"one": "Jūs turite %(count)s neperskaitytą pranešimą ankstesnėje šio kambario versijoje.",
|
||||
"other": "Jūs turite %(count)s neperskaitytus(-ų) pranešimus(-ų) ankstesnėje šio kambario versijoje."
|
||||
},
|
||||
"Notification options": "Pranešimų parinktys",
|
||||
"Favourited": "Mėgstamas",
|
||||
"Room options": "Kambario parinktys",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s negali saugiai talpinti šifruotų žinučių lokaliai, kai veikia interneto naršyklėje. Naudokite <desktopLink>%(brand)s Desktop (darbastalio versija)</desktopLink>, kad šifruotos žinutės būtų rodomos paieškos rezultatuose.",
|
||||
|
@ -1444,15 +1428,6 @@
|
|||
},
|
||||
"Joined": "Prisijungta",
|
||||
"Joining…": "Prisijungiama…",
|
||||
"Unread messages.": "Neperskaitytos žinutės.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 neperskaityta žinutė.",
|
||||
"other": "%(count)s neperskaitytos žinutės."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 neperskaitytas paminėjimas.",
|
||||
"other": "%(count)s neperskaitytos žinutės, įskaitant paminėjimus."
|
||||
},
|
||||
"Show Labs settings": "Rodyti laboratorijų nustatymus",
|
||||
"To join, please enable video rooms in Labs first": "Norint prisijungti, pirmiausia įjunkite vaizdo kambarius laboratorijose",
|
||||
"To view, please enable video rooms in Labs first": "Norint peržiūrėti, pirmiausia įjunkite vaizdo kambarius laboratorijose",
|
||||
|
@ -1591,7 +1566,6 @@
|
|||
"Use a more compact 'Modern' layout": "Naudoti kompaktiškesnį 'Modernų' išdėstymą",
|
||||
"Show polls button": "Rodyti apklausų mygtuką",
|
||||
"Explore public spaces in the new search dialog": "Tyrinėkite viešas erdves naujajame paieškos lange",
|
||||
"Leave the beta": "Palikti beta versiją",
|
||||
"Reply in thread": "Atsakyti temoje",
|
||||
"Developer": "Kūrėjas",
|
||||
"Experimental": "Eksperimentinis",
|
||||
|
@ -1663,7 +1637,6 @@
|
|||
"Hint: Begin your message with <code>//</code> to start it with a slash.": "Patarimas: norėdami žinutę pradėti pasviruoju brūkšniu, pradėkite ją su <code>//</code>.",
|
||||
"Unrecognised command: %(commandText)s": "Neatpažinta komanda: %(commandText)s",
|
||||
"Unknown Command": "Nežinoma komanda",
|
||||
"Download %(brand)s": "Atsisiųsti %(brand)s",
|
||||
"Enable hardware acceleration": "Įjungti aparatinį spartinimą",
|
||||
"Show tray icon and minimise window to it on close": "Rodyti dėklo piktogramą ir uždarius langą jį sumažinti į ją",
|
||||
"Automatically send debug logs when key backup is not functioning": "Automatiškai siųsti derinimo žurnalus, kai neveikia atsarginė raktų kopija",
|
||||
|
@ -1694,18 +1667,14 @@
|
|||
"other": "Šiuo metu prisijungiama prie %(count)s kambarių"
|
||||
},
|
||||
"Join public room": "Prisijungti prie viešo kambario",
|
||||
"You do not have permissions to add spaces to this space": "Neturite leidimų į šią erdvę pridėti erdvių",
|
||||
"Add space": "Pridėti erdvę",
|
||||
"Suggested Rooms": "Siūlomi kambariai",
|
||||
"Saved Items": "Išsaugoti daiktai",
|
||||
"Explore public rooms": "Tyrinėti viešuosius kambarius",
|
||||
"You do not have permissions to add rooms to this space": "Neturite leidimų pridėti kambarių į šią erdvę",
|
||||
"Add existing room": "Pridėti esamą kambarį",
|
||||
"New video room": "Naujas vaizdo kambarys",
|
||||
"You do not have permissions to create new rooms in this space": "Neturite leidimų kurti naujus kambarius šioje erdvėje",
|
||||
"New room": "Naujas kambarys",
|
||||
"Add people": "Pridėti žmonių",
|
||||
"You do not have permissions to invite people to this space": "Neturite leidimų kviesti žmones į šią erdvę",
|
||||
"Invite to space": "Pakviesti į erdvę",
|
||||
"Start new chat": "Pradėti naują pokalbį",
|
||||
"%(count)s members": {
|
||||
|
@ -2008,7 +1977,8 @@
|
|||
"group_themes": "Temos",
|
||||
"group_encryption": "Šifravimas",
|
||||
"group_experimental": "Eksperimentinis",
|
||||
"group_developer": "Kūrėjas"
|
||||
"group_developer": "Kūrėjas",
|
||||
"leave_beta": "Palikti beta versiją"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Pradžia",
|
||||
|
@ -2113,7 +2083,8 @@
|
|||
"enable_notifications": "Įjungti pranešimus",
|
||||
"download_app_description": "Nepraleiskite nieko, jei su savimi pasiimsite %(brand)s",
|
||||
"download_app_action": "Atsisiųsti programėles",
|
||||
"download_app": "Atsisiųsti %(brand)s"
|
||||
"download_app": "Atsisiųsti %(brand)s",
|
||||
"download_brand": "Atsisiųsti %(brand)s"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Rodyti neseniai peržiūrėtų kambarių nuorodas virš kambarių sąrašo",
|
||||
|
@ -2221,7 +2192,8 @@
|
|||
"one": "Eksportavome %(count)s įvyki per %(seconds)s sekundes",
|
||||
"other": "Eksportavome %(count)s įvykius per %(seconds)s sekundes"
|
||||
},
|
||||
"file_attached": "Failas pridėtas"
|
||||
"file_attached": "Failas pridėtas",
|
||||
"messages": "Žinutės"
|
||||
},
|
||||
"create_room": {
|
||||
"title_public_room": "Sukurti viešą kambarį",
|
||||
|
@ -2555,7 +2527,6 @@
|
|||
"unsupported": "Skambučiai nėra palaikomi",
|
||||
"unsupported_browser": "Jūs negalite skambinti šioje naršyklėje."
|
||||
},
|
||||
"Messages": "Žinutės",
|
||||
"Other": "Kitas",
|
||||
"Advanced": "Išplėstiniai",
|
||||
"room_settings": {
|
||||
|
@ -2635,5 +2606,44 @@
|
|||
"spaceinvaders_message": "siunčia kosmoso įsibrovėlius",
|
||||
"hearts_description": "Siunčia pateiktą žinutę su širdelėmis",
|
||||
"hearts_message": "Siunčia širdeles"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Neturite leidimų kviesti žmones į šią erdvę",
|
||||
"error_no_permission_create_room": "Neturite leidimų kurti naujus kambarius šioje erdvėje",
|
||||
"error_no_permission_add_room": "Neturite leidimų pridėti kambarių į šią erdvę",
|
||||
"error_no_permission_add_space": "Neturite leidimų į šią erdvę pridėti erdvių"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Vienas Prisijungimas"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Pirmiausia rodyti kambarius su neperskaitytomis žinutėmis",
|
||||
"show_previews": "Rodyti žinučių peržiūras",
|
||||
"sort_by": "Rūšiuoti pagal",
|
||||
"sort_by_activity": "Aktyvumą",
|
||||
"sort_by_alphabet": "A-Ž",
|
||||
"sublist_options": "Sąrašo parinktys",
|
||||
"show_n_more": {
|
||||
"one": "Rodyti dar %(count)s",
|
||||
"other": "Rodyti dar %(count)s"
|
||||
},
|
||||
"show_less": "Rodyti mažiau",
|
||||
"notification_options": "Pranešimų parinktys"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Įrašykite kodėl pranešate.",
|
||||
"report_content_to_homeserver": "Pranešti apie turinį serverio administratoriui",
|
||||
"description": "Pranešant apie šią netinkamą žinutę, serverio administratoriui bus nusiųstas unikalus 'įvykio ID'. Jei žinutės šiame kambaryje yra šifruotos, serverio administratorius negalės perskaityti žinutės teksto ar peržiūrėti failų arba paveikslėlių."
|
||||
},
|
||||
"a11y": {
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 neperskaitytas paminėjimas.",
|
||||
"other": "%(count)s neperskaitytos žinutės, įskaitant paminėjimus."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 neperskaityta žinutė.",
|
||||
"other": "%(count)s neperskaitytos žinutės."
|
||||
},
|
||||
"unread_messages": "Neperskaitytos žinutės."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -336,13 +336,7 @@
|
|||
"Use the <a>Desktop app</a> to search encrypted messages": "Izmantojiet <a>lietotni</a>, lai veiktu šifrētu ziņu meklēšanu",
|
||||
"%(creator)s created this DM.": "%(creator)s uzsāka šo tiešo saraksti.",
|
||||
"None": "Neviena",
|
||||
"Notification options": "Paziņojumu opcijas",
|
||||
"Room options": "Istabas opcijas",
|
||||
"Show previews of messages": "Rādīt ziņu priekšskatījumus",
|
||||
"Show rooms with unread messages first": "Rādīt istabas ar nelasītām ziņām augšpusē",
|
||||
"Activity": "Aktivitātes",
|
||||
"Sort by": "Kārtot pēc",
|
||||
"List options": "Saraksta opcijas",
|
||||
"Send feedback": "Nosūtīt atsauksmi",
|
||||
"Feedback sent": "Atsauksme nosūtīta",
|
||||
"Feedback": "Atsauksmes",
|
||||
|
@ -386,7 +380,6 @@
|
|||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Apstiprināt šīs epasta adreses pievienošanu, izmantojot vienoto pieteikšanos savas identitātes apliecināšanai.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Apstiprināt šī tālruņa numura pievienošanu, izmantojot vienoto pieteikšanos savas identitātes apliecināšanai.",
|
||||
"Click the button below to confirm adding this email address.": "Nospiest zemāk esošo pogu, lai apstiprinātu šīs e-pasta adreses pievienošanu.",
|
||||
"Single Sign On": "Vienotā pieteikšanās",
|
||||
"Use Single Sign On to continue": "Izmantot vienoto pieteikšanos, lai turpinātu",
|
||||
"Welcome %(name)s": "Laipni lūdzam %(name)s",
|
||||
"Welcome to %(appName)s": "Laipni lūdzam %(appName)s",
|
||||
|
@ -471,12 +464,7 @@
|
|||
"Published Addresses": "Publiskotās adreses",
|
||||
"Other published addresses:": "Citas publiskotās adreses:",
|
||||
"This address is already in use": "Šī adrese jau tiek izmantota",
|
||||
"Show less": "Rādīt mazāk",
|
||||
"Show more": "Rādīt vairāk",
|
||||
"Show %(count)s more": {
|
||||
"one": "Rādīt vēl %(count)s",
|
||||
"other": "Rādīt vēl %(count)s"
|
||||
},
|
||||
"There was an error updating the room's main address. It may not be allowed by the server or a temporary failure occurred.": "Notikusi kļūda, mēģinot atjaunināt istabas galveno adresi. Iespējams, tas ir liegts servera iestatījumos vai arī notikusi kāda pagaidu kļūme.",
|
||||
"Error updating main address": "Kļūda galvenās adreses atjaunināšanā",
|
||||
"This address is available to use": "Šī adrese ir pieejama",
|
||||
|
@ -661,7 +649,6 @@
|
|||
"Continue With Encryption Disabled": "Turpināt ar atspējotu šifrēšanu",
|
||||
"Create a new room": "Izveidot jaunu istabu",
|
||||
"All rooms": "Visas istabas",
|
||||
"Continue with %(provider)s": "Turpināt ar %(provider)s",
|
||||
"%(name)s cancelled": "%(name)s atcēla",
|
||||
"%(name)s cancelled verifying": "%(name)s atcēla verifikāciju",
|
||||
"Deactivate user": "Deaktivizēt lietotāju",
|
||||
|
@ -669,15 +656,6 @@
|
|||
"Demote": "Pazemināt",
|
||||
"Demote yourself?": "Pazemināt sevi?",
|
||||
"Accepting…": "Akceptē…",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 nelasīta ziņa.",
|
||||
"other": "%(count)s nelasītas ziņas."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 neslasīts pieminējums.",
|
||||
"other": "%(count)s nelasītas ziņas, ieskaitot pieminēšanu."
|
||||
},
|
||||
"A-Z": "A-Ž",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s priekšskatījums nav pieejams. Vai vēlaties tai pievienoties?",
|
||||
"Empty room": "Tukša istaba",
|
||||
"Add existing room": "Pievienot eksistējošu istabu",
|
||||
|
@ -1098,7 +1076,6 @@
|
|||
"Unexpected error resolving identity server configuration": "Negaidīta kļūda identitātes servera konfigurācijā",
|
||||
"Unexpected error resolving homeserver configuration": "Negaidīta kļūme bāzes 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",
|
||||
"Can't load this message": "Nevar ielādēt šo ziņu",
|
||||
"Send voice message": "Sūtīt balss ziņu",
|
||||
|
@ -1111,8 +1088,6 @@
|
|||
"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>",
|
||||
"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",
|
||||
"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",
|
||||
|
@ -1252,13 +1227,9 @@
|
|||
"Nothing pinned, yet": "Vēl nekas nav piesprausts",
|
||||
"Pinned messages": "Piespraustās ziņas",
|
||||
"Pinned": "Piesprausts",
|
||||
"Include Attachments": "Iekļaut pielikumus",
|
||||
"This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Šis fails ir <b>pārlieku liels</b>, lai to augšupielādētu. Faila izmēra ierobežojums ir %(limit)s, bet šis fails ir %(sizeOfThisFile)s.",
|
||||
"Size Limit": "Izmēra ierobežojums",
|
||||
"Space information": "Informācija par vietu",
|
||||
"Information": "Informācija",
|
||||
"Format": "Formāts",
|
||||
"Select from the options below to export chats from your timeline": "Lai eksportētu čatus no savas laika joslas, izvēlieties kādu no zemāk norādītajām iespējām",
|
||||
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Nevar atrast zemāk norādīto Matrix ID profilus - vai tomēr vēlaties tos uzaicināt?",
|
||||
"Some files are <b>too large</b> to be uploaded. The file size limit is %(limit)s.": "Daži faili ir <b>pārlieku lieli</b>, lai tos augšupielādētu. Faila izmēra ierobežojums ir %(limit)s.",
|
||||
"This version of %(brand)s does not support viewing some encrypted files": "Šī %(brand)s versija neatbalsta atsevišķu šifrētu failu skatīšanu",
|
||||
|
@ -1285,7 +1256,6 @@
|
|||
"Put a link back to the old room at the start of the new room so people can see old messages": "Jaunās istabas sākumā ievietojiet saiti uz veco istabu, lai cilvēki varētu apskatīt vecās ziņas",
|
||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Lai izvairītos no šīm problēmām, izveidojiet <a>jaunu publisku istabu</a> plānotajai sarunai.",
|
||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Lai izvairītos no šīm problēmām, izveidojiet <a>jaunu šifrētu istabu</a> plānotajai sarunai.",
|
||||
"You do not have permissions to create new rooms in this space": "Jums nav piekļuves tiesību veidot jaunas istabas šajā telpā vietā",
|
||||
"Automatically invite members from this room to the new one": "Automātiski uzaicināt dalībniekus no šīs istabas uz jauno",
|
||||
"Want to add a new room instead?": "Vai tā vietā vēlaties pievienot jaunu istabu?",
|
||||
"New video room": "Jauna video istaba",
|
||||
|
@ -1329,7 +1299,6 @@
|
|||
"Start a group chat": "Uzsākt grupas čatu",
|
||||
"Send your first message to invite <displayName/> to chat": "Nosūtiet savu pirmo ziņu, lai uzaicinātu <displayName/> uz čatu",
|
||||
"Messages in this chat will be end-to-end encrypted.": "Ziņām šajā istabā tiek piemērota pilnīga šifrēšana.",
|
||||
"Export Chat": "Eksportēt čatu",
|
||||
"Export chat": "Eksportēt čatu",
|
||||
"Back to chat": "Atgriezties uz čatu",
|
||||
"common": {
|
||||
|
@ -1451,7 +1420,15 @@
|
|||
"clear": "Notīrīt"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Lietotāja izvēlne"
|
||||
"user_menu": "Lietotāja izvēlne",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 neslasīts pieminējums.",
|
||||
"other": "%(count)s nelasītas ziņas, ieskaitot pieminēšanu."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 nelasīta ziņa.",
|
||||
"other": "%(count)s nelasītas ziņas."
|
||||
}
|
||||
},
|
||||
"labs": {
|
||||
"pinning": "Ziņu piespraušana",
|
||||
|
@ -1569,7 +1546,13 @@
|
|||
"category_other": "Citi"
|
||||
},
|
||||
"export_chat": {
|
||||
"creator_summary": "%(creatorName)s izveidoja šo istabu."
|
||||
"creator_summary": "%(creatorName)s izveidoja šo istabu.",
|
||||
"title": "Eksportēt čatu",
|
||||
"select_option": "Lai eksportētu čatus no savas laika joslas, izvēlieties kādu no zemāk norādītajām iespējām",
|
||||
"format": "Formāts",
|
||||
"messages": "Ziņas",
|
||||
"size_limit": "Izmēra ierobežojums",
|
||||
"include_attachments": "Iekļaut pielikumus"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Izveidot video istabu",
|
||||
|
@ -1890,7 +1873,6 @@
|
|||
"already_in_call": "Notiek zvans",
|
||||
"already_in_call_person": "Jums jau notiek zvans ar šo personu."
|
||||
},
|
||||
"Messages": "Ziņas",
|
||||
"Other": "Citi",
|
||||
"Advanced": "Papildu",
|
||||
"room_settings": {
|
||||
|
@ -1932,5 +1914,31 @@
|
|||
"category_symbols": "Simboli",
|
||||
"category_flags": "Karogi",
|
||||
"quick_reactions": "Ātra reaģēšana"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_create_room": "Jums nav piekļuves tiesību veidot jaunas istabas šajā telpā vietā"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Turpināt ar %(provider)s",
|
||||
"sso": "Vienotā pieteikšanās"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Rādīt istabas ar nelasītām ziņām augšpusē",
|
||||
"show_previews": "Rādīt ziņu priekšskatījumus",
|
||||
"sort_by": "Kārtot pēc",
|
||||
"sort_by_activity": "Aktivitātes",
|
||||
"sort_by_alphabet": "A-Ž",
|
||||
"sublist_options": "Saraksta opcijas",
|
||||
"show_n_more": {
|
||||
"one": "Rādīt vēl %(count)s",
|
||||
"other": "Rādīt vēl %(count)s"
|
||||
},
|
||||
"show_less": "Rādīt mazāk",
|
||||
"notification_options": "Paziņojumu opcijas"
|
||||
},
|
||||
"report_content": {
|
||||
"report_entire_room": "Ziņot par visu istabu",
|
||||
"report_content_to_homeserver": "Ziņojums par saturu bāzes servera administratoram",
|
||||
"description": "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."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -134,7 +134,6 @@
|
|||
"Anchor": "Anker",
|
||||
"Headphones": "Hodetelefoner",
|
||||
"Folder": "Mappe",
|
||||
"Show less": "Vis mindre",
|
||||
"Current password": "Nåværende passord",
|
||||
"New Password": "Nytt passord",
|
||||
"Confirm password": "Bekreft passord",
|
||||
|
@ -408,11 +407,6 @@
|
|||
"Replying": "Svarer på",
|
||||
"Room %(name)s": "Rom %(name)s",
|
||||
"Start chatting": "Begynn å chatte",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 ulest melding.",
|
||||
"other": "%(count)s uleste meldinger."
|
||||
},
|
||||
"Unread messages.": "Uleste meldinger.",
|
||||
"Send as message": "Send som en melding",
|
||||
"You don't currently have any stickerpacks enabled": "Du har ikke skrudd på noen klistremerkepakker for øyeblikket",
|
||||
"Add some now": "Legg til noen nå",
|
||||
|
@ -475,10 +469,6 @@
|
|||
"Remove %(email)s?": "Vil du fjerne %(email)s?",
|
||||
"Invalid Email Address": "Ugyldig E-postadresse",
|
||||
"Try to join anyway": "Forsøk å bli med likevel",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 ulest nevnelse.",
|
||||
"other": "%(count)s uleste meldinger inkludert der du nevnes."
|
||||
},
|
||||
"Command error": "Kommandofeil",
|
||||
"Room avatar": "Rommets avatar",
|
||||
"Start Verification": "Begynn verifisering",
|
||||
|
@ -614,9 +604,6 @@
|
|||
"eg: @bot:* or example.org": "f.eks.: @bot:* eller example.org",
|
||||
"To link to this room, please add an address.": "For å lenke til dette rommet, vennligst legg til en adresse.",
|
||||
"Remove %(phone)s?": "Vil du fjerne %(phone)s?",
|
||||
"Sort by": "Sorter etter",
|
||||
"Activity": "Aktivitet",
|
||||
"A-Z": "A-Å",
|
||||
"Message preview": "Meldingsforhåndsvisning",
|
||||
"This room has no local addresses": "Dette rommet har ikke noen lokale adresser",
|
||||
"Remove recent messages by %(user)s": "Fjern nylige meldinger fra %(user)s",
|
||||
|
@ -633,7 +620,6 @@
|
|||
"Add an Integration": "Legg til en integrering",
|
||||
"Can't load this message": "Klarte ikke å laste inn denne meldingen",
|
||||
"Popout widget": "Utsprettsmodul",
|
||||
"QR Code": "QR-kode",
|
||||
"Room address": "Rommets adresse",
|
||||
"This address is available to use": "Denne adressen er allerede i bruk",
|
||||
"Failed to send logs: ": "Mislyktes i å sende loggbøker: ",
|
||||
|
@ -676,11 +662,6 @@
|
|||
"To help us prevent this in future, please <a>send us logs</a>.": "For å hjelpe oss med å forhindre dette i fremtiden, vennligst <a>send oss loggfiler</a>.",
|
||||
"Lock": "Lås",
|
||||
"Server or user ID to ignore": "Tjener- eller bruker-ID-en som skal ignoreres",
|
||||
"Show %(count)s more": {
|
||||
"other": "Vis %(count)s til",
|
||||
"one": "Vis %(count)s til"
|
||||
},
|
||||
"Notification options": "Varselsinnstillinger",
|
||||
"Room options": "Rominnstillinger",
|
||||
"Your messages are not secure": "Dine meldinger er ikke sikre",
|
||||
"Edited at %(date)s": "Redigert den %(date)s",
|
||||
|
@ -766,7 +747,6 @@
|
|||
"The call was answered on another device.": "Samtalen ble besvart på en annen enhet.",
|
||||
"The call could not be established": "Samtalen kunne ikke etableres",
|
||||
"Click the button below to confirm adding this phone number.": "Klikk knappen nedenfor for å bekrefte dette telefonnummeret.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Bekreft dette telefonnummeret ved å bruke Single Sign On for å bevise din identitet.",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Befrekt denne e-postadressen ved å bruke Single Sign On for å bevise din identitet.",
|
||||
"Recently visited rooms": "Nylig besøkte rom",
|
||||
|
@ -850,7 +830,6 @@
|
|||
"Confirm your Security Phrase": "Bekreft sikkerhetsfrasen din",
|
||||
"Use app": "Bruk app",
|
||||
"Use app for a better experience": "Bruk appen for en bedre opplevelse",
|
||||
"Continue with %(provider)s": "Fortsett med %(provider)s",
|
||||
"This address is already in use": "Denne adressen er allerede i bruk",
|
||||
"<a>In reply to</a> <pill>": "<a>Som svar på</a> <pill>",
|
||||
"Information": "Informasjon",
|
||||
|
@ -863,7 +842,6 @@
|
|||
"Widgets": "Komponenter",
|
||||
"Favourited": "Favorittmerket",
|
||||
"Forget Room": "Glem rommet",
|
||||
"Show previews of messages": "Vis forhåndsvisninger av meldinger",
|
||||
"Invalid URL": "Ugyldig URL",
|
||||
"Continuing without email": "Fortsetter uten E-post",
|
||||
"Are you sure you want to sign out?": "Er du sikker på at du vil logge av?",
|
||||
|
@ -1109,7 +1087,6 @@
|
|||
"Report": "Rapporter",
|
||||
"Sent": "Sendt",
|
||||
"Sending": "Sender",
|
||||
"Format": "Format",
|
||||
"MB": "MB",
|
||||
"Add reaction": "Legg til reaksjon",
|
||||
"Downloading": "Laster ned",
|
||||
|
@ -1198,7 +1175,8 @@
|
|||
"system_alerts": "Systemvarsler",
|
||||
"cross_signing": "Kryssignering",
|
||||
"identity_server": "Identitetstjener",
|
||||
"integration_manager": "Integreringsbehandler"
|
||||
"integration_manager": "Integreringsbehandler",
|
||||
"qr_code": "QR-kode"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Fortsett",
|
||||
|
@ -1287,7 +1265,16 @@
|
|||
"send_report": "Send inn rapport"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Brukermeny"
|
||||
"user_menu": "Brukermeny",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 ulest nevnelse.",
|
||||
"other": "%(count)s uleste meldinger inkludert der du nevnes."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 ulest melding.",
|
||||
"other": "%(count)s uleste meldinger."
|
||||
},
|
||||
"unread_messages": "Uleste meldinger."
|
||||
},
|
||||
"labs": {
|
||||
"pinning": "Meldingsklistring",
|
||||
|
@ -1418,7 +1405,9 @@
|
|||
"export_chat": {
|
||||
"html": "HTML",
|
||||
"json": "JSON",
|
||||
"text": "Ren tekst"
|
||||
"text": "Ren tekst",
|
||||
"format": "Format",
|
||||
"messages": "Meldinger"
|
||||
},
|
||||
"create_room": {
|
||||
"title_public_room": "Opprett et offentlig rom",
|
||||
|
@ -1636,7 +1625,6 @@
|
|||
"unsupported": "Samtaler støttes ikke",
|
||||
"unsupported_browser": "Du kan ikke ringe i denne nettleseren."
|
||||
},
|
||||
"Messages": "Meldinger",
|
||||
"Other": "Andre",
|
||||
"Advanced": "Avansert",
|
||||
"room_settings": {
|
||||
|
@ -1682,5 +1670,21 @@
|
|||
},
|
||||
"chat_effects": {
|
||||
"confetti_message": "sender konfetti"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Fortsett med %(provider)s",
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"room_list": {
|
||||
"show_previews": "Vis forhåndsvisninger av meldinger",
|
||||
"sort_by": "Sorter etter",
|
||||
"sort_by_activity": "Aktivitet",
|
||||
"sort_by_alphabet": "A-Å",
|
||||
"show_n_more": {
|
||||
"other": "Vis %(count)s til",
|
||||
"one": "Vis %(count)s til"
|
||||
},
|
||||
"show_less": "Vis mindre",
|
||||
"notification_options": "Varselsinnstillinger"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,12 +7,14 @@
|
|||
"Add Email Address": "इमेल ठेगाना थप्नुहोस्",
|
||||
"Click the button below to confirm adding this email address.": "यो इमेल ठेगाना थपिएको पुष्टि गर्न तलको बटनमा क्लिक गर्नुहोस्।",
|
||||
"Confirm adding email": "इमेल थपेको पुष्टि गर्नुहोस्",
|
||||
"Single Sign On": "एकल साइन अन",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "आफ्नो पहिचान प्रमाणित गर्न एकल साइन अन प्रयोग गरेर यो इमेल ठेगाना थपेको पुष्टि गर्नुहोस्।",
|
||||
"Use Single Sign On to continue": "जारी राख्न एकल साइन अन प्रयोग गर्नुहोस्",
|
||||
"This phone number is already in use": "यो फोन नम्बर पहिले नै प्रयोगमा छ",
|
||||
"This email address is already in use": "यो इमेल ठेगाना पहिले नै प्रयोगमा छ",
|
||||
"action": {
|
||||
"confirm": "पुष्टि गर्नुहोस्"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "एकल साइन अन"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -549,7 +549,6 @@
|
|||
"This homeserver does not support login using email address.": "Deze homeserver biedt geen ondersteuning voor inloggen met een e-mailadres.",
|
||||
"Please <a>contact your service administrator</a> to continue using this service.": "Gelieve <a>contact op te nemen met je dienstbeheerder</a> om deze dienst te blijven gebruiken.",
|
||||
"Failed to perform homeserver discovery": "Ontdekken van homeserver is mislukt",
|
||||
"Sign in with single sign-on": "Inloggen met eenmalig inloggen",
|
||||
"Create account": "Registeren",
|
||||
"Registration has been disabled on this homeserver.": "Registratie is uitgeschakeld op deze homeserver.",
|
||||
"Unable to query for supported registration methods.": "Kan ondersteunde registratiemethoden niet opvragen.",
|
||||
|
@ -752,19 +751,8 @@
|
|||
"Share this email in Settings to receive invites directly in %(brand)s.": "Deel in de instellingen dit e-mailadres om uitnodigingen direct in %(brand)s te ontvangen.",
|
||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Gebruik een identiteitsserver om uit te nodigen op e-mailadres. <default>Gebruik de standaardserver (%(defaultIdentityServerName)s)</default> of beheer de server in de <settings>Instellingen</settings>.",
|
||||
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Gebruik een identiteitsserver om anderen uit te nodigen via e-mail. Beheer de server in de <settings>Instellingen</settings>.",
|
||||
"Please fill why you're reporting.": "Geef aan waarom je deze melding indient.",
|
||||
"Report Content to Your Homeserver Administrator": "Inhoud melden aan de beheerder van jouw homeserver",
|
||||
"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.": "Dit bericht melden zal zijn unieke ‘gebeurtenis-ID’ versturen naar de beheerder van jouw homeserver. Als de berichten in deze kamer versleuteld zijn, zal de beheerder van jouw homeserver het bericht niet kunnen lezen, noch enige bestanden of afbeeldingen zien.",
|
||||
"Explore rooms": "Kamers ontdekken",
|
||||
"Clear cache and reload": "Cache wissen en herladen",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s ongelezen berichten, inclusief vermeldingen.",
|
||||
"one": "1 ongelezen vermelding."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s ongelezen berichten.",
|
||||
"one": "1 ongelezen bericht."
|
||||
},
|
||||
"Show image": "Afbeelding tonen",
|
||||
"e.g. my-room": "bv. mijn-kamer",
|
||||
"Close dialog": "Dialoog sluiten",
|
||||
|
@ -808,7 +796,6 @@
|
|||
"Later": "Later",
|
||||
"This bridge was provisioned by <user />.": "Dank aan <user /> voor de brug.",
|
||||
"This bridge is managed by <user />.": "Brug onderhouden door <user />.",
|
||||
"Show less": "Minder tonen",
|
||||
"Show more": "Meer tonen",
|
||||
"in memory": "in het geheugen",
|
||||
"not found": "niet gevonden",
|
||||
|
@ -889,7 +876,6 @@
|
|||
"<userName/> wants to chat": "<userName/> wil een chat met je beginnen",
|
||||
"Start chatting": "Gesprek beginnen",
|
||||
"Reject & Ignore user": "Weigeren en persoon negeren",
|
||||
"Unread messages.": "Ongelezen berichten.",
|
||||
"Unknown Command": "Onbekende opdracht",
|
||||
"Unrecognised command: %(commandText)s": "Onbekende opdracht: %(commandText)s",
|
||||
"Hint: Begin your message with <code>//</code> to start it with a slash.": "Tip: begin uw bericht met <code>//</code> om het te laten voorafgaan door een schuine streep.",
|
||||
|
@ -1005,7 +991,6 @@
|
|||
"%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s van %(totalRooms)s",
|
||||
"Use Single Sign On to continue": "Ga verder met eenmalige aanmelding",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Bevestig je identiteit met je eenmalige aanmelding om dit e-mailadres toe te voegen.",
|
||||
"Single Sign On": "Eenmalige aanmelding",
|
||||
"Confirm adding email": "Bevestig toevoegen van het e-mailadres",
|
||||
"Click the button below to confirm adding this email address.": "Klik op de knop hieronder om dit e-mailadres toe te voegen.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Bevestig je identiteit met je eenmalige aanmelding om dit telefoonnummer toe te voegen.",
|
||||
|
@ -1054,10 +1039,6 @@
|
|||
"Video conference updated by %(senderName)s": "Videovergadering geüpdatet door %(senderName)s",
|
||||
"Video conference ended by %(senderName)s": "Videovergadering beëindigd door %(senderName)s",
|
||||
"Join the conference from the room information card on the right": "Neem deel aan de vergadering via de informatiekaart rechts",
|
||||
"List options": "Lijstopties",
|
||||
"A-Z": "A-Z",
|
||||
"Activity": "Activiteit",
|
||||
"Sort by": "Sorteer op",
|
||||
"You cancelled verification.": "Je hebt de verificatie geannuleerd.",
|
||||
"%(displayName)s cancelled verification.": "%(displayName)s heeft de verificatie geannuleerd.",
|
||||
"Verification timed out.": "Verificatie verlopen.",
|
||||
|
@ -1297,7 +1278,6 @@
|
|||
"We couldn't log you in": "We konden je niet inloggen",
|
||||
"Explore Public Rooms": "Publieke kamers ontdekken",
|
||||
"This room is public": "Deze kamer is publiek",
|
||||
"Show previews of messages": "Voorvertoning van berichten inschakelen",
|
||||
"Explore public rooms": "Publieke kamers ontdekken",
|
||||
"Room options": "Kameropties",
|
||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "Start een kamer met iemand door hun naam, e-mailadres of inlognaam (zoals <userId/>) te typen.",
|
||||
|
@ -1313,12 +1293,6 @@
|
|||
"There was an error updating the room's alternative addresses. It may not be allowed by the server or a temporary failure occurred.": "Er is een fout opgetreden bij het bijwerken van de bijnaam van de kamer. Dit wordt mogelijk niet toegestaan door de server of er is een tijdelijk probleem opgetreden.",
|
||||
"Favourited": "Favoriet",
|
||||
"Forget Room": "Kamer vergeten",
|
||||
"Notification options": "Meldingsinstellingen",
|
||||
"Show %(count)s more": {
|
||||
"one": "Toon %(count)s meer",
|
||||
"other": "Toon %(count)s meer"
|
||||
},
|
||||
"Show rooms with unread messages first": "Kamers met ongelezen berichten als eerste tonen",
|
||||
"Show Widgets": "Widgets tonen",
|
||||
"Hide Widgets": "Widgets verbergen",
|
||||
"This is the start of <roomName/>.": "Dit is het begin van <roomName/>.",
|
||||
|
@ -1363,12 +1337,10 @@
|
|||
"Can't find this server or its room list": "Kan de server of haar kamergids niet vinden",
|
||||
"Looks good": "Ziet er goed uit",
|
||||
"Enter a server name": "Geef een servernaam",
|
||||
"Continue with %(provider)s": "Doorgaan met %(provider)s",
|
||||
"Server Options": "Server opties",
|
||||
"This address is already in use": "Dit adres is al in gebruik",
|
||||
"This address is available to use": "Dit adres kan worden gebruikt",
|
||||
"Room address": "Kameradres",
|
||||
"QR Code": "QR-code",
|
||||
"Information": "Informatie",
|
||||
"This version of %(brand)s does not support searching encrypted messages": "Deze versie van %(brand)s ondersteunt niet het doorzoeken van versleutelde berichten",
|
||||
"This version of %(brand)s does not support viewing some encrypted files": "Deze versie van %(brand)s ondersteunt niet de mogelijkheid sommige versleutelde bestanden te weergeven",
|
||||
|
@ -1707,9 +1679,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Je kan deze wijziging niet ongedaan maken, omdat je jezelf rechten ontneemt. Als je de laatst bevoegde persoon in de Space bent zal het onmogelijk zijn om weer rechten te krijgen.",
|
||||
"Empty room": "Lege kamer",
|
||||
"Suggested Rooms": "Kamersuggesties",
|
||||
"You do not have permissions to add rooms to this space": "Je hebt geen toestemming om kamers toe te voegen in deze Space",
|
||||
"Add existing room": "Bestaande kamers toevoegen",
|
||||
"You do not have permissions to create new rooms in this space": "Je hebt geen toestemming om kamers te maken in deze Space",
|
||||
"Invite to this space": "Voor deze Space uitnodigen",
|
||||
"Your message was sent": "Je bericht is verstuurd",
|
||||
"Space options": "Space-opties",
|
||||
|
@ -1797,8 +1767,6 @@
|
|||
"What do you want to organise?": "Wat wil je organiseren?",
|
||||
"You have no ignored users.": "Je hebt geen persoon genegeerd.",
|
||||
"Select a room below first": "Start met selecteren van een kamer hieronder",
|
||||
"Join the beta": "Beta inschakelen",
|
||||
"Leave the beta": "Beta verlaten",
|
||||
"Want to add a new room instead?": "Wil je anders een nieuwe kamer toevoegen?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "Kamer toevoegen...",
|
||||
|
@ -1847,17 +1815,6 @@
|
|||
"Show preview": "Preview weergeven",
|
||||
"View source": "Bron bekijken",
|
||||
"Settings - %(spaceName)s": "Instellingen - %(spaceName)s",
|
||||
"Report the entire room": "Rapporteer het hele kamer",
|
||||
"Spam or propaganda": "Spam of propaganda",
|
||||
"Illegal Content": "Illegale Inhoud",
|
||||
"Toxic Behaviour": "Giftig Gedrag",
|
||||
"Disagree": "Niet mee eens",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Kies een reden en beschrijf wat dit bericht kwetsend maakt.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Een andere reden. Beschrijf alstublieft het probleem.\nDit zal gerapporteerd worden aan de kamermoderators.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Deze kamer is gewijd aan illegale of giftige inhoud of de moderators falen om illegale of giftige inhoud te modereren.\nDit zal gerapporteerd worden aan de beheerders van %(homeserver)s. De beheerders zullen NIET in staat zijn om de versleutelde inhoud van deze kamer te lezen.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Deze persoon spamt de kamer met advertenties, links naar advertenties of propaganda.\nDit zal gerapporteerd worden aan de moderators van deze kamer.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Deze persoon vertoont illegaal gedrag, bijvoorbeeld door doxing van personen of te dreigen met geweld.\nDit zal gerapporteerd worden aan de moderators van deze kamer die dit kunnen doorzetten naar de gerechtelijke autoriteiten.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Wat deze persoon schrijft is verkeerd.\nDit zal worden gerapporteerd aan de kamermoderators.",
|
||||
"Please provide an address": "Geef een adres op",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Bericht zoeken initialisatie mislukt, controleer <a>je instellingen</a> voor meer informatie",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Stel adressen in voor deze Space zodat personen deze Space kunnen vinden via jouw homeserver (%(localDomain)s)",
|
||||
|
@ -2018,21 +1975,7 @@
|
|||
"Leave some rooms": "Sommige kamers verlaten",
|
||||
"Leave all rooms": "Alle kamers verlaten",
|
||||
"Don't leave any rooms": "Geen kamers verlaten",
|
||||
"Include Attachments": "Bijlages toevoegen",
|
||||
"Size Limit": "Bestandsgrootte",
|
||||
"Format": "Formaat",
|
||||
"Select from the options below to export chats from your timeline": "Selecteer met welke opties je jouw chats wilt exporteren van je tijdlijn",
|
||||
"Export Chat": "Chat exporteren",
|
||||
"Exporting your data": "Jouw data aan het exporteren",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Weet je zeker dat je wilt stoppen terwijl je jouw data exporteert? Als je dit doet moet je later opnieuw beginnen.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Jouw export was succesvol. Je vindt hem in je 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",
|
||||
"See room timeline (devtools)": "Kamer tijdlijn bekijken (dev tools)",
|
||||
|
@ -2177,7 +2120,6 @@
|
|||
"Home options": "Home-opties",
|
||||
"%(spaceName)s menu": "%(spaceName)s-menu",
|
||||
"Join public room": "Publieke kamer toetreden",
|
||||
"You do not have permissions to invite people to this space": "Je hebt geen toestemming om personen in deze Space uit te nodigen",
|
||||
"Add people": "Personen toevoegen",
|
||||
"Invite to space": "Voor Space uitnodigen",
|
||||
"Start new chat": "Nieuwe chat beginnen",
|
||||
|
@ -2310,11 +2252,8 @@
|
|||
"Poll": "Poll",
|
||||
"Voice Message": "Spraakbericht",
|
||||
"Hide stickers": "Verberg stickers",
|
||||
"Click for more info": "Klik voor meer info",
|
||||
"This is a beta feature": "Dit is een bètafunctie",
|
||||
"Use <arrows/> to scroll": "Gebruik <arrows/> om te scrollen",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Reactie verzonden! Bedankt, we waarderen het!",
|
||||
"You do not have permissions to add spaces to this space": "Je bent niet gemachtigd om spaces aan deze space toe te voegen",
|
||||
"Automatically send debug logs when key backup is not functioning": "Automatisch foutopsporingslogboeken versturen wanneer de sleutelback-up niet werkt",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s en %(space2Name)s",
|
||||
"You do not have permission to invite people to this space.": "Je bent niet gemachtigd om mensen voor deze space uit te nodigen.",
|
||||
|
@ -2324,7 +2263,6 @@
|
|||
"Unsent": "niet verstuurd",
|
||||
"Search Dialog": "Dialoogvenster Zoeken",
|
||||
"Join %(roomAddress)s": "%(roomAddress)s toetreden",
|
||||
"Export Cancelled": "Export geannuleerd",
|
||||
"Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Schakel het vinkje uit als je ook systeemberichten van deze persoon wil verwijderen (bijv. lidmaatschapswijziging, profielwijziging...)",
|
||||
"Preserve system messages": "Systeemberichten behouden",
|
||||
"You are about to remove %(count)s messages by %(user)s. This will remove them permanently for everyone in the conversation. Do you wish to continue?": {
|
||||
|
@ -2483,8 +2421,6 @@
|
|||
"An error occurred whilst sharing your live location, please try again": "Er is een fout opgetreden bij het delen van je live locatie, probeer het opnieuw",
|
||||
"An error occurred whilst sharing your live location": "Er is een fout opgetreden bij het delen van je live locatie",
|
||||
"View related event": "Bekijk gerelateerde gebeurtenis",
|
||||
"Check if you want to hide all current and future messages from this user.": "Vink aan als je alle huidige en toekomstige berichten van deze persoon wilt verbergen.",
|
||||
"Ignore user": "Negeer persoon",
|
||||
"Click to read topic": "Klik om het onderwerp te lezen",
|
||||
"Edit topic": "Bewerk onderwerp",
|
||||
"Joining…": "Deelnemen…",
|
||||
|
@ -2498,8 +2434,6 @@
|
|||
"Connection lost": "Verbinding verloren",
|
||||
"Un-maximise": "Maximaliseren ongedaan maken",
|
||||
"Deactivating your account is a permanent action — be careful!": "Het deactiveren van je account is een permanente actie - wees voorzichtig!",
|
||||
"Joining the beta will reload %(brand)s.": "Door deel te nemen aan de bèta wordt %(brand)s opnieuw geladen.",
|
||||
"Leaving the beta will reload %(brand)s.": "Als je de bèta verlaat, wordt %(brand)s opnieuw geladen.",
|
||||
"Remove search filter for %(filter)s": "Verwijder zoekfilter voor %(filter)s",
|
||||
"Start a group chat": "Start een groepsgesprek",
|
||||
"Other options": "Andere opties",
|
||||
|
@ -2554,13 +2488,6 @@
|
|||
"Saved Items": "Opgeslagen items",
|
||||
"Send your first message to invite <displayName/> to chat": "Stuur je eerste bericht om <displayName/> uit te nodigen om te chatten",
|
||||
"We're creating a room with %(names)s": "We maken een kamer aan met %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play en het Google Play-logo zijn handelsmerken van Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® en het Apple logo® zijn handelsmerken van Apple Inc.",
|
||||
"Get it on F-Droid": "Download het op F-Droid",
|
||||
"Get it on Google Play": "Verkrijg het via Google Play",
|
||||
"Download on the App Store": "Te downloaden in de App Store",
|
||||
"Download %(brand)s Desktop": "%(brand)s Desktop downloaden",
|
||||
"Download %(brand)s": "%(brand)s downloaden",
|
||||
"Choose a locale": "Kies een landinstelling",
|
||||
"Spell check": "Spellingscontrole",
|
||||
"Interactively verify by emoji": "Interactief verifiëren door emoji",
|
||||
|
@ -2617,7 +2544,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "Jouw server heeft geen native ondersteuning, je moet een proxy opgeven",
|
||||
"Your server lacks native support": "Jouw server heeft geen native ondersteuning",
|
||||
"Your server has native support": "Jouw server heeft native ondersteuning",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s of %(appLinks)s",
|
||||
"Completing set up of your new device": "De configuratie van je nieuwe apparaat voltooien",
|
||||
"Waiting for device to sign in": "Wachten op apparaat om in te loggen",
|
||||
"Review and approve the sign in": "Controleer en keur de aanmelding goed",
|
||||
|
@ -2784,7 +2710,8 @@
|
|||
"secure_backup": "Beveiligde back-up",
|
||||
"cross_signing": "Kruiselings ondertekenen",
|
||||
"identity_server": "Identiteitsserver",
|
||||
"integration_manager": "Integratiebeheerder"
|
||||
"integration_manager": "Integratiebeheerder",
|
||||
"qr_code": "QR-code"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Doorgaan",
|
||||
|
@ -2884,7 +2811,16 @@
|
|||
"clear": "Wis"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Persoonsmenu"
|
||||
"user_menu": "Persoonsmenu",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s ongelezen berichten, inclusief vermeldingen.",
|
||||
"one": "1 ongelezen vermelding."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s ongelezen berichten.",
|
||||
"one": "1 ongelezen bericht."
|
||||
},
|
||||
"unread_messages": "Ongelezen berichten."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Video kamers",
|
||||
|
@ -2917,7 +2853,13 @@
|
|||
"group_themes": "Thema's",
|
||||
"group_encryption": "Versleuteling",
|
||||
"group_experimental": "Experimenteel",
|
||||
"group_developer": "Ontwikkelaar"
|
||||
"group_developer": "Ontwikkelaar",
|
||||
"beta_feature": "Dit is een bètafunctie",
|
||||
"click_for_info": "Klik voor meer info",
|
||||
"leave_beta_reload": "Als je de bèta verlaat, wordt %(brand)s opnieuw geladen.",
|
||||
"join_beta_reload": "Door deel te nemen aan de bèta wordt %(brand)s opnieuw geladen.",
|
||||
"leave_beta": "Beta verlaten",
|
||||
"join_beta": "Beta inschakelen"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Home",
|
||||
|
@ -3032,7 +2974,15 @@
|
|||
"enable_notifications": "Meldingen aanzetten",
|
||||
"download_app_description": "Mis niets door %(brand)s mee te nemen",
|
||||
"download_app_action": "Apps downloaden",
|
||||
"download_app": "%(brand)s downloaden"
|
||||
"download_app": "%(brand)s downloaden",
|
||||
"download_brand": "%(brand)s downloaden",
|
||||
"download_brand_desktop": "%(brand)s Desktop downloaden",
|
||||
"qr_or_app_links": "%(qrCode)s of %(appLinks)s",
|
||||
"download_app_store": "Te downloaden in de App Store",
|
||||
"download_google_play": "Verkrijg het via Google Play",
|
||||
"download_f_droid": "Download het op F-Droid",
|
||||
"apple_trademarks": "App Store® en het Apple logo® zijn handelsmerken van Apple Inc.",
|
||||
"google_trademarks": "Google Play en het Google Play-logo zijn handelsmerken van Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Snelkoppelingen naar de kamers die je recent hebt bekeken bovenaan de kamerlijst weergeven",
|
||||
|
@ -3214,7 +3164,23 @@
|
|||
"export_info": "Dit is de start van de export van <roomName/>. Geëxporteerd door <exporterDetails/> op %(exportDate)s.",
|
||||
"topic": "Onderwerp: %(topic)s",
|
||||
"error_fetching_file": "Fout bij bestand opvragen",
|
||||
"file_attached": "Bijgevoegd bestand"
|
||||
"file_attached": "Bijgevoegd bestand",
|
||||
"enter_number_between_min_max": "Voer een nummer tussen %(min)s en %(max)s in",
|
||||
"size_limit_min_max": "Bestand moet een grootte hebben tussen %(min)s MB en %(max)s MB",
|
||||
"num_messages_min_max": "Aantal berichten moet een getal zijn tussen %(min)s en %(max)s",
|
||||
"num_messages": "Berichten aantal",
|
||||
"cancelled": "Export geannuleerd",
|
||||
"cancelled_detail": "De export was succesvol geannulleerd",
|
||||
"successful": "Export succesvol",
|
||||
"successful_detail": "Jouw export was succesvol. Je vindt hem in je Downloads-map.",
|
||||
"confirm_stop": "Weet je zeker dat je wilt stoppen terwijl je jouw data exporteert? Als je dit doet moet je later opnieuw beginnen.",
|
||||
"exporting_your_data": "Jouw data aan het exporteren",
|
||||
"title": "Chat exporteren",
|
||||
"select_option": "Selecteer met welke opties je jouw chats wilt exporteren van je tijdlijn",
|
||||
"format": "Formaat",
|
||||
"messages": "Berichten",
|
||||
"size_limit": "Bestandsgrootte",
|
||||
"include_attachments": "Bijlages toevoegen"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Creëer een videokamer",
|
||||
|
@ -3612,7 +3578,6 @@
|
|||
"unsupported": "Oproepen worden niet ondersteund",
|
||||
"unsupported_browser": "Je kan geen oproepen plaatsen in deze browser."
|
||||
},
|
||||
"Messages": "Berichten",
|
||||
"Other": "Overige",
|
||||
"Advanced": "Geavanceerd",
|
||||
"room_settings": {
|
||||
|
@ -3700,5 +3665,48 @@
|
|||
"spaceinvaders_message": "stuurt space invaders",
|
||||
"hearts_description": "Stuurt het bericht met hartjes",
|
||||
"hearts_message": "stuurt hartjes"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Je hebt geen toestemming om personen in deze Space uit te nodigen",
|
||||
"error_no_permission_create_room": "Je hebt geen toestemming om kamers te maken in deze Space",
|
||||
"error_no_permission_add_room": "Je hebt geen toestemming om kamers toe te voegen in deze Space",
|
||||
"error_no_permission_add_space": "Je bent niet gemachtigd om spaces aan deze space toe te voegen"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Doorgaan met %(provider)s",
|
||||
"sign_in_with_sso": "Inloggen met eenmalig inloggen",
|
||||
"sso": "Eenmalige aanmelding"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Kamers met ongelezen berichten als eerste tonen",
|
||||
"show_previews": "Voorvertoning van berichten inschakelen",
|
||||
"sort_by": "Sorteer op",
|
||||
"sort_by_activity": "Activiteit",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Lijstopties",
|
||||
"show_n_more": {
|
||||
"one": "Toon %(count)s meer",
|
||||
"other": "Toon %(count)s meer"
|
||||
},
|
||||
"show_less": "Minder tonen",
|
||||
"notification_options": "Meldingsinstellingen"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Geef aan waarom je deze melding indient.",
|
||||
"ignore_user": "Negeer persoon",
|
||||
"hide_messages_from_user": "Vink aan als je alle huidige en toekomstige berichten van deze persoon wilt verbergen.",
|
||||
"nature_disagreement": "Wat deze persoon schrijft is verkeerd.\nDit zal worden gerapporteerd aan de kamermoderators.",
|
||||
"nature_illegal": "Deze persoon vertoont illegaal gedrag, bijvoorbeeld door doxing van personen of te dreigen met geweld.\nDit zal gerapporteerd worden aan de moderators van deze kamer die dit kunnen doorzetten naar de gerechtelijke autoriteiten.",
|
||||
"nature_spam": "Deze persoon spamt de kamer met advertenties, links naar advertenties of propaganda.\nDit zal gerapporteerd worden aan de moderators van deze kamer.",
|
||||
"report_to_homeserver_encrypted": "Deze kamer is gewijd aan illegale of giftige inhoud of de moderators falen om illegale of giftige inhoud te modereren.\nDit zal gerapporteerd worden aan de beheerders van %(homeserver)s. De beheerders zullen NIET in staat zijn om de versleutelde inhoud van deze kamer te lezen.",
|
||||
"nature_other": "Een andere reden. Beschrijf alstublieft het probleem.\nDit zal gerapporteerd worden aan de kamermoderators.",
|
||||
"nature": "Kies een reden en beschrijf wat dit bericht kwetsend maakt.",
|
||||
"disagree": "Niet mee eens",
|
||||
"toxic_behaviour": "Giftig Gedrag",
|
||||
"illegal_content": "Illegale Inhoud",
|
||||
"spam_or_propaganda": "Spam of propaganda",
|
||||
"report_entire_room": "Rapporteer het hele kamer",
|
||||
"report_content_to_homeserver": "Inhoud melden aan de beheerder van jouw homeserver",
|
||||
"description": "Dit bericht melden zal zijn unieke ‘gebeurtenis-ID’ versturen naar de beheerder van jouw homeserver. Als de berichten in deze kamer versleuteld zijn, zal de beheerder van jouw homeserver het bericht niet kunnen lezen, noch enige bestanden of afbeeldingen zien."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -361,7 +361,6 @@
|
|||
"Please <a>contact your service administrator</a> to continue using this service.": "<a>Kontakt din systemadministrator</a> for å vidare bruka tenesta.",
|
||||
"This account has been deactivated.": "Denne kontoen har blitt deaktivert.",
|
||||
"Failed to perform homeserver discovery": "Fekk ikkje til å utforska heimetenaren",
|
||||
"Sign in with single sign-on": "Logg på med Single-Sign-On",
|
||||
"Create account": "Lag konto",
|
||||
"Registration has been disabled on this homeserver.": "Registrering er skrudd av for denne heimetenaren.",
|
||||
"Unable to query for supported registration methods.": "Klarte ikkje å spørre etter støtta registreringsmetodar.",
|
||||
|
@ -471,11 +470,6 @@
|
|||
"Reject & Ignore user": "Avslå og ignorer brukar",
|
||||
"You're previewing %(roomName)s. Want to join it?": "Du førehandsviser %(roomName)s. Ynskjer du å bli med ?",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s kan ikkje førehandsvisast. Ynskjer du å bli med ?",
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s uleste meldingar.",
|
||||
"one": "1 ulesen melding."
|
||||
},
|
||||
"Unread messages.": "Uleste meldingar.",
|
||||
"Unknown Command": "Ukjend kommando",
|
||||
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Du kan bruka <code>/help</code> for å lista tilgjengelege kommandoar. Meinte du å senda dette som ein melding ?",
|
||||
"Hint: Begin your message with <code>//</code> to start it with a slash.": "Hint: Start meldinga med <code>//</code> for å starte den med skråstrek.",
|
||||
|
@ -503,7 +497,6 @@
|
|||
"Voice & Video": "Tale og video",
|
||||
"Show hidden events in timeline": "Vis skjulte hendelsar i historikken",
|
||||
"This is your list of users/servers you have blocked - don't leave the room!": "Dette er di liste over brukarar/tenarar du har blokkert - ikkje forlat rommet!",
|
||||
"Show less": "Vis mindre",
|
||||
"Show more": "Vis meir",
|
||||
"Display Name": "Visningsnamn",
|
||||
"Invalid theme schema.": "",
|
||||
|
@ -539,7 +532,6 @@
|
|||
"Failed to upgrade room": "Fekk ikkje til å oppgradere rom",
|
||||
"Use Single Sign On to continue": "Bruk Single-sign-on for å fortsette",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Stadfest at du legger til denne e-postadressa, ved å bruka Single-sign-on for å stadfeste identiteten din.",
|
||||
"Single Sign On": "Single-sign-on",
|
||||
"Capitalization doesn't help very much": "Store bokstavar hjelp dessverre lite",
|
||||
"Predictable substitutions like '@' instead of 'a' don't help very much": "Forutsigbare teiknbytte som '@' istaden for 'a' hjelp dessverre lite",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Kontoen din har ein kryss-signert identitet det hemmelege lageret, økta di stolar ikkje på denne enno.",
|
||||
|
@ -595,7 +587,6 @@
|
|||
"I don't want my encrypted messages": "Eg treng ikkje mine krypterte meldingar",
|
||||
"You'll lose access to your encrypted messages": "Du vil miste tilgangen til dine krypterte meldingar",
|
||||
"Join millions for free on the largest public server": "Kom ihop med millionar av andre på den største offentlege tenaren",
|
||||
"Show rooms with unread messages first": "Vis rom med ulesne meldingar fyrst",
|
||||
"Always show the window menu bar": "Vis alltid menyfeltet i toppen av vindauget",
|
||||
"Feedback": "Tilbakemeldingar",
|
||||
"All settings": "Alle innstillingar",
|
||||
|
@ -608,10 +599,6 @@
|
|||
"Video conference started by %(senderName)s": "Videokonferanse starta av %(senderName)s",
|
||||
"Video conference updated by %(senderName)s": "Videokonferanse oppdatert av %(senderName)s",
|
||||
"Video conference ended by %(senderName)s": "Videokonferanse avslutta av %(senderName)s",
|
||||
"Show previews of messages": "Vis førehandsvisningar for meldingar",
|
||||
"Activity": "Aktivitet",
|
||||
"Sort by": "Sorter etter",
|
||||
"List options": "Sjå alternativ",
|
||||
"Explore Public Rooms": "Utforsk offentlege rom",
|
||||
"Explore public rooms": "Utforsk offentlege rom",
|
||||
"Email Address": "E-postadresse",
|
||||
|
@ -1154,7 +1141,6 @@
|
|||
"unsupported": "Samtalar er ikkje støtta",
|
||||
"unsupported_browser": "Du kan ikkje samtala i nettlesaren."
|
||||
},
|
||||
"Messages": "Meldingar",
|
||||
"Other": "Anna",
|
||||
"Advanced": "Avansert",
|
||||
"room_settings": {
|
||||
|
@ -1175,5 +1161,27 @@
|
|||
"ban": "Stenge ute brukarar",
|
||||
"notifications.room": "Varsle alle"
|
||||
}
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Logg på med Single-Sign-On",
|
||||
"sso": "Single-sign-on"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Meldingar"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Vis rom med ulesne meldingar fyrst",
|
||||
"show_previews": "Vis førehandsvisningar for meldingar",
|
||||
"sort_by": "Sorter etter",
|
||||
"sort_by_activity": "Aktivitet",
|
||||
"sublist_options": "Sjå alternativ",
|
||||
"show_less": "Vis mindre"
|
||||
},
|
||||
"a11y": {
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s uleste meldingar.",
|
||||
"one": "1 ulesen melding."
|
||||
},
|
||||
"unread_messages": "Uleste meldingar."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
"All Rooms": "Totas les salas",
|
||||
"Search…": "Cercar…",
|
||||
"Server error": "Error servidor",
|
||||
"Single Sign On": "Autentificacion unica",
|
||||
"Sun": "Dg",
|
||||
"Mon": "Dl",
|
||||
"Tue": "Dm",
|
||||
|
@ -69,7 +68,6 @@
|
|||
"Anchor": "Ancorar",
|
||||
"Headphones": "Escotadors",
|
||||
"Folder": "Dorsièr",
|
||||
"Show less": "Ne veire mens",
|
||||
"Show more": "Ne veire mai",
|
||||
"Current password": "Senhal actual",
|
||||
"New Password": "Senhal novèl",
|
||||
|
@ -100,10 +98,6 @@
|
|||
"Italics": "Italicas",
|
||||
"Historical": "Istoric",
|
||||
"Sign Up": "S’inscriure",
|
||||
"Sort by": "Triar per",
|
||||
"Activity": "Activitat",
|
||||
"A-Z": "A-Z",
|
||||
"List options": "Opcions de lista",
|
||||
"Favourite": "Favorit",
|
||||
"Low Priority": "Prioritat bassa",
|
||||
"Mark all as read": "Tot marcar coma legit",
|
||||
|
@ -319,7 +313,6 @@
|
|||
"voice_call": "Sonada vocala",
|
||||
"video_call": "Sonada vidèo"
|
||||
},
|
||||
"Messages": "Messatges",
|
||||
"Other": "Autre",
|
||||
"Advanced": "Avançat",
|
||||
"emoji": {
|
||||
|
@ -343,5 +336,18 @@
|
|||
"font_size": "Talha de poliça",
|
||||
"timeline_image_size_default": "Predefinit"
|
||||
}
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Autentificacion unica"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Messatges"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_by": "Triar per",
|
||||
"sort_by_activity": "Activitat",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Opcions de lista",
|
||||
"show_less": "Ne veire mens"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -586,15 +586,6 @@
|
|||
"Do you want to join %(roomName)s?": "Czy chcesz dołączyć do %(roomName)s?",
|
||||
"<userName/> invited you": "<userName/> zaprosił Cię",
|
||||
"You're previewing %(roomName)s. Want to join it?": "Przeglądasz %(roomName)s. Czy chcesz dołączyć do pokoju?",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s nieprzeczytanych wiadomości, wliczając wzmianki.",
|
||||
"one": "1 nieprzeczytana wzmianka."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s nieprzeczytanych wiadomości.",
|
||||
"one": "1 nieprzeczytana wiadomość."
|
||||
},
|
||||
"Unread messages.": "Nieprzeczytane wiadomości.",
|
||||
"%(creator)s created and configured the room.": "%(creator)s stworzył i skonfigurował pokój.",
|
||||
"Missing media permissions, click the button below to request.": "Brakuje uprawnień do mediów, kliknij przycisk poniżej, aby o nie zapytać.",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Nie zdołano wczytać zdarzenia, na które odpowiedziano, może ono nie istnieć lub nie masz uprawnienia, by je zobaczyć.",
|
||||
|
@ -608,7 +599,6 @@
|
|||
"Direct Messages": "Wiadomości prywatne",
|
||||
"Create Account": "Utwórz konto",
|
||||
"Later": "Później",
|
||||
"Show less": "Pokaż mniej",
|
||||
"Show more": "Pokaż więcej",
|
||||
"Ignored users": "Zignorowani użytkownicy",
|
||||
"⚠ These settings are meant for advanced users.": "⚠ Te ustawienia są przeznaczone dla zaawansowanych użytkowników.",
|
||||
|
@ -712,14 +702,7 @@
|
|||
"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!": "OSTRZEŻENIE: WERYFIKACJA KLUCZY NIE POWIODŁA SIĘ! Klucz podpisujący dla %(userId)s oraz sesji %(deviceId)s to \"%(fprint)s\", nie pasuje on do podanego klucza \"%(fingerprint)s\". To może oznaczać że Twoja komunikacja jest przechwytywana!",
|
||||
"Use Single Sign On to continue": "Użyj pojedynczego logowania, aby kontynuować",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potwierdź dodanie tego adresu e-mail przez użycie pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
||||
"Single Sign On": "Pojedyncze logowanie",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potwierdź dodanie tego numeru telefonu przy użyciu pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
||||
"Show rooms with unread messages first": "Pokazuj najpierw pokoje z nieprzeczytanymi wiadomościami",
|
||||
"Show previews of messages": "Pokazuj podglądy wiadomości",
|
||||
"Sort by": "Sortuj według",
|
||||
"Activity": "Aktywności",
|
||||
"A-Z": "A-Z",
|
||||
"Notification options": "Opcje powiadomień",
|
||||
"Favourited": "Ulubiony",
|
||||
"This room is public": "Ten pokój jest publiczny",
|
||||
"Unknown Command": "Nieznane polecenie",
|
||||
|
@ -774,7 +757,6 @@
|
|||
"To continue you need to accept the terms of this service.": "Aby kontynuować, musisz zaakceptować zasady użytkowania.",
|
||||
"Add widgets, bridges & bots": "Dodaj widżety, mostki i boty",
|
||||
"Forget this room": "Zapomnij o tym pokoju",
|
||||
"List options": "Ustawienia listy",
|
||||
"Explore public rooms": "Przeglądaj pokoje publiczne",
|
||||
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Zmiany tego, kto może przeglądać historię wyszukiwania dotyczą tylko przyszłych wiadomości w pokoju. Widoczność wcześniejszej historii nie zmieni się.",
|
||||
"No other published addresses yet, add one below": "Brak innych opublikowanych adresów, dodaj jakiś poniżej",
|
||||
|
@ -782,16 +764,10 @@
|
|||
"Room settings": "Ustawienia pokoju",
|
||||
"Messages in this room are not end-to-end encrypted.": "Wiadomości w tym pokoju nie są szyfrowane end-to-end.",
|
||||
"<a>Add a topic</a> to help people know what it is about.": "<a>Dodaj temat</a>, aby poinformować ludzi czego dotyczy.",
|
||||
"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.": "Zgłoszenie tej wiadomości wyśle administratorowi serwera unikatowe „ID wydarzenia”. Jeżeli wiadomości w tym pokoju są szyfrowane, administrator serwera może nie być w stanie przeczytać treści wiadomości, lub zobaczyć plików bądź zdjęć.",
|
||||
"Report Content to Your Homeserver Administrator": "Zgłoś zawartość do administratora swojego serwera",
|
||||
"You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Możesz ustawić tę opcję, jeżeli pokój będzie używany wyłącznie do współpracy wewnętrznych zespołów na Twoim serwerze. Nie będzie można zmienić tej opcji.",
|
||||
"Block anyone not part of %(serverName)s from ever joining this room.": "Zablokuj wszystkich niebędących użytkownikami %(serverName)s w tym pokoju.",
|
||||
"Start a conversation with someone using their name or username (like <userId/>).": "Rozpocznij konwersację z innymi korzystając z ich nazwy lub nazwy użytkownika (np. <userId/>).",
|
||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "Rozpocznij konwersację z innymi korzystając z ich nazwy, adresu e-mail lub nazwy użytkownika (np. <userId/>).",
|
||||
"Show %(count)s more": {
|
||||
"one": "Pokaż %(count)s więcej",
|
||||
"other": "Pokaż %(count)s więcej"
|
||||
},
|
||||
"Room options": "Ustawienia pokoju",
|
||||
"Manually verify all remote sessions": "Ręcznie weryfikuj wszystkie zdalne sesje",
|
||||
"This version of %(brand)s does not support searching encrypted messages": "Ta wersja %(brand)s nie obsługuje wyszukiwania zabezpieczonych wiadomości",
|
||||
|
@ -1131,7 +1107,6 @@
|
|||
"Your display name": "Twoja nazwa wyświetlana",
|
||||
"View rules": "Zobacz zasady",
|
||||
"Error subscribing to list": "Błąd subskrybowania listy",
|
||||
"Please fill why you're reporting.": "Wypełnij, dlaczego dokonujesz zgłoszenia.",
|
||||
"Jump to first unread room.": "Przejdź do pierwszego nieprzeczytanego pokoju.",
|
||||
"Jump to first invite.": "Przejdź do pierwszego zaproszenia.",
|
||||
"You verified %(name)s": "Zweryfikowałeś %(name)s",
|
||||
|
@ -1262,10 +1237,8 @@
|
|||
"Safeguard against losing access to encrypted messages & data": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych",
|
||||
"Your access token gives full access to your account. Do not share it with anyone.": "Twój token dostępu daje pełen dostęp do Twojego konta. Nie dziel się nim z nikim.",
|
||||
"Avatar": "Awatar",
|
||||
"Leave the beta": "Opuść betę",
|
||||
"Move right": "Przenieś w prawo",
|
||||
"Move left": "Przenieś w lewo",
|
||||
"Join the beta": "Dołącz do bety",
|
||||
"No results found": "Nie znaleziono wyników",
|
||||
"Your server does not support showing space hierarchies.": "Twój serwer nie obsługuje wyświetlania hierarchii przestrzeni.",
|
||||
"You can select all or individual messages to retry or delete": "Możesz zaznaczyć wszystkie lub wybrane wiadomości aby spróbować ponownie lub usunąć je",
|
||||
|
@ -1396,7 +1369,6 @@
|
|||
"Empty room": "Pusty pokój",
|
||||
"Hold": "Wstrzymaj",
|
||||
"ready": "gotowy",
|
||||
"Disagree": "Nie zgadzam się",
|
||||
"Create a new room": "Utwórz nowy pokój",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"other": "Dodawanie pokojów... (%(progress)s z %(count)s)",
|
||||
|
@ -1406,12 +1378,6 @@
|
|||
"Switches to this room's virtual room, if it has one": "Przełącza do wirtualnego pokoju tego pokoju, jeśli taki istnieje",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s i %(space2Name)s",
|
||||
"There was a problem communicating with the homeserver, please try again later.": "Wystąpił problem podczas łączenia się z serwerem domowym, spróbuj ponownie później.",
|
||||
"Report the entire room": "Zgłoś cały pokój",
|
||||
"Spam or propaganda": "Spam lub propaganda",
|
||||
"Illegal Content": "Nielegalna treść",
|
||||
"Toxic Behaviour": "Toksyczne zachowanie",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Wybierz powód oraz opisz dlaczego ta wiadomość jest niestosowna.",
|
||||
"Include Attachments": "Dodaj załączniki",
|
||||
"Stop recording": "Skończ nagrywanie",
|
||||
"We didn't find a microphone on your device. Please check your settings and try again.": "Nie udało się znaleźć żadnego mikrofonu w twoim urządzeniu. Sprawdź ustawienia i spróbuj ponownie.",
|
||||
"No microphone found": "Nie znaleziono mikrofonu",
|
||||
|
@ -1504,7 +1470,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s i %(user2)s",
|
||||
"Send your first message to invite <displayName/> to chat": "Wyślij pierwszą wiadomość, aby zaprosić <displayName/> do rozmowy",
|
||||
"Spell check": "Sprawdzanie pisowni",
|
||||
"Download %(brand)s Desktop": "Pobierz %(brand)s Desktop",
|
||||
"We're creating a room with %(names)s": "Tworzymy pokój z %(names)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "Twój serwer nie wspiera wyłączenia wysyłania potwierdzeń przeczytania.",
|
||||
"Last activity": "Ostatnia aktywność",
|
||||
|
@ -1528,7 +1493,6 @@
|
|||
"Not ready for secure messaging": "Nieprzygotowane do bezpiecznej komunikacji",
|
||||
"Inactive": "Nieaktywny",
|
||||
"Inactive for %(inactiveAgeDays)s days or longer": "Nieaktywne przez %(inactiveAgeDays)s dni lub dłużej",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s lub %(appLinks)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s lub %(recoveryFile)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s lub %(copyButton)s",
|
||||
"Channel: <channelLink/>": "Kanał: <channelLink/>",
|
||||
|
@ -1586,7 +1550,6 @@
|
|||
"one": "%(count)s osoba dołączyła",
|
||||
"other": "%(count)s osób dołączyło"
|
||||
},
|
||||
"Download %(brand)s": "Pobierz %(brand)s",
|
||||
"Enable hardware acceleration": "Włącz przyspieszenie sprzętowe",
|
||||
"Show tray icon and minimise window to it on close": "Pokaż ikonę w zasobniku systemowym i zminimalizuj okno do niej zamiast zamknięcia",
|
||||
"Automatically send debug logs when key backup is not functioning": "Automatycznie wysyłaj logi debugowania gdy kopia zapasowa kluczy nie działa",
|
||||
|
@ -2070,16 +2033,12 @@
|
|||
"other": "Aktualnie dołączanie do %(count)s pokoi"
|
||||
},
|
||||
"Ongoing call": "Rozmowa w toku",
|
||||
"You do not have permissions to add spaces to this space": "Nie masz uprawnień, aby dodać przestrzenie do tej przestrzeni",
|
||||
"Add space": "Dodaj przestrzeń",
|
||||
"Suggested Rooms": "Sugerowane pokoje",
|
||||
"Saved Items": "Przedmioty zapisane",
|
||||
"You do not have permissions to add rooms to this space": "Nie masz uprawnień do dodawania pokoi do tej przestrzeni",
|
||||
"Add existing room": "Dodaj istniejący pokój",
|
||||
"New video room": "Nowy pokój wideo",
|
||||
"You do not have permissions to create new rooms in this space": "Nie masz uprawnień do tworzenia nowych pokoi w tej przestrzeni",
|
||||
"Add people": "Dodaj osoby",
|
||||
"You do not have permissions to invite people to this space": "Nie masz uprawnień do zapraszania osób do tej przestrzeni",
|
||||
"Invite to space": "Zaproś do przestrzeni",
|
||||
"Private room": "Pokój prywatny",
|
||||
"Private space": "Przestrzeń prywatna",
|
||||
|
@ -2339,7 +2298,6 @@
|
|||
"Declining…": "Odrzucanie…",
|
||||
"%(name)s cancelled": "%(name)s anulował",
|
||||
"Report": "Zgłoś",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "To co pisze ten użytkownik jest złe.\nZostanie to zgłoszone moderatorom pokoju.",
|
||||
"Modal Widget": "Widżet modalny",
|
||||
"Your homeserver doesn't seem to support this feature.": "Wygląda na to, że Twój serwer domowy nie wspiera tej funkcji.",
|
||||
"If they don't match, the security of your communication may be compromised.": "Jeśli nie pasują, bezpieczeństwo twojego konta mogło zostać zdradzone.",
|
||||
|
@ -2395,20 +2353,7 @@
|
|||
"Open room": "Otwórz pokój",
|
||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "Możesz się ze mną skontaktować, jeśli chcesz mnie śledzić lub pomóc wypróbować nadchodzące pomysły",
|
||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Twoja platforma i nazwa użytkownika zostaną zapisane, aby pomóc nam ulepszyć nasze produkty.",
|
||||
"Size Limit": "Limit rozmiaru",
|
||||
"Format": "Format",
|
||||
"Select from the options below to export chats from your timeline": "Wybierz jedną z opcji poniżej, aby eksportować czaty z osi czasu",
|
||||
"Export Chat": "Eksportuj czat",
|
||||
"Exporting your data": "Eksportowanie Twoich danych",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Czy na pewno chcesz przerwać eksportowanie danych? Jeśli tak, trzeba będzie zacząć od nowa.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Twój eksport został zakończony pomyślnie. Sprawdź swój folder Pobrane.",
|
||||
"Export Successful": "Eksport zakończony pomyślnie",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Liczba wiadomości",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Liczba wiadomości może być tylko liczbą pomiędzy %(min)s i %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Rozmiar może być tylko liczbą pomiędzy %(min)s MB i %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Wprowadź liczbę pomiędzy %(min)s i %(max)s",
|
||||
"Processing…": "Procesowanie…",
|
||||
"Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "Czy na pewno chcesz zakończyć ankietę? Zostaną wyświetlone ostateczne wyniki, a osoby nie będą mogły głosować.",
|
||||
"End Poll": "Zakończ ankietę",
|
||||
"Sorry, the poll did not end. Please try again.": "Przepraszamy, ankieta nie została zakończona. Spróbuj ponownie.",
|
||||
|
@ -2476,11 +2421,6 @@
|
|||
"You're in": "Wszedłeś",
|
||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Możesz użyć niestandardowych opcji serwera, aby zalogować się na inny serwer Matrix, wprowadzając inny adres URL serwera. Umożliwi Ci to na korzystanie z %(brand)s z istniejącym już kontem Matrix na innym serwerze domowym.",
|
||||
"To leave the beta, visit your settings.": "Aby wyjść z bety, odwiedź swoje ustawienia.",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play i logo Google Play są znakami towarowymi Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® i logo Apple® są znakami towarowymi Apple Inc.",
|
||||
"Get it on F-Droid": "Pobierz w F-Droid",
|
||||
"Get it on Google Play": "Pobierz w Google Play",
|
||||
"Download on the App Store": "Pobierz w App Store",
|
||||
"Adding spaces has moved.": "Dodawanie przestrzeni zostało przeniesione.",
|
||||
"Search for rooms": "Szukaj pokoi",
|
||||
"Want to add a new room instead?": "Chcesz zamiast tego dodać nowy pokój?",
|
||||
|
@ -2501,8 +2441,6 @@
|
|||
"Coworkers and teams": "Współpracownicy i drużyny",
|
||||
"Friends and family": "Przyjaciele i rodzina",
|
||||
"Who will you chat to the most?": "Z kim będziesz najczęściej rozmawiał?",
|
||||
"Sign in with single sign-on": "Zaloguj się za pomocą pojedynczego logowania",
|
||||
"Continue with %(provider)s": "Kontynuuj z %(provider)s",
|
||||
"Choose a locale": "Wybierz język",
|
||||
"<w>WARNING:</w> <description/>": "<w>OSTRZEŻENIE:</w> <description/>",
|
||||
"This version of %(brand)s does not support viewing some encrypted files": "Ta wersja %(brand)s nie wspiera wyświetlania niektórych plików szyfrowanych",
|
||||
|
@ -2525,7 +2463,6 @@
|
|||
"Missing domain separator e.g. (:domain.org)": "Brakuje separatora domeny np. (:domena.org)",
|
||||
"Room address": "Adres pokoju",
|
||||
"In reply to <a>this message</a>": "W odpowiedzi do <a>tej wiadomości</a>",
|
||||
"QR Code": "Kod QR",
|
||||
"Results are only revealed when you end the poll": "Wyniki są ujawnione tylko po zakończeniu ankiety",
|
||||
"Voters see results as soon as they have voted": "Głosujący mogą zobaczyć wyniki po oddaniu głosu",
|
||||
"Add option": "Dodaj opcję",
|
||||
|
@ -2550,8 +2487,6 @@
|
|||
"If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Jeśli anulujesz teraz, możesz stracić wiadomości szyfrowane i dane, jeśli stracisz dostęp do loginu i hasła.",
|
||||
"The request was cancelled.": "Żądanie zostało anulowane.",
|
||||
"Cancelled signature upload": "Przesyłanie sygnatury zostało anulowane",
|
||||
"The export was cancelled successfully": "Eksport został anulowany pomyślnie",
|
||||
"Export Cancelled": "Eksport został anulowany",
|
||||
"Sorry, the poll you tried to create was not posted.": "Przepraszamy, ankieta, którą próbowałeś utworzyć nie została opublikowana.",
|
||||
"Create Poll": "Utwórz ankietę",
|
||||
"Create poll": "Utwórz ankietę",
|
||||
|
@ -2577,15 +2512,6 @@
|
|||
"Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "Zakaż rozmawiania w starej wersji pokoju i opublikuj wiadomość, aby użytkownicy przenieśli się do nowego",
|
||||
"Update any local room aliases to point to the new room": "Zaktualizuj każdy alias pokoju, aby wskazywał na nowy pokój",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Ulepszenie tego pokoju wymaga zamknięcia bieżącej instancji pokoju i utworzenie nowego w jego miejsce. Aby zapewnić użytkownikom najlepsze możliwe doświadczenia:",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Inny powód. Proszę opisać problem.\nZostanie to zgłoszone do moderatorów pokoju.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Ten pokój został dedykowany do aktywności nielegalnych lub toksycznych, lub moderatorzy zawiedli w kontrolowaniu tego typu zawartości.\nZostanie to zgłoszone do administratorów %(homeserver)s.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Ten pokój został dedykowany do aktywności nielegalnych lub toksycznych, lub moderatorzy zawiedli w kontrolowaniu tego typu zawartości.\nZostanie to zgłoszone do administratorów %(homeserver)s. Administratorzy NIE będą w stanie przeczytać zawartości szyfrowanej w tym pokoju.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Ten użytkownik spamuje pokój, wysyłając wiadomości z reklamami, linkami do reklam lub propagandy.\nTo zdarzenie zostanie zgłoszone moderatorom.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Ten użytkownik wykazuje nielegalne zachowanie, na przykład wyłudza dane lub stosuje groźby karalne.\nTo zdarzenie zostanie zgłoszone moderatorom pokoju, którzy mogą przekazać te informacje organom prawnym.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Ten użytkownik wykazuje toksyczne zachowanie, na przykład obraża innych, udostępnia treści dla dorosłych lub łamie zasady panujące w pokoju.\nTo zdarzenie zostanie zgłoszone moderatorom pokoju.",
|
||||
"Check if you want to hide all current and future messages from this user.": "Upewnij się, czy chcesz ukryć wszystkie bieżące i przyszłe wiadomości od tego użytkownika.",
|
||||
"Ignore user": "Ignoruj użytkownika",
|
||||
"Unable to create room with moderation bot": "Nie można utworzyć pokoju z botem moderatorem",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Mała uwaga, jeśli nie dodasz adresu e-mail i stracisz swoje hasło, możesz <b>permanentnie stracić dostęp do swojego konta</b>.",
|
||||
"Continuing without email": "Kontynuowanie bez adresu e-mail",
|
||||
"Data on this screen is shared with %(widgetDomain)s": "Dane na tym ekranie są współdzielone z %(widgetDomain)s",
|
||||
|
@ -2728,10 +2654,6 @@
|
|||
"Loading live location…": "Wczytywanie lokalizacji na żywo…",
|
||||
"Live until %(expiryTime)s": "Na żywo do %(expiryTime)s",
|
||||
"Updated %(humanizedUpdateTime)s": "Zaktualizowano %(humanizedUpdateTime)s",
|
||||
"Joining the beta will reload %(brand)s.": "Dołączenie do bety, wczyta ponownie %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Opuszczenie bety, wczyta ponownie %(brand)s.",
|
||||
"Click for more info": "Kliknij po więcej informacji",
|
||||
"This is a beta feature": "To jest funkcja beta",
|
||||
"Take a picture": "Zrób zdjęcie",
|
||||
"Start audio stream": "Rozpocznij transmisję audio",
|
||||
"Failed to start livestream": "Nie udało się rozpocząć transmisji na żywo",
|
||||
|
@ -2849,8 +2771,6 @@
|
|||
"Failed to get autodiscovery configuration from server": "Nie udało się uzyskać konfiguracji autodiscovery z serwera",
|
||||
"Invalid homeserver discovery response": "Nieprawidłowa odpowiedź na wykrycie serwera domowego",
|
||||
"Confirm new password": "Potwierdź nowe hasło",
|
||||
"Reset your password": "Resetuj swoje hasło",
|
||||
"Reset password": "Resetuj hasło",
|
||||
"Signing out your devices will delete the message encryption keys stored on them, making encrypted chat history unreadable.": "Wylogowanie Twoich urządzeń spowoduje usunięcie wszystkich kluczy szyfrujących, które się na nich znajdują, uniemożliwiając czytanie historii wiadomości szyfrowanych.",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Za dużo prób w krótkim odstępie czasu. Spróbuj ponownie za%(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Za dużo prób w krótkim odstępie czasu. Odczekaj trochę, zanim spróbujesz ponownie.",
|
||||
|
@ -3071,7 +2991,8 @@
|
|||
"secure_backup": "Bezpieczna kopia zapasowa",
|
||||
"cross_signing": "Weryfikacja krzyżowa",
|
||||
"identity_server": "Serwer tożsamości",
|
||||
"integration_manager": "Menedżer integracji"
|
||||
"integration_manager": "Menedżer integracji",
|
||||
"qr_code": "Kod QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Kontynuuj",
|
||||
|
@ -3174,7 +3095,16 @@
|
|||
"clear": "Wyczyść"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu użytkownika"
|
||||
"user_menu": "Menu użytkownika",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s nieprzeczytanych wiadomości, wliczając wzmianki.",
|
||||
"one": "1 nieprzeczytana wzmianka."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s nieprzeczytanych wiadomości.",
|
||||
"one": "1 nieprzeczytana wiadomość."
|
||||
},
|
||||
"unread_messages": "Nieprzeczytane wiadomości."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Pokoje wideo",
|
||||
|
@ -3229,7 +3159,13 @@
|
|||
"group_themes": "Motywy",
|
||||
"group_encryption": "Szyfrowanie",
|
||||
"group_experimental": "Eksperymentalne",
|
||||
"group_developer": "Developer"
|
||||
"group_developer": "Developer",
|
||||
"beta_feature": "To jest funkcja beta",
|
||||
"click_for_info": "Kliknij po więcej informacji",
|
||||
"leave_beta_reload": "Opuszczenie bety, wczyta ponownie %(brand)s.",
|
||||
"join_beta_reload": "Dołączenie do bety, wczyta ponownie %(brand)s.",
|
||||
"leave_beta": "Opuść betę",
|
||||
"join_beta": "Dołącz do bety"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Strona główna",
|
||||
|
@ -3360,7 +3296,15 @@
|
|||
"enable_notifications": "Włącz powiadomienia",
|
||||
"download_app_description": "Nie przegap niczego zabierając %(brand)s ze sobą",
|
||||
"download_app_action": "Pobierz aplikacje",
|
||||
"download_app": "Pobierz %(brand)s"
|
||||
"download_app": "Pobierz %(brand)s",
|
||||
"download_brand": "Pobierz %(brand)s",
|
||||
"download_brand_desktop": "Pobierz %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s lub %(appLinks)s",
|
||||
"download_app_store": "Pobierz w App Store",
|
||||
"download_google_play": "Pobierz w Google Play",
|
||||
"download_f_droid": "Pobierz w F-Droid",
|
||||
"apple_trademarks": "App Store® i logo Apple® są znakami towarowymi Apple Inc.",
|
||||
"google_trademarks": "Google Play i logo Google Play są znakami towarowymi Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Pokazuj skróty do ostatnio wyświetlonych pokojów nad listą pokojów",
|
||||
|
@ -3579,7 +3523,24 @@
|
|||
"error_fetching_file": "Wystąpił błąd przy pobieraniu pliku",
|
||||
"file_attached": "Plik załączony",
|
||||
"fetching_events": "Pobieranie wydarzeń…",
|
||||
"creating_output": "Tworzenie danych wyjściowych…"
|
||||
"creating_output": "Tworzenie danych wyjściowych…",
|
||||
"processing": "Procesowanie…",
|
||||
"enter_number_between_min_max": "Wprowadź liczbę pomiędzy %(min)s i %(max)s",
|
||||
"size_limit_min_max": "Rozmiar może być tylko liczbą pomiędzy %(min)s MB i %(max)s MB",
|
||||
"num_messages_min_max": "Liczba wiadomości może być tylko liczbą pomiędzy %(min)s i %(max)s",
|
||||
"num_messages": "Liczba wiadomości",
|
||||
"cancelled": "Eksport został anulowany",
|
||||
"cancelled_detail": "Eksport został anulowany pomyślnie",
|
||||
"successful": "Eksport zakończony pomyślnie",
|
||||
"successful_detail": "Twój eksport został zakończony pomyślnie. Sprawdź swój folder Pobrane.",
|
||||
"confirm_stop": "Czy na pewno chcesz przerwać eksportowanie danych? Jeśli tak, trzeba będzie zacząć od nowa.",
|
||||
"exporting_your_data": "Eksportowanie Twoich danych",
|
||||
"title": "Eksportuj czat",
|
||||
"select_option": "Wybierz jedną z opcji poniżej, aby eksportować czaty z osi czasu",
|
||||
"format": "Format",
|
||||
"messages": "Wiadomości",
|
||||
"size_limit": "Limit rozmiaru",
|
||||
"include_attachments": "Dodaj załączniki"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Utwórz pokój wideo",
|
||||
|
@ -3991,7 +3952,6 @@
|
|||
"unsupported": "Rozmowy nie są obsługiwane",
|
||||
"unsupported_browser": "Nie możesz wykonywać połączeń z tej przeglądarki."
|
||||
},
|
||||
"Messages": "Wiadomości",
|
||||
"Other": "Inne",
|
||||
"Advanced": "Zaawansowane",
|
||||
"room_settings": {
|
||||
|
@ -4079,5 +4039,53 @@
|
|||
"spaceinvaders_message": "wysyła kosmicznych najeźdźców",
|
||||
"hearts_description": "Wysyła podaną wiadomość z serduszkami",
|
||||
"hearts_message": "wysyła serduszka"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Nie masz uprawnień do zapraszania osób do tej przestrzeni",
|
||||
"error_no_permission_create_room": "Nie masz uprawnień do tworzenia nowych pokoi w tej przestrzeni",
|
||||
"error_no_permission_add_room": "Nie masz uprawnień do dodawania pokoi do tej przestrzeni",
|
||||
"error_no_permission_add_space": "Nie masz uprawnień, aby dodać przestrzenie do tej przestrzeni"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Kontynuuj z %(provider)s",
|
||||
"sign_in_with_sso": "Zaloguj się za pomocą pojedynczego logowania",
|
||||
"sso": "Pojedyncze logowanie",
|
||||
"reset_password_action": "Resetuj hasło",
|
||||
"reset_password_title": "Resetuj swoje hasło"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Pokazuj najpierw pokoje z nieprzeczytanymi wiadomościami",
|
||||
"show_previews": "Pokazuj podglądy wiadomości",
|
||||
"sort_by": "Sortuj według",
|
||||
"sort_by_activity": "Aktywności",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Ustawienia listy",
|
||||
"show_n_more": {
|
||||
"one": "Pokaż %(count)s więcej",
|
||||
"other": "Pokaż %(count)s więcej"
|
||||
},
|
||||
"show_less": "Pokaż mniej",
|
||||
"notification_options": "Opcje powiadomień"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Wypełnij, dlaczego dokonujesz zgłoszenia.",
|
||||
"unable_create_room_moderation_bot": "Nie można utworzyć pokoju z botem moderatorem",
|
||||
"ignore_user": "Ignoruj użytkownika",
|
||||
"hide_messages_from_user": "Upewnij się, czy chcesz ukryć wszystkie bieżące i przyszłe wiadomości od tego użytkownika.",
|
||||
"nature_disagreement": "To co pisze ten użytkownik jest złe.\nZostanie to zgłoszone moderatorom pokoju.",
|
||||
"nature_toxic": "Ten użytkownik wykazuje toksyczne zachowanie, na przykład obraża innych, udostępnia treści dla dorosłych lub łamie zasady panujące w pokoju.\nTo zdarzenie zostanie zgłoszone moderatorom pokoju.",
|
||||
"nature_illegal": "Ten użytkownik wykazuje nielegalne zachowanie, na przykład wyłudza dane lub stosuje groźby karalne.\nTo zdarzenie zostanie zgłoszone moderatorom pokoju, którzy mogą przekazać te informacje organom prawnym.",
|
||||
"nature_spam": "Ten użytkownik spamuje pokój, wysyłając wiadomości z reklamami, linkami do reklam lub propagandy.\nTo zdarzenie zostanie zgłoszone moderatorom.",
|
||||
"report_to_homeserver_encrypted": "Ten pokój został dedykowany do aktywności nielegalnych lub toksycznych, lub moderatorzy zawiedli w kontrolowaniu tego typu zawartości.\nZostanie to zgłoszone do administratorów %(homeserver)s. Administratorzy NIE będą w stanie przeczytać zawartości szyfrowanej w tym pokoju.",
|
||||
"report_to_homeserver": "Ten pokój został dedykowany do aktywności nielegalnych lub toksycznych, lub moderatorzy zawiedli w kontrolowaniu tego typu zawartości.\nZostanie to zgłoszone do administratorów %(homeserver)s.",
|
||||
"nature_other": "Inny powód. Proszę opisać problem.\nZostanie to zgłoszone do moderatorów pokoju.",
|
||||
"nature": "Wybierz powód oraz opisz dlaczego ta wiadomość jest niestosowna.",
|
||||
"disagree": "Nie zgadzam się",
|
||||
"toxic_behaviour": "Toksyczne zachowanie",
|
||||
"illegal_content": "Nielegalna treść",
|
||||
"spam_or_propaganda": "Spam lub propaganda",
|
||||
"report_entire_room": "Zgłoś cały pokój",
|
||||
"report_content_to_homeserver": "Zgłoś zawartość do administratora swojego serwera",
|
||||
"description": "Zgłoszenie tej wiadomości wyśle administratorowi serwera unikatowe „ID wydarzenia”. Jeżeli wiadomości w tym pokoju są szyfrowane, administrator serwera może nie być w stanie przeczytać treści wiadomości, lub zobaczyć plików bądź zdjęć."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -275,7 +275,6 @@
|
|||
"No identity access token found": "Nenhum token de identidade de acesso encontrado",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirme adicionar este endereço de email usando Single Sign On para provar a sua identidade.",
|
||||
"Confirm adding email": "Confirmar adição de email",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Click the button below to confirm adding this email address.": "Pressione o botão abaixo para confirmar se quer adicionar este endereço de email.",
|
||||
"The add / bind with MSISDN flow is misconfigured": "A junção / vinculo com o fluxo MSISDN está mal configurado",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirme que quer adicionar este número de telefone usando Single Sign On para provar a sua identidade.",
|
||||
|
@ -813,11 +812,16 @@
|
|||
"unsupported": "Chamadas não são suportadas",
|
||||
"unsupported_browser": "Não pode fazer chamadas neste navegador."
|
||||
},
|
||||
"Messages": "Mensagens",
|
||||
"Other": "Outros",
|
||||
"Advanced": "Avançado",
|
||||
"labs": {
|
||||
"group_profile": "Perfil",
|
||||
"group_rooms": "Salas"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Single Sign On"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Mensagens"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -407,7 +407,6 @@
|
|||
"General failure": "Falha geral",
|
||||
"Please <a>contact your service administrator</a> to continue using this service.": "Por favor, <a>entre em contato com o seu administrador de serviços</a> para continuar usando este serviço.",
|
||||
"Failed to perform homeserver discovery": "Falha ao executar a descoberta do homeserver",
|
||||
"Sign in with single sign-on": "Entre com o logon único",
|
||||
"That matches!": "Isto corresponde!",
|
||||
"That doesn't match.": "Isto não corresponde.",
|
||||
"Go back to set it again.": "Voltar para configurar novamente.",
|
||||
|
@ -528,7 +527,6 @@
|
|||
"Room Addresses": "Endereços da sala",
|
||||
"Use Single Sign On to continue": "Use \"Single Sign On\" para continuar",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirme a inclusão deste endereço de e-mail usando o Single Sign On para comprovar sua identidade.",
|
||||
"Single Sign On": "Autenticação Única",
|
||||
"Confirm adding email": "Confirmar a inclusão de e-mail",
|
||||
"Click the button below to confirm adding this email address.": "Clique no botão abaixo para confirmar a adição deste endereço de e-mail.",
|
||||
"Add Email Address": "Adicionar endereço de e-mail",
|
||||
|
@ -605,7 +603,6 @@
|
|||
"Accept <policyLink /> to continue:": "Aceitar <policyLink /> para continuar:",
|
||||
"This bridge was provisioned by <user />.": "Esta integração foi disponibilizada por <user />.",
|
||||
"This bridge is managed by <user />.": "Esta integração é desenvolvida por <user />.",
|
||||
"Show less": "Mostrar menos",
|
||||
"Show more": "Mostrar mais",
|
||||
"Your homeserver does not support cross-signing.": "Seu servidor não suporta a autoverificação.",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Sua conta tem uma identidade autoverificada em armazenamento secreto, mas ainda não é considerada confiável por esta sessão.",
|
||||
|
@ -687,7 +684,6 @@
|
|||
"You'll lose access to your encrypted messages": "Você perderá acesso às suas mensagens criptografadas",
|
||||
"Session key": "Chave da sessão",
|
||||
"Verify session": "Confirmar sessão",
|
||||
"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.": "Reportar esta mensagem enviará o seu 'event ID' único para o/a administrador/a do seu Homeserver. Se as mensagens nesta sala são criptografadas, o/a administrador/a não conseguirá ler o texto da mensagem nem ver nenhuma imagem ou arquivo.",
|
||||
"Sign out and remove encryption keys?": "Fazer logout e remover as chaves de criptografia?",
|
||||
"Some session data, including encrypted message keys, is missing. Sign out and sign in to fix this, restoring keys from backup.": "Alguns dados de sessão, incluindo chaves de mensagens criptografadas, estão faltando. Desconecte-se e entre novamente para resolver isso, o que restaurará as chaves do backup.",
|
||||
"Security Key": "Chave de Segurança",
|
||||
|
@ -719,7 +715,6 @@
|
|||
"%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s está armazenando de forma segura as mensagens criptografadas localmente, para que possam aparecer nos resultados das buscas:",
|
||||
"%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s de %(totalRooms)s",
|
||||
"Click the button below to confirm adding this phone number.": "Clique no botão abaixo para confirmar a adição deste número de telefone.",
|
||||
"Notification options": "Alterar notificações",
|
||||
"Forget Room": "Esquecer Sala",
|
||||
"Favourited": "Favoritado",
|
||||
"You cancelled verifying %(name)s": "Você cancelou a confirmação de %(name)s",
|
||||
|
@ -749,7 +744,6 @@
|
|||
"Rotate Left": "Girar para a esquerda",
|
||||
"Rotate Right": "Girar para a direita",
|
||||
"Language Dropdown": "Menu suspenso de idiomas",
|
||||
"QR Code": "Código QR",
|
||||
"Room address": "Endereço da sala",
|
||||
"e.g. my-room": "por exemplo: minha-sala",
|
||||
"Some characters not allowed": "Alguns caracteres não são permitidos",
|
||||
|
@ -774,24 +768,10 @@
|
|||
"Server did not return valid authentication information.": "O servidor não retornou informações de autenticação válidas.",
|
||||
"Integrations are disabled": "As integrações estão desativadas",
|
||||
"Integrations not allowed": "As integrações não estão permitidas",
|
||||
"List options": "Opções da Lista",
|
||||
"Jump to first unread room.": "Ir para a primeira sala não lida.",
|
||||
"Jump to first invite.": "Ir para o primeiro convite.",
|
||||
"Add room": "Adicionar sala",
|
||||
"Show %(count)s more": {
|
||||
"other": "Mostrar %(count)s a mais",
|
||||
"one": "Mostrar %(count)s a mais"
|
||||
},
|
||||
"Room options": "Opções da Sala",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s mensagens não lidas, incluindo menções.",
|
||||
"one": "1 menção não lida."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s mensagens não lidas.",
|
||||
"one": "1 mensagem não lida."
|
||||
},
|
||||
"Unread messages.": "Mensagens não lidas.",
|
||||
"This room is public": "Esta sala é pública",
|
||||
"This room has already been upgraded.": "Esta sala já foi atualizada.",
|
||||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Esta sala está executando a versão <roomVersion />, que este servidor marcou como <i>instável</i>.",
|
||||
|
@ -889,11 +869,6 @@
|
|||
"Reject & Ignore user": "Recusar e bloquear usuário",
|
||||
"You're previewing %(roomName)s. Want to join it?": "Você está visualizando %(roomName)s. Deseja participar?",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s não pode ser visualizado. Deseja participar?",
|
||||
"Show rooms with unread messages first": "Mostrar salas não lidas em primeiro",
|
||||
"Show previews of messages": "Mostrar pré-visualizações de mensagens",
|
||||
"Sort by": "Classificar por",
|
||||
"Activity": "Atividade recente",
|
||||
"A-Z": "A-Z",
|
||||
"Unknown Command": "Comando desconhecido",
|
||||
"Unrecognised command: %(commandText)s": "Comando não reconhecido: %(commandText)s",
|
||||
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Você pode usar <code>/help</code> para listar os comandos disponíveis. Você quis enviar isso como uma mensagem?",
|
||||
|
@ -1114,7 +1089,6 @@
|
|||
"Almost there! Is %(displayName)s showing the same shield?": "Quase lá! Este escudo também aparece para %(displayName)s?",
|
||||
"You've successfully verified %(displayName)s!": "Você confirmou %(displayName)s com sucesso!",
|
||||
"Confirm this user's session by comparing the following with their User Settings:": "Confirme a sessão deste usuário comparando o seguinte com as configurações deste usuário:",
|
||||
"Report Content to Your Homeserver Administrator": "Denunciar conteúdo ao administrador do seu servidor principal",
|
||||
"Discovery options will appear once you have added an email above.": "As opções de descoberta aparecerão assim que você adicione um e-mail acima.",
|
||||
"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?": "Desativar este usuário irá desconectá-lo e impedi-lo de fazer o login novamente. Além disso, ele sairá de todas as salas em que estiver. Esta ação não pode ser revertida. Tem certeza de que deseja desativar este usuário?",
|
||||
"Deleting cross-signing keys is permanent. Anyone you have verified with will see security alerts. You almost certainly don't want to do this, unless you've lost every device you can cross-sign from.": "Apagar chaves de autoverificação é permanente. Qualquer pessoa com quem você se confirmou receberá alertas de segurança. Não é aconselhável fazer isso, a menos que você tenha perdido todos os aparelhos nos quais fez a autoverificação.",
|
||||
|
@ -1143,7 +1117,6 @@
|
|||
"If they don't match, the security of your communication may be compromised.": "Se eles não corresponderem, a segurança da sua comunicação pode estar comprometida.",
|
||||
"Your homeserver doesn't seem to support this feature.": "O seu servidor local não parece suportar este recurso.",
|
||||
"Message edits": "Edições na mensagem",
|
||||
"Please fill why you're reporting.": "Por favor, descreva porque você está reportando.",
|
||||
"A browser extension is preventing the request.": "Uma extensão do navegador está impedindo a solicitação.",
|
||||
"The server has denied your request.": "O servidor recusou a sua solicitação.",
|
||||
"No files visible in this room": "Nenhum arquivo nesta sala",
|
||||
|
@ -1620,7 +1593,6 @@
|
|||
"Specify a homeserver": "Digite um servidor local",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Apenas um aviso: se você não adicionar um e-mail e depois esquecer sua senha, poderá <b>perder permanentemente o acesso à sua conta</b>.",
|
||||
"Continuing without email": "Continuar sem e-mail",
|
||||
"Continue with %(provider)s": "Continuar com %(provider)s",
|
||||
"Server Options": "Opções do servidor",
|
||||
"Reason (optional)": "Motivo (opcional)",
|
||||
"Invalid URL": "URL inválido",
|
||||
|
@ -1696,8 +1668,6 @@
|
|||
"Invite to %(spaceName)s": "Convidar para %(spaceName)s",
|
||||
"Create a new room": "Criar uma nova sala",
|
||||
"Spaces": "Espaços",
|
||||
"You do not have permissions to add rooms to this space": "Você não tem permissão para adicionar salas neste espaço",
|
||||
"You do not have permissions to create new rooms in this space": "Você não tem permissão para criar novas salas neste espaço",
|
||||
"Invite to this space": "Convidar para este espaço",
|
||||
"Your message was sent": "A sua mensagem foi enviada",
|
||||
"Space options": "Opções do espaço",
|
||||
|
@ -1874,13 +1844,7 @@
|
|||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Para evitar esses problemas, crie uma <a>nova sala criptografada</a> para a conversa que você planeja ter.",
|
||||
"Are you sure you want to add encryption to this public room?": "Tem certeza que deseja adicionar criptografia para esta sala pública?",
|
||||
"Select the roles required to change various parts of the space": "Selecionar os cargos necessários para alterar certas partes do espaço",
|
||||
"Include Attachments": "Incluir Anexos",
|
||||
"Size Limit": "Limite de Tamanho",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Número de mensagens",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Número de mensagens pode ser apenas um número entre %(min)s e %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "O tamanho pode ser apenas um número entre %(min)s MB e %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Insira um número entre %(min)s e %(max)s",
|
||||
"In reply to <a>this message</a>": "Em resposta a <a>esta mensagem</a>",
|
||||
"Export chat": "Exportar conversa",
|
||||
"Light high contrast": "Claro (alto contraste)",
|
||||
|
@ -1978,7 +1942,6 @@
|
|||
},
|
||||
"Join public room": "Entrar na sala pública",
|
||||
"Add people": "Adicionar pessoas",
|
||||
"You do not have permissions to invite people to this space": "Você não tem permissão para convidar pessoas para este espaço",
|
||||
"Invite to space": "Convidar para o espaço",
|
||||
"Start new chat": "Comece um novo bate-papo",
|
||||
"Recently viewed": "Visualizado recentemente",
|
||||
|
@ -2047,7 +2010,6 @@
|
|||
"Unable to copy room link": "Não foi possível copiar o link da sala",
|
||||
"Copy room link": "Copiar link da sala",
|
||||
"Public rooms": "Salas públicas",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s ou %(appLinks)s",
|
||||
"Add new server…": "Adicionar um novo servidor…",
|
||||
"%(count)s participants": {
|
||||
"other": "%(count)s participantes",
|
||||
|
@ -2250,7 +2212,8 @@
|
|||
"secure_backup": "Backup online",
|
||||
"cross_signing": "Autoverificação",
|
||||
"identity_server": "Servidor de identidade",
|
||||
"integration_manager": "Gerenciador de integrações"
|
||||
"integration_manager": "Gerenciador de integrações",
|
||||
"qr_code": "Código QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Continuar",
|
||||
|
@ -2340,7 +2303,16 @@
|
|||
"send_report": "Enviar relatório"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu do usuário"
|
||||
"user_menu": "Menu do usuário",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s mensagens não lidas, incluindo menções.",
|
||||
"one": "1 menção não lida."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s mensagens não lidas.",
|
||||
"one": "1 mensagem não lida."
|
||||
},
|
||||
"unread_messages": "Mensagens não lidas."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Salas de vídeo",
|
||||
|
@ -2452,7 +2424,8 @@
|
|||
"set_up_profile_description": "Certifique-se de que as pessoas saibam que é realmente você",
|
||||
"set_up_profile_action": "Seu perfil",
|
||||
"set_up_profile": "Configure seu perfil",
|
||||
"find_people": "Encontrar pessoas"
|
||||
"find_people": "Encontrar pessoas",
|
||||
"qr_or_app_links": "%(qrCode)s ou %(appLinks)s"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Mostrar atalhos para salas recentemente visualizadas acima da lista de salas",
|
||||
|
@ -2578,7 +2551,14 @@
|
|||
"export_info": "Este é o início da exportação da sala <roomName/>. Exportado por <exporterDetails/> às %(exportDate)s.",
|
||||
"topic": "Tópico: %(topic)s",
|
||||
"error_fetching_file": "Erro ao buscar arquivo",
|
||||
"file_attached": "Arquivo Anexado"
|
||||
"file_attached": "Arquivo Anexado",
|
||||
"enter_number_between_min_max": "Insira um número entre %(min)s e %(max)s",
|
||||
"size_limit_min_max": "O tamanho pode ser apenas um número entre %(min)s MB e %(max)s MB",
|
||||
"num_messages_min_max": "Número de mensagens pode ser apenas um número entre %(min)s e %(max)s",
|
||||
"num_messages": "Número de mensagens",
|
||||
"messages": "Mensagens",
|
||||
"size_limit": "Limite de Tamanho",
|
||||
"include_attachments": "Incluir Anexos"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Criar uma sala de vídeo",
|
||||
|
@ -2940,7 +2920,6 @@
|
|||
"unsupported": "Chamadas não suportadas",
|
||||
"unsupported_browser": "Você não pode fazer chamadas neste navegador."
|
||||
},
|
||||
"Messages": "Mensagens",
|
||||
"Other": "Outros",
|
||||
"Advanced": "Avançado",
|
||||
"room_settings": {
|
||||
|
@ -3014,5 +2993,34 @@
|
|||
"snowfall_message": "envia neve caindo",
|
||||
"spaceinvaders_description": "Envia a mensagem com um efeito com tema espacial",
|
||||
"spaceinvaders_message": "envia os invasores do espaço"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Você não tem permissão para convidar pessoas para este espaço",
|
||||
"error_no_permission_create_room": "Você não tem permissão para criar novas salas neste espaço",
|
||||
"error_no_permission_add_room": "Você não tem permissão para adicionar salas neste espaço"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Continuar com %(provider)s",
|
||||
"sign_in_with_sso": "Entre com o logon único",
|
||||
"sso": "Autenticação Única"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Mostrar salas não lidas em primeiro",
|
||||
"show_previews": "Mostrar pré-visualizações de mensagens",
|
||||
"sort_by": "Classificar por",
|
||||
"sort_by_activity": "Atividade recente",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Opções da Lista",
|
||||
"show_n_more": {
|
||||
"other": "Mostrar %(count)s a mais",
|
||||
"one": "Mostrar %(count)s a mais"
|
||||
},
|
||||
"show_less": "Mostrar menos",
|
||||
"notification_options": "Alterar notificações"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Por favor, descreva porque você está reportando.",
|
||||
"report_content_to_homeserver": "Denunciar conteúdo ao administrador do seu servidor principal",
|
||||
"description": "Reportar esta mensagem enviará o seu 'event ID' único para o/a administrador/a do seu Homeserver. Se as mensagens nesta sala são criptografadas, o/a administrador/a não conseguirá ler o texto da mensagem nem ver nenhuma imagem ou arquivo."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,6 @@
|
|||
"Add Email Address": "Adăugați o adresă de e-mail",
|
||||
"Click the button below to confirm adding this email address.": "Faceți clic pe butonul de mai jos pentru a confirma adăugarea acestei adrese de e-mail.",
|
||||
"Confirm adding email": "Confirmați adăugarea e-mailului",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Confirmați adăugarea acestei adrese de e-mail utilizând Single Sign On pentru a vă dovedi identitatea.",
|
||||
"Use Single Sign On to continue": "Utilizați Single Sign On pentru a continua",
|
||||
"common": {
|
||||
|
@ -76,5 +75,8 @@
|
|||
"call_failed_media_connected": "Microfonul și camera web sunt conectate și configurate corect",
|
||||
"call_failed_media_permissions": "Permisiunea de a utiliza camera web este acordată",
|
||||
"call_failed_media_applications": "Nicio altă aplicație nu folosește camera web"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Single Sign On"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -631,7 +631,6 @@
|
|||
"General failure": "Общая ошибка",
|
||||
"This homeserver does not support login using email address.": "Этот сервер не поддерживает вход по адресу электронной почты.",
|
||||
"Failed to perform homeserver discovery": "Не удалось выполнить обнаружение сервера",
|
||||
"Sign in with single sign-on": "Войти в систему с помощью единой точки входа",
|
||||
"Create account": "Создать учётную запись",
|
||||
"Registration has been disabled on this homeserver.": "Регистрация на этом сервере отключена.",
|
||||
"Unable to query for supported registration methods.": "Невозможно запросить поддерживаемые методы регистрации.",
|
||||
|
@ -754,18 +753,12 @@
|
|||
"Deactivate user": "Деактивировать пользователя",
|
||||
"Remove recent messages": "Удалить последние сообщения",
|
||||
"Italics": "Курсив",
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s непрочитанных сообщения(-й).",
|
||||
"one": "1 непрочитанное сообщение."
|
||||
},
|
||||
"Show image": "Показать изображение",
|
||||
"e.g. my-room": "например, моя-комната",
|
||||
"Close dialog": "Закрыть диалог",
|
||||
"Please enter a name for the room": "Пожалуйста, введите название комнаты",
|
||||
"Hide advanced": "Скрыть дополнительные настройки",
|
||||
"Show advanced": "Показать дополнительные настройки",
|
||||
"Please fill why you're reporting.": "Пожалуйста, заполните, почему вы сообщаете.",
|
||||
"Report Content to Your Homeserver Administrator": "Сообщите о содержании своему администратору домашнего сервера",
|
||||
"Command Help": "Помощь команды",
|
||||
"To continue you need to accept the terms of this service.": "Для продолжения Вам необходимо принять условия данного сервиса.",
|
||||
"Document": "Документ",
|
||||
|
@ -775,16 +768,11 @@
|
|||
"This invite to %(roomName)s was sent to %(email)s": "Это приглашение в %(roomName)s было отправлено на %(email)s",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Используйте сервер идентификации в Настройках для получения приглашений непосредственно в %(brand)s.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Введите адрес эл.почты в Настройках, чтобы получать приглашения прямо в %(brand)s.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s непрочитанных сообщения(-й), включая упоминания.",
|
||||
"one": "1 непрочитанное упоминание."
|
||||
},
|
||||
"Failed to deactivate user": "Не удалось деактивировать пользователя",
|
||||
"This client does not support end-to-end encryption.": "Этот клиент не поддерживает сквозное шифрование.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Сообщения в этой комнате не защищены сквозным шифрованием.",
|
||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Используйте идентификационный сервер для приглашения по электронной почте. <default>Используйте значение по умолчанию (%(defaultIdentityServerName)s)</default> или управляйте в <settings>Настройках</settings>.",
|
||||
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Используйте идентификационный сервер для приглашения по электронной почте. Управление в <settings>Настройки</settings>.",
|
||||
"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.": "Отчет о данном сообщении отправит свой уникальный 'event ID' администратору вашего домашнего сервера. Если сообщения в этой комнате зашифрованы, администратор вашего домашнего сервера не сможет прочитать текст сообщения или просмотреть какие-либо файлы или изображения.",
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Отсутствует Капча открытого ключа в конфигурации домашнего сервера. Пожалуйста, сообщите об этом администратору вашего домашнего сервера.",
|
||||
"%(creator)s created and configured the room.": "%(creator)s создал(а) и настроил(а) комнату.",
|
||||
"Explore rooms": "Обзор комнат",
|
||||
|
@ -797,7 +785,6 @@
|
|||
"Room %(name)s": "Комната %(name)s",
|
||||
"Jump to first unread room.": "Перейти в первую непрочитанную комнату.",
|
||||
"Jump to first invite.": "Перейти к первому приглашению.",
|
||||
"Unread messages.": "Непрочитанные сообщения.",
|
||||
"Message Actions": "Сообщение действий",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "Это действие требует по умолчанию доступа к серверу идентификации <server/> для подтверждения адреса электронной почты или номера телефона, но у сервера нет никакого пользовательского соглашения.",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
|
@ -837,7 +824,6 @@
|
|||
"Later": "Позже",
|
||||
"This bridge was provisioned by <user />.": "Этот мост был подготовлен пользователем <user />.",
|
||||
"This bridge is managed by <user />.": "Этот мост управляется <user />.",
|
||||
"Show less": "Показать меньше",
|
||||
"Show more": "Показать больше",
|
||||
"Sign In or Create Account": "Войдите или создайте учётную запись",
|
||||
"Use your account or create a new one to continue.": "Воспользуйтесь своей учётной записью или создайте новую, чтобы продолжить.",
|
||||
|
@ -887,7 +873,6 @@
|
|||
"Cancel autocomplete": "Отменить автозаполнение",
|
||||
"Use Single Sign On to continue": "Воспользуйтесь единой точкой входа для продолжения",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Подтвердите добавление этого почтового адреса с помощью единой точки входа.",
|
||||
"Single Sign On": "Единая точка входа",
|
||||
"Confirm adding email": "Подтвердите добавление почтового адреса",
|
||||
"Click the button below to confirm adding this email address.": "Нажмите кнопку ниже для подтверждения этого почтового адреса.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Подтвердите добавление этого номера телефона с помощью единой точки входа.",
|
||||
|
@ -1036,17 +1021,6 @@
|
|||
"Please verify the room ID or address and try again.": "Проверьте ID комнаты или адрес и попробуйте снова.",
|
||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Администратор вашего сервера отключил сквозное шифрование по умолчанию в приватных комнатах и диалогах.",
|
||||
"Explore Public Rooms": "Просмотреть публичные комнаты",
|
||||
"Show rooms with unread messages first": "Комнаты с непрочитанными сообщениями в начале",
|
||||
"Show previews of messages": "Показывать последнее сообщение",
|
||||
"Sort by": "Сортировать",
|
||||
"Activity": "По активности",
|
||||
"A-Z": "А-Я",
|
||||
"List options": "Настройки списка",
|
||||
"Show %(count)s more": {
|
||||
"other": "Показать ещё %(count)s",
|
||||
"one": "Показать ещё %(count)s"
|
||||
},
|
||||
"Notification options": "Настройки уведомлений",
|
||||
"Favourited": "В избранном",
|
||||
"Room options": "Настройки комнаты",
|
||||
"Welcome to %(appName)s": "Добро пожаловать в %(appName)s",
|
||||
|
@ -1070,7 +1044,6 @@
|
|||
"Can't load this message": "Не удалось загрузить это сообщение",
|
||||
"Submit logs": "Отправить логи",
|
||||
"Widgets do not use message encryption.": "Виджеты не используют шифрование сообщений.",
|
||||
"QR Code": "QR-код",
|
||||
"Room address": "Адрес комнаты",
|
||||
"This address is available to use": "Этот адрес доступен",
|
||||
"This address is already in use": "Этот адрес уже используется",
|
||||
|
@ -1302,7 +1275,6 @@
|
|||
"Continue with %(ssoButtons)s": "Продолжить с %(ssoButtons)s",
|
||||
"New? <a>Create account</a>": "Впервые тут? <a>Создать учётную запись</a>",
|
||||
"Specify a homeserver": "Укажите домашний сервер",
|
||||
"Continue with %(provider)s": "Продолжить с %(provider)s",
|
||||
"Enter phone number": "Введите номер телефона",
|
||||
"Enter email address": "Введите адрес электронной почты",
|
||||
"The <b>%(capability)s</b> capability": "<b>%(capability)s</b> возможности",
|
||||
|
@ -1705,9 +1677,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Вы не сможете отменить это изменение, поскольку вы понижаете свои права, если вы являетесь последним привилегированным пользователем в пространстве, будет невозможно восстановить привилегии вбудущем.",
|
||||
"Empty room": "Пустая комната",
|
||||
"Suggested Rooms": "Предлагаемые комнаты",
|
||||
"You do not have permissions to add rooms to this space": "У вас нет разрешений, чтобы добавить комнаты в это пространство",
|
||||
"Add existing room": "Добавить существующую комнату",
|
||||
"You do not have permissions to create new rooms in this space": "У вас нет разрешений для создания новых комнат в этом пространстве",
|
||||
"Invite to this space": "Пригласить в это пространство",
|
||||
"Your message was sent": "Ваше сообщение было отправлено",
|
||||
"Space options": "Настройки пространства",
|
||||
|
@ -1791,8 +1761,6 @@
|
|||
"Error downloading audio": "Ошибка загрузки аудио",
|
||||
"Unnamed audio": "Безымянное аудио",
|
||||
"Avatar": "Аватар",
|
||||
"Join the beta": "Присоединиться к бета-версии",
|
||||
"Leave the beta": "Покинуть бета-версию",
|
||||
"Manage & explore rooms": "Управление и список комнат",
|
||||
"Add space": "Добавить пространство",
|
||||
"Report": "Сообщить",
|
||||
|
@ -1810,17 +1778,6 @@
|
|||
"Reset event store?": "Сбросить хранилище событий?",
|
||||
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>При обновлении будет создана новая версия комнаты</b>. Все текущие сообщения останутся в этой архивной комнате.",
|
||||
"Automatically invite members from this room to the new one": "Автоматическое приглашение участников из этой комнаты в новую комнату",
|
||||
"Report the entire room": "Сообщить обо всей комнате",
|
||||
"Spam or propaganda": "Спам или пропаганда",
|
||||
"Illegal Content": "Незаконный контент",
|
||||
"Toxic Behaviour": "Токсичное поведение",
|
||||
"Disagree": "Не согласен",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Пожалуйста, выберите характер и опишите, что делает это сообщение оскорбительным.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Любая другая причина. Пожалуйста, опишите проблему.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Эта комната посвящена незаконному или токсичному контенту, или модераторы не справляются с модерацией незаконного или токсичного контента.\nОб этом будет сообщено администраторам %(homeserver)s. Администраторы НЕ смогут прочитать зашифрованное содержимое этой комнаты.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Этот пользователь спамит комнату рекламой, ссылками на рекламу или пропагандой.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Этот пользователь демонстрирует незаконное поведение, например, домогается до людей или угрожает насилием.\nОб этом будет сообщено модераторам комнаты, которые могут передать дело в юридические органы.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "То, что пишет этот пользователь, неправильно.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"These are likely ones other room admins are a part of.": "Это, скорее всего, те, в которых участвуют другие администраторы комнат.",
|
||||
"Other spaces or rooms you might not know": "Другие пространства или комнаты, которые вы могли не знать",
|
||||
"Spaces you know that contain this room": "Пространства, которые вы знаете, уже содержат эту комнату",
|
||||
|
@ -2018,23 +1975,9 @@
|
|||
"%(reactors)s reacted with %(content)s": "%(reactors)s отреагировали %(content)s",
|
||||
"Message didn't send. Click for info.": "Сообщение не отправлено. Нажмите для получения информации.",
|
||||
"To join a space you'll need an invite.": "Чтобы присоединиться к пространству, вам нужно получить приглашение.",
|
||||
"Include Attachments": "Включить вложения",
|
||||
"Size Limit": "Ограничение по размеру",
|
||||
"Format": "Формат",
|
||||
"Export Chat": "Экспорт чата",
|
||||
"Exporting your data": "Экспорт ваших данных",
|
||||
"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": "Экспорт чата",
|
||||
"Select from the options below to export chats from your timeline": "Выберите один из приведенных ниже вариантов экспорта чатов из вашей временной шкалы",
|
||||
"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.": "Сброс ключей проверки нельзя отменить. После сброса вы не сможете получить доступ к старым зашифрованным сообщениям, а друзья, которые ранее проверили вас, будут видеть предупреждения о безопасности, пока вы не пройдете повторную проверку.",
|
||||
"Skip verification for now": "Пока пропустить проверку",
|
||||
"I'll verify later": "Я заверю позже",
|
||||
|
@ -2226,7 +2169,6 @@
|
|||
"%(spaceName)s menu": "Меню %(spaceName)s",
|
||||
"Join public room": "Присоединиться к публичной комнате",
|
||||
"Add people": "Добавить людей",
|
||||
"You do not have permissions to invite people to this space": "У вас нет разрешения приглашать людей в это пространство",
|
||||
"Invite to space": "Пригласить в пространство",
|
||||
"Start new chat": "Начать ЛС",
|
||||
"Recently viewed": "Недавно просмотренные",
|
||||
|
@ -2314,13 +2256,10 @@
|
|||
"Switch to space by number": "Перейти к пространству по номеру",
|
||||
"Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Ответьте в текущее обсуждение или создайте новое, наведя курсор на сообщение и нажав «%(replyInThread)s».",
|
||||
"We'll create rooms for each of them.": "Мы создадим комнаты для каждого из них.",
|
||||
"Click for more info": "Нажмите, чтобы узнать больше",
|
||||
"This is a beta feature": "Это бета-функция",
|
||||
"Search Dialog": "Окно поиска",
|
||||
"Use <arrows/> to scroll": "Используйте <arrows/> для прокрутки",
|
||||
"Join %(roomAddress)s": "Присоединиться к %(roomAddress)s",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Отзыв отправлен! Спасибо, мы ценим это!",
|
||||
"Export Cancelled": "Экспорт отменён",
|
||||
"Results are only revealed when you end the poll": "Результаты отображаются только после завершения опроса",
|
||||
"Voters see results as soon as they have voted": "Голосующие увидят результаты сразу после голосования",
|
||||
"Closed poll": "Закрытый опрос",
|
||||
|
@ -2349,7 +2288,6 @@
|
|||
"Can't create a thread from an event with an existing relation": "Невозможно создать обсуждение из события с существующей связью",
|
||||
"Pinned": "Закреплено",
|
||||
"Open thread": "Открыть ветку",
|
||||
"You do not have permissions to add spaces to this space": "У вас нет разрешения добавлять пространства в это пространство",
|
||||
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Пространства — это новый способ организации комнат и людей. Какой вид пространства вы хотите создать? Вы можете изменить это позже.",
|
||||
"Match system": "Как в системе",
|
||||
"Automatically send debug logs when key backup is not functioning": "Автоматически отправлять журналы отладки, когда резервное копирование ключей не работает",
|
||||
|
@ -2435,8 +2373,6 @@
|
|||
"Live location error": "Ошибка показа местоположения в реальном времени",
|
||||
"Live until %(expiryTime)s": "В реальном времени до %(expiryTime)s",
|
||||
"Updated %(humanizedUpdateTime)s": "Обновлено %(humanizedUpdateTime)s",
|
||||
"Joining the beta will reload %(brand)s.": "Присоединение к бета-тестированию перезагрузит %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Выход из бета-тестирования перезагрузит %(brand)s.",
|
||||
"View related event": "Посмотреть связанное событие",
|
||||
"Cameras": "Камеры",
|
||||
"Output devices": "Устройства вывода",
|
||||
|
@ -2457,8 +2393,6 @@
|
|||
"one": "%(count)s участник",
|
||||
"other": "%(count)s участников"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Выберите, хотите ли вы скрыть все текущие и будущие сообщения от этого пользователя.",
|
||||
"Ignore user": "Игнорировать пользователя",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "При выходе эти ключи будут удалены с данного устройства и вы больше не сможете прочитать зашифрованные сообщения, если у вас нет ключей для них на других устройствах или резервной копии на сервере.",
|
||||
"Open room": "Открыть комнату",
|
||||
"Hide my messages from new joiners": "Скрыть мои сообщения от новых участников",
|
||||
|
@ -2555,13 +2489,6 @@
|
|||
"This session is ready for secure messaging.": "Этот сеанс готов к безопасному обмену сообщениями.",
|
||||
"We're creating a room with %(names)s": "Мы создаем комнату с %(names)s",
|
||||
"You can't disable this later. The room will be encrypted but the embedded call will not.": "Вы не сможете отключить это позже. Комната будет зашифрована, а встроенный вызов — нет.",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play и Логотип Google Play являются торговыми знаками Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® и Логотип Apple® являются товарными знаками Apple Inc.",
|
||||
"Get it on Google Play": "Скачать в Google Play",
|
||||
"Get it on F-Droid": "Скачать на F-Droid",
|
||||
"Download %(brand)s": "Скачать %(brand)s",
|
||||
"Download %(brand)s Desktop": "Скачать %(brand)s Desktop",
|
||||
"Download on the App Store": "Скачать в App Store",
|
||||
"Online community members": "Участники сообщества в сети",
|
||||
"You're in": "Вы в",
|
||||
"Choose a locale": "Выберите регион",
|
||||
|
@ -2602,7 +2529,6 @@
|
|||
"Manually verify by text": "Ручная сверка по тексту",
|
||||
"Interactively verify by emoji": "Интерактивная сверка по смайлам",
|
||||
"Rename session": "Переименовать сеанс",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s или %(appLinks)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s или %(recoveryFile)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s или %(copyButton)s",
|
||||
"Sign out of this session": "Выйти из этого сеанса",
|
||||
|
@ -2843,7 +2769,8 @@
|
|||
"secure_backup": "Безопасное резервное копирование",
|
||||
"cross_signing": "Кросс-подпись",
|
||||
"identity_server": "Идентификационный сервер",
|
||||
"integration_manager": "Менеджер интеграции"
|
||||
"integration_manager": "Менеджер интеграции",
|
||||
"qr_code": "QR-код"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Продолжить",
|
||||
|
@ -2944,7 +2871,16 @@
|
|||
"clear": "Очистить"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Меню пользователя"
|
||||
"user_menu": "Меню пользователя",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s непрочитанных сообщения(-й), включая упоминания.",
|
||||
"one": "1 непрочитанное упоминание."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s непрочитанных сообщения(-й).",
|
||||
"one": "1 непрочитанное сообщение."
|
||||
},
|
||||
"unread_messages": "Непрочитанные сообщения."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Видеокомнаты",
|
||||
|
@ -2986,7 +2922,13 @@
|
|||
"group_themes": "Темы",
|
||||
"group_encryption": "Шифрование",
|
||||
"group_experimental": "Экспериментально",
|
||||
"group_developer": "Разработка"
|
||||
"group_developer": "Разработка",
|
||||
"beta_feature": "Это бета-функция",
|
||||
"click_for_info": "Нажмите, чтобы узнать больше",
|
||||
"leave_beta_reload": "Выход из бета-тестирования перезагрузит %(brand)s.",
|
||||
"join_beta_reload": "Присоединение к бета-тестированию перезагрузит %(brand)s.",
|
||||
"leave_beta": "Покинуть бета-версию",
|
||||
"join_beta": "Присоединиться к бета-версии"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Главная",
|
||||
|
@ -3111,7 +3053,15 @@
|
|||
"enable_notifications_action": "Включить уведомления",
|
||||
"enable_notifications": "Включить уведомления",
|
||||
"download_app_action": "Скачать приложения",
|
||||
"download_app": "Скачать %(brand)s"
|
||||
"download_app": "Скачать %(brand)s",
|
||||
"download_brand": "Скачать %(brand)s",
|
||||
"download_brand_desktop": "Скачать %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s или %(appLinks)s",
|
||||
"download_app_store": "Скачать в App Store",
|
||||
"download_google_play": "Скачать в Google Play",
|
||||
"download_f_droid": "Скачать на F-Droid",
|
||||
"apple_trademarks": "App Store® и Логотип Apple® являются товарными знаками Apple Inc.",
|
||||
"google_trademarks": "Google Play и Логотип Google Play являются торговыми знаками Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Показывать ссылки на недавние комнаты над списком комнат",
|
||||
|
@ -3296,7 +3246,23 @@
|
|||
"export_info": "Это начало экспорта <roomName/>. Экспортировано <exporterDetails/> в %(exportDate)s.",
|
||||
"topic": "Тема: %(topic)s",
|
||||
"error_fetching_file": "Ошибка при получении файла",
|
||||
"file_attached": "Файл прикреплен"
|
||||
"file_attached": "Файл прикреплен",
|
||||
"enter_number_between_min_max": "Введите число между %(min)s и %(max)s",
|
||||
"size_limit_min_max": "Размер может быть только числом между %(min)s Мб и %(max)s Мб",
|
||||
"num_messages_min_max": "Количество сообщений может быть только числом между %(min)s и %(max)s",
|
||||
"num_messages": "Количество сообщений",
|
||||
"cancelled": "Экспорт отменён",
|
||||
"cancelled_detail": "Экспорт был отменен",
|
||||
"successful": "Экспорт завершен",
|
||||
"successful_detail": "Ваш экспорт звершен. Найдите его в папке \"Загрузки\".",
|
||||
"confirm_stop": "Вы уверены, что хотите прекратить экспорт данных? Если да, то вам придется начать все сначала.",
|
||||
"exporting_your_data": "Экспорт ваших данных",
|
||||
"title": "Экспорт чата",
|
||||
"select_option": "Выберите один из приведенных ниже вариантов экспорта чатов из вашей временной шкалы",
|
||||
"format": "Формат",
|
||||
"messages": "Сообщения",
|
||||
"size_limit": "Ограничение по размеру",
|
||||
"include_attachments": "Включить вложения"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Создайте видеокомнату",
|
||||
|
@ -3698,7 +3664,6 @@
|
|||
"unsupported": "Вызовы не поддерживаются",
|
||||
"unsupported_browser": "Вы не можете совершать вызовы в этом браузере."
|
||||
},
|
||||
"Messages": "Сообщения",
|
||||
"Other": "Другие",
|
||||
"Advanced": "Подробности",
|
||||
"room_settings": {
|
||||
|
@ -3784,5 +3749,48 @@
|
|||
"spaceinvaders_message": "отправляет космических захватчиков",
|
||||
"hearts_description": "Отправляет данное сообщение с сердечками",
|
||||
"hearts_message": "отправляет сердечки"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "У вас нет разрешения приглашать людей в это пространство",
|
||||
"error_no_permission_create_room": "У вас нет разрешений для создания новых комнат в этом пространстве",
|
||||
"error_no_permission_add_room": "У вас нет разрешений, чтобы добавить комнаты в это пространство",
|
||||
"error_no_permission_add_space": "У вас нет разрешения добавлять пространства в это пространство"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Продолжить с %(provider)s",
|
||||
"sign_in_with_sso": "Войти в систему с помощью единой точки входа",
|
||||
"sso": "Единая точка входа"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Комнаты с непрочитанными сообщениями в начале",
|
||||
"show_previews": "Показывать последнее сообщение",
|
||||
"sort_by": "Сортировать",
|
||||
"sort_by_activity": "По активности",
|
||||
"sort_by_alphabet": "А-Я",
|
||||
"sublist_options": "Настройки списка",
|
||||
"show_n_more": {
|
||||
"other": "Показать ещё %(count)s",
|
||||
"one": "Показать ещё %(count)s"
|
||||
},
|
||||
"show_less": "Показать меньше",
|
||||
"notification_options": "Настройки уведомлений"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Пожалуйста, заполните, почему вы сообщаете.",
|
||||
"ignore_user": "Игнорировать пользователя",
|
||||
"hide_messages_from_user": "Выберите, хотите ли вы скрыть все текущие и будущие сообщения от этого пользователя.",
|
||||
"nature_disagreement": "То, что пишет этот пользователь, неправильно.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"nature_illegal": "Этот пользователь демонстрирует незаконное поведение, например, домогается до людей или угрожает насилием.\nОб этом будет сообщено модераторам комнаты, которые могут передать дело в юридические органы.",
|
||||
"nature_spam": "Этот пользователь спамит комнату рекламой, ссылками на рекламу или пропагандой.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"report_to_homeserver_encrypted": "Эта комната посвящена незаконному или токсичному контенту, или модераторы не справляются с модерацией незаконного или токсичного контента.\nОб этом будет сообщено администраторам %(homeserver)s. Администраторы НЕ смогут прочитать зашифрованное содержимое этой комнаты.",
|
||||
"nature_other": "Любая другая причина. Пожалуйста, опишите проблему.\nОб этом будет сообщено модераторам комнаты.",
|
||||
"nature": "Пожалуйста, выберите характер и опишите, что делает это сообщение оскорбительным.",
|
||||
"disagree": "Не согласен",
|
||||
"toxic_behaviour": "Токсичное поведение",
|
||||
"illegal_content": "Незаконный контент",
|
||||
"spam_or_propaganda": "Спам или пропаганда",
|
||||
"report_entire_room": "Сообщить обо всей комнате",
|
||||
"report_content_to_homeserver": "Сообщите о содержании своему администратору домашнего сервера",
|
||||
"description": "Отчет о данном сообщении отправит свой уникальный 'event ID' администратору вашего домашнего сервера. Если сообщения в этой комнате зашифрованы, администратор вашего домашнего сервера не сможет прочитать текст сообщения или просмотреть какие-либо файлы или изображения."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -411,7 +411,6 @@
|
|||
"Invalid identity server discovery response": "Neplatná odpoveď pri zisťovaní servera totožností",
|
||||
"General failure": "Všeobecná chyba",
|
||||
"Failed to perform homeserver discovery": "Nepodarilo sa zistiť adresu domovského servera",
|
||||
"Sign in with single sign-on": "Prihlásiť sa pomocou jediného prihlasovania",
|
||||
"That matches!": "Zhoda!",
|
||||
"That doesn't match.": "To sa nezhoduje.",
|
||||
"Go back to set it again.": "Vráťte sa späť a nastavte to znovu.",
|
||||
|
@ -639,7 +638,6 @@
|
|||
"Error removing ignored user/server": "Chyba pri odstraňovaní ignorovaného používateľa / servera",
|
||||
"Use Single Sign On to continue": "Pokračovať pomocou Single Sign On",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrďte pridanie tejto adresy pomocou Single Sign On.",
|
||||
"Single Sign On": "Single Sign On",
|
||||
"Confirm adding email": "Potvrdiť pridanie emailu",
|
||||
"Click the button below to confirm adding this email address.": "Kliknutím na tlačidlo nižšie potvrdíte pridanie emailovej adresy.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrďte pridanie telefónneho čísla pomocou Single Sign On.",
|
||||
|
@ -687,7 +685,6 @@
|
|||
"How fast should messages be downloaded.": "Ako rýchlo sa majú správy sťahovať.",
|
||||
"Manually verify all remote sessions": "Manuálne overiť všetky relácie",
|
||||
"IRC display name width": "Šírka zobrazovaného mena IRC",
|
||||
"QR Code": "QR kód",
|
||||
"Enter your password to sign in and regain access to your account.": "Zadaním hesla sa prihláste a obnovte prístup k svojmu účtu.",
|
||||
"Forgotten your password?": "Zabudli ste heslo?",
|
||||
"Sign in and regain access to your account.": "Prihláste sa a znovuzískajte prístup k vášmu účtu.",
|
||||
|
@ -710,7 +707,6 @@
|
|||
"This bridge was provisioned by <user />.": "Toto premostenie poskytuje <user />.",
|
||||
"Joins room with given address": "Pridať sa do miestnosti s danou adresou",
|
||||
"This bridge is managed by <user />.": "Toto premostenie spravuje <user />.",
|
||||
"Show less": "Zobraziť menej",
|
||||
"Show more": "Zobraziť viac",
|
||||
"well formed": "správne vytvorené",
|
||||
"unexpected type": "neočakávaný typ",
|
||||
|
@ -807,7 +803,6 @@
|
|||
"Discovery options will appear once you have added an email above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní e-mailovej adresy vyššie.",
|
||||
"Discovery options will appear once you have added a phone number above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní telefónneho čísla vyššie.",
|
||||
"No recently visited rooms": "Žiadne nedávno navštívené miestnosti",
|
||||
"Show rooms with unread messages first": "Najprv ukázať miestnosti s neprečítanými správami",
|
||||
"All rooms": "Všetky miestnosti",
|
||||
"Hide advanced": "Skryť pokročilé možnosti",
|
||||
"Show advanced": "Ukázať pokročilé možnosti",
|
||||
|
@ -1106,7 +1101,6 @@
|
|||
"Mentions & keywords": "Zmienky a kľúčové slová",
|
||||
"Global": "Celosystémové",
|
||||
"Access": "Prístup",
|
||||
"You do not have permissions to invite people to this space": "Nemáte povolenie pozývať ľudí do tohto priestoru",
|
||||
"Only invited people can join.": "Pripojiť sa môžu len pozvaní ľudia.",
|
||||
"Invite people": "Pozvať ľudí",
|
||||
"Room options": "Možnosti miestnosti",
|
||||
|
@ -1117,18 +1111,12 @@
|
|||
},
|
||||
"Spaces with access": "Priestory s prístupom",
|
||||
"Spaces": "Priestory",
|
||||
"Notification options": "Možnosti oznámenia",
|
||||
"Enable desktop notifications": "Povoliť oznámenia na ploche",
|
||||
"List options": "Možnosti zoznamu",
|
||||
"You sent a verification request": "Odoslali ste žiadosť o overenie",
|
||||
"Remove %(count)s messages": {
|
||||
"other": "Odstrániť %(count)s správ",
|
||||
"one": "Odstrániť 1 správu"
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s neprečítaných správ.",
|
||||
"one": "1 neprečítaná správa."
|
||||
},
|
||||
"Create a new space": "Vytvoriť nový priestor",
|
||||
"Create a space": "Vytvoriť priestor",
|
||||
"Edit devices": "Upraviť zariadenia",
|
||||
|
@ -1174,9 +1162,6 @@
|
|||
"Your public space": "Váš verejný priestor",
|
||||
"Share your public space": "Zdieľajte svoj verejný priestor",
|
||||
"Rooms and spaces": "Miestnosti a priestory",
|
||||
"Show previews of messages": "Zobraziť náhľady správ",
|
||||
"Activity": "Aktivity",
|
||||
"Sort by": "Zoradiť podľa",
|
||||
"Your access token gives full access to your account. Do not share it with anyone.": "Váš prístupový token poskytuje úplný prístup k vášmu účtu. S nikým ho nezdieľajte.",
|
||||
"You have no ignored users.": "Nemáte žiadnych ignorovaných používateľov.",
|
||||
"Some suggestions may be hidden for privacy.": "Niektoré návrhy môžu byť skryté kvôli ochrane súkromia.",
|
||||
|
@ -1224,7 +1209,6 @@
|
|||
"Verification Request": "Žiadosť o overenie",
|
||||
"Widget ID": "ID widgetu",
|
||||
"Room ID": "ID miestnosti",
|
||||
"Unread messages.": "Neprečítané správy.",
|
||||
"Room %(name)s": "Miestnosť %(name)s",
|
||||
"Show image": "Zobraziť obrázok",
|
||||
"Topic (optional)": "Téma (voliteľné)",
|
||||
|
@ -1257,7 +1241,6 @@
|
|||
"Avatar": "Obrázok",
|
||||
"Suggested": "Navrhované",
|
||||
"Comment": "Komentár",
|
||||
"A-Z": "A-Z",
|
||||
"Calls": "Hovory",
|
||||
"Navigation": "Navigácia",
|
||||
"Accepting…": "Akceptovanie…",
|
||||
|
@ -1339,9 +1322,6 @@
|
|||
"<a>Add a topic</a> to help people know what it is about.": "<a>Pridajte tému</a>, aby ľudia vedeli, o čo ide.",
|
||||
"Attach files from chat or just drag and drop them anywhere in a room.": "Pripojte súbory z konverzácie alebo ich jednoducho pretiahnite kamkoľvek do miestnosti.",
|
||||
"This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Tento súbor je <b>príliš veľký</b> na odoslanie. Limit veľkosti súboru je %(limit)s, ale tento súbor má %(sizeOfThisFile)s.",
|
||||
"Size Limit": "Limit veľkosti",
|
||||
"Include Attachments": "Zahrnúť prílohy",
|
||||
"Format": "Formát",
|
||||
"Information": "Informácie",
|
||||
"Space information": "Informácie o priestore",
|
||||
"You can change this at any time from room settings.": "Túto možnosť môžete kedykoľvek zmeniť v nastaveniach miestnosti.",
|
||||
|
@ -1367,8 +1347,6 @@
|
|||
"Published addresses can be used by anyone on any server to join your room.": "Zverejnené adresy môže použiť ktokoľvek na akomkoľvek serveri, aby sa pripojil k vašej miestnosti.",
|
||||
"Published addresses can be used by anyone on any server to join your space.": "Zverejnené adresy môže použiť ktokoľvek na akomkoľvek serveri, aby sa pripojil k vášmu priestoru.",
|
||||
"Published Addresses": "Zverejnené adresy",
|
||||
"Select from the options below to export chats from your timeline": "Ak chcete exportovať konverzácie z časovej osi, vyberte jednu z nasledujúcich možností",
|
||||
"Export Chat": "Exportovať konverzáciu",
|
||||
"Export chat": "Exportovať konverzáciu",
|
||||
"Copy link to thread": "Kopírovať odkaz na vlákno",
|
||||
"Copy room link": "Kopírovať odkaz na miestnosť",
|
||||
|
@ -1391,8 +1369,6 @@
|
|||
"Use the <a>Desktop app</a> to see all encrypted files": "Použite <a>desktopovú aplikáciu</a> na zobrazenie všetkých zašifrovaných súborov",
|
||||
"Files": "Súbory",
|
||||
"Report": "Nahlásiť",
|
||||
"Report Content to Your Homeserver Administrator": "Nahlásenie obsahu správcovi domovského serveru",
|
||||
"Report the entire room": "Nahlásiť celú miestnosť",
|
||||
"e.g. my-space": "napr. moj-priestor",
|
||||
"not ready": "nie je pripravené",
|
||||
"ready": "pripravené",
|
||||
|
@ -1428,10 +1404,6 @@
|
|||
"Edited at %(date)s": "Upravené %(date)s",
|
||||
"Confirm Security Phrase": "Potvrdiť bezpečnostnú frázu",
|
||||
"Upgrade your encryption": "Aktualizujte svoje šifrovanie",
|
||||
"Show %(count)s more": {
|
||||
"one": "Zobraziť %(count)s viac",
|
||||
"other": "Zobraziť %(count)s viac"
|
||||
},
|
||||
"Error removing address": "Chyba pri odstraňovaní adresy",
|
||||
"Error creating address": "Chyba pri vytváraní adresy",
|
||||
"Upload a file": "Nahrať súbor",
|
||||
|
@ -1453,10 +1425,6 @@
|
|||
"Your user ID": "Vaše ID používateľa",
|
||||
"Your display name": "Vaše zobrazované meno",
|
||||
"You verified %(name)s": "Overili ste používateľa %(name)s",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 neprečítaná zmienka.",
|
||||
"other": "%(count)s neprečítaných správ vrátane zmienok."
|
||||
},
|
||||
"Terms of Service": "Podmienky poskytovania služby",
|
||||
"Clear all data": "Vymazať všetky údaje",
|
||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagoval %(shortName)s</reactedWith>",
|
||||
|
@ -1492,7 +1460,6 @@
|
|||
"Search %(spaceName)s": "Hľadať %(spaceName)s",
|
||||
"Using this widget may share data <helpIcon /> with %(widgetDomain)s.": "Používanie tohto widgetu môže zdieľať údaje <helpIcon /> s %(widgetDomain)s.",
|
||||
"Using this widget may share data <helpIcon /> with %(widgetDomain)s & your integration manager.": "Používanie tohto widgetu môže zdieľať údaje <helpIcon /> s %(widgetDomain)s a správcom integrácie.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Táto miestnosť je venovaná nelegálnemu alebo toxickému obsahu alebo moderátori nedokážu moderovať nelegálny alebo toxický obsah.\nToto bude nahlásené správcom %(homeserver)s. Správcovia NEBUDÚ môcť čítať zašifrovaný obsah tejto miestnosti.",
|
||||
"Verify this device to mark it as trusted. Trusting this device gives you and other users extra peace of mind when using end-to-end encrypted messages.": "Overte toto zariadenie a označte ho ako dôveryhodné. Dôveryhodnosť tohto zariadenia poskytuje vám a ostatným používateľom väčší pokoj pri používaní end-to-end šifrovaných správ.",
|
||||
"Use the <a>Desktop app</a> to search encrypted messages": "Použite <a>Desktop aplikáciu</a> na vyhľadávanie zašifrovaných správ",
|
||||
"Not encrypted": "Nie je zašifrované",
|
||||
|
@ -1521,8 +1488,6 @@
|
|||
"Revoke permissions": "Odvolať oprávnenia",
|
||||
"Could not revoke the invite. The server may be experiencing a temporary problem or you do not have sufficient permissions to revoke the invite.": "Pozvánku nebolo možné odvolať. Na serveri môže byť dočasný problém alebo nemáte dostatočné oprávnenia na odvolanie pozvánky.",
|
||||
"Failed to revoke invite": "Nepodarilo sa odvolať pozvánku",
|
||||
"Number of messages": "Počet správ",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Počet správ môže byť len číslo medzi %(min)s a %(max)s",
|
||||
"Set my room layout for everyone": "Nastavenie rozmiestnenie v mojej miestnosti pre všetkých",
|
||||
"Add a photo so people know it's you.": "Pridajte fotografiu, aby ľudia vedeli, že ste to vy.",
|
||||
"Add a photo, so people can easily spot your room.": "Pridajte fotografiu, aby si ľudia mohli ľahko všimnúť vašu miestnosť.",
|
||||
|
@ -1557,7 +1522,6 @@
|
|||
"Set a Security Phrase": "Nastaviť bezpečnostnú frázu",
|
||||
"Save your Security Key": "Uložte svoj bezpečnostný kľúč",
|
||||
"%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s z %(totalRooms)s",
|
||||
"Leave the beta": "Opustiť beta verziu",
|
||||
"Leave space": "Opustiť priestor",
|
||||
"You are about to leave <spaceName/>.": "Chystáte sa opustiť <spaceName/>.",
|
||||
"Leave %(spaceName)s": "Opustiť %(spaceName)s",
|
||||
|
@ -1588,7 +1552,6 @@
|
|||
"Are you sure you want to leave the space '%(spaceName)s'?": "Ste si istí, že chcete opustiť priestor '%(spaceName)s'?",
|
||||
"Approve widget permissions": "Schváliť oprávnenia widgetu",
|
||||
"Application window": "Okno aplikácie",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Akýkoľvek iný dôvod. Opíšte problém.\nTento problém bude nahlásený moderátorom miestnosti.",
|
||||
"Anyone will be able to find and join this space, not just members of <SpaceName/>.": "Ktokoľvek bude môcť nájsť tento priestor a pripojiť sa k nemu, nielen členovia <SpaceName/>.",
|
||||
"Any of the following data may be shared:": "Zdieľané môžu byť niektoré z nasledujúcich údajov:",
|
||||
"An unknown error occurred": "Vyskytla sa neznáma chyba",
|
||||
|
@ -1664,7 +1627,6 @@
|
|||
"Collapse room list section": "Zbaliť sekciu zoznamu miestností",
|
||||
"Dismiss read marker and jump to bottom": "Zrušiť značku čítania a prejsť na spodok",
|
||||
"This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Táto relácia zistila, že vaša bezpečnostná fráza a kľúč pre zabezpečené správy boli odstránené.",
|
||||
"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.": "Nahlásenie tejto správy odošle jej jedinečné \"ID udalosti\" správcovi vášho domovského servera. Ak sú správy v tejto miestnosti zašifrované, správca domovského servera nebude môcť prečítať text správy ani zobraziť žiadne súbory alebo obrázky.",
|
||||
"Original event source": "Pôvodný zdroj udalosti",
|
||||
"Decrypted event source": "Zdroj dešifrovanej udalosti",
|
||||
"Question or topic": "Otázka alebo téma",
|
||||
|
@ -1709,7 +1671,6 @@
|
|||
"other": "Odosielanie pozvánok... (%(progress)s z %(count)s)"
|
||||
},
|
||||
"Upgrading room": "Aktualizácia miestnosti",
|
||||
"Export Successful": "Export úspešný",
|
||||
"Unknown failure": "Neznáme zlyhanie",
|
||||
"Delete avatar": "Vymazať obrázok",
|
||||
"Show sidebar": "Zobraziť bočný panel",
|
||||
|
@ -1720,7 +1681,6 @@
|
|||
"Share content": "Zdieľať obsah",
|
||||
"Call back": "Zavolať späť",
|
||||
"Connection failed": "Pripojenie zlyhalo",
|
||||
"Illegal Content": "Nelegálny obsah",
|
||||
"Pinned messages": "Pripnuté správy",
|
||||
"Use app": "Použiť aplikáciu",
|
||||
"Remember this": "Zapamätať si toto",
|
||||
|
@ -1739,8 +1699,6 @@
|
|||
"Country Dropdown": "Rozbaľovacie okno krajiny",
|
||||
"%(name)s accepted": "%(name)s prijal",
|
||||
"Forget": "Zabudnúť",
|
||||
"Disagree": "Nesúhlasím",
|
||||
"Join the beta": "Pripojte sa k beta verzii",
|
||||
"Want to add a new room instead?": "Chcete namiesto toho pridať novú miestnosť?",
|
||||
"No microphone found": "Nenašiel sa žiadny mikrofón",
|
||||
"We were unable to access your microphone. Please check your browser settings and try again.": "Nepodarilo sa nám získať prístup k vášmu mikrofónu. Skontrolujte prosím nastavenia prehliadača a skúste to znova.",
|
||||
|
@ -1792,8 +1750,6 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Túto zmenu nebudete môcť vrátiť späť, pretože sa degradujete, a ak ste posledným privilegovaným používateľom v priestore, nebude možné získať oprávnenia späť.",
|
||||
"Empty room": "Prázdna miestnosť",
|
||||
"Suggested Rooms": "Navrhované miestnosti",
|
||||
"You do not have permissions to add rooms to this space": "Nemáte oprávnenie pridávať miestnosti do tohto priestoru",
|
||||
"You do not have permissions to create new rooms in this space": "Nemáte oprávnenie vytvárať nové miestnosti v tomto priestore",
|
||||
"Share invite link": "Zdieľať odkaz na pozvánku",
|
||||
"Click to copy": "Kliknutím skopírujete",
|
||||
"We call the places where you can host your account 'homeservers'.": "Miesta, kde môžete hosťovať svoj účet, nazývame \" domovské servery\".",
|
||||
|
@ -1880,7 +1836,6 @@
|
|||
"Waiting for you to verify on your other device…": "Čaká sa na overenie na vašom druhom zariadení…",
|
||||
"Forgotten or lost all recovery methods? <a>Reset all</a>": "Zabudli ste alebo ste stratili všetky metódy obnovy? <a>Resetovať všetko</a>",
|
||||
"Continue with %(ssoButtons)s": "Pokračovať s %(ssoButtons)s",
|
||||
"Continue with %(provider)s": "Pokračovať s %(provider)s",
|
||||
"New? <a>Create account</a>": "Ste tu nový? <a>Vytvorte si účet</a>",
|
||||
"Sign into your homeserver": "Prihláste sa do svojho domovského servera",
|
||||
"Use your preferred Matrix homeserver if you have one, or host your own.": "Použite preferovaný domovský server Matrixu, ak ho máte, alebo si vytvorte vlastný.",
|
||||
|
@ -1897,7 +1852,6 @@
|
|||
"Enter your Security Phrase a second time to confirm it.": "Zadajte svoju bezpečnostnú frázu znova, aby ste ju potvrdili.",
|
||||
"Enter a Security Phrase": "Zadajte bezpečnostnú frázu",
|
||||
"Enter your Security Phrase or <button>use your Security Key</button> to continue.": "Zadajte svoju bezpečnostnú frázu alebo <button>použite svoj bezpečnostný kľúč</button> pre pokračovanie.",
|
||||
"Enter a number between %(min)s and %(max)s": "Zadajte číslo medzi %(min)s a %(max)s",
|
||||
"Please enter a name for the room": "Zadajte prosím názov miestnosti",
|
||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: Ak napíšete príspevok o chybe, odošlite prosím <debugLogsLink>ladiace záznamy</debugLogsLink>, aby ste nám pomohli vystopovať problém.",
|
||||
"Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Neznámy pár (používateľ, relácia): (%(userId)s, %(deviceId)s)",
|
||||
|
@ -2138,8 +2092,6 @@
|
|||
"No active call in this room": "V tejto miestnosti nie je aktívny žiadny hovor",
|
||||
"Remove, ban, or invite people to your active room, and make you leave": "Odstráňte, zakážte alebo pozvite ľudí do svojej aktívnej miestnosti and make you leave",
|
||||
"If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Ak to teraz zrušíte, môžete prísť o zašifrované správy a údaje, ak stratíte prístup k svojim prihlasovacím údajom.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "To, čo tento používateľ napísal, je nesprávne.\nBude to nahlásené moderátorom miestnosti.",
|
||||
"Please fill why you're reporting.": "Vyplňte prosím, prečo podávate hlásenie.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Len upozorňujeme, že ak si nepridáte e-mail a zabudnete heslo, môžete <b>navždy stratiť prístup k svojmu účtu</b>.",
|
||||
"Data on this screen is shared with %(widgetDomain)s": "Údaje na tejto obrazovke sú zdieľané s %(widgetDomain)s",
|
||||
"If they don't match, the security of your communication may be compromised.": "Ak sa nezhodujú, môže byť ohrozená bezpečnosť vašej komunikácie.",
|
||||
|
@ -2174,20 +2126,14 @@
|
|||
"Poll": "Anketa",
|
||||
"Location": "Poloha",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Nastavte adresy pre tento priestor, aby ho používatelia mohli nájsť prostredníctvom vášho domovského servera (%(localDomain)s)",
|
||||
"You do not have permissions to add spaces to this space": "Nemáte oprávnenia na pridávanie priestorov do tohto priestoru",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Spätná väzba odoslaná! Ďakujeme, vážime si to!",
|
||||
"Use <arrows/> to scroll": "Na posúvanie použite <arrows/>",
|
||||
"This is a beta feature": "Toto je funkcia vo verzii beta",
|
||||
"Click for more info": "Kliknite pre viac informácií",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s a %(space2Name)s",
|
||||
"Link this email with your account in Settings to receive invites directly in %(brand)s.": "Prepojte tento e-mail so svojím účtom v Nastaveniach, aby ste mohli dostávať pozvánky priamo v aplikácii %(brand)s.",
|
||||
"In reply to <a>this message</a>": "V odpovedi na <a>túto správu</a>",
|
||||
"Invite by email": "Pozvať e-mailom",
|
||||
"Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "Vaša aplikácia %(brand)s vám na to neumožňuje použiť správcu integrácie. Obráťte sa na administrátora.",
|
||||
"You don't have permission to do this": "Na toto nemáte oprávnenie",
|
||||
"Exporting your data": "Exportovanie vašich údajov",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Ste si istí, že chcete ukončiť export údajov? Ak áno, budete musieť začať odznova.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Váš export bol úspešný. Nájdete ho v priečinku Stiahnuté súbory.",
|
||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Boli zistené údaje zo staršej verzie %(brand)s. To spôsobilo nefunkčnosť end-to-end kryptografie v staršej verzii. End-to-end šifrované správy, ktoré boli nedávno vymenené pri používaní staršej verzie, sa v tejto verzii nemusia dať dešifrovať. To môže spôsobiť aj zlyhanie správ vymenených pomocou tejto verzie. Ak sa vyskytnú problémy, odhláste sa a znova sa prihláste. Ak chcete zachovať históriu správ, exportujte a znovu importujte svoje kľúče.",
|
||||
"This widget would like to:": "Tento widget by chcel:",
|
||||
"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.": "Ak ste predtým používali novšiu verziu %(brand)s, vaša relácia môže byť s touto verziou nekompatibilná. Zatvorte toto okno a vráťte sa k novšej verzii.",
|
||||
|
@ -2200,7 +2146,6 @@
|
|||
"A browser extension is preventing the request.": "Požiadavke bráni rozšírenie prehliadača.",
|
||||
"The server (%(serverName)s) took too long to respond.": "Serveru (%(serverName)s) trvalo príliš dlho, kým odpovedal.",
|
||||
"Your server isn't responding to some of your requests. Below are some of the most likely reasons.": "Váš server neodpovedá na niektoré vaše požiadavky. Nižšie sú uvedené niektoré z najpravdepodobnejších dôvodov.",
|
||||
"Spam or propaganda": "Spam alebo propaganda",
|
||||
"Unable to validate homeserver": "Nie je možné overiť domovský server",
|
||||
"Your server does not support showing space hierarchies.": "Váš server nepodporuje zobrazovanie hierarchií priestoru.",
|
||||
"Failed to remove some rooms. Try again later": "Nepodarilo sa odstrániť niektoré miestnosti. Skúste to neskôr",
|
||||
|
@ -2225,16 +2170,10 @@
|
|||
"Change which room, message, or user you're viewing": "Zmeniť zobrazovanú miestnosť, správu alebo používateľa",
|
||||
"Move right": "Presun doprava",
|
||||
"Move left": "Presun doľava",
|
||||
"The export was cancelled successfully": "Export bol úspešne zrušený",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Veľkosť môže byť len medzi %(min)s MB a %(max)s MB",
|
||||
"Unban from %(roomName)s": "Zrušiť zákaz vstup do %(roomName)s",
|
||||
"Ban from %(roomName)s": "Zakázať vstup do %(roomName)s",
|
||||
"Decide where your account is hosted": "Rozhodnite sa, kde bude váš účet hostovaný",
|
||||
"Select a room below first": "Najskôr vyberte miestnosť nižšie",
|
||||
"Toxic Behaviour": "Nebezpečné správanie",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Prosím, vyberte charakter a popíšte, čo robí túto správu obťažujúcou.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Tento používateľ spamuje miestnosť reklamami, odkazmi na reklamy alebo propagandou.\nToto bude nahlásené moderátorom miestnosti.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Tento používateľ prejavuje protiprávne správanie, napríklad zverejňuje doxing (citlivé informácie o ľudoch) alebo sa vyhráža násilím.\nToto bude nahlásené moderátorom miestnosti, ktorí to môžu postúpiť právnym orgánom.",
|
||||
"Open user settings": "Otvoriť používateľské nastavenia",
|
||||
"Switch to space by number": "Prepnúť do priestoru podľa čísla",
|
||||
"Proceed with reset": "Pokračovať v obnovení",
|
||||
|
@ -2313,7 +2252,6 @@
|
|||
"Command error: Unable to find rendering type (%(renderingType)s)": "Chyba príkazu: Nie je možné nájsť typ vykresľovania (%(renderingType)s)",
|
||||
"Command error: Unable to handle slash command.": "Chyba príkazu: Nie je možné spracovať lomkový príkaz.",
|
||||
"Command Help": "Pomocník príkazov",
|
||||
"Export Cancelled": "Export zrušený",
|
||||
"My live location": "Moja poloha v reálnom čase",
|
||||
"My current location": "Moja aktuálna poloha",
|
||||
"Drop a Pin": "Označiť špendlíkom",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"one": "%(count)s človek sa pripojil",
|
||||
"other": "%(count)s ľudí sa pripojilo"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Označte, či chcete skryť všetky aktuálne a budúce správy od tohto používateľa.",
|
||||
"Ignore user": "Ignorovať používateľa",
|
||||
"View related event": "Zobraziť súvisiacu udalosť",
|
||||
"Read receipts": "Potvrdenia o prečítaní",
|
||||
"Failed to set direct message tag": "Nepodarilo sa nastaviť značku priamej správy",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "Deaktivácia účtu je trvalý úkon — buďte opatrní!",
|
||||
"Un-maximise": "Zrušiť maximalizáciu",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Po odhlásení sa tieto kľúče z tohto zariadenia vymažú, čo znamená, že nebudete môcť čítať zašifrované správy, pokiaľ k nim nemáte kľúče v iných zariadeniach alebo ich nemáte zálohované na serveri.",
|
||||
"Joining the beta will reload %(brand)s.": "Vstupom do beta verzie sa %(brand)s znovu načíta.",
|
||||
"Leaving the beta will reload %(brand)s.": "Po opustení beta verzie sa znovu načíta aplikácia %(brand)s.",
|
||||
"Video rooms are a beta feature": "Video miestnosti sú beta funkciou",
|
||||
"Enable hardware acceleration": "Povoliť hardvérovú akceleráciu",
|
||||
"%(count)s Members": {
|
||||
|
@ -2556,13 +2490,6 @@
|
|||
"Choose a locale": "Vyberte si jazyk",
|
||||
"Spell check": "Kontrola pravopisu",
|
||||
"We're creating a room with %(names)s": "Vytvárame miestnosť s %(names)s",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play a logo Google Play sú ochranné známky spoločnosti Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® a logo Apple® sú ochranné známky spoločnosti Apple Inc.",
|
||||
"Get it on F-Droid": "Získajte ho v službe F-Droid",
|
||||
"Get it on Google Play": "Získajte ho v službe Google Play",
|
||||
"Download on the App Store": "Stiahnuť v obchode App Store",
|
||||
"Download %(brand)s Desktop": "Stiahnuť %(brand)s Desktop",
|
||||
"Download %(brand)s": "Stiahnuť %(brand)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutie odosielania potvrdení o prečítaní.",
|
||||
"Share your activity and status with others.": "Zdieľajte svoju aktivitu a stav s ostatnými.",
|
||||
"Last activity": "Posledná aktivita",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s a %(user2)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s alebo %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s alebo %(recoveryFile)s",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s alebo %(appLinks)s",
|
||||
"Proxy URL": "URL adresa proxy servera",
|
||||
"Proxy URL (optional)": "URL adresa proxy servera (voliteľná)",
|
||||
"To disable you will need to log out and back in, use with caution!": "Pre vypnutie sa musíte odhlásiť a znova prihlásiť, používajte opatrne!",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Postupujte podľa pokynov zaslaných na <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Odhlásiť sa zo všetkých zariadení",
|
||||
"Confirm new password": "Potvrdiť nové heslo",
|
||||
"Reset your password": "Obnovte svoje heslo",
|
||||
"Reset password": "Znovu nastaviť heslo",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Príliš veľa pokusov v krátkom čase. Opakujte pokus po %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Príliš veľa pokusov v krátkom čase. Pred ďalším pokusom počkajte nejakú dobu.",
|
||||
"Thread root ID: %(threadRootId)s": "ID koreňového vlákna: %(threadRootId)s",
|
||||
|
@ -2828,11 +2752,8 @@
|
|||
"There are no active polls in this room": "V tejto miestnosti nie sú žiadne aktívne ankety",
|
||||
"Fetching keys from server…": "Získavanie kľúčov zo servera…",
|
||||
"Checking…": "Kontrolovanie…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Táto miestnosť je venovaná nelegálnemu alebo nebezpečnému obsahu alebo moderátori nezvládajú moderovať nelegálny alebo nebezpečný obsah.\n Toto bude nahlásené správcom %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Tento používateľ prejavuje nepriateľské správanie, napríklad uráža ostatných používateľov alebo zdieľa obsah určený len pre dospelých v miestnosti určenej pre rodiny alebo inak porušuje pravidlá tejto miestnosti.\nToto bude nahlásené moderátorom miestnosti.",
|
||||
"Enable '%(manageIntegrations)s' in Settings to do this.": "Ak to chcete urobiť, povoľte v Nastaveniach položku \"%(manageIntegrations)s\".",
|
||||
"Waiting for partner to confirm…": "Čakanie na potvrdenie od partnera…",
|
||||
"Processing…": "Spracovávanie…",
|
||||
"Adding…": "Pridávanie…",
|
||||
"Write something…": "Napíšte niečo…",
|
||||
"Rejecting invite…": "Odmietnutie pozvania …",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "Neznáma chyba pri zmene hesla (%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "Chyba pri zmene hesla: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Nie je možné pozvať používateľa e-mailom bez servera totožnosti. Môžete sa k nemu pripojiť v časti \"Nastavenia\".",
|
||||
"Unable to create room with moderation bot": "Nie je možné vytvoriť miestnosť pomocou moderačného bota",
|
||||
"Failed to download source media, no source url was found": "Nepodarilo sa stiahnuť zdrojové médium, nebola nájdená žiadna zdrojová url adresa",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Keď sa pozvaní používatelia pripoja k aplikácii %(brand)s, budete môcť konverzovať a miestnosť bude end-to-end šifrovaná",
|
||||
"Waiting for users to join %(brand)s": "Čaká sa na používateľov, kým sa pripoja k aplikácii %(brand)s",
|
||||
|
@ -3087,7 +3007,8 @@
|
|||
"secure_backup": "Bezpečné zálohovanie",
|
||||
"cross_signing": "Krížové podpisovanie",
|
||||
"identity_server": "Server totožností",
|
||||
"integration_manager": "Správca integrácie"
|
||||
"integration_manager": "Správca integrácie",
|
||||
"qr_code": "QR kód"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Pokračovať",
|
||||
|
@ -3190,7 +3111,16 @@
|
|||
"clear": "Vyčistiť"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Používateľské menu"
|
||||
"user_menu": "Používateľské menu",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 neprečítaná zmienka.",
|
||||
"other": "%(count)s neprečítaných správ vrátane zmienok."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s neprečítaných správ.",
|
||||
"one": "1 neprečítaná správa."
|
||||
},
|
||||
"unread_messages": "Neprečítané správy."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Video miestnosti",
|
||||
|
@ -3245,7 +3175,13 @@
|
|||
"group_themes": "Vzhľad",
|
||||
"group_encryption": "Šifrovanie",
|
||||
"group_experimental": "Experimentálne",
|
||||
"group_developer": "Vývojárske"
|
||||
"group_developer": "Vývojárske",
|
||||
"beta_feature": "Toto je funkcia vo verzii beta",
|
||||
"click_for_info": "Kliknite pre viac informácií",
|
||||
"leave_beta_reload": "Po opustení beta verzie sa znovu načíta aplikácia %(brand)s.",
|
||||
"join_beta_reload": "Vstupom do beta verzie sa %(brand)s znovu načíta.",
|
||||
"leave_beta": "Opustiť beta verziu",
|
||||
"join_beta": "Pripojte sa k beta verzii"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Domov",
|
||||
|
@ -3376,7 +3312,15 @@
|
|||
"enable_notifications": "Zapnúť oznámenia",
|
||||
"download_app_description": "Nezmeškáte nič, ak so sebou vezmete %(brand)s",
|
||||
"download_app_action": "Stiahnite si aplikácie",
|
||||
"download_app": "Stiahnuť %(brand)s"
|
||||
"download_app": "Stiahnuť %(brand)s",
|
||||
"download_brand": "Stiahnuť %(brand)s",
|
||||
"download_brand_desktop": "Stiahnuť %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s alebo %(appLinks)s",
|
||||
"download_app_store": "Stiahnuť v obchode App Store",
|
||||
"download_google_play": "Získajte ho v službe Google Play",
|
||||
"download_f_droid": "Získajte ho v službe F-Droid",
|
||||
"apple_trademarks": "App Store® a logo Apple® sú ochranné známky spoločnosti Apple Inc.",
|
||||
"google_trademarks": "Google Play a logo Google Play sú ochranné známky spoločnosti Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Zobraziť skratky nedávno zobrazených miestnosti nad zoznamom miestností",
|
||||
|
@ -3595,7 +3539,24 @@
|
|||
"error_fetching_file": "Chyba pri načítaní súboru",
|
||||
"file_attached": "Priložený súbor",
|
||||
"fetching_events": "Získavanie udalostí…",
|
||||
"creating_output": "Vytváranie výstupu…"
|
||||
"creating_output": "Vytváranie výstupu…",
|
||||
"processing": "Spracovávanie…",
|
||||
"enter_number_between_min_max": "Zadajte číslo medzi %(min)s a %(max)s",
|
||||
"size_limit_min_max": "Veľkosť môže byť len medzi %(min)s MB a %(max)s MB",
|
||||
"num_messages_min_max": "Počet správ môže byť len číslo medzi %(min)s a %(max)s",
|
||||
"num_messages": "Počet správ",
|
||||
"cancelled": "Export zrušený",
|
||||
"cancelled_detail": "Export bol úspešne zrušený",
|
||||
"successful": "Export úspešný",
|
||||
"successful_detail": "Váš export bol úspešný. Nájdete ho v priečinku Stiahnuté súbory.",
|
||||
"confirm_stop": "Ste si istí, že chcete ukončiť export údajov? Ak áno, budete musieť začať odznova.",
|
||||
"exporting_your_data": "Exportovanie vašich údajov",
|
||||
"title": "Exportovať konverzáciu",
|
||||
"select_option": "Ak chcete exportovať konverzácie z časovej osi, vyberte jednu z nasledujúcich možností",
|
||||
"format": "Formát",
|
||||
"messages": "Správy",
|
||||
"size_limit": "Limit veľkosti",
|
||||
"include_attachments": "Zahrnúť prílohy"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Vytvoriť video miestnosť",
|
||||
|
@ -4009,7 +3970,6 @@
|
|||
"unsupported": "Volania nie sú podporované",
|
||||
"unsupported_browser": "V tomto prehliadači nie je možné uskutočňovať hovory."
|
||||
},
|
||||
"Messages": "Správy",
|
||||
"Other": "Ďalšie",
|
||||
"Advanced": "Pokročilé",
|
||||
"room_settings": {
|
||||
|
@ -4097,5 +4057,53 @@
|
|||
"spaceinvaders_message": "odošle vesmírnych útočníkov",
|
||||
"hearts_description": "Odošle danú správu so srdiečkami",
|
||||
"hearts_message": "pošle srdiečka"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Nemáte povolenie pozývať ľudí do tohto priestoru",
|
||||
"error_no_permission_create_room": "Nemáte oprávnenie vytvárať nové miestnosti v tomto priestore",
|
||||
"error_no_permission_add_room": "Nemáte oprávnenie pridávať miestnosti do tohto priestoru",
|
||||
"error_no_permission_add_space": "Nemáte oprávnenia na pridávanie priestorov do tohto priestoru"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Pokračovať s %(provider)s",
|
||||
"sign_in_with_sso": "Prihlásiť sa pomocou jediného prihlasovania",
|
||||
"sso": "Single Sign On",
|
||||
"reset_password_action": "Znovu nastaviť heslo",
|
||||
"reset_password_title": "Obnovte svoje heslo"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Najprv ukázať miestnosti s neprečítanými správami",
|
||||
"show_previews": "Zobraziť náhľady správ",
|
||||
"sort_by": "Zoradiť podľa",
|
||||
"sort_by_activity": "Aktivity",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Možnosti zoznamu",
|
||||
"show_n_more": {
|
||||
"one": "Zobraziť %(count)s viac",
|
||||
"other": "Zobraziť %(count)s viac"
|
||||
},
|
||||
"show_less": "Zobraziť menej",
|
||||
"notification_options": "Možnosti oznámenia"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Vyplňte prosím, prečo podávate hlásenie.",
|
||||
"unable_create_room_moderation_bot": "Nie je možné vytvoriť miestnosť pomocou moderačného bota",
|
||||
"ignore_user": "Ignorovať používateľa",
|
||||
"hide_messages_from_user": "Označte, či chcete skryť všetky aktuálne a budúce správy od tohto používateľa.",
|
||||
"nature_disagreement": "To, čo tento používateľ napísal, je nesprávne.\nBude to nahlásené moderátorom miestnosti.",
|
||||
"nature_toxic": "Tento používateľ prejavuje nepriateľské správanie, napríklad uráža ostatných používateľov alebo zdieľa obsah určený len pre dospelých v miestnosti určenej pre rodiny alebo inak porušuje pravidlá tejto miestnosti.\nToto bude nahlásené moderátorom miestnosti.",
|
||||
"nature_illegal": "Tento používateľ prejavuje protiprávne správanie, napríklad zverejňuje doxing (citlivé informácie o ľudoch) alebo sa vyhráža násilím.\nToto bude nahlásené moderátorom miestnosti, ktorí to môžu postúpiť právnym orgánom.",
|
||||
"nature_spam": "Tento používateľ spamuje miestnosť reklamami, odkazmi na reklamy alebo propagandou.\nToto bude nahlásené moderátorom miestnosti.",
|
||||
"report_to_homeserver_encrypted": "Táto miestnosť je venovaná nelegálnemu alebo toxickému obsahu alebo moderátori nedokážu moderovať nelegálny alebo toxický obsah.\nToto bude nahlásené správcom %(homeserver)s. Správcovia NEBUDÚ môcť čítať zašifrovaný obsah tejto miestnosti.",
|
||||
"report_to_homeserver": "Táto miestnosť je venovaná nelegálnemu alebo nebezpečnému obsahu alebo moderátori nezvládajú moderovať nelegálny alebo nebezpečný obsah.\n Toto bude nahlásené správcom %(homeserver)s.",
|
||||
"nature_other": "Akýkoľvek iný dôvod. Opíšte problém.\nTento problém bude nahlásený moderátorom miestnosti.",
|
||||
"nature": "Prosím, vyberte charakter a popíšte, čo robí túto správu obťažujúcou.",
|
||||
"disagree": "Nesúhlasím",
|
||||
"toxic_behaviour": "Nebezpečné správanie",
|
||||
"illegal_content": "Nelegálny obsah",
|
||||
"spam_or_propaganda": "Spam alebo propaganda",
|
||||
"report_entire_room": "Nahlásiť celú miestnosť",
|
||||
"report_content_to_homeserver": "Nahlásenie obsahu správcovi domovského serveru",
|
||||
"description": "Nahlásenie tejto správy odošle jej jedinečné \"ID udalosti\" správcovi vášho domovského servera. Ak sú správy v tejto miestnosti zašifrované, správca domovského servera nebude môcť prečítať text správy ani zobraziť žiadne súbory alebo obrázky."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
"powered by Matrix": "poganja Matrix",
|
||||
"Use Single Sign On to continue": "Uporabi Single Sign On za prijavo",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potrdite dodajanje tega e-poštnega naslova z enkratno prijavo, da dokažete svojo identiteto.",
|
||||
"Single Sign On": "Enkratna prijava",
|
||||
"Confirm adding email": "Potrdi dodajanje e-poštnega naslova",
|
||||
"Click the button below to confirm adding this email address.": "Kliknite gumb spodaj za potrditev dodajanja tega elektronskega naslova.",
|
||||
"Add Email Address": "Dodaj e-poštni naslov",
|
||||
|
@ -71,5 +70,8 @@
|
|||
},
|
||||
"voip": {
|
||||
"call_failed": "Klic ni uspel"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Enkratna prijava"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -375,7 +375,6 @@
|
|||
"Unable to restore backup": "S’arrihet të rikthehet kopjeruajtje",
|
||||
"No backup found!": "S’u gjet kopjeruajtje!",
|
||||
"Failed to decrypt %(failedCount)s sessions!": "S’u arrit të shfshehtëzohet sesioni %(failedCount)s!",
|
||||
"Sign in with single sign-on": "Bëni hyrjen me hyrje njëshe",
|
||||
"Failed to perform homeserver discovery": "S’u arrit të kryhej zbulim shërbyesi Home",
|
||||
"Invalid homeserver discovery response": "Përgjigje e pavlefshme zbulimi shërbyesi Home",
|
||||
"Use a few words, avoid common phrases": "Përdorni ca fjalë, shmangni fraza të rëndomta",
|
||||
|
@ -758,9 +757,6 @@
|
|||
"Topic (optional)": "Temë (në daçi)",
|
||||
"Hide advanced": "Fshihi të mëtejshmet",
|
||||
"Show advanced": "Shfaqi të mëtejshmet",
|
||||
"Please fill why you're reporting.": "Ju lutemi, plotësoni arsyen pse po raportoni.",
|
||||
"Report Content to Your Homeserver Administrator": "Raportoni Lëndë te Përgjegjësi i Shërbyesit Tuaj Home",
|
||||
"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.": "Raportimi i këtij mesazhi do të shkaktojë dërgimin e 'ID-së së aktit' unike te përgjegjësi i shërbyesit tuaj Home. Nëse mesazhet në këtë dhomë fshehtëzohen, përgjegjësi i shërbyesit tuaj Home s’do të jetë në gjendje të lexojë tekstin e mesazhit apo të shohë çfarëdo kartelë apo figurë.",
|
||||
"To continue you need to accept the terms of this service.": "Që të vazhdohet, lypset të pranoni kushtet e këtij shërbimi.",
|
||||
"Document": "Dokument",
|
||||
"Add Email Address": "Shtoni Adresë Email",
|
||||
|
@ -773,14 +769,6 @@
|
|||
"Clear cache and reload": "Spastro fshehtinën dhe ringarko",
|
||||
"Your email address hasn't been verified yet": "Adresa juaj email s’është verifikuar ende",
|
||||
"Click the link in the email you received to verify and then click continue again.": "Për verifkim, klikoni lidhjen te email që morët dhe mandej vazhdoni sërish.",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s mesazhe të palexuar, përfshi përmendje.",
|
||||
"one": "1 përmendje e palexuar."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s mesazhe të palexuar.",
|
||||
"one": "1 mesazh i palexuar."
|
||||
},
|
||||
"Show image": "Shfaq figurë",
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Mungon kyç publik captcha-je te formësimi i shërbyesit Home. Ju lutemi, njoftojani këtë përgjegjësit të shërbyesit tuaj Home.",
|
||||
"%(creator)s created and configured the room.": "%(creator)s krijoi dhe formësoi dhomën.",
|
||||
|
@ -792,7 +780,6 @@
|
|||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "Ky veprim lyp hyrje te shërbyesi parazgjedhje i identiteteve <server /> për të vlerësuar një adresë email ose një numër telefoni, por shërbyesi nuk ka ndonjë kusht shërbimesh.",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
"Room %(name)s": "Dhoma %(name)s",
|
||||
"Unread messages.": "Mesazhe të palexuar.",
|
||||
"Failed to deactivate user": "S’u arrit të çaktivizohet përdorues",
|
||||
"This client does not support end-to-end encryption.": "Ky klient nuk mbulon fshehtëzim skaj-më-skaj.",
|
||||
"Messages in this room are not end-to-end encrypted.": "Mesazhet në këtë dhomë nuk janë të fshehtëzuara skaj-më-skaj.",
|
||||
|
@ -929,7 +916,6 @@
|
|||
"How fast should messages be downloaded.": "Sa shpejt duhen shkarkuar mesazhet.",
|
||||
"Waiting for %(displayName)s to verify…": "Po pritet për %(displayName)s të verifikojë…",
|
||||
"This bridge was provisioned by <user />.": "Kjo urë është dhënë nga <user />.",
|
||||
"Show less": "Shfaq më pak",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Llogaria juaj ka një identitet <em>cross-signing</em> në depozitë të fshehtë, por s’është ende i besuar në këtë sesion.",
|
||||
"in memory": "në kujtesë",
|
||||
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "Ky sesion <b>nuk po bën kopjeruajtje të kyçeve tuaja</b>, por keni një kopjeruajtje ekzistuese që mund ta përdorni për rimarrje dhe ta shtoni më tej.",
|
||||
|
@ -1058,7 +1044,6 @@
|
|||
"Verify all users in a room to ensure it's secure.": "Verifiko krejt përdoruesit në dhomë, për të garantuar se është e sigurt.",
|
||||
"Use Single Sign On to continue": "Që të vazhdohet, përdorni Hyrje Njëshe",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Ripohoni shtimin e kësaj adrese email duke përdorur Hyrje Njëshe për të provuar identitetin tuaj.",
|
||||
"Single Sign On": "Hyrje Njëshe",
|
||||
"Confirm adding email": "Ripohoni shtim email-i",
|
||||
"Click the button below to confirm adding this email address.": "Klikoni butonin më poshtë që të ripohoni shtimin e kësaj adrese email.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Ripohojeni shtimin e këtij numri telefoni duke përdorur Hyrje Njëshe që të provoni identitetin tuaj.",
|
||||
|
@ -1106,7 +1091,6 @@
|
|||
"Currently indexing: %(currentRoom)s": "Indeksim aktual: %(currentRoom)s",
|
||||
"Opens chat with the given user": "Hap fjalosje me përdoruesin e dhënë",
|
||||
"You've successfully verified your device!": "E verifikuat me sukses pajisjen tuaj!",
|
||||
"QR Code": "Kod QR",
|
||||
"To continue, use Single Sign On to prove your identity.": "Që të vazhdohet, përdorni Hyrje Njëshe, që të provoni identitetin tuaj.",
|
||||
"Confirm to continue": "Ripohojeni që të vazhdohet",
|
||||
"Click the button below to confirm your identity.": "Klikoni mbi butonin më poshtë që të ripohoni identitetin tuaj.",
|
||||
|
@ -1146,16 +1130,8 @@
|
|||
"All settings": "Krejt rregullimet",
|
||||
"Feedback": "Mendime",
|
||||
"No recently visited rooms": "S’ka dhoma të vizituara së fundi",
|
||||
"Sort by": "Renditi sipas",
|
||||
"Message preview": "Paraparje mesazhi",
|
||||
"List options": "Mundësi liste",
|
||||
"Show %(count)s more": {
|
||||
"other": "Shfaq %(count)s të tjera",
|
||||
"one": "Shfaq %(count)s tjetër"
|
||||
},
|
||||
"Room options": "Mundësi dhome",
|
||||
"Activity": "Veprimtari",
|
||||
"A-Z": "A-Z",
|
||||
"Looks good!": "Mirë duket!",
|
||||
"Use custom size": "Përdor madhësi vetjake",
|
||||
"Hey you. You're the best!": "Hej, ju. S’u ka kush shokun!",
|
||||
|
@ -1176,9 +1152,6 @@
|
|||
"Save your Security Key": "Ruani Kyçin tuaj të Sigurisë",
|
||||
"Are you sure you want to cancel entering passphrase?": "Jeni i sigurt se doni të anulohet dhënie frazëkalimi?",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s s’mund të ruajë lokalisht në fshehtinë në mënyrë të siguruar mesazhe të fshehtëzuar, teksa xhirohet në një shfletues. Që mesazhet e fshehtëzuar të shfaqen te përfundime kërkimi, përdorni <desktopLink>%(brand)s Desktop</desktopLink>.",
|
||||
"Show rooms with unread messages first": "Së pari shfaq dhoma me mesazhe të palexuar",
|
||||
"Show previews of messages": "Shfaq paraparje mesazhesh",
|
||||
"Notification options": "Mundësi njoftimesh",
|
||||
"Forget Room": "Harroje Dhomën",
|
||||
"This room is public": "Kjo dhomë është publike",
|
||||
"Edited at %(date)s": "Përpunuar më %(date)s",
|
||||
|
@ -1616,7 +1589,6 @@
|
|||
"Specify a homeserver": "Tregoni një shërbyes Home",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Që mos thoni nuk e dinim, nëse s’shtoni një email dhe harroni fjalëkalimin tuaj, mund <b>të humbi përgjithmonë hyrjen në llogarinë tuaj</b>.",
|
||||
"Continuing without email": "Vazhdim pa email",
|
||||
"Continue with %(provider)s": "Vazhdo me %(provider)s",
|
||||
"Server Options": "Mundësi Shërbyesi",
|
||||
"Hold": "Mbaje",
|
||||
"Resume": "Rimerre",
|
||||
|
@ -1702,9 +1674,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "S’do të jeni në gjendje ta zhbëni këtë ndryshim, teksa zhgradoni veten, nëse jeni përdoruesi i fundit i privilegjuar te hapësira, s’do të jetë e mundur të rifitoni privilegjet.",
|
||||
"Empty room": "Dhomë e zbrazët",
|
||||
"Suggested Rooms": "Roma të Këshilluara",
|
||||
"You do not have permissions to add rooms to this space": "S’keni leje të shtoni dhoma në këtë hapësirë",
|
||||
"Add existing room": "Shtoni dhomë ekzistuese",
|
||||
"You do not have permissions to create new rooms in this space": "S’keni leje të krijoni dhoma të reja në këtë hapësirë",
|
||||
"Invite to this space": "Ftoni në këtë hapësirë",
|
||||
"Your message was sent": "Mesazhi juaj u dërgua",
|
||||
"Space options": "Mundësi Hapësire",
|
||||
|
@ -1792,8 +1762,6 @@
|
|||
"You have no ignored users.": "S’keni përdorues të shpërfillur.",
|
||||
"Search names and descriptions": "Kërko te emra dhe përshkrime",
|
||||
"Select a room below first": "Së pari, përzgjidhni më poshtë një dhomë",
|
||||
"Join the beta": "Merrni pjesë te beta",
|
||||
"Leave the beta": "Braktiseni beta-n",
|
||||
"You may contact me if you have any follow up questions": "Mund të lidheni me mua, nëse keni pyetje të mëtejshme",
|
||||
"To leave the beta, visit your settings.": "Që të braktisni beta-n, vizitoni rregullimet tuaja.",
|
||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Platforma dhe emri juaj i përdoruesit do të mbahen shënim, për të na ndihmuar t’i përdorim përshtypjet tuaja sa më shumë që të mundemi.",
|
||||
|
@ -1839,17 +1807,6 @@
|
|||
"Show preview": "Shfaq paraparje",
|
||||
"View source": "Shihni burimin",
|
||||
"Settings - %(spaceName)s": "Rregullime - %(spaceName)s",
|
||||
"Report the entire room": "Raporto krejt dhomën",
|
||||
"Spam or propaganda": "Mesazh i padëshiruar ose propagandë",
|
||||
"Illegal Content": "Lëndë e Paligjshme",
|
||||
"Toxic Behaviour": "Sjellje Toksike",
|
||||
"Disagree": "S’pajtohem",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Ju lutemi, zgjidhni një karakterizim dhe përshkruani se ç’e bën këtë mesazh abuziv.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Çfarëdo arsye tjetër. Ju lutemi, përshkruani problemin.\nKjo do t’u raportohet moderatorëve të dhomës.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Kjo dhomë merret me lëndë të paligjshme ose toksike, ose moderatorët nuk moderojnë lëndë të paligjshme ose toksike.\nKjo do t’u njoftohet përgjegjësve të %(homeserver)s. Përgjegjësit NUK do të jenë në gjendje të lexojnë lëndë të fshehtëzuar të kësaj dhome.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Ky përdorues dërgon në dhomë reklama të padëshiruara, lidhje për te reklama të tilla ose te propagandë e padëshiruar.\nKjo do t’u njoftohet përgjegjësve të dhomës.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Ky përdorues shfaq sjellje të paligjshme, bie fjala, duke zbuluar identitet personash ose duke kërcënuar me dhunë.\nKjo do t’u njoftohet përgjegjësve të dhomës, të cilët mund ta përshkallëzojnë punën drejt autoriteteve ligjore.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Ajo ç’shkruan ky përdorues është gabim.\nKjo do t’u njoftohet përgjegjësve të dhomës.",
|
||||
"Please provide an address": "Ju lutemi, jepni një adresë",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Dështoi gatitja e kërkimit në mesazhe, për më tepër hollësi, shihni <a>rregullimet tuaja</a>",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "Caktoni adresa për këtë hapësirë, që kështu përdoruesit të gjejnë këtë dhomë përmes shërbyesit tuaj Home (%(localDomain)s)",
|
||||
|
@ -2014,21 +1971,7 @@
|
|||
"Leave some rooms": "Braktis disa dhoma",
|
||||
"Leave all rooms": "Braktisi krejt dhomat",
|
||||
"Don't leave any rooms": "Mos braktis ndonjë dhomë",
|
||||
"Format": "Format",
|
||||
"MB": "MB",
|
||||
"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",
|
||||
"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 t’ju duhet t’ia 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",
|
||||
"I'll verify later": "Do ta verifikoj më vonë",
|
||||
|
@ -2176,7 +2119,6 @@
|
|||
"%(spaceName)s menu": "Menu %(spaceName)s",
|
||||
"Join public room": "Hyni në dhomë publike",
|
||||
"Add people": "Shtoni njerëz",
|
||||
"You do not have permissions to invite people to this space": "S’keni leje të ftoni njerëz në këtë hapësirë",
|
||||
"Invite to space": "Ftoni në hapësirë",
|
||||
"Start new chat": "Filloni fjalosje të re",
|
||||
"Pin to sidebar": "Fiksoje në anështyllë",
|
||||
|
@ -2308,9 +2250,6 @@
|
|||
"Poll": "Pyetësor",
|
||||
"Voice Message": "Mesazh Zanor",
|
||||
"Hide stickers": "Fshihi ngjitësit",
|
||||
"You do not have permissions to add spaces to this space": "S’keni leje të shtoni hapësira te kjo hapësirë",
|
||||
"Click for more info": "Klikoni për më tepër hollësi",
|
||||
"This is a beta feature": "Kjo është një veçori beta",
|
||||
"Use <arrows/> to scroll": "Përdorni <arrows/> për rrëshqitje",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Përshtypjet u dërguan! Faleminderit, e çmojmë aktin tuaj!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s dhe %(space2Name)s",
|
||||
|
@ -2332,7 +2271,6 @@
|
|||
"Open thread": "Hape rrjedhën",
|
||||
"No virtual room for this room": "S’ka dhomë virtuale për këtë dhomë",
|
||||
"Switches to this room's virtual room, if it has one": "Kalohet te dhoma virtuale e kësaj dhome, në pastë",
|
||||
"Export Cancelled": "Eksportimi u Anulua",
|
||||
"What location type do you want to share?": "Ç’lloj vendndodhjeje doni të jepet?",
|
||||
"My current location": "Vendndodhja ime e tanishme",
|
||||
"%(brand)s could not send your location. Please try again later.": "%(brand)s s’dërgoi dot vendndodhjen tuaj. Ju lutemi, riprovoni.",
|
||||
|
@ -2434,8 +2372,6 @@
|
|||
"Live location error": "Gabim vendndodhjeje aty për aty",
|
||||
"Live location ended": "Vendndodhja “live” përfundoi",
|
||||
"Updated %(humanizedUpdateTime)s": "Përditësuar më %(humanizedUpdateTime)s",
|
||||
"Joining the beta will reload %(brand)s.": "Pjesëmarrja në beta do të sjellë ringarkim të %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Braktisja e programit beta do të sjellë ringarkim të %(brand)s.",
|
||||
"View related event": "Shihni veprimtari të afërt",
|
||||
"Cameras": "Kamera",
|
||||
"Remove search filter for %(filter)s": "Hiq filtër kërkimesh për %(filter)s",
|
||||
|
@ -2453,8 +2389,6 @@
|
|||
"one": "%(count)s Anëtar",
|
||||
"other": "%(count)s Anëtarë"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "I vini shenjë, nëse doni të fshihen krejt mesazhet e tanishme dhe të ardhshme nga ky përdorues.",
|
||||
"Ignore user": "Shpërfille përdoruesin",
|
||||
"Open room": "Dhomë e hapët",
|
||||
"Hide my messages from new joiners": "Fshihni mesazhet e mi për ata që vijnë rishtas",
|
||||
"You will leave all rooms and DMs that you are in": "Do të braktisni krejt dhomat dhe MD-të ku merrni pjesë",
|
||||
|
@ -2548,14 +2482,11 @@
|
|||
"Devices connected": "Pajisje të lidhura",
|
||||
"Your server lacks native support": "Shërbyesit tuaj i mungon mbulim i brendshëm për këtë",
|
||||
"Your server has native support": "Shërbyesi juaj ka mbulim të brendshëm për këtë",
|
||||
"Download on the App Store": "Shkarkoje nga App Store",
|
||||
"Download %(brand)s Desktop": "Shkarko %(brand)s Desktop",
|
||||
"%(name)s started a video call": "%(name)s nisni një thirrje video",
|
||||
"Video call (%(brand)s)": "Thirrje video (%(brand)s)",
|
||||
"Filter devices": "Filtroni pajisje",
|
||||
"Toggle push notifications on this session.": "Aktivizo/çaktivizo njoftime push për këtë sesion.",
|
||||
"<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>Nuk rekomandohet të shtohet fshehtëzim në dhoma publike.</b>Dhomat publike mund t’i gjejë dhe hyjë në to kushdo, pra cilido të mund të lexojë mesazhet në to. S’do të përfitoni asnjë nga të mirat e fshehtëzimit dhe s’do të jeni në gjendje ta çaktivizoni më vonë. Fshehtëzimi i mesazheve në një dhomë publike do të ngadalësojë marrjen dhe dërgimin e mesazheve.",
|
||||
"Download %(brand)s": "Shkarko %(brand)s",
|
||||
"Toggle attribution": "Shfaq/fshih atribut",
|
||||
"Empty room (was %(oldName)s)": "Dhomë e zbrazët (qe %(oldName)s)",
|
||||
"Inviting %(user)s and %(count)s others": {
|
||||
|
@ -2585,8 +2516,6 @@
|
|||
"Manually verify by text": "Verifikojeni dorazi përmes teksti",
|
||||
"Proxy URL": "URL Ndërmjetësi",
|
||||
"Proxy URL (optional)": "URL ndërmjetësi (opsionale)",
|
||||
"Get it on F-Droid": "Merreni në F-Droid",
|
||||
"Get it on Google Play": "Merreni nga Google Play",
|
||||
"Video call ended": "Thirrja video përfundoi",
|
||||
"Room info": "Hollësi dhome",
|
||||
"View chat timeline": "Shihni rrjedhë kohore fjalosjeje",
|
||||
|
@ -2675,9 +2604,6 @@
|
|||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s ose %(recoveryFile)s",
|
||||
"To disable you will need to log out and back in, use with caution!": "Për ta çaktivizuar do t’ju duhet të bëni daljen dhe ribëni hyrjen, përdoreni me kujdes!",
|
||||
"Your server lacks native support, you must specify a proxy": "Shërbyesit tuaj i mungon mbulimi së brendshmi, duhet të specifikoni një ndërmjetës",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play dhe stema Google Play janë shenja tregtare të Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® dhee Apple logo® janë shenja tregtare të Apple Inc.",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s ose %(appLinks)s",
|
||||
"You're in": "Kaq qe",
|
||||
"toggle event": "shfaqe/fshihe aktin",
|
||||
"You can use this device to sign in a new device with a QR code. You will need to scan the QR code shown on this device with your device that's signed out.": "Mund ta përdorni këtë pajisje për të hyrë në një pajisje të re me një kod QR. Do t’ju duhet të skanoni kodin QR të shfaqur në këtë pajisje, me pajisjen nga e cila është bërë dalja.",
|
||||
|
@ -2701,8 +2627,6 @@
|
|||
"That e-mail address or phone number is already in use.": "Ajo adresë email, apo numër telefoni, është tashmë e përdorur.",
|
||||
"Sign out of all devices": "Dilni nga llogaria në krejt pajisjet",
|
||||
"Confirm new password": "Ripohoni fjalëkalimin e ri",
|
||||
"Reset your password": "Ricaktoni fjalëkalimin tuaj",
|
||||
"Reset password": "Ricaktoni fjalëkalimin",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Shumë përpjekje brenda një kohe të shkurtër. Riprovoni pas %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Shumë përpjekje në një kohë të shkurtër. Prisni ca, para se të riprovoni.",
|
||||
"Sign in new device": "Hyni në pajisje të re",
|
||||
|
@ -2821,10 +2745,7 @@
|
|||
"There are no active polls in this room": "S’ka pyetësorë aktivë në këtë dhomë",
|
||||
"Fetching keys from server…": "Po sillen kyçet prej shërbyesi…",
|
||||
"Checking…": "Po kontrollohet…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Kjo dhomë merret me lëndë të paligjshme ose toksike, ose moderatorët nuk moderojnë lëndë të paligjshme ose toksike.\nKjo do t’u njoftohet përgjegjësve të %(homeserver)s.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Ky përdorues po tregon sjellje toksike, bie fjala, duke fyer përdorues të tjerë ose duke dhënë lëndë vetëm për të rritur në një dhomë të menduar për familje, ose duke shkelur në mënyra të tjera rregullat e kësaj dhome.\nKjo do t’u njoftohet moderatorëve të dhomës.",
|
||||
"Waiting for partner to confirm…": "Po pritet ripohimi nga partneri…",
|
||||
"Processing…": "Po përpunohet…",
|
||||
"Adding…": "Po shtohet…",
|
||||
"Write something…": "Shkruani diçka…",
|
||||
"Declining…": "Po hidhet poshtë…",
|
||||
|
@ -2921,7 +2842,6 @@
|
|||
"No identity access token found": "S’u gjet token hyrjeje identiteti",
|
||||
"Identity server not set": "Shërbyes identitetesh i paujdisur",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Pa një shërbyes identitetesh, s’mund të ftohet përdorues përmes email-i. Me një të tillë mund të lidheni që prej “Rregullimeve”.",
|
||||
"Unable to create room with moderation bot": "S’arrihet të krijohet dhomë me robot moderimi",
|
||||
"Failed to download source media, no source url was found": "S’u arrit të shkarkohet media burim, s’u gjet URL burimi",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Pasi përdoruesit e ftuar të kenë ardhur në %(brand)s, do të jeni në gjendje të bisedoni dhe dhoma do të jetë e fshehtëzuar skaj-më-skaj",
|
||||
"Waiting for users to join %(brand)s": "Po pritet që përdorues të vijnë në %(brand)s",
|
||||
|
@ -3014,7 +2934,8 @@
|
|||
"secure_backup": "Kopjeruajtje e Sigurt",
|
||||
"cross_signing": "<em>Cross-signing</em>",
|
||||
"identity_server": "Shërbyes identitetesh",
|
||||
"integration_manager": "Përgjegjës integrimesh"
|
||||
"integration_manager": "Përgjegjës integrimesh",
|
||||
"qr_code": "Kod QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Vazhdo",
|
||||
|
@ -3116,7 +3037,16 @@
|
|||
"clear": "Spastroje"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu përdoruesi"
|
||||
"user_menu": "Menu përdoruesi",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s mesazhe të palexuar, përfshi përmendje.",
|
||||
"one": "1 përmendje e palexuar."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s mesazhe të palexuar.",
|
||||
"one": "1 mesazh i palexuar."
|
||||
},
|
||||
"unread_messages": "Mesazhe të palexuar."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Dhoma me video",
|
||||
|
@ -3163,7 +3093,13 @@
|
|||
"group_themes": "Tema",
|
||||
"group_encryption": "Fshehtëzim",
|
||||
"group_experimental": "Eksperimentale",
|
||||
"group_developer": "Zhvillues"
|
||||
"group_developer": "Zhvillues",
|
||||
"beta_feature": "Kjo është një veçori beta",
|
||||
"click_for_info": "Klikoni për më tepër hollësi",
|
||||
"leave_beta_reload": "Braktisja e programit beta do të sjellë ringarkim të %(brand)s.",
|
||||
"join_beta_reload": "Pjesëmarrja në beta do të sjellë ringarkim të %(brand)s.",
|
||||
"leave_beta": "Braktiseni beta-n",
|
||||
"join_beta": "Merrni pjesë te beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Kreu",
|
||||
|
@ -3294,7 +3230,15 @@
|
|||
"enable_notifications": "Aktivizo njoftimet",
|
||||
"download_app_description": "Mos humbni asgjë, duke e marrë %(brand)s-in me vete",
|
||||
"download_app_action": "Shkarko aplikacione",
|
||||
"download_app": "Shkarko %(brand)s"
|
||||
"download_app": "Shkarko %(brand)s",
|
||||
"download_brand": "Shkarko %(brand)s",
|
||||
"download_brand_desktop": "Shkarko %(brand)s Desktop",
|
||||
"qr_or_app_links": "%(qrCode)s ose %(appLinks)s",
|
||||
"download_app_store": "Shkarkoje nga App Store",
|
||||
"download_google_play": "Merreni nga Google Play",
|
||||
"download_f_droid": "Merreni në F-Droid",
|
||||
"apple_trademarks": "App Store® dhee Apple logo® janë shenja tregtare të Apple Inc.",
|
||||
"google_trademarks": "Google Play dhe stema Google Play janë shenja tregtare të Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Shfaq te lista e dhomave shkurtore për te dhoma të para së fundi",
|
||||
|
@ -3500,7 +3444,24 @@
|
|||
"topic": "Temë: %(topic)s",
|
||||
"error_fetching_file": "Gabim në sjellje kartele",
|
||||
"file_attached": "Kartelë Bashkëngjitur",
|
||||
"fetching_events": "Po sillen veprimtari…"
|
||||
"fetching_events": "Po sillen veprimtari…",
|
||||
"processing": "Po përpunohet…",
|
||||
"enter_number_between_min_max": "Jepni një numër mes %(min)s dhe %(max)s",
|
||||
"size_limit_min_max": "Madhësia mund të jetë vetëm një numër mes %(min)s MB dhe %(max)s MB",
|
||||
"num_messages_min_max": "Numri i mesazheve mund të jetë vetëm një numër mes %(min)s dhe %(max)s",
|
||||
"num_messages": "Numër mesazhesh",
|
||||
"cancelled": "Eksportimi u Anulua",
|
||||
"cancelled_detail": "Eksportimi u anulua me sukses",
|
||||
"successful": "Eksportim i Suksesshëm",
|
||||
"successful_detail": "Eksportimi juaj qe i suksesshëm. E keni te dosja juaj Shkarkime.",
|
||||
"confirm_stop": "Jeni i sigurt se doni të ndalet eksportimi i të dhënave tuaja? Nëse po, do t’ju duhet t’ia filloni nga e para.",
|
||||
"exporting_your_data": "Eksportim i të dhënave tuaja",
|
||||
"title": "Eksportoni Fjalosje",
|
||||
"select_option": "Që të eksportohen fjalosje prej rrjedhës tuaj kohore, përzgjidhni prej mundësive më poshtë",
|
||||
"format": "Format",
|
||||
"messages": "Mesazhe",
|
||||
"size_limit": "Kufi Madhësie",
|
||||
"include_attachments": "Përfshi Bashkëngjitje"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Krijoni një dhomë me video",
|
||||
|
@ -3902,7 +3863,6 @@
|
|||
"unsupported": "Nuk mbulohen t\thirrje",
|
||||
"unsupported_browser": "S’mund të bëni thirrje që nga ky shfletues."
|
||||
},
|
||||
"Messages": "Mesazhe",
|
||||
"Other": "Tjetër",
|
||||
"Advanced": "Të mëtejshme",
|
||||
"room_settings": {
|
||||
|
@ -3990,5 +3950,53 @@
|
|||
"spaceinvaders_message": "dërgon pushtues hapësire",
|
||||
"hearts_description": "Mesazhin e dhënë e dërgon me zemra",
|
||||
"hearts_message": "dërgoni zemra"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "S’keni leje të ftoni njerëz në këtë hapësirë",
|
||||
"error_no_permission_create_room": "S’keni leje të krijoni dhoma të reja në këtë hapësirë",
|
||||
"error_no_permission_add_room": "S’keni leje të shtoni dhoma në këtë hapësirë",
|
||||
"error_no_permission_add_space": "S’keni leje të shtoni hapësira te kjo hapësirë"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Vazhdo me %(provider)s",
|
||||
"sign_in_with_sso": "Bëni hyrjen me hyrje njëshe",
|
||||
"sso": "Hyrje Njëshe",
|
||||
"reset_password_action": "Ricaktoni fjalëkalimin",
|
||||
"reset_password_title": "Ricaktoni fjalëkalimin tuaj"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Së pari shfaq dhoma me mesazhe të palexuar",
|
||||
"show_previews": "Shfaq paraparje mesazhesh",
|
||||
"sort_by": "Renditi sipas",
|
||||
"sort_by_activity": "Veprimtari",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Mundësi liste",
|
||||
"show_n_more": {
|
||||
"other": "Shfaq %(count)s të tjera",
|
||||
"one": "Shfaq %(count)s tjetër"
|
||||
},
|
||||
"show_less": "Shfaq më pak",
|
||||
"notification_options": "Mundësi njoftimesh"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Ju lutemi, plotësoni arsyen pse po raportoni.",
|
||||
"unable_create_room_moderation_bot": "S’arrihet të krijohet dhomë me robot moderimi",
|
||||
"ignore_user": "Shpërfille përdoruesin",
|
||||
"hide_messages_from_user": "I vini shenjë, nëse doni të fshihen krejt mesazhet e tanishme dhe të ardhshme nga ky përdorues.",
|
||||
"nature_disagreement": "Ajo ç’shkruan ky përdorues është gabim.\nKjo do t’u njoftohet përgjegjësve të dhomës.",
|
||||
"nature_toxic": "Ky përdorues po tregon sjellje toksike, bie fjala, duke fyer përdorues të tjerë ose duke dhënë lëndë vetëm për të rritur në një dhomë të menduar për familje, ose duke shkelur në mënyra të tjera rregullat e kësaj dhome.\nKjo do t’u njoftohet moderatorëve të dhomës.",
|
||||
"nature_illegal": "Ky përdorues shfaq sjellje të paligjshme, bie fjala, duke zbuluar identitet personash ose duke kërcënuar me dhunë.\nKjo do t’u njoftohet përgjegjësve të dhomës, të cilët mund ta përshkallëzojnë punën drejt autoriteteve ligjore.",
|
||||
"nature_spam": "Ky përdorues dërgon në dhomë reklama të padëshiruara, lidhje për te reklama të tilla ose te propagandë e padëshiruar.\nKjo do t’u njoftohet përgjegjësve të dhomës.",
|
||||
"report_to_homeserver_encrypted": "Kjo dhomë merret me lëndë të paligjshme ose toksike, ose moderatorët nuk moderojnë lëndë të paligjshme ose toksike.\nKjo do t’u njoftohet përgjegjësve të %(homeserver)s. Përgjegjësit NUK do të jenë në gjendje të lexojnë lëndë të fshehtëzuar të kësaj dhome.",
|
||||
"report_to_homeserver": "Kjo dhomë merret me lëndë të paligjshme ose toksike, ose moderatorët nuk moderojnë lëndë të paligjshme ose toksike.\nKjo do t’u njoftohet përgjegjësve të %(homeserver)s.",
|
||||
"nature_other": "Çfarëdo arsye tjetër. Ju lutemi, përshkruani problemin.\nKjo do t’u raportohet moderatorëve të dhomës.",
|
||||
"nature": "Ju lutemi, zgjidhni një karakterizim dhe përshkruani se ç’e bën këtë mesazh abuziv.",
|
||||
"disagree": "S’pajtohem",
|
||||
"toxic_behaviour": "Sjellje Toksike",
|
||||
"illegal_content": "Lëndë e Paligjshme",
|
||||
"spam_or_propaganda": "Mesazh i padëshiruar ose propagandë",
|
||||
"report_entire_room": "Raporto krejt dhomën",
|
||||
"report_content_to_homeserver": "Raportoni Lëndë te Përgjegjësi i Shërbyesit Tuaj Home",
|
||||
"description": "Raportimi i këtij mesazhi do të shkaktojë dërgimin e 'ID-së së aktit' unike te përgjegjësi i shërbyesit tuaj Home. Nëse mesazhet në këtë dhomë fshehtëzohen, përgjegjësi i shërbyesit tuaj Home s’do të jetë në gjendje të lexojë tekstin e mesazhit apo të shohë çfarëdo kartelë apo figurë."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -341,7 +341,6 @@
|
|||
"Please ask the administrator of your homeserver (<code>%(homeserverDomain)s</code>) to configure a TURN server in order for calls to work reliably.": "Замолите администратора вашег сервера (<code>%(homeserverDomain)s</code>) да подеси „TURN“ сервер како би позиви радили поуздано.",
|
||||
"Use Single Sign On to continue": "Користи јединствену пријаву за наставак",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Потврдите додавање ове е-адресе коришћењем јединствене пријаве за доказивање вашег идентитета.",
|
||||
"Single Sign On": "Јединствена пријава",
|
||||
"Confirm adding email": "Потврди додавање е-адресе",
|
||||
"Click the button below to confirm adding this email address.": "Кликните на дугме испод за потврђивање додавања ове е-адресе.",
|
||||
"Add Email Address": "Додај адресу е-поште",
|
||||
|
@ -370,8 +369,6 @@
|
|||
"Direct Messages": "Директне поруке",
|
||||
"Forget this room": "Заборави ову собу",
|
||||
"Start chatting": "Започни ћаскање",
|
||||
"List options": "Прикажи опције",
|
||||
"Notification options": "Опције обавештавања",
|
||||
"Forget Room": "Заборави собу",
|
||||
"Room options": "Опције собе",
|
||||
"Mark all as read": "Означи све као прочитано",
|
||||
|
@ -391,7 +388,6 @@
|
|||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>реаговали са %(shortName)s</reactedWith>",
|
||||
"Widgets do not use message encryption.": "Виџети не користе шифровање порука.",
|
||||
"Enable end-to-end encryption": "Омогући шифровање с краја на крај",
|
||||
"Report Content to Your Homeserver Administrator": "Пријави садржај администратору вашег домаћег сервера",
|
||||
"Room Settings - %(roomName)s": "Подешавања собе - %(roomName)s",
|
||||
"Terms of Service": "Услови коришћења",
|
||||
"To continue you need to accept the terms of this service.": "За наставак, морате прихватити услове коришћења ове услуге.",
|
||||
|
@ -415,11 +411,6 @@
|
|||
"Unable to revoke sharing for email address": "Не могу да опозовем дељење ове мејл адресе",
|
||||
"Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона",
|
||||
"No recently visited rooms": "Нема недавно посећених соба",
|
||||
"Show rooms with unread messages first": "Прво прикажи собе са непрочитаним порукама",
|
||||
"Show previews of messages": "Прикажи прегледе порука",
|
||||
"Sort by": "Поређај по",
|
||||
"Activity": "Активности",
|
||||
"A-Z": "А-Ш",
|
||||
"Send as message": "Пошаљи у облику поруке",
|
||||
"Failed to revoke invite": "Неуспех при отказивању позивнице",
|
||||
"Revoke invite": "Откажи позивницу",
|
||||
|
@ -1403,7 +1394,6 @@
|
|||
"already_in_call": "Већ у позиву",
|
||||
"already_in_call_person": "Већ разговарате са овом особом."
|
||||
},
|
||||
"Messages": "Поруке",
|
||||
"Other": "Остало",
|
||||
"Advanced": "Напредно",
|
||||
"room_settings": {
|
||||
|
@ -1425,5 +1415,23 @@
|
|||
"category_smileys_people": "Смешци и особе",
|
||||
"categories": "Категорије",
|
||||
"quick_reactions": "Брзе реакције"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Јединствена пријава"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Поруке"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Прво прикажи собе са непрочитаним порукама",
|
||||
"show_previews": "Прикажи прегледе порука",
|
||||
"sort_by": "Поређај по",
|
||||
"sort_by_activity": "Активности",
|
||||
"sort_by_alphabet": "А-Ш",
|
||||
"sublist_options": "Прикажи опције",
|
||||
"notification_options": "Опције обавештавања"
|
||||
},
|
||||
"report_content": {
|
||||
"report_content_to_homeserver": "Пријави садржај администратору вашег домаћег сервера"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrdite dodavanje ovog telefonskog broja koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||
"Click the button below to confirm adding this email address.": "Kliknite taster ispod da biste potvrdili dodavanje email adrese.",
|
||||
"Confirm adding email": "Potvrdite dodavanje email adrese",
|
||||
"Single Sign On": "Jedinstvena prijava (SSO)",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrdite dodavanje ove email adrese koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||
"Use Single Sign On to continue": "Koristite jedinstvenu prijavu (SSO) za nastavak",
|
||||
"There was a problem communicating with the homeserver, please try again later.": "Postoji problem u komunikaciji sa privatnim/javnim serverom. Molim Vas pokušajte kasnije.",
|
||||
|
@ -115,5 +114,8 @@
|
|||
"voip": {
|
||||
"disable_camera": "Zaustavi kameru",
|
||||
"call_failed": "Poziv nije uspio"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "Jedinstvena prijava (SSO)"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -746,7 +746,6 @@
|
|||
"Jump to room search": "Hoppa till rumssökning",
|
||||
"Use Single Sign On to continue": "Använd samlad inloggning (single sign on) för att fortsätta",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Bekräfta tilläggning av e-postadressen genom att använda samlad inloggning för att bevisa din identitet.",
|
||||
"Single Sign On": "Samlad inloggning",
|
||||
"Confirm adding email": "Bekräfta tilläggning av e-postadressen",
|
||||
"Click the button below to confirm adding this email address.": "Klicka på knappen nedan för att bekräfta tilläggning av e-postadressen.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Bekräfta tilläggning av telefonnumret genom att använda samlad inloggning för att bevisa din identitet.",
|
||||
|
@ -792,7 +791,6 @@
|
|||
"Your server isn't responding to some <a>requests</a>.": "Din server svarar inte på vissa <a>förfrågningar</a>.",
|
||||
"This bridge was provisioned by <user />.": "Den här bryggan tillhandahålls av <user />.",
|
||||
"This bridge is managed by <user />.": "Den här bryggan tillhandahålls av <user />.",
|
||||
"Show less": "Visa mindre",
|
||||
"Your homeserver does not support cross-signing.": "Din hemserver stöder inte korssignering.",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Ditt konto har en korssigneringsidentitet i hemlig lagring, men den är inte betrodd av den här sessionen än.",
|
||||
"well formed": "välformaterad",
|
||||
|
@ -903,31 +901,11 @@
|
|||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Använd en identitetsserver i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Dela denna e-postadress i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
||||
"Reject & Ignore user": "Avvisa och ignorera användare",
|
||||
"Show rooms with unread messages first": "Visa rum med olästa meddelanden först",
|
||||
"Show previews of messages": "Visa förhandsgranskningar av meddelanden",
|
||||
"Sort by": "Sortera efter",
|
||||
"Activity": "Aktivitet",
|
||||
"A-Z": "A-Ö",
|
||||
"List options": "Listalternativ",
|
||||
"Jump to first unread room.": "Hoppa till första olästa rum.",
|
||||
"Jump to first invite.": "Hoppa till första inbjudan.",
|
||||
"Show %(count)s more": {
|
||||
"other": "Visa %(count)s till",
|
||||
"one": "Visa %(count)s till"
|
||||
},
|
||||
"Notification options": "Aviseringsinställningar",
|
||||
"Forget Room": "Glöm rum",
|
||||
"Favourited": "Favoritmarkerad",
|
||||
"Room options": "Rumsinställningar",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s olästa meddelanden inklusive omnämnanden.",
|
||||
"one": "1 oläst omnämnande."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s olästa meddelanden.",
|
||||
"one": "1 oläst meddelande."
|
||||
},
|
||||
"Unread messages.": "Olästa meddelanden.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Att uppgradera det här rummet kommer att stänga den nuvarande instansen av rummet och skapa ett uppgraderat rum med samma namn.",
|
||||
"This room has already been upgraded.": "Det här rummet har redan uppgraderats.",
|
||||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Det här rummet kör rumsversion <roomVersion />, vilket den här hemservern har markerat som <i>instabil</i>.",
|
||||
|
@ -999,11 +977,9 @@
|
|||
"Can't load this message": "Kan inte ladda det här meddelandet",
|
||||
"Submit logs": "Skicka loggar",
|
||||
"Information": "Information",
|
||||
"QR Code": "QR-kod",
|
||||
"Room address": "Rumsadress",
|
||||
"This address is available to use": "Adressen är tillgänglig",
|
||||
"This address is already in use": "Adressen är upptagen",
|
||||
"Sign in with single sign-on": "Logga in med samlad inloggning",
|
||||
"Enter a server name": "Ange ett servernamn",
|
||||
"Looks good": "Ser bra ut",
|
||||
"Can't find this server or its room list": "Kan inte hitta den här servern eller dess rumslista",
|
||||
|
@ -1064,9 +1040,6 @@
|
|||
"Confirm by comparing the following with the User Settings in your other session:": "Bekräfta genom att jämföra följande med användarinställningarna i din andra session:",
|
||||
"Confirm this user's session by comparing the following with their User Settings:": "Bekräfta den här användarens session genom att jämföra följande med deras användarinställningar:",
|
||||
"If they don't match, the security of your communication may be compromised.": "Om de inte matchar så kan din kommunikations säkerhet vara äventyrad.",
|
||||
"Please fill why you're reporting.": "Vänligen fyll i varför du anmäler.",
|
||||
"Report Content to Your Homeserver Administrator": "Rapportera innehåll till din hemserveradministratör",
|
||||
"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.": "Att rapportera det här meddelandet kommer att skicka dess unika 'händelse-ID' till administratören för din hemserver. Om meddelanden i det här rummet är krypterade kommer din hemserveradministratör inte att kunna läsa meddelandetexten eller se några filer eller bilder.",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Att uppgradera det här rummet kräver att den nuvarande instansen a rummet stängs och ett nytt rum skapas i dess plats. För att ge rumsmedlemmar den bästa möjliga upplevelsen kommer vi:",
|
||||
"You're all caught up.": "Du är ikapp.",
|
||||
"Server isn't responding": "Servern svarar inte",
|
||||
|
@ -1571,7 +1544,6 @@
|
|||
"Send stickers to your active room as you": "Skicka dekaler till ditt aktiva rum som dig",
|
||||
"Send stickers to this room as you": "Skicka dekaler till det här rummet som dig",
|
||||
"Reason (optional)": "Orsak (valfritt)",
|
||||
"Continue with %(provider)s": "Fortsätt med %(provider)s",
|
||||
"Server Options": "Serveralternativ",
|
||||
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
||||
"one": "Cacha på ett säkert sätt krypterade meddelanden lokalt för att de ska visas i sökresultat, och använd %(size)s för att lagra meddelanden från %(rooms)s rum.",
|
||||
|
@ -1707,9 +1679,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Du kommer inte kunna ångra den här ändringen eftersom du degraderar dig själv, och om du är den sista privilegierade användaren i utrymmet så kommer det att vara omöjligt att återfå utrymmet.",
|
||||
"Empty room": "Tomt rum",
|
||||
"Suggested Rooms": "Föreslagna rum",
|
||||
"You do not have permissions to add rooms to this space": "Du är inte behörig att lägga till rum till det här utrymmet",
|
||||
"Add existing room": "Lägg till existerande rum",
|
||||
"You do not have permissions to create new rooms in this space": "Du är inte behörig att skapa nya rum i det här utrymmet",
|
||||
"Invite to this space": "Bjud in till det här utrymmet",
|
||||
"Your message was sent": "Ditt meddelande skickades",
|
||||
"Space options": "Utrymmesalternativ",
|
||||
|
@ -1799,8 +1769,6 @@
|
|||
"Message search initialisation failed": "Initialisering av meddelandesökning misslyckades",
|
||||
"Search names and descriptions": "Sök namn och beskrivningar",
|
||||
"Select a room below first": "Välj ett rum nedan först",
|
||||
"Join the beta": "Gå med i betan",
|
||||
"Leave the beta": "Lämna betan",
|
||||
"You may contact me if you have any follow up questions": "Ni kan kontakta mig om ni har vidare frågor",
|
||||
"To leave the beta, visit your settings.": "För att lämna betan, besök dina inställningar.",
|
||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Din plattform och ditt användarnamn kommer att noteras för att hjälpa oss att använda din återkoppling så mycket vi kan.",
|
||||
|
@ -1844,7 +1812,6 @@
|
|||
"End-to-end encryption isn't enabled": "Totalsträckskryptering är inte aktiverat",
|
||||
"Some invites couldn't be sent": "Vissa inbjudningar kunde inte skickas",
|
||||
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Vi skickade de andra, men personerna nedan kunde inte bjudas in till <RoomName/>",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Vad användaren skriver är fel.\nDetta kommer att anmälas till rumsmoderatorerna.",
|
||||
"Report": "Rapportera",
|
||||
"Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "Din %(brand)s tillåter dig inte att använda en integrationshanterare för att göra detta. Vänligen kontakta en administratör.",
|
||||
"Using this widget may share data <helpIcon /> with %(widgetDomain)s & your integration manager.": "Att använda denna widget kan dela data <helpIcon /> med %(widgetDomain)s och din integrationshanterare.",
|
||||
|
@ -1952,16 +1919,6 @@
|
|||
"Settings - %(spaceName)s": "Inställningar - %(spaceName)s",
|
||||
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>Observera att en uppgradering kommer att skapa en ny version av rummet</b>. Alla nuvarande meddelanden kommer att stanna i det arkiverade rummet.",
|
||||
"Automatically invite members from this room to the new one": "Bjud automatiskt in medlemmar från det här rummet till det nya",
|
||||
"Report the entire room": "Rapportera hela rummet",
|
||||
"Spam or propaganda": "Spam eller propaganda",
|
||||
"Illegal Content": "Olagligt innehåll",
|
||||
"Toxic Behaviour": "Stötande beteende",
|
||||
"Disagree": "Håll inte med",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Välj en art och beskriv vad som gör detta meddelande kränkande.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Det här rummet är dedikerat till olagligt eller stötande innehåll, eller så modererar inte moderatorerna olagligt eller stötande innehåll ordentligt.\nDetta kommer att rapporteras till administratörerna för %(homeserver)s. Administratörerna kommer inte kunna läsa krypterat innehåll i rummet.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Annan orsak. Beskriv problemet tack.\nDetta kommer att rapporteras till rumsmoderatorerna.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Användaren spammar rummet med reklam eller länkar till reklam eller propaganda.\nDetta kommer att rapporteras till rumsmoderatorerna.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Användaren påvisar olagligt beteende, som att doxa folk eller hota med våld.\nDetta kommer att rapporteras till rumsmoderatorerna som kanske eskalerar detta till juridiska myndigheter.",
|
||||
"These are likely ones other room admins are a part of.": "Dessa är troligen såna andra rumsadmins är med i.",
|
||||
"Other spaces or rooms you might not know": "Andra utrymmen du kanske inte känner till",
|
||||
"Spaces you know that contain this room": "Utrymmen du känner till som innehåller det här rummet",
|
||||
|
@ -2049,21 +2006,7 @@
|
|||
"See room timeline (devtools)": "Se rummets tidslinje (utvecklingsverktyg)",
|
||||
"View in room": "Visa i rum",
|
||||
"Enter your Security Phrase or <button>use your Security Key</button> to continue.": "Ange din säkerhetsfras eller <button>använd din säkerhetsnyckel</button> för att fortsätta.",
|
||||
"Include Attachments": "Inkludera bilagor",
|
||||
"Size Limit": "Storleksgräns",
|
||||
"Format": "Format",
|
||||
"Select from the options below to export chats from your timeline": "Välj från alternativen nedan för att exportera chattar från din tidslinje",
|
||||
"Export Chat": "Exportera chatt",
|
||||
"Exporting your data": "Exporterar din data",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Är du säker på att du vill sluta exportera din data? Om du gör det så behöver du börja om.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Din export lyckades. Hitta den i din hämtningsmapp.",
|
||||
"The export was cancelled successfully": "Exporten avbröts framgångsrikt",
|
||||
"Export Successful": "Export lyckades",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Antal meddelanden",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Antal meddelanden kan bara vara ett nummer mellan %(min)s och %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Storlek kan bara vara ett nummer mellan %(min)s MB och %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Ange ett nummer mellan %(min)s och %(max)s",
|
||||
"Developer mode": "Utvecklarläge",
|
||||
"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.": "Återställning av dina verifieringsnycklar kan inte ångras. Efter återställning så kommer du inte att komma åt dina krypterade meddelanden, och alla vänner som tidigare har verifierat dig kommer att se säkerhetsvarningar tills du återverifierar med dem.",
|
||||
"I'll verify later": "Jag verifierar senare",
|
||||
|
@ -2206,7 +2149,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s-alternativ",
|
||||
"Join public room": "Gå med i offentligt rum",
|
||||
"Add people": "Lägg till personer",
|
||||
"You do not have permissions to invite people to this space": "Du är inte behörig att bjuda in personer till det här utrymmet",
|
||||
"Invite to space": "Bjud in till utrymme",
|
||||
"Start new chat": "Starta ny chatt",
|
||||
"Recently viewed": "Nyligen sedda",
|
||||
|
@ -2245,7 +2187,6 @@
|
|||
"other": "Slutgiltigt resultat baserat på %(count)s röster"
|
||||
},
|
||||
"Sorry, your vote was not registered. Please try again.": "Tyvärr så registrerades inte din röst. Vänligen pröva igen.",
|
||||
"You do not have permissions to add spaces to this space": "Du är inte behörig att lägga till utrymmen till det här utrymmet",
|
||||
"This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "Det här grupperar dina chattar med medlemmar i det här utrymmet. Att stänga av det kommer att dölja dessa chattar från din vy av %(spaceName)s.",
|
||||
"Sections to show": "Sektioner att visa",
|
||||
"Link to room": "Länk till rum",
|
||||
|
@ -2299,8 +2240,6 @@
|
|||
"If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Om någon sa åt dig att kopiera/klistra något när, så är det troligt att du blir lurad!",
|
||||
"Wait!": "Vänta!",
|
||||
"Unable to check if username has been taken. Try again later.": "Kunde inte kolla om användarnamnet var upptaget. Pröva igen senare.",
|
||||
"Click for more info": "Klicka för mer info",
|
||||
"This is a beta feature": "Det här är en betafunktion",
|
||||
"Space home": "Utrymmeshem",
|
||||
"Mentions only": "Endast omnämnanden",
|
||||
"Forget": "Glöm",
|
||||
|
@ -2420,7 +2359,6 @@
|
|||
"Live until %(expiryTime)s": "Realtid tills %(expiryTime)s",
|
||||
"Updated %(humanizedUpdateTime)s": "Uppdaterade %(humanizedUpdateTime)s",
|
||||
"Unsent": "Ej skickat",
|
||||
"Export Cancelled": "Exportering avbruten",
|
||||
"Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Bocka ur om du även vill ta bort systemmeddelanden för denna användaren (förändrat medlemskap, ny profilbild, m.m.)",
|
||||
"Preserve system messages": "Bevara systemmeddelanden",
|
||||
"You are about to remove %(count)s messages by %(user)s. This will remove them permanently for everyone in the conversation. Do you wish to continue?": {
|
||||
|
@ -2490,16 +2428,12 @@
|
|||
"one": "%(count)s person gick med"
|
||||
},
|
||||
"View related event": "Visa relaterade händelser",
|
||||
"Check if you want to hide all current and future messages from this user.": "Bocka i om du vill dölja alla nuvarande och framtida meddelanden från den här användaren.",
|
||||
"Ignore user": "Ignorera användare",
|
||||
"Read receipts": "Läskvitton",
|
||||
"Failed to set direct message tag": "Misslyckades att sätta direktmeddelandetagg",
|
||||
"You were disconnected from the call. (Error: %(message)s)": "Du kopplades bort från samtalet. (Fel: %(message)s)",
|
||||
"Connection lost": "Anslutning bröts",
|
||||
"Un-maximise": "Avmaximera",
|
||||
"Deactivating your account is a permanent action — be careful!": "Avaktivering av ditt konto är en permanent handling — var försiktig!",
|
||||
"Joining the beta will reload %(brand)s.": "Att gå med i betan kommer att ladda om %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Att lämna betan kommer att ladda om %(brand)s.",
|
||||
"Remove search filter for %(filter)s": "Ta bort sökfilter för %(filter)s",
|
||||
"Start a group chat": "Starta en gruppchatt",
|
||||
"Other options": "Andra alternativ",
|
||||
|
@ -2580,7 +2514,6 @@
|
|||
"Record the client name, version, and url to recognise sessions more easily in session manager": "Spara klientens namn, version och URL för att lättare känna igen sessioner i sessionshanteraren",
|
||||
"Sorry — this call is currently full": "Tyvärr - det här samtalet är för närvarande fullt",
|
||||
"Show shortcut to welcome checklist above the room list": "Visa genväg till välkomstchecklistan ovanför rumslistan",
|
||||
"Download %(brand)s": "Ladda ner %(brand)s",
|
||||
"Only applies if your homeserver does not offer one. Your IP address would be shared during a call.": "Gäller endast om din hemserver inte erbjuder en. Din IP-adress delas under samtal.",
|
||||
"Noise suppression": "Brusreducering",
|
||||
"Echo cancellation": "Ekoreducering",
|
||||
|
@ -2629,13 +2562,6 @@
|
|||
"Your server lacks native support, you must specify a proxy": "Din server saknar nativt stöd, du måste ange en proxy",
|
||||
"Your server lacks native support": "Din server saknar nativt stöd",
|
||||
"Your server has native support": "Din server har nativt stöd",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play och Google Play-loggan är varumärken som tillhör Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® och Apple-loggan® är varumärken som tillhör Apple Inc.",
|
||||
"Get it on F-Droid": "Hämta den på F-Droid",
|
||||
"Get it on Google Play": "Hämta den på Google Play",
|
||||
"Download on the App Store": "Ladda ner på App Store",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s eller %(appLinks)s",
|
||||
"Download %(brand)s Desktop": "Ladda ner %(brand)s skrivbord",
|
||||
"Choose a locale": "Välj en lokalisering",
|
||||
"<w>WARNING:</w> <description/>": "<w>VARNING:</w> <description/>",
|
||||
"Error downloading image": "Fel vid nedladdning av bild",
|
||||
|
@ -2758,8 +2684,6 @@
|
|||
"That e-mail address or phone number is already in use.": "Den e-postadressen eller det telefonnumret används redan.",
|
||||
"Sign out of all devices": "Logga ut ur alla enheter",
|
||||
"Confirm new password": "Bekräfta nytt lösenord",
|
||||
"Reset your password": "Återställ ditt lösenord",
|
||||
"Reset password": "Återställ lösenord",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "För många försök under en kort tid. Pröva igen efter %(timeout)s.",
|
||||
"The homeserver doesn't support signing in another device.": "Hemservern stöder inte inloggning av en annan enhet.",
|
||||
"Mark as read": "Markera som läst",
|
||||
|
@ -2821,7 +2745,6 @@
|
|||
"Your personal ban list holds all the users/servers you personally don't want to see messages from. After ignoring your first user/server, a new room will show up in your room list named '%(myBanList)s' - stay in this room to keep the ban list in effect.": "Din personliga bannlista innehåller alla de användare och servrar du personligen inte vill se meddelanden ifrån. Efter att du ignorerar din första användare eller server så visas ett nytt rum i din rumslista med namnet '%(myBanList)s' - stanna i det här rummet för att bannlistan ska fortsätta gälla.",
|
||||
"WARNING: session already verified, but keys do NOT MATCH!": "VARNING: sessionen är redan verifierad, men nycklarna MATCHAR INTE!",
|
||||
"Unable to connect to Homeserver. Retrying…": "Kunde inte kontakta hemservern. Försöker igen …",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Det här rummet är dedikerat till olagligt eller stötande innehåll eller så har moderatorerna misslyckats med att moderera olagligt eller stötande innehåll.\nDet här kommer att rapporteras till %(homeserver)ss administratörer.",
|
||||
"Secure Backup successful": "Säkerhetskopiering lyckades",
|
||||
"Your keys are now being backed up from this device.": "Dina nycklar säkerhetskopieras nu från denna enhet.",
|
||||
"Enter a Security Phrase only you know, as it's used to safeguard your data. To be secure, you shouldn't re-use your account password.": "Ange en säkerhetsfras som bara du känner till, eftersom den används för att säkra din data. För att vara säker, bör du inte återanvända ditt kontolösenord.",
|
||||
|
@ -2836,9 +2759,7 @@
|
|||
"Loading live location…": "Laddar realtidsposition …",
|
||||
"Fetching keys from server…": "Hämtar nycklar från server …",
|
||||
"Checking…": "Kontrollerar …",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Den här användaren uppvisar ett stötande beteende, till exempel genom att förolämpa andra användare eller dela vuxenmaterial i familjevänliga rum, eller på annat sätt bryter mot rummets regler.\nDetta kommer att rapporteras till rummets moderatorer.",
|
||||
"Waiting for partner to confirm…": "Väntar på att andra parten ska bekräfta …",
|
||||
"Processing…": "Bearbetar …",
|
||||
"Adding…": "Lägger till …",
|
||||
"Write something…": "Skriv nånting …",
|
||||
"Rejecting invite…": "Nekar inbjudan …",
|
||||
|
@ -2909,7 +2830,6 @@
|
|||
"A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Ett nätverksfel uppstod vid försök att hitta och hoppa till det angivna datumet. Din hemserver kanske är nere eller så var det vara ett tillfälligt problem med din internetuppkoppling. Var god försök igen. Om detta fortsätter, kontakta din hemserveradministratör.",
|
||||
"We were unable to find an event looking forwards from %(dateString)s. Try choosing an earlier date.": "Vi kunde inte hitta en händelse från %(dateString)s eller senare. Pröva att välja ett tidigare datum.",
|
||||
"unavailable": "otillgänglig",
|
||||
"Unable to create room with moderation bot": "Kunde inte skapa rum med modereringsbot",
|
||||
"Due to decryption errors, some votes may not be counted": "På grund av avkrypteringsfel kanske inte vissa röster räknas",
|
||||
"Message from %(user)s": "Meddelande från %(user)s",
|
||||
"Answered elsewhere": "Besvarat på annat håll",
|
||||
|
@ -3042,7 +2962,8 @@
|
|||
"secure_backup": "Säker säkerhetskopiering",
|
||||
"cross_signing": "Korssignering",
|
||||
"identity_server": "Identitetsserver",
|
||||
"integration_manager": "Integrationshanterare"
|
||||
"integration_manager": "Integrationshanterare",
|
||||
"qr_code": "QR-kod"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Fortsätt",
|
||||
|
@ -3144,7 +3065,16 @@
|
|||
"clear": "Rensa"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Användarmeny"
|
||||
"user_menu": "Användarmeny",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s olästa meddelanden inklusive omnämnanden.",
|
||||
"one": "1 oläst omnämnande."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s olästa meddelanden.",
|
||||
"one": "1 oläst meddelande."
|
||||
},
|
||||
"unread_messages": "Olästa meddelanden."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Videorum",
|
||||
|
@ -3199,7 +3129,13 @@
|
|||
"group_themes": "Teman",
|
||||
"group_encryption": "Kryptering",
|
||||
"group_experimental": "Experimentellt",
|
||||
"group_developer": "Utvecklare"
|
||||
"group_developer": "Utvecklare",
|
||||
"beta_feature": "Det här är en betafunktion",
|
||||
"click_for_info": "Klicka för mer info",
|
||||
"leave_beta_reload": "Att lämna betan kommer att ladda om %(brand)s.",
|
||||
"join_beta_reload": "Att gå med i betan kommer att ladda om %(brand)s.",
|
||||
"leave_beta": "Lämna betan",
|
||||
"join_beta": "Gå med i betan"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Hem",
|
||||
|
@ -3330,7 +3266,15 @@
|
|||
"enable_notifications": "Sätt på aviseringar",
|
||||
"download_app_description": "Missa inget genom att ta med dig %(brand)s",
|
||||
"download_app_action": "Ladda ner appar",
|
||||
"download_app": "Ladda ner %(brand)s"
|
||||
"download_app": "Ladda ner %(brand)s",
|
||||
"download_brand": "Ladda ner %(brand)s",
|
||||
"download_brand_desktop": "Ladda ner %(brand)s skrivbord",
|
||||
"qr_or_app_links": "%(qrCode)s eller %(appLinks)s",
|
||||
"download_app_store": "Ladda ner på App Store",
|
||||
"download_google_play": "Hämta den på Google Play",
|
||||
"download_f_droid": "Hämta den på F-Droid",
|
||||
"apple_trademarks": "App Store® och Apple-loggan® är varumärken som tillhör Apple Inc.",
|
||||
"google_trademarks": "Google Play och Google Play-loggan är varumärken som tillhör Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Visa genvägar till nyligen visade rum över rumslistan",
|
||||
|
@ -3544,7 +3488,24 @@
|
|||
"error_fetching_file": "Fel vid hämtning av fil",
|
||||
"file_attached": "Fil bifogad",
|
||||
"fetching_events": "Hämtar händelser …",
|
||||
"creating_output": "Skapar utdata …"
|
||||
"creating_output": "Skapar utdata …",
|
||||
"processing": "Bearbetar …",
|
||||
"enter_number_between_min_max": "Ange ett nummer mellan %(min)s och %(max)s",
|
||||
"size_limit_min_max": "Storlek kan bara vara ett nummer mellan %(min)s MB och %(max)s MB",
|
||||
"num_messages_min_max": "Antal meddelanden kan bara vara ett nummer mellan %(min)s och %(max)s",
|
||||
"num_messages": "Antal meddelanden",
|
||||
"cancelled": "Exportering avbruten",
|
||||
"cancelled_detail": "Exporten avbröts framgångsrikt",
|
||||
"successful": "Export lyckades",
|
||||
"successful_detail": "Din export lyckades. Hitta den i din hämtningsmapp.",
|
||||
"confirm_stop": "Är du säker på att du vill sluta exportera din data? Om du gör det så behöver du börja om.",
|
||||
"exporting_your_data": "Exporterar din data",
|
||||
"title": "Exportera chatt",
|
||||
"select_option": "Välj från alternativen nedan för att exportera chattar från din tidslinje",
|
||||
"format": "Format",
|
||||
"messages": "Meddelanden",
|
||||
"size_limit": "Storleksgräns",
|
||||
"include_attachments": "Inkludera bilagor"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Skapa ett videorum",
|
||||
|
@ -3949,7 +3910,6 @@
|
|||
"unsupported": "Samtal stöds ej",
|
||||
"unsupported_browser": "Du kan inte ringa samtal i den här webbläsaren."
|
||||
},
|
||||
"Messages": "Meddelanden",
|
||||
"Other": "Annat",
|
||||
"Advanced": "Avancerat",
|
||||
"room_settings": {
|
||||
|
@ -4037,5 +3997,53 @@
|
|||
"spaceinvaders_message": "skickar Space Invaders",
|
||||
"hearts_description": "Skickar det givna meddelandet med hjärtan",
|
||||
"hearts_message": "skicka hjärtan"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Du är inte behörig att bjuda in personer till det här utrymmet",
|
||||
"error_no_permission_create_room": "Du är inte behörig att skapa nya rum i det här utrymmet",
|
||||
"error_no_permission_add_room": "Du är inte behörig att lägga till rum till det här utrymmet",
|
||||
"error_no_permission_add_space": "Du är inte behörig att lägga till utrymmen till det här utrymmet"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Fortsätt med %(provider)s",
|
||||
"sign_in_with_sso": "Logga in med samlad inloggning",
|
||||
"sso": "Samlad inloggning",
|
||||
"reset_password_action": "Återställ lösenord",
|
||||
"reset_password_title": "Återställ ditt lösenord"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Visa rum med olästa meddelanden först",
|
||||
"show_previews": "Visa förhandsgranskningar av meddelanden",
|
||||
"sort_by": "Sortera efter",
|
||||
"sort_by_activity": "Aktivitet",
|
||||
"sort_by_alphabet": "A-Ö",
|
||||
"sublist_options": "Listalternativ",
|
||||
"show_n_more": {
|
||||
"other": "Visa %(count)s till",
|
||||
"one": "Visa %(count)s till"
|
||||
},
|
||||
"show_less": "Visa mindre",
|
||||
"notification_options": "Aviseringsinställningar"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Vänligen fyll i varför du anmäler.",
|
||||
"unable_create_room_moderation_bot": "Kunde inte skapa rum med modereringsbot",
|
||||
"ignore_user": "Ignorera användare",
|
||||
"hide_messages_from_user": "Bocka i om du vill dölja alla nuvarande och framtida meddelanden från den här användaren.",
|
||||
"nature_disagreement": "Vad användaren skriver är fel.\nDetta kommer att anmälas till rumsmoderatorerna.",
|
||||
"nature_toxic": "Den här användaren uppvisar ett stötande beteende, till exempel genom att förolämpa andra användare eller dela vuxenmaterial i familjevänliga rum, eller på annat sätt bryter mot rummets regler.\nDetta kommer att rapporteras till rummets moderatorer.",
|
||||
"nature_illegal": "Användaren påvisar olagligt beteende, som att doxa folk eller hota med våld.\nDetta kommer att rapporteras till rumsmoderatorerna som kanske eskalerar detta till juridiska myndigheter.",
|
||||
"nature_spam": "Användaren spammar rummet med reklam eller länkar till reklam eller propaganda.\nDetta kommer att rapporteras till rumsmoderatorerna.",
|
||||
"report_to_homeserver_encrypted": "Det här rummet är dedikerat till olagligt eller stötande innehåll, eller så modererar inte moderatorerna olagligt eller stötande innehåll ordentligt.\nDetta kommer att rapporteras till administratörerna för %(homeserver)s. Administratörerna kommer inte kunna läsa krypterat innehåll i rummet.",
|
||||
"report_to_homeserver": "Det här rummet är dedikerat till olagligt eller stötande innehåll eller så har moderatorerna misslyckats med att moderera olagligt eller stötande innehåll.\nDet här kommer att rapporteras till %(homeserver)ss administratörer.",
|
||||
"nature_other": "Annan orsak. Beskriv problemet tack.\nDetta kommer att rapporteras till rumsmoderatorerna.",
|
||||
"nature": "Välj en art och beskriv vad som gör detta meddelande kränkande.",
|
||||
"disagree": "Håll inte med",
|
||||
"toxic_behaviour": "Stötande beteende",
|
||||
"illegal_content": "Olagligt innehåll",
|
||||
"spam_or_propaganda": "Spam eller propaganda",
|
||||
"report_entire_room": "Rapportera hela rummet",
|
||||
"report_content_to_homeserver": "Rapportera innehåll till din hemserveradministratör",
|
||||
"description": "Att rapportera det här meddelandet kommer att skicka dess unika 'händelse-ID' till administratören för din hemserver. Om meddelanden i det här rummet är krypterade kommer din hemserveradministratör inte att kunna läsa meddelandetexten eller se några filer eller bilder."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -95,7 +95,6 @@
|
|||
"Add Email Address": "மின்னஞ்சல் முகவரியை சேர்க்கவும்",
|
||||
"Click the button below to confirm adding this email address.": "இந்த மின்னஞ்சல் முகவரியை சேர்ப்பதை உறுதிப்படுத்த கீழே உள்ள பொத்தானை அழுத்தவும்.",
|
||||
"Confirm adding email": "மின்னஞ்சலை சேர்ப்பதை உறுதிப்படுத்தவும்",
|
||||
"Single Sign On": "ஒற்றை உள்நுழைவு",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "உங்கள் அடையாளத்தை நிரூபிக்க ஒற்றை உள்நுழைவைப் பயன்படுத்தி இந்த மின்னஞ்சல் முகவரியை சேர்ப்பதை உறுதிப்படுத்தவும்.",
|
||||
"Use Single Sign On to continue": "தொடர ஒற்றை உள்நுழைவைப் பயன்படுத்தவும்",
|
||||
"The user you called is busy.": "நீங்கள் அழைத்தவர் தற்போது வேளையாக இருக்கிறார்.",
|
||||
|
@ -161,5 +160,8 @@
|
|||
},
|
||||
"labs": {
|
||||
"group_rooms": "அறைகள்"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "ஒற்றை உள்நுழைவு"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -94,7 +94,6 @@
|
|||
"This phone number is already in use": "ఈ ఫోన్ నంబర్ ఇప్పటికే వాడుకం లో ఉంది",
|
||||
"Failed to verify email address: make sure you clicked the link in the email": "ఇమెయిల్ అడ్రస్ ని నిరూపించలేక పోయాము. ఈమెయిల్ లో వచ్చిన లింక్ ని నొక్కారా",
|
||||
"Confirm adding email": "ఈమెయిల్ చేర్చుటకు ధ్రువీకరించు",
|
||||
"Single Sign On": "సింగిల్ సైన్ ఆన్",
|
||||
"common": {
|
||||
"error": "లోపం",
|
||||
"mute": "నిశబ్ధము",
|
||||
|
@ -154,5 +153,8 @@
|
|||
"Advanced": "ఆధునిక",
|
||||
"voip": {
|
||||
"call_failed": "కాల్ విఫలమయింది"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "సింగిల్ సైన్ ఆన్"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -211,7 +211,6 @@
|
|||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "ยืนยันการเพิ่มหมายเลขโทรศัพท์นี้โดยใช้การลงชื่อเพียงครั้งเดียวเพื่อพิสูจน์ตัวตนของคุณ.",
|
||||
"Click the button below to confirm adding this email address.": "คลิกปุ่มด้านล่างเพื่อยืนยันการเพิ่มที่อยู่อีเมลนี้.",
|
||||
"Confirm adding email": "ยืนยันการเพิ่มอีเมล",
|
||||
"Single Sign On": "ลงชื่อเข้าใช้เพียงครั้งเดียว",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "ยืนยันการเพิ่มที่อยู่อีเมลนี้โดยใช้การลงชื่อเพียงครั้งเดียวเพื่อพิสูจน์ตัวตนของคุณ.",
|
||||
"Use Single Sign On to continue": "ใช้การลงชื่อเพียงครั้งเดียวเพื่อดำเนินการต่อ",
|
||||
"You most likely do not want to reset your event index store": "คุณมักไม่ต้องการรีเซ็ตที่เก็บดัชนีเหตุการณ์ของคุณ",
|
||||
|
@ -527,5 +526,8 @@
|
|||
"labs": {
|
||||
"group_profile": "โปรไฟล์",
|
||||
"group_rooms": "ห้องสนทนา"
|
||||
},
|
||||
"auth": {
|
||||
"sso": "ลงชื่อเข้าใช้เพียงครั้งเดียว"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -297,8 +297,6 @@
|
|||
"Are you sure you want to sign out?": "Oturumdan çıkmak istediğinize emin misiniz?",
|
||||
"Your homeserver doesn't seem to support this feature.": "Ana sunucunuz bu özelliği desteklemiyor gözüküyor.",
|
||||
"Message edits": "Mesajları düzenle",
|
||||
"Please fill why you're reporting.": "Lütfen neden raporlama yaptığınızı belirtin.",
|
||||
"Report Content to Your Homeserver Administrator": "Ana Sunucu Yöneticinize İçeriği Raporlayın",
|
||||
"Room Settings - %(roomName)s": "Oda Ayarları - %(roomName)s",
|
||||
"Failed to upgrade room": "Oda güncelleme başarısız",
|
||||
"The room upgrade could not be completed": "Oda güncelleme tamamlanamadı",
|
||||
|
@ -552,11 +550,6 @@
|
|||
"Do you want to join %(roomName)s?": "%(roomName)s odasına katılmak ister misin?",
|
||||
"<userName/> invited you": "<userName/> davet etti",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s odasında önizleme yapılamaz. Katılmak ister misin?",
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s okunmamış mesaj.",
|
||||
"one": "1 okunmamış mesaj."
|
||||
},
|
||||
"Unread messages.": "Okunmamış mesajlar.",
|
||||
"This room has already been upgraded.": "Bu ıda zaten güncellenmiş.",
|
||||
"Only room administrators will see this warning": "Bu uyarıyı sadece oda yöneticileri görür",
|
||||
"Failed to connect to integration manager": "Entegrasyon yöneticisine bağlanma başarısız",
|
||||
|
@ -721,7 +714,6 @@
|
|||
"Waiting for %(displayName)s to verify…": "%(displayName)s ın doğrulaması için bekleniyor…",
|
||||
"Other users may not trust it": "Diğer kullanıcılar güvenmeyebilirler",
|
||||
"Later": "Sonra",
|
||||
"Show less": "Daha az göster",
|
||||
"Show more": "Daha fazla göster",
|
||||
"in memory": "hafızada",
|
||||
"in secret storage": "sır deposunda",
|
||||
|
@ -791,10 +783,6 @@
|
|||
"Encrypted by an unverified session": "Doğrulanmamış bir oturum tarafından şifrelenmiş",
|
||||
"Encrypted by a deleted session": "Silinen bir oturumla şifrelenmiş",
|
||||
"Reject & Ignore user": "Kullanıcı Reddet & Yoksay",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 okunmamış bahis.",
|
||||
"other": "anmalar dahil okunmayan %(count)s mesaj."
|
||||
},
|
||||
"Could not revoke the invite. The server may be experiencing a temporary problem or you do not have sufficient permissions to revoke the invite.": "Davet geri çekilemiyor. Sunucu geçici bir problem yaşıyor olabilir yada daveti geri çekmek için gerekli izinlere sahip değilsin.",
|
||||
"Mark all as read": "Tümünü okunmuş olarak işaretle",
|
||||
"Incoming Verification Request": "Gelen Doğrulama İsteği",
|
||||
|
@ -1229,7 +1217,6 @@
|
|||
"The call was answered on another device.": "Arama başka bir cihazda cevaplandı.",
|
||||
"The call could not be established": "Arama yapılamadı",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Kimliğinizi doğrulamak için Tek Seferlik Oturum Açma özelliğini kullanarak bu telefon numarasını eklemeyi onaylayın.",
|
||||
"Single Sign On": "Tek seferlik oturum aç",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Kimliğinizi doğrulamak için Tek Seferlik Oturum Açma özelliğini kullanarak bu e-posta adresini eklemeyi onaylayın.",
|
||||
"Use Single Sign On to continue": "Devam etmek için tek seferlik oturum açın",
|
||||
"Change notification settings": "Bildirim ayarlarını değiştir",
|
||||
|
@ -1284,13 +1271,6 @@
|
|||
"with state key %(stateKey)s": "%(stateKey)s durum anahtarı ile",
|
||||
"Verify all users in a room to ensure it's secure.": "Güvenli olduğuna emin olmak için odadaki tüm kullanıcıları onaylayın.",
|
||||
"No recent messages by %(user)s found": "%(user)s kullanıcısın hiç yeni ileti yok",
|
||||
"Show %(count)s more": {
|
||||
"one": "%(count)s adet daha fazla göster",
|
||||
"other": "%(count)s adet daha fazla göster"
|
||||
},
|
||||
"Activity": "Aktivite",
|
||||
"Show previews of messages": "Mesajların ön izlemelerini göster",
|
||||
"Show rooms with unread messages first": "Önce okunmamış mesajları olan odaları göster",
|
||||
"Topic: %(topic)s (<a>edit</a>)": "Konu: %(topic)s (<a>düzenle</a>)",
|
||||
"We've sent you an email to verify your address. Please follow the instructions there and then click the button below.": "Onaylamanız için size e-posta gönderdik. Lütfen yönergeleri takip edin ve sonra aşağıdaki butona tıklayın.",
|
||||
"Room settings": "Oda ayarları",
|
||||
|
@ -1302,14 +1282,10 @@
|
|||
"Room Autocomplete": "Otomatik Oda Tamamlama",
|
||||
"Notification Autocomplete": "Otomatik Bildirim Tamamlama",
|
||||
"Widgets": "Widgetlar",
|
||||
"Notification options": "Bildirim ayarları",
|
||||
"Looks good!": "İyi görünüyor!",
|
||||
"Security Key": "Güvenlik anahtarı",
|
||||
"List options": "Liste seçenekleri",
|
||||
"Sort by": "Göre sırala",
|
||||
"All settings": "Tüm ayarlar",
|
||||
"Switch theme": "Temayı değiştir",
|
||||
"QR Code": "Kare kod (QR)",
|
||||
"Keys restored": "Anahtarlar geri yüklendi",
|
||||
"Submit logs": "Günlükleri kaydet",
|
||||
"New line": "Yeni satır",
|
||||
|
@ -1326,7 +1302,6 @@
|
|||
"Calls": "Aramalar",
|
||||
"Feedback": "Geri bildirim",
|
||||
"Accepting…": "Kabul ediliyor…",
|
||||
"A-Z": "A-Z",
|
||||
"Room avatar": "Oda avatarı",
|
||||
"Room options": "Oda ayarları",
|
||||
"Forget Room": "Odayı unut",
|
||||
|
@ -1351,8 +1326,6 @@
|
|||
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "Bu oturum <b> anahtarlarınızı yedeklemiyor</b>, ama zaten geri yükleyebileceğiniz ve ileride ekleyebileceğiniz bir yedeğiniz var.",
|
||||
"Converts the room to a DM": "Odayı birebir mesajlaşmaya dönüştürür",
|
||||
"Converts the DM to a room": "Birebir mesajlaşmayı odaya çevirir",
|
||||
"Continue with %(provider)s": "%(provider)s ile devam et",
|
||||
"Sign in with single sign-on": "Çoklu oturum açma ile giriş yap",
|
||||
"Enter a server name": "Sunucu adı girin",
|
||||
"Can't find this server or its room list": "Sunucuda veya oda listesinde bulunamıyor",
|
||||
"Add a new server": "Yeni sunucu ekle",
|
||||
|
@ -1549,7 +1522,8 @@
|
|||
"secure_backup": "Güvenli yedekleme",
|
||||
"cross_signing": "Çapraz-imzalama",
|
||||
"identity_server": "Kimlik sunucusu",
|
||||
"integration_manager": "Bütünleştirme Yöneticisi"
|
||||
"integration_manager": "Bütünleştirme Yöneticisi",
|
||||
"qr_code": "Kare kod (QR)"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Devam Et",
|
||||
|
@ -1631,7 +1605,16 @@
|
|||
"send_report": "Rapor gönder"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Kullanıcı menüsü"
|
||||
"user_menu": "Kullanıcı menüsü",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 okunmamış bahis.",
|
||||
"other": "anmalar dahil okunmayan %(count)s mesaj."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s okunmamış mesaj.",
|
||||
"one": "1 okunmamış mesaj."
|
||||
},
|
||||
"unread_messages": "Okunmamış mesajlar."
|
||||
},
|
||||
"labs": {
|
||||
"latex_maths": "Mesajlarda LaTex maths işleyin",
|
||||
|
@ -1774,7 +1757,8 @@
|
|||
"category_other": "Diğer"
|
||||
},
|
||||
"export_chat": {
|
||||
"text": "Düz Metin"
|
||||
"text": "Düz Metin",
|
||||
"messages": "Mesajlar"
|
||||
},
|
||||
"create_room": {
|
||||
"title_public_room": "Halka açık bir oda oluşturun",
|
||||
|
@ -2082,7 +2066,6 @@
|
|||
"already_in_call": "Bu kişi zaten çağrıda",
|
||||
"already_in_call_person": "Bu kişi ile halihazırda çağrıdasınız."
|
||||
},
|
||||
"Messages": "Mesajlar",
|
||||
"Other": "Diğer",
|
||||
"Advanced": "Gelişmiş",
|
||||
"room_settings": {
|
||||
|
@ -2137,5 +2120,28 @@
|
|||
"fireworks_message": "Havai fişek gönderir",
|
||||
"snowfall_description": "Mesajı kartopu ile gönderir",
|
||||
"snowfall_message": "Kartopu gönderir"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "%(provider)s ile devam et",
|
||||
"sign_in_with_sso": "Çoklu oturum açma ile giriş yap",
|
||||
"sso": "Tek seferlik oturum aç"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Önce okunmamış mesajları olan odaları göster",
|
||||
"show_previews": "Mesajların ön izlemelerini göster",
|
||||
"sort_by": "Göre sırala",
|
||||
"sort_by_activity": "Aktivite",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "Liste seçenekleri",
|
||||
"show_n_more": {
|
||||
"one": "%(count)s adet daha fazla göster",
|
||||
"other": "%(count)s adet daha fazla göster"
|
||||
},
|
||||
"show_less": "Daha az göster",
|
||||
"notification_options": "Bildirim ayarları"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Lütfen neden raporlama yaptığınızı belirtin.",
|
||||
"report_content_to_homeserver": "Ana Sunucu Yöneticinize İçeriği Raporlayın"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,7 +53,6 @@
|
|||
"Copied!": "inɣel!",
|
||||
"Home": "Asnubeg",
|
||||
"Search…": "Arezzu…",
|
||||
"A-Z": "A-Ẓ",
|
||||
"Re-join": "als-lkem",
|
||||
"%(duration)sd": "%(duration)sas",
|
||||
"None": "Walu",
|
||||
|
@ -150,7 +149,6 @@
|
|||
"category_actions": "Tugawin",
|
||||
"category_other": "Yaḍn"
|
||||
},
|
||||
"Messages": "Tuzinin",
|
||||
"devtools": {
|
||||
"category_other": "Yaḍn"
|
||||
},
|
||||
|
@ -160,5 +158,11 @@
|
|||
},
|
||||
"labs": {
|
||||
"group_profile": "Ifres"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Tuzinin"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_by_alphabet": "A-Ẓ"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -224,7 +224,6 @@
|
|||
"This room is used for important messages from the Homeserver, so you cannot leave it.": "Ця кімната використовується для важливих повідомлень з домашнього сервера, тож ви не можете з неї вийти.",
|
||||
"Use Single Sign On to continue": "Використати єдиний вхід, щоб продовжити",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Підтвердьте додавання цієї адреси е-пошти скориставшись єдиним входом, щоб довести вашу справжність.",
|
||||
"Single Sign On": "Єдиний вхід",
|
||||
"Confirm adding email": "Підтвердити додавання е-пошти",
|
||||
"Click the button below to confirm adding this email address.": "Клацніть на кнопку внизу, щоб підтвердити додавання цієї адреси е-пошти.",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Підтвердьте додавання цього телефонного номера за допомогоє єдиного входу, щоб довести вашу справжність.",
|
||||
|
@ -471,7 +470,6 @@
|
|||
"Globe": "Глобус",
|
||||
"This bridge was provisioned by <user />.": "Цей міст було забезпечено <user />.",
|
||||
"This bridge is managed by <user />.": "Цей міст керується <user />.",
|
||||
"Show less": "Згорнути",
|
||||
"Show more": "Розгорнути",
|
||||
"Santa": "Св. Миколай",
|
||||
"Gift": "Подарунок",
|
||||
|
@ -503,29 +501,12 @@
|
|||
"Unable to revoke sharing for email address": "Не вдалось відкликати оприлюднювання адреси е-пошти",
|
||||
"Unable to revoke sharing for phone number": "Не вдалось відкликати оприлюднювання телефонного номеру",
|
||||
"Filter room members": "Відфільтрувати учасників кімнати",
|
||||
"Show rooms with unread messages first": "Спочатку показувати кімнати з непрочитаними повідомленнями",
|
||||
"Show previews of messages": "Показувати попередній перегляд повідомлень",
|
||||
"Sort by": "Упорядкувати за",
|
||||
"Activity": "Активністю",
|
||||
"A-Z": "А-Я",
|
||||
"List options": "Параметри переліку",
|
||||
"Notification options": "Параметри сповіщень",
|
||||
"Forget Room": "Забути кімнату",
|
||||
"Favourited": "В улюблених",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "%(count)s непрочитаних повідомлень включно зі згадками.",
|
||||
"one": "1 непрочитана згадка."
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s непрочитаних повідомлень.",
|
||||
"one": "1 непрочитане повідомлення."
|
||||
},
|
||||
"Unread messages.": "Непрочитані повідомлення.",
|
||||
"This room is public": "Ця кімната загальнодоступна",
|
||||
"Failed to revoke invite": "Не вдалось відкликати запрошення",
|
||||
"Could not revoke the invite. The server may be experiencing a temporary problem or you do not have sufficient permissions to revoke the invite.": "Не вдалось відкликати запрошення. Сервер може мати тимчасові збої або у вас немає достатніх дозволів щоб відкликати запрошення.",
|
||||
"Revoke invite": "Відкликати запрошення",
|
||||
"Report Content to Your Homeserver Administrator": "Поскаржитися на вміст адміністратору вашого домашнього сервера",
|
||||
"Failed to upgrade room": "Не вдалось поліпшити кімнату",
|
||||
"The room upgrade could not be completed": "Поліпшення кімнати не може бути завершене",
|
||||
"Upgrade this room to version %(version)s": "Поліпшити цю кімнату до версії %(version)s",
|
||||
|
@ -582,7 +563,6 @@
|
|||
"Verify this device to mark it as trusted. Trusting this device gives you and other users extra peace of mind when using end-to-end encrypted messages.": "Звірте цей пристрій щоб позначити його довіреним. Довіряння цьому пристрою додає вам та іншим користувачам спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.",
|
||||
"I don't want my encrypted messages": "Мені не потрібні мої зашифровані повідомлення",
|
||||
"You'll lose access to your encrypted messages": "Ви втратите доступ до ваших зашифрованих повідомлень",
|
||||
"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.": "Зі скаргою на це повідомлення буде надіслано його унікальний «ID події» адміністраторові вашого домашнього сервера. Якщо повідомлення у цій кімнаті зашифровані, то адміністратор не зможе побачити ані тексту повідомлень, ані жодних файлів чи зображень.",
|
||||
"Some session data, including encrypted message keys, is missing. Sign out and sign in to fix this, restoring keys from backup.": "Бракує деяких даних сеансу, включно з ключами зашифрованих повідомлень. Вийдіть та зайдіть знову щоб виправити цю проблему, відновлюючи ключі з дубля.",
|
||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Було виявлено дані зі старої версії %(brand)s. Це призведе до збоїння наскрізного шифрування у старій версії. Наскрізно зашифровані повідомлення, що обмінювані нещодавно, під час використання старої версії, можуть бути недешифровними у цій версії. Це може призвести до збоїв повідомлень, обмінюваних також і з цією версією. У разі виникнення проблем вийдіть з програми та зайдіть знову. Задля збереження історії повідомлень експортуйте та переімпортуйте ваші ключі.",
|
||||
"Show hidden events in timeline": "Показувати приховані події у часоряді",
|
||||
|
@ -593,10 +573,6 @@
|
|||
"Emoji Autocomplete": "Самодоповнення емодзі",
|
||||
"The integration manager is offline or it cannot reach your homeserver.": "Менеджер інтеграцій не під'єднаний або не може зв'язатися з вашим домашнім сервером.",
|
||||
"Profile picture": "Зображення профілю",
|
||||
"Show %(count)s more": {
|
||||
"other": "Показати ще %(count)s",
|
||||
"one": "Показати ще %(count)s"
|
||||
},
|
||||
"Failed to connect to integration manager": "Не вдалось з'єднатись з менеджером інтеграцій",
|
||||
"Show image": "Показати зображення",
|
||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Ви ігноруєте цього користувача, тож його повідомлення приховано. <a>Все одно показати.</a>",
|
||||
|
@ -999,9 +975,6 @@
|
|||
"Original event source": "Оригінальний початковий код",
|
||||
"View source": "Переглянути код",
|
||||
"Report": "Поскаржитися",
|
||||
"Report the entire room": "Поскаржитися на всю кімнату",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Те, що пише цей користувач, неправильно.\nПро це буде повідомлено модераторам кімнати.",
|
||||
"Please fill why you're reporting.": "Будь ласка, вкажіть, чому ви скаржитеся.",
|
||||
"Share %(name)s": "Поділитися %(name)s",
|
||||
"Share User": "Поділитися користувачем",
|
||||
"Share content": "Поділитися вмістом",
|
||||
|
@ -1012,7 +985,6 @@
|
|||
"Share invite link": "Надіслати запрошувальне посилання",
|
||||
"Invite to %(spaceName)s": "Запросити до %(spaceName)s",
|
||||
"Share your public space": "Поділитися своїм загальнодоступним простором",
|
||||
"Join the beta": "Долучитися до бета-тестування",
|
||||
"Some suggestions may be hidden for privacy.": "Деякі пропозиції можуть бути сховані для приватності.",
|
||||
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Захистіться від втрати доступу до зашифрованих повідомлень і даних створенням резервної копії ключів шифрування на своєму сервері.",
|
||||
"You may contact me if you have any follow up questions": "Можете зв’язатися зі мною, якщо у вас виникнуть додаткові запитання",
|
||||
|
@ -1146,8 +1118,6 @@
|
|||
"And %(count)s more...": {
|
||||
"other": "І ще %(count)s..."
|
||||
},
|
||||
"Sign in with single sign-on": "Увійти за допомогою єдиного входу",
|
||||
"Continue with %(provider)s": "Продовжити з %(provider)s",
|
||||
"Join millions for free on the largest public server": "Приєднуйтесь безплатно до мільйонів інших на найбільшому загальнодоступному сервері",
|
||||
"This address is already in use": "Ця адреса вже використовується",
|
||||
"This address is available to use": "Ця адреса доступна",
|
||||
|
@ -1156,11 +1126,9 @@
|
|||
"e.g. my-room": "наприклад, моя-кімната",
|
||||
"Room address": "Адреса кімнати",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Не вдалося завантажити подію, на яку було надано відповідь, її або не існує, або у вас немає дозволу на її перегляд.",
|
||||
"QR Code": "QR-код",
|
||||
"Spaces": "Простори",
|
||||
"Custom level": "Власний рівень",
|
||||
"To leave the beta, visit your settings.": "Щоб вийти з бета-тестування, перейдіть до налаштувань.",
|
||||
"Leave the beta": "Вийти з бета-тестування",
|
||||
"Upload a file": "Вивантажити файл",
|
||||
"New line": "Новий рядок",
|
||||
"Autocomplete": "Автозаповнення",
|
||||
|
@ -1315,9 +1283,6 @@
|
|||
"Cancel All": "Скасувати все",
|
||||
"Settings - %(spaceName)s": "Налаштування — %(spaceName)s",
|
||||
"Send Logs": "Надіслати журнали",
|
||||
"Spam or propaganda": "Спам чи пропаганда",
|
||||
"Illegal Content": "Протиправний вміст",
|
||||
"Toxic Behaviour": "Токсична поведінка",
|
||||
"Email (optional)": "Е-пошта (необов'язково)",
|
||||
"Search spaces": "Пошук просторів",
|
||||
"Select spaces": "Вибрати простори",
|
||||
|
@ -1366,7 +1331,6 @@
|
|||
"Sending": "Надсилання",
|
||||
"Comment": "Коментар",
|
||||
"MB": "МБ",
|
||||
"Number of messages": "Кількість повідомлень",
|
||||
"In reply to <a>this message</a>": "У відповідь на <a>це повідомлення</a>",
|
||||
"Widget added by": "Вджет додано",
|
||||
"Decrypt %(text)s": "Розшифрувати %(text)s",
|
||||
|
@ -1594,7 +1558,6 @@
|
|||
"Chat": "Бесіда",
|
||||
"Start new chat": "Почати бесіду",
|
||||
"Invite to space": "Запросити до простору",
|
||||
"You do not have permissions to invite people to this space": "Ви не маєте дозволу запрошувати людей до цього простору",
|
||||
"Add people": "Додати людей",
|
||||
"Join public room": "Приєднатись до загальнодоступної кімнати",
|
||||
"%(spaceName)s menu": "%(spaceName)s — меню",
|
||||
|
@ -1639,25 +1602,12 @@
|
|||
"Select the roles required to change various parts of the space": "Оберіть ролі, потрібні для зміни різних частин простору",
|
||||
"To join a space you'll need an invite.": "Щоб приєднатись до простору, вам потрібне запрошення.",
|
||||
"You are about to leave <spaceName/>.": "Ви збираєтеся вийти з <spaceName/>.",
|
||||
"Enter 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 МБ",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Кількість повідомлень може бути лише числом між %(min)s і %(max)s",
|
||||
"Export Successful": "Експорт успішний",
|
||||
"The export was cancelled successfully": "Експорт успішно скасований",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Експорт успішний. Знайдіть його в своїй теці Завантаження.",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Точно припинити експорт ваших даних? Вам доведеться почати заново.",
|
||||
"The email address doesn't appear to be valid.": "Хибна адреса е-пошти.",
|
||||
"Shows all threads from current room": "Показує всі гілки цієї кімнати",
|
||||
"All threads": "Усі гілки",
|
||||
"My threads": "Мої гілки",
|
||||
"What projects are your team working on?": "Над якими проєктами працює ваша команда?",
|
||||
"Enter your Security Phrase or <button>use your Security Key</button> to continue.": "Введіть свою фразу безпеки чи <button>скористайтесь ключем безпеки</button> для продовження.",
|
||||
"Include Attachments": "Включити вкладення",
|
||||
"Size Limit": "Обмеження розміру",
|
||||
"Format": "Формат",
|
||||
"Select from the options below to export chats from your timeline": "Налаштуйте параметри внизу, щоб експортувати бесіди вашої стрічки",
|
||||
"Export Chat": "Експортувати бесіду",
|
||||
"Exporting your data": "Експортування ваших даних",
|
||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||
"one": "Оновлення простору...",
|
||||
"other": "Оновлення просторів... (%(progress)s із %(count)s)"
|
||||
|
@ -1953,8 +1903,6 @@
|
|||
"Suggested Rooms": "Пропоновані кімнати",
|
||||
"Historical": "Історичні",
|
||||
"Explore public rooms": "Переглянути загальнодоступні кімнати",
|
||||
"You do not have permissions to add rooms to this space": "У вас немає дозволу додавати кімнати до цього простору",
|
||||
"You do not have permissions to create new rooms in this space": "У вас немає дозволу створювати кімнати в цьому просторі",
|
||||
"No recently visited rooms": "Немає недавно відвіданих кімнат",
|
||||
"Recently viewed": "Недавно переглянуті",
|
||||
"Close preview": "Закрити попередній перегляд",
|
||||
|
@ -2054,11 +2002,6 @@
|
|||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Зазвичай це впливає лише на деталі опрацювання кімнати сервером. Якщо проблема полягає саме в %(brand)s, просимо повідомити нас про ваду.",
|
||||
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Поліпшення кімнати — серйозна операція. Її зазвичай радять, коли кімната нестабільна через вади, брак функціоналу чи вразливості безпеки.",
|
||||
"Would you like to leave the rooms in this space?": "Бажаєте вийти з кімнат у цьому просторі?",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Оберіть природу й опишіть, що образливого в цьому повідомленні.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Будь-яка інша причина. Будь ласка, опишіть проблему.\nМодератори кімнати отримають вашу скаргу.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Кімната присвячена протиправному чи токсичному вмісту або модератори не модерують такий вміст.\nАдміністрація %(homeserver)s отримає скаргу на це. Адміністрація НЕ зможе прочитати зашифрований вміст цієї кімнати.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Користувач засмічує кімнату рекламою, посиланнями на рекламу чи пропагандою.\nМодератори кімнати отримають скаргу на це.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Користувач порушує закон, наприклад зливає особисті дані людей чи погрожує насиллям.\nМодератори кімнати отримають скаргу на це й зможуть передати її правоохоронцям.",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Зауважте, якщо ви не додасте пошту й забудете пароль, то можете <b>назавжди втратити доступ до свого облікового запису</b>.",
|
||||
"Continuing without email": "Продовження без е-пошти",
|
||||
"Data on this screen is shared with %(widgetDomain)s": "Дані на цьому екрані надсилаються до %(widgetDomain)s",
|
||||
|
@ -2208,7 +2151,6 @@
|
|||
"Search for rooms or people": "Пошук кімнат або людей",
|
||||
"Failed to load list of rooms.": "Не вдалося отримати список кімнат.",
|
||||
"This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "Це групує ваші бесіди з учасниками цього простору. Вимкніть, щоб сховати ці бесіди з вашого огляду %(spaceName)s.",
|
||||
"Disagree": "Відхилити",
|
||||
"Jump to room search": "Перейти до пошуку кімнат",
|
||||
"Search (must be enabled)": "Пошук (повинен бути увімкненим)",
|
||||
"Message downloading sleep time(ms)": "Перерва між завантаженням повідомлень (у мс)",
|
||||
|
@ -2310,9 +2252,6 @@
|
|||
"Poll": "Опитування",
|
||||
"Voice Message": "Голосове повідомлення",
|
||||
"Hide stickers": "Сховати наліпки",
|
||||
"You do not have permissions to add spaces to this space": "У вас немає дозволу додавати простори до цього простору",
|
||||
"Click for more info": "Натисніть, щоб дізнатися більше",
|
||||
"This is a beta feature": "Це бета-можливість",
|
||||
"Use <arrows/> to scroll": "Використовуйте <arrows/>, щоб прокручувати",
|
||||
"Feedback sent! Thanks, we appreciate it!": "Відгук надісланий! Дякуємо, візьмемо до уваги!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s і %(space2Name)s",
|
||||
|
@ -2334,7 +2273,6 @@
|
|||
"Open thread": "Відкрити гілку",
|
||||
"No virtual room for this room": "Ця кімната не має віртуальної кімнати",
|
||||
"Switches to this room's virtual room, if it has one": "Переходить до віртуальної кімнати, якщо ваша кімната її має",
|
||||
"Export Cancelled": "Експорт скасовано",
|
||||
"What location type do you want to share?": "Який вид місцеперебування поширити?",
|
||||
"Drop a Pin": "Маркер на карті",
|
||||
"My live location": "Змінне місцеперебування наживо",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"one": "%(count)s осіб приєдналися",
|
||||
"other": "%(count)s людей приєдналися"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "Виберіть, чи хочете ви сховати всі поточні та майбутні повідомлення від цього користувача.",
|
||||
"Ignore user": "Нехтувати користувача",
|
||||
"View related event": "Переглянути пов'язані події",
|
||||
"Read receipts": "Звіти про прочитання",
|
||||
"Failed to set direct message tag": "Не вдалося встановити мітку особистого повідомлення",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "Деактивація вашого облікового запису — це незворотна дія, будьте обережні!",
|
||||
"Un-maximise": "Розгорнути",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Коли ви вийдете, ці ключі буде видалено з цього пристрою, і ви не зможете читати зашифровані повідомлення, якщо у вас немає ключів для них на інших пристроях або не створено їх резервну копію на сервері.",
|
||||
"Joining the beta will reload %(brand)s.": "Перехід до бета-тестування перезавантажить %(brand)s.",
|
||||
"Leaving the beta will reload %(brand)s.": "Вихід з бета-тестування перезавантажить %(brand)s.",
|
||||
"Video rooms are a beta feature": "Відеокімнати — це бета-функція",
|
||||
"Enable hardware acceleration": "Увімкнути апаратне прискорення",
|
||||
"Remove search filter for %(filter)s": "Вилучити фільтр пошуку для %(filter)s",
|
||||
|
@ -2555,13 +2489,6 @@
|
|||
"Saved Items": "Збережені елементи",
|
||||
"Choose a locale": "Вибрати локаль",
|
||||
"Spell check": "Перевірка правопису",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play і логотип Google Play є товарними знаками Google LLC.",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® і логотип Apple® є товарними знаками Apple Inc.",
|
||||
"Get it on F-Droid": "Отримати з F-Droid",
|
||||
"Get it on Google Play": "Отримати з Google Play",
|
||||
"Download on the App Store": "Завантажити з App Store",
|
||||
"Download %(brand)s Desktop": "Завантажити %(brand)s для компʼютера",
|
||||
"Download %(brand)s": "Завантажити %(brand)s",
|
||||
"We're creating a room with %(names)s": "Ми створюємо кімнату з %(names)s",
|
||||
"Your server doesn't support disabling sending read receipts.": "Ваш сервер не підтримує вимкнення надсилання сповіщень про прочитання.",
|
||||
"Share your activity and status with others.": "Діліться своєю активністю та станом з іншими.",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s і %(user2)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s або %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s або %(recoveryFile)s",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s або %(appLinks)s",
|
||||
"Proxy URL": "URL-адреса проксі-сервера",
|
||||
"Proxy URL (optional)": "URL-адреса проксі-сервера (необов'язково)",
|
||||
"To disable you will need to log out and back in, use with caution!": "Для вимкнення потрібно буде вийти з системи та зайти знову, користуйтеся з обережністю!",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "Виконайте вказівки, надіслані на <b>%(email)s</b>",
|
||||
"Sign out of all devices": "Вийти на всіх пристроях",
|
||||
"Confirm new password": "Підтвердити новий пароль",
|
||||
"Reset your password": "Скиньте свій пароль",
|
||||
"Reset password": "Скинути пароль",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "Забагато спроб за короткий час. Повторіть спробу за %(timeout)s.",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "Забагато спроб за короткий час. Зачекайте трохи, перш ніж повторити спробу.",
|
||||
"Thread root ID: %(threadRootId)s": "ID кореневої гілки: %(threadRootId)s",
|
||||
|
@ -2832,10 +2756,7 @@
|
|||
"Loading live location…": "Завантаження місця перебування наживо…",
|
||||
"Fetching keys from server…": "Отримання ключів із сервера…",
|
||||
"Checking…": "Перевірка…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "Кімната присвячена протиправному чи токсичному вмісту або модератори не модерують такий вміст.\n Адміністрація %(homeserver)s отримає скаргу на це.",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "Користувач поводиться токсично, наприклад ображає інших користувачів, поширює дорослий вміст у сімейній кімнаті чи ще якось порушує правила цієї кімнати.\nМодератори кімнати отримають скаргу на це.",
|
||||
"Waiting for partner to confirm…": "Очікування підтвердження партнером…",
|
||||
"Processing…": "Обробка…",
|
||||
"Adding…": "Додавання…",
|
||||
"Write something…": "Напишіть щось…",
|
||||
"Rejecting invite…": "Відхилення запрошення…",
|
||||
|
@ -2929,7 +2850,6 @@
|
|||
"Error while changing password: %(error)s": "Помилка зміни пароля: %(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Неможливо запросити користувача електронною поштою без сервера ідентифікації. Ви можете під'єднатися до нього в розділі «Налаштування».",
|
||||
"Failed to download source media, no source url was found": "Не вдалося завантажити початковий медіафайл, не знайдено url джерела",
|
||||
"Unable to create room with moderation bot": "Не вдалося створити кімнату за допомогою бота-модератора",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "Після того, як запрошені користувачі приєднаються до %(brand)s, ви зможете спілкуватися в бесіді, а кімната буде наскрізно зашифрована",
|
||||
"Waiting for users to join %(brand)s": "Очікування приєднання користувача до %(brand)s",
|
||||
"You do not have permission to invite users": "У вас немає дозволу запрошувати користувачів",
|
||||
|
@ -3087,7 +3007,8 @@
|
|||
"secure_backup": "Безпечне резервне копіювання",
|
||||
"cross_signing": "Перехресне підписування",
|
||||
"identity_server": "Сервер ідентифікації",
|
||||
"integration_manager": "Менеджер інтеграцій"
|
||||
"integration_manager": "Менеджер інтеграцій",
|
||||
"qr_code": "QR-код"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Продовжити",
|
||||
|
@ -3190,7 +3111,16 @@
|
|||
"clear": "Очистити"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Користувацьке меню"
|
||||
"user_menu": "Користувацьке меню",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "%(count)s непрочитаних повідомлень включно зі згадками.",
|
||||
"one": "1 непрочитана згадка."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s непрочитаних повідомлень.",
|
||||
"one": "1 непрочитане повідомлення."
|
||||
},
|
||||
"unread_messages": "Непрочитані повідомлення."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Відеокімнати",
|
||||
|
@ -3245,7 +3175,13 @@
|
|||
"group_themes": "Теми",
|
||||
"group_encryption": "Шифрування",
|
||||
"group_experimental": "Експериментально",
|
||||
"group_developer": "Розробка"
|
||||
"group_developer": "Розробка",
|
||||
"beta_feature": "Це бета-можливість",
|
||||
"click_for_info": "Натисніть, щоб дізнатися більше",
|
||||
"leave_beta_reload": "Вихід з бета-тестування перезавантажить %(brand)s.",
|
||||
"join_beta_reload": "Перехід до бета-тестування перезавантажить %(brand)s.",
|
||||
"leave_beta": "Вийти з бета-тестування",
|
||||
"join_beta": "Долучитися до бета-тестування"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Домівка",
|
||||
|
@ -3376,7 +3312,15 @@
|
|||
"enable_notifications": "Увімкніть сповіщення",
|
||||
"download_app_description": "Не пропускайте нічого, взявши з собою %(brand)s",
|
||||
"download_app_action": "Завантажуйте застосунки",
|
||||
"download_app": "Завантажити %(brand)s"
|
||||
"download_app": "Завантажити %(brand)s",
|
||||
"download_brand": "Завантажити %(brand)s",
|
||||
"download_brand_desktop": "Завантажити %(brand)s для компʼютера",
|
||||
"qr_or_app_links": "%(qrCode)s або %(appLinks)s",
|
||||
"download_app_store": "Завантажити з App Store",
|
||||
"download_google_play": "Отримати з Google Play",
|
||||
"download_f_droid": "Отримати з F-Droid",
|
||||
"apple_trademarks": "App Store® і логотип Apple® є товарними знаками Apple Inc.",
|
||||
"google_trademarks": "Google Play і логотип Google Play є товарними знаками Google LLC."
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Показувати нещодавно переглянуті кімнати над списком кімнат",
|
||||
|
@ -3595,7 +3539,24 @@
|
|||
"error_fetching_file": "Збій отримання файлу",
|
||||
"file_attached": "Файл прикріплено",
|
||||
"fetching_events": "Отримання подій…",
|
||||
"creating_output": "Створення виводу…"
|
||||
"creating_output": "Створення виводу…",
|
||||
"processing": "Обробка…",
|
||||
"enter_number_between_min_max": "Введіть число між %(min)s і %(max)s",
|
||||
"size_limit_min_max": "Розмір може бути лише числом між %(min)s МБ і %(max)s МБ",
|
||||
"num_messages_min_max": "Кількість повідомлень може бути лише числом між %(min)s і %(max)s",
|
||||
"num_messages": "Кількість повідомлень",
|
||||
"cancelled": "Експорт скасовано",
|
||||
"cancelled_detail": "Експорт успішно скасований",
|
||||
"successful": "Експорт успішний",
|
||||
"successful_detail": "Експорт успішний. Знайдіть його в своїй теці Завантаження.",
|
||||
"confirm_stop": "Точно припинити експорт ваших даних? Вам доведеться почати заново.",
|
||||
"exporting_your_data": "Експортування ваших даних",
|
||||
"title": "Експортувати бесіду",
|
||||
"select_option": "Налаштуйте параметри внизу, щоб експортувати бесіди вашої стрічки",
|
||||
"format": "Формат",
|
||||
"messages": "Повідомлення",
|
||||
"size_limit": "Обмеження розміру",
|
||||
"include_attachments": "Включити вкладення"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Створити відеокімнату",
|
||||
|
@ -4009,7 +3970,6 @@
|
|||
"unsupported": "Виклики не підтримуються",
|
||||
"unsupported_browser": "Цей браузер не підтримує викликів."
|
||||
},
|
||||
"Messages": "Повідомлення",
|
||||
"Other": "Інше",
|
||||
"Advanced": "Подробиці",
|
||||
"room_settings": {
|
||||
|
@ -4097,5 +4057,53 @@
|
|||
"spaceinvaders_message": "надсилає тему про космічних загарбників",
|
||||
"hearts_description": "Надсилає це повідомлення з сердечками",
|
||||
"hearts_message": "надсилає сердечка"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Ви не маєте дозволу запрошувати людей до цього простору",
|
||||
"error_no_permission_create_room": "У вас немає дозволу створювати кімнати в цьому просторі",
|
||||
"error_no_permission_add_room": "У вас немає дозволу додавати кімнати до цього простору",
|
||||
"error_no_permission_add_space": "У вас немає дозволу додавати простори до цього простору"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Продовжити з %(provider)s",
|
||||
"sign_in_with_sso": "Увійти за допомогою єдиного входу",
|
||||
"sso": "Єдиний вхід",
|
||||
"reset_password_action": "Скинути пароль",
|
||||
"reset_password_title": "Скиньте свій пароль"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Спочатку показувати кімнати з непрочитаними повідомленнями",
|
||||
"show_previews": "Показувати попередній перегляд повідомлень",
|
||||
"sort_by": "Упорядкувати за",
|
||||
"sort_by_activity": "Активністю",
|
||||
"sort_by_alphabet": "А-Я",
|
||||
"sublist_options": "Параметри переліку",
|
||||
"show_n_more": {
|
||||
"other": "Показати ще %(count)s",
|
||||
"one": "Показати ще %(count)s"
|
||||
},
|
||||
"show_less": "Згорнути",
|
||||
"notification_options": "Параметри сповіщень"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Будь ласка, вкажіть, чому ви скаржитеся.",
|
||||
"unable_create_room_moderation_bot": "Не вдалося створити кімнату за допомогою бота-модератора",
|
||||
"ignore_user": "Нехтувати користувача",
|
||||
"hide_messages_from_user": "Виберіть, чи хочете ви сховати всі поточні та майбутні повідомлення від цього користувача.",
|
||||
"nature_disagreement": "Те, що пише цей користувач, неправильно.\nПро це буде повідомлено модераторам кімнати.",
|
||||
"nature_toxic": "Користувач поводиться токсично, наприклад ображає інших користувачів, поширює дорослий вміст у сімейній кімнаті чи ще якось порушує правила цієї кімнати.\nМодератори кімнати отримають скаргу на це.",
|
||||
"nature_illegal": "Користувач порушує закон, наприклад зливає особисті дані людей чи погрожує насиллям.\nМодератори кімнати отримають скаргу на це й зможуть передати її правоохоронцям.",
|
||||
"nature_spam": "Користувач засмічує кімнату рекламою, посиланнями на рекламу чи пропагандою.\nМодератори кімнати отримають скаргу на це.",
|
||||
"report_to_homeserver_encrypted": "Кімната присвячена протиправному чи токсичному вмісту або модератори не модерують такий вміст.\nАдміністрація %(homeserver)s отримає скаргу на це. Адміністрація НЕ зможе прочитати зашифрований вміст цієї кімнати.",
|
||||
"report_to_homeserver": "Кімната присвячена протиправному чи токсичному вмісту або модератори не модерують такий вміст.\n Адміністрація %(homeserver)s отримає скаргу на це.",
|
||||
"nature_other": "Будь-яка інша причина. Будь ласка, опишіть проблему.\nМодератори кімнати отримають вашу скаргу.",
|
||||
"nature": "Оберіть природу й опишіть, що образливого в цьому повідомленні.",
|
||||
"disagree": "Відхилити",
|
||||
"toxic_behaviour": "Токсична поведінка",
|
||||
"illegal_content": "Протиправний вміст",
|
||||
"spam_or_propaganda": "Спам чи пропаганда",
|
||||
"report_entire_room": "Поскаржитися на всю кімнату",
|
||||
"report_content_to_homeserver": "Поскаржитися на вміст адміністратору вашого домашнього сервера",
|
||||
"description": "Зі скаргою на це повідомлення буде надіслано його унікальний «ID події» адміністраторові вашого домашнього сервера. Якщо повідомлення у цій кімнаті зашифровані, то адміністратор не зможе побачити ані тексту повідомлень, ані жодних файлів чи зображень."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -152,7 +152,6 @@
|
|||
"The call could not be established": "Không thể khởi tạo cuộc gọi",
|
||||
"The user you called is busy.": "Người dùng bạn vừa gọi hiện đang bận.",
|
||||
"User Busy": "Người dùng bận",
|
||||
"Single Sign On": "Đăng Nhập Một Lần",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Xác nhận việc thêm địa chỉ thư điện tử này bằng cách sử dụng Đăng Nhập Một Lần để chứng minh danh tính của bạn.",
|
||||
"Use Single Sign On to continue": "Sử dụng Đăng Nhập Một Lần để tiếp tục",
|
||||
"Toggle microphone mute": "Chuyển đổi chế độ tắt tiếng micrô",
|
||||
|
@ -376,8 +375,6 @@
|
|||
"powered by Matrix": "cung cấp bởi Matrix",
|
||||
"This room is public": "Phòng này là công cộng",
|
||||
"Avatar": "Avatar",
|
||||
"Join the beta": "Tham gia phiên bản beta",
|
||||
"Leave the beta": "Rời khỏi bản beta",
|
||||
"Move right": "Đi sang phải",
|
||||
"Move left": "Di chuyển sang trái",
|
||||
"Revoke permissions": "Thu hồi quyền",
|
||||
|
@ -476,15 +473,6 @@
|
|||
"The room upgrade could not be completed": "Không thể hoàn thành việc nâng cấp phòng",
|
||||
"Failed to upgrade room": "Không nâng cấp được phòng",
|
||||
"Room Settings - %(roomName)s": "Cài đặt Phòng - %(roomName)s",
|
||||
"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.": "Báo cáo thông báo này sẽ gửi 'ID sự kiện' duy nhất của nó đến quản trị viên của máy chủ của bạn. Nếu tin nhắn trong phòng này được mã hóa, quản trị viên máy chủ của bạn sẽ không thể đọc nội dung tin nhắn hoặc xem bất kỳ tệp hoặc hình ảnh nào.",
|
||||
"Report Content to Your Homeserver Administrator": "Báo cáo Nội dung cho Quản trị viên Máy chủ Trang chủ của Bạn",
|
||||
"Report the entire room": "Báo cáo toàn bộ phòng",
|
||||
"Spam or propaganda": "Thư rác hoặc tuyên truyền",
|
||||
"Illegal Content": "Nội dung bất hợp pháp",
|
||||
"Toxic Behaviour": "Hành vi độc hại",
|
||||
"Disagree": "Không đồng ý",
|
||||
"Please pick a nature and describe what makes this message abusive.": "Vui lòng chọn một bản chất và mô tả điều gì khiến thông báo này bị lạm dụng.",
|
||||
"Please fill why you're reporting.": "Vui lòng điền lý do bạn đang báo cáo.",
|
||||
"Email (optional)": "Địa chỉ thư điện tử (tùy chọn)",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Lưu ý là nếu bạn không thêm địa chỉ thư điện tử và quên mật khẩu, bạn có thể <b>vĩnh viễn mất quyền truy cập vào tài khoản của mình</b>.",
|
||||
"Continuing without email": "Tiếp tục mà không cần địa chỉ thư điện tử",
|
||||
|
@ -594,13 +582,6 @@
|
|||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "MẸO NHỎ: Nếu bạn là người đầu tiên gặp lỗi, vui lòng gửi <debugLogsLink>nhật ký gỡ lỗi</debugLogsLink> để giúp chúng tôi xử lý vấn đề.",
|
||||
"Comment": "Bình luận",
|
||||
"Feedback sent": "Đã gửi phản hồi",
|
||||
"Include Attachments": "Bao gồm các đính kèm",
|
||||
"Size Limit": "Giới hạn kích thước",
|
||||
"Format": "Định dạng",
|
||||
"Select from the options below to export chats from your timeline": "Chọn các tùy chọn bên dưới để xuất các cuộc trò chuyện từ dòng thời gian của bạn",
|
||||
"Export Chat": "Xuất trò chuyện",
|
||||
"Exporting your data": "Đang xuất dữ liệu của bạn",
|
||||
"Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Bạn có chắc muốn dừng việc xuất dữ liệu của bạn? Nếu bạn làm, bạn sẽ phải bắt đầu lại.",
|
||||
"It's just you at the moment, it will be even better with others.": "Chỉ là bạn hiện tại, sẽ càng tốt hơn với người khác.",
|
||||
"Share %(name)s": "Chia sẻ %(name)s",
|
||||
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Chọn phòng hoặc cuộc trò chuyện để thêm. Đây chỉ là một space cho bạn, không ai sẽ được thông báo. Bạn có thể bổ sung thêm sau.",
|
||||
|
@ -637,14 +618,7 @@
|
|||
"Your message wasn't sent because this homeserver has exceeded a resource limit. Please <a>contact your service administrator</a> to continue using the service.": "Thư của bạn không gửi được vì máy chủ(homeserver) đã vượt quá giới hạn tài nguyên. Vui lòng <a>liên hệ với quản trị viên</a> để tiếp tục sử dụng dịch vụ.",
|
||||
"Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please <a>contact your service administrator</a> to continue using the service.": "Tin nhắn của bạn không được gửi vì máy chủ này đã đạt đến Giới hạn Người dùng Hoạt động Hàng tháng. Vui lòng <a>liên hệ với quản trị viên dịch vụ của bạn</a> để tiếp tục sử dụng dịch vụ.",
|
||||
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "Bạn không thể gửi bất kỳ tin nhắn nào cho đến khi bạn xem xét và đồng ý với các <consentLink>điều khoản và điều kiện của chúng tôi</consentLink>.",
|
||||
"Your export was successful. Find it in your Downloads folder.": "Việc xuất của bạn đã thành công. Tìm nó ở trong thư mục Tải xuống của bạn.",
|
||||
"The export was cancelled successfully": "Xuất đã được hủy thành công",
|
||||
"Export Successful": "Xuất thành công",
|
||||
"MB": "MB",
|
||||
"Number of messages": "Số lượng tin nhắn",
|
||||
"Number of messages can only be a number between %(min)s and %(max)s": "Số tin nhắn chỉ có thể là một số ở giữa %(min)s và %(max)s",
|
||||
"Size can only be a number between %(min)s MB and %(max)s MB": "Kích thước chỉ có thể là một số ở giữa %(min)s và %(max)s MB",
|
||||
"Enter a number between %(min)s and %(max)s": "Nhập một số ở giữa %(min)s và %(max)s",
|
||||
"An error has occurred.": "Một lỗi đã xảy ra.",
|
||||
"Server did not return valid authentication information.": "Máy chủ không trả về thông tin xác thực hợp lệ.",
|
||||
"Server did not require any authentication": "Máy chủ không yêu cầu bất kỳ xác thực nào",
|
||||
|
@ -733,8 +707,6 @@
|
|||
"And %(count)s more...": {
|
||||
"other": "Và %(count)s thêm…"
|
||||
},
|
||||
"Sign in with single sign-on": "Đăng nhập bằng đăng nhập một lần",
|
||||
"Continue with %(provider)s": "Tiếp tục với %(provider)s",
|
||||
"Join millions for free on the largest public server": "Tham gia hàng triệu máy chủ công cộng miễn phí lớn nhất",
|
||||
"Server Options": "Tùy chọn máy chủ",
|
||||
"This address is already in use": "Địa chỉ này đã được sử dụng",
|
||||
|
@ -746,7 +718,6 @@
|
|||
"In reply to <a>this message</a>": "Để trả lời <a>tin nhắn này</a>",
|
||||
"<a>In reply to</a> <pill>": "Trả lời <a>In reply to</a> <pill>",
|
||||
"Unable to load event that was replied to, it either does not exist or you do not have permission to view it.": "Không thể tải sự kiện đã được trả lời, sự kiện đó không tồn tại hoặc bạn không có quyền xem sự kiện đó.",
|
||||
"QR Code": "Mã QR",
|
||||
"Custom level": "Cấp độ tùy chọn",
|
||||
"Power level": "Cấp độ sức mạnh",
|
||||
"Use your Security Key to continue.": "Sử dụng Khóa bảo mật của bạn để tiếp tục.",
|
||||
|
@ -1013,33 +984,12 @@
|
|||
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Phòng này đang chạy phiên bản phòng <roomVersion /> mà máy chủ này đã đánh dấu là không ổn định <i>unstable</i>.",
|
||||
"This room has already been upgraded.": "Phòng này đã được nâng cấp.",
|
||||
"Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Việc nâng cấp phòng này sẽ đóng phiên bản hiện tại của phòng và tạo một phòng được nâng cấp có cùng tên.",
|
||||
"Unread messages.": "Các tin nhắn chưa đọc.",
|
||||
"%(count)s unread messages.": {
|
||||
"one": "1 tin chưa đọc.",
|
||||
"other": "%(count)s tin nhắn chưa đọc."
|
||||
},
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"one": "1 đề cập chưa đọc.",
|
||||
"other": "%(count)s tin nhắn chưa đọc bao gồm các đề cập."
|
||||
},
|
||||
"Room options": "Tùy chọn phòng",
|
||||
"Low Priority": "Ưu tiên thấp",
|
||||
"Favourite": "Yêu thích",
|
||||
"Favourited": "Được yêu thích",
|
||||
"Forget Room": "Quên phòng",
|
||||
"Notification options": "Tùy chọn thông báo",
|
||||
"All messages": "Tất cả tin nhắn",
|
||||
"Show less": "Hiện ít hơn",
|
||||
"Show %(count)s more": {
|
||||
"one": "Hiển thị %(count)s thêm",
|
||||
"other": "Hiển thị %(count)s thêm"
|
||||
},
|
||||
"List options": "Liệt kê các tùy chọn",
|
||||
"A-Z": "AZ",
|
||||
"Activity": "Hoạt động",
|
||||
"Sort by": "Sắp xếp theo",
|
||||
"Show previews of messages": "Hiển thị bản xem trước của tin nhắn",
|
||||
"Show rooms with unread messages first": "Hiển thị các phòng có tin nhắn chưa đọc trước",
|
||||
"%(roomName)s is not accessible at this time.": "Không thể truy cập %(roomName)s vào lúc này.",
|
||||
"%(roomName)s does not exist.": "%(roomName)s không tồn tại.",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "Không thể xem trước %(roomName)s. Bạn có muốn tham gia nó không?",
|
||||
|
@ -1071,9 +1021,7 @@
|
|||
"Historical": "Lịch sử",
|
||||
"Low priority": "Ưu tiên thấp",
|
||||
"Explore public rooms": "Khám phá các phòng chung",
|
||||
"You do not have permissions to add rooms to this space": "Bạn không có quyền thêm phòng vào space này",
|
||||
"Add existing room": "Thêm phòng hiện có",
|
||||
"You do not have permissions to create new rooms in this space": "Bạn không có quyền tạo phòng mới trong space này",
|
||||
"Create new room": "Tạo phòng mới",
|
||||
"Add room": "Thêm phòng",
|
||||
"Rooms": "Phòng",
|
||||
|
@ -2088,11 +2036,6 @@
|
|||
},
|
||||
"We call the places where you can host your account 'homeservers'.": "Chúng tôi gọi những nơi bạn có thể lưu trữ tài khoản của bạn là 'homeserver'.",
|
||||
"Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.org là homeserver công cộng lớn nhất, vì vậy nó là nơi lý tưởng cho nhiều người.",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "Bất kỳ lý do nào khác. Xin hãy mô tả vấn đề.\nĐiều này sẽ được báo cáo cho người điều hành phòng.",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "Phòng này được dành riêng cho nội dung bất hợp pháp hoặc độc hại hay điều phối viên không kiểm soát nội dung bất hợp pháp hoặc độc hại.\nĐiều này sẽ được báo cáo cho quản trị viên của %(homeserver)s. Các quản trị viên sẽ KHÔNG thể đọc nội dung được mã hóa của phòng này.",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "Người dùng này đang spam phòng bằng quảng cáo, liên kết đến quảng cáo hoặc tuyên truyền.\nĐiều này sẽ được báo cáo cho người điều hành phòng.",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "Người dùng này đang hiển thị hành vi bất hợp pháp, ví dụ bằng cách doxing mọi người hoặc đe dọa bạo lực.\nĐiều này sẽ được báo cáo cho những người điều hành phòng có thể leo thang điều này cho các cơ quan pháp lý.",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "Những gì người dùng này đang viết là sai.\nĐiều này sẽ được báo cáo tới các moderator của phòng.",
|
||||
"Spaces you know that contain this space": "Các space bạn biết có chứa space này",
|
||||
"If you can't see who you're looking for, send them your invite link below.": "Nếu bạn không thể thấy người bạn đang tìm, hãy gửi cho họ liên kết mời của bạn bên dưới.",
|
||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "Chúng tôi có thể liên hệ với bạn để cho phép bạn theo dõi hoặc thử nghiệm những tính năng sắp tới",
|
||||
|
@ -2137,7 +2080,6 @@
|
|||
},
|
||||
"Join public room": "Tham gia vào phòng công cộng",
|
||||
"Add people": "Thêm người",
|
||||
"You do not have permissions to invite people to this space": "Bạn không có quyền mời mọi người vào space này",
|
||||
"Invite to space": "Mời vào space",
|
||||
"Start new chat": "Bắt đầu trò chuyện mới",
|
||||
"Recently viewed": "Được xem gần đây",
|
||||
|
@ -2368,7 +2310,6 @@
|
|||
"one": "%(count)s người đã tham gia",
|
||||
"other": "%(count)s người đã tham gia"
|
||||
},
|
||||
"Download %(brand)s": "Tải xuống %(brand)s",
|
||||
"Sorry — this call is currently full": "Xin lỗi — cuộc gọi này đang đầy",
|
||||
"Can currently only be enabled via config.json": "Hiện chỉ có thể bật bằng tập tin cấu hình config.json",
|
||||
"No identity access token found": "Không tìm thấy mã thông báo danh tính",
|
||||
|
@ -2482,11 +2423,8 @@
|
|||
"Confirm new password": "Xác nhận mật khẩu mới",
|
||||
"Syncing…": "Đang đồng bộ…",
|
||||
"Signing In…": "Đăng nhập…",
|
||||
"Reset your password": "Đặt lại mật khẩu của bạn",
|
||||
"Reset password": "Đặt lại mật khẩu",
|
||||
"%(members)s and more": "%(members)s và nhiều người khác",
|
||||
"Read receipts": "Thông báo đã đọc",
|
||||
"Export Cancelled": "Đã hủy trích xuất",
|
||||
"Hide stickers": "Ẩn thẻ (sticker)",
|
||||
"This room or space does not exist.": "Phòng này hay space này không tồn tại.",
|
||||
"Messages in this chat will be end-to-end encrypted.": "Tin nhắn trong phòng này sẽ được mã hóa đầu-cuối.",
|
||||
|
@ -2529,7 +2467,6 @@
|
|||
"Unban from room": "Bỏ cấm trong phòng",
|
||||
"Ban from room": "Cấm khỏi phòng",
|
||||
"Invites by email can only be sent one at a time": "Chỉ có thể gửi một thư điện tử mời mỗi lần",
|
||||
"Ignore user": "Tảng lờ người dùng",
|
||||
"Please only proceed if you're sure you've lost all of your other devices and your Security Key.": "Chỉ tiếp tục nếu bạn chắc chắn là mình đã mất mọi thiết bị khác và khóa bảo mật.",
|
||||
"Room info": "Thông tin phòng",
|
||||
"Wrong email address?": "Địa chỉ thư điện tử sai?",
|
||||
|
@ -2537,7 +2474,6 @@
|
|||
"You do not have permission to invite users": "Bạn không có quyền mời người khác",
|
||||
"Remove them from everything I'm able to": "Loại bỏ khỏi mọi phòng mà tôi có thể",
|
||||
"Hide formatting": "Ẩn định dạng",
|
||||
"Processing…": "Đang xử lý…",
|
||||
"The beginning of the room": "Bắt đầu phòng",
|
||||
"Poll": "Bỏ phiếu",
|
||||
"Sign in instead": "Đăng nhập",
|
||||
|
@ -2546,7 +2482,6 @@
|
|||
"Pinned": "Đã ghim",
|
||||
"Open room": "Mở phòng",
|
||||
"Send email": "Gửi thư",
|
||||
"You do not have permissions to add spaces to this space": "Bạn không có quyền để thêm space khác vào trong space này",
|
||||
"Did not receive it?": "Không nhận được nó?",
|
||||
"Remove from room": "Loại bỏ khỏi phòng",
|
||||
"You can't see earlier messages": "Bạn khồng thể thấy các tin nhắn trước",
|
||||
|
@ -2640,15 +2575,11 @@
|
|||
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s không được cho phép để tìm vị trí của bạn. Vui lòng cho phép truy cập vị trí trong cài đặt trình duyệt của bạn.",
|
||||
"Developer command: Discards the current outbound group session and sets up new Olm sessions": "Lệnh cho nhà phát triển: Hủy phiên ra ngoài hiện tại của nhóm và thiết lập phiên Olm mới",
|
||||
"All messages and invites from this user will be hidden. Are you sure you want to ignore them?": "Toàn bộ tin nhắn và lời mời từ người dùng này sẽ bị ẩn. Bạn có muốn tảng lờ người dùng?",
|
||||
"Unable to create room with moderation bot": "Không thể tạo phòng với bot điều phối",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Khi bạn đăng xuất, các khóa sẽ được xóa khỏi thiết bị này, tức là bạn không thể đọc các tin nhắn được mã hóa trừ khi bạn có khóa cho chúng trong thiết bị khác, hoặc sao lưu chúng lên máy chủ.",
|
||||
"<b>Warning</b>: upgrading a room will <i>not automatically migrate room members to the new version of the room.</i> We'll post a link to the new room in the old version of the room - room members will have to click this link to join the new room.": "<b>Cảnh báo</b>: nâng cấp một phòng sẽ <i>không tự động đưa thành viên sang phiên bản mới của phòng.</i> Chúng tôi đăng liên kết tới phòng mới trong phòng cũ - thành viên sẽ cần nhấp vào liên kết để tham gia phòng mới.",
|
||||
"Join %(roomAddress)s": "Tham gia %(roomAddress)s",
|
||||
"Start DM anyway": "Cứ tạo phòng nhắn tin riêng",
|
||||
" in <strong>%(room)s</strong>": " ở <strong>%(room)s</strong>",
|
||||
"This is a beta feature": "Đây là một tính năng thử nghiệm beta",
|
||||
"Leaving the beta will reload %(brand)s.": "Rời khỏi thử nghiệm sẽ tải lại %(brand)s.",
|
||||
"Joining the beta will reload %(brand)s.": "Tham gia thử nghiệm sẽ tải lại %(brand)s.",
|
||||
"Search for": "Tìm",
|
||||
"Use <arrows/> to scroll": "Dùng <arrows/> để cuộn",
|
||||
"Start DM anyway and never warn me again": "Cứ tạo phòng nhắn tin riêng và đừng cảnh báo tôi nữa",
|
||||
|
@ -2674,7 +2605,6 @@
|
|||
"Upload custom sound": "Tải lên âm thanh tùy chỉnh",
|
||||
"Proxy URL": "Đường dẫn máy chủ ủy nhiệm (proxy)",
|
||||
"Start a group chat": "Bắt đầu cuộc trò chuyện nhóm",
|
||||
"Click for more info": "Nhấp để có thêm thông tin",
|
||||
"Copy invite link": "Sao chép liên kết mời",
|
||||
"Video rooms are a beta feature": "Phòng truyền hình là tính năng thử nghiệm",
|
||||
"Interactively verify by emoji": "Xác thực có tương tác bằng biểu tượng cảm xúc",
|
||||
|
@ -2716,7 +2646,6 @@
|
|||
"You will no longer be able to log in": "Bạn sẽ không thể đăng nhập lại",
|
||||
"Open poll": "Bỏ phiếu công khai",
|
||||
"Location": "Vị trí",
|
||||
"Download on the App Store": "Tải trên App Store",
|
||||
"Your device ID": "Định danh thiết bị của bạn",
|
||||
"Un-maximise": "Hủy thu nhỏ",
|
||||
"This address does not point at this room": "Địa chỉ này không trỏ đến phòng này",
|
||||
|
@ -2730,7 +2659,6 @@
|
|||
"Message pending moderation": "Tin nhắn chờ duyệt",
|
||||
"Message in %(room)s": "Tin nhắn trong %(room)s",
|
||||
"Message from %(user)s": "Tin nhắn từ %(user)s",
|
||||
"Get it on F-Droid": "Tải trên F-Droid",
|
||||
"Unable to load map": "Không thể tải bản đồ",
|
||||
"Poll type": "Hình thức bỏ phiếu",
|
||||
"Show: Matrix rooms": "Hiện: Phòng Matrix",
|
||||
|
@ -2746,7 +2674,6 @@
|
|||
"Edit poll": "Chỉnh sửa bỏ phiếu",
|
||||
"Declining…": "Đang từ chối…",
|
||||
"Image view": "Xem ảnh",
|
||||
"Get it on Google Play": "Tải trên CH Play",
|
||||
"People cannot join unless access is granted.": "Người khác không thể tham gia khi chưa có phép.",
|
||||
"Something went wrong.": "Đã xảy ra lỗi.",
|
||||
"User cannot be invited until they are unbanned": "Người dùng không thể được mời nếu không được bỏ cấm",
|
||||
|
@ -2851,7 +2778,8 @@
|
|||
"secure_backup": "Sao lưu bảo mật",
|
||||
"cross_signing": "Xác thực chéo",
|
||||
"identity_server": "Máy chủ định danh",
|
||||
"integration_manager": "Quản lý tích hợp"
|
||||
"integration_manager": "Quản lý tích hợp",
|
||||
"qr_code": "Mã QR"
|
||||
},
|
||||
"action": {
|
||||
"continue": "Tiếp tục",
|
||||
|
@ -2954,7 +2882,16 @@
|
|||
"clear": "Xoá"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "Menu người dùng"
|
||||
"user_menu": "Menu người dùng",
|
||||
"n_unread_messages_mentions": {
|
||||
"one": "1 đề cập chưa đọc.",
|
||||
"other": "%(count)s tin nhắn chưa đọc bao gồm các đề cập."
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"one": "1 tin chưa đọc.",
|
||||
"other": "%(count)s tin nhắn chưa đọc."
|
||||
},
|
||||
"unread_messages": "Các tin nhắn chưa đọc."
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "Phòng video",
|
||||
|
@ -3007,7 +2944,13 @@
|
|||
"group_themes": "Chủ đề",
|
||||
"group_encryption": "Mã hóa",
|
||||
"group_experimental": "Thử nghiệm",
|
||||
"group_developer": "Nhà phát triển"
|
||||
"group_developer": "Nhà phát triển",
|
||||
"beta_feature": "Đây là một tính năng thử nghiệm beta",
|
||||
"click_for_info": "Nhấp để có thêm thông tin",
|
||||
"leave_beta_reload": "Rời khỏi thử nghiệm sẽ tải lại %(brand)s.",
|
||||
"join_beta_reload": "Tham gia thử nghiệm sẽ tải lại %(brand)s.",
|
||||
"leave_beta": "Rời khỏi bản beta",
|
||||
"join_beta": "Tham gia phiên bản beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "Nhà",
|
||||
|
@ -3132,7 +3075,11 @@
|
|||
"enable_notifications": "Bật thông báo",
|
||||
"download_app_description": "Không bỏ lỡ gì bằng cách mang %(brand)s bên bạn",
|
||||
"download_app_action": "Tải ứng dụng",
|
||||
"download_app": "Tải xuống %(brand)s"
|
||||
"download_app": "Tải xuống %(brand)s",
|
||||
"download_brand": "Tải xuống %(brand)s",
|
||||
"download_app_store": "Tải trên App Store",
|
||||
"download_google_play": "Tải trên CH Play",
|
||||
"download_f_droid": "Tải trên F-Droid"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "Hiển thị shortcuts cho các phòng đã xem gần đây phía trên danh sách phòng",
|
||||
|
@ -3311,7 +3258,24 @@
|
|||
"error_fetching_file": "Lỗi lấy tệp",
|
||||
"file_attached": "Tệp được đính kèm",
|
||||
"fetching_events": "Đang tìm các sự kiện…",
|
||||
"creating_output": "Đang tạo kết quả…"
|
||||
"creating_output": "Đang tạo kết quả…",
|
||||
"processing": "Đang xử lý…",
|
||||
"enter_number_between_min_max": "Nhập một số ở giữa %(min)s và %(max)s",
|
||||
"size_limit_min_max": "Kích thước chỉ có thể là một số ở giữa %(min)s và %(max)s MB",
|
||||
"num_messages_min_max": "Số tin nhắn chỉ có thể là một số ở giữa %(min)s và %(max)s",
|
||||
"num_messages": "Số lượng tin nhắn",
|
||||
"cancelled": "Đã hủy trích xuất",
|
||||
"cancelled_detail": "Xuất đã được hủy thành công",
|
||||
"successful": "Xuất thành công",
|
||||
"successful_detail": "Việc xuất của bạn đã thành công. Tìm nó ở trong thư mục Tải xuống của bạn.",
|
||||
"confirm_stop": "Bạn có chắc muốn dừng việc xuất dữ liệu của bạn? Nếu bạn làm, bạn sẽ phải bắt đầu lại.",
|
||||
"exporting_your_data": "Đang xuất dữ liệu của bạn",
|
||||
"title": "Xuất trò chuyện",
|
||||
"select_option": "Chọn các tùy chọn bên dưới để xuất các cuộc trò chuyện từ dòng thời gian của bạn",
|
||||
"format": "Định dạng",
|
||||
"messages": "Tin nhắn",
|
||||
"size_limit": "Giới hạn kích thước",
|
||||
"include_attachments": "Bao gồm các đính kèm"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "Tạo một phòng truyền hình",
|
||||
|
@ -3713,7 +3677,6 @@
|
|||
"unsupported": "Không hỗ trợ tính năng cuộc gọi",
|
||||
"unsupported_browser": "Bạn không thể gọi trong trình duyệt này."
|
||||
},
|
||||
"Messages": "Tin nhắn",
|
||||
"Other": "Khác",
|
||||
"Advanced": "Nâng cao",
|
||||
"room_settings": {
|
||||
|
@ -3800,5 +3763,50 @@
|
|||
"spaceinvaders_message": "gửi những kẻ xâm lược space",
|
||||
"hearts_description": "Gửi tin nhắn cùng với thả tim",
|
||||
"hearts_message": "thả tim"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "Bạn không có quyền mời mọi người vào space này",
|
||||
"error_no_permission_create_room": "Bạn không có quyền tạo phòng mới trong space này",
|
||||
"error_no_permission_add_room": "Bạn không có quyền thêm phòng vào space này",
|
||||
"error_no_permission_add_space": "Bạn không có quyền để thêm space khác vào trong space này"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "Tiếp tục với %(provider)s",
|
||||
"sign_in_with_sso": "Đăng nhập bằng đăng nhập một lần",
|
||||
"sso": "Đăng Nhập Một Lần",
|
||||
"reset_password_action": "Đặt lại mật khẩu",
|
||||
"reset_password_title": "Đặt lại mật khẩu của bạn"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "Hiển thị các phòng có tin nhắn chưa đọc trước",
|
||||
"show_previews": "Hiển thị bản xem trước của tin nhắn",
|
||||
"sort_by": "Sắp xếp theo",
|
||||
"sort_by_activity": "Hoạt động",
|
||||
"sort_by_alphabet": "AZ",
|
||||
"sublist_options": "Liệt kê các tùy chọn",
|
||||
"show_n_more": {
|
||||
"one": "Hiển thị %(count)s thêm",
|
||||
"other": "Hiển thị %(count)s thêm"
|
||||
},
|
||||
"show_less": "Hiện ít hơn",
|
||||
"notification_options": "Tùy chọn thông báo"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "Vui lòng điền lý do bạn đang báo cáo.",
|
||||
"unable_create_room_moderation_bot": "Không thể tạo phòng với bot điều phối",
|
||||
"ignore_user": "Tảng lờ người dùng",
|
||||
"nature_disagreement": "Những gì người dùng này đang viết là sai.\nĐiều này sẽ được báo cáo tới các moderator của phòng.",
|
||||
"nature_illegal": "Người dùng này đang hiển thị hành vi bất hợp pháp, ví dụ bằng cách doxing mọi người hoặc đe dọa bạo lực.\nĐiều này sẽ được báo cáo cho những người điều hành phòng có thể leo thang điều này cho các cơ quan pháp lý.",
|
||||
"nature_spam": "Người dùng này đang spam phòng bằng quảng cáo, liên kết đến quảng cáo hoặc tuyên truyền.\nĐiều này sẽ được báo cáo cho người điều hành phòng.",
|
||||
"report_to_homeserver_encrypted": "Phòng này được dành riêng cho nội dung bất hợp pháp hoặc độc hại hay điều phối viên không kiểm soát nội dung bất hợp pháp hoặc độc hại.\nĐiều này sẽ được báo cáo cho quản trị viên của %(homeserver)s. Các quản trị viên sẽ KHÔNG thể đọc nội dung được mã hóa của phòng này.",
|
||||
"nature_other": "Bất kỳ lý do nào khác. Xin hãy mô tả vấn đề.\nĐiều này sẽ được báo cáo cho người điều hành phòng.",
|
||||
"nature": "Vui lòng chọn một bản chất và mô tả điều gì khiến thông báo này bị lạm dụng.",
|
||||
"disagree": "Không đồng ý",
|
||||
"toxic_behaviour": "Hành vi độc hại",
|
||||
"illegal_content": "Nội dung bất hợp pháp",
|
||||
"spam_or_propaganda": "Thư rác hoặc tuyên truyền",
|
||||
"report_entire_room": "Báo cáo toàn bộ phòng",
|
||||
"report_content_to_homeserver": "Báo cáo Nội dung cho Quản trị viên Máy chủ Trang chủ của Bạn",
|
||||
"description": "Báo cáo thông báo này sẽ gửi 'ID sự kiện' duy nhất của nó đến quản trị viên của máy chủ của bạn. Nếu tin nhắn trong phòng này được mã hóa, quản trị viên máy chủ của bạn sẽ không thể đọc nội dung tin nhắn hoặc xem bất kỳ tệp hoặc hình ảnh nào."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -607,7 +607,6 @@
|
|||
"Failed to perform homeserver discovery": "Ountdekkn van thuusserver is mislukt",
|
||||
"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>.": "Je ku geen verbindienge moakn me de thuusserver via HTTP wanneer dat der een HTTPS-URL in je browserbalk stoat. Gebruukt HTTPS of <a>schoakelt ounveilige scripts in</a>.",
|
||||
"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.": "Geen verbindienge met de thuusserver - controleer je verbindienge, zorgt dervoorn dan ’t <a>SSL-certificoat van de thuusserver</a> vertrouwd is en dat der geen browserextensies verzoekn blokkeern.",
|
||||
"Sign in with single sign-on": "Anmeldn met enkele anmeldienge",
|
||||
"Create account": "Account anmoakn",
|
||||
"Registration has been disabled on this homeserver.": "Registroasje is uutgeschoakeld ip deze thuusserver.",
|
||||
"Unable to query for supported registration methods.": "Kostege d’oundersteunde registroasjemethodes nie ipvroagn.",
|
||||
|
@ -1071,7 +1070,6 @@
|
|||
"video_call": "Video-iproep",
|
||||
"call_failed": "Iproep mislukt"
|
||||
},
|
||||
"Messages": "Berichtn",
|
||||
"Other": "Overige",
|
||||
"Advanced": "Geavanceerd",
|
||||
"room_settings": {
|
||||
|
@ -1097,5 +1095,11 @@
|
|||
"complete_title": "Geverifieerd!",
|
||||
"complete_description": "J’èt deze gebruuker geverifieerd."
|
||||
}
|
||||
},
|
||||
"auth": {
|
||||
"sign_in_with_sso": "Anmeldn met enkele anmeldienge"
|
||||
},
|
||||
"export_chat": {
|
||||
"messages": "Berichtn"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -542,7 +542,6 @@
|
|||
"General failure": "一般错误",
|
||||
"This homeserver does not support login using email address.": "此家服务器不支持使用电子邮箱地址登录。",
|
||||
"Failed to perform homeserver discovery": "无法执行家服务器搜索",
|
||||
"Sign in with single sign-on": "使用单点登录",
|
||||
"Create account": "创建账户",
|
||||
"Registration has been disabled on this homeserver.": "此家服务器已禁止注册。",
|
||||
"Unable to query for supported registration methods.": "无法查询支持的注册方法。",
|
||||
|
@ -585,7 +584,6 @@
|
|||
"Your %(brand)s is misconfigured": "你的 %(brand)s 配置有错误",
|
||||
"Use Single Sign On to continue": "使用单点登录继续",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "使用单一登入证明你的身份,以确认添加此电子邮件地址。",
|
||||
"Single Sign On": "单点登录",
|
||||
"Confirm adding email": "确认添加邮箱",
|
||||
"Click the button below to confirm adding this email address.": "点击下面的按钮,以确认添加此邮箱地址。",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "通过单点登录以证明你的身份,并确认添加此电话号码。",
|
||||
|
@ -656,7 +654,6 @@
|
|||
"Lock": "锁",
|
||||
"Your server isn't responding to some <a>requests</a>.": "你的服务器没有响应一些<a>请求</a>。",
|
||||
"Accept <policyLink /> to continue:": "接受 <policyLink /> 以继续:",
|
||||
"Show less": "显示更少",
|
||||
"Show more": "显示更多",
|
||||
"Your homeserver does not support cross-signing.": "你的家服务器不支持交叉签名。",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "你的账户在秘密存储中有交叉签名身份,但并没有被此会话信任。",
|
||||
|
@ -812,32 +809,12 @@
|
|||
"Reject & Ignore user": "拒绝并忽略用户",
|
||||
"You're previewing %(roomName)s. Want to join it?": "你正在预览 %(roomName)s。想加入吗?",
|
||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s 不能被预览。你想加入吗?",
|
||||
"Show rooms with unread messages first": "优先显示有未读消息的房间",
|
||||
"Show previews of messages": "显示消息预览",
|
||||
"Sort by": "排序",
|
||||
"Activity": "活动",
|
||||
"A-Z": "字典顺序",
|
||||
"List options": "列表选项",
|
||||
"Jump to first unread room.": "跳转至第一个未读房间。",
|
||||
"Jump to first invite.": "跳转至第一个邀请。",
|
||||
"Add room": "添加房间",
|
||||
"Show %(count)s more": {
|
||||
"other": "多显示 %(count)s 个",
|
||||
"one": "多显示 %(count)s 个"
|
||||
},
|
||||
"Notification options": "通知选项",
|
||||
"Forget Room": "忘记房间",
|
||||
"Favourited": "已收藏",
|
||||
"Room options": "房间选项",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "包括提及在内有 %(count)s 个未读消息。",
|
||||
"one": "1 个未读提及。"
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s 个未读消息。",
|
||||
"one": "1 个未读消息。"
|
||||
},
|
||||
"Unread messages.": "未读消息。",
|
||||
"This room is public": "此房间为公共的",
|
||||
"This room has already been upgraded.": "此房间已经被升级。",
|
||||
"Unknown Command": "未知命令",
|
||||
|
@ -949,7 +926,6 @@
|
|||
"More options": "更多选项",
|
||||
"Rotate Left": "向左旋转",
|
||||
"Rotate Right": "向右旋转",
|
||||
"QR Code": "二维码",
|
||||
"Room address": "房间地址",
|
||||
"e.g. my-room": "例如 my-room",
|
||||
"Some characters not allowed": "不允许使用某些字符",
|
||||
|
@ -1021,9 +997,6 @@
|
|||
"Verify session": "验证会话",
|
||||
"Your homeserver doesn't seem to support this feature.": "你的家服务器似乎不支持此功能。",
|
||||
"Message edits": "消息编辑历史",
|
||||
"Please fill why you're reporting.": "请填写你为何做此报告。",
|
||||
"Report Content to Your Homeserver Administrator": "向你的家服务器管理员举报内容",
|
||||
"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.": "举报此消息会将其唯一的“事件ID”发送给你的家服务器的管理员。如果此房间中的消息是加密的,则你的家服务器管理员将无法阅读消息文本,也无法查看任何文件或图片。",
|
||||
"Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "升级此房间需要关闭此房间的当前实例并创建一个新的房间代替它。为了给房间成员最好的体验,我们会:",
|
||||
"Upgrade private room": "更新私人房间",
|
||||
"Upgrade public room": "更新公共房间",
|
||||
|
@ -1333,7 +1306,6 @@
|
|||
"Reason (optional)": "理由(可选)",
|
||||
"Create a new room": "创建新房间",
|
||||
"Spaces": "空间",
|
||||
"Continue with %(provider)s": "使用 %(provider)s 继续",
|
||||
"Server Options": "服务器选项",
|
||||
"Information": "信息",
|
||||
"Not encrypted": "未加密",
|
||||
|
@ -1746,8 +1718,6 @@
|
|||
"No microphone found": "未找到麦克风",
|
||||
"We were unable to access your microphone. Please check your browser settings and try again.": "我们无法访问你的麦克风。 请检查浏览器设置并重试。",
|
||||
"Unable to access your microphone": "无法访问你的麦克风",
|
||||
"You do not have permissions to add rooms to this space": "你没有权限添加房间至此空间",
|
||||
"You do not have permissions to create new rooms in this space": "你没有权限在此空间内创建新的房间",
|
||||
"Invite to just this room": "仅邀请至此房间",
|
||||
"This is the beginning of your direct message history with <displayName/>.": "这是你与<displayName/>的私聊历史的开端。",
|
||||
"Only the two of you are in this conversation, unless either of you invites anyone to join.": "除非你们其中一个邀请了别人加入,否则将仅有你们两个人在此对话中。",
|
||||
|
@ -1784,8 +1754,6 @@
|
|||
"That phone number doesn't look quite right, please check and try again": "电话号码看起来不太对,请检查并重试",
|
||||
"Something went wrong in confirming your identity. Cancel and try again.": "确认你的身份时出了一点问题。取消并重试。",
|
||||
"Avatar": "头像",
|
||||
"Join the beta": "加入beta",
|
||||
"Leave the beta": "离开beta",
|
||||
"Start audio stream": "开始音频流",
|
||||
"Failed to start livestream": "开始流直播失败",
|
||||
"Unable to start audio streaming.": "无法开始音频流媒体。",
|
||||
|
@ -1847,17 +1815,6 @@
|
|||
"Show preview": "显示预览",
|
||||
"View source": "查看源代码",
|
||||
"Settings - %(spaceName)s": "设置 - %(spaceName)s",
|
||||
"Report the entire room": "报告整个房间",
|
||||
"Spam or propaganda": "垃圾信息或宣传",
|
||||
"Illegal Content": "违法内容",
|
||||
"Toxic Behaviour": "不良行为",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "此房间致力于违法或不良行为,或协管员未能审核违法或不良行为。\n这将报告给 %(homeserver)s 的管理员。管理员无法阅读此房间的加密内容。",
|
||||
"Disagree": "不同意",
|
||||
"Please pick a nature and describe what makes this message abusive.": "请选择性质并描述为什么此消息是滥用。",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "任何其他原因。请描述问题。\n这将报告给房间协管员。",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "此用户正在房间中滥发广告、广告链接或宣传。\n这将报告给房间协管员。",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "此用户正在做出违法行为,如对他人施暴,或威胁使用暴力。\n这将报告给房间协管员,他们可能会将其报告给执法部门。",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "此用户所写的是错误内容。\n这将会报告给房间协管员。",
|
||||
"Please provide an address": "请提供地址",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "消息搜索初始化失败,请检查<a>你的设置</a>以获取更多信息",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "设置此空间的地址,这样用户就能通过你的家服务器找到此空间(%(localDomain)s)",
|
||||
|
@ -2018,21 +1975,7 @@
|
|||
"Leave some rooms": "离开一些房间",
|
||||
"Leave all rooms": "离开所有房间",
|
||||
"Don't leave any rooms": "不离开任何房间",
|
||||
"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": "导出你的数据",
|
||||
"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": "导出聊天",
|
||||
"Verify with Security Key or Phrase": "使用安全密钥或短语进行验证",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s菜单",
|
||||
"Join public room": "加入公共房间",
|
||||
"Add people": "加人",
|
||||
"You do not have permissions to invite people to this space": "你无权邀请他人加入此空间",
|
||||
"Invite to space": "邀请到空间",
|
||||
"Start new chat": "开始新的聊天",
|
||||
"Recently viewed": "最近查看",
|
||||
|
@ -2301,7 +2243,6 @@
|
|||
"Disinvite from room": "从房间取消邀请",
|
||||
"Remove from space": "从空间移除",
|
||||
"Disinvite from space": "从空间取消邀请",
|
||||
"You do not have permissions to add spaces to this space": "你没有权限向此空间添加空间",
|
||||
"Saved Items": "已保存的项目",
|
||||
"Private room": "私有房间",
|
||||
"Video room": "视频房间",
|
||||
|
@ -2362,11 +2303,7 @@
|
|||
"Threads help keep your conversations on-topic and easy to track.": "消息列帮助保持你的对话切题并易于追踪。",
|
||||
"Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "回复进行中的消息列或当悬停在消息上时使用%(replyInThread)s来发起新的消息列。",
|
||||
"Can't create a thread from an event with an existing relation": "无法从既有关系的事件创建消息列",
|
||||
"Joining the beta will reload %(brand)s.": "加入beta会重载%(brand)s。",
|
||||
"Leaving the beta will reload %(brand)s.": "离开beta会重载%(brand)s。",
|
||||
"This is a beta feature": "这是beta功能",
|
||||
"%(featureName)s Beta feedback": "%(featureName)sBeta反馈",
|
||||
"Click for more info": "点击获取更多信息",
|
||||
"Use <arrows/> to scroll": "用<arrows/>来滚动",
|
||||
"Feedback sent! Thanks, we appreciate it!": "反馈已发送!谢谢,我们很感激!",
|
||||
"Location": "位置",
|
||||
|
@ -2487,11 +2424,6 @@
|
|||
"Closed poll": "封闭式投票",
|
||||
"Open poll": "开放式投票",
|
||||
"Poll type": "投票类型",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store®和Apple logo®是Apple Inc.的商标",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play及其logo是Google LLC的商标。",
|
||||
"Download %(brand)s": "下载%(brand)s",
|
||||
"Download %(brand)s Desktop": "下载%(brand)s桌面版",
|
||||
"Download on the App Store": "在App Store下载",
|
||||
"Share your activity and status with others.": "与别人分享你的活动和状态。",
|
||||
"Your server doesn't support disabling sending read receipts.": "你的服务器不支持禁用发送已读回执。",
|
||||
"We're creating a room with %(names)s": "正在创建房间%(names)s",
|
||||
|
@ -2518,10 +2450,8 @@
|
|||
"Unsent": "未发送",
|
||||
"Search Dialog": "搜索对话",
|
||||
"Join %(roomAddress)s": "加入%(roomAddress)s",
|
||||
"Ignore user": "忽略用户",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "当你登出时,这些密钥会从此设备删除。这意味着你将无法查阅已加密消息,除非你在其他设备上有那些消息的密钥,或者已将其备份到服务器。",
|
||||
"Open room": "打开房间",
|
||||
"Export Cancelled": "导出已取消",
|
||||
"Output devices": "输出设备",
|
||||
"Input devices": "输入设备",
|
||||
"View List": "查看列表",
|
||||
|
@ -2577,7 +2507,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s和%(user2)s",
|
||||
"Choose a locale": "选择区域设置",
|
||||
"Empty room (was %(oldName)s)": "空房间(曾是%(oldName)s)",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s或%(appLinks)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s或%(recoveryFile)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s或%(copyButton)s",
|
||||
"Your server has native support": "你的服务器有原生支持",
|
||||
|
@ -2587,7 +2516,6 @@
|
|||
"Proxy URL (optional)": "代理URL(可选)",
|
||||
"Proxy URL": "代理URL",
|
||||
"Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "若你也想移除关于此用户的系统消息(例如,成员更改、用户资料更改……),则取消勾选",
|
||||
"Check if you want to hide all current and future messages from this user.": "若想隐藏来自此用户的全部当前和未来的消息,请打勾。",
|
||||
"Inviting %(user1)s and %(user2)s": "正在邀请 %(user1)s 与 %(user2)s",
|
||||
"%(user)s and %(count)s others": {
|
||||
"one": "%(user)s 与 1 个人",
|
||||
|
@ -2758,7 +2686,8 @@
|
|||
"secure_backup": "安全备份",
|
||||
"cross_signing": "交叉签名",
|
||||
"identity_server": "身份服务器",
|
||||
"integration_manager": "集成管理器"
|
||||
"integration_manager": "集成管理器",
|
||||
"qr_code": "二维码"
|
||||
},
|
||||
"action": {
|
||||
"continue": "继续",
|
||||
|
@ -2860,7 +2789,16 @@
|
|||
"clear": "清除"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "用户菜单"
|
||||
"user_menu": "用户菜单",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "包括提及在内有 %(count)s 个未读消息。",
|
||||
"one": "1 个未读提及。"
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s 个未读消息。",
|
||||
"one": "1 个未读消息。"
|
||||
},
|
||||
"unread_messages": "未读消息。"
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "视频房间",
|
||||
|
@ -2904,7 +2842,13 @@
|
|||
"group_themes": "主题",
|
||||
"group_encryption": "加密",
|
||||
"group_experimental": "实验性",
|
||||
"group_developer": "开发者"
|
||||
"group_developer": "开发者",
|
||||
"beta_feature": "这是beta功能",
|
||||
"click_for_info": "点击获取更多信息",
|
||||
"leave_beta_reload": "离开beta会重载%(brand)s。",
|
||||
"join_beta_reload": "加入beta会重载%(brand)s。",
|
||||
"leave_beta": "离开beta",
|
||||
"join_beta": "加入beta"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "主页",
|
||||
|
@ -3022,7 +2966,13 @@
|
|||
"enable_notifications": "打开通知",
|
||||
"download_app_description": "随身携带%(brand)s,不错过任何事情",
|
||||
"download_app_action": "下载应用",
|
||||
"download_app": "下载%(brand)s"
|
||||
"download_app": "下载%(brand)s",
|
||||
"download_brand": "下载%(brand)s",
|
||||
"download_brand_desktop": "下载%(brand)s桌面版",
|
||||
"qr_or_app_links": "%(qrCode)s或%(appLinks)s",
|
||||
"download_app_store": "在App Store下载",
|
||||
"apple_trademarks": "App Store®和Apple logo®是Apple Inc.的商标",
|
||||
"google_trademarks": "Google Play及其logo是Google LLC的商标。"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "在房间列表上方显示最近浏览过的房间的快捷方式",
|
||||
|
@ -3198,7 +3148,23 @@
|
|||
"export_info": "这是 <roomName/> 导出的开始。导出人 <exporterDetails/>,导出日期 %(exportDate)s。",
|
||||
"topic": "话题:%(topic)s",
|
||||
"error_fetching_file": "获取文件出错",
|
||||
"file_attached": "已附加文件"
|
||||
"file_attached": "已附加文件",
|
||||
"enter_number_between_min_max": "输入一个 %(min)s 和 %(max)s 之间的数字",
|
||||
"size_limit_min_max": "大小只能是 %(min)sMB 和 %(max)sMB 之间的一个数字",
|
||||
"num_messages_min_max": "消息数只能是一个介于 %(min)s 和 %(max)s 之间的整数",
|
||||
"num_messages": "消息数",
|
||||
"cancelled": "导出已取消",
|
||||
"cancelled_detail": "成功取消了导出",
|
||||
"successful": "成功导出",
|
||||
"successful_detail": "导出成功了。你可以在下载文件夹中找到导出文件。",
|
||||
"confirm_stop": "您确定要停止导出数据吗?如果你这样做了,你需要重新开始。",
|
||||
"exporting_your_data": "导出你的数据",
|
||||
"title": "导出聊天",
|
||||
"select_option": "从下面的选项中选择以从时间线导出聊天",
|
||||
"format": "格式",
|
||||
"messages": "消息",
|
||||
"size_limit": "大小限制",
|
||||
"include_attachments": "包括附件"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "创建视频房间",
|
||||
|
@ -3597,7 +3563,6 @@
|
|||
"unsupported": "不支持通话",
|
||||
"unsupported_browser": "你无法在此浏览器中进行呼叫。"
|
||||
},
|
||||
"Messages": "消息",
|
||||
"Other": "其他",
|
||||
"Advanced": "高级",
|
||||
"room_settings": {
|
||||
|
@ -3684,5 +3649,48 @@
|
|||
"spaceinvaders_message": "发送空间入侵者",
|
||||
"hearts_description": "与爱心一起发送给定的消息",
|
||||
"hearts_message": "发送爱心"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "你无权邀请他人加入此空间",
|
||||
"error_no_permission_create_room": "你没有权限在此空间内创建新的房间",
|
||||
"error_no_permission_add_room": "你没有权限添加房间至此空间",
|
||||
"error_no_permission_add_space": "你没有权限向此空间添加空间"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "使用 %(provider)s 继续",
|
||||
"sign_in_with_sso": "使用单点登录",
|
||||
"sso": "单点登录"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "优先显示有未读消息的房间",
|
||||
"show_previews": "显示消息预览",
|
||||
"sort_by": "排序",
|
||||
"sort_by_activity": "活动",
|
||||
"sort_by_alphabet": "字典顺序",
|
||||
"sublist_options": "列表选项",
|
||||
"show_n_more": {
|
||||
"other": "多显示 %(count)s 个",
|
||||
"one": "多显示 %(count)s 个"
|
||||
},
|
||||
"show_less": "显示更少",
|
||||
"notification_options": "通知选项"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "请填写你为何做此报告。",
|
||||
"ignore_user": "忽略用户",
|
||||
"hide_messages_from_user": "若想隐藏来自此用户的全部当前和未来的消息,请打勾。",
|
||||
"nature_disagreement": "此用户所写的是错误内容。\n这将会报告给房间协管员。",
|
||||
"nature_illegal": "此用户正在做出违法行为,如对他人施暴,或威胁使用暴力。\n这将报告给房间协管员,他们可能会将其报告给执法部门。",
|
||||
"nature_spam": "此用户正在房间中滥发广告、广告链接或宣传。\n这将报告给房间协管员。",
|
||||
"report_to_homeserver_encrypted": "此房间致力于违法或不良行为,或协管员未能审核违法或不良行为。\n这将报告给 %(homeserver)s 的管理员。管理员无法阅读此房间的加密内容。",
|
||||
"nature_other": "任何其他原因。请描述问题。\n这将报告给房间协管员。",
|
||||
"nature": "请选择性质并描述为什么此消息是滥用。",
|
||||
"disagree": "不同意",
|
||||
"toxic_behaviour": "不良行为",
|
||||
"illegal_content": "违法内容",
|
||||
"spam_or_propaganda": "垃圾信息或宣传",
|
||||
"report_entire_room": "报告整个房间",
|
||||
"report_content_to_homeserver": "向你的家服务器管理员举报内容",
|
||||
"description": "举报此消息会将其唯一的“事件ID”发送给你的家服务器的管理员。如果此房间中的消息是加密的,则你的家服务器管理员将无法阅读消息文本,也无法查看任何文件或图片。"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -377,7 +377,6 @@
|
|||
"Failed to decrypt %(failedCount)s sessions!": "無法解密 %(failedCount)s 個工作階段!",
|
||||
"Failed to perform homeserver discovery": "無法探索家伺服器",
|
||||
"Invalid homeserver discovery response": "家伺服器的探索回應無效",
|
||||
"Sign in with single sign-on": "以單一登入來登入",
|
||||
"Use a few words, avoid common phrases": "使用數個字,但避免常用片語",
|
||||
"No need for symbols, digits, or uppercase letters": "不需要符號、數字或大寫字母",
|
||||
"Use a longer keyboard pattern with more turns": "以更多變化使用較長的鍵盤模式",
|
||||
|
@ -748,9 +747,6 @@
|
|||
"This invite to %(roomName)s was sent to %(email)s": "此 %(roomName)s 的邀請已傳送給 %(email)s",
|
||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "在設定中使用身分伺服器以直接在 %(brand)s 中接收邀請。",
|
||||
"Share this email in Settings to receive invites directly in %(brand)s.": "在設定中分享此電子郵件以直接在 %(brand)s 中接收邀請。",
|
||||
"Please fill why you're reporting.": "請填寫為什麼您要回報。",
|
||||
"Report Content to Your Homeserver Administrator": "回報內容給您的家伺服器管理員",
|
||||
"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.": "回報此訊息將會傳送其獨特的「活動 ID」給您家伺服器的管理員。如果此聊天室中的訊息已加密,您的家伺服器管理員將無法閱讀訊息文字或檢視任何檔案或圖片。",
|
||||
"Explore rooms": "探索聊天室",
|
||||
"Read Marker lifetime (ms)": "讀取標記生命週期(毫秒)",
|
||||
"Read Marker off-screen lifetime (ms)": "畫面外讀取標記的生命週期(毫秒)",
|
||||
|
@ -767,14 +763,6 @@
|
|||
"Room Autocomplete": "聊天室自動完成",
|
||||
"User Autocomplete": "使用者自動完成",
|
||||
"Clear cache and reload": "清除快取並重新載入",
|
||||
"%(count)s unread messages including mentions.": {
|
||||
"other": "包含提及有 %(count)s 則未讀訊息。",
|
||||
"one": "1 則未讀的提及。"
|
||||
},
|
||||
"%(count)s unread messages.": {
|
||||
"other": "%(count)s 則未讀訊息。",
|
||||
"one": "1 則未讀的訊息。"
|
||||
},
|
||||
"Show image": "顯示圖片",
|
||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "未於家伺服器設定中指定 Captcha 公鑰。請將此問題回報給您的家伺服器管理員。",
|
||||
"Your email address hasn't been verified yet": "您的電子郵件地址尚未被驗證",
|
||||
|
@ -795,7 +783,6 @@
|
|||
"Jump to first unread room.": "跳到第一個未讀的聊天室。",
|
||||
"Jump to first invite.": "跳到第一個邀請。",
|
||||
"Room %(name)s": "聊天室 %(name)s",
|
||||
"Unread messages.": "未讀的訊息。",
|
||||
"This action requires accessing the default identity server <server /> to validate an email address or phone number, but the server does not have any terms of service.": "此動作需要存取預設的身分伺服器 <server /> 以驗證電子郵件或電話號碼,但伺服器沒有任何服務條款。",
|
||||
"Message Actions": "訊息動作",
|
||||
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
|
||||
|
@ -920,7 +907,6 @@
|
|||
"Enable message search in encrypted rooms": "在已加密的聊天室中啟用訊息搜尋",
|
||||
"Waiting for %(displayName)s to verify…": "正在等待 %(displayName)s 驗證…",
|
||||
"This bridge was provisioned by <user />.": "此橋接是由 <user /> 設定。",
|
||||
"Show less": "顯示更少",
|
||||
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "您的帳號在秘密儲存空間中有交叉簽署的身分,但尚未被此工作階段信任。",
|
||||
"in memory": "在記憶體中",
|
||||
"Securely cache encrypted messages locally for them to appear in search results.": "將加密的訊息安全地在本機快取以出現在顯示結果中。",
|
||||
|
@ -1061,7 +1047,6 @@
|
|||
"Sign in with SSO": "使用 SSO 登入",
|
||||
"Use Single Sign On to continue": "使用單一登入來繼續",
|
||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "使用單一登入來證明身分,以確認新增該電子郵件地址。",
|
||||
"Single Sign On": "單一登入",
|
||||
"Confirm adding email": "確認新增電子郵件",
|
||||
"Click the button below to confirm adding this email address.": "點擊下方按鈕以確認新增此電子郵件地址。",
|
||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "透過使用單一登入來證明您的身分,以確認新增此電話號碼。",
|
||||
|
@ -1111,7 +1096,6 @@
|
|||
"Click the button below to confirm your identity.": "點擊下方按鈕以確認您的身分。",
|
||||
"Confirm encryption setup": "確認加密設定",
|
||||
"Click the button below to confirm setting up encryption.": "點擊下方按鈕以確認設定加密。",
|
||||
"QR Code": "QR Code",
|
||||
"Dismiss read marker and jump to bottom": "清除讀取標記並跳至底部",
|
||||
"Jump to oldest unread message": "跳至最舊的未讀訊息",
|
||||
"Upload a file": "上傳檔案",
|
||||
|
@ -1145,16 +1129,8 @@
|
|||
"All settings": "所有設定",
|
||||
"Feedback": "回饋",
|
||||
"No recently visited rooms": "沒有最近造訪過的聊天室",
|
||||
"Sort by": "排序方式",
|
||||
"Message preview": "訊息預覽",
|
||||
"List options": "列表選項",
|
||||
"Show %(count)s more": {
|
||||
"other": "再顯示 %(count)s 個",
|
||||
"one": "再顯示 %(count)s 個"
|
||||
},
|
||||
"Room options": "聊天室選項",
|
||||
"Activity": "訊息順序",
|
||||
"A-Z": "A-Z",
|
||||
"Looks good!": "看起來真棒!",
|
||||
"Use custom size": "使用自訂大小",
|
||||
"Hey you. You're the best!": "嘿!您最棒了!",
|
||||
|
@ -1176,9 +1152,6 @@
|
|||
"Are you sure you want to cancel entering passphrase?": "您確定要取消輸入安全密語嗎?",
|
||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s 無法在網頁瀏覽器中執行時,安全地在本機快取加密訊息。若需搜尋加密訊息,請使用 <desktopLink>%(brand)s 桌面版</desktopLink>。",
|
||||
"%(brand)s version:": "%(brand)s 版本:",
|
||||
"Show rooms with unread messages first": "先顯示有未讀訊息的聊天室",
|
||||
"Show previews of messages": "顯示訊息預覽",
|
||||
"Notification options": "通知選項",
|
||||
"Favourited": "已加入我的最愛",
|
||||
"Forget Room": "忘記聊天室",
|
||||
"This room is public": "此聊天室為公開聊天室",
|
||||
|
@ -1621,7 +1594,6 @@
|
|||
"Specify a homeserver": "指定家伺服器",
|
||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "請注意,如果您不新增電子郵件且忘記密碼,您將<b>永遠失去對您帳號的存取權</b>。",
|
||||
"Continuing without email": "不使用電子郵件來繼續",
|
||||
"Continue with %(provider)s": "使用下列帳號繼續:%(provider)s",
|
||||
"Server Options": "伺服器選項",
|
||||
"Reason (optional)": "理由(選擇性)",
|
||||
"Invalid URL": "無效網址",
|
||||
|
@ -1708,9 +1680,7 @@
|
|||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "如果您將自己降級,將無法撤銷此變更,而且如果您是空間中的最後一個特殊權限使用者,將無法再取得這類特殊權限。",
|
||||
"Empty room": "空聊天室",
|
||||
"Suggested Rooms": "建議的聊天室",
|
||||
"You do not have permissions to add rooms to this space": "您沒有權限在此聊天空間中新增聊天室",
|
||||
"Add existing room": "新增既有的聊天室",
|
||||
"You do not have permissions to create new rooms in this space": "您沒有權限在此聊天空間中建立新聊天室",
|
||||
"Invite to this space": "邀請加入此聊天空間",
|
||||
"Your message was sent": "您的訊息已傳送",
|
||||
"Space options": "聊天空間選項",
|
||||
|
@ -1798,8 +1768,6 @@
|
|||
"What do you want to organise?": "您想要整理什麼?",
|
||||
"You have no ignored users.": "您沒有忽略的使用者。",
|
||||
"Select a room below first": "首先選取一個聊天室",
|
||||
"Join the beta": "加入 Beta 測試",
|
||||
"Leave the beta": "離開 Beta 測試",
|
||||
"Want to add a new room instead?": "想要新增新聊天室嗎?",
|
||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||
"one": "正在新增聊天室…",
|
||||
|
@ -1847,17 +1815,6 @@
|
|||
"Show preview": "顯示預覽",
|
||||
"View source": "檢視原始碼",
|
||||
"Settings - %(spaceName)s": "設定 - %(spaceName)s",
|
||||
"Report the entire room": "回報整個聊天室",
|
||||
"Spam or propaganda": "垃圾郵件或宣傳",
|
||||
"Illegal Content": "違法內容",
|
||||
"Toxic Behaviour": "有問題的行為",
|
||||
"Disagree": "不同意",
|
||||
"Please pick a nature and describe what makes this message abusive.": "請挑選性質並描述此訊息為什麼是濫用。",
|
||||
"Any other reason. Please describe the problem.\nThis will be reported to the room moderators.": "任何其他理由。請描述問題。\n將會回報給聊天室版主。",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s. The administrators will NOT be able to read the encrypted content of this room.": "此聊天室有違法或有毒的內容,或是管理員無法審核違法或有問題的內容。\n這將會回報給 %(homeserver)s 的管理員。管理員無法閱讀此聊天室的加密內容。",
|
||||
"This user is spamming the room with ads, links to ads or to propaganda.\nThis will be reported to the room moderators.": "該使用者傳送廣告、廣告連結或宣傳等垃圾訊息至聊天室。\n將會回報給聊天室版主。",
|
||||
"This user is displaying illegal behaviour, for instance by doxing people or threatening violence.\nThis will be reported to the room moderators who may escalate this to legal authorities.": "該使用者進行違法行為,例如洩漏他人個資,或威脅使用暴力。\n將會回報給聊天室版主,他們可能會將其回報給執法單位。",
|
||||
"What this user is writing is wrong.\nThis will be reported to the room moderators.": "該使用者所寫的內容是錯誤的。\n這將會回報給聊天室管理員。",
|
||||
"Please provide an address": "請提供位址",
|
||||
"Message search initialisation failed, check <a>your settings</a> for more information": "訊息搜尋初始化失敗,請檢查<a>您的設定</a>以取得更多資訊",
|
||||
"Set addresses for this space so users can find this space through your homeserver (%(localDomain)s)": "設定此聊天空間的位址,這樣使用者就能透過您的家伺服器找到此空間(%(localDomain)s)",
|
||||
|
@ -2018,21 +1975,7 @@
|
|||
"Leave all rooms": "離開所有聊天室",
|
||||
"Don't leave any rooms": "不要離開任何聊天室",
|
||||
"%(reactors)s reacted with %(content)s": "%(reactors)s 使用了 %(content)s 反應",
|
||||
"Include Attachments": "包含附件",
|
||||
"Size Limit": "大小限制",
|
||||
"Format": "格式",
|
||||
"Select from the options below to export chats from your timeline": "從下面的選項中選擇以從您的時間軸匯出聊天",
|
||||
"Export Chat": "匯出聊天",
|
||||
"Exporting your data": "正在匯出您的資料",
|
||||
"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": "匯出聊天",
|
||||
"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.": "重設您的驗證金鑰將無法復原。重設後,您將無法存取舊的加密訊息,之前任何驗證過您的朋友也會看到安全警告,直到您重新驗證。",
|
||||
|
@ -2178,7 +2121,6 @@
|
|||
"%(spaceName)s menu": "%(spaceName)s 選單",
|
||||
"Join public room": "加入公開聊天室",
|
||||
"Add people": "新增夥伴",
|
||||
"You do not have permissions to invite people to this space": "您沒有權限邀請夥伴到此聊天空間",
|
||||
"Invite to space": "邀請加入聊天空間",
|
||||
"Start new chat": "開始新聊天",
|
||||
"Recently viewed": "最近檢視過",
|
||||
|
@ -2310,9 +2252,6 @@
|
|||
"Poll": "投票",
|
||||
"Voice Message": "語音訊息",
|
||||
"Hide stickers": "隱藏貼圖",
|
||||
"You do not have permissions to add spaces to this space": "您沒有權限向此聊天空間新增聊天空間",
|
||||
"Click for more info": "點擊以取得更多資訊",
|
||||
"This is a beta feature": "這是 Beta 測試功能",
|
||||
"Use <arrows/> to scroll": "使用 <arrows/> 捲動",
|
||||
"Feedback sent! Thanks, we appreciate it!": "已傳送回饋!謝謝,我們感激不盡!",
|
||||
"%(space1Name)s and %(space2Name)s": "%(space1Name)s 與 %(space2Name)s",
|
||||
|
@ -2334,7 +2273,6 @@
|
|||
"Open thread": "開啟討論串",
|
||||
"No virtual room for this room": "此聊天室沒有虛擬聊天室",
|
||||
"Switches to this room's virtual room, if it has one": "切換到此聊天室的虛擬聊天室(若有)",
|
||||
"Export Cancelled": "匯出已取消",
|
||||
"What location type do you want to share?": "您要分享哪種位置類型?",
|
||||
"Drop a Pin": "自訂位置",
|
||||
"My live location": "我的即時位置",
|
||||
|
@ -2489,8 +2427,6 @@
|
|||
"one": "%(count)s 個人已加入",
|
||||
"other": "%(count)s 個人已加入"
|
||||
},
|
||||
"Check if you want to hide all current and future messages from this user.": "若想隱藏來自該使用者所有目前與未來的訊息,請打勾。",
|
||||
"Ignore user": "忽略使用者",
|
||||
"View related event": "檢視相關的事件",
|
||||
"Read receipts": "讀取回條",
|
||||
"Failed to set direct message tag": "無法設定私人訊息標籤",
|
||||
|
@ -2499,8 +2435,6 @@
|
|||
"Deactivating your account is a permanent action — be careful!": "停用帳號無法還原 — 請小心!",
|
||||
"Un-maximise": "取消最大化",
|
||||
"When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "當您登出時,這些金鑰將會從此裝置被刪除,這代表您將無法再閱讀加密的訊息,除非您在其他裝置上有那些訊息的金鑰,或是將它們備份到伺服器上。",
|
||||
"Joining the beta will reload %(brand)s.": "加入 Beta 測試版將會重新載入 %(brand)s。",
|
||||
"Leaving the beta will reload %(brand)s.": "離開 Beta 測試版將會重新載入 %(brand)s。",
|
||||
"Video rooms are a beta feature": "視訊聊天室是 Beta 測試功能",
|
||||
"Enable hardware acceleration": "啟用硬體加速",
|
||||
"Remove search filter for %(filter)s": "移除 %(filter)s 的搜尋過濾條件",
|
||||
|
@ -2555,13 +2489,6 @@
|
|||
"Saved Items": "已儲存的項目",
|
||||
"Choose a locale": "選擇語系",
|
||||
"Spell check": "拼字檢查",
|
||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。",
|
||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® 與 Apple logo® 是 Apple Inc 的註冊商標。",
|
||||
"Get it on F-Droid": "在 F-Droid 上取得",
|
||||
"Get it on Google Play": "在 Google Play 上取得",
|
||||
"Download on the App Store": "在 App Store 上下載",
|
||||
"Download %(brand)s Desktop": "下載 %(brand)s 桌面版",
|
||||
"Download %(brand)s": "下載 %(brand)s",
|
||||
"We're creating a room with %(names)s": "正在建立包含 %(names)s 的聊天室",
|
||||
"Your server doesn't support disabling sending read receipts.": "您的伺服器不支援停用傳送讀取回條。",
|
||||
"Share your activity and status with others.": "與他人分享您的活動與狀態。",
|
||||
|
@ -2610,7 +2537,6 @@
|
|||
"%(user1)s and %(user2)s": "%(user1)s 與 %(user2)s",
|
||||
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s 或 %(copyButton)s",
|
||||
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s 或 %(recoveryFile)s",
|
||||
"%(qrCode)s or %(appLinks)s": "%(qrCode)s 或 %(appLinks)s",
|
||||
"Proxy URL": "代理伺服器網址",
|
||||
"Proxy URL (optional)": "代理伺服器網址(選填)",
|
||||
"To disable you will need to log out and back in, use with caution!": "要停用,您必須登出並重新登入,請小心使用!",
|
||||
|
@ -2729,8 +2655,6 @@
|
|||
"Follow the instructions sent to <b>%(email)s</b>": "按照指示寄信到 <b>%(email)s</b>",
|
||||
"Sign out of all devices": "登出所有裝置",
|
||||
"Confirm new password": "確認新密碼",
|
||||
"Reset your password": "重新設定您的密碼",
|
||||
"Reset password": "重設密碼",
|
||||
"Too many attempts in a short time. Retry after %(timeout)s.": "短時間內嘗試太多次,請稍等 %(timeout)s 秒後再嘗試。",
|
||||
"Too many attempts in a short time. Wait some time before trying again.": "短時間內嘗試太多次,請稍待一段時間後再嘗試。",
|
||||
"Thread root ID: %(threadRootId)s": "討論串根 ID:%(threadRootId)s",
|
||||
|
@ -2832,10 +2756,7 @@
|
|||
"Loading live location…": "正在載入即時位置…",
|
||||
"Fetching keys from server…": "正在取得來自伺服器的金鑰…",
|
||||
"Checking…": "正在檢查…",
|
||||
"This room is dedicated to illegal or toxic content or the moderators fail to moderate illegal or toxic content.\nThis will be reported to the administrators of %(homeserver)s.": "此聊天室被用於討論違法或有問題的內容,或是版主未移除違法或有問題的內容。\n將會回報給 %(homeserver)s 的管理員。",
|
||||
"This user is displaying toxic behaviour, for instance by insulting other users or sharing adult-only content in a family-friendly room or otherwise violating the rules of this room.\nThis will be reported to the room moderators.": "該使用者表現出不良行為,例如侮辱其他使用者,或在適合家庭的聊天室中分享成人內容,又或是以其他方式違反該聊天室的規則。\n將回報給聊天室版主。",
|
||||
"Waiting for partner to confirm…": "正在等待夥伴確認…",
|
||||
"Processing…": "正在處理…",
|
||||
"Adding…": "正在新增…",
|
||||
"Write something…": "寫點東西…",
|
||||
"Rejecting invite…": "正在回絕邀請…",
|
||||
|
@ -2928,7 +2849,6 @@
|
|||
"Unknown password change error (%(stringifiedError)s)": "未知密碼變更錯誤(%(stringifiedError)s)",
|
||||
"Error while changing password: %(error)s": "變更密碼時發生錯誤:%(error)s",
|
||||
"Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "無法在未設定身分伺服器時,邀請使用者。您可以到「設定」畫面中連線到一組伺服器。",
|
||||
"Unable to create room with moderation bot": "無法使用審核機器人建立聊天室",
|
||||
"Failed to download source media, no source url was found": "下載來源媒體失敗,找不到來源 URL",
|
||||
"Once invited users have joined %(brand)s, you will be able to chat and the room will be end-to-end encrypted": "被邀請的使用者加入 %(brand)s 後,您就可以聊天,聊天室將會進行端到端加密",
|
||||
"Waiting for users to join %(brand)s": "等待使用者加入 %(brand)s",
|
||||
|
@ -3087,7 +3007,8 @@
|
|||
"secure_backup": "安全備份",
|
||||
"cross_signing": "交叉簽署",
|
||||
"identity_server": "身分伺服器",
|
||||
"integration_manager": "整合管理員"
|
||||
"integration_manager": "整合管理員",
|
||||
"qr_code": "QR Code"
|
||||
},
|
||||
"action": {
|
||||
"continue": "繼續",
|
||||
|
@ -3190,7 +3111,16 @@
|
|||
"clear": "清除"
|
||||
},
|
||||
"a11y": {
|
||||
"user_menu": "使用者選單"
|
||||
"user_menu": "使用者選單",
|
||||
"n_unread_messages_mentions": {
|
||||
"other": "包含提及有 %(count)s 則未讀訊息。",
|
||||
"one": "1 則未讀的提及。"
|
||||
},
|
||||
"n_unread_messages": {
|
||||
"other": "%(count)s 則未讀訊息。",
|
||||
"one": "1 則未讀的訊息。"
|
||||
},
|
||||
"unread_messages": "未讀的訊息。"
|
||||
},
|
||||
"labs": {
|
||||
"video_rooms": "視訊聊天室",
|
||||
|
@ -3245,7 +3175,13 @@
|
|||
"group_themes": "主題",
|
||||
"group_encryption": "加密",
|
||||
"group_experimental": "實驗性",
|
||||
"group_developer": "開發者"
|
||||
"group_developer": "開發者",
|
||||
"beta_feature": "這是 Beta 測試功能",
|
||||
"click_for_info": "點擊以取得更多資訊",
|
||||
"leave_beta_reload": "離開 Beta 測試版將會重新載入 %(brand)s。",
|
||||
"join_beta_reload": "加入 Beta 測試版將會重新載入 %(brand)s。",
|
||||
"leave_beta": "離開 Beta 測試",
|
||||
"join_beta": "加入 Beta 測試"
|
||||
},
|
||||
"keyboard": {
|
||||
"home": "首頁",
|
||||
|
@ -3376,7 +3312,15 @@
|
|||
"enable_notifications": "開啟通知",
|
||||
"download_app_description": "隨身攜帶 %(brand)s,不錯過任何事情",
|
||||
"download_app_action": "下載應用程式",
|
||||
"download_app": "下載 %(brand)s"
|
||||
"download_app": "下載 %(brand)s",
|
||||
"download_brand": "下載 %(brand)s",
|
||||
"download_brand_desktop": "下載 %(brand)s 桌面版",
|
||||
"qr_or_app_links": "%(qrCode)s 或 %(appLinks)s",
|
||||
"download_app_store": "在 App Store 上下載",
|
||||
"download_google_play": "在 Google Play 上取得",
|
||||
"download_f_droid": "在 F-Droid 上取得",
|
||||
"apple_trademarks": "App Store® 與 Apple logo® 是 Apple Inc 的註冊商標。",
|
||||
"google_trademarks": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。"
|
||||
},
|
||||
"settings": {
|
||||
"show_breadcrumbs": "在聊天室清單上方顯示最近看過的聊天室的捷徑",
|
||||
|
@ -3595,7 +3539,24 @@
|
|||
"error_fetching_file": "取得檔案錯誤",
|
||||
"file_attached": "已附加檔案",
|
||||
"fetching_events": "正在取得事件…",
|
||||
"creating_output": "正在建立輸出…"
|
||||
"creating_output": "正在建立輸出…",
|
||||
"processing": "正在處理…",
|
||||
"enter_number_between_min_max": "輸入介於 %(min)s 至 %(max)s 間的數字",
|
||||
"size_limit_min_max": "大小只能是 %(min)s MB 至 %(max)s MB 間的數字",
|
||||
"num_messages_min_max": "訊息數只能是 %(min)s MB 至 %(max)s MB 間的數字",
|
||||
"num_messages": "訊息數",
|
||||
"cancelled": "匯出已取消",
|
||||
"cancelled_detail": "匯出已成功取消",
|
||||
"successful": "匯出成功",
|
||||
"successful_detail": "您匯出成功。請在您的下載資料夾中尋找它。",
|
||||
"confirm_stop": "您確定您要停止匯出您的資料嗎?若您這麼做,您就必須重新開始。",
|
||||
"exporting_your_data": "正在匯出您的資料",
|
||||
"title": "匯出聊天",
|
||||
"select_option": "從下面的選項中選擇以從您的時間軸匯出聊天",
|
||||
"format": "格式",
|
||||
"messages": "訊息",
|
||||
"size_limit": "大小限制",
|
||||
"include_attachments": "包含附件"
|
||||
},
|
||||
"create_room": {
|
||||
"title_video_room": "建立視訊聊天室",
|
||||
|
@ -4009,7 +3970,6 @@
|
|||
"unsupported": "不支援通話",
|
||||
"unsupported_browser": "您無法在此瀏覽器中通話。"
|
||||
},
|
||||
"Messages": "訊息",
|
||||
"Other": "其他",
|
||||
"Advanced": "進階",
|
||||
"room_settings": {
|
||||
|
@ -4097,5 +4057,53 @@
|
|||
"spaceinvaders_message": "傳送太空侵略者",
|
||||
"hearts_description": "與愛心一同傳送指定的訊息",
|
||||
"hearts_message": "傳送愛心"
|
||||
},
|
||||
"spaces": {
|
||||
"error_no_permission_invite": "您沒有權限邀請夥伴到此聊天空間",
|
||||
"error_no_permission_create_room": "您沒有權限在此聊天空間中建立新聊天室",
|
||||
"error_no_permission_add_room": "您沒有權限在此聊天空間中新增聊天室",
|
||||
"error_no_permission_add_space": "您沒有權限向此聊天空間新增聊天空間"
|
||||
},
|
||||
"auth": {
|
||||
"continue_with_idp": "使用下列帳號繼續:%(provider)s",
|
||||
"sign_in_with_sso": "以單一登入來登入",
|
||||
"sso": "單一登入",
|
||||
"reset_password_action": "重設密碼",
|
||||
"reset_password_title": "重新設定您的密碼"
|
||||
},
|
||||
"room_list": {
|
||||
"sort_unread_first": "先顯示有未讀訊息的聊天室",
|
||||
"show_previews": "顯示訊息預覽",
|
||||
"sort_by": "排序方式",
|
||||
"sort_by_activity": "訊息順序",
|
||||
"sort_by_alphabet": "A-Z",
|
||||
"sublist_options": "列表選項",
|
||||
"show_n_more": {
|
||||
"other": "再顯示 %(count)s 個",
|
||||
"one": "再顯示 %(count)s 個"
|
||||
},
|
||||
"show_less": "顯示更少",
|
||||
"notification_options": "通知選項"
|
||||
},
|
||||
"report_content": {
|
||||
"missing_reason": "請填寫為什麼您要回報。",
|
||||
"unable_create_room_moderation_bot": "無法使用審核機器人建立聊天室",
|
||||
"ignore_user": "忽略使用者",
|
||||
"hide_messages_from_user": "若想隱藏來自該使用者所有目前與未來的訊息,請打勾。",
|
||||
"nature_disagreement": "該使用者所寫的內容是錯誤的。\n這將會回報給聊天室管理員。",
|
||||
"nature_toxic": "該使用者表現出不良行為,例如侮辱其他使用者,或在適合家庭的聊天室中分享成人內容,又或是以其他方式違反該聊天室的規則。\n將回報給聊天室版主。",
|
||||
"nature_illegal": "該使用者進行違法行為,例如洩漏他人個資,或威脅使用暴力。\n將會回報給聊天室版主,他們可能會將其回報給執法單位。",
|
||||
"nature_spam": "該使用者傳送廣告、廣告連結或宣傳等垃圾訊息至聊天室。\n將會回報給聊天室版主。",
|
||||
"report_to_homeserver_encrypted": "此聊天室有違法或有毒的內容,或是管理員無法審核違法或有問題的內容。\n這將會回報給 %(homeserver)s 的管理員。管理員無法閱讀此聊天室的加密內容。",
|
||||
"report_to_homeserver": "此聊天室被用於討論違法或有問題的內容,或是版主未移除違法或有問題的內容。\n將會回報給 %(homeserver)s 的管理員。",
|
||||
"nature_other": "任何其他理由。請描述問題。\n將會回報給聊天室版主。",
|
||||
"nature": "請挑選性質並描述此訊息為什麼是濫用。",
|
||||
"disagree": "不同意",
|
||||
"toxic_behaviour": "有問題的行為",
|
||||
"illegal_content": "違法內容",
|
||||
"spam_or_propaganda": "垃圾郵件或宣傳",
|
||||
"report_entire_room": "回報整個聊天室",
|
||||
"report_content_to_homeserver": "回報內容給您的家伺服器管理員",
|
||||
"description": "回報此訊息將會傳送其獨特的「活動 ID」給您家伺服器的管理員。如果此聊天室中的訊息已加密,您的家伺服器管理員將無法閱讀訊息文字或檢視任何檔案或圖片。"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue