Migrate more strings to translation keys (#11498)

This commit is contained in:
Michael Telatynski 2023-08-31 11:22:10 +01:00 committed by GitHub
parent 9329b896b3
commit 6b3243b27b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
89 changed files with 1495 additions and 1491 deletions

View file

@ -31,6 +31,6 @@ export function textualPowerLevel(level: number, usersDefault: number): string {
if (LEVEL_ROLE_MAP[level]) { if (LEVEL_ROLE_MAP[level]) {
return LEVEL_ROLE_MAP[level]; return LEVEL_ROLE_MAP[level];
} else { } else {
return _t("Custom (%(level)s)", { level }); return _t("power_level|custom", { level });
} }
} }

View file

@ -56,7 +56,7 @@ const getUIOnlyShortcuts = (): IKeyboardShortcuts => {
default: { default: {
key: Key.ENTER, key: Key.ENTER,
}, },
displayName: _td("Complete"), displayName: _td("action|complete"),
}, },
[KeyBindingAction.ForceCompleteAutocomplete]: { [KeyBindingAction.ForceCompleteAutocomplete]: {
default: { default: {

View file

@ -601,7 +601,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent<IProp
<div>{_t("Restore your key backup to upgrade your encryption")}</div> <div>{_t("Restore your key backup to upgrade your encryption")}</div>
</div> </div>
); );
nextCaption = _t("Restore"); nextCaption = _t("action|restore");
} else { } else {
authPrompt = <p>{_t("You'll need to authenticate with the server to confirm the upgrade.")}</p>; authPrompt = <p>{_t("You'll need to authenticate with the server to confirm the upgrade.")}</p>;
} }

View file

@ -176,7 +176,7 @@ export default class EmojiProvider extends AutocompleteProvider {
} }
public getName(): string { public getName(): string {
return "😃 " + _t("Emoji"); return "😃 " + _t("common|emoji");
} }
public renderCompletions(completions: React.ReactNode[]): React.ReactNode { public renderCompletions(completions: React.ReactNode[]): React.ReactNode {

View file

@ -897,7 +897,7 @@ const SpaceHierarchy: React.FC<IProps> = ({ space, initialText = "", showRoom, a
className="mx_SpaceHierarchy_list" className="mx_SpaceHierarchy_list"
onKeyDown={onKeyDownHandler} onKeyDown={onKeyDownHandler}
role="tree" role="tree"
aria-label={_t("Space")} aria-label={_t("common|space")}
> >
{results} {results}
</ul> </ul>

View file

@ -304,8 +304,8 @@ const SpaceSetupFirstRooms: React.FC<{
const [busy, setBusy] = useState(false); const [busy, setBusy] = useState(false);
const [error, setError] = useState(""); const [error, setError] = useState("");
const numFields = 3; const numFields = 3;
const placeholders = [_t("General"), _t("Random"), _t("Support")]; const placeholders = [_t("General"), _t("common|random"), _t("common|support")];
const [roomNames, setRoomName] = useStateArray(numFields, [_t("General"), _t("Random"), ""]); const [roomNames, setRoomName] = useStateArray(numFields, [_t("General"), _t("common|random"), ""]);
const fields = new Array(numFields).fill(0).map((x, i) => { const fields = new Array(numFields).fill(0).map((x, i) => {
const name = "roomName" + i; const name = "roomName" + i;
return ( return (

View file

@ -62,7 +62,7 @@ export default class PlayPauseButton extends React.PureComponent<IProps> {
<AccessibleTooltipButton <AccessibleTooltipButton
data-testid="play-pause-button" data-testid="play-pause-button"
className={classes} className={classes}
title={isPlaying ? _t("Pause") : _t("Play")} title={isPlaying ? _t("action|pause") : _t("action|play")}
onClick={this.onClick} onClick={this.onClick}
disabled={isDisabled} disabled={isDisabled}
{...restProps} {...restProps}

View file

@ -163,7 +163,7 @@ export default class LoginWithQRFlow extends React.Component<IProps> {
kind="primary" kind="primary"
onClick={this.handleClick(Click.Approve)} onClick={this.handleClick(Click.Approve)}
> >
{_t("Approve")} {_t("action|approve")}
</AccessibleButton> </AccessibleButton>
</> </>
); );

View file

@ -536,7 +536,12 @@ export default class RegistrationForm extends React.PureComponent<IProps, IState
public render(): ReactNode { public render(): ReactNode {
const registerButton = ( const registerButton = (
<input className="mx_Login_submit" type="submit" value={_t("Register")} disabled={!this.props.canSubmit} /> <input
className="mx_Login_submit"
type="submit"
value={_t("action|register")}
disabled={!this.props.canSubmit}
/>
); );
let emailHelperText: JSX.Element | undefined; let emailHelperText: JSX.Element | undefined;

View file

@ -197,7 +197,7 @@ const SpaceContextMenu: React.FC<IProps> = ({ space, hideHeader, onFinished, ...
<IconizedContextMenuOption <IconizedContextMenuOption
data-testid="new-subspace-option" data-testid="new-subspace-option"
iconClassName="mx_SpacePanel_iconPlus" iconClassName="mx_SpacePanel_iconPlus"
label={_t("Space")} label={_t("common|space")}
onClick={onNewSubspaceClick} onClick={onNewSubspaceClick}
> >
<BetaPill /> <BetaPill />
@ -254,7 +254,7 @@ const SpaceContextMenu: React.FC<IProps> = ({ space, hideHeader, onFinished, ...
/> />
<IconizedContextMenuOption <IconizedContextMenuOption
iconClassName="mx_SpacePanel_iconPreferences" iconClassName="mx_SpacePanel_iconPreferences"
label={_t("Preferences")} label={_t("common|preferences")}
onClick={onPreferencesClick} onClick={onPreferencesClick}
/> />
{devtoolsOption} {devtoolsOption}

View file

@ -86,7 +86,7 @@ const SpacePreferencesDialog: React.FC<IProps> = ({ space, initialTabId, onFinis
className="mx_SpacePreferencesDialog" className="mx_SpacePreferencesDialog"
hasCancel hasCancel
onFinished={onFinished} onFinished={onFinished}
title={_t("Preferences")} title={_t("common|preferences")}
fixedWidth={false} fixedWidth={false}
> >
<h4> <h4>

View file

@ -104,7 +104,7 @@ export default class UserSettingsDialog extends React.Component<IProps, IState>
tabs.push( tabs.push(
new Tab( new Tab(
UserTab.Preferences, UserTab.Preferences,
_td("Preferences"), _td("common|preferences"),
"mx_UserSettingsDialog_preferencesIcon", "mx_UserSettingsDialog_preferencesIcon",
<PreferencesUserSettingsTab closeSettingsFn={this.props.onFinished} />, <PreferencesUserSettingsTab closeSettingsFn={this.props.onFinished} />,
"UserSettingsPreferences", "UserSettingsPreferences",

View file

@ -127,7 +127,7 @@ export default class WidgetCapabilitiesPromptDialog extends React.PureComponent<
<div className="text-muted">{_t("This widget would like to:")}</div> <div className="text-muted">{_t("This widget would like to:")}</div>
{checkboxRows} {checkboxRows}
<DialogButtons <DialogButtons
primaryButton={_t("Approve")} primaryButton={_t("action|approve")}
cancelButton={_t("Decline All")} cancelButton={_t("Decline All")}
onPrimaryButtonClick={this.onSubmit} onPrimaryButtonClick={this.onSubmit}
onCancel={this.onReject} onCancel={this.onReject}

View file

@ -214,7 +214,7 @@ export default class ReactionsRow extends React.PureComponent<IProps, IState> {
items = items.slice(0, MAX_ITEMS_WHEN_LIMITED); items = items.slice(0, MAX_ITEMS_WHEN_LIMITED);
showAllButton = ( showAllButton = (
<AccessibleButton kind="link_inline" className="mx_ReactionsRow_showAll" onClick={this.onShowAllClick}> <AccessibleButton kind="link_inline" className="mx_ReactionsRow_showAll" onClick={this.onShowAllClick}>
{_t("Show all")} {_t("action|show_all")}
</AccessibleButton> </AccessibleButton>
); );
} }

View file

@ -60,7 +60,7 @@ export function EmojiButton({ addEmoji, menuPosition, className }: IEmojiButtonP
className={computedClassName} className={computedClassName}
iconClassName="mx_EmojiButton_icon" iconClassName="mx_EmojiButton_icon"
onClick={openMenu} onClick={openMenu}
title={_t("Emoji")} title={_t("common|emoji")}
inputRef={button} inputRef={button}
/> />

View file

@ -31,8 +31,8 @@ export enum PowerStatus {
} }
const PowerLabel: Record<PowerStatus, TranslationKey> = { const PowerLabel: Record<PowerStatus, TranslationKey> = {
[PowerStatus.Admin]: _td("Admin"), [PowerStatus.Admin]: _td("power_level|admin"),
[PowerStatus.Moderator]: _td("Mod"), [PowerStatus.Moderator]: _td("power_level|mod"),
}; };
export type PresenceState = "offline" | "online" | "unavailable"; export type PresenceState = "offline" | "online" | "unavailable";

View file

@ -247,7 +247,7 @@ export default class SetIdServer extends React.Component<IProps, IState> {
{}, {},
{ idserver: (sub) => <b>{abbreviateUrl(this.state.currentClientIdServer)}</b> }, { idserver: (sub) => <b>{abbreviateUrl(this.state.currentClientIdServer)}</b> },
), ),
button: _t("Disconnect"), button: _t("action|disconnect"),
}); });
if (confirmed) { if (confirmed) {
this.disconnectIdServer(); this.disconnectIdServer();
@ -404,7 +404,7 @@ export default class SetIdServer extends React.Component<IProps, IState> {
let discoSection; let discoSection;
if (idServerUrl) { if (idServerUrl) {
let discoButtonContent: React.ReactNode = _t("Disconnect"); let discoButtonContent: React.ReactNode = _t("action|disconnect");
let discoBodyText = _t( let discoBodyText = _t(
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.",
); );
@ -448,7 +448,7 @@ export default class SetIdServer extends React.Component<IProps, IState> {
onClick={this.checkIdServer} onClick={this.checkIdServer}
disabled={!this.idServerChangeEnabled()} disabled={!this.idServerChangeEnabled()}
> >
{_t("Change")} {_t("action|change")}
</AccessibleButton> </AccessibleButton>
{discoSection} {discoSection}
</form> </form>

View file

@ -139,7 +139,7 @@ export const DeviceDetailHeading: React.FC<Props> = ({ device, saveDeviceName })
className="mx_DeviceDetailHeading_renameCta" className="mx_DeviceDetailHeading_renameCta"
data-testid="device-heading-rename-cta" data-testid="device-heading-rename-cta"
> >
{_t("Rename")} {_t("action|rename")}
</AccessibleButton> </AccessibleButton>
</div> </div>
); );

View file

@ -160,7 +160,7 @@ const NoResults: React.FC<NoResultsProps> = ({ filter, clearFilter }) => (
<> <>
&nbsp; &nbsp;
<AccessibleButton kind="link_inline" onClick={clearFilter} data-testid="devices-clear-filter-btn"> <AccessibleButton kind="link_inline" onClick={clearFilter} data-testid="devices-clear-filter-btn">
{_t("Show all")} {_t("action|show_all")}
</AccessibleButton> </AccessibleButton>
</> </>
) )
@ -353,7 +353,7 @@ export const FilteredDeviceList = forwardRef(
value={filter || ALL_FILTER_ID} value={filter || ALL_FILTER_ID}
onOptionChange={onFilterOptionChange} onOptionChange={onFilterOptionChange}
options={options} options={options}
selectedLabel={_t("Show")} selectedLabel={_t("action|show")}
/> />
)} )}
</FilteredDeviceListHeader> </FilteredDeviceListHeader>

View file

@ -74,7 +74,7 @@ const SecurityRecommendations: React.FC<Props> = ({ devices, currentDeviceId, go
onClick={() => goToFilteredList(DeviceSecurityVariation.Unverified)} onClick={() => goToFilteredList(DeviceSecurityVariation.Unverified)}
data-testid="unverified-devices-cta" data-testid="unverified-devices-cta"
> >
{_t("View all") + ` (${unverifiedDevicesCount})`} {_t("action|view_all") + ` (${unverifiedDevicesCount})`}
</AccessibleButton> </AccessibleButton>
</DeviceSecurityCard> </DeviceSecurityCard>
)} )}
@ -99,7 +99,7 @@ const SecurityRecommendations: React.FC<Props> = ({ devices, currentDeviceId, go
onClick={() => goToFilteredList(DeviceSecurityVariation.Inactive)} onClick={() => goToFilteredList(DeviceSecurityVariation.Inactive)}
data-testid="inactive-devices-cta" data-testid="inactive-devices-cta"
> >
{_t("View all") + ` (${inactiveDevicesCount})`} {_t("action|view_all") + ` (${inactiveDevicesCount})`}
</AccessibleButton> </AccessibleButton>
</DeviceSecurityCard> </DeviceSecurityCard>
</> </>

View file

@ -185,7 +185,7 @@ export class EmailAddress extends React.Component<IEmailAddressProps, IEmailAddr
onClick={this.onContinueClick} onClick={this.onContinueClick}
disabled={this.state.continueDisabled} disabled={this.state.continueDisabled}
> >
{_t("Complete")} {_t("action|complete")}
</AccessibleButton> </AccessibleButton>
</span> </span>
); );
@ -197,7 +197,7 @@ export class EmailAddress extends React.Component<IEmailAddressProps, IEmailAddr
onClick={this.onRevokeClick} onClick={this.onRevokeClick}
disabled={this.props.disabled} disabled={this.props.disabled}
> >
{_t("Revoke")} {_t("action|revoke")}
</AccessibleButton> </AccessibleButton>
); );
} else { } else {

View file

@ -205,7 +205,7 @@ export class PhoneNumber extends React.Component<IPhoneNumberProps, IPhoneNumber
onClick={this.onRevokeClick} onClick={this.onRevokeClick}
disabled={this.props.disabled} disabled={this.props.disabled}
> >
{_t("Revoke")} {_t("action|revoke")}
</AccessibleButton> </AccessibleButton>
); );
} else { } else {

View file

@ -106,7 +106,7 @@ export default function NotificationSettings2(): JSX.Element {
{hasPendingChanges && model !== null && ( {hasPendingChanges && model !== null && (
<SettingsBanner <SettingsBanner
icon={<img src={NewAndImprovedIcon} alt="" width={12} />} icon={<img src={NewAndImprovedIcon} alt="" width={12} />}
action={_t("Proceed")} action={_t("action|proceed")}
onAction={() => reconcile(model!)} onAction={() => reconcile(model!)}
> >
{_t( {_t(

View file

@ -94,7 +94,7 @@ const Knock: VFC<{
disabled={!canKick || disabled} disabled={!canKick || disabled}
kind="icon_primary_outline" kind="icon_primary_outline"
onClick={() => handleDeny(roomMember.userId)} onClick={() => handleDeny(roomMember.userId)}
title={_t("Deny")} title={_t("action|deny")}
> >
<XIcon width={18} height={18} /> <XIcon width={18} height={18} />
</AccessibleButton> </AccessibleButton>
@ -103,7 +103,7 @@ const Knock: VFC<{
disabled={!canInvite || disabled} disabled={!canInvite || disabled}
kind="icon_primary" kind="icon_primary"
onClick={() => handleApprove(roomMember.userId)} onClick={() => handleApprove(roomMember.userId)}
title={_t("Approve")} title={_t("action|approve")}
> >
<CheckIcon width={18} height={18} /> <CheckIcon width={18} height={18} />
</AccessibleButton> </AccessibleButton>

View file

@ -121,7 +121,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
} }
return ( return (
<SettingsSubsection heading={_t("Legal")}> <SettingsSubsection heading={_t("common|legal")}>
<SettingsSubsectionText>{legalLinks}</SettingsSubsectionText> <SettingsSubsectionText>{legalLinks}</SettingsSubsectionText>
</SettingsSubsection> </SettingsSubsection>
); );
@ -131,7 +131,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
// Note: This is not translated because it is legal text. // Note: This is not translated because it is legal text.
// Also, &nbsp; is ugly but necessary. // Also, &nbsp; is ugly but necessary.
return ( return (
<SettingsSubsection heading={_t("Credits")}> <SettingsSubsection heading={_t("common|credits")}>
<SettingsSubsectionText> <SettingsSubsectionText>
<ul> <ul>
<li> <li>
@ -308,7 +308,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
<SettingsTab> <SettingsTab>
<SettingsSection heading={_t("Help & About")}> <SettingsSection heading={_t("Help & About")}>
{bugReportingSection} {bugReportingSection}
<SettingsSubsection heading={_t("FAQ")} description={faqText} /> <SettingsSubsection heading={_t("common|faq")} description={faqText} />
<SettingsSubsection heading={_t("Versions")}> <SettingsSubsection heading={_t("Versions")}>
<SettingsSubsectionText> <SettingsSubsectionText>
<CopyableText getTextToCopy={this.getVersionTextToCopy}> <CopyableText getTextToCopy={this.getVersionTextToCopy}>
@ -349,7 +349,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
)} )}
<SettingsSubsectionText> <SettingsSubsectionText>
<details> <details>
<summary>{_t("Access Token")}</summary> <summary>{_t("common|access_token")}</summary>
<b> <b>
{_t( {_t(
"Your access token gives full access to your account. Do not share it with anyone.", "Your access token gives full access to your account. Do not share it with anyone.",

View file

@ -225,7 +225,7 @@ export default class MjolnirUserSettingsTab extends React.Component<{}, IState>
onClick={() => this.unsubscribeFromList(list)} onClick={() => this.unsubscribeFromList(list)}
disabled={this.state.busy} disabled={this.state.busy}
> >
{_t("Unsubscribe")} {_t("action|unsubscribe")}
</AccessibleButton> </AccessibleButton>
&nbsp; &nbsp;
<AccessibleButton <AccessibleButton
@ -326,7 +326,7 @@ export default class MjolnirUserSettingsTab extends React.Component<{}, IState>
onClick={this.onSubscribeList} onClick={this.onSubscribeList}
disabled={this.state.busy} disabled={this.state.busy}
> >
{_t("Subscribe")} {_t("action|subscribe")}
</AccessibleButton> </AccessibleButton>
</form> </form>
</SettingsSubsection> </SettingsSubsection>

View file

@ -145,7 +145,7 @@ export default class PreferencesUserSettingsTab extends React.Component<IProps,
return ( return (
<SettingsTab data-testid="mx_PreferencesUserSettingsTab"> <SettingsTab data-testid="mx_PreferencesUserSettingsTab">
<SettingsSection heading={_t("Preferences")}> <SettingsSection heading={_t("common|preferences")}>
{roomListSettings.length > 0 && ( {roomListSettings.length > 0 && (
<SettingsSubsection heading={_t("Room list")}> <SettingsSubsection heading={_t("Room list")}>
{this.renderGroup(roomListSettings)} {this.renderGroup(roomListSettings)}
@ -178,7 +178,7 @@ export default class PreferencesUserSettingsTab extends React.Component<IProps,
</SettingsSubsection> </SettingsSubsection>
<SettingsSubsection <SettingsSubsection
heading={_t("Presence")} heading={_t("common|presence")}
description={_t("Share your activity and status with others.")} description={_t("Share your activity and status with others.")}
> >
{this.renderGroup(PreferencesUserSettingsTab.PRESENCE_SETTINGS)} {this.renderGroup(PreferencesUserSettingsTab.PRESENCE_SETTINGS)}
@ -196,7 +196,7 @@ export default class PreferencesUserSettingsTab extends React.Component<IProps,
{this.renderGroup(PreferencesUserSettingsTab.IMAGES_AND_VIDEOS_SETTINGS)} {this.renderGroup(PreferencesUserSettingsTab.IMAGES_AND_VIDEOS_SETTINGS)}
</SettingsSubsection> </SettingsSubsection>
<SettingsSubsection heading={_t("Timeline")}> <SettingsSubsection heading={_t("common|timeline")}>
{this.renderGroup(PreferencesUserSettingsTab.TIMELINE_SETTINGS)} {this.renderGroup(PreferencesUserSettingsTab.TIMELINE_SETTINGS)}
</SettingsSubsection> </SettingsSubsection>

View file

@ -317,7 +317,7 @@ export default class SecurityUserSettingsTab extends React.Component<IProps, ISt
}); });
}; };
privacySection = ( privacySection = (
<SettingsSection heading={_t("Privacy")}> <SettingsSection heading={_t("common|privacy")}>
<SettingsSubsection <SettingsSubsection
heading={_t("common|analytics")} heading={_t("common|analytics")}
description={_t( description={_t(

View file

@ -169,10 +169,10 @@ export default class VoiceUserSettingsTab extends React.Component<{}, IState> {
speakerDropdown = this.renderDropdown(MediaDeviceKindEnum.AudioOutput, _t("Audio Output")) || ( speakerDropdown = this.renderDropdown(MediaDeviceKindEnum.AudioOutput, _t("Audio Output")) || (
<p>{_t("No Audio Outputs detected")}</p> <p>{_t("No Audio Outputs detected")}</p>
); );
microphoneDropdown = this.renderDropdown(MediaDeviceKindEnum.AudioInput, _t("Microphone")) || ( microphoneDropdown = this.renderDropdown(MediaDeviceKindEnum.AudioInput, _t("common|microphone")) || (
<p>{_t("No Microphones detected")}</p> <p>{_t("No Microphones detected")}</p>
); );
webcamDropdown = this.renderDropdown(MediaDeviceKindEnum.VideoInput, _t("Camera")) || ( webcamDropdown = this.renderDropdown(MediaDeviceKindEnum.VideoInput, _t("common|camera")) || (
<p>{_t("No Webcams detected")}</p> <p>{_t("No Webcams detected")}</p>
); );
} }

View file

@ -88,7 +88,6 @@
"Restricted": "مقيد", "Restricted": "مقيد",
"Moderator": "مشرف", "Moderator": "مشرف",
"Admin": "مدير", "Admin": "مدير",
"Custom (%(level)s)": "(%(level)s) مخصص",
"Failed to invite": "فشلت الدعوة", "Failed to invite": "فشلت الدعوة",
"Operation failed": "فشلت العملية", "Operation failed": "فشلت العملية",
"You need to be logged in.": "عليك الولوج.", "You need to be logged in.": "عليك الولوج.",
@ -289,7 +288,6 @@
"Message deleted by %(name)s": "حذف الرسالة %(name)s", "Message deleted by %(name)s": "حذف الرسالة %(name)s",
"Message deleted": "حُذفت الرسالة", "Message deleted": "حُذفت الرسالة",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>تفاعلو ب%(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>تفاعلو ب%(shortName)s</reactedWith>",
"Show all": "أظهر الكل",
"Error decrypting video": "تعذر فك تشفير الفيديو", "Error decrypting video": "تعذر فك تشفير الفيديو",
"You sent a verification request": "أنت أرسلت طلب تحقق", "You sent a verification request": "أنت أرسلت طلب تحقق",
"%(name)s wants to verify": "%(name)s يريد التحقق", "%(name)s wants to verify": "%(name)s يريد التحقق",
@ -498,7 +496,6 @@
"Ignored users": "المستخدمون المتجاهَلون", "Ignored users": "المستخدمون المتجاهَلون",
"You are currently subscribed to:": "أنت مشترك حاليا ب:", "You are currently subscribed to:": "أنت مشترك حاليا ب:",
"View rules": "عرض القواعد", "View rules": "عرض القواعد",
"Unsubscribe": "إلغاء الاشتراك",
"You are not subscribed to any lists": "أنت غير مشترك في أي قوائم", "You are not subscribed to any lists": "أنت غير مشترك في أي قوائم",
"You are currently ignoring:": "حاليًّا أنت متجاهل:", "You are currently ignoring:": "حاليًّا أنت متجاهل:",
"You have not ignored anyone.": "أنت لم تتجاهل أحداً.", "You have not ignored anyone.": "أنت لم تتجاهل أحداً.",
@ -517,14 +514,11 @@
"Clear cache and reload": "محو مخزن الجيب وإعادة التحميل", "Clear cache and reload": "محو مخزن الجيب وإعادة التحميل",
"%(brand)s version:": "إصدار %(brand)s:", "%(brand)s version:": "إصدار %(brand)s:",
"Versions": "الإصدارات", "Versions": "الإصدارات",
"FAQ": "اسئلة شائعة",
"Help & About": "المساعدة وعن البرنامج", "Help & About": "المساعدة وعن البرنامج",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "للإبلاغ عن مشكلة أمنية متعلقة بMatrix ، يرجى قراءة <a>سياسة الإفصاح الأمني</a> في Matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "للإبلاغ عن مشكلة أمنية متعلقة بMatrix ، يرجى قراءة <a>سياسة الإفصاح الأمني</a> في Matrix.org.",
"Chat with %(brand)s Bot": "تخاطب مع الروبوت الخاص ب%(brand)s", "Chat with %(brand)s Bot": "تخاطب مع الروبوت الخاص ب%(brand)s",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "للمساعدة في استخدام %(brand)s ، انقر <a> هنا </a> أو ابدأ محادثة مع برنامج الروبوت الخاص بنا باستخدام الزر أدناه.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "للمساعدة في استخدام %(brand)s ، انقر <a> هنا </a> أو ابدأ محادثة مع برنامج الروبوت الخاص بنا باستخدام الزر أدناه.",
"For help with using %(brand)s, click <a>here</a>.": "للمساعدة في استخدام %(brand)s انقر <a>هنا</a>.", "For help with using %(brand)s, click <a>here</a>.": "للمساعدة في استخدام %(brand)s انقر <a>هنا</a>.",
"Credits": "رصيد",
"Legal": "قانوني",
"General": "عام", "General": "عام",
"Discovery": "الاكتشاف", "Discovery": "الاكتشاف",
"Deactivate account": "تعطيل الحساب", "Deactivate account": "تعطيل الحساب",
@ -551,7 +545,6 @@
"Check for update": "ابحث عن تحديث", "Check for update": "ابحث عن تحديث",
"Error encountered (%(errorDetail)s).": "صودِفَ خطأ: (%(errorDetail)s).", "Error encountered (%(errorDetail)s).": "صودِفَ خطأ: (%(errorDetail)s).",
"Manage integrations": "إدارة التكاملات", "Manage integrations": "إدارة التكاملات",
"Change": "تغيير",
"Enter a new identity server": "أدخل خادم هوية جديدًا", "Enter a new identity server": "أدخل خادم هوية جديدًا",
"Do not use an identity server": "لا تستخدم خادم هوية", "Do not use an identity server": "لا تستخدم خادم هوية",
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "استخدام خادم الهوية اختياري. إذا اخترت عدم استخدام خادم هوية ، فلن يتمكن المستخدمون الآخرون من اكتشافك ولن تتمكن من دعوة الآخرين عبر البريد الإلكتروني أو الهاتف.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "استخدام خادم الهوية اختياري. إذا اخترت عدم استخدام خادم هوية ، فلن يتمكن المستخدمون الآخرون من اكتشافك ولن تتمكن من دعوة الآخرين عبر البريد الإلكتروني أو الهاتف.",
@ -567,7 +560,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "تحقق من المكونات الإضافية للمتصفح الخاص بك بحثًا عن أي شيء قد يحظر خادم الهوية (مثل Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "تحقق من المكونات الإضافية للمتصفح الخاص بك بحثًا عن أي شيء قد يحظر خادم الهوية (مثل Privacy Badger)",
"You should:": "يجب عليك:", "You should:": "يجب عليك:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "لابد من محو <b>بيانات الشخصية</b> من خادم الهوية <idserver /> قبل الانفصال. لسوء الحظ ، خادم الهوية <idserver /> حاليًّا خارج الشبكة أو لا يمكن الوصول إليه.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "لابد من محو <b>بيانات الشخصية</b> من خادم الهوية <idserver /> قبل الانفصال. لسوء الحظ ، خادم الهوية <idserver /> حاليًّا خارج الشبكة أو لا يمكن الوصول إليه.",
"Disconnect": "فصل",
"Disconnect from the identity server <idserver />?": "انفصل عن خادم الهوية <idserver />؟", "Disconnect from the identity server <idserver />?": "انفصل عن خادم الهوية <idserver />؟",
"Disconnect identity server": "افصل خادم الهوية", "Disconnect identity server": "افصل خادم الهوية",
"The identity server you have chosen does not have any terms of service.": "خادم الهوية الذي اخترت ليس له شروط خدمة.", "The identity server you have chosen does not have any terms of service.": "خادم الهوية الذي اخترت ليس له شروط خدمة.",
@ -803,13 +795,11 @@
"%(senderName)s joined the call": "%(senderName)s انضم للمكالمة", "%(senderName)s joined the call": "%(senderName)s انضم للمكالمة",
"You joined the call": "لقد انضممت إلى المكالمة", "You joined the call": "لقد انضممت إلى المكالمة",
"Please contact your homeserver administrator.": "يُرجى تواصلك مع مدير خادمك.", "Please contact your homeserver administrator.": "يُرجى تواصلك مع مدير خادمك.",
"Guest": "ضيف",
"New version of %(brand)s is available": "يتوفر إصدار جديد من %(brand)s", "New version of %(brand)s is available": "يتوفر إصدار جديد من %(brand)s",
"Update %(brand)s": "حدّث: %(brand)s", "Update %(brand)s": "حدّث: %(brand)s",
"New login. Was this you?": "تسجيل دخول جديد. هل كان ذاك أنت؟", "New login. Was this you?": "تسجيل دخول جديد. هل كان ذاك أنت؟",
"Other users may not trust it": "قد لا يثق به المستخدمون الآخرون", "Other users may not trust it": "قد لا يثق به المستخدمون الآخرون",
"This event could not be displayed": "تعذر عرض هذا الحدث", "This event could not be displayed": "تعذر عرض هذا الحدث",
"Mod": "مشرف",
"Edit message": "تعديل الرسالة", "Edit message": "تعديل الرسالة",
"Everyone in this room is verified": "تم التحقق من جميع من في هذه الغرفة", "Everyone in this room is verified": "تم التحقق من جميع من في هذه الغرفة",
"This room is end-to-end encrypted": "هذه الغرفة مشفرة من طرف إلى طرف", "This room is end-to-end encrypted": "هذه الغرفة مشفرة من طرف إلى طرف",
@ -834,10 +824,8 @@
"Incorrect verification code": "رمز التحقق غير صحيح", "Incorrect verification code": "رمز التحقق غير صحيح",
"Unable to verify phone number.": "تعذر التحقق من رقم الهاتف.", "Unable to verify phone number.": "تعذر التحقق من رقم الهاتف.",
"Unable to share phone number": "تعذرت مشاركة رقم الهاتف", "Unable to share phone number": "تعذرت مشاركة رقم الهاتف",
"Revoke": "إبطال",
"Unable to revoke sharing for phone number": "تعذر إبطال مشاركة رقم الهاتف", "Unable to revoke sharing for phone number": "تعذر إبطال مشاركة رقم الهاتف",
"Discovery options will appear once you have added an email above.": "ستظهر خيارات الاكتشاف بمجرد إضافة بريد إلكتروني أعلاه.", "Discovery options will appear once you have added an email above.": "ستظهر خيارات الاكتشاف بمجرد إضافة بريد إلكتروني أعلاه.",
"Complete": "تام",
"Verify the link in your inbox": "تحقق من الرابط في بريدك الوارد", "Verify the link in your inbox": "تحقق من الرابط في بريدك الوارد",
"Unable to verify email address.": "تعذر التحقق من عنوان البريد الإلكتروني.", "Unable to verify email address.": "تعذر التحقق من عنوان البريد الإلكتروني.",
"Click the link in the email you received to verify and then click continue again.": "انقر الرابط الواصل لبريدك الإلكتروني للتحقق ثم انقر \"متابعة\" مرة أخرى.", "Click the link in the email you received to verify and then click continue again.": "انقر الرابط الواصل لبريدك الإلكتروني للتحقق ثم انقر \"متابعة\" مرة أخرى.",
@ -903,8 +891,6 @@
"Upgrade this room to the recommended room version": "قم بترقية هذه الغرفة إلى إصدار الغرفة الموصى به", "Upgrade this room to the recommended room version": "قم بترقية هذه الغرفة إلى إصدار الغرفة الموصى به",
"This room is not accessible by remote Matrix servers": "لا يمكن الوصول إلى هذه الغرفة بواسطة خوادم Matrix البعيدة", "This room is not accessible by remote Matrix servers": "لا يمكن الوصول إلى هذه الغرفة بواسطة خوادم Matrix البعيدة",
"Voice & Video": "الصوت والفيديو", "Voice & Video": "الصوت والفيديو",
"Camera": "كاميرا",
"Microphone": "ميكروفون",
"Audio Output": "مخرج الصوت", "Audio Output": "مخرج الصوت",
"No Webcams detected": "لم يتم الكشف عن كاميرات الويب", "No Webcams detected": "لم يتم الكشف عن كاميرات الويب",
"No Microphones detected": "لم يتم الكشف عن أجهزة ميكروفون", "No Microphones detected": "لم يتم الكشف عن أجهزة ميكروفون",
@ -913,7 +899,6 @@
"Missing media permissions, click the button below to request.": "إذن الوسائط مفقود ، انقر الزر أدناه لطلب الإذن.", "Missing media permissions, click the button below to request.": "إذن الوسائط مفقود ، انقر الزر أدناه لطلب الإذن.",
"You may need to manually permit %(brand)s to access your microphone/webcam": "قد تحتاج إلى السماح يدويًا ل%(brand)s s بالوصول إلى الميكروفون / كاميرا الويب", "You may need to manually permit %(brand)s to access your microphone/webcam": "قد تحتاج إلى السماح يدويًا ل%(brand)s s بالوصول إلى الميكروفون / كاميرا الويب",
"No media permissions": "لا إذن للوسائط", "No media permissions": "لا إذن للوسائط",
"Privacy": "الخصوصية",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "قام مسؤول الخادم بتعطيل التشفير من طرف إلى طرف أصلاً في الغرف الخاصة والرسائل الخاصّة.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "قام مسؤول الخادم بتعطيل التشفير من طرف إلى طرف أصلاً في الغرف الخاصة والرسائل الخاصّة.",
"Cross-signing": "التوقيع المتبادل", "Cross-signing": "التوقيع المتبادل",
"Message search": "بحث الرسائل", "Message search": "بحث الرسائل",
@ -927,13 +912,10 @@
"Import E2E room keys": "تعبئة مفاتيح E2E للغرف", "Import E2E room keys": "تعبئة مفاتيح E2E للغرف",
"<not supported>": "<غير معتمد>", "<not supported>": "<غير معتمد>",
"Autocomplete delay (ms)": "تأخير الإكمال التلقائي (مللي ثانية)", "Autocomplete delay (ms)": "تأخير الإكمال التلقائي (مللي ثانية)",
"Timeline": "الجدول الزمني",
"Composer": "الكاتب", "Composer": "الكاتب",
"Room list": "قائمة الغرفة", "Room list": "قائمة الغرفة",
"Preferences": "تفضلات",
"Always show the window menu bar": "أظهر شريط قائمة النافذة دائمًا", "Always show the window menu bar": "أظهر شريط قائمة النافذة دائمًا",
"Start automatically after system login": "ابدأ تلقائيًا بعد تسجيل الدخول إلى النظام", "Start automatically after system login": "ابدأ تلقائيًا بعد تسجيل الدخول إلى النظام",
"Subscribe": "اشتراك",
"Room ID or address of ban list": "معرف الغرفة أو عنوان قائمة الحظر", "Room ID or address of ban list": "معرف الغرفة أو عنوان قائمة الحظر",
"If this isn't what you want, please use a different tool to ignore users.": "إذا لم يكن هذا ما تريده ، فيرجى استخدام أداة مختلفة لتجاهل المستخدمين.", "If this isn't what you want, please use a different tool to ignore users.": "إذا لم يكن هذا ما تريده ، فيرجى استخدام أداة مختلفة لتجاهل المستخدمين.",
"Subscribing to a ban list will cause you to join it!": "سيؤدي الاشتراك في قائمة الحظر إلى انضمامك إليها!", "Subscribing to a ban list will cause you to join it!": "سيؤدي الاشتراك في قائمة الحظر إلى انضمامك إليها!",
@ -953,7 +935,6 @@
"Notifications": "الإشعارات", "Notifications": "الإشعارات",
"Don't miss a reply": "لا تفوت أي رد", "Don't miss a reply": "لا تفوت أي رد",
"Later": "لاحقاً", "Later": "لاحقاً",
"Review": "مراجعة",
"Unknown App": "تطبيق غير معروف", "Unknown App": "تطبيق غير معروف",
"Short keyboard patterns are easy to guess": "من السهل تخمين أنماط قصيرة من لوحة المفاتيح", "Short keyboard patterns are easy to guess": "من السهل تخمين أنماط قصيرة من لوحة المفاتيح",
"Straight rows of keys are easy to guess": "سهلٌ تخمين صفوف من المفاتيح", "Straight rows of keys are easy to guess": "سهلٌ تخمين صفوف من المفاتيح",
@ -1281,7 +1262,16 @@
"favourites": "مفضلات", "favourites": "مفضلات",
"dark": "مظلم", "dark": "مظلم",
"attachment": "المرفق", "attachment": "المرفق",
"appearance": "المظهر" "appearance": "المظهر",
"guest": "ضيف",
"legal": "قانوني",
"credits": "رصيد",
"faq": "اسئلة شائعة",
"preferences": "تفضلات",
"timeline": "الجدول الزمني",
"privacy": "الخصوصية",
"camera": "كاميرا",
"microphone": "ميكروفون"
}, },
"action": { "action": {
"continue": "واصِل", "continue": "واصِل",
@ -1325,7 +1315,15 @@
"cancel": "إلغاء", "cancel": "إلغاء",
"back": "العودة", "back": "العودة",
"add": "أضف", "add": "أضف",
"accept": "قبول" "accept": "قبول",
"disconnect": "فصل",
"change": "تغيير",
"subscribe": "اشتراك",
"unsubscribe": "إلغاء الاشتراك",
"complete": "تام",
"revoke": "إبطال",
"show_all": "أظهر الكل",
"review": "مراجعة"
}, },
"labs": { "labs": {
"pinning": "تثبيت الرسالة", "pinning": "تثبيت الرسالة",
@ -1347,7 +1345,9 @@
"default": "المبدئي", "default": "المبدئي",
"restricted": "مقيد", "restricted": "مقيد",
"moderator": "مشرف", "moderator": "مشرف",
"admin": "مدير" "admin": "مدير",
"custom": "(%(level)s) مخصص",
"mod": "مشرف"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "للإبلاغ عن مشكلة أمنية متعلقة بMatrix ، يرجى قراءة <a>سياسة الإفصاح الأمني</a> في Matrix.org.", "matrix_security_issue": "للإبلاغ عن مشكلة أمنية متعلقة بMatrix ، يرجى قراءة <a>سياسة الإفصاح الأمني</a> في Matrix.org.",

View file

@ -117,7 +117,6 @@
"Decrypt %(text)s": "Şifrini açmaq %(text)s", "Decrypt %(text)s": "Şifrini açmaq %(text)s",
"Download %(text)s": "Yükləmək %(text)s", "Download %(text)s": "Yükləmək %(text)s",
"Sign in with": "Seçmək", "Sign in with": "Seçmək",
"Register": "Qeydiyyatdan keçmək",
"What's New": "Nə dəyişdi", "What's New": "Nə dəyişdi",
"Create new room": "Otağı yaratmaq", "Create new room": "Otağı yaratmaq",
"Home": "Başlanğıc", "Home": "Başlanğıc",
@ -152,7 +151,6 @@
"Return to login screen": "Girişin ekranına qayıtmaq", "Return to login screen": "Girişin ekranına qayıtmaq",
"This server does not support authentication with a phone number.": "Bu server telefon nömrəsinin köməyi ilə müəyyənləşdirilməni dəstəkləmir.", "This server does not support authentication with a phone number.": "Bu server telefon nömrəsinin köməyi ilə müəyyənləşdirilməni dəstəkləmir.",
"Commands": "Komandalar", "Commands": "Komandalar",
"Emoji": "Smaylar",
"Users": "İstifadəçilər", "Users": "İstifadəçilər",
"Confirm passphrase": "Şifrəni təsdiqləyin", "Confirm passphrase": "Şifrəni təsdiqləyin",
"This email address is already in use": "Bu e-mail ünvanı istifadə olunur", "This email address is already in use": "Bu e-mail ünvanı istifadə olunur",
@ -201,7 +199,6 @@
"Identity server has no terms of service": "Şəxsiyyət serverinin xidmət şərtləri yoxdur", "Identity server has no terms of service": "Şəxsiyyət serverinin xidmət şərtləri yoxdur",
"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.": "Bu hərəkət e-poçt ünvanı və ya telefon nömrəsini təsdiqləmək üçün standart şəxsiyyət serverinə <server /> girməyi tələb edir, lakin serverdə heç bir xidmət şəraiti yoxdur.", "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.": "Bu hərəkət e-poçt ünvanı və ya telefon nömrəsini təsdiqləmək üçün standart şəxsiyyət serverinə <server /> girməyi tələb edir, lakin serverdə heç bir xidmət şəraiti yoxdur.",
"Only continue if you trust the owner of the server.": "Yalnız server sahibinə etibar etsəniz davam edin.", "Only continue if you trust the owner of the server.": "Yalnız server sahibinə etibar etsəniz davam edin.",
"Custom (%(level)s)": "Xüsusi (%(level)s)",
"Room %(roomId)s not visible": "Otaq %(roomId)s görünmür", "Room %(roomId)s not visible": "Otaq %(roomId)s görünmür",
"Messages": "Mesajlar", "Messages": "Mesajlar",
"Actions": "Tədbirlər", "Actions": "Tədbirlər",
@ -239,7 +236,8 @@
"labs": "Laboratoriya", "labs": "Laboratoriya",
"home": "Başlanğıc", "home": "Başlanğıc",
"favourites": "Seçilmişlər", "favourites": "Seçilmişlər",
"attachment": "Əlavə" "attachment": "Əlavə",
"emoji": "Smaylar"
}, },
"action": { "action": {
"continue": "Davam etmək", "continue": "Davam etmək",
@ -255,7 +253,8 @@
"ignore": "Bloklamaq", "ignore": "Bloklamaq",
"dismiss": "Nəzərə almayın", "dismiss": "Nəzərə almayın",
"close": "Bağlamaq", "close": "Bağlamaq",
"accept": "Qəbul etmək" "accept": "Qəbul etmək",
"register": "Qeydiyyatdan keçmək"
}, },
"keyboard": { "keyboard": {
"home": "Başlanğıc" "home": "Başlanğıc"
@ -264,6 +263,7 @@
"default": "Varsayılan olaraq", "default": "Varsayılan olaraq",
"restricted": "Məhduddur", "restricted": "Məhduddur",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Administrator" "admin": "Administrator",
"custom": "Xüsusi (%(level)s)"
} }
} }

View file

@ -31,7 +31,6 @@
"unknown error code": "неизвестен код за грешка", "unknown error code": "неизвестен код за грешка",
"Failed to forget room %(errCode)s": "Неуспешно забравяне на стаята %(errCode)s", "Failed to forget room %(errCode)s": "Неуспешно забравяне на стаята %(errCode)s",
"Favourite": "Любим", "Favourite": "Любим",
"Register": "Регистрация",
"Notifications": "Известия", "Notifications": "Известия",
"Rooms": "Стаи", "Rooms": "Стаи",
"Unnamed room": "Стая без име", "Unnamed room": "Стая без име",
@ -357,8 +356,6 @@
"No Microphones detected": "Няма открити микрофони", "No Microphones detected": "Няма открити микрофони",
"No Webcams detected": "Няма открити уеб камери", "No Webcams detected": "Няма открити уеб камери",
"Default Device": "Устройство по подразбиране", "Default Device": "Устройство по подразбиране",
"Microphone": "Микрофон",
"Camera": "Камера",
"Email": "Имейл", "Email": "Имейл",
"Profile": "Профил", "Profile": "Профил",
"Account": "Акаунт", "Account": "Акаунт",
@ -380,7 +377,6 @@
"Ignores a user, hiding their messages from you": "Игнорира потребител, скривайки съобщенията му от Вас", "Ignores a user, hiding their messages from you": "Игнорира потребител, скривайки съобщенията му от Вас",
"Stops ignoring a user, showing their messages going forward": "Спира игнорирането на потребител, показвайки съобщенията му занапред", "Stops ignoring a user, showing their messages going forward": "Спира игнорирането на потребител, показвайки съобщенията му занапред",
"Commands": "Команди", "Commands": "Команди",
"Emoji": "Емотикони",
"Notify the whole room": "Извести всички в стаята", "Notify the whole room": "Извести всички в стаята",
"Room Notification": "Известие за стая", "Room Notification": "Известие за стая",
"Users": "Потребители", "Users": "Потребители",
@ -498,7 +494,6 @@
"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.": "Съобщението Ви не бе изпратено, защото този сървър е някой от лимитите си. Моля, <a>свържете се с администратора на услугата</a> за да продължите да я използвате.", "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.": "Съобщението Ви не бе изпратено, защото този сървър е някой от лимитите си. Моля, <a>свържете се с администратора на услугата</a> за да продължите да я използвате.",
"Please <a>contact your service administrator</a> to continue using this service.": "Моля, <a>свържете се с администратора на услугата</a> за да продължите да я използвате.", "Please <a>contact your service administrator</a> to continue using this service.": "Моля, <a>свържете се с администратора на услугата</a> за да продължите да я използвате.",
"Please contact your homeserver administrator.": "Моля, свържете се със сървърния администратор.", "Please contact your homeserver administrator.": "Моля, свържете се със сървърния администратор.",
"Legal": "Юридически",
"This room has been replaced and is no longer active.": "Тази стая е била заменена и вече не е активна.", "This room has been replaced and is no longer active.": "Тази стая е била заменена и вече не е активна.",
"The conversation continues here.": "Разговора продължава тук.", "The conversation continues here.": "Разговора продължава тук.",
"This room is a continuation of another conversation.": "Тази стая е продължение на предишен разговор.", "This room is a continuation of another conversation.": "Тази стая е продължение на предишен разговор.",
@ -624,12 +619,9 @@
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "За помощ при използването на %(brand)s, кликнете <a>тук</a> или започнете чат с бота ни използвайки бутона по-долу.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "За помощ при използването на %(brand)s, кликнете <a>тук</a> или започнете чат с бота ни използвайки бутона по-долу.",
"Chat with %(brand)s Bot": "Чати с %(brand)s Bot", "Chat with %(brand)s Bot": "Чати с %(brand)s Bot",
"Help & About": "Помощ и относно", "Help & About": "Помощ и относно",
"FAQ": "Често задавани въпроси",
"Versions": "Версии", "Versions": "Версии",
"Preferences": "Настройки",
"Composer": "Въвеждане на съобщения", "Composer": "Въвеждане на съобщения",
"Room list": "Списък със стаи", "Room list": "Списък със стаи",
"Timeline": "Списък със съобщения",
"Autocomplete delay (ms)": "Забавяне преди подсказки (милисекунди)", "Autocomplete delay (ms)": "Забавяне преди подсказки (милисекунди)",
"Roles & Permissions": "Роли и привилегии", "Roles & Permissions": "Роли и привилегии",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Промени в настройките за четене на историята касаят само за нови съобщения. Видимостта на съществуващата история не се променя.", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Промени в настройките за четене на историята касаят само за нови съобщения. Видимостта на съществуващата история не се променя.",
@ -652,7 +644,6 @@
"Phone (optional)": "Телефон (незадължително)", "Phone (optional)": "Телефон (незадължително)",
"Join millions for free on the largest public server": "Присъединете се безплатно към милиони други на най-големия публичен сървър", "Join millions for free on the largest public server": "Присъединете се безплатно към милиони други на най-големия публичен сървър",
"Other": "Други", "Other": "Други",
"Guest": "Гост",
"Create account": "Създай акаунт", "Create account": "Създай акаунт",
"Recovery Method Removed": "Методът за възстановяване беше премахнат", "Recovery Method Removed": "Методът за възстановяване беше премахнат",
"If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Ако не сте премахнали метода за възстановяване, е възможно нападател да се опитва да получи достъп до акаунта Ви. Променете паролата на акаунта и настройте нов метод за възстановяване веднага от Настройки.", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Ако не сте премахнали метода за възстановяване, е възможно нападател да се опитва да получи достъп до акаунта Ви. Променете паролата на акаунта и настройте нов метод за възстановяване веднага от Настройки.",
@ -729,7 +720,6 @@
"Headphones": "Слушалки", "Headphones": "Слушалки",
"Folder": "Папка", "Folder": "Папка",
"This homeserver would like to make sure you are not a robot.": "Сървърът иска да потвърди, че не сте робот.", "This homeserver would like to make sure you are not a robot.": "Сървърът иска да потвърди, че не сте робот.",
"Change": "Промени",
"Couldn't load page": "Страницата не можа да бъде заредена", "Couldn't load page": "Страницата не можа да бъде заредена",
"Your password has been reset.": "Паролата беше анулирана.", "Your password has been reset.": "Паролата беше анулирана.",
"This homeserver does not support login using email address.": "Този сървър не поддържа влизане в профил посредством имейл адрес.", "This homeserver does not support login using email address.": "Този сървър не поддържа влизане в профил посредством имейл адрес.",
@ -747,7 +737,6 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Внимание</b>: настройването на резервно копие на ключовете трябва да се прави само от доверен компютър.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Внимание</b>: настройването на резервно копие на ключовете трябва да се прави само от доверен компютър.",
"Your keys are being backed up (the first backup could take a few minutes).": "Прави се резервно копие на ключовете Ви (първото копие може да отнеме няколко минути).", "Your keys are being backed up (the first backup could take a few minutes).": "Прави се резервно копие на ключовете Ви (първото копие може да отнеме няколко минути).",
"Success!": "Успешно!", "Success!": "Успешно!",
"Credits": "Благодарности",
"Changes your display nickname in the current room only": "Променя името Ви в тази стая", "Changes your display nickname in the current room only": "Променя името Ви в тази стая",
"Show read receipts sent by other users": "Показвай индикация за прочитане от други потребители", "Show read receipts sent by other users": "Показвай индикация за прочитане от други потребители",
"Scissors": "Ножици", "Scissors": "Ножици",
@ -881,7 +870,6 @@
"Edited at %(date)s. Click to view edits.": "Редактирано на %(date)s. Кликнете за да видите редакциите.", "Edited at %(date)s. Click to view edits.": "Редактирано на %(date)s. Кликнете за да видите редакциите.",
"Message edits": "Редакции на съобщение", "Message edits": "Редакции на съобщение",
"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:": "Обновяването на тази стая изисква затварянето на текущата и създаване на нова на нейно място. За да е най-удобно за членовете на стаята, ще:", "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:": "Обновяването на тази стая изисква затварянето на текущата и създаване на нова на нейно място. За да е най-удобно за членовете на стаята, ще:",
"Show all": "Покажи всички",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)sне направиха промени %(count)s пъти", "other": "%(severalUsers)sне направиха промени %(count)s пъти",
"one": "%(severalUsers)sне направиха промени" "one": "%(severalUsers)sне направиха промени"
@ -921,7 +909,6 @@
"Only continue if you trust the owner of the server.": "Продължете, само ако вярвате на собственика на сървъра.", "Only continue if you trust the owner of the server.": "Продължете, само ако вярвате на собственика на сървъра.",
"Terms of service not accepted or the identity server is invalid.": "Условията за ползване не бяха приети или сървъра за самоличност е невалиден.", "Terms of service not accepted or the identity server is invalid.": "Условията за ползване не бяха приети или сървъра за самоличност е невалиден.",
"Disconnect from the identity server <idserver />?": "Прекъсване на връзката със сървър за самоличност <idserver />?", "Disconnect from the identity server <idserver />?": "Прекъсване на връзката със сървър за самоличност <idserver />?",
"Disconnect": "Прекъсни",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "В момента използвате <server></server> за да откривате и да бъдете открити от познати ваши контакти. Може да промените сървъра за самоличност по-долу.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "В момента използвате <server></server> за да откривате и да бъдете открити от познати ваши контакти. Може да промените сървъра за самоличност по-долу.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "В момента не използвате сървър за самоличност. За да откривате и да бъдете открити от познати ваши контакти, добавете такъв по-долу.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "В момента не използвате сървър за самоличност. За да откривате и да бъдете открити от познати ваши контакти, добавете такъв по-долу.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Прекъсването на връзката със сървъра ви за самоличност означава че няма да можете да бъдете открити от други потребители или да каните хора по имейл или телефонен номер.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Прекъсването на връзката със сървъра ви за самоличност означава че няма да можете да бъдете открити от други потребители или да каните хора по имейл или телефонен номер.",
@ -931,7 +918,6 @@
"Always show the window menu bar": "Винаги показвай менютата на прозореца", "Always show the window menu bar": "Винаги показвай менютата на прозореца",
"Unable to revoke sharing for email address": "Неуспешно оттегляне на споделянето на имейл адреса", "Unable to revoke sharing for email address": "Неуспешно оттегляне на споделянето на имейл адреса",
"Unable to share email address": "Неуспешно споделяне на имейл адрес", "Unable to share email address": "Неуспешно споделяне на имейл адрес",
"Revoke": "Оттегли",
"Discovery options will appear once you have added an email above.": "Опциите за откриване ще се покажат след като добавите имейл адрес по-горе.", "Discovery options will appear once you have added an email above.": "Опциите за откриване ще се покажат след като добавите имейл адрес по-горе.",
"Unable to revoke sharing for phone number": "Неуспешно оттегляне на споделянето на телефонен номер", "Unable to revoke sharing for phone number": "Неуспешно оттегляне на споделянето на телефонен номер",
"Unable to share phone number": "Неуспешно споделяне на телефонен номер", "Unable to share phone number": "Неуспешно споделяне на телефонен номер",
@ -989,7 +975,6 @@
"Send report": "Изпрати доклад", "Send report": "Изпрати доклад",
"Explore rooms": "Открий стаи", "Explore rooms": "Открий стаи",
"Verify the link in your inbox": "Потвърдете линка във вашата пощенска кутия", "Verify the link in your inbox": "Потвърдете линка във вашата пощенска кутия",
"Complete": "Завърши",
"Read Marker lifetime (ms)": "Живот на маркера за прочитане (мсек)", "Read Marker lifetime (ms)": "Живот на маркера за прочитане (мсек)",
"Read Marker off-screen lifetime (ms)": "Живот на маркера за прочитане извън екрана (мсек)", "Read Marker off-screen lifetime (ms)": "Живот на маркера за прочитане извън екрана (мсек)",
"Changes the avatar of the current room": "Променя снимката на текущата стая", "Changes the avatar of the current room": "Променя снимката на текущата стая",
@ -1061,7 +1046,6 @@
"%(name)s cancelled": "%(name)s отказа", "%(name)s cancelled": "%(name)s отказа",
"%(name)s wants to verify": "%(name)s иска да извърши потвърждение", "%(name)s wants to verify": "%(name)s иска да извърши потвърждение",
"You sent a verification request": "Изпратихте заявка за потвърждение", "You sent a verification request": "Изпратихте заявка за потвърждение",
"Custom (%(level)s)": "Собствен (%(level)s)",
"%(senderName)s placed a voice call.": "%(senderName)s започна гласово обаждане.", "%(senderName)s placed a voice call.": "%(senderName)s започна гласово обаждане.",
"%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s започна гласово обаждане. (не се поддържа от този браузър)", "%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s започна гласово обаждане. (не се поддържа от този браузър)",
"%(senderName)s placed a video call.": "%(senderName)s започна видео обаждане.", "%(senderName)s placed a video call.": "%(senderName)s започна видео обаждане.",
@ -1112,7 +1096,6 @@
"You have not ignored anyone.": "Не сте игнорирали никой.", "You have not ignored anyone.": "Не сте игнорирали никой.",
"You are currently ignoring:": "В момента игнорирате:", "You are currently ignoring:": "В момента игнорирате:",
"You are not subscribed to any lists": "Не сте абонирани към списъци", "You are not subscribed to any lists": "Не сте абонирани към списъци",
"Unsubscribe": "Отпиши",
"View rules": "Виж правилата", "View rules": "Виж правилата",
"You are currently subscribed to:": "В момента сте абонирани към:", "You are currently subscribed to:": "В момента сте абонирани към:",
"⚠ These settings are meant for advanced users.": "⚠ Тези настройки са за напреднали потребители.", "⚠ These settings are meant for advanced users.": "⚠ Тези настройки са за напреднали потребители.",
@ -1124,7 +1107,6 @@
"Subscribed lists": "Абонирани списъци", "Subscribed lists": "Абонирани списъци",
"Subscribing to a ban list will cause you to join it!": "Абонирането към списък ще направи така, че да се присъедините към него!", "Subscribing to a ban list will cause you to join it!": "Абонирането към списък ще направи така, че да се присъедините към него!",
"If this isn't what you want, please use a different tool to ignore users.": "Ако това не е каквото искате, използвайте друг инструмент за игнориране на потребители.", "If this isn't what you want, please use a different tool to ignore users.": "Ако това не е каквото искате, използвайте друг инструмент за игнориране на потребители.",
"Subscribe": "Абонирай ме",
"Cross-signing": "Кръстосано-подписване", "Cross-signing": "Кръстосано-подписване",
"Unencrypted": "Нешифровано", "Unencrypted": "Нешифровано",
"Close preview": "Затвори прегледа", "Close preview": "Затвори прегледа",
@ -1243,7 +1225,6 @@
"To be secure, do this in person or use a trusted way to communicate.": "За да е по-сигурно, направете го на живо или използвайте доверен начин за комуникация.", "To be secure, do this in person or use a trusted way to communicate.": "За да е по-сигурно, направете го на живо или използвайте доверен начин за комуникация.",
"Lock": "Заключи", "Lock": "Заключи",
"Later": "По-късно", "Later": "По-късно",
"Review": "Прегледай",
"Other users may not trust it": "Други потребители може да не се доверят", "Other users may not trust it": "Други потребители може да не се доверят",
"This bridge was provisioned by <user />.": "Мостът е настроен от <user />.", "This bridge was provisioned by <user />.": "Мостът е настроен от <user />.",
"Show less": "Покажи по-малко", "Show less": "Покажи по-малко",
@ -1286,7 +1267,6 @@
"Someone is using an unknown session": "Някой използва непозната сесия", "Someone is using an unknown session": "Някой използва непозната сесия",
"This room is end-to-end encrypted": "Тази стая е шифрована от-край-до-край", "This room is end-to-end encrypted": "Тази стая е шифрована от-край-до-край",
"Everyone in this room is verified": "Всички в тази стая са верифицирани", "Everyone in this room is verified": "Всички в тази стая са верифицирани",
"Mod": "Модератор",
"Encrypted by an unverified session": "Шифровано от неверифицирана сесия", "Encrypted by an unverified session": "Шифровано от неверифицирана сесия",
"Encrypted by a deleted session": "Шифровано от изтрита сесия", "Encrypted by a deleted session": "Шифровано от изтрита сесия",
"Scroll to most recent messages": "Отиди до най-скорошните съобщения", "Scroll to most recent messages": "Отиди до най-скорошните съобщения",
@ -1442,7 +1422,6 @@
"Click the button below to confirm setting up encryption.": "Кликнете бутона по-долу за да потвърдите настройването на шифроване.", "Click the button below to confirm setting up encryption.": "Кликнете бутона по-долу за да потвърдите настройването на шифроване.",
"Enter your account password to confirm the upgrade:": "Въведете паролата за профила си за да потвърдите обновлението:", "Enter your account password to confirm the upgrade:": "Въведете паролата за профила си за да потвърдите обновлението:",
"Restore your key backup to upgrade your encryption": "Възстановете резервното копие на ключа за да обновите шифроването", "Restore your key backup to upgrade your encryption": "Възстановете резервното копие на ключа за да обновите шифроването",
"Restore": "Възстанови",
"You'll need to authenticate with the server to confirm the upgrade.": "Ще трябва да се автентикирате пред сървъра за да потвърдите обновяването.", "You'll need to authenticate with the server to confirm the upgrade.": "Ще трябва да се автентикирате пред сървъра за да потвърдите обновяването.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Обновете тази сесия, за да може да потвърждава други сесии, давайки им достъп до шифрованите съобщения и маркирайки ги като доверени за другите потребители.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Обновете тази сесия, за да може да потвърждава други сесии, давайки им достъп до шифрованите съобщения и маркирайки ги като доверени за другите потребители.",
"Use a different passphrase?": "Използвай друга парола?", "Use a different passphrase?": "Използвай друга парола?",
@ -1482,7 +1461,6 @@
"Activate selected button": "Активиране на избрания бутон", "Activate selected button": "Активиране на избрания бутон",
"Toggle right panel": "Превключване на десния панел", "Toggle right panel": "Превключване на десния панел",
"Cancel autocomplete": "Отказване на подсказките", "Cancel autocomplete": "Отказване на подсказките",
"Space": "Space",
"No recently visited rooms": "Няма наскоро-посетени стаи", "No recently visited rooms": "Няма наскоро-посетени стаи",
"Sort by": "Подреди по", "Sort by": "Подреди по",
"Activity": "Активност", "Activity": "Активност",
@ -1600,7 +1578,6 @@
"Show Widgets": "Покажи приспособленията", "Show Widgets": "Покажи приспособленията",
"Hide Widgets": "Скрий приспособленията", "Hide Widgets": "Скрий приспособленията",
"Remove messages sent by others": "Премахвай съобщения изпратени от други", "Remove messages sent by others": "Премахвай съобщения изпратени от други",
"Privacy": "Поверителност",
"Secure Backup": "Защитено резервно копие", "Secure Backup": "Защитено резервно копие",
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Настройте името на шрифт инсталиран в системата и %(brand)s ще се опита да го използва.", "Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Настройте името на шрифт инсталиран в системата и %(brand)s ще се опита да го използва.",
"not ready": "не е готово", "not ready": "не е готово",
@ -2032,7 +2009,18 @@
"description": "Описание", "description": "Описание",
"dark": "Тъмна", "dark": "Тъмна",
"attachment": "Прикачване", "attachment": "Прикачване",
"appearance": "Изглед" "appearance": "Изглед",
"guest": "Гост",
"legal": "Юридически",
"credits": "Благодарности",
"faq": "Често задавани въпроси",
"preferences": "Настройки",
"timeline": "Списък със съобщения",
"privacy": "Поверителност",
"camera": "Камера",
"microphone": "Микрофон",
"emoji": "Емотикони",
"space": "Space"
}, },
"action": { "action": {
"continue": "Продължи", "continue": "Продължи",
@ -2092,7 +2080,17 @@
"cancel": "Отказ", "cancel": "Отказ",
"back": "Назад", "back": "Назад",
"add": "Добави", "add": "Добави",
"accept": "Приеми" "accept": "Приеми",
"disconnect": "Прекъсни",
"change": "Промени",
"subscribe": "Абонирай ме",
"unsubscribe": "Отпиши",
"complete": "Завърши",
"revoke": "Оттегли",
"show_all": "Покажи всички",
"review": "Прегледай",
"restore": "Възстанови",
"register": "Регистрация"
}, },
"a11y": { "a11y": {
"user_menu": "Потребителско меню" "user_menu": "Потребителско меню"
@ -2128,7 +2126,9 @@
"default": "По подразбиране", "default": "По подразбиране",
"restricted": "Ограничен", "restricted": "Ограничен",
"moderator": "Модератор", "moderator": "Модератор",
"admin": "Администратор" "admin": "Администратор",
"custom": "Собствен (%(level)s)",
"mod": "Модератор"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "За да съобщените за проблем със сигурността свързан с Matrix, прочетете <a>Политиката за споделяне на проблеми със сигурността</a> на Matrix.org.", "matrix_security_issue": "За да съобщените за проблем със сигурността свързан с Matrix, прочетете <a>Политиката за споделяне на проблеми със сигурността</a> на Matrix.org.",

View file

@ -2,8 +2,6 @@
"Account": "Compte", "Account": "Compte",
"No Microphones detected": "No s'ha detectat cap micròfon", "No Microphones detected": "No s'ha detectat cap micròfon",
"No Webcams detected": "No s'ha detectat cap càmera web", "No Webcams detected": "No s'ha detectat cap càmera web",
"Microphone": "Micròfon",
"Camera": "Càmera",
"Advanced": "Avançat", "Advanced": "Avançat",
"Always show message timestamps": "Mostra sempre la marca de temps del missatge", "Always show message timestamps": "Mostra sempre la marca de temps del missatge",
"Create new room": "Crea una sala nova", "Create new room": "Crea una sala nova",
@ -14,7 +12,6 @@
"unknown error code": "codi d'error desconegut", "unknown error code": "codi d'error desconegut",
"Operation failed": "No s'ha pogut realitzar l'operació", "Operation failed": "No s'ha pogut realitzar l'operació",
"powered by Matrix": "amb tecnologia de Matrix", "powered by Matrix": "amb tecnologia de Matrix",
"Register": "Registre",
"Rooms": "Sales", "Rooms": "Sales",
"This email address is already in use": "Aquesta adreça de correu electrònic ja està en ús", "This email address is already in use": "Aquesta adreça de correu electrònic ja està en ús",
"This phone number is already in use": "Aquest número de telèfon ja està en ús", "This phone number is already in use": "Aquest número de telèfon ja està en ús",
@ -472,7 +469,6 @@
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "No s'ha trobat el perfil pels IDs de Matrix següents, els voleu convidar igualment?", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "No s'ha trobat el perfil pels IDs de Matrix següents, els voleu convidar igualment?",
"Invite anyway and never warn me again": "Convidar igualment i no avisar-me de nou", "Invite anyway and never warn me again": "Convidar igualment i no avisar-me de nou",
"Invite anyway": "Convidar igualment", "Invite anyway": "Convidar igualment",
"Guest": "Visitant",
"This homeserver has hit its Monthly Active User limit.": "Aquest homeserver ha assolit el seu límit d'usuaris actius mensuals.", "This homeserver has hit its Monthly Active User limit.": "Aquest homeserver ha assolit el seu límit d'usuaris actius mensuals.",
"This homeserver has exceeded one of its resource limits.": "Aquest homeserver ha sobrepassat on dels seus límits de recursos.", "This homeserver has exceeded one of its resource limits.": "Aquest homeserver ha sobrepassat on dels seus límits de recursos.",
"Unrecognised address": "Adreça no reconeguda", "Unrecognised address": "Adreça no reconeguda",
@ -533,7 +529,6 @@
"Setting up keys": "Configurant claus", "Setting up keys": "Configurant claus",
"Are you sure you want to cancel entering passphrase?": "Estàs segur que vols cancel·lar la introducció de la frase secreta?", "Are you sure you want to cancel entering passphrase?": "Estàs segur que vols cancel·lar la introducció de la frase secreta?",
"Cancel entering passphrase?": "Vols cancel·lar la introducció de la frase secreta?", "Cancel entering passphrase?": "Vols cancel·lar la introducció de la frase secreta?",
"Custom (%(level)s)": "Personalitzat (%(level)s)",
"Create Account": "Crea un compte", "Create Account": "Crea un compte",
"Use your account or create a new one to continue.": "Utilitza el teu compte o crea'n un de nou per continuar.", "Use your account or create a new one to continue.": "Utilitza el teu compte o crea'n un de nou per continuar.",
"Sign In or Create Account": "Inicia sessió o Crea un compte", "Sign In or Create Account": "Inicia sessió o Crea un compte",
@ -616,7 +611,10 @@
"home": "Inici", "home": "Inici",
"favourites": "Preferits", "favourites": "Preferits",
"description": "Descripció", "description": "Descripció",
"attachment": "Adjunt" "attachment": "Adjunt",
"guest": "Visitant",
"camera": "Càmera",
"microphone": "Micròfon"
}, },
"action": { "action": {
"continue": "Continua", "continue": "Continua",
@ -652,7 +650,8 @@
"cancel": "Cancel·la", "cancel": "Cancel·la",
"back": "Enrere", "back": "Enrere",
"add": "Afegeix", "add": "Afegeix",
"accept": "Accepta" "accept": "Accepta",
"register": "Registre"
}, },
"labs": { "labs": {
"pinning": "Fixació de missatges", "pinning": "Fixació de missatges",
@ -665,7 +664,8 @@
"default": "Predeterminat", "default": "Predeterminat",
"restricted": "Restringit", "restricted": "Restringit",
"moderator": "Moderador", "moderator": "Moderador",
"admin": "Administrador" "admin": "Administrador",
"custom": "Personalitzat (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "Enviar logs de depuració", "submit_debug_logs": "Enviar logs de depuració",

View file

@ -28,7 +28,6 @@
"Nov": "Lis", "Nov": "Lis",
"Dec": "Pro", "Dec": "Pro",
"Create new room": "Vytvořit novou místnost", "Create new room": "Vytvořit novou místnost",
"Register": "Zaregistrovat",
"Favourite": "Oblíbené", "Favourite": "Oblíbené",
"Failed to change password. Is your password correct?": "Nepodařilo se změnit heslo. Zadáváte své heslo správně?", "Failed to change password. Is your password correct?": "Nepodařilo se změnit heslo. Zadáváte své heslo správně?",
"Operation failed": "Operace se nezdařila", "Operation failed": "Operace se nezdařila",
@ -40,8 +39,6 @@
"No Microphones detected": "Nerozpoznány žádné mikrofony", "No Microphones detected": "Nerozpoznány žádné mikrofony",
"No Webcams detected": "Nerozpoznány žádné webkamery", "No Webcams detected": "Nerozpoznány žádné webkamery",
"Default Device": "Výchozí zařízení", "Default Device": "Výchozí zařízení",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Advanced": "Rozšířené", "Advanced": "Rozšířené",
"Always show message timestamps": "Vždy zobrazovat časové značky zpráv", "Always show message timestamps": "Vždy zobrazovat časové značky zpráv",
"Authentication": "Ověření", "Authentication": "Ověření",
@ -72,7 +69,6 @@
"Download %(text)s": "Stáhnout %(text)s", "Download %(text)s": "Stáhnout %(text)s",
"Email": "E-mail", "Email": "E-mail",
"Email address": "E-mailová adresa", "Email address": "E-mailová adresa",
"Emoji": "Emoji",
"Enable automatic language detection for syntax highlighting": "Zapnout automatické rozpoznávání jazyků pro zvýrazňování syntaxe", "Enable automatic language detection for syntax highlighting": "Zapnout automatické rozpoznávání jazyků pro zvýrazňování syntaxe",
"Enter passphrase": "Zadejte přístupovou frázi", "Enter passphrase": "Zadejte přístupovou frázi",
"Error decrypting attachment": "Chyba při dešifrování přílohy", "Error decrypting attachment": "Chyba při dešifrování přílohy",
@ -519,18 +515,14 @@
"Room version": "Verze místnosti", "Room version": "Verze místnosti",
"Room version:": "Verze místnosti:", "Room version:": "Verze místnosti:",
"Help & About": "O aplikaci a pomoc", "Help & About": "O aplikaci a pomoc",
"FAQ": "Často kladené dotazy (FAQ)",
"Versions": "Verze", "Versions": "Verze",
"Legal": "Právní informace",
"Voice & Video": "Zvuk a video", "Voice & Video": "Zvuk a video",
"Missing media permissions, click the button below to request.": "Pro práci se zvukem a videem je potřeba oprávnění. Klepněte na tlačítko a my o ně požádáme.", "Missing media permissions, click the button below to request.": "Pro práci se zvukem a videem je potřeba oprávnění. Klepněte na tlačítko a my o ně požádáme.",
"Request media permissions": "Požádat o oprávnění k mikrofonu a kameře", "Request media permissions": "Požádat o oprávnění k mikrofonu a kameře",
"Preferences": "Předvolby",
"Composer": "Editor zpráv", "Composer": "Editor zpráv",
"Enable Emoji suggestions while typing": "Napovídat emoji", "Enable Emoji suggestions while typing": "Napovídat emoji",
"Send typing notifications": "Posílat oznámení, když píšete", "Send typing notifications": "Posílat oznámení, když píšete",
"Room list": "Seznam místností", "Room list": "Seznam místností",
"Timeline": "Časová osa",
"Autocomplete delay (ms)": "Zpožnění našeptávače (ms)", "Autocomplete delay (ms)": "Zpožnění našeptávače (ms)",
"Enable big emoji in chat": "Povolit velké emoji", "Enable big emoji in chat": "Povolit velké emoji",
"Prompt before sending invites to potentially invalid matrix IDs": "Potvrdit odeslání pozvánky potenciálně neplatným Matrix ID", "Prompt before sending invites to potentially invalid matrix IDs": "Potvrdit odeslání pozvánky potenciálně neplatným Matrix ID",
@ -724,7 +716,6 @@
"Gets or sets the room topic": "Nastaví nebo zjistí téma místnosti", "Gets or sets the room topic": "Nastaví nebo zjistí téma místnosti",
"Forces the current outbound group session in an encrypted room to be discarded": "Vynutí zahození aktuálně používané relace skupiny v zašifrované místnosti", "Forces the current outbound group session in an encrypted room to be discarded": "Vynutí zahození aktuálně používané relace skupiny v zašifrované místnosti",
"Encrypted messages in group chats": "Šifrované zprávy ve skupinách", "Encrypted messages in group chats": "Šifrované zprávy ve skupinách",
"Credits": "Poděkování",
"You've previously used %(brand)s on %(host)s with lazy loading of members enabled. In this version lazy loading is disabled. As the local cache is not compatible between these two settings, %(brand)s needs to resync your account.": "Na adrese %(host)s už jste použili %(brand)s se zapnutou volbou načítání členů místností až při prvním zobrazení. V této verzi je načítání členů až při prvním zobrazení vypnuté. Protože je s tímto nastavením lokální vyrovnávací paměť nekompatibilní, %(brand)s potřebuje znovu synchronizovat údaje z vašeho účtu.", "You've previously used %(brand)s on %(host)s with lazy loading of members enabled. In this version lazy loading is disabled. As the local cache is not compatible between these two settings, %(brand)s needs to resync your account.": "Na adrese %(host)s už jste použili %(brand)s se zapnutou volbou načítání členů místností až při prvním zobrazení. V této verzi je načítání členů až při prvním zobrazení vypnuté. Protože je s tímto nastavením lokální vyrovnávací paměť nekompatibilní, %(brand)s potřebuje znovu synchronizovat údaje z vašeho účtu.",
"%(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 teď používá 3-5× méně paměti, protože si informace o ostatních uživatelích načítá až když je potřebuje. Prosím počkejte na dokončení synchronizace se serverem!", "%(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 teď používá 3-5× méně paměti, protože si informace o ostatních uživatelích načítá až když je potřebuje. Prosím počkejte na dokončení synchronizace se serverem!",
"This homeserver would like to make sure you are not a robot.": "Domovský server se potřebuje přesvědčit, že nejste robot.", "This homeserver would like to make sure you are not a robot.": "Domovský server se potřebuje přesvědčit, že nejste robot.",
@ -734,13 +725,11 @@
"Failed to perform homeserver discovery": "Nepovedlo se zjisit adresu domovského serveru", "Failed to perform homeserver discovery": "Nepovedlo se zjisit adresu domovského serveru",
"Registration has been disabled on this homeserver.": "Tento domovský server nepovoluje registraci.", "Registration has been disabled on this homeserver.": "Tento domovský server nepovoluje registraci.",
"Invalid identity server discovery response": "Neplatná odpověď při hledání serveru identity", "Invalid identity server discovery response": "Neplatná odpověď při hledání serveru identity",
"Change": "Změnit",
"Email (optional)": "E-mail (nepovinné)", "Email (optional)": "E-mail (nepovinné)",
"Phone (optional)": "Telefonní číslo (nepovinné)", "Phone (optional)": "Telefonní číslo (nepovinné)",
"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", "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",
"Other": "Další možnosti", "Other": "Další možnosti",
"Couldn't load page": "Nepovedlo se načíst stránku", "Couldn't load page": "Nepovedlo se načíst stránku",
"Guest": "Host",
"Your password has been reset.": "Heslo bylo resetováno.", "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í", "Sign in with single sign-on": "Přihlásit se přes jednotné přihlašování",
"Create account": "Vytvořit účet", "Create account": "Vytvořit účet",
@ -892,7 +881,6 @@
"Only continue if you trust the owner of the server.": "Pokračujte pouze pokud věříte provozovateli serveru.", "Only continue if you trust the owner of the server.": "Pokračujte pouze pokud věříte provozovateli serveru.",
"Disconnect identity server": "Odpojit se ze serveru identit", "Disconnect identity server": "Odpojit se ze serveru identit",
"Disconnect from the identity server <idserver />?": "Odpojit se ze serveru identit <idserver />?", "Disconnect from the identity server <idserver />?": "Odpojit se ze serveru identit <idserver />?",
"Disconnect": "Odpojit",
"You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Pořád <b>sdílíte osobní údaje</b> se serverem identit <idserver />.", "You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Pořád <b>sdílíte osobní údaje</b> se serverem identit <idserver />.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Než se odpojíte, doporučujeme odstranit e-mailovou adresu a telefonní číslo ze serveru identit.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Než se odpojíte, doporučujeme odstranit e-mailovou adresu a telefonní číslo ze serveru identit.",
"Disconnect anyway": "Stejně se odpojit", "Disconnect anyway": "Stejně se odpojit",
@ -953,8 +941,6 @@
"Your email address hasn't been verified yet": "Vaše e-mailová adresa ještě nebyla ověřena", "Your email address hasn't been verified yet": "Vaše e-mailová adresa ještě nebyla ověřena",
"Click the link in the email you received to verify and then click continue again.": "Pro ověření a pokračování klepněte na odkaz v e-mailu, který vím přišel.", "Click the link in the email you received to verify and then click continue again.": "Pro ověření a pokračování klepněte na odkaz v e-mailu, který vím přišel.",
"Verify the link in your inbox": "Ověřte odkaz v e-mailové schránce", "Verify the link in your inbox": "Ověřte odkaz v e-mailové schránce",
"Complete": "Dokončit",
"Revoke": "Zneplatnit",
"Discovery options will appear once you have added an email above.": "Možnosti nastavení veřejného profilu se objeví po přidání e-mailové adresy výše.", "Discovery options will appear once you have added an email above.": "Možnosti nastavení veřejného profilu se objeví po přidání e-mailové adresy výše.",
"Unable to revoke sharing for phone number": "Nepovedlo se zrušit sdílení telefonního čísla", "Unable to revoke sharing for phone number": "Nepovedlo se zrušit sdílení telefonního čísla",
"Unable to share phone number": "Nepovedlo se nasdílet telefonní číslo", "Unable to share phone number": "Nepovedlo se nasdílet telefonní číslo",
@ -1005,7 +991,6 @@
"%(name)s cancelled": "%(name)s zrušil(a)", "%(name)s cancelled": "%(name)s zrušil(a)",
"%(name)s wants to verify": "%(name)s chce ověřit", "%(name)s wants to verify": "%(name)s chce ověřit",
"You sent a verification request": "Poslali jste požadavek na ověření", "You sent a verification request": "Poslali jste požadavek na ověření",
"Show all": "Zobrazit vše",
"Edited at %(date)s. Click to view edits.": "Upraveno v %(date)s. Klinutím zobrazíte změny.", "Edited at %(date)s. Click to view edits.": "Upraveno v %(date)s. Klinutím zobrazíte změny.",
"Frequently Used": "Často používané", "Frequently Used": "Často používané",
"Smileys & People": "Obličeje a lidé", "Smileys & People": "Obličeje a lidé",
@ -1059,7 +1044,6 @@
"Notification Autocomplete": "Automatické doplňování oznámení", "Notification Autocomplete": "Automatické doplňování oznámení",
"Room Autocomplete": "Automatické doplňování místností", "Room Autocomplete": "Automatické doplňování místností",
"User Autocomplete": "Automatické doplňování uživatelů", "User Autocomplete": "Automatické doplňování uživatelů",
"Custom (%(level)s)": "Vlastní (%(level)s)",
"Error upgrading room": "Chyba při aktualizaci místnosti", "Error upgrading room": "Chyba při aktualizaci místnosti",
"Double check that your server supports the room version chosen and try again.": "Zkontrolujte, že váš server opravdu podporuje zvolenou verzi místnosti.", "Double check that your server supports the room version chosen and try again.": "Zkontrolujte, že váš server opravdu podporuje zvolenou verzi místnosti.",
"%(senderName)s placed a voice call.": "%(senderName)s zahájil(a) hovor.", "%(senderName)s placed a voice call.": "%(senderName)s zahájil(a) hovor.",
@ -1103,7 +1087,6 @@
"You have not ignored anyone.": "Nikoho neignorujete.", "You have not ignored anyone.": "Nikoho neignorujete.",
"You are currently ignoring:": "Ignorujete:", "You are currently ignoring:": "Ignorujete:",
"You are not subscribed to any lists": "Neodebíráte žádné seznamy", "You are not subscribed to any lists": "Neodebíráte žádné seznamy",
"Unsubscribe": "Přestat odebírat",
"View rules": "Zobrazit pravidla", "View rules": "Zobrazit pravidla",
"You are currently subscribed to:": "Odebíráte:", "You are currently subscribed to:": "Odebíráte:",
"⚠ These settings are meant for advanced users.": "⚠ Tato nastavení jsou pro pokročilé uživatele.", "⚠ These settings are meant for advanced users.": "⚠ Tato nastavení jsou pro pokročilé uživatele.",
@ -1112,7 +1095,6 @@
"Server or user ID to ignore": "Server nebo ID uživatele", "Server or user ID to ignore": "Server nebo ID uživatele",
"eg: @bot:* or example.org": "např.: @bot:* nebo example.org", "eg: @bot:* or example.org": "např.: @bot:* nebo example.org",
"Subscribed lists": "Odebírané seznamy", "Subscribed lists": "Odebírané seznamy",
"Subscribe": "Odebírat",
"Unencrypted": "Nezašifrované", "Unencrypted": "Nezašifrované",
"<userName/> wants to chat": "<userName/> si chce psát", "<userName/> wants to chat": "<userName/> si chce psát",
"Start chatting": "Zahájit konverzaci", "Start chatting": "Zahájit konverzaci",
@ -1183,7 +1165,6 @@
"Lock": "Zámek", "Lock": "Zámek",
"Other users may not trust it": "Ostatní uživatelé této relaci nemusí věřit", "Other users may not trust it": "Ostatní uživatelé této relaci nemusí věřit",
"Later": "Později", "Later": "Později",
"Review": "Prohlédnout",
"This bridge was provisioned by <user />.": "Toto propojení poskytuje <user />.", "This bridge was provisioned by <user />.": "Toto propojení poskytuje <user />.",
"This bridge is managed by <user />.": "Toto propojení spravuje <user />.", "This bridge is managed by <user />.": "Toto propojení spravuje <user />.",
"Show less": "Zobrazit méně", "Show less": "Zobrazit méně",
@ -1217,7 +1198,6 @@
"Someone is using an unknown session": "Někdo používá neznámou relaci", "Someone is using an unknown session": "Někdo používá neznámou relaci",
"This room is end-to-end encrypted": "Místnost je koncově šifrovaná", "This room is end-to-end encrypted": "Místnost je koncově šifrovaná",
"Everyone in this room is verified": "V této místnosti jsou všichni ověřeni", "Everyone in this room is verified": "V této místnosti jsou všichni ověřeni",
"Mod": "Moderátor",
"Encrypted by an unverified session": "Šifrované neověřenou relací", "Encrypted by an unverified session": "Šifrované neověřenou relací",
"Encrypted by a deleted session": "Šifrované smazanou relací", "Encrypted by a deleted session": "Šifrované smazanou relací",
"Send a reply…": "Odpovědět…", "Send a reply…": "Odpovědět…",
@ -1271,7 +1251,6 @@
"Subscribing to a ban list will cause you to join it!": "Odebíráním seznamu zablokovaných uživatelů se přidáte do jeho místnosti!", "Subscribing to a ban list will cause you to join it!": "Odebíráním seznamu zablokovaných uživatelů se přidáte do jeho místnosti!",
"If this isn't what you want, please use a different tool to ignore users.": "Pokud to nechcete, tak prosím použijte jiný nástroj na blokování uživatelů.", "If this isn't what you want, please use a different tool to ignore users.": "Pokud to nechcete, tak prosím použijte jiný nástroj na blokování uživatelů.",
"Restore your key backup to upgrade your encryption": "Pro aktualizaci šifrování obnovte klíče ze zálohy", "Restore your key backup to upgrade your encryption": "Pro aktualizaci šifrování obnovte klíče ze zálohy",
"Restore": "Obnovit",
"Enter your account password to confirm the upgrade:": "Potvrďte, že chcete aktualizaci provést zadáním svého uživatelského hesla:", "Enter your account password to confirm the upgrade:": "Potvrďte, že chcete aktualizaci provést zadáním svého uživatelského hesla:",
"You'll need to authenticate with the server to confirm the upgrade.": "Server si vás potřebuje ověřit, abychom mohli provést aktualizaci.", "You'll need to authenticate with the server to confirm the upgrade.": "Server si vás potřebuje ověřit, abychom mohli provést aktualizaci.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Aktualizujte tuto přihlášenou relaci abyste mohli ověřovat ostatní relace. Tím jim dáte přístup k šifrovaným konverzacím a ostatní uživatelé je jim budou automaticky věřit.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Aktualizujte tuto přihlášenou relaci abyste mohli ověřovat ostatní relace. Tím jim dáte přístup k šifrovaným konverzacím a ostatní uživatelé je jim budou automaticky věřit.",
@ -1481,7 +1460,6 @@
"Cancelled signature upload": "Nahrávání podpisu zrušeno", "Cancelled signature upload": "Nahrávání podpisu zrušeno",
"Unable to upload": "Nelze nahrát", "Unable to upload": "Nelze nahrát",
"Server isn't responding": "Server neodpovídá", "Server isn't responding": "Server neodpovídá",
"Space": "Prostor",
"Cancel autocomplete": "Zrušit automatické doplňování", "Cancel autocomplete": "Zrušit automatické doplňování",
"Activate selected button": "Aktivovat označené tlačítko", "Activate selected button": "Aktivovat označené tlačítko",
"Close dialog or context menu": "Zavřít dialog nebo kontextové menu", "Close dialog or context menu": "Zavřít dialog nebo kontextové menu",
@ -1569,7 +1547,6 @@
"Welcome %(name)s": "Vítejte %(name)s", "Welcome %(name)s": "Vítejte %(name)s",
"Now, let's help you get started": "Nyní vám pomůžeme začít", "Now, let's help you get started": "Nyní vám pomůžeme začít",
"Effects": "Efekty", "Effects": "Efekty",
"Approve": "Schválit",
"Looks good!": "To vypadá dobře!", "Looks good!": "To vypadá dobře!",
"Wrong file type": "Špatný typ souboru", "Wrong file type": "Špatný typ souboru",
"The server has denied your request.": "Server odmítl váš požadavek.", "The server has denied your request.": "Server odmítl váš požadavek.",
@ -1772,7 +1749,6 @@
"If they don't match, the security of your communication may be compromised.": "Pokud se neshodují, bezpečnost vaší komunikace může být kompromitována.", "If they don't match, the security of your communication may be compromised.": "Pokud se neshodují, bezpečnost vaší komunikace může být kompromitována.",
"Confirm this user's session by comparing the following with their User Settings:": "Potvrďte relaci tohoto uživatele porovnáním následujícího s jeho uživatelským nastavením:", "Confirm this user's session by comparing the following with their User Settings:": "Potvrďte relaci tohoto uživatele porovnáním následujícího s jeho uživatelským nastavením:",
"Confirm Security Phrase": "Potvrďte bezpečnostní frázi", "Confirm Security Phrase": "Potvrďte bezpečnostní frázi",
"Privacy": "Soukromí",
"Click the button below to confirm setting up encryption.": "Kliknutím na tlačítko níže potvrďte nastavení šifrování.", "Click the button below to confirm setting up encryption.": "Kliknutím na tlačítko níže potvrďte nastavení šifrování.",
"Confirm encryption setup": "Potvrďte nastavení šifrování", "Confirm encryption setup": "Potvrďte nastavení šifrování",
"Return to call": "Návrat do hovoru", "Return to call": "Návrat do hovoru",
@ -2094,7 +2070,6 @@
"Who are you working with?": "S kým pracujete?", "Who are you working with?": "S kým pracujete?",
"Skip for now": "Prozatím přeskočit", "Skip for now": "Prozatím přeskočit",
"Failed to create initial space rooms": "Vytvoření počátečních místností v prostoru se nezdařilo", "Failed to create initial space rooms": "Vytvoření počátečních místností v prostoru se nezdařilo",
"Random": "Náhodný",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s člen", "one": "%(count)s člen",
"other": "%(count)s členů" "other": "%(count)s členů"
@ -2143,7 +2118,6 @@
"Decrypted event source": "Dešifrovaný zdroj události", "Decrypted event source": "Dešifrovaný zdroj události",
"Save Changes": "Uložit změny", "Save Changes": "Uložit změny",
"Welcome to <name/>": "Vítejte v <name/>", "Welcome to <name/>": "Vítejte v <name/>",
"Support": "Podpora",
"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.": "Toto obvykle ovlivňuje pouze to, jak je místnost zpracována na serveru. Pokud máte problémy s %(brand)s, nahlaste prosím chybu.", "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.": "Toto obvykle ovlivňuje pouze to, jak je místnost zpracována na serveru. Pokud máte problémy s %(brand)s, nahlaste prosím chybu.",
"Make sure the right people have access. You can invite more later.": "Zajistěte přístup pro správné lidi. Další můžete pozvat později.", "Make sure the right people have access. You can invite more later.": "Zajistěte přístup pro správné lidi. Další můžete pozvat později.",
"A private space to organise your rooms": "Soukromý prostor pro uspořádání vašich místností", "A private space to organise your rooms": "Soukromý prostor pro uspořádání vašich místností",
@ -2217,8 +2191,6 @@
}, },
"Failed to send": "Odeslání se nezdařilo", "Failed to send": "Odeslání se nezdařilo",
"What do you want to organise?": "Co si přejete organizovat?", "What do you want to organise?": "Co si přejete organizovat?",
"Play": "Přehrát",
"Pause": "Pozastavit",
"Enter your Security Phrase a second time to confirm it.": "Zadejte bezpečnostní frázi podruhé a potvrďte ji.", "Enter your Security Phrase a second time to confirm it.": "Zadejte bezpečnostní frázi podruhé a potvrďte ji.",
"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ší.", "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.", "You have no ignored users.": "Nemáte žádné ignorované uživatele.",
@ -2238,7 +2210,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Nepodařilo se získat přístup k vašemu mikrofonu . Zkontrolujte prosím nastavení prohlížeče a zkuste to znovu.", "We were unable to access your microphone. Please check your browser settings and try again.": "Nepodařilo se získat přístup k vašemu mikrofonu . Zkontrolujte prosím nastavení prohlížeče a zkuste to znovu.",
"Unable to access your microphone": "Nelze získat přístup k mikrofonu", "Unable to access your microphone": "Nelze získat přístup k mikrofonu",
"Your access token gives full access to your account. Do not share it with anyone.": "Přístupový token vám umožní plný přístup k účtu. Nikomu ho nesdělujte.", "Your access token gives full access to your account. Do not share it with anyone.": "Přístupový token vám umožní plný přístup k účtu. Nikomu ho nesdělujte.",
"Access Token": "Přístupový token",
"Please enter a name for the space": "Zadejte prosím název prostoru", "Please enter a name for the space": "Zadejte prosím název prostoru",
"Connecting": "Spojování", "Connecting": "Spojování",
"Message search initialisation failed": "Inicializace vyhledávání zpráv se nezdařila", "Message search initialisation failed": "Inicializace vyhledávání zpráv se nezdařila",
@ -2609,7 +2580,6 @@
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Tato místnost nepropojuje zprávy s žádnou platformou. <a>Zjistit více.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Tato místnost nepropojuje zprávy s žádnou platformou. <a>Zjistit více.</a>",
"Use high contrast": "Použít vysoký kontrast", "Use high contrast": "Použít vysoký kontrast",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Tato místnost se nachází v některých prostorech, jejichž nejste správcem. V těchto prostorech bude stará místnost stále zobrazena, ale lidé budou vyzváni, aby se připojili k nové místnosti.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Tato místnost se nachází v některých prostorech, jejichž nejste správcem. V těchto prostorech bude stará místnost stále zobrazena, ale lidé budou vyzváni, aby se připojili k nové místnosti.",
"Rename": "Přejmenovat",
"Select all": "Vybrat všechny", "Select all": "Vybrat všechny",
"Deselect all": "Zrušit výběr všech", "Deselect all": "Zrušit výběr všech",
"Sign out devices": { "Sign out devices": {
@ -3272,12 +3242,10 @@
"Verified session": "Ověřená relace", "Verified session": "Ověřená relace",
"Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutí odesílání potvrzení o přečtení.", "Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutí odesílání potvrzení o přečtení.",
"Share your activity and status with others.": "Sdílejte své aktivity a stav s ostatními.", "Share your activity and status with others.": "Sdílejte své aktivity a stav s ostatními.",
"Presence": "Přítomnost",
"Welcome": "Vítejte", "Welcome": "Vítejte",
"Show shortcut to welcome checklist above the room list": "Zobrazit zástupce na uvítací kontrolní seznam nad seznamem místností", "Show shortcut to welcome checklist above the room list": "Zobrazit zástupce na uvítací kontrolní seznam nad seznamem místností",
"Send read receipts": "Odesílat potvrzení o přečtení", "Send read receipts": "Odesílat potvrzení o přečtení",
"Inactive sessions": "Neaktivní relace", "Inactive sessions": "Neaktivní relace",
"View all": "Zobrazit všechny",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Ověřte své relace pro bezpečné zasílání zpráv nebo se odhlaste z těch, které již nepoznáváte nebo nepoužíváte.", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Ověřte své relace pro bezpečné zasílání zpráv nebo se odhlaste z těch, které již nepoznáváte nebo nepoužíváte.",
"Unverified sessions": "Neověřené relace", "Unverified sessions": "Neověřené relace",
"Security recommendations": "Bezpečnostní doporučení", "Security recommendations": "Bezpečnostní doporučení",
@ -3308,7 +3276,6 @@
"other": "%(user)s a %(count)s další" "other": "%(user)s a %(count)s další"
}, },
"%(user1)s and %(user2)s": "%(user1)s a %(user2)s", "%(user1)s and %(user2)s": "%(user1)s a %(user2)s",
"Show": "Zobrazit",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s nebo %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s nebo %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s nebo %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s nebo %(recoveryFile)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s nebo %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s nebo %(appLinks)s",
@ -3703,7 +3670,6 @@
"Email summary": "E-mailový souhrn", "Email summary": "E-mailový souhrn",
"Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Vyberte e-maily, na které chcete zasílat souhrny. E-maily můžete spravovat v nastavení <button>Obecné</button>.", "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Vyberte e-maily, na které chcete zasílat souhrny. E-maily můžete spravovat v nastavení <button>Obecné</button>.",
"People, Mentions and Keywords": "Lidé, zmínky a klíčová slova", "People, Mentions and Keywords": "Lidé, zmínky a klíčová slova",
"Proceed": "Pokračovat",
"Show message preview in desktop notification": "Zobrazit náhled zprávy v oznámení na ploše", "Show message preview in desktop notification": "Zobrazit náhled zprávy v oznámení na ploše",
"I want to be notified for (Default Setting)": "Chci být upozorňován na (Výchozí nastavení)", "I want to be notified for (Default Setting)": "Chci být upozorňován na (Výchozí nastavení)",
"Play a sound for": "Přehrát zvuk pro", "Play a sound for": "Přehrát zvuk pro",
@ -3769,7 +3735,6 @@
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Váš domovský server je příliš starý a nepodporuje minimální požadovanou verzi API. Obraťte se prosím na vlastníka serveru nebo proveďte aktualizaci serveru.", "Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Váš domovský server je příliš starý a nepodporuje minimální požadovanou verzi API. Obraťte se prosím na vlastníka serveru nebo proveďte aktualizaci serveru.",
"See less": "Zobrazit méně", "See less": "Zobrazit méně",
"See more": "Zobrazit více", "See more": "Zobrazit více",
"Deny": "Odmítnout",
"Asking to join": "Žádá se o vstup", "Asking to join": "Žádá se o vstup",
"No requests": "Žádné žádosti", "No requests": "Žádné žádosti",
"common": { "common": {
@ -3820,7 +3785,22 @@
"dark": "Tmavý", "dark": "Tmavý",
"beta": "Beta", "beta": "Beta",
"attachment": "Příloha", "attachment": "Příloha",
"appearance": "Vzhled" "appearance": "Vzhled",
"guest": "Host",
"legal": "Právní informace",
"credits": "Poděkování",
"faq": "Často kladené dotazy (FAQ)",
"access_token": "Přístupový token",
"preferences": "Předvolby",
"presence": "Přítomnost",
"timeline": "Časová osa",
"privacy": "Soukromí",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Náhodný",
"support": "Podpora",
"space": "Prostor"
}, },
"action": { "action": {
"continue": "Pokračovat", "continue": "Pokračovat",
@ -3892,7 +3872,25 @@
"back": "Zpět", "back": "Zpět",
"apply": "Použít", "apply": "Použít",
"add": "Přidat", "add": "Přidat",
"accept": "Přijmout" "accept": "Přijmout",
"disconnect": "Odpojit",
"change": "Změnit",
"subscribe": "Odebírat",
"unsubscribe": "Přestat odebírat",
"approve": "Schválit",
"deny": "Odmítnout",
"proceed": "Pokračovat",
"complete": "Dokončit",
"revoke": "Zneplatnit",
"rename": "Přejmenovat",
"view_all": "Zobrazit všechny",
"show_all": "Zobrazit vše",
"show": "Zobrazit",
"review": "Prohlédnout",
"restore": "Obnovit",
"play": "Přehrát",
"pause": "Pozastavit",
"register": "Zaregistrovat"
}, },
"a11y": { "a11y": {
"user_menu": "Uživatelská nabídka" "user_menu": "Uživatelská nabídka"
@ -3979,7 +3977,9 @@
"default": "Výchozí", "default": "Výchozí",
"restricted": "Omezené", "restricted": "Omezené",
"moderator": "Moderátor", "moderator": "Moderátor",
"admin": "Správce" "admin": "Správce",
"custom": "Vlastní (%(level)s)",
"mod": "Moderátor"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Pokud jste odeslali chybu prostřednictvím GitHubu, ladící protokoly nám mohou pomoci problém vysledovat. ", "introduction": "Pokud jste odeslali chybu prostřednictvím GitHubu, ladící protokoly nám mohou pomoci problém vysledovat. ",

View file

@ -13,7 +13,6 @@
"Invites user with given id to current room": "Inviterer bruger med givet id til nuværende rum", "Invites user with given id to current room": "Inviterer bruger med givet id til nuværende rum",
"Changes your display nickname": "Ændrer dit viste navn", "Changes your display nickname": "Ændrer dit viste navn",
"Commands": "Kommandoer", "Commands": "Kommandoer",
"Emoji": "Emoji",
"Warning!": "Advarsel!", "Warning!": "Advarsel!",
"Account": "Konto", "Account": "Konto",
"Admin": "Administrator", "Admin": "Administrator",
@ -32,7 +31,6 @@
"unknown error code": "Ukendt fejlkode", "unknown error code": "Ukendt fejlkode",
"powered by Matrix": "Drevet af Matrix", "powered by Matrix": "Drevet af Matrix",
"Failed to forget room %(errCode)s": "Kunne ikke glemme rummet %(errCode)s", "Failed to forget room %(errCode)s": "Kunne ikke glemme rummet %(errCode)s",
"Register": "Registrér",
"Unnamed room": "Unavngivet rum", "Unnamed room": "Unavngivet rum",
"This email address is already in use": "Denne email adresse er allerede i brug", "This email address is already in use": "Denne email adresse er allerede i brug",
"This phone number is already in use": "Dette telefonnummer er allerede i brug", "This phone number is already in use": "Dette telefonnummer er allerede i brug",
@ -293,7 +291,6 @@
"Sign In or Create Account": "Log ind eller Opret bruger", "Sign In or Create Account": "Log ind eller Opret bruger",
"Use your account or create a new one to continue.": "Brug din konto eller opret en ny for at fortsætte.", "Use your account or create a new one to continue.": "Brug din konto eller opret en ny for at fortsætte.",
"Create Account": "Opret brugerkonto", "Create Account": "Opret brugerkonto",
"Custom (%(level)s)": "Kustomiseret %(level)s",
"Sends a message as html, without interpreting it as markdown": "Sender besked som html, uden at tolke den som markdown", "Sends a message as html, without interpreting it as markdown": "Sender besked som html, uden at tolke den som markdown",
"Error upgrading room": "Fejl under opgradering af rum", "Error upgrading room": "Fejl under opgradering af rum",
"Double check that your server supports the room version chosen and try again.": "Dobbelt-tjek at din server understøtter den valgte rum-version og forsøg igen.", "Double check that your server supports the room version chosen and try again.": "Dobbelt-tjek at din server understøtter den valgte rum-version og forsøg igen.",
@ -364,7 +361,6 @@
"Current password": "Nuværende adgangskode", "Current password": "Nuværende adgangskode",
"Theme added!": "Tema tilføjet!", "Theme added!": "Tema tilføjet!",
"Comment": "Kommentar", "Comment": "Kommentar",
"Privacy": "Privatliv",
"Please enter a name for the room": "Indtast et navn for rummet", "Please enter a name for the room": "Indtast et navn for rummet",
"Profile": "Profil", "Profile": "Profil",
"Local address": "Lokal adresse", "Local address": "Lokal adresse",
@ -682,7 +678,9 @@
"theme": "Tema", "theme": "Tema",
"name": "Navn", "name": "Navn",
"favourites": "Favoritter", "favourites": "Favoritter",
"description": "Beskrivelse" "description": "Beskrivelse",
"privacy": "Privatliv",
"emoji": "Emoji"
}, },
"action": { "action": {
"continue": "Fortsæt", "continue": "Fortsæt",
@ -714,7 +712,8 @@
"close": "Luk", "close": "Luk",
"cancel": "Afbryd", "cancel": "Afbryd",
"back": "Tilbage", "back": "Tilbage",
"accept": "Accepter" "accept": "Accepter",
"register": "Registrér"
}, },
"labs": { "labs": {
"pinning": "Fastgørelse af beskeder", "pinning": "Fastgørelse af beskeder",
@ -724,7 +723,8 @@
"default": "Standard", "default": "Standard",
"restricted": "Begrænset", "restricted": "Begrænset",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Administrator" "admin": "Administrator",
"custom": "Kustomiseret %(level)s"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "Indsend debug-logfiler", "submit_debug_logs": "Indsend debug-logfiler",

View file

@ -14,7 +14,6 @@
"Changes your display nickname": "Ändert deinen Anzeigenamen", "Changes your display nickname": "Ändert deinen Anzeigenamen",
"Change Password": "Passwort ändern", "Change Password": "Passwort ändern",
"Commands": "Befehle", "Commands": "Befehle",
"Emoji": "Emojis",
"Warning!": "Warnung!", "Warning!": "Warnung!",
"Advanced": "Erweitert", "Advanced": "Erweitert",
"Are you sure you want to reject the invitation?": "Bist du sicher, dass du die Einladung ablehnen willst?", "Are you sure you want to reject the invitation?": "Bist du sicher, dass du die Einladung ablehnen willst?",
@ -204,8 +203,6 @@
"No media permissions": "Keine Medienberechtigungen", "No media permissions": "Keine Medienberechtigungen",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Gegebenenfalls kann es notwendig sein, dass du %(brand)s manuell den Zugriff auf dein Mikrofon bzw. deine Webcam gewähren musst", "You may need to manually permit %(brand)s to access your microphone/webcam": "Gegebenenfalls kann es notwendig sein, dass du %(brand)s manuell den Zugriff auf dein Mikrofon bzw. deine Webcam gewähren musst",
"Default Device": "Standardgerät", "Default Device": "Standardgerät",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Export": "Exportieren", "Export": "Exportieren",
"Import": "Importieren", "Import": "Importieren",
"Incorrect username and/or password.": "Inkorrekter Nutzername und/oder Passwort.", "Incorrect username and/or password.": "Inkorrekter Nutzername und/oder Passwort.",
@ -213,7 +210,6 @@
"Are you sure you want to leave the room '%(roomName)s'?": "Bist du sicher, dass du den Raum „%(roomName)s“ verlassen möchtest?", "Are you sure you want to leave the room '%(roomName)s'?": "Bist du sicher, dass du den Raum „%(roomName)s“ verlassen möchtest?",
"Custom level": "Selbstdefiniertes Berechtigungslevel", "Custom level": "Selbstdefiniertes Berechtigungslevel",
"Publish this room to the public in %(domain)s's room directory?": "Diesen Raum im Raumverzeichnis von %(domain)s veröffentlichen?", "Publish this room to the public in %(domain)s's room directory?": "Diesen Raum im Raumverzeichnis von %(domain)s veröffentlichen?",
"Register": "Registrieren",
"Verified key": "Verifizierter Schlüssel", "Verified key": "Verifizierter Schlüssel",
"You have <a>disabled</a> URL previews by default.": "Du hast die URL-Vorschau <a>standardmäßig deaktiviert</a>.", "You have <a>disabled</a> URL previews by default.": "Du hast die URL-Vorschau <a>standardmäßig deaktiviert</a>.",
"You have <a>enabled</a> URL previews by default.": "Du hast die URL-Vorschau <a>standardmäßig aktiviert</a>.", "You have <a>enabled</a> URL previews by default.": "Du hast die URL-Vorschau <a>standardmäßig aktiviert</a>.",
@ -498,7 +494,6 @@
"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.": "Deine Nachricht wurde nicht gesendet, weil dieser Heim-Server ein Ressourcen-Limit erreicht hat. Bitte <a>kontaktiere deine Systemadministration</a>, um diesen Dienst weiterzunutzen.", "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.": "Deine Nachricht wurde nicht gesendet, weil dieser Heim-Server ein Ressourcen-Limit erreicht hat. Bitte <a>kontaktiere deine Systemadministration</a>, um diesen Dienst weiterzunutzen.",
"Please <a>contact your service administrator</a> to continue using this service.": "Bitte <a>kontaktiere deinen Systemadministrator</a> um diesen Dienst weiter zu nutzen.", "Please <a>contact your service administrator</a> to continue using this service.": "Bitte <a>kontaktiere deinen Systemadministrator</a> um diesen Dienst weiter zu nutzen.",
"Please contact your homeserver administrator.": "Bitte setze dich mit der Administration deines Heim-Servers in Verbindung.", "Please contact your homeserver administrator.": "Bitte setze dich mit der Administration deines Heim-Servers in Verbindung.",
"Legal": "Rechtliches",
"This room has been replaced and is no longer active.": "Dieser Raum wurde ersetzt und ist nicht länger aktiv.", "This room has been replaced and is no longer active.": "Dieser Raum wurde ersetzt und ist nicht länger aktiv.",
"The conversation continues here.": "Die Konversation wird hier fortgesetzt.", "The conversation continues here.": "Die Konversation wird hier fortgesetzt.",
"This room is a continuation of another conversation.": "Dieser Raum ist eine Fortsetzung einer anderen Konversation.", "This room is a continuation of another conversation.": "Dieser Raum ist eine Fortsetzung einer anderen Konversation.",
@ -623,10 +618,8 @@
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke <a>hier</a> oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke <a>hier</a> oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.",
"Chat with %(brand)s Bot": "Unterhalte dich mit dem %(brand)s-Bot", "Chat with %(brand)s Bot": "Unterhalte dich mit dem %(brand)s-Bot",
"Help & About": "Hilfe und Info", "Help & About": "Hilfe und Info",
"FAQ": "Häufige Fragen",
"Versions": "Versionen", "Versions": "Versionen",
"Room Addresses": "Raumadressen", "Room Addresses": "Raumadressen",
"Preferences": "Optionen",
"Room list": "Raumliste", "Room list": "Raumliste",
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Die Datei „%(fileName)s“ überschreitet das Hochladelimit deines Heim-Servers", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Die Datei „%(fileName)s“ überschreitet das Hochladelimit deines Heim-Servers",
"This room has no topic.": "Dieser Raum hat kein Thema.", "This room has no topic.": "Dieser Raum hat kein Thema.",
@ -698,7 +691,6 @@
"Anchor": "Anker", "Anchor": "Anker",
"Headphones": "Kopfhörer", "Headphones": "Kopfhörer",
"Folder": "Ordner", "Folder": "Ordner",
"Timeline": "Verlauf",
"Autocomplete delay (ms)": "Verzögerung vor Autovervollständigung (ms)", "Autocomplete delay (ms)": "Verzögerung vor Autovervollständigung (ms)",
"Roles & Permissions": "Rollen und Berechtigungen", "Roles & Permissions": "Rollen und Berechtigungen",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Änderungen an der Sichtbarkeit des Verlaufs gelten nur für zukünftige Nachrichten. Die Sichtbarkeit des existierenden Verlaufs bleibt unverändert.", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Änderungen an der Sichtbarkeit des Verlaufs gelten nur für zukünftige Nachrichten. Die Sichtbarkeit des existierenden Verlaufs bleibt unverändert.",
@ -721,7 +713,6 @@
"Restore from Backup": "Von Sicherung wiederherstellen", "Restore from Backup": "Von Sicherung wiederherstellen",
"Back up your keys before signing out to avoid losing them.": "Um deine Schlüssel nicht zu verlieren, musst du sie vor der Abmeldung sichern.", "Back up your keys before signing out to avoid losing them.": "Um deine Schlüssel nicht zu verlieren, musst du sie vor der Abmeldung sichern.",
"Start using Key Backup": "Beginne Schlüsselsicherung zu nutzen", "Start using Key Backup": "Beginne Schlüsselsicherung zu nutzen",
"Credits": "Danksagungen",
"Success!": "Erfolgreich!", "Success!": "Erfolgreich!",
"Your keys are being backed up (the first backup could take a few minutes).": "Deine Schlüssel werden gesichert (Das erste Backup könnte ein paar Minuten in Anspruch nehmen).", "Your keys are being backed up (the first backup could take a few minutes).": "Deine Schlüssel werden gesichert (Das erste Backup könnte ein paar Minuten in Anspruch nehmen).",
"Voice & Video": "Anrufe", "Voice & Video": "Anrufe",
@ -732,12 +723,10 @@
"I don't want my encrypted messages": "Ich möchte meine verschlüsselten Nachrichten nicht", "I don't want my encrypted messages": "Ich möchte meine verschlüsselten Nachrichten nicht",
"You'll lose access to your encrypted messages": "Du wirst den Zugang zu deinen verschlüsselten Nachrichten verlieren", "You'll lose access to your encrypted messages": "Du wirst den Zugang zu deinen verschlüsselten Nachrichten verlieren",
"This homeserver would like to make sure you are not a robot.": "Dieser Heim-Server möchte sicherstellen, dass du kein Roboter bist.", "This homeserver would like to make sure you are not a robot.": "Dieser Heim-Server möchte sicherstellen, dass du kein Roboter bist.",
"Change": "Ändern",
"Email (optional)": "E-Mail-Adresse (optional)", "Email (optional)": "E-Mail-Adresse (optional)",
"Phone (optional)": "Telefon (optional)", "Phone (optional)": "Telefon (optional)",
"Other": "Sonstiges", "Other": "Sonstiges",
"Couldn't load page": "Konnte Seite nicht laden", "Couldn't load page": "Konnte Seite nicht laden",
"Guest": "Gast",
"Your password has been reset.": "Dein Passwort wurde zurückgesetzt.", "Your password has been reset.": "Dein Passwort wurde zurückgesetzt.",
"This homeserver does not support login using email address.": "Dieser Heim-Server unterstützt die Anmeldung per E-Mail-Adresse nicht.", "This homeserver does not support login using email address.": "Dieser Heim-Server unterstützt die Anmeldung per E-Mail-Adresse nicht.",
"Create account": "Konto anlegen", "Create account": "Konto anlegen",
@ -825,7 +814,6 @@
"You do not have the required permissions to use this command.": "Du hast nicht die erforderlichen Berechtigungen, diesen Befehl zu verwenden.", "You do not have the required permissions to use this command.": "Du hast nicht die erforderlichen Berechtigungen, diesen Befehl zu verwenden.",
"Checking server": "Überprüfe Server", "Checking server": "Überprüfe Server",
"Identity server has no terms of service": "Der Identitäts-Server hat keine Nutzungsbedingungen", "Identity server has no terms of service": "Der Identitäts-Server hat keine Nutzungsbedingungen",
"Disconnect": "Trennen",
"Use an identity server": "Benutze einen Identitäts-Server", "Use an identity server": "Benutze einen Identitäts-Server",
"Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Benutze einen Identitäts-Server, um andere mittels E-Mail einzuladen. Klicke auf fortfahren, um den Standard-Identitäts-Server (%(defaultIdentityServerName)s) zu benutzen oder ändere ihn in den Einstellungen.", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Benutze einen Identitäts-Server, um andere mittels E-Mail einzuladen. Klicke auf fortfahren, um den Standard-Identitäts-Server (%(defaultIdentityServerName)s) zu benutzen oder ändere ihn in den Einstellungen.",
"Terms of service not accepted or the identity server is invalid.": "Nutzungsbedingungen nicht akzeptiert oder der Identitäts-Server ist ungültig.", "Terms of service not accepted or the identity server is invalid.": "Nutzungsbedingungen nicht akzeptiert oder der Identitäts-Server ist ungültig.",
@ -843,7 +831,6 @@
"Show previews/thumbnails for images": "Vorschauen für Bilder", "Show previews/thumbnails for images": "Vorschauen für Bilder",
"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.": "Diese Handlung erfordert es, auf den Standard-Identitäts-Server <server /> zuzugreifen, um eine E-Mail-Adresse oder Telefonnummer zu validieren, aber der Server hat keine Nutzungsbedingungen.", "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.": "Diese Handlung erfordert es, auf den Standard-Identitäts-Server <server /> zuzugreifen, um eine E-Mail-Adresse oder Telefonnummer zu validieren, aber der Server hat keine Nutzungsbedingungen.",
"Only continue if you trust the owner of the server.": "Fahre nur fort, wenn du den Server-Betreibenden vertraust.", "Only continue if you trust the owner of the server.": "Fahre nur fort, wenn du den Server-Betreibenden vertraust.",
"Custom (%(level)s)": "Benutzerdefiniert (%(level)s)",
"Sends a message as plain text, without interpreting it as markdown": "Sendet eine Nachricht als Klartext, ohne sie als Markdown darzustellen", "Sends a message as plain text, without interpreting it as markdown": "Sendet eine Nachricht als Klartext, ohne sie als Markdown darzustellen",
"Use an identity server to invite by email. Manage in Settings.": "Verwende einen Identitäts-Server, um per E-Mail einladen zu können. Lege einen in den Einstellungen fest.", "Use an identity server to invite by email. Manage in Settings.": "Verwende einen Identitäts-Server, um per E-Mail einladen zu können. Lege einen in den Einstellungen fest.",
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
@ -878,7 +865,6 @@
"Enable message search in encrypted rooms": "Nachrichtensuche in verschlüsselten Räumen aktivieren", "Enable message search in encrypted rooms": "Nachrichtensuche in verschlüsselten Räumen aktivieren",
"Lock": "Schloss", "Lock": "Schloss",
"Later": "Später", "Later": "Später",
"Review": "Überprüfen",
"not found": "nicht gefunden", "not found": "nicht gefunden",
"Manage": "Verwalten", "Manage": "Verwalten",
"Securely cache encrypted messages locally for them to appear in search results.": "Speichere verschlüsselte Nachrichten lokal, sodass sie deinen Suchergebnissen erscheinen können.", "Securely cache encrypted messages locally for them to appear in search results.": "Speichere verschlüsselte Nachrichten lokal, sodass sie deinen Suchergebnissen erscheinen können.",
@ -907,7 +893,6 @@
"User rules": "Nutzerregeln", "User rules": "Nutzerregeln",
"You have not ignored anyone.": "Du hast niemanden blockiert.", "You have not ignored anyone.": "Du hast niemanden blockiert.",
"You are currently ignoring:": "Du ignorierst momentan:", "You are currently ignoring:": "Du ignorierst momentan:",
"Unsubscribe": "Deabonnieren",
"View rules": "Regeln öffnen", "View rules": "Regeln öffnen",
"You are currently subscribed to:": "Du abonnierst momentan:", "You are currently subscribed to:": "Du abonnierst momentan:",
"⚠ These settings are meant for advanced users.": "⚠ Diese Einstellungen sind für fortgeschrittene Nutzer gedacht.", "⚠ These settings are meant for advanced users.": "⚠ Diese Einstellungen sind für fortgeschrittene Nutzer gedacht.",
@ -1123,7 +1108,6 @@
"Subscribed lists": "Abonnierte Listen", "Subscribed lists": "Abonnierte Listen",
"Subscribing to a ban list will cause you to join it!": "Eine Verbotsliste abonnieren bedeutet ihr beizutreten!", "Subscribing to a ban list will cause you to join it!": "Eine Verbotsliste abonnieren bedeutet ihr beizutreten!",
"If this isn't what you want, please use a different tool to ignore users.": "Wenn dies nicht das ist, was du willst, verwende ein anderes Werkzeug, um Benutzer zu blockieren.", "If this isn't what you want, please use a different tool to ignore users.": "Wenn dies nicht das ist, was du willst, verwende ein anderes Werkzeug, um Benutzer zu blockieren.",
"Subscribe": "Abonnieren",
"Always show the window menu bar": "Fenstermenüleiste immer anzeigen", "Always show the window menu bar": "Fenstermenüleiste immer anzeigen",
"Session ID:": "Sitzungs-ID:", "Session ID:": "Sitzungs-ID:",
"Message search": "Nachrichtensuche", "Message search": "Nachrichtensuche",
@ -1165,11 +1149,8 @@
"Error changing power level": "Fehler beim Ändern der Benutzerrechte", "Error changing power level": "Fehler beim Ändern der Benutzerrechte",
"Your email address hasn't been verified yet": "Deine E-Mail-Adresse wurde noch nicht verifiziert", "Your email address hasn't been verified yet": "Deine E-Mail-Adresse wurde noch nicht verifiziert",
"Verify the link in your inbox": "Verifiziere den Link in deinem Posteingang", "Verify the link in your inbox": "Verifiziere den Link in deinem Posteingang",
"Complete": "Abschließen",
"Revoke": "Widerrufen",
"You have not verified this user.": "Du hast diesen Nutzer nicht verifiziert.", "You have not verified this user.": "Du hast diesen Nutzer nicht verifiziert.",
"Everyone in this room is verified": "Alle in diesem Raum sind verifiziert", "Everyone in this room is verified": "Alle in diesem Raum sind verifiziert",
"Mod": "Moderator",
"Scroll to most recent messages": "Zur neusten Nachricht springen", "Scroll to most recent messages": "Zur neusten Nachricht springen",
"No recent messages by %(user)s found": "Keine neuen Nachrichten von %(user)s gefunden", "No recent messages by %(user)s found": "Keine neuen Nachrichten von %(user)s gefunden",
"Try scrolling up in the timeline to see if there are any earlier ones.": "Versuche nach oben zu scrollen, um zu sehen ob sich dort frühere Nachrichten befinden.", "Try scrolling up in the timeline to see if there are any earlier ones.": "Versuche nach oben zu scrollen, um zu sehen ob sich dort frühere Nachrichten befinden.",
@ -1246,7 +1227,6 @@
"You declined": "Du hast abgelehnt", "You declined": "Du hast abgelehnt",
"You cancelled": "Du brachst ab", "You cancelled": "Du brachst ab",
"You sent a verification request": "Du hast eine Verifizierungsanfrage gesendet", "You sent a verification request": "Du hast eine Verifizierungsanfrage gesendet",
"Show all": "Alles zeigen",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>hat mit %(shortName)s reagiert</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>hat mit %(shortName)s reagiert</reactedWith>",
"Message deleted": "Nachricht gelöscht", "Message deleted": "Nachricht gelöscht",
"Message deleted by %(name)s": "Nachricht von %(name)s gelöscht", "Message deleted by %(name)s": "Nachricht von %(name)s gelöscht",
@ -1319,7 +1299,6 @@
"Toggle Italics": "Kursiv", "Toggle Italics": "Kursiv",
"Toggle Quote": "Zitat umschalten", "Toggle Quote": "Zitat umschalten",
"New line": "Neue Zeile", "New line": "Neue Zeile",
"Space": "Space",
"Please fill why you're reporting.": "Bitte gib an, weshalb du einen Fehler meldest.", "Please fill why you're reporting.": "Bitte gib an, weshalb du einen Fehler meldest.",
"Upgrade private room": "Privaten Raum aktualisieren", "Upgrade private room": "Privaten Raum aktualisieren",
"Upgrade public room": "Öffentlichen Raum aktualisieren", "Upgrade public room": "Öffentlichen Raum aktualisieren",
@ -1407,7 +1386,6 @@
"Room Autocomplete": "Raum-Auto-Vervollständigung", "Room Autocomplete": "Raum-Auto-Vervollständigung",
"User Autocomplete": "Nutzer-Auto-Vervollständigung", "User Autocomplete": "Nutzer-Auto-Vervollständigung",
"Restore your key backup to upgrade your encryption": "Schlüsselsicherung wiederherstellen, um deine Verschlüsselung zu aktualisieren", "Restore your key backup to upgrade your encryption": "Schlüsselsicherung wiederherstellen, um deine Verschlüsselung zu aktualisieren",
"Restore": "Wiederherstellen",
"Upgrade your encryption": "Aktualisiere deine Verschlüsselung", "Upgrade your encryption": "Aktualisiere deine Verschlüsselung",
"Unable to set up secret storage": "Sicherer Speicher kann nicht eingerichtet werden", "Unable to set up secret storage": "Sicherer Speicher kann nicht eingerichtet werden",
"Create key backup": "Schlüsselsicherung erstellen", "Create key backup": "Schlüsselsicherung erstellen",
@ -1569,7 +1547,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.": "Du solltest dies aktivieren, wenn der Raum nur für die Zusammenarbeit mit Benutzern von deinem Heim-Server verwendet werden soll. Dies kann später nicht mehr geändert werden.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Du solltest dies aktivieren, wenn der Raum nur für die Zusammenarbeit mit Benutzern von deinem Heim-Server verwendet werden soll. Dies kann später nicht mehr geändert werden.",
"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.": "Du solltest dies deaktivieren, wenn der Raum für die Zusammenarbeit mit Benutzern von anderen Heim-Server verwendet werden soll. Dies kann später nicht mehr geändert werden.", "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.": "Du solltest dies deaktivieren, wenn der Raum für die Zusammenarbeit mit Benutzern von anderen Heim-Server verwendet werden soll. Dies kann später nicht mehr geändert werden.",
"Block anyone not part of %(serverName)s from ever joining this room.": "Betreten nur für Nutzer von %(serverName)s erlauben.", "Block anyone not part of %(serverName)s from ever joining this room.": "Betreten nur für Nutzer von %(serverName)s erlauben.",
"Privacy": "Privatsphäre",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Stellt ( ͡° ͜ʖ ͡°) einer Klartextnachricht voran", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Stellt ( ͡° ͜ʖ ͡°) einer Klartextnachricht voran",
"Unknown App": "Unbekannte App", "Unknown App": "Unbekannte App",
"Not encrypted": "Nicht verschlüsselt", "Not encrypted": "Nicht verschlüsselt",
@ -1711,7 +1688,6 @@
"Invite someone using their name, email address, username (like <userId/>) or <a>share this room</a>.": "Lade jemanden mittels Name, E-Mail-Adresse oder Benutzername (wie <userId/>) ein, oder <a>teile diesen Raum</a>.", "Invite someone using their name, email address, username (like <userId/>) or <a>share this room</a>.": "Lade jemanden mittels Name, E-Mail-Adresse oder Benutzername (wie <userId/>) ein, oder <a>teile diesen Raum</a>.",
"Approve widget permissions": "Rechte für das Widget genehmigen", "Approve widget permissions": "Rechte für das Widget genehmigen",
"This widget would like to:": "Dieses Widget würde gerne:", "This widget would like to:": "Dieses Widget würde gerne:",
"Approve": "Zustimmen",
"Decline All": "Alles ablehnen", "Decline All": "Alles ablehnen",
"Go to Home View": "Zur Startseite gehen", "Go to Home View": "Zur Startseite gehen",
"%(creator)s created this DM.": "%(creator)s hat diese Direktnachricht erstellt.", "%(creator)s created this DM.": "%(creator)s hat diese Direktnachricht erstellt.",
@ -2115,7 +2091,6 @@
"Failed to invite the following users to your space: %(csvUsers)s": "Die folgenden Leute konnten nicht eingeladen werden: %(csvUsers)s", "Failed to invite the following users to your space: %(csvUsers)s": "Die folgenden Leute konnten nicht eingeladen werden: %(csvUsers)s",
"Share %(name)s": "%(name)s teilen", "Share %(name)s": "%(name)s teilen",
"Skip for now": "Vorerst überspringen", "Skip for now": "Vorerst überspringen",
"Random": "Ohne Thema",
"Welcome to <name/>": "Willkommen bei <name/>", "Welcome to <name/>": "Willkommen bei <name/>",
"Private space": "Privater Space", "Private space": "Privater Space",
"Public space": "Öffentlicher Space", "Public space": "Öffentlicher Space",
@ -2176,7 +2151,6 @@
"unknown person": "unbekannte Person", "unknown person": "unbekannte Person",
"%(deviceId)s from %(ip)s": "%(deviceId)s von %(ip)s", "%(deviceId)s from %(ip)s": "%(deviceId)s von %(ip)s",
"Review to ensure your account is safe": "Überprüfe sie, um ein sicheres Konto gewährleisten zu können", "Review to ensure your account is safe": "Überprüfe sie, um ein sicheres Konto gewährleisten zu können",
"Support": "Unterstützung",
"This room is suggested as a good one to join": "Dieser Raum wird vorgeschlagen", "This room is suggested as a good one to join": "Dieser Raum wird vorgeschlagen",
"Verification requested": "Verifizierung angefragt", "Verification requested": "Verifizierung angefragt",
"Avatar": "Avatar", "Avatar": "Avatar",
@ -2218,8 +2192,6 @@
"If you do, please note that none of your messages will be deleted, but the search experience might be degraded for a few moments whilst the index is recreated": "Falls du es wirklich willst: Es werden keine Nachrichten gelöscht. Außerdem wird die Suche, während der Index erstellt wird, etwas langsamer sein", "If you do, please note that none of your messages will be deleted, but the search experience might be degraded for a few moments whilst the index is recreated": "Falls du es wirklich willst: Es werden keine Nachrichten gelöscht. Außerdem wird die Suche, während der Index erstellt wird, etwas langsamer sein",
"Including %(commaSeparatedMembers)s": "Inklusive %(commaSeparatedMembers)s", "Including %(commaSeparatedMembers)s": "Inklusive %(commaSeparatedMembers)s",
"Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "%(transferTarget)s wird angefragt. <a>Übertragung zu %(transferee)s</a>", "Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "%(transferTarget)s wird angefragt. <a>Übertragung zu %(transferee)s</a>",
"Play": "Abspielen",
"Pause": "Pause",
"What do you want to organise?": "Was willst du organisieren?", "What do you want to organise?": "Was willst du organisieren?",
"Enter your Security Phrase a second time to confirm it.": "Gib dein Kennwort ein zweites Mal zur Bestätigung ein.", "Enter your Security Phrase a second time to confirm it.": "Gib dein Kennwort ein zweites Mal zur Bestätigung ein.",
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Wähle Räume oder Konversationen die du hinzufügen willst. Dieser Space ist nur für dich, niemand wird informiert. Du kannst später mehr hinzufügen.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Wähle Räume oder Konversationen die du hinzufügen willst. Dieser Space ist nur für dich, niemand wird informiert. Du kannst später mehr hinzufügen.",
@ -2248,7 +2220,6 @@
"To leave the beta, visit your settings.": "Du kannst die Beta in den Einstellungen deaktivieren.", "To leave the beta, visit your settings.": "Du kannst die Beta in den Einstellungen deaktivieren.",
"Your platform and username will be noted to help us use your feedback as much as we can.": "Deine Systeminformationen und dein Benutzername werden mitgeschickt, damit wir deine Rückmeldung bestmöglich nachvollziehen können.", "Your platform and username will be noted to help us use your feedback as much as we can.": "Deine Systeminformationen und dein Benutzername werden mitgeschickt, damit wir deine Rückmeldung bestmöglich nachvollziehen können.",
"Your access token gives full access to your account. Do not share it with anyone.": "Dein Zugriffstoken gibt vollen Zugriff auf dein Konto. Teile ihn niemals mit anderen.", "Your access token gives full access to your account. Do not share it with anyone.": "Dein Zugriffstoken gibt vollen Zugriff auf dein Konto. Teile ihn niemals mit anderen.",
"Access Token": "Zugriffstoken",
"sends space invaders": "sendet Space Invaders", "sends space invaders": "sendet Space Invaders",
"Sends the given message with a space themed effect": "Sendet die Nachricht mit Raumschiffen", "Sends the given message with a space themed effect": "Sendet die Nachricht mit Raumschiffen",
"Space Autocomplete": "Spaces automatisch vervollständigen", "Space Autocomplete": "Spaces automatisch vervollständigen",
@ -2606,7 +2577,6 @@
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Dieser Raum leitet keine Nachrichten von/an andere(n) Plattformen weiter. <a>Mehr erfahren.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Dieser Raum leitet keine Nachrichten von/an andere(n) Plattformen weiter. <a>Mehr erfahren.</a>",
"Use high contrast": "Hohen Kontrast verwenden", "Use high contrast": "Hohen Kontrast verwenden",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Dieser Raum ist Teil von Spaces von denen du kein Administrator bist. In diesen Räumen wird der alte Raum weiter angezeigt werden, aber Personen werden aufgefordert werden, dem neuen Raum beizutreten.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Dieser Raum ist Teil von Spaces von denen du kein Administrator bist. In diesen Räumen wird der alte Raum weiter angezeigt werden, aber Personen werden aufgefordert werden, dem neuen Raum beizutreten.",
"Rename": "Umbenennen",
"Deselect all": "Alle abwählen", "Deselect all": "Alle abwählen",
"Select all": "Alle auswählen", "Select all": "Alle auswählen",
"Sign out devices": { "Sign out devices": {
@ -3174,7 +3144,6 @@
"Your server doesn't support disabling sending read receipts.": "Dein Server unterstützt das Deaktivieren von Lesebestätigungen nicht.", "Your server doesn't support disabling sending read receipts.": "Dein Server unterstützt das Deaktivieren von Lesebestätigungen nicht.",
"Send read receipts": "Sende Lesebestätigungen", "Send read receipts": "Sende Lesebestätigungen",
"Share your activity and status with others.": "Teile anderen deine Aktivität und deinen Status mit.", "Share your activity and status with others.": "Teile anderen deine Aktivität und deinen Status mit.",
"Presence": "Anwesenheit",
"Deactivating your account is a permanent action — be careful!": "Die Deaktivierung deines Kontos ist unwiderruflich — sei vorsichtig!", "Deactivating your account is a permanent action — be careful!": "Die Deaktivierung deines Kontos ist unwiderruflich — sei vorsichtig!",
"Developer command: Discards the current outbound group session and sets up new Olm sessions": "Entwicklungsbefehl: Verwirft die aktuell ausgehende Gruppensitzung und setzt eine neue Olm-Sitzung auf", "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Entwicklungsbefehl: Verwirft die aktuell ausgehende Gruppensitzung und setzt eine neue Olm-Sitzung auf",
"Toggle attribution": "Info ein-/ausblenden", "Toggle attribution": "Info ein-/ausblenden",
@ -3182,7 +3151,6 @@
"Joining…": "Betrete …", "Joining…": "Betrete …",
"Show Labs settings": "Zeige die \"Labor\" Einstellungen", "Show Labs settings": "Zeige die \"Labor\" Einstellungen",
"To view, please enable video rooms in Labs first": "Zum Anzeigen, aktiviere bitte Videoräume in den Laboreinstellungen", "To view, please enable video rooms in Labs first": "Zum Anzeigen, aktiviere bitte Videoräume in den Laboreinstellungen",
"View all": "Alles anzeigen",
"Security recommendations": "Sicherheitsempfehlungen", "Security recommendations": "Sicherheitsempfehlungen",
"Filter devices": "Geräte filtern", "Filter devices": "Geräte filtern",
"Inactive for %(inactiveAgeDays)s days or longer": "Seit %(inactiveAgeDays)s oder mehr Tagen inaktiv", "Inactive for %(inactiveAgeDays)s days or longer": "Seit %(inactiveAgeDays)s oder mehr Tagen inaktiv",
@ -3319,7 +3287,6 @@
"Your server lacks native support, you must specify a proxy": "Dein Server unterstützt dies nicht nativ, du musst einen Proxy angeben", "Your server lacks native support, you must specify a proxy": "Dein Server unterstützt dies nicht nativ, du musst einen Proxy angeben",
"Your server lacks native support": "Dein Server unterstützt dies nicht nativ", "Your server lacks native support": "Dein Server unterstützt dies nicht nativ",
"To disable you will need to log out and back in, use with caution!": "Zum Deaktivieren musst du dich neu anmelden. Mit Vorsicht verwenden!", "To disable you will need to log out and back in, use with caution!": "Zum Deaktivieren musst du dich neu anmelden. Mit Vorsicht verwenden!",
"Show": "Zeigen",
"Voice broadcast": "Sprachübertragung", "Voice broadcast": "Sprachübertragung",
"Voice broadcasts": "Sprachübertragungen", "Voice broadcasts": "Sprachübertragungen",
"You need to be able to kick users to do that.": "Du musst in der Lage sein, Benutzer zu entfernen um das zu tun.", "You need to be able to kick users to do that.": "Du musst in der Lage sein, Benutzer zu entfernen um das zu tun.",
@ -3710,7 +3677,6 @@
"Receive an email summary of missed notifications": "E-Mail-Zusammenfassung für verpasste Benachrichtigungen erhalten", "Receive an email summary of missed notifications": "E-Mail-Zusammenfassung für verpasste Benachrichtigungen erhalten",
"Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Wähle, an welche E-Mail-Adresse die Zusammenfassungen gesendet werden. Verwalte deine E-Mail-Adressen unter <button>Allgemein</button>.", "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Wähle, an welche E-Mail-Adresse die Zusammenfassungen gesendet werden. Verwalte deine E-Mail-Adressen unter <button>Allgemein</button>.",
"Mentions and Keywords only": "Nur Erwähnungen und Schlüsselwörter", "Mentions and Keywords only": "Nur Erwähnungen und Schlüsselwörter",
"Proceed": "Fortfahren",
"Show message preview in desktop notification": "Nachrichtenvorschau in der Desktopbenachrichtigung anzeigen", "Show message preview in desktop notification": "Nachrichtenvorschau in der Desktopbenachrichtigung anzeigen",
"I want to be notified for (Default Setting)": "Ich möchte benachrichtigt werden für (Standardeinstellung)", "I want to be notified for (Default Setting)": "Ich möchte benachrichtigt werden für (Standardeinstellung)",
"This setting will be applied by default to all your rooms.": "Diese Einstellung wird standardmäßig für all deine Räume übernommen.", "This setting will be applied by default to all your rooms.": "Diese Einstellung wird standardmäßig für all deine Räume übernommen.",
@ -3767,7 +3733,6 @@
"Your server is unsupported": "Dein Server wird nicht unterstützt", "Your server is unsupported": "Dein Server wird nicht unterstützt",
"This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "Dieser Server nutzt eine ältere Matrix-Version. Aktualisiere auf Matrix %(version)s, um %(brand)s fehlerfrei nutzen zu können.", "This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "Dieser Server nutzt eine ältere Matrix-Version. Aktualisiere auf Matrix %(version)s, um %(brand)s fehlerfrei nutzen zu können.",
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Dein Heim-Server ist zu alt und unterstützt nicht die benötigte API-Version. Bitte kontaktiere deine Server-Administration oder aktualisiere deinen Server.", "Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Dein Heim-Server ist zu alt und unterstützt nicht die benötigte API-Version. Bitte kontaktiere deine Server-Administration oder aktualisiere deinen Server.",
"Deny": "Ablehnen",
"No requests": "Keine Anfragen", "No requests": "Keine Anfragen",
"Asking to join": "Beitrittsanfragen", "Asking to join": "Beitrittsanfragen",
"See less": "Weniger", "See less": "Weniger",
@ -3820,7 +3785,22 @@
"dark": "Dunkel", "dark": "Dunkel",
"beta": "Beta", "beta": "Beta",
"attachment": "Anhang", "attachment": "Anhang",
"appearance": "Erscheinungsbild" "appearance": "Erscheinungsbild",
"guest": "Gast",
"legal": "Rechtliches",
"credits": "Danksagungen",
"faq": "Häufige Fragen",
"access_token": "Zugriffstoken",
"preferences": "Optionen",
"presence": "Anwesenheit",
"timeline": "Verlauf",
"privacy": "Privatsphäre",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emojis",
"random": "Ohne Thema",
"support": "Unterstützung",
"space": "Space"
}, },
"action": { "action": {
"continue": "Fortfahren", "continue": "Fortfahren",
@ -3892,7 +3872,25 @@
"back": "Zurück", "back": "Zurück",
"apply": "Anwenden", "apply": "Anwenden",
"add": "Hinzufügen", "add": "Hinzufügen",
"accept": "Annehmen" "accept": "Annehmen",
"disconnect": "Trennen",
"change": "Ändern",
"subscribe": "Abonnieren",
"unsubscribe": "Deabonnieren",
"approve": "Zustimmen",
"deny": "Ablehnen",
"proceed": "Fortfahren",
"complete": "Abschließen",
"revoke": "Widerrufen",
"rename": "Umbenennen",
"view_all": "Alles anzeigen",
"show_all": "Alles zeigen",
"show": "Zeigen",
"review": "Überprüfen",
"restore": "Wiederherstellen",
"play": "Abspielen",
"pause": "Pause",
"register": "Registrieren"
}, },
"a11y": { "a11y": {
"user_menu": "Benutzermenü" "user_menu": "Benutzermenü"
@ -3979,7 +3977,9 @@
"default": "Standard", "default": "Standard",
"restricted": "Eingeschränkt", "restricted": "Eingeschränkt",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"custom": "Benutzerdefiniert (%(level)s)",
"mod": "Moderator"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Wenn du uns einen Bug auf GitHub gemeldet hast, können uns Debug-Logs helfen, das Problem zu finden. ", "introduction": "Wenn du uns einen Bug auf GitHub gemeldet hast, können uns Debug-Logs helfen, das Problem zu finden. ",

View file

@ -8,8 +8,6 @@
"No Microphones detected": "Δεν εντοπίστηκε μικρόφωνο", "No Microphones detected": "Δεν εντοπίστηκε μικρόφωνο",
"No Webcams detected": "Δεν εντοπίστηκε κάμερα", "No Webcams detected": "Δεν εντοπίστηκε κάμερα",
"Default Device": "Προεπιλεγμένη συσκευή", "Default Device": "Προεπιλεγμένη συσκευή",
"Microphone": "Μικρόφωνο",
"Camera": "Κάμερα",
"Advanced": "Προχωρημένες", "Advanced": "Προχωρημένες",
"Authentication": "Πιστοποίηση", "Authentication": "Πιστοποίηση",
"A new password must be entered.": "Ο νέος κωδικός πρόσβασης πρέπει να εισαχθεί.", "A new password must be entered.": "Ο νέος κωδικός πρόσβασης πρέπει να εισαχθεί.",
@ -41,7 +39,6 @@
"Download %(text)s": "Λήψη %(text)s", "Download %(text)s": "Λήψη %(text)s",
"Email": "Ηλεκτρονική διεύθυνση", "Email": "Ηλεκτρονική διεύθυνση",
"Email address": "Ηλεκτρονική διεύθυνση", "Email address": "Ηλεκτρονική διεύθυνση",
"Emoji": "Εικονίδια",
"Error decrypting attachment": "Σφάλμα κατά την αποκρυπτογράφηση της επισύναψης", "Error decrypting attachment": "Σφάλμα κατά την αποκρυπτογράφηση της επισύναψης",
"Export": "Εξαγωγή", "Export": "Εξαγωγή",
"Export E2E room keys": "Εξαγωγή κλειδιών κρυπτογράφησης για το δωμάτιο", "Export E2E room keys": "Εξαγωγή κλειδιών κρυπτογράφησης για το δωμάτιο",
@ -77,7 +74,6 @@
"No more results": "Δεν υπάρχουν άλλα αποτελέσματα", "No more results": "Δεν υπάρχουν άλλα αποτελέσματα",
"Passwords can't be empty": "Οι κωδικοί πρόσβασης δεν γίνετε να είναι κενοί", "Passwords can't be empty": "Οι κωδικοί πρόσβασης δεν γίνετε να είναι κενοί",
"Phone": "Τηλέφωνο", "Phone": "Τηλέφωνο",
"Register": "Εγγραφή",
"%(brand)s version:": "Έκδοση %(brand)s:", "%(brand)s version:": "Έκδοση %(brand)s:",
"Rooms": "Δωμάτια", "Rooms": "Δωμάτια",
"Search failed": "Η αναζήτηση απέτυχε", "Search failed": "Η αναζήτηση απέτυχε",
@ -352,7 +348,6 @@
"Call in progress": "Κλήση σε εξέλιξη", "Call in progress": "Κλήση σε εξέλιξη",
"%(senderName)s joined the call": "Ο χρήστης %(senderName)s συνδέθηκε στην κλήση", "%(senderName)s joined the call": "Ο χρήστης %(senderName)s συνδέθηκε στην κλήση",
"You joined the call": "Συνδεθήκατε στην κλήση", "You joined the call": "Συνδεθήκατε στην κλήση",
"Guest": "Επισκέπτης",
"Ok": "Εντάξει", "Ok": "Εντάξει",
"Your homeserver has exceeded its user limit.": "Ο διακομιστής σας ξεπέρασε το όριο χρηστών.", "Your homeserver has exceeded its user limit.": "Ο διακομιστής σας ξεπέρασε το όριο χρηστών.",
"Use app": "Χρησιμοποιήστε την εφαρμογή", "Use app": "Χρησιμοποιήστε την εφαρμογή",
@ -668,7 +663,6 @@
"Setting up keys": "Ρύθμιση κλειδιών", "Setting up keys": "Ρύθμιση κλειδιών",
"Some invites couldn't be sent": "Δεν ήταν δυνατή η αποστολή κάποιων προσκλήσεων", "Some invites couldn't be sent": "Δεν ήταν δυνατή η αποστολή κάποιων προσκλήσεων",
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Στάλθηκαν οι προσκλήσεις στους άλλους, αλλά δεν ήταν δυνατή η αποστολή πρόσκλησης στους παρακάτω στο <RoomName/>", "We sent the others, but the below people couldn't be invited to <RoomName/>": "Στάλθηκαν οι προσκλήσεις στους άλλους, αλλά δεν ήταν δυνατή η αποστολή πρόσκλησης στους παρακάτω στο <RoomName/>",
"Custom (%(level)s)": "Προσαρμοσμένα (%(level)s)",
"Wallis & Futuna": "Ουώλλις και Φουτούνα", "Wallis & Futuna": "Ουώλλις και Φουτούνα",
"Vanuatu": "Βανουάτου", "Vanuatu": "Βανουάτου",
"U.S. Virgin Islands": "Αμερικανικές Παρθένοι Νήσο", "U.S. Virgin Islands": "Αμερικανικές Παρθένοι Νήσο",
@ -831,8 +825,6 @@
"You have not verified this user.": "Δεν έχετε επαληθεύσει αυτόν τον χρήστη.", "You have not verified this user.": "Δεν έχετε επαληθεύσει αυτόν τον χρήστη.",
"This user has not verified all of their sessions.": "Αυτός ο χρήστης δεν έχει επαληθεύσει όλες τις συνεδρίες του.", "This user has not verified all of their sessions.": "Αυτός ο χρήστης δεν έχει επαληθεύσει όλες τις συνεδρίες του.",
"Phone Number": "Αριθμός Τηλεφώνου", "Phone Number": "Αριθμός Τηλεφώνου",
"Revoke": "Ανάκληση",
"Complete": "Ολοκληρώθηκε",
"Verify the link in your inbox": "Επαληθεύστε τον σύνδεσμο στα εισερχόμενα σας", "Verify the link in your inbox": "Επαληθεύστε τον σύνδεσμο στα εισερχόμενα σας",
"Your email address hasn't been verified yet": "Η διεύθυνση email σας δεν έχει επαληθευτεί ακόμα", "Your email address hasn't been verified yet": "Η διεύθυνση email σας δεν έχει επαληθευτεί ακόμα",
"Unable to share email address": "Δεν είναι δυνατή η κοινή χρήση της διεύθυνσης email", "Unable to share email address": "Δεν είναι δυνατή η κοινή χρήση της διεύθυνσης email",
@ -1140,7 +1132,6 @@
"Enable desktop notifications": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας", "Enable desktop notifications": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας",
"Don't miss a reply": "Μην χάσετε καμία απάντηση", "Don't miss a reply": "Μην χάσετε καμία απάντηση",
"Later": "Αργότερα", "Later": "Αργότερα",
"Review": "Ανασκόπηση",
"Review to ensure your account is safe": "Ελέγξτε για να βεβαιωθείτε ότι ο λογαριασμός σας είναι ασφαλής", "Review to ensure your account is safe": "Ελέγξτε για να βεβαιωθείτε ότι ο λογαριασμός σας είναι ασφαλής",
"Share anonymous data to help us identify issues. Nothing personal. No third parties. <LearnMoreLink>Learn More</LearnMoreLink>": "Μοιραστείτε ανώνυμα δεδομένα για να μας βοηθήσετε να εντοπίσουμε προβλήματα. Τίποτα προσωπικό. Χωρίς τρίτους. <LearnMoreLink>Μάθετε περισσότερα</LearnMoreLink>", "Share anonymous data to help us identify issues. Nothing personal. No third parties. <LearnMoreLink>Learn More</LearnMoreLink>": "Μοιραστείτε ανώνυμα δεδομένα για να μας βοηθήσετε να εντοπίσουμε προβλήματα. Τίποτα προσωπικό. Χωρίς τρίτους. <LearnMoreLink>Μάθετε περισσότερα</LearnMoreLink>",
"You previously consented to share anonymous usage data with us. We're updating how that works.": "Έχετε συμφωνήσει να μοιραστείτε ανώνυμα δεδομένα χρήσης μαζί μας. Ενημερώνουμε τον τρόπο που λειτουργεί.", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Έχετε συμφωνήσει να μοιραστείτε ανώνυμα δεδομένα χρήσης μαζί μας. Ενημερώνουμε τον τρόπο που λειτουργεί.",
@ -1394,7 +1385,6 @@
"other": "Αποθηκεύστε με ασφάλεια κρυπτογραφημένα μηνύματα τοπικά για να εμφανίζονται στα αποτελέσματα αναζήτησης, χρησιμοποιώντας %(size)s για αποθήκευση μηνυμάτων από τα %(rooms)sδωμάτια ." "other": "Αποθηκεύστε με ασφάλεια κρυπτογραφημένα μηνύματα τοπικά για να εμφανίζονται στα αποτελέσματα αναζήτησης, χρησιμοποιώντας %(size)s για αποθήκευση μηνυμάτων από τα %(rooms)sδωμάτια ."
}, },
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Επαληθεύστε μεμονωμένα κάθε συνεδρία που χρησιμοποιείται από έναν χρήστη για να την επισημάνετε ως αξιόπιστη, χωρίς να εμπιστεύεστε συσκευές με διασταυρούμενη υπογραφή.", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Επαληθεύστε μεμονωμένα κάθε συνεδρία που χρησιμοποιείται από έναν χρήστη για να την επισημάνετε ως αξιόπιστη, χωρίς να εμπιστεύεστε συσκευές με διασταυρούμενη υπογραφή.",
"Rename": "Μετονομασία",
"Display Name": "Εμφανιζόμενο όνομα", "Display Name": "Εμφανιζόμενο όνομα",
"Select all": "Επιλογή όλων", "Select all": "Επιλογή όλων",
"Deselect all": "Αποεπιλογή όλων", "Deselect all": "Αποεπιλογή όλων",
@ -1416,7 +1406,6 @@
"Use high contrast": "Χρησιμοποιήστε υψηλή αντίθεση", "Use high contrast": "Χρησιμοποιήστε υψηλή αντίθεση",
"Theme added!": "Το θέμα προστέθηκε!", "Theme added!": "Το θέμα προστέθηκε!",
"Error downloading theme information.": "Σφάλμα κατά τη λήψη πληροφοριών θέματος.", "Error downloading theme information.": "Σφάλμα κατά τη λήψη πληροφοριών θέματος.",
"Change": "Αλλαγή",
"Enter a new identity server": "Εισαγάγετε έναν νέο διακομιστή ταυτότητας", "Enter a new identity server": "Εισαγάγετε έναν νέο διακομιστή ταυτότητας",
"Do not use an identity server": "Μην χρησιμοποιείτε διακομιστή ταυτότητας", "Do not use an identity server": "Μην χρησιμοποιείτε διακομιστή ταυτότητας",
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Η χρήση διακομιστή ταυτότητας είναι προαιρετική. Εάν επιλέξετε να μην χρησιμοποιήσετε διακομιστή ταυτότητας, δεν θα μπορείτε να εντοπίσετε άλλους χρήστες και δεν θα μπορείτε να προσκαλέσετε άλλους μέσω email ή τηλεφώνου.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Η χρήση διακομιστή ταυτότητας είναι προαιρετική. Εάν επιλέξετε να μην χρησιμοποιήσετε διακομιστή ταυτότητας, δεν θα μπορείτε να εντοπίσετε άλλους χρήστες και δεν θα μπορείτε να προσκαλέσετε άλλους μέσω email ή τηλεφώνου.",
@ -1434,7 +1423,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ελέγξτε τις προσθήκες του προγράμματος περιήγησής σας που θα μπορούσε να αποκλείσει τον διακομιστή ταυτότητας (όπως το Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ελέγξτε τις προσθήκες του προγράμματος περιήγησής σας που θα μπορούσε να αποκλείσει τον διακομιστή ταυτότητας (όπως το Privacy Badger)",
"You should:": "Θα πρέπει:", "You should:": "Θα πρέπει:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Θα πρέπει να <b>καταργήσετε τα προσωπικά σας δεδομένα</b> από τον διακομιστή ταυτότητας <idserver /> πρίν αποσυνδεθείτε. Δυστυχώς, ο διακομιστής ταυτότητας <idserver /> αυτή τη στιγμή είναι εκτός σύνδεσης ή δεν είναι δυνατή η πρόσβαση.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Θα πρέπει να <b>καταργήσετε τα προσωπικά σας δεδομένα</b> από τον διακομιστή ταυτότητας <idserver /> πρίν αποσυνδεθείτε. Δυστυχώς, ο διακομιστής ταυτότητας <idserver /> αυτή τη στιγμή είναι εκτός σύνδεσης ή δεν είναι δυνατή η πρόσβαση.",
"Disconnect": "Αποσύνδεση",
"Disconnect from the identity server <idserver />?": "Αποσύνδεση από τον διακομιστή ταυτότητας <idserver />;", "Disconnect from the identity server <idserver />?": "Αποσύνδεση από τον διακομιστή ταυτότητας <idserver />;",
"Disconnect identity server": "Αποσύνδεση διακομιστή ταυτότητας", "Disconnect identity server": "Αποσύνδεση διακομιστή ταυτότητας",
"Terms of service not accepted or the identity server is invalid.": "Οι όροι χρήσης δεν γίνονται αποδεκτοί ή ο διακομιστής ταυτότητας δεν είναι έγκυρος.", "Terms of service not accepted or the identity server is invalid.": "Οι όροι χρήσης δεν γίνονται αποδεκτοί ή ο διακομιστής ταυτότητας δεν είναι έγκυρος.",
@ -1470,7 +1458,6 @@
"Use 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",
"Always show the window menu bar": "Να εμφανίζεται πάντα η μπάρα μενού παραθύρου", "Always show the window menu bar": "Να εμφανίζεται πάντα η μπάρα μενού παραθύρου",
"Warn before quitting": "Προειδοποιήστε πριν την παραίτηση", "Warn before quitting": "Προειδοποιήστε πριν την παραίτηση",
"Subscribe": "Εγγραφείτε",
"Room ID or address of ban list": "Ταυτότητα δωματίου ή διεύθυνση της λίστας απαγορευσων", "Room ID or address of ban list": "Ταυτότητα δωματίου ή διεύθυνση της λίστας απαγορευσων",
"If this isn't what you want, please use a different tool to ignore users.": "Εάν αυτό δεν είναι αυτό που θέλετε, χρησιμοποιήστε ένα διαφορετικό εργαλείο για να αγνοήσετε τους χρήστες.", "If this isn't what you want, please use a different tool to ignore users.": "Εάν αυτό δεν είναι αυτό που θέλετε, χρησιμοποιήστε ένα διαφορετικό εργαλείο για να αγνοήσετε τους χρήστες.",
"Subscribing to a ban list will cause you to join it!": "Η εγγραφή σε μια λίστα απαγορεύσων θα σας κάνει να εγγραφείτε σε αυτήν!", "Subscribing to a ban list will cause you to join it!": "Η εγγραφή σε μια λίστα απαγορεύσων θα σας κάνει να εγγραφείτε σε αυτήν!",
@ -1484,7 +1471,6 @@
"Ignored users": "Χρήστες που αγνοήθηκαν", "Ignored users": "Χρήστες που αγνοήθηκαν",
"You are currently subscribed to:": "Αυτήν τη στιγμή είστε εγγεγραμμένοι σε:", "You are currently subscribed to:": "Αυτήν τη στιγμή είστε εγγεγραμμένοι σε:",
"View rules": "Προβολή κανόνων", "View rules": "Προβολή κανόνων",
"Unsubscribe": "Απεγγραφή",
"You are not subscribed to any lists": "Δεν είστε εγγεγραμμένοι σε καμία λίστα", "You are not subscribed to any lists": "Δεν είστε εγγεγραμμένοι σε καμία λίστα",
"You are currently ignoring:": "Αυτήν τη στιγμή αγνοείτε:", "You are currently ignoring:": "Αυτήν τη στιγμή αγνοείτε:",
"You have not ignored anyone.": "Δεν έχετε αγνοήσει κανέναν.", "You have not ignored anyone.": "Δεν έχετε αγνοήσει κανέναν.",
@ -1503,9 +1489,7 @@
"Keyboard": "Πληκτρολόγιο", "Keyboard": "Πληκτρολόγιο",
"Clear cache and reload": "Εκκαθάριση προσωρινής μνήμης και επαναφόρτωση", "Clear cache and reload": "Εκκαθάριση προσωρινής μνήμης και επαναφόρτωση",
"Your access token gives full access to your account. Do not share it with anyone.": "Το διακριτικό πρόσβασής σας παρέχει πλήρη πρόσβαση στον λογαριασμό σας. Μην το μοιραστείτε με κανέναν.", "Your access token gives full access to your account. Do not share it with anyone.": "Το διακριτικό πρόσβασής σας παρέχει πλήρη πρόσβαση στον λογαριασμό σας. Μην το μοιραστείτε με κανέναν.",
"Access Token": "Διακριτικό πρόσβασης",
"Versions": "Εκδόσεις", "Versions": "Εκδόσεις",
"FAQ": "Συχνές ερωτήσεις",
"Help & About": "Βοήθεια & Σχετικά", "Help & About": "Βοήθεια & Σχετικά",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Για να αναφέρετε ένα ζήτημα ασφάλειας που σχετίζεται με το Matrix, διαβάστε την <a>Πολιτική Γνωστοποίησης Ασφαλείας</a> του Matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Για να αναφέρετε ένα ζήτημα ασφάλειας που σχετίζεται με το Matrix, διαβάστε την <a>Πολιτική Γνωστοποίησης Ασφαλείας</a> του Matrix.org.",
"Chat with %(brand)s Bot": "Συνομιλία με το %(brand)s Bot", "Chat with %(brand)s Bot": "Συνομιλία με το %(brand)s Bot",
@ -1517,7 +1501,6 @@
"Signature upload success": "Επιτυχία μεταφόρτωσης υπογραφής", "Signature upload success": "Επιτυχία μεταφόρτωσης υπογραφής",
"Cancelled signature upload": "Ακυρώθηκε η μεταφόρτωση υπογραφής", "Cancelled signature upload": "Ακυρώθηκε η μεταφόρτωση υπογραφής",
"Upload completed": "Η μεταφόρτωση ολοκληρώθηκε", "Upload completed": "Η μεταφόρτωση ολοκληρώθηκε",
"Space": "Χώρος",
"Clear all data in this session?": "Εκκαθάριση όλων των δεδομένων σε αυτήν την περίοδο σύνδεσης;", "Clear all data in this session?": "Εκκαθάριση όλων των δεδομένων σε αυτήν την περίοδο σύνδεσης;",
"Clear all data": "Εκκαθάριση όλων των δεδομένων", "Clear all data": "Εκκαθάριση όλων των δεδομένων",
"Remove %(count)s messages": { "Remove %(count)s messages": {
@ -1663,19 +1646,15 @@
"Rooms outside of a space": "Δωμάτια εκτός χώρου", "Rooms outside of a space": "Δωμάτια εκτός χώρου",
"Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Οι Χώροι είναι ένας τρόπος ομαδοποίησης δωματίων και ατόμων. Εκτός από τους χώρους στους οποίους βρίσκεστε, μπορείτε να χρησιμοποιήσετε και κάποιους προκατασκευασμένους.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Οι Χώροι είναι ένας τρόπος ομαδοποίησης δωματίων και ατόμων. Εκτός από τους χώρους στους οποίους βρίσκεστε, μπορείτε να χρησιμοποιήσετε και κάποιους προκατασκευασμένους.",
"Sidebar": "Πλαϊνή μπάρα", "Sidebar": "Πλαϊνή μπάρα",
"Privacy": "Ιδιωτικότητα",
"Cross-signing": "Διασταυρούμενη υπογραφή", "Cross-signing": "Διασταυρούμενη υπογραφή",
"Accept all %(invitedRooms)s invites": "Αποδεχτείτε όλες τις %(invitedRooms)sπροσκλήσεις", "Accept all %(invitedRooms)s invites": "Αποδεχτείτε όλες τις %(invitedRooms)sπροσκλήσεις",
"You have no ignored users.": "Δεν έχετε χρήστες που έχετε αγνοήσει.", "You have no ignored users.": "Δεν έχετε χρήστες που έχετε αγνοήσει.",
"Autocomplete delay (ms)": "Καθυστέρηση αυτόματης συμπλήρωσης (ms)", "Autocomplete delay (ms)": "Καθυστέρηση αυτόματης συμπλήρωσης (ms)",
"Timeline": "Χρονοδιάγραμμα",
"Code blocks": "Μπλοκ κώδικα", "Code blocks": "Μπλοκ κώδικα",
"Displaying time": "Εμφάνιση ώρας", "Displaying time": "Εμφάνιση ώρας",
"To view all keyboard shortcuts, <a>click here</a>.": "Για να δείτε όλες τις συντομεύσεις πληκτρολογίου, <a>κάντε κλικ εδώ</a>.", "To view all keyboard shortcuts, <a>click here</a>.": "Για να δείτε όλες τις συντομεύσεις πληκτρολογίου, <a>κάντε κλικ εδώ</a>.",
"Keyboard shortcuts": "Συντομεύσεις πληκτρολογίου", "Keyboard shortcuts": "Συντομεύσεις πληκτρολογίου",
"Room list": "Λίστα δωματίων", "Room list": "Λίστα δωματίων",
"Preferences": "Προτιμήσεις",
"Legal": "Νομικό",
"User signing private key:": "Ιδιωτικό κλειδί για υπογραφή χρήστη:", "User signing private key:": "Ιδιωτικό κλειδί για υπογραφή χρήστη:",
"Your homeserver doesn't seem to support this feature.": "Ο διακομιστής σας δε φαίνεται να υποστηρίζει αυτήν τη δυνατότητα.", "Your homeserver doesn't seem to support this feature.": "Ο διακομιστής σας δε φαίνεται να υποστηρίζει αυτήν τη δυνατότητα.",
"Verify session": "Επαλήθευση συνεδρίας", "Verify session": "Επαλήθευση συνεδρίας",
@ -1796,8 +1775,6 @@
"Attach files from chat or just drag and drop them anywhere in a room.": "Επισυνάψτε αρχεία από τη συνομιλία ή απλώς σύρετε και αποθέστε τα οπουδήποτε μέσα σε ένα δωμάτιο.", "Attach files from chat or just drag and drop them anywhere in a room.": "Επισυνάψτε αρχεία από τη συνομιλία ή απλώς σύρετε και αποθέστε τα οπουδήποτε μέσα σε ένα δωμάτιο.",
"No files visible in this room": "Δεν υπάρχουν αρχεία ορατά σε αυτό το δωμάτιο", "No files visible in this room": "Δεν υπάρχουν αρχεία ορατά σε αυτό το δωμάτιο",
"Couldn't load page": "Δεν ήταν δυνατή η φόρτωση της σελίδας", "Couldn't load page": "Δεν ήταν δυνατή η φόρτωση της σελίδας",
"Play": "Αναπαραγωγή",
"Pause": "Παύση",
"Error downloading audio": "Σφάλμα λήψης ήχου", "Error downloading audio": "Σφάλμα λήψης ήχου",
"Sign in with SSO": "Συνδεθείτε με SSO", "Sign in with SSO": "Συνδεθείτε με SSO",
"Add an email to be able to reset your password.": "Προσθέστε ένα email για να μπορείτε να κάνετε επαναφορά του κωδικού πρόσβασης σας.", "Add an email to be able to reset your password.": "Προσθέστε ένα email για να μπορείτε να κάνετε επαναφορά του κωδικού πρόσβασης σας.",
@ -1863,7 +1840,6 @@
"Looks good!": "Φαίνεται καλό!", "Looks good!": "Φαίνεται καλό!",
"Wrong file type": "Λάθος τύπος αρχείου", "Wrong file type": "Λάθος τύπος αρχείου",
"Decline All": "Απόρριψη όλων", "Decline All": "Απόρριψη όλων",
"Approve": "Έγκριση",
"Verification Request": "Αίτημα επαλήθευσης", "Verification Request": "Αίτημα επαλήθευσης",
"Verify other device": "Επαλήθευση άλλης συσκευής", "Verify other device": "Επαλήθευση άλλης συσκευής",
"Upload Error": "Σφάλμα μεταφόρτωσης", "Upload Error": "Σφάλμα μεταφόρτωσης",
@ -2072,7 +2048,6 @@
"Click here to see older messages.": "Κάντε κλικ εδώ για να δείτε παλαιότερα μηνύματα.", "Click here to see older messages.": "Κάντε κλικ εδώ για να δείτε παλαιότερα μηνύματα.",
"Message deleted on %(date)s": "Το μήνυμα διαγράφηκε στις %(date)s", "Message deleted on %(date)s": "Το μήνυμα διαγράφηκε στις %(date)s",
"%(reactors)s reacted with %(content)s": "%(reactors)s αντέδρασαν με %(content)s", "%(reactors)s reacted with %(content)s": "%(reactors)s αντέδρασαν με %(content)s",
"Show all": "Εμφάνιση όλων",
"Add reaction": "Προσθέστε αντίδραση", "Add reaction": "Προσθέστε αντίδραση",
"Error processing voice message": "Σφάλμα επεξεργασίας του φωνητικού μηνύματος", "Error processing voice message": "Σφάλμα επεξεργασίας του φωνητικού μηνύματος",
"%(count)s votes": { "%(count)s votes": {
@ -2204,7 +2179,6 @@
"This room is running room version <roomVersion />, which this homeserver has marked as <i>unstable</i>.": "Αυτό το δωμάτιο τρέχει την έκδοση <roomVersion />, την οποία ο κεντρικός διακομιστής έχει επισημάνει ως <i>ασταθής</i>.", "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.": "Αυτό το δωμάτιο έχει ήδη αναβαθμιστεί.", "This room has already been upgraded.": "Αυτό το δωμάτιο έχει ήδη αναβαθμιστεί.",
"Composer": "Συντάκτης μηνυμάτων", "Composer": "Συντάκτης μηνυμάτων",
"Credits": "Συντελεστές",
"Discovery": "Ανακάλυψη", "Discovery": "Ανακάλυψη",
"Developer tools": "Εργαλεία προγραμματιστή", "Developer tools": "Εργαλεία προγραμματιστή",
"Got It": "Κατανοώ", "Got It": "Κατανοώ",
@ -2448,7 +2422,6 @@
"Set a Security Phrase": "Ορίστε μια Φράση Ασφαλείας", "Set a Security Phrase": "Ορίστε μια Φράση Ασφαλείας",
"Upgrade your encryption": "Αναβαθμίστε την κρυπτογράφηση σας", "Upgrade your encryption": "Αναβαθμίστε την κρυπτογράφηση σας",
"You'll need to authenticate with the server to confirm the upgrade.": "Θα χρειαστεί να πραγματοποιήσετε έλεγχο ταυτότητας με τον διακομιστή για να επιβεβαιώσετε την αναβάθμιση.", "You'll need to authenticate with the server to confirm the upgrade.": "Θα χρειαστεί να πραγματοποιήσετε έλεγχο ταυτότητας με τον διακομιστή για να επιβεβαιώσετε την αναβάθμιση.",
"Restore": "Επαναφορά",
"Restore your key backup to upgrade your encryption": "Επαναφέρετε το αντίγραφο ασφαλείας του κλειδιού σας για να αναβαθμίσετε την κρυπτογράφηση", "Restore your key backup to upgrade your encryption": "Επαναφέρετε το αντίγραφο ασφαλείας του κλειδιού σας για να αναβαθμίσετε την κρυπτογράφηση",
"Enter your account password to confirm the upgrade:": "Εισαγάγετε τον κωδικό πρόσβασης του λογαριασμού σας για να επιβεβαιώσετε την αναβάθμιση:", "Enter your account password to confirm the upgrade:": "Εισαγάγετε τον κωδικό πρόσβασης του λογαριασμού σας για να επιβεβαιώσετε την αναβάθμιση:",
"Success!": "Επιτυχία!", "Success!": "Επιτυχία!",
@ -2538,8 +2511,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Επιλέξτε δωμάτια ή συνομιλίες για προσθήκη. Αυτός είναι απλά ένας χώρος για εσάς, κανείς δε θα ενημερωθεί. Μπορείτε να προσθέσετε περισσότερα αργότερα.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Επιλέξτε δωμάτια ή συνομιλίες για προσθήκη. Αυτός είναι απλά ένας χώρος για εσάς, κανείς δε θα ενημερωθεί. Μπορείτε να προσθέσετε περισσότερα αργότερα.",
"What do you want to organise?": "Τι θέλετε να οργανώσετε;", "What do you want to organise?": "Τι θέλετε να οργανώσετε;",
"Skip for now": "Παράλειψη προς το παρόν", "Skip for now": "Παράλειψη προς το παρόν",
"Support": "Υποστήριξη",
"Random": "Τυχαία",
"Welcome to <name/>": "Καλώς ήρθατε στο <name/>", "Welcome to <name/>": "Καλώς ήρθατε στο <name/>",
"<inviter/> invites you": "<inviter/> σας προσκαλεί", "<inviter/> invites you": "<inviter/> σας προσκαλεί",
"Private space": "Ιδιωτικός χώρος", "Private space": "Ιδιωτικός χώρος",
@ -2769,7 +2740,6 @@
"Sent": "Απεσταλμένα", "Sent": "Απεσταλμένα",
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "ΣΥΜΒΟΥΛΗ: Εάν αναφέρετε ένα σφάλμα, υποβάλετε <debugLogsLink>αρχεία καταγραφής εντοπισμού σφαλμάτων</debugLogsLink> για να μας βοηθήσετε να εντοπίσουμε το πρόβλημα.", "PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "ΣΥΜΒΟΥΛΗ: Εάν αναφέρετε ένα σφάλμα, υποβάλετε <debugLogsLink>αρχεία καταγραφής εντοπισμού σφαλμάτων</debugLogsLink> για να μας βοηθήσετε να εντοπίσουμε το πρόβλημα.",
"Verification explorer": "Εξερευνητής επαλήθευσης", "Verification explorer": "Εξερευνητής επαλήθευσης",
"Mod": "Συντονιστής",
"Jump to oldest unread message": "Μετάβαση στο παλαιότερο μη αναγνωσμένο μήνυμα", "Jump to oldest unread message": "Μετάβαση στο παλαιότερο μη αναγνωσμένο μήνυμα",
"Jump to end of the composer": "Μετάβαση στο τέλους του επεξεργαστή κειμένου", "Jump to end of the composer": "Μετάβαση στο τέλους του επεξεργαστή κειμένου",
"Jump to start of the composer": "Μετάβαση στην αρχή του επεξεργαστή κειμένου", "Jump to start of the composer": "Μετάβαση στην αρχή του επεξεργαστή κειμένου",
@ -3174,7 +3144,21 @@
"dark": "Σκούρο", "dark": "Σκούρο",
"beta": "Beta", "beta": "Beta",
"attachment": "Επισύναψη", "attachment": "Επισύναψη",
"appearance": "Εμφάνιση" "appearance": "Εμφάνιση",
"guest": "Επισκέπτης",
"legal": "Νομικό",
"credits": "Συντελεστές",
"faq": "Συχνές ερωτήσεις",
"access_token": "Διακριτικό πρόσβασης",
"preferences": "Προτιμήσεις",
"timeline": "Χρονοδιάγραμμα",
"privacy": "Ιδιωτικότητα",
"camera": "Κάμερα",
"microphone": "Μικρόφωνο",
"emoji": "Εικονίδια",
"random": "Τυχαία",
"support": "Υποστήριξη",
"space": "Χώρος"
}, },
"action": { "action": {
"continue": "Συνέχεια", "continue": "Συνέχεια",
@ -3244,7 +3228,21 @@
"call": "Κλήση", "call": "Κλήση",
"back": "Πίσω", "back": "Πίσω",
"add": "Προσθήκη", "add": "Προσθήκη",
"accept": "Αποδοχή" "accept": "Αποδοχή",
"disconnect": "Αποσύνδεση",
"change": "Αλλαγή",
"subscribe": "Εγγραφείτε",
"unsubscribe": "Απεγγραφή",
"approve": "Έγκριση",
"complete": "Ολοκληρώθηκε",
"revoke": "Ανάκληση",
"rename": "Μετονομασία",
"show_all": "Εμφάνιση όλων",
"review": "Ανασκόπηση",
"restore": "Επαναφορά",
"play": "Αναπαραγωγή",
"pause": "Παύση",
"register": "Εγγραφή"
}, },
"a11y": { "a11y": {
"user_menu": "Μενού χρήστη" "user_menu": "Μενού χρήστη"
@ -3291,7 +3289,9 @@
"default": "Προεπιλογή", "default": "Προεπιλογή",
"restricted": "Περιορισμένο/η", "restricted": "Περιορισμένο/η",
"moderator": "Συντονιστής", "moderator": "Συντονιστής",
"admin": "Διαχειριστής" "admin": "Διαχειριστής",
"custom": "Προσαρμοσμένα (%(level)s)",
"mod": "Συντονιστής"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Εάν έχετε υποβάλει ένα σφάλμα μέσω του GitHub, τα αρχεία καταγραφής εντοπισμού σφαλμάτων μπορούν να μας βοηθήσουν να εντοπίσουμε το πρόβλημα. ", "introduction": "Εάν έχετε υποβάλει ένα σφάλμα μέσω του GitHub, τα αρχεία καταγραφής εντοπισμού σφαλμάτων μπορούν να μας βοηθήσουν να εντοπίσουμε το πρόβλημα. ",

View file

@ -27,6 +27,7 @@
"stop": "Stop", "stop": "Stop",
"learn_more": "Learn more", "learn_more": "Learn more",
"yes": "Yes", "yes": "Yes",
"review": "Review",
"join": "Join", "join": "Join",
"close": "Close", "close": "Close",
"decline": "Decline", "decline": "Decline",
@ -46,9 +47,22 @@
"remove": "Remove", "remove": "Remove",
"reset": "Reset", "reset": "Reset",
"save": "Save", "save": "Save",
"disconnect": "Disconnect",
"change": "Change",
"add": "Add", "add": "Add",
"unsubscribe": "Unsubscribe",
"subscribe": "Subscribe",
"sign_out": "Sign out", "sign_out": "Sign out",
"deny": "Deny",
"approve": "Approve",
"proceed": "Proceed",
"complete": "Complete",
"revoke": "Revoke",
"share": "Share", "share": "Share",
"rename": "Rename",
"show_all": "Show all",
"show": "Show",
"view_all": "View all",
"invite": "Invite", "invite": "Invite",
"search": "Search", "search": "Search",
"quote": "Quote", "quote": "Quote",
@ -77,7 +91,11 @@
"ask_to_join": "Ask to join", "ask_to_join": "Ask to join",
"forward": "Forward", "forward": "Forward",
"copy_link": "Copy link", "copy_link": "Copy link",
"register": "Register",
"pause": "Pause",
"play": "Play",
"logout": "Logout", "logout": "Logout",
"restore": "Restore",
"disable": "Disable" "disable": "Disable"
}, },
"Add Email Address": "Add Email Address", "Add Email Address": "Add Email Address",
@ -94,6 +112,7 @@
"dark": "Dark", "dark": "Dark",
"video": "Video", "video": "Video",
"warning": "Warning", "warning": "Warning",
"guest": "Guest",
"home": "Home", "home": "Home",
"favourites": "Favourites", "favourites": "Favourites",
"people": "People", "people": "People",
@ -112,6 +131,17 @@
"message_layout": "Message layout", "message_layout": "Message layout",
"modern": "Modern", "modern": "Modern",
"success": "Success", "success": "Success",
"legal": "Legal",
"credits": "Credits",
"faq": "FAQ",
"access_token": "Access Token",
"preferences": "Preferences",
"presence": "Presence",
"timeline": "Timeline",
"privacy": "Privacy",
"microphone": "Microphone",
"camera": "Camera",
"emoji": "Emoji",
"sticker": "Sticker", "sticker": "Sticker",
"offline": "Offline", "offline": "Offline",
"loading": "Loading…", "loading": "Loading…",
@ -131,9 +161,12 @@
"forward_message": "Forward message", "forward_message": "Forward message",
"suggestions": "Suggestions", "suggestions": "Suggestions",
"labs": "Labs", "labs": "Labs",
"space": "Space",
"beta": "Beta", "beta": "Beta",
"password": "Password", "password": "Password",
"username": "Username", "username": "Username",
"random": "Random",
"support": "Support",
"room_name": "Room name", "room_name": "Room name",
"thread": "Thread" "thread": "Thread"
}, },
@ -230,9 +263,10 @@
"default": "Default", "default": "Default",
"restricted": "Restricted", "restricted": "Restricted",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"custom": "Custom (%(level)s)",
"mod": "Mod"
}, },
"Custom (%(level)s)": "Custom (%(level)s)",
"Failed to invite": "Failed to invite", "Failed to invite": "Failed to invite",
"Operation failed": "Operation failed", "Operation failed": "Operation failed",
"Failed to invite users to %(roomName)s": "Failed to invite users to %(roomName)s", "Failed to invite users to %(roomName)s": "Failed to invite users to %(roomName)s",
@ -700,7 +734,6 @@
"Help improve %(analyticsOwner)s": "Help improve %(analyticsOwner)s", "Help improve %(analyticsOwner)s": "Help improve %(analyticsOwner)s",
"You have unverified sessions": "You have unverified sessions", "You have unverified sessions": "You have unverified sessions",
"Review to ensure your account is safe": "Review to ensure your account is safe", "Review to ensure your account is safe": "Review to ensure your account is safe",
"Review": "Review",
"Later": "Later", "Later": "Later",
"Don't miss a reply": "Don't miss a reply", "Don't miss a reply": "Don't miss a reply",
"Notifications": "Notifications", "Notifications": "Notifications",
@ -719,7 +752,6 @@
"Your homeserver has exceeded its user limit.": "Your homeserver has exceeded its user limit.", "Your homeserver has exceeded its user limit.": "Your homeserver has exceeded its user limit.",
"Your homeserver has exceeded one of its resource limits.": "Your homeserver has exceeded one of its resource limits.", "Your homeserver has exceeded one of its resource limits.": "Your homeserver has exceeded one of its resource limits.",
"Contact your <a>server admin</a>.": "Contact your <a>server admin</a>.", "Contact your <a>server admin</a>.": "Contact your <a>server admin</a>.",
"Ok": "Ok",
"Set up Secure Backup": "Set up Secure Backup", "Set up Secure Backup": "Set up Secure Backup",
"Encryption upgrade available": "Encryption upgrade available", "Encryption upgrade available": "Encryption upgrade available",
"Verify this session": "Verify this session", "Verify this session": "Verify this session",
@ -731,7 +763,6 @@
"What's New": "What's New", "What's New": "What's New",
"Update %(brand)s": "Update %(brand)s", "Update %(brand)s": "Update %(brand)s",
"New version of %(brand)s is available": "New version of %(brand)s is available", "New version of %(brand)s is available": "New version of %(brand)s is available",
"Guest": "Guest",
"There was an error joining.": "There was an error joining.", "There was an error joining.": "There was an error joining.",
"Sorry, your homeserver is too old to participate here.": "Sorry, your homeserver is too old to participate here.", "Sorry, your homeserver is too old to participate here.": "Sorry, your homeserver is too old to participate here.",
"Please contact your homeserver administrator.": "Please contact your homeserver administrator.", "Please contact your homeserver administrator.": "Please contact your homeserver administrator.",
@ -1272,7 +1303,6 @@
"The identity server you have chosen does not have any terms of service.": "The identity server you have chosen does not have any terms of service.", "The identity server you have chosen does not have any terms of service.": "The identity server you have chosen does not have any terms of service.",
"Disconnect identity server": "Disconnect identity server", "Disconnect identity server": "Disconnect identity server",
"Disconnect from the identity server <idserver />?": "Disconnect from the identity server <idserver />?", "Disconnect from the identity server <idserver />?": "Disconnect from the identity server <idserver />?",
"Disconnect": "Disconnect",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.",
"You should:": "You should:", "You should:": "You should:",
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "check your browser plugins for anything that might block the identity server (such as Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "check your browser plugins for anything that might block the identity server (such as Privacy Badger)",
@ -1290,7 +1320,6 @@
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.",
"Do not use an identity server": "Do not use an identity server", "Do not use an identity server": "Do not use an identity server",
"Enter a new identity server": "Enter a new identity server", "Enter a new identity server": "Enter a new identity server",
"Change": "Change",
"Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.", "Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.",
"Use an integration manager to manage bots, widgets, and sticker packs.": "Use an integration manager to manage bots, widgets, and sticker packs.", "Use an integration manager to manage bots, widgets, and sticker packs.": "Use an integration manager to manage bots, widgets, and sticker packs.",
"Manage integrations": "Manage integrations", "Manage integrations": "Manage integrations",
@ -1331,8 +1360,6 @@
"Discovery": "Discovery", "Discovery": "Discovery",
"%(brand)s version:": "%(brand)s version:", "%(brand)s version:": "%(brand)s version:",
"Olm version:": "Olm version:", "Olm version:": "Olm version:",
"Legal": "Legal",
"Credits": "Credits",
"credits": { "credits": {
"default_cover_photo": "The <photo>default cover photo</photo> is © <author>Jesús Roncero</author> used under the terms of <terms>CC-BY-SA 4.0</terms>.", "default_cover_photo": "The <photo>default cover photo</photo> is © <author>Jesús Roncero</author> used under the terms of <terms>CC-BY-SA 4.0</terms>.",
"twemoji_colr": "The <colr>twemoji-colr</colr> font is © <author>Mozilla Foundation</author> used under the terms of <terms>Apache 2.0</terms>.", "twemoji_colr": "The <colr>twemoji-colr</colr> font is © <author>Mozilla Foundation</author> used under the terms of <terms>Apache 2.0</terms>.",
@ -1354,11 +1381,9 @@
"send_logs": "Send logs" "send_logs": "Send logs"
}, },
"Help & About": "Help & About", "Help & About": "Help & About",
"FAQ": "FAQ",
"Versions": "Versions", "Versions": "Versions",
"Homeserver is <code>%(homeserverUrl)s</code>": "Homeserver is <code>%(homeserverUrl)s</code>", "Homeserver is <code>%(homeserverUrl)s</code>": "Homeserver is <code>%(homeserverUrl)s</code>",
"Identity server is <code>%(identityServerUrl)s</code>": "Identity server is <code>%(identityServerUrl)s</code>", "Identity server is <code>%(identityServerUrl)s</code>": "Identity server is <code>%(identityServerUrl)s</code>",
"Access Token": "Access Token",
"Your access token gives full access to your account. Do not share it with anyone.": "Your access token gives full access to your account. Do not share it with anyone.", "Your access token gives full access to your account. Do not share it with anyone.": "Your access token gives full access to your account. Do not share it with anyone.",
"Clear cache and reload": "Clear cache and reload", "Clear cache and reload": "Clear cache and reload",
"Keyboard": "Keyboard", "Keyboard": "Keyboard",
@ -1380,7 +1405,6 @@
"You have not ignored anyone.": "You have not ignored anyone.", "You have not ignored anyone.": "You have not ignored anyone.",
"You are currently ignoring:": "You are currently ignoring:", "You are currently ignoring:": "You are currently ignoring:",
"You are not subscribed to any lists": "You are not subscribed to any lists", "You are not subscribed to any lists": "You are not subscribed to any lists",
"Unsubscribe": "Unsubscribe",
"View rules": "View rules", "View rules": "View rules",
"You are currently subscribed to:": "You are currently subscribed to:", "You are currently subscribed to:": "You are currently subscribed to:",
"Ignored users": "Ignored users", "Ignored users": "Ignored users",
@ -1395,18 +1419,14 @@
"Subscribing to a ban list will cause you to join it!": "Subscribing to a ban list will cause you to join it!", "Subscribing to a ban list will cause you to join it!": "Subscribing to a ban list will cause you to join it!",
"If this isn't what you want, please use a different tool to ignore users.": "If this isn't what you want, please use a different tool to ignore users.", "If this isn't what you want, please use a different tool to ignore users.": "If this isn't what you want, please use a different tool to ignore users.",
"Room ID or address of ban list": "Room ID or address of ban list", "Room ID or address of ban list": "Room ID or address of ban list",
"Subscribe": "Subscribe",
"Preferences": "Preferences",
"Room list": "Room list", "Room list": "Room list",
"Keyboard shortcuts": "Keyboard shortcuts", "Keyboard shortcuts": "Keyboard shortcuts",
"To view all keyboard shortcuts, <a>click here</a>.": "To view all keyboard shortcuts, <a>click here</a>.", "To view all keyboard shortcuts, <a>click here</a>.": "To view all keyboard shortcuts, <a>click here</a>.",
"Displaying time": "Displaying time", "Displaying time": "Displaying time",
"Presence": "Presence",
"Share your activity and status with others.": "Share your activity and status with others.", "Share your activity and status with others.": "Share your activity and status with others.",
"Composer": "Composer", "Composer": "Composer",
"Code blocks": "Code blocks", "Code blocks": "Code blocks",
"Images, GIFs and videos": "Images, GIFs and videos", "Images, GIFs and videos": "Images, GIFs and videos",
"Timeline": "Timeline",
"Room directory": "Room directory", "Room directory": "Room directory",
"Enable hardware acceleration (restart %(appName)s to take effect)": "Enable hardware acceleration (restart %(appName)s to take effect)", "Enable hardware acceleration (restart %(appName)s to take effect)": "Enable hardware acceleration (restart %(appName)s to take effect)",
"Autocomplete delay (ms)": "Autocomplete delay (ms)", "Autocomplete delay (ms)": "Autocomplete delay (ms)",
@ -1421,7 +1441,6 @@
"Message search": "Message search", "Message search": "Message search",
"Cross-signing": "Cross-signing", "Cross-signing": "Cross-signing",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.",
"Privacy": "Privacy",
"Share anonymous data to help us identify issues. Nothing personal. No third parties.": "Share anonymous data to help us identify issues. Nothing personal. No third parties.", "Share anonymous data to help us identify issues. Nothing personal. No third parties.": "Share anonymous data to help us identify issues. Nothing personal. No third parties.",
"Sessions": "Sessions", "Sessions": "Sessions",
"Are you sure you want to sign out of %(count)s sessions?": { "Are you sure you want to sign out of %(count)s sessions?": {
@ -1442,9 +1461,7 @@
"Request media permissions": "Request media permissions", "Request media permissions": "Request media permissions",
"Audio Output": "Audio Output", "Audio Output": "Audio Output",
"No Audio Outputs detected": "No Audio Outputs detected", "No Audio Outputs detected": "No Audio Outputs detected",
"Microphone": "Microphone",
"No Microphones detected": "No Microphones detected", "No Microphones detected": "No Microphones detected",
"Camera": "Camera",
"No Webcams detected": "No Webcams detected", "No Webcams detected": "No Webcams detected",
"Voice settings": "Voice settings", "Voice settings": "Voice settings",
"Automatically adjust the microphone volume": "Automatically adjust the microphone volume", "Automatically adjust the microphone volume": "Automatically adjust the microphone volume",
@ -1480,8 +1497,6 @@
"Browse": "Browse", "Browse": "Browse",
"See less": "See less", "See less": "See less",
"See more": "See more", "See more": "See more",
"Deny": "Deny",
"Approve": "Approve",
"Asking to join": "Asking to join", "Asking to join": "Asking to join",
"No requests": "No requests", "No requests": "No requests",
"Failed to unban": "Failed to unban", "Failed to unban": "Failed to unban",
@ -1562,7 +1577,6 @@
"Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.", "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.",
"People, Mentions and Keywords": "People, Mentions and Keywords", "People, Mentions and Keywords": "People, Mentions and Keywords",
"Mentions and Keywords only": "Mentions and Keywords only", "Mentions and Keywords only": "Mentions and Keywords only",
"Proceed": "Proceed",
"<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>": "<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>", "<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>": "<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>",
"Show message preview in desktop notification": "Show message preview in desktop notification", "Show message preview in desktop notification": "Show message preview in desktop notification",
"I want to be notified for (Default Setting)": "I want to be notified for (Default Setting)", "I want to be notified for (Default Setting)": "I want to be notified for (Default Setting)",
@ -1589,8 +1603,6 @@
"Click the link in the email you received to verify and then click continue again.": "Click the link in the email you received to verify and then click continue again.", "Click the link in the email you received to verify and then click continue again.": "Click the link in the email you received to verify and then click continue again.",
"Unable to verify email address.": "Unable to verify email address.", "Unable to verify email address.": "Unable to verify email address.",
"Verify the link in your inbox": "Verify the link in your inbox", "Verify the link in your inbox": "Verify the link in your inbox",
"Complete": "Complete",
"Revoke": "Revoke",
"Discovery options will appear once you have added an email above.": "Discovery options will appear once you have added an email above.", "Discovery options will appear once you have added an email above.": "Discovery options will appear once you have added an email above.",
"Unable to revoke sharing for phone number": "Unable to revoke sharing for phone number", "Unable to revoke sharing for phone number": "Unable to revoke sharing for phone number",
"Unable to share phone number": "Unable to share phone number", "Unable to share phone number": "Unable to share phone number",
@ -1624,7 +1636,6 @@
"Renaming sessions": "Renaming sessions", "Renaming sessions": "Renaming sessions",
"Other users in direct messages and rooms that you join are able to view a full list of your sessions.": "Other users in direct messages and rooms that you join are able to view a full list of your sessions.", "Other users in direct messages and rooms that you join are able to view a full list of your sessions.": "Other users in direct messages and rooms that you join are able to view a full list of your sessions.",
"This provides them with confidence that they are really speaking to you, but it also means they can see the session name you enter here.": "This provides them with confidence that they are really speaking to you, but it also means they can see the session name you enter here.", "This provides them with confidence that they are really speaking to you, but it also means they can see the session name you enter here.": "This provides them with confidence that they are really speaking to you, but it also means they can see the session name you enter here.",
"Rename": "Rename",
"Session ID": "Session ID", "Session ID": "Session ID",
"Last activity": "Last activity", "Last activity": "Last activity",
"Application": "Application", "Application": "Application",
@ -1675,14 +1686,12 @@
"No unverified sessions found.": "No unverified sessions found.", "No unverified sessions found.": "No unverified sessions found.",
"No inactive sessions found.": "No inactive sessions found.", "No inactive sessions found.": "No inactive sessions found.",
"No sessions found.": "No sessions found.", "No sessions found.": "No sessions found.",
"Show all": "Show all",
"All": "All", "All": "All",
"Ready for secure messaging": "Ready for secure messaging", "Ready for secure messaging": "Ready for secure messaging",
"Not ready for secure messaging": "Not ready for secure messaging", "Not ready for secure messaging": "Not ready for secure messaging",
"Inactive": "Inactive", "Inactive": "Inactive",
"Inactive for %(inactiveAgeDays)s days or longer": "Inactive for %(inactiveAgeDays)s days or longer", "Inactive for %(inactiveAgeDays)s days or longer": "Inactive for %(inactiveAgeDays)s days or longer",
"Filter devices": "Filter devices", "Filter devices": "Filter devices",
"Show": "Show",
"Deselect all": "Deselect all", "Deselect all": "Deselect all",
"Select all": "Select all", "Select all": "Select all",
"%(count)s sessions selected": { "%(count)s sessions selected": {
@ -1699,7 +1708,6 @@
"Other sessions": "Other sessions", "Other sessions": "Other sessions",
"Security recommendations": "Security recommendations", "Security recommendations": "Security recommendations",
"Improve your account security by following these recommendations.": "Improve your account security by following these recommendations.", "Improve your account security by following these recommendations.": "Improve your account security by following these recommendations.",
"View all": "View all",
"Failed to set pusher state": "Failed to set pusher state", "Failed to set pusher state": "Failed to set pusher state",
"Unable to remove contact information": "Unable to remove contact information", "Unable to remove contact information": "Unable to remove contact information",
"Remove %(email)s?": "Remove %(email)s?", "Remove %(email)s?": "Remove %(email)s?",
@ -1718,8 +1726,6 @@
"This room is end-to-end encrypted": "This room is end-to-end encrypted", "This room is end-to-end encrypted": "This room is end-to-end encrypted",
"Everyone in this room is verified": "Everyone in this room is verified", "Everyone in this room is verified": "Everyone in this room is verified",
"Edit message": "Edit message", "Edit message": "Edit message",
"Emoji": "Emoji",
"Mod": "Mod",
"From a thread": "From a thread", "From a thread": "From a thread",
"This event could not be displayed": "This event could not be displayed", "This event could not be displayed": "This event could not be displayed",
" in <strong>%(room)s</strong>": " in <strong>%(room)s</strong>", " in <strong>%(room)s</strong>": " in <strong>%(room)s</strong>",
@ -3167,7 +3173,6 @@
"Match default setting": "Match default setting", "Match default setting": "Match default setting",
"Mute room": "Mute room", "Mute room": "Mute room",
"See room timeline (devtools)": "See room timeline (devtools)", "See room timeline (devtools)": "See room timeline (devtools)",
"Space": "Space",
"Space home": "Space home", "Space home": "Space home",
"Manage & explore rooms": "Manage & explore rooms", "Manage & explore rooms": "Manage & explore rooms",
"Thread options": "Thread options", "Thread options": "Thread options",
@ -3271,15 +3276,12 @@
"Unable to check if username has been taken. Try again later.": "Unable to check if username has been taken. Try again later.", "Unable to check if username has been taken. Try again later.": "Unable to check if username has been taken. Try again later.",
"Someone already has that username. Try another or if it is you, sign in below.": "Someone already has that username. Try another or if it is you, sign in below.", "Someone already has that username. Try another or if it is you, sign in below.": "Someone already has that username. Try another or if it is you, sign in below.",
"Phone (optional)": "Phone (optional)", "Phone (optional)": "Phone (optional)",
"Register": "Register",
"Add an email to be able to reset your password.": "Add an email to be able to reset your password.", "Add an email to be able to reset your password.": "Add an email to be able to reset your password.",
"Use email or phone to optionally be discoverable by existing contacts.": "Use email or phone to optionally be discoverable by existing contacts.", "Use email or phone to optionally be discoverable by existing contacts.": "Use email or phone to optionally be discoverable by existing contacts.",
"Use email to optionally be discoverable by existing contacts.": "Use email to optionally be discoverable by existing contacts.", "Use email to optionally be discoverable by existing contacts.": "Use email to optionally be discoverable by existing contacts.",
"Sign in with SSO": "Sign in with SSO", "Sign in with SSO": "Sign in with SSO",
"Unnamed audio": "Unnamed audio", "Unnamed audio": "Unnamed audio",
"Error downloading audio": "Error downloading audio", "Error downloading audio": "Error downloading audio",
"Pause": "Pause",
"Play": "Play",
"Couldn't load page": "Couldn't load page", "Couldn't load page": "Couldn't load page",
"Drop file here to upload": "Drop file here to upload", "Drop file here to upload": "Drop file here to upload",
"You must <a>register</a> to use this functionality": "You must <a>register</a> to use this functionality", "You must <a>register</a> to use this functionality": "You must <a>register</a> to use this functionality",
@ -3358,8 +3360,6 @@
"Rooms and spaces": "Rooms and spaces", "Rooms and spaces": "Rooms and spaces",
"Search names and descriptions": "Search names and descriptions", "Search names and descriptions": "Search names and descriptions",
"Welcome to <name/>": "Welcome to <name/>", "Welcome to <name/>": "Welcome to <name/>",
"Random": "Random",
"Support": "Support",
"Failed to create initial space rooms": "Failed to create initial space rooms", "Failed to create initial space rooms": "Failed to create initial space rooms",
"Skip for now": "Skip for now", "Skip for now": "Skip for now",
"Creating rooms…": "Creating rooms…", "Creating rooms…": "Creating rooms…",
@ -3525,7 +3525,6 @@
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.",
"Enter your account password to confirm the upgrade:": "Enter your account password to confirm the upgrade:", "Enter your account password to confirm the upgrade:": "Enter your account password to confirm the upgrade:",
"Restore your key backup to upgrade your encryption": "Restore your key backup to upgrade your encryption", "Restore your key backup to upgrade your encryption": "Restore your key backup to upgrade your encryption",
"Restore": "Restore",
"You'll need to authenticate with the server to confirm the upgrade.": "You'll need to authenticate with the server to confirm the upgrade.", "You'll need to authenticate with the server to confirm the upgrade.": "You'll need to authenticate with the server to confirm the upgrade.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.",
"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.": "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.", "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.": "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.",

View file

@ -8,8 +8,6 @@
"No media permissions": "No media permissions", "No media permissions": "No media permissions",
"You may need to manually permit %(brand)s to access your microphone/webcam": "You may need to manually permit %(brand)s to access your microphone/webcam", "You may need to manually permit %(brand)s to access your microphone/webcam": "You may need to manually permit %(brand)s to access your microphone/webcam",
"Default Device": "Default Device", "Default Device": "Default Device",
"Microphone": "Microphone",
"Camera": "Camera",
"Advanced": "Advanced", "Advanced": "Advanced",
"Always show message timestamps": "Always show message timestamps", "Always show message timestamps": "Always show message timestamps",
"Authentication": "Authentication", "Authentication": "Authentication",
@ -48,7 +46,6 @@
"Download %(text)s": "Download %(text)s", "Download %(text)s": "Download %(text)s",
"Email": "Email", "Email": "Email",
"Email address": "Email address", "Email address": "Email address",
"Emoji": "Emoji",
"Error decrypting attachment": "Error decrypting attachment", "Error decrypting attachment": "Error decrypting attachment",
"Export": "Export", "Export": "Export",
"Export E2E room keys": "Export E2E room keys", "Export E2E room keys": "Export E2E room keys",
@ -117,7 +114,6 @@
"Privileged Users": "Privileged Users", "Privileged Users": "Privileged Users",
"Profile": "Profile", "Profile": "Profile",
"Reason": "Reason", "Reason": "Reason",
"Register": "Register",
"Reject invitation": "Reject invitation", "Reject invitation": "Reject invitation",
"Return to login screen": "Return to login screen", "Return to login screen": "Return to login screen",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s does not have permission to send you notifications - please check your browser settings", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s does not have permission to send you notifications - please check your browser settings",
@ -371,7 +367,6 @@
"Sign In or Create Account": "Sign In or Create Account", "Sign In or Create Account": "Sign In or Create Account",
"Use your account or create a new one to continue.": "Use your account or create a new one to continue.", "Use your account or create a new one to continue.": "Use your account or create a new one to continue.",
"Create Account": "Create Account", "Create Account": "Create Account",
"Custom (%(level)s)": "Custom (%(level)s)",
"Sends a message as plain text, without interpreting it as markdown": "Sends a message as plain text, without interpreting it as markdown", "Sends a message as plain text, without interpreting it as markdown": "Sends a message as plain text, without interpreting it as markdown",
"Sends a message as html, without interpreting it as markdown": "Sends a message as html, without interpreting it as markdown", "Sends a message as html, without interpreting it as markdown": "Sends a message as html, without interpreting it as markdown",
"You do not have the required permissions to use this command.": "You do not have the required permissions to use this command.", "You do not have the required permissions to use this command.": "You do not have the required permissions to use this command.",
@ -418,7 +413,10 @@
"labs": "Labs", "labs": "Labs",
"home": "Home", "home": "Home",
"favourites": "Favorites", "favourites": "Favorites",
"attachment": "Attachment" "attachment": "Attachment",
"camera": "Camera",
"microphone": "Microphone",
"emoji": "Emoji"
}, },
"action": { "action": {
"continue": "Continue", "continue": "Continue",
@ -450,7 +448,8 @@
"close": "Close", "close": "Close",
"cancel": "Cancel", "cancel": "Cancel",
"add": "Add", "add": "Add",
"accept": "Accept" "accept": "Accept",
"register": "Register"
}, },
"keyboard": { "keyboard": {
"home": "Home" "home": "Home"
@ -459,7 +458,8 @@
"default": "Default", "default": "Default",
"restricted": "Restricted", "restricted": "Restricted",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"custom": "Custom (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"send_logs": "Send logs" "send_logs": "Send logs"

View file

@ -195,7 +195,6 @@
"Add an Integration": "Aldoni kunigon", "Add an Integration": "Aldoni kunigon",
"powered by Matrix": "funkciigata de Matrix", "powered by Matrix": "funkciigata de Matrix",
"Failed to change password. Is your password correct?": "Malsukcesis ŝanĝi la pasvorton. Ĉu via pasvorto estas ĝusta?", "Failed to change password. Is your password correct?": "Malsukcesis ŝanĝi la pasvorton. Ĉu via pasvorto estas ĝusta?",
"Register": "Registri",
"Token incorrect": "Malĝusta peco", "Token incorrect": "Malĝusta peco",
"A text message has been sent to %(msisdn)s": "Tekstmesaĝo sendiĝîs al %(msisdn)s", "A text message has been sent to %(msisdn)s": "Tekstmesaĝo sendiĝîs al %(msisdn)s",
"Please enter the code it contains:": "Bonvolu enigi la enhavatan kodon:", "Please enter the code it contains:": "Bonvolu enigi la enhavatan kodon:",
@ -350,8 +349,6 @@
"No Microphones detected": "Neniu mikrofono troviĝis", "No Microphones detected": "Neniu mikrofono troviĝis",
"No Webcams detected": "Neniu kamerao troviĝis", "No Webcams detected": "Neniu kamerao troviĝis",
"Default Device": "Implicita aparato", "Default Device": "Implicita aparato",
"Microphone": "Mikrofono",
"Camera": "Kamerao",
"Email": "Retpoŝto", "Email": "Retpoŝto",
"Notifications": "Sciigoj", "Notifications": "Sciigoj",
"Profile": "Profilo", "Profile": "Profilo",
@ -374,7 +371,6 @@
"Ignores a user, hiding their messages from you": "Malatentas uzanton, kaŝante ĝiajn mesaĝojn de vi", "Ignores a user, hiding their messages from you": "Malatentas uzanton, kaŝante ĝiajn mesaĝojn de vi",
"Stops ignoring a user, showing their messages going forward": "Ĉesas malatenti uzanton, montronte ĝiajn pluajn mesaĝojn", "Stops ignoring a user, showing their messages going forward": "Ĉesas malatenti uzanton, montronte ĝiajn pluajn mesaĝojn",
"Commands": "Komandoj", "Commands": "Komandoj",
"Emoji": "Mienetoj",
"Notify the whole room": "Sciigi la tutan ĉambron", "Notify the whole room": "Sciigi la tutan ĉambron",
"Room Notification": "Ĉambra sciigo", "Room Notification": "Ĉambra sciigo",
"Users": "Uzantoj", "Users": "Uzantoj",
@ -558,15 +554,11 @@
"Display Name": "Vidiga nomo", "Display Name": "Vidiga nomo",
"Email addresses": "Retpoŝtadresoj", "Email addresses": "Retpoŝtadresoj",
"Phone numbers": "Telefonnumeroj", "Phone numbers": "Telefonnumeroj",
"Legal": "Jura",
"Credits": "Dankoj",
"For help with using %(brand)s, click <a>here</a>.": "Por helpo pri uzado de %(brand)s, klaku <a>ĉi tien</a>.", "For help with using %(brand)s, click <a>here</a>.": "Por helpo pri uzado de %(brand)s, klaku <a>ĉi tien</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Por helpo pri uzado de %(brand)s, klaku <a>ĉi tien</a> aŭ komencu babilon kun nia roboto per la butono sube.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Por helpo pri uzado de %(brand)s, klaku <a>ĉi tien</a> aŭ komencu babilon kun nia roboto per la butono sube.",
"Chat with %(brand)s Bot": "Babilu kun la roboto %(brand)s Bot", "Chat with %(brand)s Bot": "Babilu kun la roboto %(brand)s Bot",
"Help & About": "Helpo kaj Prio", "Help & About": "Helpo kaj Prio",
"FAQ": "Oftaj demandoj",
"Versions": "Versioj", "Versions": "Versioj",
"Preferences": "Agordoj",
"Composer": "Komponilo", "Composer": "Komponilo",
"Room list": "Ĉambrolisto", "Room list": "Ĉambrolisto",
"Ignored users": "Malatentaj uzantoj", "Ignored users": "Malatentaj uzantoj",
@ -607,12 +599,10 @@
"Share Room": "Kunhavigi ĉambron", "Share Room": "Kunhavigi ĉambron",
"Share User": "Kunhavigi uzanton", "Share User": "Kunhavigi uzanton",
"Share Room Message": "Kunhavigi ĉambran mesaĝon", "Share Room Message": "Kunhavigi ĉambran mesaĝon",
"Change": "Ŝanĝi",
"Email (optional)": "Retpoŝto (malnepra)", "Email (optional)": "Retpoŝto (malnepra)",
"Phone (optional)": "Telefono (malnepra)", "Phone (optional)": "Telefono (malnepra)",
"Other": "Alia", "Other": "Alia",
"Couldn't load page": "Ne povis enlegi paĝon", "Couldn't load page": "Ne povis enlegi paĝon",
"Guest": "Gasto",
"Could not load user profile": "Ne povis enlegi profilon de uzanto", "Could not load user profile": "Ne povis enlegi profilon de uzanto",
"Your password has been reset.": "Vi reagordis vian pasvorton.", "Your password has been reset.": "Vi reagordis vian pasvorton.",
"General failure": "Ĝenerala fiasko", "General failure": "Ĝenerala fiasko",
@ -796,7 +786,6 @@
"Enable widget screenshots on supported widgets": "Ŝalti bildojn de fenestraĵoj por subtenataj fenestraĵoj", "Enable widget screenshots on supported widgets": "Ŝalti bildojn de fenestraĵoj por subtenataj fenestraĵoj",
"Show hidden events in timeline": "Montri kaŝitajn okazojn en historio", "Show hidden events in timeline": "Montri kaŝitajn okazojn en historio",
"Start using Key Backup": "Ekuzi Savkopiadon de ŝlosiloj", "Start using Key Backup": "Ekuzi Savkopiadon de ŝlosiloj",
"Timeline": "Historio",
"Autocomplete delay (ms)": "Prokrasto de memaga kompletigo", "Autocomplete delay (ms)": "Prokrasto de memaga kompletigo",
"Upgrade this room to the recommended room version": "Gradaltigi ĉi tiun ĉambron al rekomendata ĉambra versio", "Upgrade this room to the recommended room version": "Gradaltigi ĉi tiun ĉambron al rekomendata ĉambra versio",
"Uploaded sound": "Alŝutita sono", "Uploaded sound": "Alŝutita sono",
@ -804,7 +793,6 @@
"Notification sound": "Sono de sciigo", "Notification sound": "Sono de sciigo",
"Set a new custom sound": "Agordi novan propran sonon", "Set a new custom sound": "Agordi novan propran sonon",
"Browse": "Foliumi", "Browse": "Foliumi",
"Show all": "Montri ĉiujn",
"Edited at %(date)s. Click to view edits.": "Redaktita je %(date)s. Klaku por vidi redaktojn.", "Edited at %(date)s. Click to view edits.": "Redaktita je %(date)s. Klaku por vidi redaktojn.",
"The following users may not exist": "La jenaj uzantoj eble ne ekzistas", "The following users may not exist": "La jenaj uzantoj eble ne ekzistas",
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Ne povas trovi profilojn de la ĉi-subaj Matrix-identigilojn ĉu vi tamen volas inviti ilin?", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Ne povas trovi profilojn de la ĉi-subaj Matrix-identigilojn ĉu vi tamen volas inviti ilin?",
@ -933,7 +921,6 @@
"Only continue if you trust the owner of the server.": "Nur daŭrigu se vi fidas al la posedanto de la servilo.", "Only continue if you trust the owner of the server.": "Nur daŭrigu se vi fidas al la posedanto de la servilo.",
"Disconnect identity server": "Malkonekti la identigan servilon", "Disconnect identity server": "Malkonekti la identigan servilon",
"Disconnect from the identity server <idserver />?": "Ĉu malkonektiĝi de la identiga servilo <idserver />?", "Disconnect from the identity server <idserver />?": "Ĉu malkonektiĝi de la identiga servilo <idserver />?",
"Disconnect": "Malkonekti",
"You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Vi ankoraŭ <b>havigas siajn personajn datumojn</b> je la identiga servilo <idserver />.", "You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Vi ankoraŭ <b>havigas siajn personajn datumojn</b> je la identiga servilo <idserver />.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Ni rekomendas, ke vi forigu viajn retpoŝtadresojn kaj telefonnumerojn de la identiga servilo, antaŭ ol vi malkonektiĝos.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Ni rekomendas, ke vi forigu viajn retpoŝtadresojn kaj telefonnumerojn de la identiga servilo, antaŭ ol vi malkonektiĝos.",
"Disconnect anyway": "Tamen malkonekti", "Disconnect anyway": "Tamen malkonekti",
@ -985,8 +972,6 @@
"Your email address hasn't been verified yet": "Via retpoŝtadreso ankoraŭ ne kontroliĝis", "Your email address hasn't been verified yet": "Via retpoŝtadreso ankoraŭ ne kontroliĝis",
"Click the link in the email you received to verify and then click continue again.": "Klaku la ligilon en la ricevita retletero por kontroli, kaj poste reklaku al «daŭrigi».", "Click the link in the email you received to verify and then click continue again.": "Klaku la ligilon en la ricevita retletero por kontroli, kaj poste reklaku al «daŭrigi».",
"Verify the link in your inbox": "Kontrolu la ligilon en via ricevujo", "Verify the link in your inbox": "Kontrolu la ligilon en via ricevujo",
"Complete": "Fini",
"Revoke": "Senvalidigi",
"Discovery options will appear once you have added an email above.": "Eltrovaj agordoj aperos kiam vi aldonos supre retpoŝtadreson.", "Discovery options will appear once you have added an email above.": "Eltrovaj agordoj aperos kiam vi aldonos supre retpoŝtadreson.",
"Unable to revoke sharing for phone number": "Ne povas senvalidigi havigadon je telefonnumero", "Unable to revoke sharing for phone number": "Ne povas senvalidigi havigadon je telefonnumero",
"Unable to share phone number": "Ne povas havigi telefonnumeron", "Unable to share phone number": "Ne povas havigi telefonnumeron",
@ -1060,7 +1045,6 @@
"Notification Autocomplete": "Memkompletigo de sciigoj", "Notification Autocomplete": "Memkompletigo de sciigoj",
"Room Autocomplete": "Memkompletigo de ĉambroj", "Room Autocomplete": "Memkompletigo de ĉambroj",
"User Autocomplete": "Memkompletigo de uzantoj", "User Autocomplete": "Memkompletigo de uzantoj",
"Custom (%(level)s)": "Propra (%(level)s)",
"%(senderName)s placed a voice call.": "%(senderName)s ekigis voĉvokon.", "%(senderName)s placed a voice call.": "%(senderName)s ekigis voĉvokon.",
"%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s ekigis voĉvokon. (mankas subteno en ĉi tiu foliumilo)", "%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s ekigis voĉvokon. (mankas subteno en ĉi tiu foliumilo)",
"%(senderName)s placed a video call.": "%(senderName)s ekigis vidvokon.", "%(senderName)s placed a video call.": "%(senderName)s ekigis vidvokon.",
@ -1074,12 +1058,10 @@
"Please try again or view your console for hints.": "Bonvolu reprovi aŭ serĉi helpilojn en via konzolo.", "Please try again or view your console for hints.": "Bonvolu reprovi aŭ serĉi helpilojn en via konzolo.",
"You have not ignored anyone.": "Vi neniun malatentis.", "You have not ignored anyone.": "Vi neniun malatentis.",
"You are not subscribed to any lists": "Vi neniun liston abonis", "You are not subscribed to any lists": "Vi neniun liston abonis",
"Unsubscribe": "Malaboni",
"View rules": "Montri regulojn", "View rules": "Montri regulojn",
"You are currently subscribed to:": "Vi nun abonas:", "You are currently subscribed to:": "Vi nun abonas:",
"⚠ These settings are meant for advanced users.": "⚠ Ĉi tiuj agordoj celas spertajn uzantojn.", "⚠ These settings are meant for advanced users.": "⚠ Ĉi tiuj agordoj celas spertajn uzantojn.",
"Subscribed lists": "Abonataj listoj", "Subscribed lists": "Abonataj listoj",
"Subscribe": "Aboni",
"Your display name": "Via vidiga nomo", "Your display name": "Via vidiga nomo",
"Your user ID": "Via identigilo de uzanto", "Your user ID": "Via identigilo de uzanto",
"Your theme": "Via haŭto", "Your theme": "Via haŭto",
@ -1193,7 +1175,6 @@
"Not Trusted": "Nefidata", "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:", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) salutis novan salutaĵon ne kontrolante ĝin:",
"Ask this user to verify their session, or manually verify it below.": "Petu, ke ĉi tiu la uzanto kontrolu sian salutaĵon, aŭ kontrolu ĝin permane sube.", "Ask this user to verify their session, or manually verify it below.": "Petu, ke ĉi tiu la uzanto kontrolu sian salutaĵon, aŭ kontrolu ĝin permane sube.",
"Review": "Rekontroli",
"This bridge was provisioned by <user />.": "Ĉi tiu ponto estas provizita de <user />.", "This bridge was provisioned by <user />.": "Ĉi tiu ponto estas provizita de <user />.",
"This bridge is managed by <user />.": "Ĉi tiu ponto estas administrata de <user />.", "This bridge is managed by <user />.": "Ĉi tiu ponto estas administrata de <user />.",
"Your homeserver does not support cross-signing.": "Via hejmservilo ne subtenas delegajn subskribojn.", "Your homeserver does not support cross-signing.": "Via hejmservilo ne subtenas delegajn subskribojn.",
@ -1315,7 +1296,6 @@
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Mankas publika ŝlosilo por testo de homeco en hejmservila agordaro. Bonvolu raporti tion al la administranto de via hejmservilo.", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Mankas publika ŝlosilo por testo de homeco en hejmservila agordaro. Bonvolu raporti tion al la administranto de via hejmservilo.",
"Enter your account password to confirm the upgrade:": "Enigu pasvorton de via konto por konfirmi la gradaltigon:", "Enter your account password to confirm the upgrade:": "Enigu pasvorton de via konto por konfirmi la gradaltigon:",
"Restore your key backup to upgrade your encryption": "Rehavu vian savkopion de ŝlosiloj por gradaltigi vian ĉifradon", "Restore your key backup to upgrade your encryption": "Rehavu vian savkopion de ŝlosiloj por gradaltigi vian ĉifradon",
"Restore": "Rehavi",
"You'll need to authenticate with the server to confirm the upgrade.": "Vi devos aŭtentikigi kun la servilo por konfirmi la gradaltigon.", "You'll need to authenticate with the server to confirm the upgrade.": "Vi devos aŭtentikigi kun la servilo por konfirmi la gradaltigon.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Gradaltigu ĉi tiun salutaĵon por ebligi al ĝi kontroladon de aliaj salutaĵoj, donante al ili aliron al ĉifritaj mesaĵoj, kaj markante ilin fidataj por aliaj uzantoj.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Gradaltigu ĉi tiun salutaĵon por ebligi al ĝi kontroladon de aliaj salutaĵoj, donante al ili aliron al ĉifritaj mesaĵoj, kaj markante ilin fidataj por aliaj uzantoj.",
"Unable to set up secret storage": "Ne povas starigi sekretan deponejon", "Unable to set up secret storage": "Ne povas starigi sekretan deponejon",
@ -1381,11 +1361,9 @@
"Activate selected button": "Aktivigi la elektitan butonon", "Activate selected button": "Aktivigi la elektitan butonon",
"Toggle right panel": "Baskuligi la dekstran panelon", "Toggle right panel": "Baskuligi la dekstran panelon",
"Cancel autocomplete": "Nuligi memkompletigon", "Cancel autocomplete": "Nuligi memkompletigon",
"Space": "Spaco",
"Manually verify all remote sessions": "Permane kontroli ĉiujn forajn salutaĵojn", "Manually verify all remote sessions": "Permane kontroli ĉiujn forajn salutaĵojn",
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Unuope kontroli ĉiun salutaĵon de uzanto por marki ĝin fidata, ne fidante delege subskribitajn aparatojn.", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Unuope kontroli ĉiun salutaĵon de uzanto por marki ĝin fidata, ne fidante delege subskribitajn aparatojn.",
"Invalid theme schema.": "Nevalida skemo de haŭto.", "Invalid theme schema.": "Nevalida skemo de haŭto.",
"Mod": "Reguligisto",
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "En ĉifritaj ĉambroj, viaj mesaĝoj estas sekurigitaj, kaj nur vi kaj la ricevanto havas la unikajn malĉifrajn ŝlosilojn.", "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "En ĉifritaj ĉambroj, viaj mesaĝoj estas sekurigitaj, kaj nur vi kaj la ricevanto havas la unikajn malĉifrajn ŝlosilojn.",
"Verify all users in a room to ensure it's secure.": "Kontrolu ĉiujn uzantojn en ĉambro por certigi, ke ĝi sekuras.", "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", "Use Single Sign On to continue": "Daŭrigi per ununura saluto",
@ -1592,7 +1570,6 @@
"Show Widgets": "Montri fenestraĵojn", "Show Widgets": "Montri fenestraĵojn",
"Hide Widgets": "Kaŝi fenestraĵojn", "Hide Widgets": "Kaŝi fenestraĵojn",
"Remove messages sent by others": "Forigi mesaĝojn senditajn de aliaj", "Remove messages sent by others": "Forigi mesaĝojn senditajn de aliaj",
"Privacy": "Privateco",
"Secure Backup": "Sekura savkopiado", "Secure Backup": "Sekura savkopiado",
"not ready": "neprete", "not ready": "neprete",
"ready": "prete", "ready": "prete",
@ -2003,7 +1980,6 @@
"The widget will verify your user ID, but won't be able to perform actions for you:": "Ĉi tiu fenestraĵo kontrolos vian identigilon de uzanto, sed ne povos fari agojn por vi:", "The widget will verify your user ID, but won't be able to perform actions for you:": "Ĉi tiu fenestraĵo kontrolos vian identigilon de uzanto, sed ne povos fari agojn por vi:",
"Allow this widget to verify your identity": "Permesu al ĉi tiu fenestraĵo kontroli vian identecon", "Allow this widget to verify your identity": "Permesu al ĉi tiu fenestraĵo kontroli vian identecon",
"Decline All": "Rifuzi ĉion", "Decline All": "Rifuzi ĉion",
"Approve": "Aprobi",
"This widget would like to:": "Ĉi tiu fenestraĵo volas:", "This widget would like to:": "Ĉi tiu fenestraĵo volas:",
"Approve widget permissions": "Aprobi rajtojn de fenestraĵo", "Approve widget permissions": "Aprobi rajtojn de fenestraĵo",
"About homeservers": "Pri hejmserviloj", "About homeservers": "Pri hejmserviloj",
@ -2089,8 +2065,6 @@
"This room is suggested as a good one to join": "Ĉi tiu ĉambro estas rekomendata kiel aliĝinda", "This room is suggested as a good one to join": "Ĉi tiu ĉambro estas rekomendata kiel aliĝinda",
"Suggested Rooms": "Rekomendataj ĉambroj", "Suggested Rooms": "Rekomendataj ĉambroj",
"Failed to create initial space rooms": "Malsukcesis krei komencajn ĉambrojn de aro", "Failed to create initial space rooms": "Malsukcesis krei komencajn ĉambrojn de aro",
"Support": "Subteno",
"Random": "Hazarda",
"Welcome to <name/>": "Bonvenu al <name/>", "Welcome to <name/>": "Bonvenu al <name/>",
"Your server does not support showing space hierarchies.": "Via servilo ne subtenas montradon de hierarĥioj de aroj.", "Your server does not support showing space hierarchies.": "Via servilo ne subtenas montradon de hierarĥioj de aroj.",
"Private space": "Privata aro", "Private space": "Privata aro",
@ -2212,8 +2186,6 @@
"Unable to access your microphone": "Ne povas aliri vian mikrofonon", "Unable to access your microphone": "Ne povas aliri vian mikrofonon",
"You have no ignored users.": "Vi malatentas neniujn uzantojn.", "You have no ignored users.": "Vi malatentas neniujn uzantojn.",
"Please enter a name for the space": "Bonvolu enigi nomon por la aro", "Please enter a name for the space": "Bonvolu enigi nomon por la aro",
"Play": "Ludi",
"Pause": "Paŭzigi",
"Connecting": "Konektante", "Connecting": "Konektante",
"Sends the given message with a space themed effect": "Sendas mesaĝon kun la efekto de kosmo", "Sends the given message with a space themed effect": "Sendas mesaĝon kun la efekto de kosmo",
"See when people join, leave, or are invited to your active room": "Vidu kiam oni aliĝas, foriras, aŭ invitiĝas al via aktiva ĉambro", "See when people join, leave, or are invited to your active room": "Vidu kiam oni aliĝas, foriras, aŭ invitiĝas al via aktiva ĉambro",
@ -2221,7 +2193,6 @@
"This homeserver has been blocked by its administrator.": "Tiu ĉi hejmservilo estas blokita de sia administranto.", "This homeserver has been blocked by its administrator.": "Tiu ĉi hejmservilo estas blokita de sia administranto.",
"Modal Widget": "Reĝima fenestraĵo", "Modal Widget": "Reĝima fenestraĵo",
"Consult first": "Unue konsulti", "Consult first": "Unue konsulti",
"Access Token": "Alirpeco",
"Message search initialisation failed": "Malsukcesis komenci serĉadon de mesaĝoj", "Message search initialisation failed": "Malsukcesis komenci serĉadon de mesaĝoj",
"Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "Konsultante kun %(transferTarget)s. <a>Transdono al %(transferee)s</a>", "Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "Konsultante kun %(transferTarget)s. <a>Transdono al %(transferee)s</a>",
"sends space invaders": "sendas imiton de ludo «Space Invaders»", "sends space invaders": "sendas imiton de ludo «Space Invaders»",
@ -2836,7 +2807,21 @@
"dark": "Malhela", "dark": "Malhela",
"beta": "Prova", "beta": "Prova",
"attachment": "Aldonaĵo", "attachment": "Aldonaĵo",
"appearance": "Aspekto" "appearance": "Aspekto",
"guest": "Gasto",
"legal": "Jura",
"credits": "Dankoj",
"faq": "Oftaj demandoj",
"access_token": "Alirpeco",
"preferences": "Agordoj",
"timeline": "Historio",
"privacy": "Privateco",
"camera": "Kamerao",
"microphone": "Mikrofono",
"emoji": "Mienetoj",
"random": "Hazarda",
"support": "Subteno",
"space": "Spaco"
}, },
"action": { "action": {
"continue": "Daŭrigi", "continue": "Daŭrigi",
@ -2904,7 +2889,20 @@
"cancel": "Nuligi", "cancel": "Nuligi",
"back": "Reen", "back": "Reen",
"add": "Aldoni", "add": "Aldoni",
"accept": "Akcepti" "accept": "Akcepti",
"disconnect": "Malkonekti",
"change": "Ŝanĝi",
"subscribe": "Aboni",
"unsubscribe": "Malaboni",
"approve": "Aprobi",
"complete": "Fini",
"revoke": "Senvalidigi",
"show_all": "Montri ĉiujn",
"review": "Rekontroli",
"restore": "Rehavi",
"play": "Ludi",
"pause": "Paŭzigi",
"register": "Registri"
}, },
"a11y": { "a11y": {
"user_menu": "Menuo de uzanto" "user_menu": "Menuo de uzanto"
@ -2956,7 +2954,9 @@
"default": "Ordinara", "default": "Ordinara",
"restricted": "Limigita", "restricted": "Limigita",
"moderator": "Ĉambrestro", "moderator": "Ĉambrestro",
"admin": "Administranto" "admin": "Administranto",
"custom": "Propra (%(level)s)",
"mod": "Reguligisto"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "Por raparto de sekureca problemo rilata al Matrix, bonvolu legi la <a>Eldiran Politikon pri Sekureco</a> de Matrix.org.", "matrix_security_issue": "Por raparto de sekureca problemo rilata al Matrix, bonvolu legi la <a>Eldiran Politikon pri Sekureco</a> de Matrix.org.",

View file

@ -34,7 +34,6 @@
"Download %(text)s": "Descargar %(text)s", "Download %(text)s": "Descargar %(text)s",
"Email": "Correo electrónico", "Email": "Correo electrónico",
"Email address": "Dirección de correo electrónico", "Email address": "Dirección de correo electrónico",
"Emoji": "Emoji",
"Error decrypting attachment": "Error al descifrar adjunto", "Error decrypting attachment": "Error al descifrar adjunto",
"Export E2E room keys": "Exportar claves de salas con cifrado de extremo a extremo", "Export E2E room keys": "Exportar claves de salas con cifrado de extremo a extremo",
"Failed to ban user": "Bloqueo del usuario falló", "Failed to ban user": "Bloqueo del usuario falló",
@ -69,8 +68,6 @@
"No Microphones detected": "Micrófono no detectado", "No Microphones detected": "Micrófono no detectado",
"No Webcams detected": "Cámara no detectada", "No Webcams detected": "Cámara no detectada",
"Default Device": "Dispositivo por defecto", "Default Device": "Dispositivo por defecto",
"Microphone": "Micrófono",
"Camera": "Cámara",
"Anyone": "Todos", "Anyone": "Todos",
"Custom level": "Nivel personalizado", "Custom level": "Nivel personalizado",
"Enter passphrase": "Introducir frase de contraseña", "Enter passphrase": "Introducir frase de contraseña",
@ -140,7 +137,6 @@
"Privileged Users": "Usuarios con privilegios", "Privileged Users": "Usuarios con privilegios",
"Profile": "Perfil", "Profile": "Perfil",
"Reason": "Motivo", "Reason": "Motivo",
"Register": "Crear cuenta",
"Reject invitation": "Rechazar invitación", "Reject invitation": "Rechazar invitación",
"Return to login screen": "Regresar a la pantalla de inicio de sesión", "Return to login screen": "Regresar a la pantalla de inicio de sesión",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s no tiene permiso para enviarte notificaciones - por favor, comprueba los ajustes de tu navegador", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s no tiene permiso para enviarte notificaciones - por favor, comprueba los ajustes de tu navegador",
@ -506,7 +502,6 @@
"Failed to upgrade room": "No se pudo actualizar la sala", "Failed to upgrade room": "No se pudo actualizar la sala",
"The room upgrade could not be completed": "La actualización de la sala no pudo ser completada", "The room upgrade could not be completed": "La actualización de la sala no pudo ser completada",
"Upgrade this room to version %(version)s": "Actualiza esta sala a la versión %(version)s", "Upgrade this room to version %(version)s": "Actualiza esta sala a la versión %(version)s",
"Legal": "Legal",
"%(senderName)s set the main address for this room to %(address)s.": "%(senderName)s estableció la dirección principal para esta sala como %(address)s.", "%(senderName)s set the main address for this room to %(address)s.": "%(senderName)s estableció la dirección principal para esta sala como %(address)s.",
"%(senderName)s removed the main address for this room.": "%(senderName)s eliminó la dirección principal para esta sala.", "%(senderName)s removed the main address for this room.": "%(senderName)s eliminó la dirección principal para esta sala.",
"%(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 ahora utiliza de 3 a 5 veces menos memoria, porque solo carga información sobre otros usuarios cuando es necesario. Por favor, ¡aguarda mientras volvemos a sincronizar con el servidor!", "%(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 ahora utiliza de 3 a 5 veces menos memoria, porque solo carga información sobre otros usuarios cuando es necesario. Por favor, ¡aguarda mientras volvemos a sincronizar con el servidor!",
@ -660,14 +655,11 @@
"General": "General", "General": "General",
"Room Addresses": "Direcciones de la sala", "Room Addresses": "Direcciones de la sala",
"Account management": "Gestión de la cuenta", "Account management": "Gestión de la cuenta",
"Credits": "Créditos",
"For help with using %(brand)s, click <a>here</a>.": "Si necesitas ayuda usando %(brand)s, haz clic <a>aquí</a>.", "For help with using %(brand)s, click <a>here</a>.": "Si necesitas ayuda usando %(brand)s, haz clic <a>aquí</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Si necesitas ayuda usando %(brand)s, haz clic <a>aquí</a> o abre un chat con nuestro bot usando el botón de abajo.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Si necesitas ayuda usando %(brand)s, haz clic <a>aquí</a> o abre un chat con nuestro bot usando el botón de abajo.",
"Chat with %(brand)s Bot": "Hablar con %(brand)s Bot", "Chat with %(brand)s Bot": "Hablar con %(brand)s Bot",
"Help & About": "Ayuda y acerca de", "Help & About": "Ayuda y acerca de",
"FAQ": "Preguntas frecuentes",
"Versions": "Versiones", "Versions": "Versiones",
"Preferences": "Opciones",
"Room list": "Lista de salas", "Room list": "Lista de salas",
"Autocomplete delay (ms)": "Retardo autocompletado (ms)", "Autocomplete delay (ms)": "Retardo autocompletado (ms)",
"Roles & Permissions": "Roles y permisos", "Roles & Permissions": "Roles y permisos",
@ -744,7 +736,6 @@
"Identity server has no terms of service": "El servidor de identidad no tiene términos de servicio", "Identity server has no terms of service": "El servidor de identidad no tiene términos de servicio",
"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.": "Esta acción necesita acceder al servidor de identidad por defecto <server /> para validar un correo o un teléfono, pero el servidor no tiene términos de servicio.", "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.": "Esta acción necesita acceder al servidor de identidad por defecto <server /> para validar un correo o un teléfono, pero el servidor no tiene términos de servicio.",
"Only continue if you trust the owner of the server.": "Continúa solamente si confías en el propietario del servidor.", "Only continue if you trust the owner of the server.": "Continúa solamente si confías en el propietario del servidor.",
"Custom (%(level)s)": "Personalizado (%(level)s)",
"Error upgrading room": "Fallo al mejorar la sala", "Error upgrading room": "Fallo al mejorar la sala",
"Double check that your server supports the room version chosen and try again.": "Asegúrate de que tu servidor es compatible con la versión de sala elegida y prueba de nuevo.", "Double check that your server supports the room version chosen and try again.": "Asegúrate de que tu servidor es compatible con la versión de sala elegida y prueba de nuevo.",
"%(senderName)s placed a voice call.": "%(senderName)s hizo una llamada de voz.", "%(senderName)s placed a voice call.": "%(senderName)s hizo una llamada de voz.",
@ -804,7 +795,6 @@
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar un servidor de identidad es opcional. Si eliges no usar un servidor de identidad, no podrás ser descubierto por otros usuarios y no podrás invitar a otros por email o teléfono.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar un servidor de identidad es opcional. Si eliges no usar un servidor de identidad, no podrás ser descubierto por otros usuarios y no podrás invitar a otros por email o teléfono.",
"Do not use an identity server": "No usar un servidor de identidad", "Do not use an identity server": "No usar un servidor de identidad",
"Enter a new identity server": "Introducir un servidor de identidad nuevo", "Enter a new identity server": "Introducir un servidor de identidad nuevo",
"Change": "Cambiar",
"Manage integrations": "Gestor de integraciones", "Manage integrations": "Gestor de integraciones",
"Something went wrong trying to invite the users.": "Algo ha salido mal al intentar invitar a los usuarios.", "Something went wrong trying to invite the users.": "Algo ha salido mal al intentar invitar a los usuarios.",
"We couldn't invite those users. Please check the users you want to invite and try again.": "No se pudo invitar a esos usuarios. Por favor, revisa los usuarios que quieres invitar e inténtalo de nuevo.", "We couldn't invite those users. Please check the users you want to invite and try again.": "No se pudo invitar a esos usuarios. Por favor, revisa los usuarios que quieres invitar e inténtalo de nuevo.",
@ -873,7 +863,6 @@
"You have not ignored anyone.": "No has ignorado a nadie.", "You have not ignored anyone.": "No has ignorado a nadie.",
"You are currently ignoring:": "Estás ignorando actualmente:", "You are currently ignoring:": "Estás ignorando actualmente:",
"You are not subscribed to any lists": "No estás suscrito a ninguna lista", "You are not subscribed to any lists": "No estás suscrito a ninguna lista",
"Unsubscribe": "Desuscribirse",
"View rules": "Ver reglas", "View rules": "Ver reglas",
"You are currently subscribed to:": "Estás actualmente suscrito a:", "You are currently subscribed to:": "Estás actualmente suscrito a:",
"⚠ These settings are meant for advanced users.": "⚠ Estas opciones son indicadas para usuarios avanzados.", "⚠ These settings are meant for advanced users.": "⚠ Estas opciones son indicadas para usuarios avanzados.",
@ -915,7 +904,6 @@
"Compare unique emoji": "Compara los emojis", "Compare unique emoji": "Compara los emojis",
"Compare a unique set of emoji if you don't have a camera on either device": "Compara un conjunto de emojis si no tienes cámara en ninguno de los dispositivos", "Compare a unique set of emoji if you don't have a camera on either device": "Compara un conjunto de emojis si no tienes cámara en ninguno de los dispositivos",
"Waiting for %(displayName)s to verify…": "Esperando la verificación de %(displayName)s…", "Waiting for %(displayName)s to verify…": "Esperando la verificación de %(displayName)s…",
"Review": "Revisar",
"in secret storage": "en almacén secreto", "in secret storage": "en almacén secreto",
"Secret storage public key:": "Clave pública del almacén secreto:", "Secret storage public key:": "Clave pública del almacén secreto:",
"in account data": "en datos de cuenta", "in account data": "en datos de cuenta",
@ -952,7 +940,6 @@
"Enable encryption?": "¿Activar cifrado?", "Enable encryption?": "¿Activar cifrado?",
"Your email address hasn't been verified yet": "Tu dirección de email no ha sido verificada", "Your email address hasn't been verified yet": "Tu dirección de email no ha sido verificada",
"Verify the link in your inbox": "Verifica el enlace en tu bandeja de entrada", "Verify the link in your inbox": "Verifica el enlace en tu bandeja de entrada",
"Complete": "Completar",
"Remove %(email)s?": "¿Eliminar %(email)s?", "Remove %(email)s?": "¿Eliminar %(email)s?",
"This backup is trusted because it has been restored on this session": "Esta copia de seguridad es de confianza porque ha sido restaurada en esta sesión", "This backup is trusted because it has been restored on this session": "Esta copia de seguridad es de confianza porque ha sido restaurada en esta sesión",
"Your keys are <b>not being backed up from this session</b>.": "<b>No se está haciendo una copia de seguridad de tus claves en esta sesión</b>.", "Your keys are <b>not being backed up from this session</b>.": "<b>No se está haciendo una copia de seguridad de tus claves en esta sesión</b>.",
@ -965,7 +952,6 @@
"The identity server you have chosen does not have any terms of service.": "El servidor de identidad que has elegido no tiene ningún término de servicio.", "The identity server you have chosen does not have any terms of service.": "El servidor de identidad que has elegido no tiene ningún término de servicio.",
"Disconnect identity server": "Desconectar servidor de identidad", "Disconnect identity server": "Desconectar servidor de identidad",
"Disconnect from the identity server <idserver />?": "¿Desconectarse del servidor de identidad <idserver />?", "Disconnect from the identity server <idserver />?": "¿Desconectarse del servidor de identidad <idserver />?",
"Disconnect": "Desconectarse",
"You should:": "Deberías:", "You should:": "Deberías:",
"Use Single Sign On to continue": "Continuar con registro único (SSO)", "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.", "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.",
@ -1047,10 +1033,8 @@
"Subscribed lists": "Listados a que subscribiste", "Subscribed lists": "Listados a que subscribiste",
"Subscribing to a ban list will cause you to join it!": "¡Suscribirse a una lista negra hará unirte a ella!", "Subscribing to a ban list will cause you to join it!": "¡Suscribirse a una lista negra hará unirte a ella!",
"If this isn't what you want, please use a different tool to ignore users.": "Si esto no es lo que quieres, por favor usa una herramienta diferente para ignorar usuarios.", "If this isn't what you want, please use a different tool to ignore users.": "Si esto no es lo que quieres, por favor usa una herramienta diferente para ignorar usuarios.",
"Subscribe": "Suscribir",
"Always show the window menu bar": "Siempre mostrar la barra de menú de la ventana", "Always show the window menu bar": "Siempre mostrar la barra de menú de la ventana",
"Composer": "Editor", "Composer": "Editor",
"Timeline": "Línea de tiempo",
"Read Marker lifetime (ms)": "Permanencia del marcador de lectura (en ms)", "Read Marker lifetime (ms)": "Permanencia del marcador de lectura (en ms)",
"Read Marker off-screen lifetime (ms)": "Permanencia del marcador de lectura fuera de la pantalla (en ms)", "Read Marker off-screen lifetime (ms)": "Permanencia del marcador de lectura fuera de la pantalla (en ms)",
"Session ID:": "Identidad (ID) de sesión:", "Session ID:": "Identidad (ID) de sesión:",
@ -1063,7 +1047,6 @@
"Unable to revoke sharing for email address": "No se logró revocar el compartir para la dirección de correo electrónico", "Unable to revoke sharing for email address": "No se logró revocar el compartir para la dirección de correo electrónico",
"Unable to share email address": "No se logró compartir la dirección de correo electrónico", "Unable to share email address": "No se logró compartir la dirección de correo electrónico",
"Click the link in the email you received to verify and then click continue again.": "Haz clic en el enlace del correo electrónico para verificar, y luego nuevamente haz clic en continuar.", "Click the link in the email you received to verify and then click continue again.": "Haz clic en el enlace del correo electrónico para verificar, y luego nuevamente haz clic en continuar.",
"Revoke": "Revocar",
"Discovery options will appear once you have added an email above.": "Las opciones de descubrimiento aparecerán una vez que haya añadido un correo electrónico arriba.", "Discovery options will appear once you have added an email above.": "Las opciones de descubrimiento aparecerán una vez que haya añadido un correo electrónico arriba.",
"Unable to revoke sharing for phone number": "No se logró revocar el intercambio de un número de teléfono", "Unable to revoke sharing for phone number": "No se logró revocar el intercambio de un número de teléfono",
"Unable to share phone number": "No se logró compartir el número de teléfono", "Unable to share phone number": "No se logró compartir el número de teléfono",
@ -1078,7 +1061,6 @@
"This room is end-to-end encrypted": "Esta sala usa cifrado de extremo a extremo", "This room is end-to-end encrypted": "Esta sala usa cifrado de extremo a extremo",
"Everyone in this room is verified": "Todos los participantes en esta sala están verificados", "Everyone in this room is verified": "Todos los participantes en esta sala están verificados",
"Edit message": "Editar mensaje", "Edit message": "Editar mensaje",
"Mod": "Mod",
"Rotate Right": "Girar a la derecha", "Rotate Right": "Girar a la derecha",
"Language Dropdown": "Lista selección de idiomas", "Language Dropdown": "Lista selección de idiomas",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
@ -1267,7 +1249,6 @@
"%(name)s cancelled": "%(name)s canceló", "%(name)s cancelled": "%(name)s canceló",
"%(name)s wants to verify": "%(name)s quiere verificar", "%(name)s wants to verify": "%(name)s quiere verificar",
"You sent a verification request": "Has enviado solicitud de verificación", "You sent a verification request": "Has enviado solicitud de verificación",
"Show all": "Ver todo",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> reaccionó con %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> reaccionó con %(shortName)s</reactedWith>",
"Message deleted": "Mensaje eliminado", "Message deleted": "Mensaje eliminado",
"Message deleted by %(name)s": "Mensaje eliminado por %(name)s", "Message deleted by %(name)s": "Mensaje eliminado por %(name)s",
@ -1353,7 +1334,6 @@
"Explore rooms": "Explorar salas", "Explore rooms": "Explorar salas",
"Jump to first invite.": "Salte a la primera invitación.", "Jump to first invite.": "Salte a la primera invitación.",
"Add room": "Añadir una sala", "Add room": "Añadir una sala",
"Guest": "Invitado",
"Could not load user profile": "No se pudo cargar el perfil de usuario", "Could not load user profile": "No se pudo cargar el perfil de usuario",
"Your password has been reset.": "Su contraseña ha sido restablecida.", "Your password has been reset.": "Su contraseña ha sido restablecida.",
"Invalid homeserver discovery response": "Respuesta inválida de descubrimiento de servidor base", "Invalid homeserver discovery response": "Respuesta inválida de descubrimiento de servidor base",
@ -1427,7 +1407,6 @@
"not ready": "no está 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", "Room ID or address of ban list": "ID de sala o dirección de la lista de prohibición",
"Secure Backup": "Copia de seguridad segura", "Secure Backup": "Copia de seguridad segura",
"Privacy": "Privacidad",
"Show rooms with unread messages first": "Colocar al principio las salas con mensajes sin leer", "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", "Show previews of messages": "Incluir una vista previa del último mensaje",
"Sort by": "Ordenar por", "Sort by": "Ordenar por",
@ -1524,7 +1503,6 @@
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Usa una frase secreta que solo tú conozcas y, opcionalmente, guarda una clave de seguridad para usarla como respaldo.", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Usa una frase secreta que solo tú conozcas y, opcionalmente, guarda una clave de seguridad para usarla como respaldo.",
"Enter your account password to confirm the upgrade:": "Ingrese la contraseña de su cuenta para confirmar la actualización:", "Enter your account password to confirm the upgrade:": "Ingrese la contraseña de su cuenta para confirmar la actualización:",
"Restore your key backup to upgrade your encryption": "Restaure la copia de seguridad de su clave para actualizar su cifrado", "Restore your key backup to upgrade your encryption": "Restaure la copia de seguridad de su clave para actualizar su cifrado",
"Restore": "Restaurar",
"You'll need to authenticate with the server to confirm the upgrade.": "Deberá autenticarse con el servidor para confirmar la actualización.", "You'll need to authenticate with the server to confirm the upgrade.": "Deberá autenticarse con el servidor para confirmar la actualización.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Actualice esta sesión para permitirle verificar otras sesiones, otorgándoles acceso a mensajes cifrados y marcándolos como confiables para otros usuarios.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Actualice esta sesión para permitirle verificar otras sesiones, otorgándoles acceso a mensajes cifrados y marcándolos como confiables para otros usuarios.",
"That matches!": "¡Eso combina!", "That matches!": "¡Eso combina!",
@ -1582,7 +1560,6 @@
"Activate selected button": "Activar botón seleccionado", "Activate selected button": "Activar botón seleccionado",
"Toggle right panel": "Alternar panel derecho", "Toggle right panel": "Alternar panel derecho",
"Cancel autocomplete": "Cancelar autocompletar", "Cancel autocomplete": "Cancelar autocompletar",
"Space": "Espacio",
"Your server requires encryption to be enabled in private rooms.": "Tu servidor obliga a usar cifrado en las salas privadas.", "Your server requires encryption to be enabled in private rooms.": "Tu servidor obliga a usar cifrado en las salas privadas.",
"This version of %(brand)s does not support searching encrypted messages": "Esta versión de %(brand)s no puede buscar mensajes cifrados", "This version of %(brand)s does not support searching encrypted messages": "Esta versión de %(brand)s no puede buscar mensajes cifrados",
"Video conference ended by %(senderName)s": "Videoconferencia terminada por %(senderName)s", "Video conference ended by %(senderName)s": "Videoconferencia terminada por %(senderName)s",
@ -1833,7 +1810,6 @@
"The widget will verify your user ID, but won't be able to perform actions for you:": "Este accesorio verificará tu ID de usuario, pero no podrá actuar en tu nombre:", "The widget will verify your user ID, but won't be able to perform actions for you:": "Este accesorio verificará tu ID de usuario, pero no podrá actuar en tu nombre:",
"Allow this widget to verify your identity": "Permitir a este accesorio verificar tu identidad", "Allow this widget to verify your identity": "Permitir a este accesorio verificar tu identidad",
"Decline All": "Rechazar todo", "Decline All": "Rechazar todo",
"Approve": "Aprobar",
"This widget would like to:": "A este accesorios le gustaría:", "This widget would like to:": "A este accesorios le gustaría:",
"Approve widget permissions": "Aprobar permisos de widget", "Approve widget permissions": "Aprobar permisos de widget",
"About homeservers": "Sobre los servidores base", "About homeservers": "Sobre los servidores base",
@ -2100,8 +2076,6 @@
"Who are you working with?": "¿Con quién estás trabajando?", "Who are you working with?": "¿Con quién estás trabajando?",
"Skip for now": "Omitir por ahora", "Skip for now": "Omitir por ahora",
"Failed to create initial space rooms": "No se han podido crear las salas iniciales del espacio", "Failed to create initial space rooms": "No se han podido crear las salas iniciales del espacio",
"Support": "Ayuda",
"Random": "Al azar",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s miembro", "one": "%(count)s miembro",
"other": "%(count)s miembros" "other": "%(count)s miembros"
@ -2220,8 +2194,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Elige salas o conversaciones para añadirlas. Este espacio es solo para ti, no informaremos a nadie. Puedes añadir más más tarde.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Elige salas o conversaciones para añadirlas. Este espacio es solo para ti, no informaremos a nadie. Puedes añadir más más tarde.",
"What do you want to organise?": "¿Qué quieres organizar?", "What do you want to organise?": "¿Qué quieres organizar?",
"You have no ignored users.": "No has ignorado a nadie.", "You have no ignored users.": "No has ignorado a nadie.",
"Pause": "Pausar",
"Play": "Reproducir",
"Select a room below first": "Selecciona una sala de abajo primero", "Select a room below first": "Selecciona una sala de abajo primero",
"Join the beta": "Unirme a la beta", "Join the beta": "Unirme a la beta",
"Leave the beta": "Salir de la beta", "Leave the beta": "Salir de la beta",
@ -2238,7 +2210,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "No hemos podido acceder a tu micrófono. Por favor, comprueba los ajustes de tu navegador e inténtalo de nuevo.", "We were unable to access your microphone. Please check your browser settings and try again.": "No hemos podido acceder a tu micrófono. Por favor, comprueba los ajustes de tu navegador e inténtalo de nuevo.",
"Unable to access your microphone": "No se ha podido acceder a tu micrófono", "Unable to access your microphone": "No se ha podido acceder a tu micrófono",
"Your access token gives full access to your account. Do not share it with anyone.": "Tu token de acceso da acceso completo a tu cuenta. No lo compartas con nadie.", "Your access token gives full access to your account. Do not share it with anyone.": "Tu token de acceso da acceso completo a tu cuenta. No lo compartas con nadie.",
"Access Token": "Token de acceso",
"Please enter a name for the space": "Por favor, elige un nombre para el espacio", "Please enter a name for the space": "Por favor, elige un nombre para el espacio",
"Connecting": "Conectando", "Connecting": "Conectando",
"Message search initialisation failed": "Ha fallado la inicialización de la búsqueda de mensajes", "Message search initialisation failed": "Ha fallado la inicialización de la búsqueda de mensajes",
@ -2596,7 +2567,6 @@
"Yours, or the other users' session": "Tu sesión o la de la otra persona", "Yours, or the other users' session": "Tu sesión o la de la otra persona",
"Yours, or the other users' internet connection": "Tu conexión a internet o la de la otra persona", "Yours, or the other users' internet connection": "Tu conexión a internet o la de la otra persona",
"The homeserver the user you're verifying is connected to": "El servidor base del usuario al que estás invitando", "The homeserver the user you're verifying is connected to": "El servidor base del usuario al que estás invitando",
"Rename": "Cambiar nombre",
"Select all": "Seleccionar todo", "Select all": "Seleccionar todo",
"Deselect all": "Deseleccionar todo", "Deselect all": "Deseleccionar todo",
"Sign out devices": { "Sign out devices": {
@ -3238,7 +3208,6 @@
"Verified session": "Sesión verificada", "Verified session": "Sesión verificada",
"Your server doesn't support disabling sending read receipts.": "Tu servidor no permite desactivar los acuses de recibo.", "Your server doesn't support disabling sending read receipts.": "Tu servidor no permite desactivar los acuses de recibo.",
"Share your activity and status with others.": "Comparte tu actividad y estado con los demás.", "Share your activity and status with others.": "Comparte tu actividad y estado con los demás.",
"Presence": "Presencia",
"Spell check": "Corrector ortográfico", "Spell check": "Corrector ortográfico",
"Complete these to get the most out of %(brand)s": "Complétalos para sacar el máximo partido a %(brand)s", "Complete these to get the most out of %(brand)s": "Complétalos para sacar el máximo partido a %(brand)s",
"You did it!": "¡Ya está!", "You did it!": "¡Ya está!",
@ -3259,7 +3228,6 @@
"Send read receipts": "Enviar acuses de recibo", "Send read receipts": "Enviar acuses de recibo",
"Interactively verify by emoji": "Verificar interactivamente usando emojis", "Interactively verify by emoji": "Verificar interactivamente usando emojis",
"Manually verify by text": "Verificar manualmente usando un texto", "Manually verify by text": "Verificar manualmente usando un texto",
"View all": "Ver todas",
"Security recommendations": "Consejos de seguridad", "Security recommendations": "Consejos de seguridad",
"Filter devices": "Filtrar dispositivos", "Filter devices": "Filtrar dispositivos",
"Inactive for %(inactiveAgeDays)s days or longer": "Inactiva durante %(inactiveAgeDays)s días o más", "Inactive for %(inactiveAgeDays)s days or longer": "Inactiva durante %(inactiveAgeDays)s días o más",
@ -3299,7 +3267,6 @@
}, },
"Inviting %(user1)s and %(user2)s": "Invitando a %(user1)s y %(user2)s", "Inviting %(user1)s and %(user2)s": "Invitando a %(user1)s y %(user2)s",
"We're creating a room with %(names)s": "Estamos creando una sala con %(names)s", "We're creating a room with %(names)s": "Estamos creando una sala con %(names)s",
"Show": "Mostrar",
"<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>No está recomendado activar el cifrado en salas públicas.</b> Cualquiera puede encontrarlas y unirse a ellas, así que cualquiera puede leer los mensajes en ellas. No disfrutarás de ninguno de los beneficios del cifrado, y no podrás desactivarlo en el futuro. Cifrar los mensajes en una sala pública ralentizará el envío y la recepción de mensajes.", "<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>No está recomendado activar el cifrado en salas públicas.</b> Cualquiera puede encontrarlas y unirse a ellas, así que cualquiera puede leer los mensajes en ellas. No disfrutarás de ninguno de los beneficios del cifrado, y no podrás desactivarlo en el futuro. Cifrar los mensajes en una sala pública ralentizará el envío y la recepción de mensajes.",
"Dont miss a thing by taking %(brand)s with you": "No te pierdas nada llevándote %(brand)s contigo", "Dont miss a thing by taking %(brand)s with you": "No te pierdas nada llevándote %(brand)s contigo",
"Its what youre here for, so lets get to it": "Es para lo que estás aquí, así que vamos a ello", "Its what youre here for, so lets get to it": "Es para lo que estás aquí, así que vamos a ello",
@ -3629,7 +3596,22 @@
"dark": "Oscuro", "dark": "Oscuro",
"beta": "Beta", "beta": "Beta",
"attachment": "Adjunto", "attachment": "Adjunto",
"appearance": "Apariencia" "appearance": "Apariencia",
"guest": "Invitado",
"legal": "Legal",
"credits": "Créditos",
"faq": "Preguntas frecuentes",
"access_token": "Token de acceso",
"preferences": "Opciones",
"presence": "Presencia",
"timeline": "Línea de tiempo",
"privacy": "Privacidad",
"camera": "Cámara",
"microphone": "Micrófono",
"emoji": "Emoji",
"random": "Al azar",
"support": "Ayuda",
"space": "Espacio"
}, },
"action": { "action": {
"continue": "Continuar", "continue": "Continuar",
@ -3701,7 +3683,23 @@
"back": "Volver", "back": "Volver",
"apply": "Aplicar", "apply": "Aplicar",
"add": "Añadir", "add": "Añadir",
"accept": "Aceptar" "accept": "Aceptar",
"disconnect": "Desconectarse",
"change": "Cambiar",
"subscribe": "Suscribir",
"unsubscribe": "Desuscribirse",
"approve": "Aprobar",
"complete": "Completar",
"revoke": "Revocar",
"rename": "Cambiar nombre",
"view_all": "Ver todas",
"show_all": "Ver todo",
"show": "Mostrar",
"review": "Revisar",
"restore": "Restaurar",
"play": "Reproducir",
"pause": "Pausar",
"register": "Crear cuenta"
}, },
"a11y": { "a11y": {
"user_menu": "Menú del Usuario" "user_menu": "Menú del Usuario"
@ -3780,7 +3778,9 @@
"default": "Por defecto", "default": "Por defecto",
"restricted": "Restringido", "restricted": "Restringido",
"moderator": "Moderador", "moderator": "Moderador",
"admin": "Admin" "admin": "Admin",
"custom": "Personalizado (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Si ya has informado de un fallo a través de GitHub, los registros de depuración nos pueden ayudar a investigar mejor el problema. ", "introduction": "Si ya has informado de un fallo a través de GitHub, los registros de depuración nos pueden ayudar a investigar mejor el problema. ",

View file

@ -188,7 +188,6 @@
"%(name)s wants to verify": "%(name)s soovib verifitseerida", "%(name)s wants to verify": "%(name)s soovib verifitseerida",
"You sent a verification request": "Sa saatsid verifitseerimispalve", "You sent a verification request": "Sa saatsid verifitseerimispalve",
"Error decrypting video": "Viga videovoo dekrüptimisel", "Error decrypting video": "Viga videovoo dekrüptimisel",
"Show all": "Näita kõiki",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reageeris(id) %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reageeris(id) %(shortName)s</reactedWith>",
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s muutis %(roomName)s jututoa avatari", "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s muutis %(roomName)s jututoa avatari",
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s eemaldas jututoa avatari.", "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s eemaldas jututoa avatari.",
@ -354,7 +353,6 @@
"Indexed messages:": "Indekseeritud sõnumid:", "Indexed messages:": "Indekseeritud sõnumid:",
"Failed to add tag %(tagName)s to room": "Sildi %(tagName)s lisamine jututoale ebaõnnestus", "Failed to add tag %(tagName)s to room": "Sildi %(tagName)s lisamine jututoale ebaõnnestus",
"Close dialog or context menu": "Sulge dialoogiaken või kontekstimenüü", "Close dialog or context menu": "Sulge dialoogiaken või kontekstimenüü",
"Space": "Tühikuklahv",
"Unable to add email address": "E-posti aadressi lisamine ebaõnnestus", "Unable to add email address": "E-posti aadressi lisamine ebaõnnestus",
"We've sent you an email to verify your address. Please follow the instructions there and then click the button below.": "Sinu aadressi kontrollimiseks saatsime sulle e-kirja. Palun järgi kirjas näidatud juhendit ja siis klõpsi alljärgnevat nuppu.", "We've sent you an email to verify your address. Please follow the instructions there and then click the button below.": "Sinu aadressi kontrollimiseks saatsime sulle e-kirja. Palun järgi kirjas näidatud juhendit ja siis klõpsi alljärgnevat nuppu.",
"Email Address": "E-posti aadress", "Email Address": "E-posti aadress",
@ -374,8 +372,6 @@
"No Webcams detected": "Ei leidnud ühtegi veebikaamerat", "No Webcams detected": "Ei leidnud ühtegi veebikaamerat",
"Default Device": "Vaikimisi seade", "Default Device": "Vaikimisi seade",
"Audio Output": "Heliväljund", "Audio Output": "Heliväljund",
"Microphone": "Mikrofon",
"Camera": "Kaamera",
"Voice & Video": "Heli ja video", "Voice & Video": "Heli ja video",
"This room is not accessible by remote Matrix servers": "See jututuba ei ole leitav teiste Matrix'i serverite jaoks", "This room is not accessible by remote Matrix servers": "See jututuba ei ole leitav teiste Matrix'i serverite jaoks",
"Upgrade this room to the recommended room version": "Uuenda see jututoa versioon soovitatud versioonini", "Upgrade this room to the recommended room version": "Uuenda see jututoa versioon soovitatud versioonini",
@ -562,7 +558,6 @@
"Headphones": "Kõrvaklapid", "Headphones": "Kõrvaklapid",
"Folder": "Kaust", "Folder": "Kaust",
"Later": "Hiljem", "Later": "Hiljem",
"Review": "Vaata üle",
"Other users may not trust it": "Teised kasutajad ei pruugi seda usaldada", "Other users may not trust it": "Teised kasutajad ei pruugi seda usaldada",
"Set up": "Võta kasutusele", "Set up": "Võta kasutusele",
"Accept <policyLink /> to continue:": "Jätkamiseks nõustu <policyLink />'ga:", "Accept <policyLink /> to continue:": "Jätkamiseks nõustu <policyLink />'ga:",
@ -588,7 +583,6 @@
"Failed to reject invite": "Kutse tagasilükkamine ei õnnestunud", "Failed to reject invite": "Kutse tagasilükkamine ei õnnestunud",
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid sul ei ole õigusi selle sõnumi nägemiseks.", "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid sul ei ole õigusi selle sõnumi nägemiseks.",
"Failed to load timeline position": "Asukoha laadimine ajajoonel ei õnnestunud", "Failed to load timeline position": "Asukoha laadimine ajajoonel ei õnnestunud",
"Guest": "Külaline",
"Uploading %(filename)s and %(count)s others": { "Uploading %(filename)s and %(count)s others": {
"other": "Laadin üles %(filename)s ning %(count)s muud faili", "other": "Laadin üles %(filename)s ning %(count)s muud faili",
"one": "Laadin üles %(filename)s ning veel %(count)s faili" "one": "Laadin üles %(filename)s ning veel %(count)s faili"
@ -616,7 +610,6 @@
"You're signed out": "Sa oled loginud välja", "You're signed out": "Sa oled loginud välja",
"Clear personal data": "Kustuta privaatsed andmed", "Clear personal data": "Kustuta privaatsed andmed",
"Commands": "Käsud", "Commands": "Käsud",
"Emoji": "Emoji",
"Notify the whole room": "Teavita kogu jututuba", "Notify the whole room": "Teavita kogu jututuba",
"Users": "Kasutajad", "Users": "Kasutajad",
"Terms and Conditions": "Kasutustingimused", "Terms and Conditions": "Kasutustingimused",
@ -695,8 +688,6 @@
"Click the link in the email you received to verify and then click continue again.": "Klõpsi saabunud e-kirjas olevat verifitseerimisviidet ning seejärel klõpsi siin uuesti nuppu „Jätka“.", "Click the link in the email you received to verify and then click continue again.": "Klõpsi saabunud e-kirjas olevat verifitseerimisviidet ning seejärel klõpsi siin uuesti nuppu „Jätka“.",
"Unable to verify email address.": "E-posti aadressi verifitseerimine ei õnnestunud.", "Unable to verify email address.": "E-posti aadressi verifitseerimine ei õnnestunud.",
"Verify the link in your inbox": "Verifitseeri klõpsides viidet saabunud e-kirjas", "Verify the link in your inbox": "Verifitseeri klõpsides viidet saabunud e-kirjas",
"Complete": "Valmis",
"Revoke": "Tühista",
"Session already verified!": "Sessioon on juba verifitseeritud!", "Session already verified!": "Sessioon on juba verifitseeritud!",
"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!": "HOIATUS: VÕTMETE VERIFITSEERIMINE EI ÕNNESTUNUD! Kasutaja %(userId)s ja sessiooni %(deviceId)s allkirjastamise võti on „%(fprint)s“, aga see ei vasta antud sõrmejäljele „%(fingerprint)s“. See võib tähendada, et sinu kasutatavad ühendused võivad olla kolmanda osapoole poolt vahelt lõigatud!", "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!": "HOIATUS: VÕTMETE VERIFITSEERIMINE EI ÕNNESTUNUD! Kasutaja %(userId)s ja sessiooni %(deviceId)s allkirjastamise võti on „%(fprint)s“, aga see ei vasta antud sõrmejäljele „%(fingerprint)s“. See võib tähendada, et sinu kasutatavad ühendused võivad olla kolmanda osapoole poolt vahelt lõigatud!",
"Verified key": "Verifitseeritud võti", "Verified key": "Verifitseeritud võti",
@ -776,12 +767,9 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Hoiatus</b>: sa peaksid võtmete varunduse seadistama vaid usaldusväärsest arvutist.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Hoiatus</b>: sa peaksid võtmete varunduse seadistama vaid usaldusväärsest arvutist.",
"eg: @bot:* or example.org": "näiteks: @bot:* või example.org", "eg: @bot:* or example.org": "näiteks: @bot:* või example.org",
"Subscribed lists": "Tellitud loendid", "Subscribed lists": "Tellitud loendid",
"Subscribe": "Telli",
"Start automatically after system login": "Käivita Element automaatselt peale arvutisse sisselogimist", "Start automatically after system login": "Käivita Element automaatselt peale arvutisse sisselogimist",
"Always show the window menu bar": "Näita aknas alati menüüriba", "Always show the window menu bar": "Näita aknas alati menüüriba",
"Preferences": "Eelistused",
"Room list": "Jututubade loend", "Room list": "Jututubade loend",
"Timeline": "Ajajoon",
"Autocomplete delay (ms)": "Viivitus automaatsel sõnalõpetusel (ms)", "Autocomplete delay (ms)": "Viivitus automaatsel sõnalõpetusel (ms)",
"Enter password": "Sisesta salasõna", "Enter password": "Sisesta salasõna",
"Nice, strong password!": "Vahva, see on korralik salasõna!", "Nice, strong password!": "Vahva, see on korralik salasõna!",
@ -798,7 +786,6 @@
"Enter username": "Sisesta kasutajanimi", "Enter username": "Sisesta kasutajanimi",
"Email (optional)": "E-posti aadress (kui soovid)", "Email (optional)": "E-posti aadress (kui soovid)",
"Phone (optional)": "Telefoninumber (kui soovid)", "Phone (optional)": "Telefoninumber (kui soovid)",
"Register": "Registreeru",
"Join millions for free on the largest public server": "Liitu tasuta nende miljonitega, kas kasutavad suurimat avalikku Matrix'i serverit", "Join millions for free on the largest public server": "Liitu tasuta nende miljonitega, kas kasutavad suurimat avalikku Matrix'i serverit",
"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.": "Sinu sõnumit ei saadetud, kuna see koduserver on ületanud on ületanud ressursipiirangu. Teenuse kasutamiseks palun <a>võta ühendust serveri haldajaga</a>.", "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.": "Sinu sõnumit ei saadetud, kuna see koduserver on ületanud on ületanud ressursipiirangu. Teenuse kasutamiseks palun <a>võta ühendust serveri haldajaga</a>.",
"Connectivity to the server has been lost.": "Ühendus sinu serveriga on katkenud.", "Connectivity to the server has been lost.": "Ühendus sinu serveriga on katkenud.",
@ -940,7 +927,6 @@
"The identity server you have chosen does not have any terms of service.": "Sinu valitud isikutuvastusserveril pole kasutustingimusi.", "The identity server you have chosen does not have any terms of service.": "Sinu valitud isikutuvastusserveril pole kasutustingimusi.",
"Disconnect identity server": "Katkesta ühendus isikutuvastusserveriga", "Disconnect identity server": "Katkesta ühendus isikutuvastusserveriga",
"Disconnect from the identity server <idserver />?": "Kas katkestame ühenduse isikutuvastusserveriga <idserver />?", "Disconnect from the identity server <idserver />?": "Kas katkestame ühenduse isikutuvastusserveriga <idserver />?",
"Disconnect": "Katkesta ühendus",
"You should:": "Sa peaksid:", "You should:": "Sa peaksid:",
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "kontrollima kas mõni brauseriplugin takistab ühendust isikutuvastusserveriga (nagu näiteks Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "kontrollima kas mõni brauseriplugin takistab ühendust isikutuvastusserveriga (nagu näiteks Privacy Badger)",
"contact the administrators of identity server <idserver />": "võtma ühendust isikutuvastusserveri <idserver /> haldajaga", "contact the administrators of identity server <idserver />": "võtma ühendust isikutuvastusserveri <idserver /> haldajaga",
@ -1042,7 +1028,6 @@
"Restricted": "Piiratud õigustega kasutaja", "Restricted": "Piiratud õigustega kasutaja",
"Moderator": "Moderaator", "Moderator": "Moderaator",
"Admin": "Peakasutaja", "Admin": "Peakasutaja",
"Custom (%(level)s)": "Kohandatud õigused (%(level)s)",
"Failed to invite": "Kutse saatmine ei õnnestunud", "Failed to invite": "Kutse saatmine ei õnnestunud",
"Operation failed": "Toiming ei õnnestunud", "Operation failed": "Toiming ei õnnestunud",
"You need to be logged in.": "Sa peaksid olema sisse loginud.", "You need to be logged in.": "Sa peaksid olema sisse loginud.",
@ -1188,10 +1173,7 @@
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Vali sinu seadmes leiduv fondi nimi ning %(brand)s proovib seda kasutada.", "Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Vali sinu seadmes leiduv fondi nimi ning %(brand)s proovib seda kasutada.",
"Customise your appearance": "Kohenda välimust", "Customise your appearance": "Kohenda välimust",
"Appearance Settings only affect this %(brand)s session.": "Välimuse kohendused kehtivad vaid selles %(brand)s'i sessioonis.", "Appearance Settings only affect this %(brand)s session.": "Välimuse kohendused kehtivad vaid selles %(brand)s'i sessioonis.",
"Legal": "Juriidiline teave",
"Credits": "Tänuavaldused",
"Clear cache and reload": "Tühjenda puhver ja laadi uuesti", "Clear cache and reload": "Tühjenda puhver ja laadi uuesti",
"FAQ": "Korduma kippuvad küsimused",
"Versions": "Versioonid", "Versions": "Versioonid",
"%(brand)s version:": "%(brand)s'i versioon:", "%(brand)s version:": "%(brand)s'i versioon:",
"Ignored/Blocked": "Eiratud või ligipääs blokeeritud", "Ignored/Blocked": "Eiratud või ligipääs blokeeritud",
@ -1209,7 +1191,6 @@
"You have not ignored anyone.": "Sa ei ole veel kedagi eiranud.", "You have not ignored anyone.": "Sa ei ole veel kedagi eiranud.",
"You are currently ignoring:": "Hetkel eiratavate kasutajate loend:", "You are currently ignoring:": "Hetkel eiratavate kasutajate loend:",
"You are not subscribed to any lists": "Sa ei ole liitunud ühegi loendiga", "You are not subscribed to any lists": "Sa ei ole liitunud ühegi loendiga",
"Unsubscribe": "Lõpeta liitumine",
"View rules": "Näita reegleid", "View rules": "Näita reegleid",
"You are currently subscribed to:": "Sa oled hetkel liitunud:", "You are currently subscribed to:": "Sa oled hetkel liitunud:",
"Ignored users": "Eiratud kasutajad", "Ignored users": "Eiratud kasutajad",
@ -1229,7 +1210,6 @@
"To link to this room, please add an address.": "Sellele jututoale viitamiseks palun lisa talle aadress.", "To link to this room, please add an address.": "Sellele jututoale viitamiseks palun lisa talle aadress.",
"Discovery options will appear once you have added an email above.": "Otsinguvõimaluste loend kuvatakse, kui oled ülale sisestanud e-posti aadressi.", "Discovery options will appear once you have added an email above.": "Otsinguvõimaluste loend kuvatakse, kui oled ülale sisestanud e-posti aadressi.",
"Discovery options will appear once you have added a phone number above.": "Otsinguvõimaluste loend kuvatakse, kui oled ülale sisestanud telefoninumbri.", "Discovery options will appear once you have added a phone number above.": "Otsinguvõimaluste loend kuvatakse, kui oled ülale sisestanud telefoninumbri.",
"Mod": "Moderaator",
"The authenticity of this encrypted message can't be guaranteed on this device.": "Selle krüptitud sõnumi autentsus pole selles seadmes tagatud.", "The authenticity of this encrypted message can't be guaranteed on this device.": "Selle krüptitud sõnumi autentsus pole selles seadmes tagatud.",
"and %(count)s others...": { "and %(count)s others...": {
"other": "ja %(count)s muud...", "other": "ja %(count)s muud...",
@ -1390,7 +1370,6 @@
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Sisesta turvafraas, mida vaid sina tead ning lisaks võid salvestada varunduse turvavõtme.", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Sisesta turvafraas, mida vaid sina tead ning lisaks võid salvestada varunduse turvavõtme.",
"Enter your account password to confirm the upgrade:": "Kinnitamaks seda muudatust, sisesta oma konto salasõna:", "Enter your account password to confirm the upgrade:": "Kinnitamaks seda muudatust, sisesta oma konto salasõna:",
"Restore your key backup to upgrade your encryption": "Krüptimine uuendamiseks taasta oma varundatud võtmed", "Restore your key backup to upgrade your encryption": "Krüptimine uuendamiseks taasta oma varundatud võtmed",
"Restore": "Taasta",
"You'll need to authenticate with the server to confirm the upgrade.": "Uuenduse kinnitamiseks pead end autentima serveris.", "You'll need to authenticate with the server to confirm the upgrade.": "Uuenduse kinnitamiseks pead end autentima serveris.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Teiste sessioonide verifitseerimiseks pead uuendama seda sessiooni. Muud verifitseeritud sessioonid saavad sellega ligipääsu krüptitud sõnumitele ning nad märgitakse usaldusväärseteks ka teiste kasutajate jaoks.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Teiste sessioonide verifitseerimiseks pead uuendama seda sessiooni. Muud verifitseeritud sessioonid saavad sellega ligipääsu krüptitud sõnumitele ning nad märgitakse usaldusväärseteks ka teiste kasutajate jaoks.",
"That matches!": "Klapib!", "That matches!": "Klapib!",
@ -1486,7 +1465,6 @@
"If you don't want to use <server /> to discover and be discoverable by existing contacts you know, enter another identity server below.": "Kui sa ei soovi kasutada <server /> serverit, et olla leitav ja ise leida sinule teadaolevaid inimesi, siis sisesta alljärgnevalt mõni teine isikutuvastusserver.", "If you don't want to use <server /> to discover and be discoverable by existing contacts you know, enter another identity server below.": "Kui sa ei soovi kasutada <server /> serverit, et olla leitav ja ise leida sinule teadaolevaid inimesi, siis sisesta alljärgnevalt mõni teine isikutuvastusserver.",
"Do not use an identity server": "Ära kasuta isikutuvastusserverit", "Do not use an identity server": "Ära kasuta isikutuvastusserverit",
"Enter a new identity server": "Sisesta uue isikutuvastusserveri nimi", "Enter a new identity server": "Sisesta uue isikutuvastusserveri nimi",
"Change": "Muuda",
"Manage integrations": "Halda lõiminguid", "Manage integrations": "Halda lõiminguid",
"Define the power level of a user": "Määra kasutaja õigused", "Define the power level of a user": "Määra kasutaja õigused",
"Opens the Developer Tools dialog": "Avab arendusvahendite akna", "Opens the Developer Tools dialog": "Avab arendusvahendite akna",
@ -1569,7 +1547,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.": "Sa võid sellise võimaluse kasutusele võtta, kui seda jututuba kasutatakse vaid organisatsioonisiseste tiimide ühistööks oma koduserveri piires. Seda ei saa hiljem muuta.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Sa võid sellise võimaluse kasutusele võtta, kui seda jututuba kasutatakse vaid organisatsioonisiseste tiimide ühistööks oma koduserveri piires. Seda ei saa hiljem muuta.",
"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.": "Sa võid sellise võimaluse jätta kasutusele võtmata, kui seda jututuba kasutatakse erinevate väliste tiimide ühistööks kasutades erinevaid koduservereid. Seda ei saa hiljem muuta.", "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.": "Sa võid sellise võimaluse jätta kasutusele võtmata, kui seda jututuba kasutatakse erinevate väliste tiimide ühistööks kasutades erinevaid koduservereid. Seda ei saa hiljem muuta.",
"Block anyone not part of %(serverName)s from ever joining this room.": "Keela kõikide niisuguste kasutajate liitumine selle jututoaga, kelle kasutajakonto ei asu %(serverName)s koduserveris.", "Block anyone not part of %(serverName)s from ever joining this room.": "Keela kõikide niisuguste kasutajate liitumine selle jututoaga, kelle kasutajakonto ei asu %(serverName)s koduserveris.",
"Privacy": "Privaatsus",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Lisa ( ͡° ͜ʖ ͡°) smaili vormindamata sõnumi algusesse", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Lisa ( ͡° ͜ʖ ͡°) smaili vormindamata sõnumi algusesse",
"Unknown App": "Tundmatu rakendus", "Unknown App": "Tundmatu rakendus",
"Not encrypted": "Krüptimata", "Not encrypted": "Krüptimata",
@ -1911,7 +1888,6 @@
"Approve widget permissions": "Anna vidinale õigused", "Approve widget permissions": "Anna vidinale õigused",
"Use Ctrl + Enter to send a message": "Sõnumi saatmiseks vajuta Ctrl + Enter", "Use Ctrl + Enter to send a message": "Sõnumi saatmiseks vajuta Ctrl + Enter",
"Decline All": "Keeldu kõigist", "Decline All": "Keeldu kõigist",
"Approve": "Nõustu",
"Remain on your screen when viewing another room, when running": "Kui vaatad mõnda teist jututuba, siis jää oma ekraanivaate juurde", "Remain on your screen when viewing another room, when running": "Kui vaatad mõnda teist jututuba, siis jää oma ekraanivaate juurde",
"Remain on your screen while running": "Jää oma ekraanivaate juurde", "Remain on your screen while running": "Jää oma ekraanivaate juurde",
"Send <b>%(eventType)s</b> events as you in this room": "Saada enda nimel <b>%(eventType)s</b> sündmusi siia jututuppa", "Send <b>%(eventType)s</b> events as you in this room": "Saada enda nimel <b>%(eventType)s</b> sündmusi siia jututuppa",
@ -2147,8 +2123,6 @@
"Suggested": "Soovitatud", "Suggested": "Soovitatud",
"Your server does not support showing space hierarchies.": "Sinu koduserver ei võimalda kuvada kogukonnakeskuste hierarhiat.", "Your server does not support showing space hierarchies.": "Sinu koduserver ei võimalda kuvada kogukonnakeskuste hierarhiat.",
"Welcome to <name/>": "Tete tulemast <name/> liikmeks", "Welcome to <name/>": "Tete tulemast <name/> liikmeks",
"Random": "Juhuslik",
"Support": "Toeta",
"Failed to create initial space rooms": "Algsete jututubade loomine ei õnnestunud", "Failed to create initial space rooms": "Algsete jututubade loomine ei õnnestunud",
"Skip for now": "Hetkel jäta vahele", "Skip for now": "Hetkel jäta vahele",
"Who are you working with?": "Kellega sa koos töötad?", "Who are you working with?": "Kellega sa koos töötad?",
@ -2222,8 +2196,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Lisamiseks vali vestlusi ja jututubasid. Hetkel on see kogukonnakeskus vaid sinu jaoks ja esialgu keegi ei saa sellest teada. Teisi saad liituma kutsuda hiljem.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Lisamiseks vali vestlusi ja jututubasid. Hetkel on see kogukonnakeskus vaid sinu jaoks ja esialgu keegi ei saa sellest teada. Teisi saad liituma kutsuda hiljem.",
"What do you want to organise?": "Mida sa soovid ette võtta?", "What do you want to organise?": "Mida sa soovid ette võtta?",
"You have no ignored users.": "Sa ei ole veel kedagi eiranud.", "You have no ignored users.": "Sa ei ole veel kedagi eiranud.",
"Play": "Esita",
"Pause": "Peata",
"Select a room below first": "Esmalt vali alljärgnevast üks jututuba", "Select a room below first": "Esmalt vali alljärgnevast üks jututuba",
"Join the beta": "Hakka kasutama beetaversiooni", "Join the beta": "Hakka kasutama beetaversiooni",
"Leave the beta": "Lõpeta beetaversiooni kasutamine", "Leave the beta": "Lõpeta beetaversiooni kasutamine",
@ -2240,7 +2212,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Meil puudub ligipääs sinu mikrofonile. Palun kontrolli oma veebibrauseri seadistusi ja proovi uuesti.", "We were unable to access your microphone. Please check your browser settings and try again.": "Meil puudub ligipääs sinu mikrofonile. Palun kontrolli oma veebibrauseri seadistusi ja proovi uuesti.",
"Unable to access your microphone": "Puudub ligipääs mikrofonile", "Unable to access your microphone": "Puudub ligipääs mikrofonile",
"Your access token gives full access to your account. Do not share it with anyone.": "Sinu pääsuluba annab täismahulise ligipääsu sinu kasutajakontole. Palun ära jaga seda teistega.", "Your access token gives full access to your account. Do not share it with anyone.": "Sinu pääsuluba annab täismahulise ligipääsu sinu kasutajakontole. Palun ära jaga seda teistega.",
"Access Token": "Pääsuluba",
"Please enter a name for the space": "Palun sisesta kogukonnakeskuse nimi", "Please enter a name for the space": "Palun sisesta kogukonnakeskuse nimi",
"Connecting": "Kõne on ühendamisel", "Connecting": "Kõne on ühendamisel",
"Search names and descriptions": "Otsi nimede ja kirjelduste seast", "Search names and descriptions": "Otsi nimede ja kirjelduste seast",
@ -2610,7 +2581,6 @@
"Yours, or the other users' internet connection": "Sinu või teise kasutaja internetiühendus", "Yours, or the other users' internet connection": "Sinu või teise kasutaja internetiühendus",
"The homeserver the user you're verifying is connected to": "Sinu poolt verifitseeritava kasutaja koduserver", "The homeserver the user you're verifying is connected to": "Sinu poolt verifitseeritava kasutaja koduserver",
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "See jututuba ei kasuta sõnumisildasid liidestamiseks muude süsteemidega. <a>Lisateave.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "See jututuba ei kasuta sõnumisildasid liidestamiseks muude süsteemidega. <a>Lisateave.</a>",
"Rename": "Muuda nime",
"Select all": "Vali kõik", "Select all": "Vali kõik",
"Deselect all": "Eemalda kõik valikud", "Deselect all": "Eemalda kõik valikud",
"Sign out devices": { "Sign out devices": {
@ -3253,7 +3223,6 @@
"Download %(brand)s": "Laadi alla %(brand)s", "Download %(brand)s": "Laadi alla %(brand)s",
"Your server doesn't support disabling sending read receipts.": "Sinu koduserver ei võimalda lugemisteatiste keelamist.", "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.", "Share your activity and status with others.": "Jaga teistega oma olekut ja tegevusi.",
"Presence": "Olek võrgus",
"Send read receipts": "Saada lugemisteatiseid", "Send read receipts": "Saada lugemisteatiseid",
"Last activity": "Viimati kasutusel", "Last activity": "Viimati kasutusel",
"Sessions": "Sessioonid", "Sessions": "Sessioonid",
@ -3274,7 +3243,6 @@
"Verified": "Verifitseeritud", "Verified": "Verifitseeritud",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Turvalise sõnumvahetuse nimel verifitseeri kõik oma sessioonid ning logi neist välja, mida sa enam ei kasuta või ei tunne enam ära.", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Turvalise sõnumvahetuse nimel verifitseeri kõik oma sessioonid ning logi neist välja, mida sa enam ei kasuta või ei tunne enam ära.",
"Inactive sessions": "Mitteaktiivsed sessioonid", "Inactive sessions": "Mitteaktiivsed sessioonid",
"View all": "Näita kõiki",
"Unverified sessions": "Verifitseerimata sessioonid", "Unverified sessions": "Verifitseerimata sessioonid",
"Security recommendations": "Turvalisusega seotud soovitused", "Security recommendations": "Turvalisusega seotud soovitused",
"Dont miss a thing by taking %(brand)s with you": "Võta %(brand)s nutiseadmesse kaasa ning ära jäta suhtlemist vahele", "Dont miss a thing by taking %(brand)s with you": "Võta %(brand)s nutiseadmesse kaasa ning ära jäta suhtlemist vahele",
@ -3308,7 +3276,6 @@
"Map feedback": "Tagasiside kaardi kohta", "Map feedback": "Tagasiside kaardi kohta",
"You made it!": "Sa said valmis!", "You made it!": "Sa said valmis!",
"We're creating a room with %(names)s": "Me loome jututoa järgnevaist: %(names)s", "We're creating a room with %(names)s": "Me loome jututoa järgnevaist: %(names)s",
"Show": "Näita",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s või %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s või %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s või %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s või %(recoveryFile)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s või %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s või %(appLinks)s",
@ -3711,7 +3678,6 @@
"Email summary": "E-kirja kokkuvõte", "Email summary": "E-kirja kokkuvõte",
"People, Mentions and Keywords": "Kasutajad, mainimised ja märksõnad", "People, Mentions and Keywords": "Kasutajad, mainimised ja märksõnad",
"Mentions and Keywords only": "Vaid mainimised ja märksõnad", "Mentions and Keywords only": "Vaid mainimised ja märksõnad",
"Proceed": "Jätka",
"Show message preview in desktop notification": "Näita sõnumi eelvaadet töölauakeskkonnale omases teavituses", "Show message preview in desktop notification": "Näita sõnumi eelvaadet töölauakeskkonnale omases teavituses",
"I want to be notified for (Default Setting)": "Soovin teavitusi (vaikimisi seadistused)", "I want to be notified for (Default Setting)": "Soovin teavitusi (vaikimisi seadistused)",
"This setting will be applied by default to all your rooms.": "See seadistus kehtib vaikimisi kõikides sinu jututubades.", "This setting will be applied by default to all your rooms.": "See seadistus kehtib vaikimisi kõikides sinu jututubades.",
@ -3815,7 +3781,22 @@
"dark": "Tume", "dark": "Tume",
"beta": "Beetaversioon", "beta": "Beetaversioon",
"attachment": "Manus", "attachment": "Manus",
"appearance": "Välimus" "appearance": "Välimus",
"guest": "Külaline",
"legal": "Juriidiline teave",
"credits": "Tänuavaldused",
"faq": "Korduma kippuvad küsimused",
"access_token": "Pääsuluba",
"preferences": "Eelistused",
"presence": "Olek võrgus",
"timeline": "Ajajoon",
"privacy": "Privaatsus",
"camera": "Kaamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Juhuslik",
"support": "Toeta",
"space": "Tühikuklahv"
}, },
"action": { "action": {
"continue": "Jätka", "continue": "Jätka",
@ -3887,7 +3868,24 @@
"back": "Tagasi", "back": "Tagasi",
"apply": "Rakenda", "apply": "Rakenda",
"add": "Lisa", "add": "Lisa",
"accept": "Võta vastu" "accept": "Võta vastu",
"disconnect": "Katkesta ühendus",
"change": "Muuda",
"subscribe": "Telli",
"unsubscribe": "Lõpeta liitumine",
"approve": "Nõustu",
"proceed": "Jätka",
"complete": "Valmis",
"revoke": "Tühista",
"rename": "Muuda nime",
"view_all": "Näita kõiki",
"show_all": "Näita kõiki",
"show": "Näita",
"review": "Vaata üle",
"restore": "Taasta",
"play": "Esita",
"pause": "Peata",
"register": "Registreeru"
}, },
"a11y": { "a11y": {
"user_menu": "Kasutajamenüü" "user_menu": "Kasutajamenüü"
@ -3974,7 +3972,9 @@
"default": "Tavaline", "default": "Tavaline",
"restricted": "Piiratud õigustega kasutaja", "restricted": "Piiratud õigustega kasutaja",
"moderator": "Moderaator", "moderator": "Moderaator",
"admin": "Peakasutaja" "admin": "Peakasutaja",
"custom": "Kohandatud õigused (%(level)s)",
"mod": "Moderaator"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Kui sa oled GitHub'is teinud meile veateate, siis silumislogid võivad aidata vea lahendamisel. ", "introduction": "Kui sa oled GitHub'is teinud meile veateate, siis silumislogid võivad aidata vea lahendamisel. ",

View file

@ -12,7 +12,6 @@
"Rooms": "Gelak", "Rooms": "Gelak",
"Low priority": "Lehentasun baxua", "Low priority": "Lehentasun baxua",
"Join Room": "Elkartu gelara", "Join Room": "Elkartu gelara",
"Register": "Eman izena",
"Submit": "Bidali", "Submit": "Bidali",
"Return to login screen": "Itzuli saio hasierarako pantailara", "Return to login screen": "Itzuli saio hasierarako pantailara",
"Email address": "E-mail helbidea", "Email address": "E-mail helbidea",
@ -63,8 +62,6 @@
"No media permissions": "Media baimenik ez", "No media permissions": "Media baimenik ez",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Agian eskuz baimendu behar duzu %(brand)sek mikrofonoa edo kamera atzitzea", "You may need to manually permit %(brand)s to access your microphone/webcam": "Agian eskuz baimendu behar duzu %(brand)sek mikrofonoa edo kamera atzitzea",
"Default Device": "Lehenetsitako gailua", "Default Device": "Lehenetsitako gailua",
"Microphone": "Mikrofonoa",
"Camera": "Kamera",
"An error has occurred.": "Errore bat gertatu da.", "An error has occurred.": "Errore bat gertatu da.",
"Are you sure?": "Ziur zaude?", "Are you sure?": "Ziur zaude?",
"Are you sure you want to leave the room '%(roomName)s'?": "Ziur '%(roomName)s' gelatik atera nahi duzula?", "Are you sure you want to leave the room '%(roomName)s'?": "Ziur '%(roomName)s' gelatik atera nahi duzula?",
@ -85,7 +82,6 @@
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s erabiltzaileak gelaren izena kendu du.", "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s erabiltzaileak gelaren izena kendu du.",
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s erabiltzaileak mintzagaia aldatu du beste honetara: \"%(topic)s\".", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s erabiltzaileak mintzagaia aldatu du beste honetara: \"%(topic)s\".",
"Download %(text)s": "Deskargatu %(text)s", "Download %(text)s": "Deskargatu %(text)s",
"Emoji": "Emoji",
"Error decrypting attachment": "Errorea eranskina deszifratzean", "Error decrypting attachment": "Errorea eranskina deszifratzean",
"Failed to ban user": "Huts egin du erabiltzailea debekatzean", "Failed to ban user": "Huts egin du erabiltzailea debekatzean",
"Failed to change power level": "Huts egin du botere maila aldatzean", "Failed to change power level": "Huts egin du botere maila aldatzean",
@ -504,7 +500,6 @@
"Put a link back to the old room at the start of the new room so people can see old messages": "Gela berriaren hasieran gela zaharrera esteka bat jarri jendeak mezu zaharrak ikus ditzan", "Put a link back to the old room at the start of the new room so people can see old messages": "Gela berriaren hasieran gela zaharrera esteka bat jarri jendeak mezu zaharrak ikus ditzan",
"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.": "Zure mezua ez da bidali zure hasiera zerbitzariak hilabeteko erabiltzaile aktiboen muga jo duelako. <a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzua erabiltzen jarraitzeko.", "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.": "Zure mezua ez da bidali zure hasiera zerbitzariak hilabeteko erabiltzaile aktiboen muga jo duelako. <a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzua erabiltzen jarraitzeko.",
"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.": "Zure mezua ez da bidali zure hasiera zerbitzariak baliabide mugaren bat jo duelako. <a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzua erabiltzen jarraitzeko.", "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.": "Zure mezua ez da bidali zure hasiera zerbitzariak baliabide mugaren bat jo duelako. <a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzua erabiltzen jarraitzeko.",
"Legal": "Legala",
"Please <a>contact your service administrator</a> to continue using this service.": "<a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzu hau erabiltzen jarraitzeko.", "Please <a>contact your service administrator</a> to continue using this service.": "<a>Jarri kontaktuan zerbitzuaren administratzailearekin</a> zerbitzu hau erabiltzen jarraitzeko.",
"Forces the current outbound group session in an encrypted room to be discarded": "Uneko irteerako talde saioa zifratutako gela batean baztertzera behartzen du", "Forces the current outbound group session in an encrypted room to be discarded": "Uneko irteerako talde saioa zifratutako gela batean baztertzera behartzen du",
"%(senderName)s set the main address for this room to %(address)s.": "%(senderName)s erabiltzileak %(address)s ezarri du gela honetako helbide nagusi gisa.", "%(senderName)s set the main address for this room to %(address)s.": "%(senderName)s erabiltzileak %(address)s ezarri du gela honetako helbide nagusi gisa.",
@ -654,13 +649,11 @@
"Room Name": "Gelaren izena", "Room Name": "Gelaren izena",
"Room Topic": "Gelaren mintzagaia", "Room Topic": "Gelaren mintzagaia",
"This homeserver would like to make sure you are not a robot.": "Hasiera-zerbitzari honek robota ez zarela egiaztatu nahi du.", "This homeserver would like to make sure you are not a robot.": "Hasiera-zerbitzari honek robota ez zarela egiaztatu nahi du.",
"Change": "Aldatu",
"Email (optional)": "E-mail (aukerakoa)", "Email (optional)": "E-mail (aukerakoa)",
"Phone (optional)": "Telefonoa (aukerakoa)", "Phone (optional)": "Telefonoa (aukerakoa)",
"Join millions for free on the largest public server": "Elkartu milioika pertsonekin dohain hasiera zerbitzari publiko handienean", "Join millions for free on the largest public server": "Elkartu milioika pertsonekin dohain hasiera zerbitzari publiko handienean",
"Other": "Beste bat", "Other": "Beste bat",
"Couldn't load page": "Ezin izan da orria kargatu", "Couldn't load page": "Ezin izan da orria kargatu",
"Guest": "Gonbidatua",
"General": "Orokorra", "General": "Orokorra",
"Room Addresses": "Gelaren helbideak", "Room Addresses": "Gelaren helbideak",
"Email addresses": "E-mail helbideak", "Email addresses": "E-mail helbideak",
@ -671,11 +664,8 @@
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a> edo hasi txat bat gure botarekin beheko botoia sakatuz.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a> edo hasi txat bat gure botarekin beheko botoia sakatuz.",
"Chat with %(brand)s Bot": "Txateatu %(brand)s botarekin", "Chat with %(brand)s Bot": "Txateatu %(brand)s botarekin",
"Help & About": "Laguntza eta honi buruz", "Help & About": "Laguntza eta honi buruz",
"FAQ": "FAQ",
"Versions": "Bertsioak", "Versions": "Bertsioak",
"Preferences": "Hobespenak",
"Room list": "Gelen zerrenda", "Room list": "Gelen zerrenda",
"Timeline": "Denbora-lerroa",
"Autocomplete delay (ms)": "Automatikoki osatzeko atzerapena (ms)", "Autocomplete delay (ms)": "Automatikoki osatzeko atzerapena (ms)",
"Roles & Permissions": "Rolak eta baimenak", "Roles & Permissions": "Rolak eta baimenak",
"Security & Privacy": "Segurtasuna eta pribatutasuna", "Security & Privacy": "Segurtasuna eta pribatutasuna",
@ -707,7 +697,6 @@
"Trumpet": "Tronpeta", "Trumpet": "Tronpeta",
"Bell": "Kanpaia", "Bell": "Kanpaia",
"Anchor": "Aingura", "Anchor": "Aingura",
"Credits": "Kredituak",
"%(senderDisplayName)s changed the join rule to %(rule)s": "%(senderDisplayName)s erabiltzaileak elkartzeko araua aldatu du: %(rule)s", "%(senderDisplayName)s changed the join rule to %(rule)s": "%(senderDisplayName)s erabiltzaileak elkartzeko araua aldatu du: %(rule)s",
"%(senderDisplayName)s has allowed guests to join the room.": "%(senderDisplayName)s erabiltzaileak bisitariak gelara elkartzea baimendu du.", "%(senderDisplayName)s has allowed guests to join the room.": "%(senderDisplayName)s erabiltzaileak bisitariak gelara elkartzea baimendu du.",
"%(senderDisplayName)s has prevented guests from joining the room.": "%(senderDisplayName)s bisitariak gelara elkartzea eragotzi du.", "%(senderDisplayName)s has prevented guests from joining the room.": "%(senderDisplayName)s bisitariak gelara elkartzea eragotzi du.",
@ -879,7 +868,6 @@
"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:": "Gela hau bertsio-berritzeak gelaren oraingo instantzia itzaliko du eta izen bereko beste gela berri bat sortuko du. Kideei esperientziarik onena emateko, hau egingo dugu:", "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:": "Gela hau bertsio-berritzeak gelaren oraingo instantzia itzaliko du eta izen bereko beste gela berri bat sortuko du. Kideei esperientziarik onena emateko, hau egingo dugu:",
"Edited at %(date)s. Click to view edits.": "Edizio data: %(date)s. Sakatu edizioak ikusteko.", "Edited at %(date)s. Click to view edits.": "Edizio data: %(date)s. Sakatu edizioak ikusteko.",
"Message edits": "Mezuaren edizioak", "Message edits": "Mezuaren edizioak",
"Show all": "Erakutsi denak",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s erabiltzaileek ez dute aldaketarik egin %(count)s aldiz", "other": "%(severalUsers)s erabiltzaileek ez dute aldaketarik egin %(count)s aldiz",
"one": "%(severalUsers)s erabiltzaileek ez dute aldaketarik egin" "one": "%(severalUsers)s erabiltzaileek ez dute aldaketarik egin"
@ -914,7 +902,6 @@
"Displays list of commands with usages and descriptions": "Aginduen zerrenda bistaratzen du, erabilera eta deskripzioekin", "Displays list of commands with usages and descriptions": "Aginduen zerrenda bistaratzen du, erabilera eta deskripzioekin",
"Checking server": "Zerbitzaria egiaztatzen", "Checking server": "Zerbitzaria egiaztatzen",
"Disconnect from the identity server <idserver />?": "Deskonektatu <idserver /> identitate-zerbitzaritik?", "Disconnect from the identity server <idserver />?": "Deskonektatu <idserver /> identitate-zerbitzaritik?",
"Disconnect": "Deskonektatu",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "<server></server> erabiltzen ari zara kontaktua aurkitzeko eta aurkigarria izateko. Zure identitate-zerbitzaria aldatu dezakezu azpian.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "<server></server> erabiltzen ari zara kontaktua aurkitzeko eta aurkigarria izateko. Zure identitate-zerbitzaria aldatu dezakezu azpian.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Orain ez duzu identitate-zerbitzaririk erabiltzen. Kontaktuak aurkitzeko eta aurkigarria izateko, gehitu bat azpian.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Orain ez duzu identitate-zerbitzaririk erabiltzen. Kontaktuak aurkitzeko eta aurkigarria izateko, gehitu bat azpian.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Zure identitate-zerbitzaritik deskonektatzean ez zara beste erabiltzaileentzat aurkigarria izango eta ezin izango dituzu besteak gonbidatu e-mail helbidea edo telefono zenbakia erabiliz.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Zure identitate-zerbitzaritik deskonektatzean ez zara beste erabiltzaileentzat aurkigarria izango eta ezin izango dituzu besteak gonbidatu e-mail helbidea edo telefono zenbakia erabiliz.",
@ -923,7 +910,6 @@
"Always show the window menu bar": "Erakutsi beti leihoaren menu barra", "Always show the window menu bar": "Erakutsi beti leihoaren menu barra",
"Unable to revoke sharing for email address": "Ezin izan da partekatzea indargabetu e-mail helbidearentzat", "Unable to revoke sharing for email address": "Ezin izan da partekatzea indargabetu e-mail helbidearentzat",
"Unable to share email address": "Ezin izan da e-mail helbidea partekatu", "Unable to share email address": "Ezin izan da e-mail helbidea partekatu",
"Revoke": "Indargabetu",
"Discovery options will appear once you have added an email above.": "Aurkitze aukerak behin goian e-mail helbide bat gehitu duzunean agertuko dira.", "Discovery options will appear once you have added an email above.": "Aurkitze aukerak behin goian e-mail helbide bat gehitu duzunean agertuko dira.",
"Unable to revoke sharing for phone number": "Ezin izan da partekatzea indargabetu telefono zenbakiarentzat", "Unable to revoke sharing for phone number": "Ezin izan da partekatzea indargabetu telefono zenbakiarentzat",
"Unable to share phone number": "Ezin izan da telefono zenbakia partekatu", "Unable to share phone number": "Ezin izan da telefono zenbakia partekatu",
@ -975,7 +961,6 @@
"Your email address hasn't been verified yet": "Zure e-mail helbidea egiaztatu gabe dago oraindik", "Your email address hasn't been verified yet": "Zure e-mail helbidea egiaztatu gabe dago oraindik",
"Click the link in the email you received to verify and then click continue again.": "Sakatu jaso duzun e-maileko estekan egiaztatzeko eta gero sakatu jarraitu berriro.", "Click the link in the email you received to verify and then click continue again.": "Sakatu jaso duzun e-maileko estekan egiaztatzeko eta gero sakatu jarraitu berriro.",
"Verify the link in your inbox": "Egiaztatu zure sarrera ontzian dagoen esteka", "Verify the link in your inbox": "Egiaztatu zure sarrera ontzian dagoen esteka",
"Complete": "Burutu",
"No recent messages by %(user)s found": "Ez da %(user)s erabiltzailearen azken mezurik aurkitu", "No recent messages by %(user)s found": "Ez da %(user)s erabiltzailearen azken mezurik aurkitu",
"Try scrolling up in the timeline to see if there are any earlier ones.": "Saiatu denbora-lerroa gora korritzen aurreko besterik dagoen ikusteko.", "Try scrolling up in the timeline to see if there are any earlier ones.": "Saiatu denbora-lerroa gora korritzen aurreko besterik dagoen ikusteko.",
"Remove recent messages by %(user)s": "Kendu %(user)s erabiltzailearen azken mezuak", "Remove recent messages by %(user)s": "Kendu %(user)s erabiltzailearen azken mezuak",
@ -1059,7 +1044,6 @@
"%(name)s cancelled": "%(name)s utzita", "%(name)s cancelled": "%(name)s utzita",
"%(name)s wants to verify": "%(name)s(e)k egiaztatu nahi du", "%(name)s wants to verify": "%(name)s(e)k egiaztatu nahi du",
"You sent a verification request": "Egiaztaketa eskari bat bidali duzu", "You sent a verification request": "Egiaztaketa eskari bat bidali duzu",
"Custom (%(level)s)": "Pertsonalizatua (%(level)s)",
"%(senderName)s placed a voice call.": "%(senderName)s erabiltzaileak ahots-dei bat abiatu du.", "%(senderName)s placed a voice call.": "%(senderName)s erabiltzaileak ahots-dei bat abiatu du.",
"%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s erabiltzaileak ahots-dei bat abiatu du. (Nabigatzaile honek ez du onartzen)", "%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s erabiltzaileak ahots-dei bat abiatu du. (Nabigatzaile honek ez du onartzen)",
"%(senderName)s placed a video call.": "%(senderName)s erabiltzaileak bideo-dei bat abiatu du.", "%(senderName)s placed a video call.": "%(senderName)s erabiltzaileak bideo-dei bat abiatu du.",
@ -1084,7 +1068,6 @@
"You have not ignored anyone.": "Ez duzu inor ezikusi.", "You have not ignored anyone.": "Ez duzu inor ezikusi.",
"You are currently ignoring:": "Orain ezikusten dituzu:", "You are currently ignoring:": "Orain ezikusten dituzu:",
"You are not subscribed to any lists": "Ez zaude inolako zerrendara harpidetuta", "You are not subscribed to any lists": "Ez zaude inolako zerrendara harpidetuta",
"Unsubscribe": "Kendu harpidetza",
"View rules": "Ikusi arauak", "View rules": "Ikusi arauak",
"You are currently subscribed to:": "Orain hauetara harpidetuta zaude:", "You are currently subscribed to:": "Orain hauetara harpidetuta zaude:",
"⚠ These settings are meant for advanced users.": "⚠ Ezarpen hauek erabiltzaile aurreratuei zuzenduta daude.", "⚠ These settings are meant for advanced users.": "⚠ Ezarpen hauek erabiltzaile aurreratuei zuzenduta daude.",
@ -1095,7 +1078,6 @@
"Subscribed lists": "Harpidetutako zerrendak", "Subscribed lists": "Harpidetutako zerrendak",
"Subscribing to a ban list will cause you to join it!": "Debeku-zerrenda batera harpidetzeak zu elkartzea ekarriko du!", "Subscribing to a ban list will cause you to join it!": "Debeku-zerrenda batera harpidetzeak zu elkartzea ekarriko du!",
"If this isn't what you want, please use a different tool to ignore users.": "Hau ez bada zuk nahi duzuna, erabili beste tresnaren bat erabiltzaileak ezikusteko.", "If this isn't what you want, please use a different tool to ignore users.": "Hau ez bada zuk nahi duzuna, erabili beste tresnaren bat erabiltzaileak ezikusteko.",
"Subscribe": "Harpidetu",
"Failed to connect to integration manager": "Huts egin du integrazio kudeatzailera konektatzean", "Failed to connect to integration manager": "Huts egin du integrazio kudeatzailera konektatzean",
"Trusted": "Konfiantzazkoa", "Trusted": "Konfiantzazkoa",
"Not trusted": "Ez konfiantzazkoa", "Not trusted": "Ez konfiantzazkoa",
@ -1168,7 +1150,6 @@
"Failed to find the following users": "Ezin izan dira honako erabiltzaile hauek aurkitu", "Failed to find the following users": "Ezin izan dira honako erabiltzaile hauek aurkitu",
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Honako erabiltzaile hauek agian ez dira existitzen edo baliogabeak dira, eta ezin dira gonbidatu: %(csvNames)s", "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Honako erabiltzaile hauek agian ez dira existitzen edo baliogabeak dira, eta ezin dira gonbidatu: %(csvNames)s",
"Lock": "Blokeatu", "Lock": "Blokeatu",
"Restore": "Berrezarri",
"a few seconds ago": "duela segundo batzuk", "a few seconds ago": "duela segundo batzuk",
"about a minute ago": "duela minutu bat inguru", "about a minute ago": "duela minutu bat inguru",
"%(num)s minutes ago": "duela %(num)s minutu", "%(num)s minutes ago": "duela %(num)s minutu",
@ -1219,7 +1200,6 @@
"They match": "Bat datoz", "They match": "Bat datoz",
"They don't match": "Ez datoz bat", "They don't match": "Ez datoz bat",
"To be secure, do this in person or use a trusted way to communicate.": "Ziurtatzeko, egin hau aurrez aurre edo komunikabide seguru baten bidez.", "To be secure, do this in person or use a trusted way to communicate.": "Ziurtatzeko, egin hau aurrez aurre edo komunikabide seguru baten bidez.",
"Review": "Berrikusi",
"This bridge was provisioned by <user />.": "Zubi hau <user /> erabiltzaileak hornitu du.", "This bridge was provisioned by <user />.": "Zubi hau <user /> erabiltzaileak hornitu du.",
"Show less": "Erakutsi gutxiago", "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.", "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.",
@ -1266,7 +1246,6 @@
"Cancel entering passphrase?": "Ezeztatu pasa-esaldiaren sarrera?", "Cancel entering passphrase?": "Ezeztatu pasa-esaldiaren sarrera?",
"Securely cache encrypted messages locally for them to appear in search results.": "Gorde zifratutako mezuak cachean modu seguruan bilaketen emaitzetan agertu daitezen.", "Securely cache encrypted messages locally for them to appear in search results.": "Gorde zifratutako mezuak cachean modu seguruan bilaketen emaitzetan agertu daitezen.",
"You have verified this user. This user has verified all of their sessions.": "Erabiltzaile hau egiaztatu duzu. Erabiltzaile honek bere saio guztiak egiaztatu ditu.", "You have verified this user. This user has verified all of their sessions.": "Erabiltzaile hau egiaztatu duzu. Erabiltzaile honek bere saio guztiak egiaztatu ditu.",
"Mod": "Moderatzailea",
"Waiting for %(displayName)s to accept…": "%(displayName)s(e)k onartu bitartean zain…", "Waiting for %(displayName)s to accept…": "%(displayName)s(e)k onartu bitartean zain…",
"Your messages are secured and only you and the recipient have the unique keys to unlock them.": "Zuen mezuak babestuta daude eta soilik zuk eta hartzaileak dituzue hauek desblokeatzeko gakoak.", "Your messages are secured and only you and the recipient have the unique keys to unlock them.": "Zuen mezuak babestuta daude eta soilik zuk eta hartzaileak dituzue hauek desblokeatzeko gakoak.",
"One of the following may be compromised:": "Hauetakoren bat konprometituta egon daiteke:", "One of the following may be compromised:": "Hauetakoren bat konprometituta egon daiteke:",
@ -1376,7 +1355,6 @@
"Activate selected button": "Aktibatu hautatutako botoia", "Activate selected button": "Aktibatu hautatutako botoia",
"Toggle right panel": "Txandakatu eskumako panela", "Toggle right panel": "Txandakatu eskumako panela",
"Cancel autocomplete": "Ezeztatu osatze automatikoa", "Cancel autocomplete": "Ezeztatu osatze automatikoa",
"Space": "Zuriune-barra",
"Manually verify all remote sessions": "Egiaztatu eskuz urruneko saio guztiak", "Manually verify all remote sessions": "Egiaztatu eskuz urruneko saio guztiak",
"Self signing private key:": "Norberak sinatutako gako pribatua:", "Self signing private key:": "Norberak sinatutako gako pribatua:",
"cached locally": "cache lokalean", "cached locally": "cache lokalean",
@ -1552,7 +1530,17 @@
"favourites": "Gogokoak", "favourites": "Gogokoak",
"description": "Deskripzioa", "description": "Deskripzioa",
"attachment": "Eranskina", "attachment": "Eranskina",
"appearance": "Itxura" "appearance": "Itxura",
"guest": "Gonbidatua",
"legal": "Legala",
"credits": "Kredituak",
"faq": "FAQ",
"preferences": "Hobespenak",
"timeline": "Denbora-lerroa",
"camera": "Kamera",
"microphone": "Mikrofonoa",
"emoji": "Emoji",
"space": "Zuriune-barra"
}, },
"action": { "action": {
"continue": "Jarraitu", "continue": "Jarraitu",
@ -1608,7 +1596,17 @@
"cancel": "Utzi", "cancel": "Utzi",
"back": "Atzera", "back": "Atzera",
"add": "Gehitu", "add": "Gehitu",
"accept": "Onartu" "accept": "Onartu",
"disconnect": "Deskonektatu",
"change": "Aldatu",
"subscribe": "Harpidetu",
"unsubscribe": "Kendu harpidetza",
"complete": "Burutu",
"revoke": "Indargabetu",
"show_all": "Erakutsi denak",
"review": "Berrikusi",
"restore": "Berrezarri",
"register": "Eman izena"
}, },
"a11y": { "a11y": {
"user_menu": "Erabiltzailea-menua" "user_menu": "Erabiltzailea-menua"
@ -1643,7 +1641,9 @@
"default": "Lehenetsia", "default": "Lehenetsia",
"restricted": "Mugatua", "restricted": "Mugatua",
"moderator": "Moderatzailea", "moderator": "Moderatzailea",
"admin": "Kudeatzailea" "admin": "Kudeatzailea",
"custom": "Pertsonalizatua (%(level)s)",
"mod": "Moderatzailea"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "Matrix-ekin lotutako segurtasun arazo baten berri emateko, irakurri <a>Segurtasun ezagutarazte gidalerroak</a>.", "matrix_security_issue": "Matrix-ekin lotutako segurtasun arazo baten berri emateko, irakurri <a>Segurtasun ezagutarazte gidalerroak</a>.",

View file

@ -54,14 +54,12 @@
"Add Email Address": "افزودن نشانی رایانامه", "Add Email Address": "افزودن نشانی رایانامه",
"Confirm adding phone number": "تأیید افزودن شماره تلفن", "Confirm adding phone number": "تأیید افزودن شماره تلفن",
"Add Phone Number": "افزودن شماره تلفن", "Add Phone Number": "افزودن شماره تلفن",
"Review": "بازبینی",
"Later": "بعداً", "Later": "بعداً",
"Contact your <a>server admin</a>.": "تماس با <a>مدیر کارسازتان</a>.", "Contact your <a>server admin</a>.": "تماس با <a>مدیر کارسازتان</a>.",
"Ok": "تأیید", "Ok": "تأیید",
"Encryption upgrade available": "ارتقای رمزنگاری ممکن است", "Encryption upgrade available": "ارتقای رمزنگاری ممکن است",
"Verify this session": "تأیید این نشست", "Verify this session": "تأیید این نشست",
"Set up": "برپایی", "Set up": "برپایی",
"Guest": "مهمان",
"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.": "برای تأیید هویتتان، این نشانی رایانامه را با ورود یکپارچه تأیید کنید.",
"Click the button below to confirm adding this email address.": "برای تأیید افزودن این نشانی رایانامه، دکمهٔ زیر را بزنید.", "Click the button below to confirm adding this email address.": "برای تأیید افزودن این نشانی رایانامه، دکمهٔ زیر را بزنید.",
"Click the button below to confirm adding this phone number.": "برای تائید اضافه‌شدن این شماره تلفن، بر روی دکمه‌ی زیر کلیک کنید.", "Click the button below to confirm adding this phone number.": "برای تائید اضافه‌شدن این شماره تلفن، بر روی دکمه‌ی زیر کلیک کنید.",
@ -75,7 +73,6 @@
"Failed to send request.": "ارسال درخواست با خطا مواجه شد.", "Failed to send request.": "ارسال درخواست با خطا مواجه شد.",
"Failed to ban user": "کاربر مسدود نشد", "Failed to ban user": "کاربر مسدود نشد",
"Error decrypting attachment": "خطا در رمزگشایی پیوست", "Error decrypting attachment": "خطا در رمزگشایی پیوست",
"Emoji": "شکلک",
"Email address": "آدرس ایمیل", "Email address": "آدرس ایمیل",
"Email": "ایمیل", "Email": "ایمیل",
"Download %(text)s": "دانلود 2%(text)s", "Download %(text)s": "دانلود 2%(text)s",
@ -100,8 +97,6 @@
"Authentication": "احراز هویت", "Authentication": "احراز هویت",
"Always show message timestamps": "همیشه مهر زمان‌های پیام را نشان بده", "Always show message timestamps": "همیشه مهر زمان‌های پیام را نشان بده",
"Advanced": "پیشرفته", "Advanced": "پیشرفته",
"Camera": "دوربین",
"Microphone": "میکروفون",
"Default Device": "دستگاه پیشفرض", "Default Device": "دستگاه پیشفرض",
"No media permissions": "عدم مجوز رسانه", "No media permissions": "عدم مجوز رسانه",
"No Webcams detected": "هیچ وبکمی شناسایی نشد", "No Webcams detected": "هیچ وبکمی شناسایی نشد",
@ -209,7 +204,6 @@
"You need to be able to invite users to do that.": "نیاز است که شما قادر به دعوت کاربران به آن باشید.", "You need to be able to invite users to do that.": "نیاز است که شما قادر به دعوت کاربران به آن باشید.",
"You need to be logged in.": "شما باید وارد شوید.", "You need to be logged in.": "شما باید وارد شوید.",
"Failed to invite": "دعوت موفقیت‌آمیز نبود", "Failed to invite": "دعوت موفقیت‌آمیز نبود",
"Custom (%(level)s)": "%(level)s دلخواه",
"Moderator": "معاون", "Moderator": "معاون",
"Restricted": "ممنوع", "Restricted": "ممنوع",
"Use your account or create a new one to continue.": "برای ادامه کار از حساب کاربری خود استفاده کرده و یا حساب کاربری جدیدی ایجاد کنید.", "Use your account or create a new one to continue.": "برای ادامه کار از حساب کاربری خود استفاده کرده و یا حساب کاربری جدیدی ایجاد کنید.",
@ -1030,7 +1024,6 @@
"one": "%(oneUser)s دعوت خود را پس گرفته است", "one": "%(oneUser)s دعوت خود را پس گرفته است",
"other": "%(oneUser)s دعوت خود را %(count)s مرتبه پس‌گرفته‌است" "other": "%(oneUser)s دعوت خود را %(count)s مرتبه پس‌گرفته‌است"
}, },
"Restore": "بازیابی",
"%(severalUsers)shad their invitations withdrawn %(count)s times": { "%(severalUsers)shad their invitations withdrawn %(count)s times": {
"one": "%(severalUsers)s دعوت‌های خود را پس‌گرفتند", "one": "%(severalUsers)s دعوت‌های خود را پس‌گرفتند",
"other": "%(severalUsers)s دعوت خود را %(count)s مرتبه پس‌گرفتند" "other": "%(severalUsers)s دعوت خود را %(count)s مرتبه پس‌گرفتند"
@ -1315,7 +1308,6 @@
}, },
"Import": "واردکردن (Import)", "Import": "واردکردن (Import)",
"Export": "استخراج (Export)", "Export": "استخراج (Export)",
"Space": "فضای کاری",
"Theme added!": "پوسته اضافه شد!", "Theme added!": "پوسته اضافه شد!",
"If you've joined lots of rooms, this might take a while": "اگر عضو اتاق‌های بسیار زیادی هستید، ممکن است این فرآیند مقدای به طول بیانجامد", "If you've joined lots of rooms, this might take a while": "اگر عضو اتاق‌های بسیار زیادی هستید، ممکن است این فرآیند مقدای به طول بیانجامد",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "مدیر سرور شما قابلیت رمزنگاری سرتاسر برای اتاق‌ها و گفتگوهای خصوصی را به صورت پیش‌فرض غیرفعال کرده‌است.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "مدیر سرور شما قابلیت رمزنگاری سرتاسر برای اتاق‌ها و گفتگوهای خصوصی را به صورت پیش‌فرض غیرفعال کرده‌است.",
@ -1337,7 +1329,6 @@
"Message deleted by %(name)s": "پیام توسط %(name)s حذف شد", "Message deleted by %(name)s": "پیام توسط %(name)s حذف شد",
"Message deleted": "پیغام پاک شد", "Message deleted": "پیغام پاک شد",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> واکنش نشان داد با %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> واکنش نشان داد با %(shortName)s</reactedWith>",
"Show all": "نمایش همه",
"Add reaction": "افزودن واکنش", "Add reaction": "افزودن واکنش",
"Error processing voice message": "خطا در پردازش پیام صوتی", "Error processing voice message": "خطا در پردازش پیام صوتی",
"Error decrypting video": "خطا در رمزگشایی ویدیو", "Error decrypting video": "خطا در رمزگشایی ویدیو",
@ -1349,7 +1340,6 @@
"You declined": "شما رد کردید", "You declined": "شما رد کردید",
"%(name)s accepted": "%(name)s پذیرفت", "%(name)s accepted": "%(name)s پذیرفت",
"You accepted": "پذیرفتید", "You accepted": "پذیرفتید",
"Mod": "معاون",
"Hint: Begin your message with <code>//</code> to start it with a slash.": "نکته: پیام خود را با <code>//</code> شروع کنید تا با یک اسلش شروع شود.", "Hint: Begin your message with <code>//</code> to start it with a slash.": "نکته: پیام خود را با <code>//</code> شروع کنید تا با یک اسلش شروع شود.",
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "برای لیست کردن دستورات موجود می توانید از <code>/help</code> استفاده کنید. آیا قصد داشتید این پیام را به عنوان متم ارسال کنید؟", "You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "برای لیست کردن دستورات موجود می توانید از <code>/help</code> استفاده کنید. آیا قصد داشتید این پیام را به عنوان متم ارسال کنید؟",
"Read Marker off-screen lifetime (ms)": "خواندن نشانگر طول عمر خارج از صفحه نمایش (میلی ثانیه)", "Read Marker off-screen lifetime (ms)": "خواندن نشانگر طول عمر خارج از صفحه نمایش (میلی ثانیه)",
@ -1408,7 +1398,6 @@
"Always show the window menu bar": "همیشه نوار فهرست پنجره را نشان بده", "Always show the window menu bar": "همیشه نوار فهرست پنجره را نشان بده",
"Warn before quitting": "قبل از خروج هشدا بده", "Warn before quitting": "قبل از خروج هشدا بده",
"Start automatically after system login": "پس از ورود به سیستم به صورت خودکار آغاز کن", "Start automatically after system login": "پس از ورود به سیستم به صورت خودکار آغاز کن",
"Subscribe": "اضافه‌شدن",
"Room ID or address of ban list": "شناسه‌ی اتاق یا آدرس لیست تحریم", "Room ID or address of ban list": "شناسه‌ی اتاق یا آدرس لیست تحریم",
"If this isn't what you want, please use a different tool to ignore users.": "اگر این چیزی نیست که شما می‌خواهید، از یک ابزار دیگر برای نادیده‌گرفتن کاربران استفاده نمائيد.", "If this isn't what you want, please use a different tool to ignore users.": "اگر این چیزی نیست که شما می‌خواهید، از یک ابزار دیگر برای نادیده‌گرفتن کاربران استفاده نمائيد.",
"Subscribing to a ban list will cause you to join it!": "ثبت‌نام کردن در یک لیست تحریم باعث می‌شود شما هم عضو آن شوید!", "Subscribing to a ban list will cause you to join it!": "ثبت‌نام کردن در یک لیست تحریم باعث می‌شود شما هم عضو آن شوید!",
@ -1444,7 +1433,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "پلاگین‌های مرورگر خود را بررسی کنید تا مبادا سرور هویت‌سنجی را بلاک کرده باشند (پلاگینی مانند Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "پلاگین‌های مرورگر خود را بررسی کنید تا مبادا سرور هویت‌سنجی را بلاک کرده باشند (پلاگینی مانند Privacy Badger)",
"You should:": "شما باید:", "You should:": "شما باید:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "شما باید قبل از قطع اتصال، <b>داده‌های شخصی خود را</b> از سرور هویت‌سنجی <idserver /> پاک کنید. متاسفانه سرور هویت‌سنجی <idserver /> هم‌اکنون آفلاین بوده و یا دسترسی به آن امکان‌پذیر نیست.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "شما باید قبل از قطع اتصال، <b>داده‌های شخصی خود را</b> از سرور هویت‌سنجی <idserver /> پاک کنید. متاسفانه سرور هویت‌سنجی <idserver /> هم‌اکنون آفلاین بوده و یا دسترسی به آن امکان‌پذیر نیست.",
"Disconnect": "قطع شو",
"Disconnect from the identity server <idserver />?": "از سرور هویت‌سنجی <idserver /> قطع می‌شوید؟", "Disconnect from the identity server <idserver />?": "از سرور هویت‌سنجی <idserver /> قطع می‌شوید؟",
"Disconnect identity server": "اتصال با سرور هویت‌سنجی را قطع کن", "Disconnect identity server": "اتصال با سرور هویت‌سنجی را قطع کن",
"The identity server you have chosen does not have any terms of service.": "سرور هویت‌سنجی که انتخاب کرده‌اید شرایط و ضوابط سرویس ندارد.", "The identity server you have chosen does not have any terms of service.": "سرور هویت‌سنجی که انتخاب کرده‌اید شرایط و ضوابط سرویس ندارد.",
@ -1696,8 +1684,6 @@
"You've successfully verified this user.": "شما با موفقیت این کاربر را تائید کردید.", "You've successfully verified this user.": "شما با موفقیت این کاربر را تائید کردید.",
"Verified!": "تائید شد!", "Verified!": "تائید شد!",
"The other party cancelled the verification.": "طرف مقابل فرآیند تائید را لغو کرد.", "The other party cancelled the verification.": "طرف مقابل فرآیند تائید را لغو کرد.",
"Play": "اجرا کردن",
"Pause": "متوقف‌کردن",
"Unknown caller": "تماس‌گیرنده‌ی ناشناس", "Unknown caller": "تماس‌گیرنده‌ی ناشناس",
"Dial pad": "صفحه شماره‌گیری", "Dial pad": "صفحه شماره‌گیری",
"There was an error looking up the phone number": "هنگام یافتن شماره تلفن خطایی رخ داد", "There was an error looking up the phone number": "هنگام یافتن شماره تلفن خطایی رخ داد",
@ -1879,8 +1865,6 @@
"Switch to light mode": "انتخاب حالت روشن", "Switch to light mode": "انتخاب حالت روشن",
"All settings": "همه تنظیمات", "All settings": "همه تنظیمات",
"Skip for now": "فعلا بیخیال", "Skip for now": "فعلا بیخیال",
"Support": "پشتیبانی",
"Random": "تصادفی",
"Welcome to <name/>": "به <name/> خوش‌آمدید", "Welcome to <name/>": "به <name/> خوش‌آمدید",
"<inviter/> invites you": "<inviter/> شما را دعوت کرد", "<inviter/> invites you": "<inviter/> شما را دعوت کرد",
"Private space": "محیط خصوصی", "Private space": "محیط خصوصی",
@ -1954,7 +1938,6 @@
"Couldn't load page": "نمایش صفحه امکان‌پذیر نبود", "Couldn't load page": "نمایش صفحه امکان‌پذیر نبود",
"Sign in with SSO": "ورود با استفاده از احراز هویت یکپارچه", "Sign in with SSO": "ورود با استفاده از احراز هویت یکپارچه",
"Add an email to be able to reset your password.": "برای داشتن امکان تغییر گذرواژه در صورت فراموش‌کردن آن، لطفا یک آدرس ایمیل وارد نمائید.", "Add an email to be able to reset your password.": "برای داشتن امکان تغییر گذرواژه در صورت فراموش‌کردن آن، لطفا یک آدرس ایمیل وارد نمائید.",
"Register": "ایجاد حساب کاربری",
"Sign in with": "نحوه ورود", "Sign in with": "نحوه ورود",
"Phone": "شماره تلفن", "Phone": "شماره تلفن",
"That phone number doesn't look quite right, please check and try again": "به نظر شماره تلفن صحیح نمی‌باشد، لطفا بررسی کرده و مجددا تلاش فرمائید", "That phone number doesn't look quite right, please check and try again": "به نظر شماره تلفن صحیح نمی‌باشد، لطفا بررسی کرده و مجددا تلاش فرمائید",
@ -1984,8 +1967,6 @@
"Reject invitation": "ردکردن دعوت", "Reject invitation": "ردکردن دعوت",
"Hold": "نگه‌داشتن", "Hold": "نگه‌داشتن",
"Resume": "ادامه", "Resume": "ادامه",
"Revoke": "برگرداندن",
"Complete": "تکمیل",
"Verify the link in your inbox": "لینک موجود در صندوق دریافت خود را تائید کنید", "Verify the link in your inbox": "لینک موجود در صندوق دریافت خود را تائید کنید",
"Unable to verify email address.": "تائید آدرس ایمیل ممکن نیست.", "Unable to verify email address.": "تائید آدرس ایمیل ممکن نیست.",
"Click the link in the email you received to verify and then click continue again.": "برای تائید ادرس ایمیل، بر روی لینکی که برای شما ایمیل شده‌است کلیک کرده و مجددا بر روی ادامه کلیک کنید.", "Click the link in the email you received to verify and then click continue again.": "برای تائید ادرس ایمیل، بر روی لینکی که برای شما ایمیل شده‌است کلیک کرده و مجددا بر روی ادامه کلیک کنید.",
@ -2044,7 +2025,6 @@
"No Audio Outputs detected": "هیچ خروجی صدایی یافت نشد", "No Audio Outputs detected": "هیچ خروجی صدایی یافت نشد",
"Request media permissions": "درخواست دسترسی به رسانه", "Request media permissions": "درخواست دسترسی به رسانه",
"Missing media permissions, click the button below to request.": "دسترسی به رسانه از دست رفت، برای درخواست مجدد بر روی دکمه‌ی زیر کلیک نمائید.", "Missing media permissions, click the button below to request.": "دسترسی به رسانه از دست رفت، برای درخواست مجدد بر روی دکمه‌ی زیر کلیک نمائید.",
"Privacy": "حریم خصوصی",
"Cross-signing": "امضاء متقابل", "Cross-signing": "امضاء متقابل",
"Message search": "جستجوی پیام‌ها", "Message search": "جستجوی پیام‌ها",
"Secure Backup": "پشتیبان‌گیری امن", "Secure Backup": "پشتیبان‌گیری امن",
@ -2055,15 +2035,12 @@
"<not supported>": "<پشتیبانی نمی‌شود>", "<not supported>": "<پشتیبانی نمی‌شود>",
"Unignore": "لغو نادیده‌گرفتن", "Unignore": "لغو نادیده‌گرفتن",
"Autocomplete delay (ms)": "تاخیر تکمیل خودکار به میلی ثانیه", "Autocomplete delay (ms)": "تاخیر تکمیل خودکار به میلی ثانیه",
"Timeline": "سیر زمان گفتگو‌ها",
"Room list": "لیست اتاق‌ها", "Room list": "لیست اتاق‌ها",
"Preferences": "ترجیحات",
"Subscribed lists": "لیست‌هایی که در آن‌ها ثبت‌نام کرده‌اید", "Subscribed lists": "لیست‌هایی که در آن‌ها ثبت‌نام کرده‌اید",
"Server or user ID to ignore": "شناسه‌ی سرور یا کاربر مورد نظر برای نادیده‌گرفتن", "Server or user ID to ignore": "شناسه‌ی سرور یا کاربر مورد نظر برای نادیده‌گرفتن",
"Personal ban list": "لیست تحریم شخصی", "Personal ban list": "لیست تحریم شخصی",
"Ignored users": "کاربران نادیده‌گرفته‌شده", "Ignored users": "کاربران نادیده‌گرفته‌شده",
"View rules": "مشاهده قوانین", "View rules": "مشاهده قوانین",
"Unsubscribe": "لغو اشتراک",
"You are not subscribed to any lists": "شما در هیچ لیستی ثبت‌نام نکرده‌اید", "You are not subscribed to any lists": "شما در هیچ لیستی ثبت‌نام نکرده‌اید",
"You have not ignored anyone.": "شما هیچ‌کس را نادیده نگرفته‌اید.", "You have not ignored anyone.": "شما هیچ‌کس را نادیده نگرفته‌اید.",
"User rules": "قوانین کاربر", "User rules": "قوانین کاربر",
@ -2079,12 +2056,8 @@
"Ignored/Blocked": "نادیده گرفته‌شده/بلاک‌شده", "Ignored/Blocked": "نادیده گرفته‌شده/بلاک‌شده",
"Clear cache and reload": "پاک‌کردن حافظه‌ی کش و راه‌اندازی مجدد", "Clear cache and reload": "پاک‌کردن حافظه‌ی کش و راه‌اندازی مجدد",
"Your access token gives full access to your account. Do not share it with anyone.": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر می‌سازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.", "Your access token gives full access to your account. Do not share it with anyone.": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر می‌سازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.",
"Access Token": "توکن دسترسی",
"Versions": "نسخه‌ها", "Versions": "نسخه‌ها",
"FAQ": "سوالات پرتکرار",
"Help & About": "کمک و درباره‌ی‌ ما", "Help & About": "کمک و درباره‌ی‌ ما",
"Credits": "اعتبارها",
"Legal": "قانونی",
"General": "عمومی", "General": "عمومی",
"Discovery": "کاوش", "Discovery": "کاوش",
"Deactivate account": "غیرفعال‌کردن حساب کاربری", "Deactivate account": "غیرفعال‌کردن حساب کاربری",
@ -2144,7 +2117,6 @@
"Hey you. You're the best!": "سلام. حال شما خوبه؟", "Hey you. You're the best!": "سلام. حال شما خوبه؟",
"Check for update": "بررسی برای به‌روزرسانی جدید", "Check for update": "بررسی برای به‌روزرسانی جدید",
"Manage integrations": "مدیریت پکپارچه‌سازی‌ها", "Manage integrations": "مدیریت پکپارچه‌سازی‌ها",
"Change": "تغییر بده",
"Enter a new identity server": "یک سرور هویت‌سنجی جدید وارد کنید", "Enter a new identity server": "یک سرور هویت‌سنجی جدید وارد کنید",
"Do not use an identity server": "از سرور هویت‌سنجی استفاده نکن", "Do not use an identity server": "از سرور هویت‌سنجی استفاده نکن",
"If you do, please note that none of your messages will be deleted, but the search experience might be degraded for a few moments whilst the index is recreated": "اگر این کار را انجام می‌دهید، لطفاً توجه داشته باشید که هیچ یک از پیام‌های شما حذف نمی‌شوند ، با این حال چون پیام‌ها مجددا ایندکس می‌شوند، ممکن است برای چند لحظه قابلیت جستجو با مشکل مواجه شود", "If you do, please note that none of your messages will be deleted, but the search experience might be degraded for a few moments whilst the index is recreated": "اگر این کار را انجام می‌دهید، لطفاً توجه داشته باشید که هیچ یک از پیام‌های شما حذف نمی‌شوند ، با این حال چون پیام‌ها مجددا ایندکس می‌شوند، ممکن است برای چند لحظه قابلیت جستجو با مشکل مواجه شود",
@ -2162,7 +2134,6 @@
"The widget will verify your user ID, but won't be able to perform actions for you:": "ابزارک شناسه‌ی کاربری شما را تائید خواهد کرد، اما نمی‌تواند این کارها را برای شما انجام دهد:", "The widget will verify your user ID, but won't be able to perform actions for you:": "ابزارک شناسه‌ی کاربری شما را تائید خواهد کرد، اما نمی‌تواند این کارها را برای شما انجام دهد:",
"This looks like a valid Security Key!": "به نظر می رسد این یک کلید امنیتی معتبر است!", "This looks like a valid Security Key!": "به نظر می رسد این یک کلید امنیتی معتبر است!",
"Allow this widget to verify your identity": "به این ابزارک اجازه دهید هویت شما را تأیید کند", "Allow this widget to verify your identity": "به این ابزارک اجازه دهید هویت شما را تأیید کند",
"Approve": "تایید",
"Some files are <b>too large</b> to be uploaded. The file size limit is %(limit)s.": "برخی از فایل‌ها برای بارگذاری <b>بیش از حد بزرگ هستند</b>. محدودیت اندازه فایل %(limit)s است.", "Some files are <b>too large</b> to be uploaded. The file size limit is %(limit)s.": "برخی از فایل‌ها برای بارگذاری <b>بیش از حد بزرگ هستند</b>. محدودیت اندازه فایل %(limit)s است.",
"Access your secure message history and set up secure messaging by entering your Security Key.": "با وارد کردن کلید امنیتی خود به تاریخچه‌ی پیام‌‌های رمز شده خود دسترسی پیدا کرده و پیام امن ارسال کنید.", "Access your secure message history and set up secure messaging by entering your Security Key.": "با وارد کردن کلید امنیتی خود به تاریخچه‌ی پیام‌‌های رمز شده خود دسترسی پیدا کرده و پیام امن ارسال کنید.",
"These files are <b>too large</b> to upload. The file size limit is %(limit)s.": "این فایل‌ها برای بارگذاری <b>بیش از حد بزرگ</b> هستند. محدودیت اندازه فایل %(limit)s است.", "These files are <b>too large</b> to upload. The file size limit is %(limit)s.": "این فایل‌ها برای بارگذاری <b>بیش از حد بزرگ</b> هستند. محدودیت اندازه فایل %(limit)s است.",
@ -2527,7 +2498,21 @@
"dark": "تاریک", "dark": "تاریک",
"beta": "بتا", "beta": "بتا",
"attachment": "پیوست", "attachment": "پیوست",
"appearance": "شکل و ظاهر" "appearance": "شکل و ظاهر",
"guest": "مهمان",
"legal": "قانونی",
"credits": "اعتبارها",
"faq": "سوالات پرتکرار",
"access_token": "توکن دسترسی",
"preferences": "ترجیحات",
"timeline": "سیر زمان گفتگو‌ها",
"privacy": "حریم خصوصی",
"camera": "دوربین",
"microphone": "میکروفون",
"emoji": "شکلک",
"random": "تصادفی",
"support": "پشتیبانی",
"space": "فضای کاری"
}, },
"action": { "action": {
"continue": "ادامه", "continue": "ادامه",
@ -2592,7 +2577,20 @@
"cancel": "لغو", "cancel": "لغو",
"back": "بازگشت", "back": "بازگشت",
"add": "افزودن", "add": "افزودن",
"accept": "پذیرفتن" "accept": "پذیرفتن",
"disconnect": "قطع شو",
"change": "تغییر بده",
"subscribe": "اضافه‌شدن",
"unsubscribe": "لغو اشتراک",
"approve": "تایید",
"complete": "تکمیل",
"revoke": "برگرداندن",
"show_all": "نمایش همه",
"review": "بازبینی",
"restore": "بازیابی",
"play": "اجرا کردن",
"pause": "متوقف‌کردن",
"register": "ایجاد حساب کاربری"
}, },
"a11y": { "a11y": {
"user_menu": "منوی کاربر" "user_menu": "منوی کاربر"
@ -2632,7 +2630,9 @@
"default": "پیشفرض", "default": "پیشفرض",
"restricted": "ممنوع", "restricted": "ممنوع",
"moderator": "معاون", "moderator": "معاون",
"admin": "ادمین" "admin": "ادمین",
"custom": "%(level)s دلخواه",
"mod": "معاون"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "برای گزارش مشکلات امنیتی مربوط به ماتریکس، لطفا سایت Matrix.org بخش <a>Security Disclosure Policy</a> را مطالعه فرمائید.", "matrix_security_issue": "برای گزارش مشکلات امنیتی مربوط به ماتریکس، لطفا سایت Matrix.org بخش <a>Security Disclosure Policy</a> را مطالعه فرمائید.",

View file

@ -13,8 +13,6 @@
"No media permissions": "Ei mediaoikeuksia", "No media permissions": "Ei mediaoikeuksia",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Voit joutua antamaan %(brand)sille luvan mikrofonin/kameran käyttöön", "You may need to manually permit %(brand)s to access your microphone/webcam": "Voit joutua antamaan %(brand)sille luvan mikrofonin/kameran käyttöön",
"Default Device": "Oletuslaite", "Default Device": "Oletuslaite",
"Microphone": "Mikrofoni",
"Camera": "Kamera",
"Advanced": "Lisäasetukset", "Advanced": "Lisäasetukset",
"Always show message timestamps": "Näytä aina viestien aikaleimat", "Always show message timestamps": "Näytä aina viestien aikaleimat",
"Authentication": "Tunnistautuminen", "Authentication": "Tunnistautuminen",
@ -47,7 +45,6 @@
"Download %(text)s": "Lataa %(text)s", "Download %(text)s": "Lataa %(text)s",
"Email": "Sähköposti", "Email": "Sähköposti",
"Email address": "Sähköpostiosoite", "Email address": "Sähköpostiosoite",
"Emoji": "Emoji",
"Enter passphrase": "Syötä salalause", "Enter passphrase": "Syötä salalause",
"Error decrypting attachment": "Virhe purettaessa liitteen salausta", "Error decrypting attachment": "Virhe purettaessa liitteen salausta",
"Export": "Vie", "Export": "Vie",
@ -90,7 +87,6 @@
"Phone": "Puhelin", "Phone": "Puhelin",
"Profile": "Profiili", "Profile": "Profiili",
"Reason": "Syy", "Reason": "Syy",
"Register": "Rekisteröidy",
"Reject invitation": "Hylkää kutsu", "Reject invitation": "Hylkää kutsu",
"Return to login screen": "Palaa kirjautumissivulle", "Return to login screen": "Palaa kirjautumissivulle",
"%(brand)s version:": "%(brand)s-versio:", "%(brand)s version:": "%(brand)s-versio:",
@ -551,11 +547,9 @@
"Language and region": "Kieli ja alue", "Language and region": "Kieli ja alue",
"Account management": "Tilin hallinta", "Account management": "Tilin hallinta",
"Composer": "Viestin kirjoitus", "Composer": "Viestin kirjoitus",
"Preferences": "Valinnat",
"Voice & Video": "Ääni ja video", "Voice & Video": "Ääni ja video",
"Help & About": "Ohje ja tietoja", "Help & About": "Ohje ja tietoja",
"Versions": "Versiot", "Versions": "Versiot",
"FAQ": "Usein kysytyt kysymykset",
"Send analytics data": "Lähetä analytiikkatietoja", "Send analytics data": "Lähetä analytiikkatietoja",
"No Audio Outputs detected": "Äänen ulostuloja ei havaittu", "No Audio Outputs detected": "Äänen ulostuloja ei havaittu",
"Audio Output": "Äänen ulostulo", "Audio Output": "Äänen ulostulo",
@ -566,7 +560,6 @@
"Success!": "Onnistui!", "Success!": "Onnistui!",
"Create account": "Luo tili", "Create account": "Luo tili",
"Sign in with single sign-on": "Kirjaudu sisään käyttäen kertakirjautumista", "Sign in with single sign-on": "Kirjaudu sisään käyttäen kertakirjautumista",
"Guest": "Vieras",
"Terms and Conditions": "Käyttöehdot", "Terms and Conditions": "Käyttöehdot",
"Couldn't load page": "Sivun lataaminen ei onnistunut", "Couldn't load page": "Sivun lataaminen ei onnistunut",
"Email (optional)": "Sähköposti (valinnainen)", "Email (optional)": "Sähköposti (valinnainen)",
@ -594,7 +587,6 @@
"The conversation continues here.": "Keskustelu jatkuu täällä.", "The conversation continues here.": "Keskustelu jatkuu täällä.",
"Share Link to User": "Jaa linkki käyttäjään", "Share Link to User": "Jaa linkki käyttäjään",
"Muted Users": "Mykistetyt käyttäjät", "Muted Users": "Mykistetyt käyttäjät",
"Timeline": "Aikajana",
"Display Name": "Näyttönimi", "Display Name": "Näyttönimi",
"Phone Number": "Puhelinnumero", "Phone Number": "Puhelinnumero",
"Restore from Backup": "Palauta varmuuskopiosta", "Restore from Backup": "Palauta varmuuskopiosta",
@ -665,7 +657,6 @@
"Start using Key Backup": "Aloita avainvarmuuskopion käyttö", "Start using Key Backup": "Aloita avainvarmuuskopion käyttö",
"Unable to verify phone number.": "Puhelinnumeron vahvistaminen epäonnistui.", "Unable to verify phone number.": "Puhelinnumeron vahvistaminen epäonnistui.",
"Verification code": "Varmennuskoodi", "Verification code": "Varmennuskoodi",
"Credits": "Maininnat",
"For help with using %(brand)s, click <a>here</a>.": "Saadaksesi apua %(brand)sin käyttämisessä, napsauta <a>tästä</a>.", "For help with using %(brand)s, click <a>here</a>.": "Saadaksesi apua %(brand)sin käyttämisessä, napsauta <a>tästä</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Saadaksesi apua %(brand)sin käytössä, napsauta <a>tästä</a> tai aloita keskustelu bottimme kanssa alla olevasta painikkeesta.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Saadaksesi apua %(brand)sin käytössä, napsauta <a>tästä</a> tai aloita keskustelu bottimme kanssa alla olevasta painikkeesta.",
"Autocomplete delay (ms)": "Automaattisen täydennyksen viive (ms)", "Autocomplete delay (ms)": "Automaattisen täydennyksen viive (ms)",
@ -686,7 +677,6 @@
"Missing roomId.": "roomId puuttuu.", "Missing roomId.": "roomId puuttuu.",
"Forces the current outbound group session in an encrypted room to be discarded": "Pakottaa hylkäämään nykyisen ulospäin suuntautuvan ryhmäistunnon salatussa huoneessa", "Forces the current outbound group session in an encrypted room to be discarded": "Pakottaa hylkäämään nykyisen ulospäin suuntautuvan ryhmäistunnon salatussa huoneessa",
"Enable widget screenshots on supported widgets": "Ota sovelmien kuvankaappaukset käyttöön tuetuissa sovelmissa", "Enable widget screenshots on supported widgets": "Ota sovelmien kuvankaappaukset käyttöön tuetuissa sovelmissa",
"Legal": "Lakitekstit",
"This event could not be displayed": "Tätä tapahtumaa ei voitu näyttää", "This event could not be displayed": "Tätä tapahtumaa ei voitu näyttää",
"Demote yourself?": "Alenna itsesi?", "Demote yourself?": "Alenna itsesi?",
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Et voi perua tätä muutosta, koska olet alentamassa itseäsi. Jos olet viimeinen oikeutettu henkilö tässä huoneessa, oikeuksia ei voi enää saada takaisin.", "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the room it will be impossible to regain privileges.": "Et voi perua tätä muutosta, koska olet alentamassa itseäsi. Jos olet viimeinen oikeutettu henkilö tässä huoneessa, oikeuksia ei voi enää saada takaisin.",
@ -743,7 +733,6 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Varoitus</b>: sinun pitäisi ottaa avainvarmuuskopio käyttöön vain luotetulla tietokoneella.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Varoitus</b>: sinun pitäisi ottaa avainvarmuuskopio käyttöön vain luotetulla tietokoneella.",
"Please review and accept all of the homeserver's policies": "Tarkistathan tämän kotipalvelimen käytännöt", "Please review and accept all of the homeserver's policies": "Tarkistathan tämän kotipalvelimen käytännöt",
"Please review and accept the policies of this homeserver:": "Tarkistathan tämän kotipalvelimen käytännöt:", "Please review and accept the policies of this homeserver:": "Tarkistathan tämän kotipalvelimen käytännöt:",
"Change": "Muuta",
"Join millions for free on the largest public server": "Liity ilmaiseksi miljoonien joukkoon suurimmalla julkisella palvelimella", "Join millions for free on the largest public server": "Liity ilmaiseksi miljoonien joukkoon suurimmalla julkisella palvelimella",
"Other": "Muut", "Other": "Muut",
"Can't leave Server Notices room": "Palvelinilmoitushuonetta ei voitu jättää", "Can't leave Server Notices room": "Palvelinilmoitushuonetta ei voitu jättää",
@ -877,7 +866,6 @@
"Message edits": "Viestin muokkaukset", "Message edits": "Viestin muokkaukset",
"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:": "Tämän huoneen päivittäminen edellyttää huoneen nykyisen instanssin sulkemista ja uuden huoneen luomista sen tilalle. Jotta tämä kävisi huoneen jäsenten kannalta mahdollisimman sujuvasti, teemme seuraavaa:", "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:": "Tämän huoneen päivittäminen edellyttää huoneen nykyisen instanssin sulkemista ja uuden huoneen luomista sen tilalle. Jotta tämä kävisi huoneen jäsenten kannalta mahdollisimman sujuvasti, teemme seuraavaa:",
"Upload all": "Lähetä kaikki palvelimelle", "Upload all": "Lähetä kaikki palvelimelle",
"Show all": "Näytä kaikki",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s eivät tehneet muutoksia %(count)s kertaa", "other": "%(severalUsers)s eivät tehneet muutoksia %(count)s kertaa",
"one": "%(severalUsers)s eivät tehneet muutoksia" "one": "%(severalUsers)s eivät tehneet muutoksia"
@ -914,7 +902,6 @@
"Unable to share phone number": "Puhelinnumeroa ei voi jakaa", "Unable to share phone number": "Puhelinnumeroa ei voi jakaa",
"Checking server": "Tarkistetaan palvelinta", "Checking server": "Tarkistetaan palvelinta",
"Disconnect from the identity server <idserver />?": "Katkaise yhteys identiteettipalvelimeen <idserver />?", "Disconnect from the identity server <idserver />?": "Katkaise yhteys identiteettipalvelimeen <idserver />?",
"Disconnect": "Katkaise yhteys",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Käytät palvelinta <server></server> tuntemiesi henkilöiden löytämiseen ja löydetyksi tulemiseen. Voit vaihtaa identiteettipalvelintasi alla.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Käytät palvelinta <server></server> tuntemiesi henkilöiden löytämiseen ja löydetyksi tulemiseen. Voit vaihtaa identiteettipalvelintasi alla.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Et käytä tällä hetkellä identiteettipalvelinta. Lisää identiteettipalvelin alle löytääksesi tuntemiasi henkilöitä ja tullaksesi löydetyksi.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Et käytä tällä hetkellä identiteettipalvelinta. Lisää identiteettipalvelin alle löytääksesi tuntemiasi henkilöitä ja tullaksesi löydetyksi.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Yhteyden katkaiseminen identiteettipalvelimeesi tarkoittaa, että muut käyttäjät eivät löydä sinua etkä voi kutsua muita sähköpostin tai puhelinnumeron perusteella.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Yhteyden katkaiseminen identiteettipalvelimeesi tarkoittaa, että muut käyttäjät eivät löydä sinua etkä voi kutsua muita sähköpostin tai puhelinnumeron perusteella.",
@ -1040,11 +1027,8 @@
"Verify the link in your inbox": "Varmista sähköpostiisi saapunut linkki", "Verify the link in your inbox": "Varmista sähköpostiisi saapunut linkki",
"Unread messages.": "Lukemattomat viestit.", "Unread messages.": "Lukemattomat viestit.",
"Message Actions": "Viestitoiminnot", "Message Actions": "Viestitoiminnot",
"Custom (%(level)s)": "Mukautettu (%(level)s)",
"None": "Ei mitään", "None": "Ei mitään",
"Unsubscribe": "Lopeta tilaus",
"View rules": "Näytä säännöt", "View rules": "Näytä säännöt",
"Subscribe": "Tilaa",
"Any of the following data may be shared:": "Seuraavat tiedot saatetaan jakaa:", "Any of the following data may be shared:": "Seuraavat tiedot saatetaan jakaa:",
"Your display name": "Näyttönimesi", "Your display name": "Näyttönimesi",
"Your user ID": "Käyttäjätunnuksesi", "Your user ID": "Käyttäjätunnuksesi",
@ -1082,8 +1066,6 @@
"If this isn't what you want, please use a different tool to ignore users.": "Jos et halua tätä, käytä eri työkalua käyttäjien sivuuttamiseen.", "If this isn't what you want, please use a different tool to ignore users.": "Jos et halua tätä, käytä eri työkalua käyttäjien sivuuttamiseen.",
"Read Marker lifetime (ms)": "Viestin luetuksi merkkaamisen kesto (ms)", "Read Marker lifetime (ms)": "Viestin luetuksi merkkaamisen kesto (ms)",
"Click the link in the email you received to verify and then click continue again.": "Napsauta lähettämässämme sähköpostissa olevaa linkkiä vahvistaaksesi tunnuksesi. Napsauta sen jälkeen tällä sivulla olevaa painiketta ”Jatka”.", "Click the link in the email you received to verify and then click continue again.": "Napsauta lähettämässämme sähköpostissa olevaa linkkiä vahvistaaksesi tunnuksesi. Napsauta sen jälkeen tällä sivulla olevaa painiketta ”Jatka”.",
"Complete": "Valmis",
"Revoke": "Kumoa",
"Discovery options will appear once you have added an email above.": "Etsinnän asetukset näkyvät sen jälkeen, kun olet lisännyt sähköpostin.", "Discovery options will appear once you have added an email above.": "Etsinnän asetukset näkyvät sen jälkeen, kun olet lisännyt sähköpostin.",
"Please enter verification code sent via text.": "Syötä tekstiviestillä saamasi varmennuskoodi.", "Please enter verification code sent via text.": "Syötä tekstiviestillä saamasi varmennuskoodi.",
"Discovery options will appear once you have added a phone number above.": "Etsinnän asetukset näkyvät sen jälkeen, kun olet lisännyt puhelinnumeron.", "Discovery options will appear once you have added a phone number above.": "Etsinnän asetukset näkyvät sen jälkeen, kun olet lisännyt puhelinnumeron.",
@ -1216,7 +1198,6 @@
"We couldn't invite those users. Please check the users you want to invite and try again.": "Emme voineet kutsua kyseisiä käyttäjiä. Tarkista käyttäjät, jotka haluat kutsua ja yritä uudelleen.", "We couldn't invite those users. Please check the users you want to invite and try again.": "Emme voineet kutsua kyseisiä käyttäjiä. Tarkista käyttäjät, jotka haluat kutsua ja yritä uudelleen.",
"Confirm your identity by entering your account password below.": "Vahvista henkilöllisyytesi syöttämällä tilisi salasana alle.", "Confirm your identity by entering your account password below.": "Vahvista henkilöllisyytesi syöttämällä tilisi salasana alle.",
"Enter your account password to confirm the upgrade:": "Syötä tilisi salasana vahvistaaksesi päivityksen:", "Enter your account password to confirm the upgrade:": "Syötä tilisi salasana vahvistaaksesi päivityksen:",
"Restore": "Palauta",
"Not currently indexing messages for any room.": "Minkään huoneen viestejä ei tällä hetkellä indeksoida.", "Not currently indexing messages for any room.": "Minkään huoneen viestejä ei tällä hetkellä indeksoida.",
"Space used:": "Käytetty tila:", "Space used:": "Käytetty tila:",
"Indexed messages:": "Indeksoidut viestit:", "Indexed messages:": "Indeksoidut viestit:",
@ -1267,7 +1248,6 @@
"They match": "Ne täsmäävät", "They match": "Ne täsmäävät",
"They don't match": "Ne eivät täsmää", "They don't match": "Ne eivät täsmää",
"Other users may not trust it": "Muut eivät välttämättä luota siihen", "Other users may not trust it": "Muut eivät välttämättä luota siihen",
"Review": "Katselmoi",
"This bridge was provisioned by <user />.": "Tämän sillan tarjoaa käyttäjä <user />.", "This bridge was provisioned by <user />.": "Tämän sillan tarjoaa käyttäjä <user />.",
"This bridge is managed by <user />.": "Tätä siltaa hallinnoi käyttäjä <user />.", "This bridge is managed by <user />.": "Tätä siltaa hallinnoi käyttäjä <user />.",
"Theme added!": "Teema lisätty!", "Theme added!": "Teema lisätty!",
@ -1296,7 +1276,6 @@
"Toggle microphone mute": "Mikrofonin mykistys päälle/pois", "Toggle microphone mute": "Mikrofonin mykistys päälle/pois",
"Activate selected button": "Aktivoi valittu painike", "Activate selected button": "Aktivoi valittu painike",
"Cancel autocomplete": "Peruuta automaattinen täydennys", "Cancel autocomplete": "Peruuta automaattinen täydennys",
"Space": "Avaruus",
"Use Single Sign On to continue": "Jatka kertakirjautumista käyttäen", "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.", "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", "Single Sign On": "Kertakirjautuminen",
@ -1468,7 +1447,6 @@
"one": "Näytä %(count)s lisää", "one": "Näytä %(count)s lisää",
"other": "Näytä %(count)s lisää" "other": "Näytä %(count)s lisää"
}, },
"Mod": "Valvoja",
"Read Marker off-screen lifetime (ms)": "Viestin luetuksi merkkaamisen kesto, kun Element ei ole näkyvissä (ms)", "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", "Add widgets, bridges & bots": "Lisää sovelmia, siltoja ja botteja",
"Edit widgets, bridges & bots": "Muokkaa sovelmia, siltoja ja botteja", "Edit widgets, bridges & bots": "Muokkaa sovelmia, siltoja ja botteja",
@ -1504,7 +1482,6 @@
"This is the beginning of your direct message history with <displayName/>.": "Tästä alkaa yksityisviestihistoriasi käyttäjän <displayName/> kanssa.", "This is the beginning of your direct message history with <displayName/>.": "Tästä alkaa yksityisviestihistoriasi käyttäjän <displayName/> kanssa.",
"Only the two of you are in this conversation, unless either of you invites anyone to join.": "Vain te kaksi olette tässä keskustelussa, ellei jompi kumpi kutsu muita.", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "Vain te kaksi olette tässä keskustelussa, ellei jompi kumpi kutsu muita.",
"Remove messages sent by others": "Poista toisten lähettämät viestit", "Remove messages sent by others": "Poista toisten lähettämät viestit",
"Privacy": "Tietosuoja",
"not ready": "ei valmis", "not ready": "ei valmis",
"ready": "valmis", "ready": "valmis",
"unexpected type": "odottamaton tyyppi", "unexpected type": "odottamaton tyyppi",
@ -1527,7 +1504,6 @@
"Now, let's help you get started": "Autetaanpa sinut alkuun", "Now, let's help you get started": "Autetaanpa sinut alkuun",
"Go to Home View": "Siirry kotinäkymään", "Go to Home View": "Siirry kotinäkymään",
"Decline All": "Kieltäydy kaikista", "Decline All": "Kieltäydy kaikista",
"Approve": "Hyväksy",
"Your area is experiencing difficulties connecting to the internet.": "Alueellasi on ongelmia internet-yhteyksissä.", "Your area is experiencing difficulties connecting to the internet.": "Alueellasi on ongelmia internet-yhteyksissä.",
"The server is offline.": "Palvelin ei ole verkossa.", "The server is offline.": "Palvelin ei ole verkossa.",
"Your firewall or anti-virus is blocking the request.": "Palomuurisi tai virustentorjuntaohjelmasi estää pyynnön.", "Your firewall or anti-virus is blocking the request.": "Palomuurisi tai virustentorjuntaohjelmasi estää pyynnön.",
@ -2022,7 +1998,6 @@
"You can add more later too, including already existing ones.": "Voit lisätä niitä myöhemmin, mukaan lukien olemassa olevia.", "You can add more later too, including already existing ones.": "Voit lisätä niitä myöhemmin, mukaan lukien olemassa olevia.",
"Let's create a room for each of them.": "Tehdään huone jokaiselle.", "Let's create a room for each of them.": "Tehdään huone jokaiselle.",
"What do you want to organise?": "Mitä haluat järjestää?", "What do you want to organise?": "Mitä haluat järjestää?",
"Random": "Satunnainen",
"Search names and descriptions": "Etsi nimistä ja kuvauksista", "Search names and descriptions": "Etsi nimistä ja kuvauksista",
"Failed to remove some rooms. Try again later": "Joitakin huoneita ei voitu poistaa. Yritä myöhemmin uudelleen", "Failed to remove some rooms. Try again later": "Joitakin huoneita ei voitu poistaa. Yritä myöhemmin uudelleen",
"Select a room below first": "Valitse ensin huone alta", "Select a room below first": "Valitse ensin huone alta",
@ -2083,12 +2058,9 @@
"Just me": "Vain minä", "Just me": "Vain minä",
"Go to my space": "Mene avaruuteeni", "Go to my space": "Mene avaruuteeni",
"Go to my first room": "Mene ensimmäiseen huoneeseeni", "Go to my first room": "Mene ensimmäiseen huoneeseeni",
"Support": "Tuki",
"Rooms and spaces": "Huoneet ja avaruudet", "Rooms and spaces": "Huoneet ja avaruudet",
"Unable to copy a link to the room to the clipboard.": "Huoneen linkin kopiointi leikepöydälle ei onnistu.", "Unable to copy a link to the room to the clipboard.": "Huoneen linkin kopiointi leikepöydälle ei onnistu.",
"Unable to copy room link": "Huoneen linkin kopiointi ei onnistu", "Unable to copy room link": "Huoneen linkin kopiointi ei onnistu",
"Play": "Toista",
"Pause": "Keskeytä",
"Error downloading audio": "Virhe ääntä ladattaessa", "Error downloading audio": "Virhe ääntä ladattaessa",
"Avatar": "Avatar", "Avatar": "Avatar",
"Join the beta": "Liity beetaan", "Join the beta": "Liity beetaan",
@ -2222,7 +2194,6 @@
"Displaying time": "Ajan näyttäminen", "Displaying time": "Ajan näyttäminen",
"Olm version:": "Olm-versio:", "Olm version:": "Olm-versio:",
"Your access token gives full access to your account. Do not share it with anyone.": "Käyttöpolettisi (ns. token) antaa täyden pääsyn tilillesi. Älä jaa sitä kenenkään kanssa.", "Your access token gives full access to your account. Do not share it with anyone.": "Käyttöpolettisi (ns. token) antaa täyden pääsyn tilillesi. Älä jaa sitä kenenkään kanssa.",
"Access Token": "Käyttöpoletti",
"Select spaces": "Valitse avaruudet", "Select spaces": "Valitse avaruudet",
"Want to add a new space instead?": "Haluatko lisätä sen sijaan uuden avaruuden?", "Want to add a new space instead?": "Haluatko lisätä sen sijaan uuden avaruuden?",
"Add existing space": "Lisää olemassa oleva avaruus", "Add existing space": "Lisää olemassa oleva avaruus",
@ -2378,7 +2349,6 @@
"Connectivity to the server has been lost": "Yhteys palvelimeen on katkennut", "Connectivity to the server has been lost": "Yhteys palvelimeen on katkennut",
"You cannot place calls in this browser.": "Et voi soittaa puheluja tässä selaimessa.", "You cannot place calls in this browser.": "Et voi soittaa puheluja tässä selaimessa.",
"Calls are unsupported": "Puhelut eivät ole tuettuja", "Calls are unsupported": "Puhelut eivät ole tuettuja",
"Rename": "Nimeä uudelleen",
"Files": "Tiedostot", "Files": "Tiedostot",
"Toggle space panel": "Avaruuspaneeli päälle/pois", "Toggle space panel": "Avaruuspaneeli päälle/pois",
"Space Autocomplete": "Avaruuksien automaattinen täydennys", "Space Autocomplete": "Avaruuksien automaattinen täydennys",
@ -2990,11 +2960,9 @@
"Ongoing call": "Käynnissä oleva puhelu", "Ongoing call": "Käynnissä oleva puhelu",
"Video call (%(brand)s)": "Videopuhelu (%(brand)s)", "Video call (%(brand)s)": "Videopuhelu (%(brand)s)",
"Video call (Jitsi)": "Videopuhelu (Jitsi)", "Video call (Jitsi)": "Videopuhelu (Jitsi)",
"View all": "Näytä kaikki",
"Security recommendations": "Turvallisuussuositukset", "Security recommendations": "Turvallisuussuositukset",
"Show QR code": "Näytä QR-koodi", "Show QR code": "Näytä QR-koodi",
"Sign in with QR code": "Kirjaudu sisään QR-koodilla", "Sign in with QR code": "Kirjaudu sisään QR-koodilla",
"Show": "Näytä",
"Filter devices": "Suodata laitteita", "Filter devices": "Suodata laitteita",
"Inactive for %(inactiveAgeDays)s days or longer": "Passiivinen %(inactiveAgeDays)s päivää tai pidempään", "Inactive for %(inactiveAgeDays)s days or longer": "Passiivinen %(inactiveAgeDays)s päivää tai pidempään",
"Inactive": "Passiivinen", "Inactive": "Passiivinen",
@ -3040,7 +3008,6 @@
"Other sessions": "Muut istunnot", "Other sessions": "Muut istunnot",
"Sessions": "Istunnot", "Sessions": "Istunnot",
"Share your activity and status with others.": "Jaa toimintasi ja tilasi muiden kanssa.", "Share your activity and status with others.": "Jaa toimintasi ja tilasi muiden kanssa.",
"Presence": "Läsnäolo",
"Spell check": "Oikeinkirjoituksen tarkistus", "Spell check": "Oikeinkirjoituksen tarkistus",
"Enable notifications for this device": "Ota ilmoitukset käyttöön tälle laitteelle", "Enable notifications for this device": "Ota ilmoitukset käyttöön tälle laitteelle",
"Turn off to disable notifications on all your devices and sessions": "Poista käytöstä, niin kaikkien laitteiden ja istuntojen ilmoitukset ovat pois päältä", "Turn off to disable notifications on all your devices and sessions": "Poista käytöstä, niin kaikkien laitteiden ja istuntojen ilmoitukset ovat pois päältä",
@ -3432,7 +3399,22 @@
"dark": "Tumma", "dark": "Tumma",
"beta": "Beeta", "beta": "Beeta",
"attachment": "Liite", "attachment": "Liite",
"appearance": "Ulkoasu" "appearance": "Ulkoasu",
"guest": "Vieras",
"legal": "Lakitekstit",
"credits": "Maininnat",
"faq": "Usein kysytyt kysymykset",
"access_token": "Käyttöpoletti",
"preferences": "Valinnat",
"presence": "Läsnäolo",
"timeline": "Aikajana",
"privacy": "Tietosuoja",
"camera": "Kamera",
"microphone": "Mikrofoni",
"emoji": "Emoji",
"random": "Satunnainen",
"support": "Tuki",
"space": "Avaruus"
}, },
"action": { "action": {
"continue": "Jatka", "continue": "Jatka",
@ -3504,7 +3486,23 @@
"back": "Takaisin", "back": "Takaisin",
"apply": "Toteuta", "apply": "Toteuta",
"add": "Lisää", "add": "Lisää",
"accept": "Hyväksy" "accept": "Hyväksy",
"disconnect": "Katkaise yhteys",
"change": "Muuta",
"subscribe": "Tilaa",
"unsubscribe": "Lopeta tilaus",
"approve": "Hyväksy",
"complete": "Valmis",
"revoke": "Kumoa",
"rename": "Nimeä uudelleen",
"view_all": "Näytä kaikki",
"show_all": "Näytä kaikki",
"show": "Näytä",
"review": "Katselmoi",
"restore": "Palauta",
"play": "Toista",
"pause": "Keskeytä",
"register": "Rekisteröidy"
}, },
"a11y": { "a11y": {
"user_menu": "Käyttäjän valikko" "user_menu": "Käyttäjän valikko"
@ -3573,7 +3571,9 @@
"default": "Oletus", "default": "Oletus",
"restricted": "Rajoitettu", "restricted": "Rajoitettu",
"moderator": "Valvoja", "moderator": "Valvoja",
"admin": "Ylläpitäjä" "admin": "Ylläpitäjä",
"custom": "Mukautettu (%(level)s)",
"mod": "Valvoja"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Jos olet tehnyt ilmoituksen ohjelmistovirheestä GitHubiin, vianjäljityslokit voivat auttaa ongelman selvittämisessä. ", "introduction": "Jos olet tehnyt ilmoituksen ohjelmistovirheestä GitHubiin, vianjäljityslokit voivat auttaa ongelman selvittämisessä. ",

View file

@ -1,7 +1,6 @@
{ {
"Displays action": "Affiche laction", "Displays action": "Affiche laction",
"Download %(text)s": "Télécharger %(text)s", "Download %(text)s": "Télécharger %(text)s",
"Emoji": "Émojis",
"Export E2E room keys": "Exporter les clés de chiffrement de salon", "Export E2E room keys": "Exporter les clés de chiffrement de salon",
"Failed to ban user": "Échec du bannissement de lutilisateur", "Failed to ban user": "Échec du bannissement de lutilisateur",
"Failed to change password. Is your password correct?": "Échec du changement de mot de passe. Votre mot de passe est-il correct ?", "Failed to change password. Is your password correct?": "Échec du changement de mot de passe. Votre mot de passe est-il correct ?",
@ -210,12 +209,9 @@
"No media permissions": "Pas de permission pour les médias", "No media permissions": "Pas de permission pour les médias",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Il est possible que vous deviez manuellement autoriser %(brand)s à accéder à votre micro/caméra", "You may need to manually permit %(brand)s to access your microphone/webcam": "Il est possible que vous deviez manuellement autoriser %(brand)s à accéder à votre micro/caméra",
"Default Device": "Appareil par défaut", "Default Device": "Appareil par défaut",
"Microphone": "Micro",
"Camera": "Caméra",
"Anyone": "Nimporte qui", "Anyone": "Nimporte qui",
"Are you sure you want to leave the room '%(roomName)s'?": "Voulez-vous vraiment quitter le salon « %(roomName)s » ?", "Are you sure you want to leave the room '%(roomName)s'?": "Voulez-vous vraiment quitter le salon « %(roomName)s » ?",
"Custom level": "Rang personnalisé", "Custom level": "Rang personnalisé",
"Register": "Sinscrire",
"You have <a>disabled</a> URL previews by default.": "Vous avez <a>désactivé</a> les aperçus dURL par défaut.", "You have <a>disabled</a> URL previews by default.": "Vous avez <a>désactivé</a> les aperçus dURL par défaut.",
"You have <a>enabled</a> URL previews by default.": "Vous avez <a>activé</a> les aperçus dURL par défaut.", "You have <a>enabled</a> URL previews by default.": "Vous avez <a>activé</a> les aperçus dURL par défaut.",
"Uploading %(filename)s": "Envoi de %(filename)s", "Uploading %(filename)s": "Envoi de %(filename)s",
@ -498,7 +494,6 @@
"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.": "Votre message na pas été envoyé car ce serveur daccueil a dépassé une de ses limites de ressources. Veuillez <a>contacter ladministrateur de votre service</a> pour continuer à lutiliser.", "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.": "Votre message na pas été envoyé car ce serveur daccueil a dépassé une de ses limites de ressources. Veuillez <a>contacter ladministrateur de votre service</a> pour continuer à lutiliser.",
"Please <a>contact your service administrator</a> to continue using this service.": "Veuillez <a>contacter ladministrateur de votre service</a> pour continuer à lutiliser.", "Please <a>contact your service administrator</a> to continue using this service.": "Veuillez <a>contacter ladministrateur de votre service</a> pour continuer à lutiliser.",
"Please contact your homeserver administrator.": "Veuillez contacter ladministrateur de votre serveur daccueil.", "Please contact your homeserver administrator.": "Veuillez contacter ladministrateur de votre serveur daccueil.",
"Legal": "Légal",
"This room has been replaced and is no longer active.": "Ce salon a été remplacé et nest plus actif.", "This room has been replaced and is no longer active.": "Ce salon a été remplacé et nest plus actif.",
"The conversation continues here.": "La discussion continue ici.", "The conversation continues here.": "La discussion continue ici.",
"This room is a continuation of another conversation.": "Ce salon est la suite dune autre discussion.", "This room is a continuation of another conversation.": "Ce salon est la suite dune autre discussion.",
@ -623,12 +618,9 @@
"For help with using %(brand)s, click <a>here</a>.": "Pour obtenir de laide sur lutilisation de %(brand)s, cliquez <a>ici</a>.", "For help with using %(brand)s, click <a>here</a>.": "Pour obtenir de laide sur lutilisation de %(brand)s, cliquez <a>ici</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pour obtenir de laide sur lutilisation de %(brand)s, cliquez <a>ici</a> ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pour obtenir de laide sur lutilisation de %(brand)s, cliquez <a>ici</a> ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.",
"Help & About": "Aide et À propos", "Help & About": "Aide et À propos",
"FAQ": "FAQ",
"Versions": "Versions", "Versions": "Versions",
"Preferences": "Préférences",
"Composer": "Compositeur", "Composer": "Compositeur",
"Room list": "Liste de salons", "Room list": "Liste de salons",
"Timeline": "Fil de discussion",
"Autocomplete delay (ms)": "Délai pour lautocomplétion (ms)", "Autocomplete delay (ms)": "Délai pour lautocomplétion (ms)",
"Chat with %(brand)s Bot": "Discuter avec le bot %(brand)s", "Chat with %(brand)s Bot": "Discuter avec le bot %(brand)s",
"Roles & Permissions": "Rôles et permissions", "Roles & Permissions": "Rôles et permissions",
@ -652,7 +644,6 @@
"Phone (optional)": "Téléphone (facultatif)", "Phone (optional)": "Téléphone (facultatif)",
"Join millions for free on the largest public server": "Rejoignez des millions dutilisateurs gratuitement sur le plus grand serveur public", "Join millions for free on the largest public server": "Rejoignez des millions dutilisateurs gratuitement sur le plus grand serveur public",
"Other": "Autre", "Other": "Autre",
"Guest": "Visiteur",
"Create account": "Créer un compte", "Create account": "Créer un compte",
"Recovery Method Removed": "Méthode de récupération supprimée", "Recovery Method Removed": "Méthode de récupération supprimée",
"If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Si vous navez pas supprimé la méthode de récupération, un attaquant peut être en train dessayer daccéder à votre compte. Modifiez le mot de passe de votre compte et configurez une nouvelle méthode de récupération dans les réglages.", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Si vous navez pas supprimé la méthode de récupération, un attaquant peut être en train dessayer daccéder à votre compte. Modifiez le mot de passe de votre compte et configurez une nouvelle méthode de récupération dans les réglages.",
@ -729,7 +720,6 @@
"Headphones": "Écouteurs", "Headphones": "Écouteurs",
"Folder": "Dossier", "Folder": "Dossier",
"This homeserver would like to make sure you are not a robot.": "Ce serveur daccueil veut sassurer que vous nêtes pas un robot.", "This homeserver would like to make sure you are not a robot.": "Ce serveur daccueil veut sassurer que vous nêtes pas un robot.",
"Change": "Changer",
"Couldn't load page": "Impossible de charger la page", "Couldn't load page": "Impossible de charger la page",
"Your password has been reset.": "Votre mot de passe a été réinitialisé.", "Your password has been reset.": "Votre mot de passe a été réinitialisé.",
"This homeserver does not support login using email address.": "Ce serveur daccueil ne prend pas en charge la connexion avec une adresse e-mail.", "This homeserver does not support login using email address.": "Ce serveur daccueil ne prend pas en charge la connexion avec une adresse e-mail.",
@ -747,7 +737,6 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Attention</b> : vous ne devriez configurer la sauvegarde des clés que depuis un ordinateur de confiance.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Attention</b> : vous ne devriez configurer la sauvegarde des clés que depuis un ordinateur de confiance.",
"Your keys are being backed up (the first backup could take a few minutes).": "Vous clés sont en cours de sauvegarde (la première sauvegarde peut prendre quelques minutes).", "Your keys are being backed up (the first backup could take a few minutes).": "Vous clés sont en cours de sauvegarde (la première sauvegarde peut prendre quelques minutes).",
"Success!": "Terminé !", "Success!": "Terminé !",
"Credits": "Crédits",
"Changes your display nickname in the current room only": "Modifie votre nom daffichage seulement dans le salon actuel", "Changes your display nickname in the current room only": "Modifie votre nom daffichage seulement dans le salon actuel",
"Show read receipts sent by other users": "Afficher les accusés de lecture envoyés par les autres utilisateurs", "Show read receipts sent by other users": "Afficher les accusés de lecture envoyés par les autres utilisateurs",
"Scissors": "Ciseaux", "Scissors": "Ciseaux",
@ -881,7 +870,6 @@
"Edited at %(date)s. Click to view edits.": "Modifié le %(date)s. Cliquer pour voir les modifications.", "Edited at %(date)s. Click to view edits.": "Modifié le %(date)s. Cliquer pour voir les modifications.",
"Message edits": "Modifications du message", "Message edits": "Modifications du message",
"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:": "La mise à niveau de ce salon nécessite de fermer linstance actuelle du salon et de créer un nouveau salon à la place. Pour fournir la meilleure expérience possible aux utilisateurs, nous allons :", "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:": "La mise à niveau de ce salon nécessite de fermer linstance actuelle du salon et de créer un nouveau salon à la place. Pour fournir la meilleure expérience possible aux utilisateurs, nous allons :",
"Show all": "Tout afficher",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s na fait aucun changement %(count)s fois", "other": "%(severalUsers)s na fait aucun changement %(count)s fois",
"one": "%(severalUsers)s nont fait aucun changement" "one": "%(severalUsers)s nont fait aucun changement"
@ -918,7 +906,6 @@
"Always show the window menu bar": "Toujours afficher la barre de menu de la fenêtre", "Always show the window menu bar": "Toujours afficher la barre de menu de la fenêtre",
"Unable to revoke sharing for email address": "Impossible de révoquer le partage pour ladresse e-mail", "Unable to revoke sharing for email address": "Impossible de révoquer le partage pour ladresse e-mail",
"Unable to share email address": "Impossible de partager ladresse e-mail", "Unable to share email address": "Impossible de partager ladresse e-mail",
"Revoke": "Révoquer",
"Discovery options will appear once you have added an email above.": "Les options de découverte apparaîtront quand vous aurez ajouté une adresse e-mail ci-dessus.", "Discovery options will appear once you have added an email above.": "Les options de découverte apparaîtront quand vous aurez ajouté une adresse e-mail ci-dessus.",
"Unable to revoke sharing for phone number": "Impossible de révoquer le partage pour le numéro de téléphone", "Unable to revoke sharing for phone number": "Impossible de révoquer le partage pour le numéro de téléphone",
"Unable to share phone number": "Impossible de partager le numéro de téléphone", "Unable to share phone number": "Impossible de partager le numéro de téléphone",
@ -928,7 +915,6 @@
"Command Help": "Aide aux commandes", "Command Help": "Aide aux commandes",
"Checking server": "Vérification du serveur", "Checking server": "Vérification du serveur",
"Disconnect from the identity server <idserver />?": "Se déconnecter du serveur didentité <idserver /> ?", "Disconnect from the identity server <idserver />?": "Se déconnecter du serveur didentité <idserver /> ?",
"Disconnect": "Se déconnecter",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Vous utilisez actuellement <server></server> pour découvrir et être découvert par des contacts existants que vous connaissez. Vous pouvez changer votre serveur didentité ci-dessous.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Vous utilisez actuellement <server></server> pour découvrir et être découvert par des contacts existants que vous connaissez. Vous pouvez changer votre serveur didentité ci-dessous.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Vous nutilisez actuellement aucun serveur didentité. Pour découvrir et être découvert par les contacts existants que vous connaissez, ajoutez-en un ci-dessous.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Vous nutilisez actuellement aucun serveur didentité. Pour découvrir et être découvert par les contacts existants que vous connaissez, ajoutez-en un ci-dessous.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "La déconnexion de votre serveur didentité signifie que vous ne serez plus découvrable par dautres utilisateurs et que vous ne pourrez plus faire dinvitation par e-mail ou téléphone.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "La déconnexion de votre serveur didentité signifie que vous ne serez plus découvrable par dautres utilisateurs et que vous ne pourrez plus faire dinvitation par e-mail ou téléphone.",
@ -985,7 +971,6 @@
"Remove recent messages": "Supprimer les messages récents", "Remove recent messages": "Supprimer les messages récents",
"Explore rooms": "Parcourir les salons", "Explore rooms": "Parcourir les salons",
"Verify the link in your inbox": "Vérifiez le lien dans votre boîte de réception", "Verify the link in your inbox": "Vérifiez le lien dans votre boîte de réception",
"Complete": "Terminer",
"Please fill why you're reporting.": "Dites-nous pourquoi vous envoyez un signalement.", "Please fill why you're reporting.": "Dites-nous pourquoi vous envoyez un signalement.",
"Report Content to Your Homeserver Administrator": "Signaler le contenu à ladministrateur de votre serveur daccueil", "Report Content to Your Homeserver Administrator": "Signaler le contenu à ladministrateur de votre serveur daccueil",
"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 à ladministrateur de votre serveur daccueil. Si les messages dans ce salon sont chiffrés, ladministrateur ne pourra pas lire le texte du message ou voir les fichiers ou les 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.": "Le signalement de ce message enverra son « event ID » unique à ladministrateur de votre serveur daccueil. Si les messages dans ce salon sont chiffrés, ladministrateur ne pourra pas lire le texte du message ou voir les fichiers ou les images.",
@ -1077,7 +1062,6 @@
"You have not ignored anyone.": "Vous navez ignoré personne.", "You have not ignored anyone.": "Vous navez ignoré personne.",
"You are currently ignoring:": "Vous ignorez actuellement :", "You are currently ignoring:": "Vous ignorez actuellement :",
"You are not subscribed to any lists": "Vous nêtes inscrit à aucune liste", "You are not subscribed to any lists": "Vous nêtes inscrit à aucune liste",
"Unsubscribe": "Se désinscrire",
"View rules": "Voir les règles", "View rules": "Voir les règles",
"You are currently subscribed to:": "Vous êtes actuellement inscrit à :", "You are currently subscribed to:": "Vous êtes actuellement inscrit à :",
"⚠ These settings are meant for advanced users.": "⚠ Ces paramètres sont prévus pour les utilisateurs avancés.", "⚠ These settings are meant for advanced users.": "⚠ Ces paramètres sont prévus pour les utilisateurs avancés.",
@ -1088,9 +1072,7 @@
"Subscribed lists": "Listes souscrites", "Subscribed lists": "Listes souscrites",
"Subscribing to a ban list will cause you to join it!": "En vous inscrivant à une liste de bannissement, vous la rejoindrez !", "Subscribing to a ban list will cause you to join it!": "En vous inscrivant à une liste de bannissement, vous la rejoindrez !",
"If this isn't what you want, please use a different tool to ignore users.": "Si ce nest pas ce que vous voulez, utilisez un autre outil pour ignorer les utilisateurs.", "If this isn't what you want, please use a different tool to ignore users.": "Si ce nest pas ce que vous voulez, utilisez un autre outil pour ignorer les utilisateurs.",
"Subscribe": "Sinscrire",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Vous avez ignoré cet utilisateur, donc ses messages sont cachés. <a>Les montrer quand même.</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Vous avez ignoré cet utilisateur, donc ses messages sont cachés. <a>Les montrer quand même.</a>",
"Custom (%(level)s)": "Personnalisé (%(level)s)",
"Trusted": "Fiable", "Trusted": "Fiable",
"Not trusted": "Non fiable", "Not trusted": "Non fiable",
"Messages in this room are end-to-end encrypted.": "Les messages dans ce salon sont chiffrés de bout en bout.", "Messages in this room are end-to-end encrypted.": "Les messages dans ce salon sont chiffrés de bout en bout.",
@ -1171,7 +1153,6 @@
"Failed to find the following users": "Impossible de trouver les utilisateurs suivants", "Failed to find the following users": "Impossible de trouver les utilisateurs suivants",
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Les utilisateurs suivant nexistent peut-être pas ou ne sont pas valides, et ne peuvent pas être invités : %(csvNames)s", "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Les utilisateurs suivant nexistent peut-être pas ou ne sont pas valides, et ne peuvent pas être invités : %(csvNames)s",
"Lock": "Cadenas", "Lock": "Cadenas",
"Restore": "Restaurer",
"a few seconds ago": "il y a quelques secondes", "a few seconds ago": "il y a quelques secondes",
"about a minute ago": "il y a environ une minute", "about a minute ago": "il y a environ une minute",
"%(num)s minutes ago": "il y a %(num)s minutes", "%(num)s minutes ago": "il y a %(num)s minutes",
@ -1210,7 +1191,6 @@
"Verify this session": "Vérifier cette session", "Verify this session": "Vérifier cette session",
"Encryption upgrade available": "Mise à niveau du chiffrement disponible", "Encryption upgrade available": "Mise à niveau du chiffrement disponible",
"Enable message search in encrypted rooms": "Activer la recherche de messages dans les salons chiffrés", "Enable message search in encrypted rooms": "Activer la recherche de messages dans les salons chiffrés",
"Review": "Examiner",
"Manage": "Gérer", "Manage": "Gérer",
"Securely cache encrypted messages locally for them to appear in search results.": "Mettre en cache les messages chiffrés localement et de manière sécurisée pour quils apparaissent dans les résultats de recherche.", "Securely cache encrypted messages locally for them to appear in search results.": "Mettre en cache les messages chiffrés localement et de manière sécurisée pour quils apparaissent dans les résultats de recherche.",
"%(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>.": "Il manque quelques composants à %(brand)s pour mettre en cache les messages chiffrés localement de manière sécurisée. Si vous voulez essayer cette fonctionnalité, construisez %(brand)s Desktop vous-même en <nativeLink>ajoutant les composants de recherche</nativeLink>.", "%(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>.": "Il manque quelques composants à %(brand)s pour mettre en cache les messages chiffrés localement de manière sécurisée. Si vous voulez essayer cette fonctionnalité, construisez %(brand)s Desktop vous-même en <nativeLink>ajoutant les composants de recherche</nativeLink>.",
@ -1258,7 +1238,6 @@
"This user has not verified all of their sessions.": "Cet utilisateur na pas vérifié toutes ses sessions.", "This user has not verified all of their sessions.": "Cet utilisateur na pas vérifié toutes ses sessions.",
"You have verified this user. This user has verified all of their sessions.": "Vous avez vérifié cet utilisateur. Cet utilisateur a vérifié toutes ses sessions.", "You have verified this user. This user has verified all of their sessions.": "Vous avez vérifié cet utilisateur. Cet utilisateur a vérifié toutes ses sessions.",
"Someone is using an unknown session": "Quelquun utilise une session inconnue", "Someone is using an unknown session": "Quelquun utilise une session inconnue",
"Mod": "Modérateur",
"Encrypted by an unverified session": "Chiffré par une session non vérifiée", "Encrypted by an unverified session": "Chiffré par une session non vérifiée",
"Encrypted by a deleted session": "Chiffré par une session supprimée", "Encrypted by a deleted session": "Chiffré par une session supprimée",
"%(count)s sessions": { "%(count)s sessions": {
@ -1375,7 +1354,6 @@
"Close dialog or context menu": "Fermer le dialogue ou le menu contextuel", "Close dialog or context menu": "Fermer le dialogue ou le menu contextuel",
"Activate selected button": "Activer le bouton sélectionné", "Activate selected button": "Activer le bouton sélectionné",
"Cancel autocomplete": "Annuler lautocomplétion", "Cancel autocomplete": "Annuler lautocomplétion",
"Space": "Espace",
"Confirm by comparing the following with the User Settings in your other session:": "Confirmez en comparant ceci avec les paramètres utilisateurs de votre autre session :", "Confirm by comparing the following with the User Settings in your other session:": "Confirmez en comparant ceci avec les paramètres utilisateurs de votre autre session :",
"Confirm this user's session by comparing the following with their User Settings:": "Confirmez la session de cet utilisateur en comparant ceci avec ses paramètres utilisateur :", "Confirm this user's session by comparing the following with their User Settings:": "Confirmez la session de cet utilisateur en comparant ceci avec ses paramètres utilisateur :",
"If they don't match, the security of your communication may be compromised.": "Sils ne correspondent pas, la sécurité de vos communications est peut-être compromise.", "If they don't match, the security of your communication may be compromised.": "Sils ne correspondent pas, la sécurité de vos communications est peut-être compromise.",
@ -1591,7 +1569,6 @@
"Show Widgets": "Afficher les widgets", "Show Widgets": "Afficher les widgets",
"Hide Widgets": "Masquer les widgets", "Hide Widgets": "Masquer les widgets",
"Remove messages sent by others": "Supprimer les messages envoyés par dautres", "Remove messages sent by others": "Supprimer les messages envoyés par dautres",
"Privacy": "Vie privée",
"Secure Backup": "Sauvegarde sécurisée", "Secure Backup": "Sauvegarde sécurisée",
"Algorithm:": "Algorithme :", "Algorithm:": "Algorithme :",
"Set up Secure Backup": "Configurer la sauvegarde sécurisée", "Set up Secure Backup": "Configurer la sauvegarde sécurisée",
@ -2036,7 +2013,6 @@
"The widget will verify your user ID, but won't be able to perform actions for you:": "Ce widget vérifiera votre identifiant dutilisateur, mais ne pourra pas effectuer des actions en votre nom :", "The widget will verify your user ID, but won't be able to perform actions for you:": "Ce widget vérifiera votre identifiant dutilisateur, mais ne pourra pas effectuer des actions en votre nom :",
"Allow this widget to verify your identity": "Autoriser ce widget à vérifier votre identité", "Allow this widget to verify your identity": "Autoriser ce widget à vérifier votre identité",
"Decline All": "Tout refuser", "Decline All": "Tout refuser",
"Approve": "Approuver",
"This widget would like to:": "Le widget voudrait :", "This widget would like to:": "Le widget voudrait :",
"Approve widget permissions": "Approuver les permissions du widget", "Approve widget permissions": "Approuver les permissions du widget",
"There was an error finding this widget.": "Erreur lors de la récupération de ce widget.", "There was an error finding this widget.": "Erreur lors de la récupération de ce widget.",
@ -2100,8 +2076,6 @@
"Who are you working with?": "Avec qui travaillez-vous ?", "Who are you working with?": "Avec qui travaillez-vous ?",
"Skip for now": "Passer pour linstant", "Skip for now": "Passer pour linstant",
"Failed to create initial space rooms": "Échec de la création des salons initiaux de lespace", "Failed to create initial space rooms": "Échec de la création des salons initiaux de lespace",
"Support": "Prise en charge",
"Random": "Aléatoire",
"Welcome to <name/>": "Bienvenue dans <name/>", "Welcome to <name/>": "Bienvenue dans <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s membre", "one": "%(count)s membre",
@ -2218,8 +2192,6 @@
"other": "Afficher les %(count)s membres" "other": "Afficher les %(count)s membres"
}, },
"Failed to send": "Échec de lenvoi", "Failed to send": "Échec de lenvoi",
"Play": "Lecture",
"Pause": "Pause",
"Enter your Security Phrase a second time to confirm it.": "Saisissez à nouveau votre phrase secrète pour la confirmer.", "Enter your Security Phrase a second time to confirm it.": "Saisissez à nouveau votre phrase secrète pour la confirmer.",
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Choisissez des salons ou conversations à ajouter. Cest un espace rien que pour vous, personne nen sera informé. Vous pourrez en ajouter plus tard.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Choisissez des salons ou conversations à ajouter. Cest un espace rien que pour vous, personne nen sera informé. Vous pourrez en ajouter plus tard.",
"What do you want to organise?": "Que voulez-vous organiser ?", "What do you want to organise?": "Que voulez-vous organiser ?",
@ -2240,7 +2212,6 @@
"No microphone found": "Aucun microphone détecté", "No microphone found": "Aucun microphone détecté",
"We were unable to access your microphone. Please check your browser settings and try again.": "Nous navons pas pu accéder à votre microphone. Merci de vérifier les paramètres de votre navigateur et de réessayer.", "We were unable to access your microphone. Please check your browser settings and try again.": "Nous navons pas pu accéder à votre microphone. Merci de vérifier les paramètres de votre navigateur et de réessayer.",
"Unable to access your microphone": "Impossible daccéder à votre microphone", "Unable to access your microphone": "Impossible daccéder à votre microphone",
"Access Token": "Jeton daccès",
"Please enter a name for the space": "Veuillez renseigner un nom pour lespace", "Please enter a name for the space": "Veuillez renseigner un nom pour lespace",
"Connecting": "Connexion", "Connecting": "Connexion",
"Message search initialisation failed": "Échec de linitialisation de la recherche de message", "Message search initialisation failed": "Échec de linitialisation de la recherche de message",
@ -2607,7 +2578,6 @@
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Ce salon ne transmet les messages à aucune plateforme. <a>En savoir plus.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Ce salon ne transmet les messages à aucune plateforme. <a>En savoir plus.</a>",
"Use high contrast": "Utiliser un contraste élevé", "Use high contrast": "Utiliser un contraste élevé",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Ce salon se trouve dans certains espaces pour lesquels vous nêtes pas administrateur. Dans ces espaces, lancien salon sera toujours disponible, mais un message sera affiché pour inciter les personnes à rejoindre le nouveau salon.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Ce salon se trouve dans certains espaces pour lesquels vous nêtes pas administrateur. Dans ces espaces, lancien salon sera toujours disponible, mais un message sera affiché pour inciter les personnes à rejoindre le nouveau salon.",
"Rename": "Renommer",
"Select all": "Tout sélectionner", "Select all": "Tout sélectionner",
"Deselect all": "Tout désélectionner", "Deselect all": "Tout désélectionner",
"Sign out devices": { "Sign out devices": {
@ -3257,14 +3227,12 @@
"Community ownership": "Propriété de la communauté", "Community ownership": "Propriété de la communauté",
"Your server doesn't support disabling sending read receipts.": "Votre serveur ne supporte pas la désactivation de lenvoi des accusés de réception.", "Your server doesn't support disabling sending read receipts.": "Votre serveur ne supporte pas la désactivation de lenvoi des accusés de réception.",
"Share your activity and status with others.": "Partager votre activité et votre statut avec les autres.", "Share your activity and status with others.": "Partager votre activité et votre statut avec les autres.",
"Presence": "Présence",
"Send read receipts": "Envoyer les accusés de réception", "Send read receipts": "Envoyer les accusés de réception",
"Last activity": "Dernière activité", "Last activity": "Dernière activité",
"Current session": "Cette session", "Current session": "Cette session",
"Sessions": "Sessions", "Sessions": "Sessions",
"Interactively verify by emoji": "Vérifier de façon interactive avec des émojis", "Interactively verify by emoji": "Vérifier de façon interactive avec des émojis",
"Manually verify by text": "Vérifier manuellement avec un texte", "Manually verify by text": "Vérifier manuellement avec un texte",
"View all": "Tout voir",
"Security recommendations": "Recommandations de sécurité", "Security recommendations": "Recommandations de sécurité",
"Filter devices": "Filtrer les appareils", "Filter devices": "Filtrer les appareils",
"Inactive for %(inactiveAgeDays)s days or longer": "Inactive depuis au moins %(inactiveAgeDays)s jours", "Inactive for %(inactiveAgeDays)s days or longer": "Inactive depuis au moins %(inactiveAgeDays)s jours",
@ -3308,7 +3276,6 @@
"other": "%(user)s et %(count)s autres" "other": "%(user)s et %(count)s autres"
}, },
"%(user1)s and %(user2)s": "%(user1)s et %(user2)s", "%(user1)s and %(user2)s": "%(user1)s et %(user2)s",
"Show": "Afficher",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s ou %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s ou %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s ou %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s ou %(recoveryFile)s",
"Proxy URL": "URL du serveur mandataire (proxy)", "Proxy URL": "URL du serveur mandataire (proxy)",
@ -3723,7 +3690,6 @@
"Anyone can request to join, but admins or moderators need to grant access. You can change this later.": "Tout le monde peut demander à venir, mais un admin ou un modérateur doit autoriser laccès. Vous pouvez modifier ceci plus tard.", "Anyone can request to join, but admins or moderators need to grant access. You can change this later.": "Tout le monde peut demander à venir, mais un admin ou un modérateur doit autoriser laccès. Vous pouvez modifier ceci plus tard.",
"Thread Root ID: %(threadRootId)s": "ID du fil de discussion racine : %(threadRootId)s", "Thread Root ID: %(threadRootId)s": "ID du fil de discussion racine : %(threadRootId)s",
"The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a unique passphrase below, which will only be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "Le fichier exporté permettra à tous ceux qui peuvent le lire de déchiffrer tous les messages chiffrés auxquels vous avez accès, vous devez donc être vigilant et le stocker dans un endroit sûr. Afin de protéger ce fichier, saisissez ci-dessous une phrase secrète unique qui sera utilisée uniquement pour chiffrer les données exportées. Seule lutilisation de la même phrase secrète permettra de déchiffrer et importer les données.", "The exported file will allow anyone who can read it to decrypt any encrypted messages that you can see, so you should be careful to keep it secure. To help with this, you should enter a unique passphrase below, which will only be used to encrypt the exported data. It will only be possible to import the data by using the same passphrase.": "Le fichier exporté permettra à tous ceux qui peuvent le lire de déchiffrer tous les messages chiffrés auxquels vous avez accès, vous devez donc être vigilant et le stocker dans un endroit sûr. Afin de protéger ce fichier, saisissez ci-dessous une phrase secrète unique qui sera utilisée uniquement pour chiffrer les données exportées. Seule lutilisation de la même phrase secrète permettra de déchiffrer et importer les données.",
"Proceed": "Appliquer",
"Quick Actions": "Actions rapides", "Quick Actions": "Actions rapides",
"Unable to find user by email": "Impossible de trouver un utilisateur avec son courriel", "Unable to find user by email": "Impossible de trouver un utilisateur avec son courriel",
"Your profile picture URL": "Votre URL dimage de profil", "Your profile picture URL": "Votre URL dimage de profil",
@ -3815,7 +3781,22 @@
"dark": "Sombre", "dark": "Sombre",
"beta": "Bêta", "beta": "Bêta",
"attachment": "Pièce jointe", "attachment": "Pièce jointe",
"appearance": "Apparence" "appearance": "Apparence",
"guest": "Visiteur",
"legal": "Légal",
"credits": "Crédits",
"faq": "FAQ",
"access_token": "Jeton daccès",
"preferences": "Préférences",
"presence": "Présence",
"timeline": "Fil de discussion",
"privacy": "Vie privée",
"camera": "Caméra",
"microphone": "Micro",
"emoji": "Émojis",
"random": "Aléatoire",
"support": "Prise en charge",
"space": "Espace"
}, },
"action": { "action": {
"continue": "Continuer", "continue": "Continuer",
@ -3887,7 +3868,24 @@
"back": "Retour", "back": "Retour",
"apply": "Appliquer", "apply": "Appliquer",
"add": "Ajouter", "add": "Ajouter",
"accept": "Accepter" "accept": "Accepter",
"disconnect": "Se déconnecter",
"change": "Changer",
"subscribe": "Sinscrire",
"unsubscribe": "Se désinscrire",
"approve": "Approuver",
"proceed": "Appliquer",
"complete": "Terminer",
"revoke": "Révoquer",
"rename": "Renommer",
"view_all": "Tout voir",
"show_all": "Tout afficher",
"show": "Afficher",
"review": "Examiner",
"restore": "Restaurer",
"play": "Lecture",
"pause": "Pause",
"register": "Sinscrire"
}, },
"a11y": { "a11y": {
"user_menu": "Menu utilisateur" "user_menu": "Menu utilisateur"
@ -3974,7 +3972,9 @@
"default": "Par défaut", "default": "Par défaut",
"restricted": "Restreint", "restricted": "Restreint",
"moderator": "Modérateur", "moderator": "Modérateur",
"admin": "Administrateur" "admin": "Administrateur",
"custom": "Personnalisé (%(level)s)",
"mod": "Modérateur"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Si vous avez soumis une anomalie via GitHub, les journaux de débogage peuvent nous aider à cibler le problème. ", "introduction": "Si vous avez soumis une anomalie via GitHub, les journaux de débogage peuvent nous aider à cibler le problème. ",

View file

@ -60,8 +60,6 @@
"Upload Failed": "Chlis an uaslódáil", "Upload Failed": "Chlis an uaslódáil",
"Permission Required": "Is Teastáil Cead", "Permission Required": "Is Teastáil Cead",
"Call Failed": "Chlis an glaoch", "Call Failed": "Chlis an glaoch",
"Support": "Tacaíocht",
"Random": "Randamach",
"Spaces": "Spásanna", "Spaces": "Spásanna",
"Value:": "Luach:", "Value:": "Luach:",
"Level": "Leibhéal", "Level": "Leibhéal",
@ -72,7 +70,6 @@
"Hold": "Fan", "Hold": "Fan",
"Resume": "Tosaigh arís", "Resume": "Tosaigh arís",
"Effects": "Tionchair", "Effects": "Tionchair",
"Approve": "Ceadaigh",
"Zimbabwe": "an tSiombáib", "Zimbabwe": "an tSiombáib",
"Zambia": "an tSaimbia", "Zambia": "an tSaimbia",
"Yemen": "Éimin", "Yemen": "Éimin",
@ -259,17 +256,14 @@
"Widgets": "Giuirléidí", "Widgets": "Giuirléidí",
"ready": "réidh", "ready": "réidh",
"Algorithm:": "Algartam:", "Algorithm:": "Algartam:",
"Privacy": "Príobháideachas",
"Information": "Eolas", "Information": "Eolas",
"Away": "Imithe", "Away": "Imithe",
"Favourited": "Roghnaithe", "Favourited": "Roghnaithe",
"Restore": "Athbhunaigh",
"A-Z": "A-Z", "A-Z": "A-Z",
"Activity": "Gníomhaíocht", "Activity": "Gníomhaíocht",
"Feedback": "Aiseolas", "Feedback": "Aiseolas",
"Ok": "Togha", "Ok": "Togha",
"Categories": "Catagóire", "Categories": "Catagóire",
"Space": "Spás",
"Autocomplete": "Uathiomlánaigh", "Autocomplete": "Uathiomlánaigh",
"Calls": "Glaonna", "Calls": "Glaonna",
"Navigation": "Nascleanúint", "Navigation": "Nascleanúint",
@ -277,28 +271,21 @@
"Accepting…": "ag Glacadh leis…", "Accepting…": "ag Glacadh leis…",
"Cancelling…": "ag Cealú…", "Cancelling…": "ag Cealú…",
"exists": "a bheith ann", "exists": "a bheith ann",
"Mod": "Mod",
"Bridges": "Droichid", "Bridges": "Droichid",
"Manage": "Bainistigh", "Manage": "Bainistigh",
"Review": "Athbhreithnigh",
"Later": "Níos deireanaí", "Later": "Níos deireanaí",
"Lock": "Glasáil", "Lock": "Glasáil",
"Go": "Téigh", "Go": "Téigh",
"Cross-signing": "Cros-síniú", "Cross-signing": "Cros-síniú",
"Unencrypted": "Gan chriptiú", "Unencrypted": "Gan chriptiú",
"Trusted": "Dílis", "Trusted": "Dílis",
"Subscribe": "Liostáil",
"Unsubscribe": "Díliostáil",
"None": "Níl aon cheann", "None": "Níl aon cheann",
"Flags": "Bratacha", "Flags": "Bratacha",
"Symbols": "Siombailí", "Symbols": "Siombailí",
"Objects": "Rudaí", "Objects": "Rudaí",
"Activities": "Gníomhaíochtaí", "Activities": "Gníomhaíochtaí",
"Document": "Cáipéis", "Document": "Cáipéis",
"Complete": "Críochnaigh",
"Italics": "Iodálach", "Italics": "Iodálach",
"Disconnect": "Dícheangail",
"Revoke": "Cúlghair",
"Discovery": "Aimsiú", "Discovery": "Aimsiú",
"Actions": "Gníomhartha", "Actions": "Gníomhartha",
"Messages": "Teachtaireachtaí", "Messages": "Teachtaireachtaí",
@ -306,11 +293,8 @@
"Import": "Iompórtáil", "Import": "Iompórtáil",
"Export": "Easpórtáil", "Export": "Easpórtáil",
"Users": "Úsáideoirí", "Users": "Úsáideoirí",
"Emoji": "Straoiseog",
"Commands": "Ordú", "Commands": "Ordú",
"Guest": "Cuairteoir",
"Other": "Eile", "Other": "Eile",
"Change": "Athraigh",
"Phone": "Guthán", "Phone": "Guthán",
"Email": "Ríomhphost", "Email": "Ríomhphost",
"Submit": "Cuir isteach", "Submit": "Cuir isteach",
@ -383,17 +367,10 @@
"Unban": "Bain an cosc", "Unban": "Bain an cosc",
"Browse": "Brabhsáil", "Browse": "Brabhsáil",
"Sounds": "Fuaimeanna", "Sounds": "Fuaimeanna",
"Camera": "Ceamara",
"Microphone": "Micreafón",
"Cryptography": "Cripteagrafaíocht", "Cryptography": "Cripteagrafaíocht",
"Timeline": "Amlíne",
"Composer": "Eagarthóir", "Composer": "Eagarthóir",
"Preferences": "Roghanna",
"Notifications": "Fógraí", "Notifications": "Fógraí",
"Versions": "Leaganacha", "Versions": "Leaganacha",
"FAQ": "Ceisteanna Coitianta - CC",
"Credits": "Creidiúintí",
"Legal": "Dlí",
"General": "Ginearálta", "General": "Ginearálta",
"Account": "Cuntas", "Account": "Cuntas",
"Profile": "Próifíl", "Profile": "Próifíl",
@ -471,7 +448,6 @@
"Moderator": "Modhnóir", "Moderator": "Modhnóir",
"Restricted": "Teoranta", "Restricted": "Teoranta",
"Default": "Réamhshocrú", "Default": "Réamhshocrú",
"Register": "Cláraigh",
"AM": "RN", "AM": "RN",
"PM": "IN", "PM": "IN",
"Dec": "Nol", "Dec": "Nol",
@ -539,8 +515,6 @@
"Address": "Seoladh", "Address": "Seoladh",
"Sent": "Seolta", "Sent": "Seolta",
"Connecting": "Ag Ceangal", "Connecting": "Ag Ceangal",
"Play": "Cas",
"Pause": "Cuir ar sos",
"Sending": "Ag Seoladh", "Sending": "Ag Seoladh",
"Avatar": "Abhatár", "Avatar": "Abhatár",
"Suggested": "Moltaí", "Suggested": "Moltaí",
@ -664,7 +638,20 @@
"dark": "Dorcha", "dark": "Dorcha",
"beta": "Béite", "beta": "Béite",
"attachment": "Ceangaltán", "attachment": "Ceangaltán",
"appearance": "Cuma" "appearance": "Cuma",
"guest": "Cuairteoir",
"legal": "Dlí",
"credits": "Creidiúintí",
"faq": "Ceisteanna Coitianta - CC",
"preferences": "Roghanna",
"timeline": "Amlíne",
"privacy": "Príobháideachas",
"camera": "Ceamara",
"microphone": "Micreafón",
"emoji": "Straoiseog",
"random": "Randamach",
"support": "Tacaíocht",
"space": "Spás"
}, },
"action": { "action": {
"continue": "Lean ar aghaidh", "continue": "Lean ar aghaidh",
@ -722,7 +709,19 @@
"cancel": "Cuir ar ceal", "cancel": "Cuir ar ceal",
"back": "Ar Ais", "back": "Ar Ais",
"add": "Cuir", "add": "Cuir",
"accept": "Glac" "accept": "Glac",
"disconnect": "Dícheangail",
"change": "Athraigh",
"subscribe": "Liostáil",
"unsubscribe": "Díliostáil",
"approve": "Ceadaigh",
"complete": "Críochnaigh",
"revoke": "Cúlghair",
"review": "Athbhreithnigh",
"restore": "Athbhunaigh",
"play": "Cas",
"pause": "Cuir ar sos",
"register": "Cláraigh"
}, },
"labs": { "labs": {
"pinning": "Ceangal teachtaireachta" "pinning": "Ceangal teachtaireachta"
@ -749,6 +748,7 @@
"default": "Réamhshocrú", "default": "Réamhshocrú",
"restricted": "Teoranta", "restricted": "Teoranta",
"moderator": "Modhnóir", "moderator": "Modhnóir",
"admin": "Riarthóir" "admin": "Riarthóir",
"mod": "Mod"
} }
} }

View file

@ -203,7 +203,6 @@
"powered by Matrix": "funciona grazas a Matrix", "powered by Matrix": "funciona grazas a Matrix",
"Sign in with": "Acceder con", "Sign in with": "Acceder con",
"Email address": "Enderezo de correo", "Email address": "Enderezo de correo",
"Register": "Rexistrar",
"Something went wrong!": "Algo fallou!", "Something went wrong!": "Algo fallou!",
"Delete Widget": "Eliminar widget", "Delete Widget": "Eliminar widget",
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un trebello elimínalo para todas as usuarias desta sala. ¿tes certeza de querer eliminar este widget?", "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un trebello elimínalo para todas as usuarias desta sala. ¿tes certeza de querer eliminar este widget?",
@ -354,8 +353,6 @@
"No Microphones detected": "Non se detectaron micrófonos", "No Microphones detected": "Non se detectaron micrófonos",
"No Webcams detected": "Non se detectaron cámaras", "No Webcams detected": "Non se detectaron cámaras",
"Default Device": "Dispositivo por defecto", "Default Device": "Dispositivo por defecto",
"Microphone": "Micrófono",
"Camera": "Cámara",
"Email": "Correo electrónico", "Email": "Correo electrónico",
"Notifications": "Notificacións", "Notifications": "Notificacións",
"Profile": "Perfil", "Profile": "Perfil",
@ -379,7 +376,6 @@
"Ignores a user, hiding their messages from you": "Ignora unha usuaria, agochándolle as súas mensaxes", "Ignores a user, hiding their messages from you": "Ignora unha usuaria, agochándolle as súas mensaxes",
"Stops ignoring a user, showing their messages going forward": "Deixa de ignorar unha usuaria, mostrándolles as súas mensaxes a partir de agora", "Stops ignoring a user, showing their messages going forward": "Deixa de ignorar unha usuaria, mostrándolles as súas mensaxes a partir de agora",
"Commands": "Comandos", "Commands": "Comandos",
"Emoji": "Emoji",
"Notify the whole room": "Notificar a toda a sala", "Notify the whole room": "Notificar a toda a sala",
"Room Notification": "Notificación da sala", "Room Notification": "Notificación da sala",
"Users": "Usuarias", "Users": "Usuarias",
@ -491,7 +487,6 @@
"This homeserver has exceeded one of its resource limits.": "Este servidor excedeu un dos seus límites de recursos.", "This homeserver has exceeded one of its resource limits.": "Este servidor excedeu un dos seus límites de recursos.",
"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.": "A súa mensaxe non foi enviada porque este servidor acadou o Límite Mensual de Usuaria Activa. Por favor <a>contacte coa administración do servizo</a> para continuar utilizando o servizo.", "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.": "A súa mensaxe non foi enviada porque este servidor acadou o Límite Mensual de Usuaria Activa. Por favor <a>contacte coa administración do servizo</a> para continuar utilizando o servizo.",
"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.": "A súa mensaxe non foi enviada porque o servidor superou o límite de recursos. Por favor <a>contacte coa administración do servizo</a> para continuar utilizando o servizo.", "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.": "A súa mensaxe non foi enviada porque o servidor superou o límite de recursos. Por favor <a>contacte coa administración do servizo</a> para continuar utilizando o servizo.",
"Legal": "Legal",
"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.", "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", "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.", "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.",
@ -533,7 +528,6 @@
"%(name)s is requesting verification": "%(name)s está pedindo a verificación", "%(name)s is requesting verification": "%(name)s está pedindo a verificación",
"Use your account or create a new one to continue.": "Usa a túa conta ou crea unha nova para continuar.", "Use your account or create a new one to continue.": "Usa a túa conta ou crea unha nova para continuar.",
"Create Account": "Crear conta", "Create Account": "Crear conta",
"Custom (%(level)s)": "Personalizado (%(level)s)",
"Messages": "Mensaxes", "Messages": "Mensaxes",
"Actions": "Accións", "Actions": "Accións",
"Other": "Outro", "Other": "Outro",
@ -707,7 +701,6 @@
"A word by itself is easy to guess": "Por si sola, unha palabra é fácil de adiviñar", "A word by itself is easy to guess": "Por si sola, unha palabra é fácil de adiviñar",
"Names and surnames by themselves are easy to guess": "Nomes e apelidos por si mesmos son fáciles de adiviñar", "Names and surnames by themselves are easy to guess": "Nomes e apelidos por si mesmos son fáciles de adiviñar",
"Common names and surnames are easy to guess": "Os nomes e alcumes son fáciles de adiviñar", "Common names and surnames are easy to guess": "Os nomes e alcumes son fáciles de adiviñar",
"Review": "Revisar",
"Later": "Máis tarde", "Later": "Máis tarde",
"Your homeserver has exceeded its user limit.": "O teu servidor superou o seu límite de usuaras.", "Your homeserver has exceeded its user limit.": "O teu servidor superou o seu límite de usuaras.",
"Your homeserver has exceeded one of its resource limits.": "O teu servidor superou un dous seus límites de recursos.", "Your homeserver has exceeded one of its resource limits.": "O teu servidor superou un dous seus límites de recursos.",
@ -892,7 +885,6 @@
"The identity server you have chosen does not have any terms of service.": "O servidor de identidade escollido non ten establecidos termos do servizo.", "The identity server you have chosen does not have any terms of service.": "O servidor de identidade escollido non ten establecidos termos do servizo.",
"Disconnect identity server": "Desconectar servidor de identidade", "Disconnect identity server": "Desconectar servidor de identidade",
"Disconnect from the identity server <idserver />?": "Desconectar do servidor de identidade <idserver />?", "Disconnect from the identity server <idserver />?": "Desconectar do servidor de identidade <idserver />?",
"Disconnect": "Desconectar",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Deberías <b>eliminar os datos personais</b> do servidor de identidade <idserver /> antes de desconectar. Desgraciadamente, o servidor <idserver /> non está en liña ou non é accesible.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Deberías <b>eliminar os datos personais</b> do servidor de identidade <idserver /> antes de desconectar. Desgraciadamente, o servidor <idserver /> non está en liña ou non é accesible.",
"You should:": "Deberías:", "You should:": "Deberías:",
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "comprobar os engadidos do navegador por algún está bloqueando o servidor de identidade (como Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "comprobar os engadidos do navegador por algún está bloqueando o servidor de identidade (como Privacy Badger)",
@ -908,7 +900,6 @@
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar un servidor de identidade é optativo. Se escolles non usar un, non poderás ser atopado por outras usuarias e non poderás convidar a outras polo seu email ou teléfono.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar un servidor de identidade é optativo. Se escolles non usar un, non poderás ser atopado por outras usuarias e non poderás convidar a outras polo seu email ou teléfono.",
"Do not use an identity server": "Non usar un servidor de identidade", "Do not use an identity server": "Non usar un servidor de identidade",
"Enter a new identity server": "Escribe o novo servidor de identidade", "Enter a new identity server": "Escribe o novo servidor de identidade",
"Change": "Cambiar",
"Manage integrations": "Xestionar integracións", "Manage integrations": "Xestionar integracións",
"New version available. <a>Update now.</a>": "Nova versión dispoñible. <a>Actualiza.</a>", "New version available. <a>Update now.</a>": "Nova versión dispoñible. <a>Actualiza.</a>",
"Size must be a number": "O tamaño ten que ser un número", "Size must be a number": "O tamaño ten que ser un número",
@ -918,11 +909,9 @@
"Phone numbers": "Número de teléfono", "Phone numbers": "Número de teléfono",
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta os Termos do Servizo do servidor (%(serverName)s) para permitir que te atopen polo enderezo de email ou número de teléfono.", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta os Termos do Servizo do servidor (%(serverName)s) para permitir que te atopen polo enderezo de email ou número de teléfono.",
"Account management": "Xestión da conta", "Account management": "Xestión da conta",
"Credits": "Créditos",
"Chat with %(brand)s Bot": "Chat co Bot %(brand)s", "Chat with %(brand)s Bot": "Chat co Bot %(brand)s",
"Clear cache and reload": "Baleirar caché e recargar", "Clear cache and reload": "Baleirar caché e recargar",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Para informar dun asunto relacionado coa seguridade de Matrix, le a <a>Política de Revelación de Privacidade</a> de Matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Para informar dun asunto relacionado coa seguridade de Matrix, le a <a>Política de Revelación de Privacidade</a> de Matrix.org.",
"FAQ": "PMF",
"Versions": "Versións", "Versions": "Versións",
"Ignored/Blocked": "Ignorado/Bloqueado", "Ignored/Blocked": "Ignorado/Bloqueado",
"Error adding ignored user/server": "Fallo ao engadir a ignorado usuaria/servidor", "Error adding ignored user/server": "Fallo ao engadir a ignorado usuaria/servidor",
@ -939,7 +928,6 @@
"You have not ignored anyone.": "Non ignoraches a ninguén.", "You have not ignored anyone.": "Non ignoraches a ninguén.",
"You are currently ignoring:": "Estás a ignorar a:", "You are currently ignoring:": "Estás a ignorar a:",
"You are not subscribed to any lists": "Non estás subscrita a ningunha lista", "You are not subscribed to any lists": "Non estás subscrita a ningunha lista",
"Unsubscribe": "Baixa na subscrición",
"View rules": "Ver regras", "View rules": "Ver regras",
"You are currently subscribed to:": "Estas subscrito a:", "You are currently subscribed to:": "Estas subscrito a:",
"Ignored users": "Usuarias ignoradas", "Ignored users": "Usuarias ignoradas",
@ -952,12 +940,9 @@
"Subscribed lists": "Listaxes subscritas", "Subscribed lists": "Listaxes subscritas",
"If this isn't what you want, please use a different tool to ignore users.": "Se esto non é o que queres, usa unha ferramenta diferente para ignorar usuarias.", "If this isn't what you want, please use a different tool to ignore users.": "Se esto non é o que queres, usa unha ferramenta diferente para ignorar usuarias.",
"Room ID or address of ban list": "ID da sala ou enderezo da listaxe de bloqueo", "Room ID or address of ban list": "ID da sala ou enderezo da listaxe de bloqueo",
"Subscribe": "Subscribir",
"Always show the window menu bar": "Mostrar sempre a barra de menú da ventá", "Always show the window menu bar": "Mostrar sempre a barra de menú da ventá",
"Preferences": "Preferencias",
"Room list": "Listaxe de Salas", "Room list": "Listaxe de Salas",
"Composer": "Editor", "Composer": "Editor",
"Timeline": "Cronoloxía",
"Autocomplete delay (ms)": "Retraso no autocompletado (ms)", "Autocomplete delay (ms)": "Retraso no autocompletado (ms)",
"Read Marker lifetime (ms)": "Duración do marcador de lectura (ms)", "Read Marker lifetime (ms)": "Duración do marcador de lectura (ms)",
"Read Marker off-screen lifetime (ms)": "Duración do marcador de lectura fóra de pantall (ms)", "Read Marker off-screen lifetime (ms)": "Duración do marcador de lectura fóra de pantall (ms)",
@ -1015,8 +1000,6 @@
"Your email address hasn't been verified yet": "O teu enderezo de email aínda non foi verificado", "Your email address hasn't been verified yet": "O teu enderezo de email aínda non foi verificado",
"Click the link in the email you received to verify and then click continue again.": "Preme na ligazón do email recibido para verificalo e após preme en continuar outra vez.", "Click the link in the email you received to verify and then click continue again.": "Preme na ligazón do email recibido para verificalo e após preme en continuar outra vez.",
"Verify the link in your inbox": "Verifica a ligazón na túa caixa de correo", "Verify the link in your inbox": "Verifica a ligazón na túa caixa de correo",
"Complete": "Completar",
"Revoke": "Revogar",
"Discovery options will appear once you have added an email above.": "As opcións de descubrimento aparecerán após ti engadas un email.", "Discovery options will appear once you have added an email above.": "As opcións de descubrimento aparecerán após ti engadas un email.",
"Unable to revoke sharing for phone number": "Non se puido revogar a compartición do número de teléfono", "Unable to revoke sharing for phone number": "Non se puido revogar a compartición do número de teléfono",
"Unable to share phone number": "Non se puido compartir o número de teléfono", "Unable to share phone number": "Non se puido compartir o número de teléfono",
@ -1037,7 +1020,6 @@
"This room is end-to-end encrypted": "Esta sala está cifrada extremo-a-extremo", "This room is end-to-end encrypted": "Esta sala está cifrada extremo-a-extremo",
"Everyone in this room is verified": "Todas nesta sala están verificadas", "Everyone in this room is verified": "Todas nesta sala están verificadas",
"Edit message": "Editar mensaxe", "Edit message": "Editar mensaxe",
"Mod": "Mod",
"Customise your appearance": "Personaliza o aspecto", "Customise your appearance": "Personaliza o aspecto",
"Appearance Settings only affect this %(brand)s session.": "Os axustes da aparencia só lle afectan a esta sesión %(brand)s.", "Appearance Settings only affect this %(brand)s session.": "Os axustes da aparencia só lle afectan a esta sesión %(brand)s.",
"Encrypted by an unverified session": "Cifrada por unha sesión non verificada", "Encrypted by an unverified session": "Cifrada por unha sesión non verificada",
@ -1184,7 +1166,6 @@
"%(name)s cancelled": "%(name)s cancelou", "%(name)s cancelled": "%(name)s cancelou",
"%(name)s wants to verify": "%(name)s desexa verificar", "%(name)s wants to verify": "%(name)s desexa verificar",
"You sent a verification request": "Enviaches unha solicitude de verificación", "You sent a verification request": "Enviaches unha solicitude de verificación",
"Show all": "Mostrar todo",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reaccionaron con %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reaccionaron con %(shortName)s</reactedWith>",
"Message deleted": "Mensaxe eliminada", "Message deleted": "Mensaxe eliminada",
"Message deleted by %(name)s": "Mensaxe eliminada por %(name)s", "Message deleted by %(name)s": "Mensaxe eliminada por %(name)s",
@ -1324,7 +1305,6 @@
"If they don't match, the security of your communication may be compromised.": "Se non concordan, a seguridade da comunicación podería estar comprometida.", "If they don't match, the security of your communication may be compromised.": "Se non concordan, a seguridade da comunicación podería estar comprometida.",
"Verify session": "Verificar sesión", "Verify session": "Verificar sesión",
"Your homeserver doesn't seem to support this feature.": "O servidor non semella soportar esta característica.", "Your homeserver doesn't seem to support this feature.": "O servidor non semella soportar esta característica.",
"Guest": "Convidada",
"Message edits": "Edicións da mensaxe", "Message edits": "Edicións da mensaxe",
"Please fill why you're reporting.": "Escribe a razón do informe.", "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", "Report Content to Your Homeserver Administrator": "Denuncia sobre contido á Administración do teu servidor",
@ -1446,7 +1426,6 @@
"Click the button below to confirm setting up encryption.": "Preme no botón inferior para confirmar os axustes do cifrado.", "Click the button below to confirm setting up encryption.": "Preme no botón inferior para confirmar os axustes do cifrado.",
"Enter your account password to confirm the upgrade:": "Escribe o contrasinal para confirmar a actualización:", "Enter your account password to confirm the upgrade:": "Escribe o contrasinal para confirmar a actualización:",
"Restore your key backup to upgrade your encryption": "Restablece a copia das chaves para actualizar o cifrado", "Restore your key backup to upgrade your encryption": "Restablece a copia das chaves para actualizar o cifrado",
"Restore": "Restablecer",
"You'll need to authenticate with the server to confirm the upgrade.": "Debes autenticarte no servidor para confirmar a actualización.", "You'll need to authenticate with the server to confirm the upgrade.": "Debes autenticarte no servidor para confirmar a actualización.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Actualiza esta sesión para permitirlle que verifique as outras sesións, outorgándolles acceso ás mensaxes cifradas e marcándoas como confiables para outras usuarias.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Actualiza esta sesión para permitirlle que verifique as outras sesións, outorgándolles acceso ás mensaxes cifradas e marcándoas como confiables para outras usuarias.",
"That matches!": "Concorda!", "That matches!": "Concorda!",
@ -1499,7 +1478,6 @@
"Activate selected button": "Activar o botón seleccionado", "Activate selected button": "Activar o botón seleccionado",
"Toggle right panel": "Activar panel dereito", "Toggle right panel": "Activar panel dereito",
"Cancel autocomplete": "Cancelar autocompletado", "Cancel autocomplete": "Cancelar autocompletado",
"Space": "Espazo",
"You joined the call": "Unícheste á chamada", "You joined the call": "Unícheste á chamada",
"%(senderName)s joined the call": "%(senderName)s uniuse á chamada", "%(senderName)s joined the call": "%(senderName)s uniuse á chamada",
"Call in progress": "Chamada en curso", "Call in progress": "Chamada en curso",
@ -1569,7 +1547,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.": "Pode resultar útil se a sala vai ser utilizada só polo equipo de xestión interna do servidor. Non se pode cambiar máis tarde.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Pode resultar útil se a sala vai ser utilizada só polo equipo de xestión interna do servidor. Non se pode cambiar máis tarde.",
"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.": "Poderías desactivalo se a sala vai ser utilizada para colaborar con equipos externos que teñen o seu propio servidor. Esto non se pode cambiar máis tarde.", "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.": "Poderías desactivalo se a sala vai ser utilizada para colaborar con equipos externos que teñen o seu propio servidor. Esto non se pode cambiar máis tarde.",
"Block anyone not part of %(serverName)s from ever joining this room.": "Evitar que calquera externo a %(serverName)s se poida unir a esta sala.", "Block anyone not part of %(serverName)s from ever joining this room.": "Evitar que calquera externo a %(serverName)s se poida unir a esta sala.",
"Privacy": "Privacidade",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Engade ( ͡° ͜ʖ ͡°) a unha mensaxe de texto-plano", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Engade ( ͡° ͜ʖ ͡°) a unha mensaxe de texto-plano",
"Unknown App": "App descoñecida", "Unknown App": "App descoñecida",
"Not encrypted": "Sen cifrar", "Not encrypted": "Sen cifrar",
@ -1909,7 +1886,6 @@
"Go to Home View": "Ir á Páxina de Inicio", "Go to Home View": "Ir á Páxina de Inicio",
"The <b>%(capability)s</b> capability": "A capacidade de <b>%(capability)s</b>", "The <b>%(capability)s</b> capability": "A capacidade de <b>%(capability)s</b>",
"Decline All": "Rexeitar todo", "Decline All": "Rexeitar todo",
"Approve": "Aprobar",
"This widget would like to:": "O widget podería querer:", "This widget would like to:": "O widget podería querer:",
"Approve widget permissions": "Aprovar permisos do widget", "Approve widget permissions": "Aprovar permisos do widget",
"Use Ctrl + Enter to send a message": "Usar Ctrl + Enter para enviar unha mensaxe", "Use Ctrl + Enter to send a message": "Usar Ctrl + Enter para enviar unha mensaxe",
@ -2098,8 +2074,6 @@
"Who are you working with?": "Con quen estás a traballar?", "Who are you working with?": "Con quen estás a traballar?",
"Skip for now": "Omitir por agora", "Skip for now": "Omitir por agora",
"Failed to create initial space rooms": "Fallou a creación inicial das salas do espazo", "Failed to create initial space rooms": "Fallou a creación inicial das salas do espazo",
"Support": "Axuda",
"Random": "Ao chou",
"Welcome to <name/>": "Benvida a <name/>", "Welcome to <name/>": "Benvida a <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s participante", "one": "%(count)s participante",
@ -2222,8 +2196,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Elixe salas ou conversas para engadilas. Este é un espazo para ti, ninguén será notificado. Podes engadir máis posteriormente.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Elixe salas ou conversas para engadilas. Este é un espazo para ti, ninguén será notificado. Podes engadir máis posteriormente.",
"What do you want to organise?": "Que queres organizar?", "What do you want to organise?": "Que queres organizar?",
"You have no ignored users.": "Non tes usuarias ignoradas.", "You have no ignored users.": "Non tes usuarias ignoradas.",
"Play": "Reproducir",
"Pause": "Deter",
"Select a room below first": "Primeiro elixe embaixo unha sala", "Select a room below first": "Primeiro elixe embaixo unha sala",
"Join the beta": "Unirse á beta", "Join the beta": "Unirse á beta",
"Leave the beta": "Saír da beta", "Leave the beta": "Saír da beta",
@ -2240,7 +2212,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Non puidemos acceder ao teu micrófono. Comproba os axustes do navegador e proba outra vez.", "We were unable to access your microphone. Please check your browser settings and try again.": "Non puidemos acceder ao teu micrófono. Comproba os axustes do navegador e proba outra vez.",
"Unable to access your microphone": "Non se puido acceder ao micrófono", "Unable to access your microphone": "Non se puido acceder ao micrófono",
"Your access token gives full access to your account. Do not share it with anyone.": "O teu token de acceso da acceso completo á túa conta. Non o compartas con ninguén.", "Your access token gives full access to your account. Do not share it with anyone.": "O teu token de acceso da acceso completo á túa conta. Non o compartas con ninguén.",
"Access Token": "Token de acceso",
"Please enter a name for the space": "Escribe un nome para o espazo", "Please enter a name for the space": "Escribe un nome para o espazo",
"Connecting": "Conectando", "Connecting": "Conectando",
"Search names and descriptions": "Buscar nome e descricións", "Search names and descriptions": "Buscar nome e descricións",
@ -2627,7 +2598,6 @@
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Esta sala está nalgúns espazos nos que non es admin. Nesos espazos, seguirase mostrando a sala antiga, pero as usuarias serán convidadas a unirse á nova.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Esta sala está nalgúns espazos nos que non es admin. Nesos espazos, seguirase mostrando a sala antiga, pero as usuarias serán convidadas a unirse á nova.",
"Large": "Grande", "Large": "Grande",
"Image size in the timeline": "Tamaño de imaxe na cronoloxía", "Image size in the timeline": "Tamaño de imaxe na cronoloxía",
"Rename": "Cambiar nome",
"Select all": "Seleccionar todos", "Select all": "Seleccionar todos",
"Deselect all": "Retirar selección a todos", "Deselect all": "Retirar selección a todos",
"Sign out devices": { "Sign out devices": {
@ -3257,7 +3227,6 @@
"Download %(brand)s": "Descargar %(brand)s", "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.", "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.", "Share your activity and status with others.": "Comparte a túa actividade e estado con outras persoas.",
"Presence": "Presenza",
"Send read receipts": "Enviar resgardos de lectura", "Send read receipts": "Enviar resgardos de lectura",
"Unverified": "Non verificada", "Unverified": "Non verificada",
"Verified": "Verificada", "Verified": "Verificada",
@ -3276,9 +3245,7 @@
"Verified session": "Sesión verificada", "Verified session": "Sesión verificada",
"Interactively verify by emoji": "Verificar interactivamente usando emoji", "Interactively verify by emoji": "Verificar interactivamente usando emoji",
"Manually verify by text": "Verificar manualmente con texto", "Manually verify by text": "Verificar manualmente con texto",
"View all": "Ver todo",
"Security recommendations": "Recomendacións de seguridade", "Security recommendations": "Recomendacións de seguridade",
"Show": "Mostar",
"Filter devices": "Filtrar dispositivos", "Filter devices": "Filtrar dispositivos",
"Inactive for %(inactiveAgeDays)s days or longer": "Inactiva desde hai %(inactiveAgeDays)s días ou máis", "Inactive for %(inactiveAgeDays)s days or longer": "Inactiva desde hai %(inactiveAgeDays)s días ou máis",
"Inactive": "Inactiva", "Inactive": "Inactiva",
@ -3375,7 +3342,22 @@
"dark": "Escuro", "dark": "Escuro",
"beta": "Beta", "beta": "Beta",
"attachment": "Anexo", "attachment": "Anexo",
"appearance": "Aparencia" "appearance": "Aparencia",
"guest": "Convidada",
"legal": "Legal",
"credits": "Créditos",
"faq": "PMF",
"access_token": "Token de acceso",
"preferences": "Preferencias",
"presence": "Presenza",
"timeline": "Cronoloxía",
"privacy": "Privacidade",
"camera": "Cámara",
"microphone": "Micrófono",
"emoji": "Emoji",
"random": "Ao chou",
"support": "Axuda",
"space": "Espazo"
}, },
"action": { "action": {
"continue": "Continuar", "continue": "Continuar",
@ -3445,7 +3427,23 @@
"call": "Chamar", "call": "Chamar",
"back": "Atrás", "back": "Atrás",
"add": "Engadir", "add": "Engadir",
"accept": "Aceptar" "accept": "Aceptar",
"disconnect": "Desconectar",
"change": "Cambiar",
"subscribe": "Subscribir",
"unsubscribe": "Baixa na subscrición",
"approve": "Aprobar",
"complete": "Completar",
"revoke": "Revogar",
"rename": "Cambiar nome",
"view_all": "Ver todo",
"show_all": "Mostrar todo",
"show": "Mostar",
"review": "Revisar",
"restore": "Restablecer",
"play": "Reproducir",
"pause": "Deter",
"register": "Rexistrar"
}, },
"a11y": { "a11y": {
"user_menu": "Menú de usuaria" "user_menu": "Menú de usuaria"
@ -3496,7 +3494,9 @@
"default": "Por defecto", "default": "Por defecto",
"restricted": "Restrinxido", "restricted": "Restrinxido",
"moderator": "Moderador", "moderator": "Moderador",
"admin": "Administrador" "admin": "Administrador",
"custom": "Personalizado (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Se informaches do fallo en GitHub, os rexistros poden ser útiles para arranxar o problema. ", "introduction": "Se informaches do fallo en GitHub, os rexistros poden ser útiles para arranxar o problema. ",

View file

@ -28,7 +28,6 @@
"PM": "PM", "PM": "PM",
"AM": "AM", "AM": "AM",
"Online": "מקוון", "Online": "מקוון",
"Register": "צור חשבון",
"Rooms": "חדרים", "Rooms": "חדרים",
"Operation failed": "פעולה נכשלה", "Operation failed": "פעולה נכשלה",
"powered by Matrix": "מופעל ע\"י Matrix", "powered by Matrix": "מופעל ע\"י Matrix",
@ -170,7 +169,6 @@
"You need to be able to invite users to do that.": "עליכם להיות מאושרים להזמין משתמשים על מנת לבצע פעולה זו.", "You need to be able to invite users to do that.": "עליכם להיות מאושרים להזמין משתמשים על מנת לבצע פעולה זו.",
"You need to be logged in.": "עליכם להיות מחוברים.", "You need to be logged in.": "עליכם להיות מחוברים.",
"Failed to invite": "הזמנה נכשלה", "Failed to invite": "הזמנה נכשלה",
"Custom (%(level)s)": "ידני %(level)s",
"Admin": "אדמין", "Admin": "אדמין",
"Moderator": "מנהל", "Moderator": "מנהל",
"Restricted": "מחוץ לתחום", "Restricted": "מחוץ לתחום",
@ -858,7 +856,6 @@
"%(senderName)s joined the call": "%(senderName)s התחבר אל השיחה", "%(senderName)s joined the call": "%(senderName)s התחבר אל השיחה",
"You joined the call": "התחברתם אל השיחה בהצלחה", "You joined the call": "התחברתם אל השיחה בהצלחה",
"Please contact your homeserver administrator.": "אנא צרו קשר עם מנהל השרת שלכם.", "Please contact your homeserver administrator.": "אנא צרו קשר עם מנהל השרת שלכם.",
"Guest": "אורח",
"New version of %(brand)s is available": "גרסה חדשה של %(brand)s קיימת", "New version of %(brand)s is available": "גרסה חדשה של %(brand)s קיימת",
"Update %(brand)s": "עדכן %(brand)s", "Update %(brand)s": "עדכן %(brand)s",
"New login. Was this you?": "כניסה חדשה. האם זה אתם?", "New login. Was this you?": "כניסה חדשה. האם זה אתם?",
@ -874,7 +871,6 @@
"Enable desktop notifications": "אשרו התראות שולחן עבודה", "Enable desktop notifications": "אשרו התראות שולחן עבודה",
"Don't miss a reply": "אל תפספסו תגובה", "Don't miss a reply": "אל תפספסו תגובה",
"Later": "מאוחר יותר", "Later": "מאוחר יותר",
"Review": "סקירה",
"Unknown App": "אפליקציה לא ידועה", "Unknown App": "אפליקציה לא ידועה",
"Short keyboard patterns are easy to guess": "דפוסים קצרים קל לנחש", "Short keyboard patterns are easy to guess": "דפוסים קצרים קל לנחש",
"Straight rows of keys are easy to guess": "שורות מסודרות של מקשים מאוד קל לנחש", "Straight rows of keys are easy to guess": "שורות מסודרות של מקשים מאוד קל לנחש",
@ -1072,7 +1068,6 @@
"Popout widget": "יישומון קופץ", "Popout widget": "יישומון קופץ",
"Message deleted": "הודעה נמחקה", "Message deleted": "הודעה נמחקה",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> הגיבו עם %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith> הגיבו עם %(shortName)s</reactedWith>",
"Show all": "הצג הכל",
"Error decrypting video": "שגיאה בפענוח וידאו", "Error decrypting video": "שגיאה בפענוח וידאו",
"You sent a verification request": "שלחתם בקשה לקוד אימות", "You sent a verification request": "שלחתם בקשה לקוד אימות",
"%(name)s wants to verify": "%(name)s רוצה לאמת", "%(name)s wants to verify": "%(name)s רוצה לאמת",
@ -1297,7 +1292,6 @@
"Unencrypted": "לא מוצפן", "Unencrypted": "לא מוצפן",
"Encrypted by an unverified session": "הוצפן על ידי מושב לא מאומת", "Encrypted by an unverified session": "הוצפן על ידי מושב לא מאומת",
"This event could not be displayed": "לא ניתן להציג את הארוע הזה", "This event could not be displayed": "לא ניתן להציג את הארוע הזה",
"Mod": "ממתן",
"Edit message": "ערוך הודעה", "Edit message": "ערוך הודעה",
"Everyone in this room is verified": "כולם מאומתים בחדר זה", "Everyone in this room is verified": "כולם מאומתים בחדר זה",
"This room is end-to-end encrypted": "חדר זה מוצפן מקצה לקצה", "This room is end-to-end encrypted": "חדר זה מוצפן מקצה לקצה",
@ -1324,8 +1318,6 @@
"Unable to share phone number": "לא ניתן לשתף מספר טלפון", "Unable to share phone number": "לא ניתן לשתף מספר טלפון",
"Unable to revoke sharing for phone number": "לא ניתן לבטל את השיתוף למספר טלפון", "Unable to revoke sharing for phone number": "לא ניתן לבטל את השיתוף למספר טלפון",
"Discovery options will appear once you have added an email above.": "אפשרויות גילוי יופיעו לאחר הוספת דוא\"ל לעיל.", "Discovery options will appear once you have added an email above.": "אפשרויות גילוי יופיעו לאחר הוספת דוא\"ל לעיל.",
"Revoke": "לשלול",
"Complete": "מושלם",
"Verify the link in your inbox": "אמת את הקישור בתיבת הדואר הנכנס שלך", "Verify the link in your inbox": "אמת את הקישור בתיבת הדואר הנכנס שלך",
"Unable to verify email address.": "לא ניתן לאמת את כתובת הדוא\"ל.", "Unable to verify email address.": "לא ניתן לאמת את כתובת הדוא\"ל.",
"Click the link in the email you received to verify and then click continue again.": "לחץ על הקישור בהודעת הדוא\"ל שקיבלת כדי לאמת ואז לחץ על המשך שוב.", "Click the link in the email you received to verify and then click continue again.": "לחץ על הקישור בהודעת הדוא\"ל שקיבלת כדי לאמת ואז לחץ על המשך שוב.",
@ -1432,8 +1424,6 @@
"Upgrade this room to the recommended room version": "שדרג חדר זה לגרסת החדר המומלצת", "Upgrade this room to the recommended room version": "שדרג חדר זה לגרסת החדר המומלצת",
"This room is not accessible by remote Matrix servers": "לא ניתן לגשת לחדר זה באמצעות שרתי מטריקס מרוחקים", "This room is not accessible by remote Matrix servers": "לא ניתן לגשת לחדר זה באמצעות שרתי מטריקס מרוחקים",
"Voice & Video": "שמע ווידאו", "Voice & Video": "שמע ווידאו",
"Camera": "מצלמה",
"Microphone": "מיקרופון",
"Audio Output": "יציאת שמע", "Audio Output": "יציאת שמע",
"Default Device": "התקן ברירת מחדל", "Default Device": "התקן ברירת מחדל",
"No Webcams detected": "לא נמצאה מצלמת רשת", "No Webcams detected": "לא נמצאה מצלמת רשת",
@ -1443,7 +1433,6 @@
"Missing media permissions, click the button below to request.": "חסרות הרשאות מדיה, לחץ על הלחצן למטה כדי לבקש.", "Missing media permissions, click the button below to request.": "חסרות הרשאות מדיה, לחץ על הלחצן למטה כדי לבקש.",
"You may need to manually permit %(brand)s to access your microphone/webcam": "ייתכן שיהיה עליך לאפשר ידנית ל-%(brand)s גישה למיקרופון / מצלמת האינטרנט שלך", "You may need to manually permit %(brand)s to access your microphone/webcam": "ייתכן שיהיה עליך לאפשר ידנית ל-%(brand)s גישה למיקרופון / מצלמת האינטרנט שלך",
"No media permissions": "אין הרשאות מדיה", "No media permissions": "אין הרשאות מדיה",
"Privacy": "פרטיות",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "מנהל השרת שלך השבית הצפנה מקצה לקצה כברירת מחדל בחדרים פרטיים ובהודעות ישירות.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "מנהל השרת שלך השבית הצפנה מקצה לקצה כברירת מחדל בחדרים פרטיים ובהודעות ישירות.",
"Cross-signing": "חתימה צולבת", "Cross-signing": "חתימה צולבת",
"Message search": "חיפוש הודעה", "Message search": "חיפוש הודעה",
@ -1460,13 +1449,10 @@
"Read Marker off-screen lifetime (ms)": "חיי סמן קריאה מחוץ למסך (ms)", "Read Marker off-screen lifetime (ms)": "חיי סמן קריאה מחוץ למסך (ms)",
"Read Marker lifetime (ms)": "חיי סמן קריאה (ms)", "Read Marker lifetime (ms)": "חיי סמן קריאה (ms)",
"Autocomplete delay (ms)": "עיכוב השלמה אוטומטית (ms)", "Autocomplete delay (ms)": "עיכוב השלמה אוטומטית (ms)",
"Timeline": "קו זמן",
"Composer": "כתבן", "Composer": "כתבן",
"Room list": "רשימת חדרים", "Room list": "רשימת חדרים",
"Preferences": "העדפות",
"Always show the window menu bar": "הראה תמיד את שורת תפריט החלונות", "Always show the window menu bar": "הראה תמיד את שורת תפריט החלונות",
"Start automatically after system login": "התחל באופן אוטומטי לאחר הכניסה", "Start automatically after system login": "התחל באופן אוטומטי לאחר הכניסה",
"Subscribe": "הרשמה",
"Room ID or address of ban list": "זהות החדר או כתובת של רשימת החסומים", "Room ID or address of ban list": "זהות החדר או כתובת של רשימת החסומים",
"If this isn't what you want, please use a different tool to ignore users.": "אם זה לא מה שאתה רוצה, השתמש בכלי אחר כדי להתעלם ממשתמשים.", "If this isn't what you want, please use a different tool to ignore users.": "אם זה לא מה שאתה רוצה, השתמש בכלי אחר כדי להתעלם ממשתמשים.",
"Subscribing to a ban list will cause you to join it!": "הרשמה לרשימת איסורים תגרום לך להצטרף אליה!", "Subscribing to a ban list will cause you to join it!": "הרשמה לרשימת איסורים תגרום לך להצטרף אליה!",
@ -1480,7 +1466,6 @@
"Ignored users": "משתמשים שהתעלמתם מהם", "Ignored users": "משתמשים שהתעלמתם מהם",
"You are currently subscribed to:": "אתם רשומים אל:", "You are currently subscribed to:": "אתם רשומים אל:",
"View rules": "צפה בכללים", "View rules": "צפה בכללים",
"Unsubscribe": "הסרת הרשמה",
"You are not subscribed to any lists": "אימכם רשומים לשום רשימה", "You are not subscribed to any lists": "אימכם רשומים לשום רשימה",
"You are currently ignoring:": "אתם כרגע מתעלמים מ:", "You are currently ignoring:": "אתם כרגע מתעלמים מ:",
"You have not ignored anyone.": "לא התעלמתם מאף אחד.", "You have not ignored anyone.": "לא התעלמתם מאף אחד.",
@ -1499,14 +1484,11 @@
"Clear cache and reload": "נקה מטמון ואתחל", "Clear cache and reload": "נקה מטמון ואתחל",
"%(brand)s version:": "גרסאת %(brand)s:", "%(brand)s version:": "גרסאת %(brand)s:",
"Versions": "גרסאות", "Versions": "גרסאות",
"FAQ": "שאלות נפוצות",
"Help & About": "עזרה ואודות", "Help & About": "עזרה ואודות",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "כדי לדווח על בעיית אבטחה , אנא קראו את <a> מדיניות גילוי האבטחה של Matrix.org </a>.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "כדי לדווח על בעיית אבטחה , אנא קראו את <a> מדיניות גילוי האבטחה של Matrix.org </a>.",
"Chat with %(brand)s Bot": "דבר עם הבוט של %(brand)s", "Chat with %(brand)s Bot": "דבר עם הבוט של %(brand)s",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "לעזרה בשימוש ב-%(brand)s לחץ על <a> כאן </a> או התחל צ'אט עם הבוט שלנו באמצעות הלחצן למטה.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "לעזרה בשימוש ב-%(brand)s לחץ על <a> כאן </a> או התחל צ'אט עם הבוט שלנו באמצעות הלחצן למטה.",
"For help with using %(brand)s, click <a>here</a>.": "בשביל לעזור בקידום ושימוש ב- %(brand)s, לחצו <a>כאן</a>.", "For help with using %(brand)s, click <a>here</a>.": "בשביל לעזור בקידום ושימוש ב- %(brand)s, לחצו <a>כאן</a>.",
"Credits": "נקודות זכות",
"Legal": "חוקי",
"General": "כללי", "General": "כללי",
"Discovery": "מציאה", "Discovery": "מציאה",
"Deactivate account": "סגור חשבון", "Deactivate account": "סגור חשבון",
@ -1534,7 +1516,6 @@
"Check for update": "בדוק עדכונים", "Check for update": "בדוק עדכונים",
"New version available. <a>Update now.</a>": "גרסא חדשה קיימת. <a>שדרגו עכשיו.</a>", "New version available. <a>Update now.</a>": "גרסא חדשה קיימת. <a>שדרגו עכשיו.</a>",
"Manage integrations": "נהל שילובים", "Manage integrations": "נהל שילובים",
"Change": "שנה",
"Enter a new identity server": "הכנס שרת הזדהות חדש", "Enter a new identity server": "הכנס שרת הזדהות חדש",
"Do not use an identity server": "אל תשתמש בשרת הזדהות", "Do not use an identity server": "אל תשתמש בשרת הזדהות",
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "השימוש בשרת זהות הוא אופציונלי. אם תבחר לא להשתמש בשרת זהות, משתמשים אחרים לא יוכלו לגלות ולא תוכל להזמין אחרים בדוא\"ל או בטלפון.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "השימוש בשרת זהות הוא אופציונלי. אם תבחר לא להשתמש בשרת זהות, משתמשים אחרים לא יוכלו לגלות ולא תוכל להזמין אחרים בדוא\"ל או בטלפון.",
@ -1550,7 +1531,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "בדוק בתוספי הדפדפן שלך כל דבר העלול לחסום את שרת הזהות (כגון תגית פרטיות)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "בדוק בתוספי הדפדפן שלך כל דבר העלול לחסום את שרת הזהות (כגון תגית פרטיות)",
"You should:": "עליכם:", "You should:": "עליכם:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "עליך <b> להסיר את הנתונים האישיים שלך </b> משרת הזהות <idserver /> לפני ההתנתקות. למרבה הצער, שרת זהות <idserver /> נמצא במצב לא מקוון או שאי אפשר להגיע אליו.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "עליך <b> להסיר את הנתונים האישיים שלך </b> משרת הזהות <idserver /> לפני ההתנתקות. למרבה הצער, שרת זהות <idserver /> נמצא במצב לא מקוון או שאי אפשר להגיע אליו.",
"Disconnect": "התנתק",
"Disconnect from the identity server <idserver />?": "התנק משרת ההזדהות <idserver /> ?", "Disconnect from the identity server <idserver />?": "התנק משרת ההזדהות <idserver /> ?",
"Disconnect identity server": "נתק שרת הזדהות", "Disconnect identity server": "נתק שרת הזדהות",
"The identity server you have chosen does not have any terms of service.": "לשרת הזהות שבחרת אין תנאי שירות.", "The identity server you have chosen does not have any terms of service.": "לשרת הזהות שבחרת אין תנאי שירות.",
@ -1693,7 +1673,6 @@
"Wrong file type": "סוג קובץ שגוי", "Wrong file type": "סוג קובץ שגוי",
"Remember my selection for this widget": "זכור את הבחירה שלי עבור יישומון זה", "Remember my selection for this widget": "זכור את הבחירה שלי עבור יישומון זה",
"Decline All": "סרב להכל", "Decline All": "סרב להכל",
"Approve": "אישור",
"This widget would like to:": "יישומון זה רוצה:", "This widget would like to:": "יישומון זה רוצה:",
"Approve widget permissions": "אשר הרשאות יישומון", "Approve widget permissions": "אשר הרשאות יישומון",
"Verification Request": "בקשת אימות", "Verification Request": "בקשת אימות",
@ -1846,7 +1825,6 @@
"Transfer": "לְהַעֲבִיר", "Transfer": "לְהַעֲבִיר",
"Failed to transfer call": "העברת השיחה נכשלה", "Failed to transfer call": "העברת השיחה נכשלה",
"A call can only be transferred to a single user.": "ניתן להעביר שיחה רק למשתמש יחיד.", "A call can only be transferred to a single user.": "ניתן להעביר שיחה רק למשתמש יחיד.",
"Space": "מקש רווח",
"Cancel autocomplete": "בטל השלמה אוטומטית", "Cancel autocomplete": "בטל השלמה אוטומטית",
"Go to Home View": "עבור אל תצוגת הבית", "Go to Home View": "עבור אל תצוגת הבית",
"Toggle right panel": "החלף את החלונית הימנית", "Toggle right panel": "החלף את החלונית הימנית",
@ -1910,7 +1888,6 @@
"Unable to query secret storage status": "לא ניתן לשאול על סטטוס האחסון הסודי", "Unable to query secret storage status": "לא ניתן לשאול על סטטוס האחסון הסודי",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "שדרג את ההפעלה הזו כדי לאפשר לה לאמת פעילויות אחרות, הענק להם גישה להודעות מוצפנות וסמן אותן כאמינות עבור משתמשים אחרים.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "שדרג את ההפעלה הזו כדי לאפשר לה לאמת פעילויות אחרות, הענק להם גישה להודעות מוצפנות וסמן אותן כאמינות עבור משתמשים אחרים.",
"You'll need to authenticate with the server to confirm the upgrade.": "יהיה עליך לבצע אימות מול השרת כדי לאשר את השדרוג.", "You'll need to authenticate with the server to confirm the upgrade.": "יהיה עליך לבצע אימות מול השרת כדי לאשר את השדרוג.",
"Restore": "לשחזר",
"Restore your key backup to upgrade your encryption": "שחזר את גיבוי המפתח שלך כדי לשדרג את ההצפנה שלך", "Restore your key backup to upgrade your encryption": "שחזר את גיבוי המפתח שלך כדי לשדרג את ההצפנה שלך",
"Enter your account password to confirm the upgrade:": "הזן את סיסמת החשבון שלך כדי לאשר את השדרוג:", "Enter your account password to confirm the upgrade:": "הזן את סיסמת החשבון שלך כדי לאשר את השדרוג:",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "הגן מפני אובדן גישה להודעות ונתונים מוצפנים על ידי גיבוי של מפתחות הצפנה בשרת שלך.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "הגן מפני אובדן גישה להודעות ונתונים מוצפנים על ידי גיבוי של מפתחות הצפנה בשרת שלך.",
@ -1932,7 +1909,6 @@
"Room Notification": "הודעת חדר", "Room Notification": "הודעת חדר",
"Notify the whole room": "הודע לכל החדר", "Notify the whole room": "הודע לכל החדר",
"Emoji Autocomplete": "השלמה אוטומטית של אימוג'י", "Emoji Autocomplete": "השלמה אוטומטית של אימוג'י",
"Emoji": "אימוג'י",
"Command Autocomplete": "השלמה אוטומטית של פקודות", "Command Autocomplete": "השלמה אוטומטית של פקודות",
"Commands": "פקודות", "Commands": "פקודות",
"Clear personal data": "נקה מידע אישי", "Clear personal data": "נקה מידע אישי",
@ -2148,7 +2124,6 @@
"Upgrade required": "נדרש שדרוג", "Upgrade required": "נדרש שדרוג",
"Anyone can find and join.": "כל אחד יכול למצוא ולהצטרף.", "Anyone can find and join.": "כל אחד יכול למצוא ולהצטרף.",
"Large": "גדול", "Large": "גדול",
"Rename": "שנה שם",
"Select all": "בחר הכל", "Select all": "בחר הכל",
"Deselect all": "הסר סימון מהכל", "Deselect all": "הסר סימון מהכל",
"Sign out devices": { "Sign out devices": {
@ -2283,7 +2258,6 @@
"Verify this device by completing one of the following:": "אמתו מכשיר זה על ידי מילוי אחת מהפעולות הבאות:", "Verify this device by completing one of the following:": "אמתו מכשיר זה על ידי מילוי אחת מהפעולות הבאות:",
"Your server doesn't support disabling sending read receipts.": "השרת שלכם לא תומך בביטול שליחת אישורי קריאה.", "Your server doesn't support disabling sending read receipts.": "השרת שלכם לא תומך בביטול שליחת אישורי קריאה.",
"Share your activity and status with others.": "שתפו את הפעילות והסטטוס שלכם עם אחרים.", "Share your activity and status with others.": "שתפו את הפעילות והסטטוס שלכם עם אחרים.",
"Presence": "נוכחות",
"Room visibility": "נראות של החדר", "Room visibility": "נראות של החדר",
"%(oneUser)ssent %(count)s hidden messages": { "%(oneUser)ssent %(count)s hidden messages": {
"one": "%(oneUser)sשלח הודעה חבויה", "one": "%(oneUser)sשלח הודעה חבויה",
@ -2369,8 +2343,6 @@
"What do you want to organise?": "מה ברצונכם לארגן ?", "What do you want to organise?": "מה ברצונכם לארגן ?",
"Skip for now": "דלגו לעת עתה", "Skip for now": "דלגו לעת עתה",
"Failed to create initial space rooms": "יצירת חדר חלל עבודה ראשוני נכשלה", "Failed to create initial space rooms": "יצירת חדר חלל עבודה ראשוני נכשלה",
"Support": "תמיכה",
"Random": "אקראי",
"Verify this device": "אמתו את מכשיר זה", "Verify this device": "אמתו את מכשיר זה",
"Unable to verify this device": "לא ניתן לאמת את מכשיר זה", "Unable to verify this device": "לא ניתן לאמת את מכשיר זה",
"Jump to last message": "קיפצו להודעה האחרונה", "Jump to last message": "קיפצו להודעה האחרונה",
@ -2666,7 +2638,21 @@
"description": "תאור", "description": "תאור",
"dark": "כהה", "dark": "כהה",
"attachment": "נספחים", "attachment": "נספחים",
"appearance": "מראה" "appearance": "מראה",
"guest": "אורח",
"legal": "חוקי",
"credits": "נקודות זכות",
"faq": "שאלות נפוצות",
"preferences": "העדפות",
"presence": "נוכחות",
"timeline": "קו זמן",
"privacy": "פרטיות",
"camera": "מצלמה",
"microphone": "מיקרופון",
"emoji": "אימוג'י",
"random": "אקראי",
"support": "תמיכה",
"space": "מקש רווח"
}, },
"action": { "action": {
"continue": "המשך", "continue": "המשך",
@ -2734,7 +2720,19 @@
"cancel": "ביטול", "cancel": "ביטול",
"back": "אחורה", "back": "אחורה",
"add": "הוספה", "add": "הוספה",
"accept": "קבל" "accept": "קבל",
"disconnect": "התנתק",
"change": "שנה",
"subscribe": "הרשמה",
"unsubscribe": "הסרת הרשמה",
"approve": "אישור",
"complete": "מושלם",
"revoke": "לשלול",
"rename": "שנה שם",
"show_all": "הצג הכל",
"review": "סקירה",
"restore": "לשחזר",
"register": "צור חשבון"
}, },
"a11y": { "a11y": {
"user_menu": "תפריט משתמש" "user_menu": "תפריט משתמש"
@ -2772,7 +2770,9 @@
"default": "ברירת מחדל", "default": "ברירת מחדל",
"restricted": "מחוץ לתחום", "restricted": "מחוץ לתחום",
"moderator": "מנהל", "moderator": "מנהל",
"admin": "אדמין" "admin": "אדמין",
"custom": "ידני %(level)s",
"mod": "ממתן"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "אם שלחתם באג דרך GitHub, שליחת לוגים יכולה לעזור לנו לאתר את הבעיה. ", "introduction": "אם שלחתם באג דרך GitHub, שליחת לוגים יכולה לעזור לנו לאתר את הבעיה. ",

View file

@ -37,7 +37,6 @@
"%(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 %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
"Unable to enable Notifications": "अधिसूचनाएं सक्षम करने में असमर्थ", "Unable to enable Notifications": "अधिसूचनाएं सक्षम करने में असमर्थ",
"This email address was not found": "यह ईमेल पता नहीं मिला था", "This email address was not found": "यह ईमेल पता नहीं मिला था",
"Register": "पंजीकरण करें",
"Default": "डिफ़ॉल्ट", "Default": "डिफ़ॉल्ट",
"Restricted": "वर्जित", "Restricted": "वर्जित",
"Moderator": "मध्यस्थ", "Moderator": "मध्यस्थ",
@ -350,19 +349,14 @@
"Language and region": "भाषा और क्षेत्र", "Language and region": "भाषा और क्षेत्र",
"Account management": "खाता प्रबंधन", "Account management": "खाता प्रबंधन",
"Deactivate Account": "खाता निष्क्रिय करें", "Deactivate Account": "खाता निष्क्रिय करें",
"Legal": "कानूनी",
"Credits": "क्रेडिट",
"Check for update": "अपडेट के लिये जांचें", "Check for update": "अपडेट के लिये जांचें",
"Help & About": "सहायता और के बारे में", "Help & About": "सहायता और के बारे में",
"FAQ": "सामान्य प्रश्न",
"Versions": "संस्करण", "Versions": "संस्करण",
"Notifications": "सूचनाएं", "Notifications": "सूचनाएं",
"Start automatically after system login": "सिस्टम लॉगिन के बाद स्वचालित रूप से प्रारंभ करें", "Start automatically after system login": "सिस्टम लॉगिन के बाद स्वचालित रूप से प्रारंभ करें",
"Preferences": "अधिमान",
"Changes your display nickname in the current room only": "केवल वर्तमान कमरे में अपना प्रदर्शन उपनाम बदलता है", "Changes your display nickname in the current room only": "केवल वर्तमान कमरे में अपना प्रदर्शन उपनाम बदलता है",
"Show read receipts sent by other users": "अन्य उपयोगकर्ताओं द्वारा भेजी गई रसीदें दिखाएं", "Show read receipts sent by other users": "अन्य उपयोगकर्ताओं द्वारा भेजी गई रसीदें दिखाएं",
"Scissors": "कैंची", "Scissors": "कैंची",
"Timeline": "समयसीमा",
"Room list": "कक्ष सूचि", "Room list": "कक्ष सूचि",
"Autocomplete delay (ms)": "स्वत: पूर्ण विलंब (ms)", "Autocomplete delay (ms)": "स्वत: पूर्ण विलंब (ms)",
"<not supported>": "<समर्थित नहीं>", "<not supported>": "<समर्थित नहीं>",
@ -380,8 +374,6 @@
"No Webcams detected": "कोई वेबकैम नहीं मिला", "No Webcams detected": "कोई वेबकैम नहीं मिला",
"Default Device": "डिफ़ॉल्ट उपकरण", "Default Device": "डिफ़ॉल्ट उपकरण",
"Audio Output": "ध्वनि - उत्पादन", "Audio Output": "ध्वनि - उत्पादन",
"Microphone": "माइक्रोफ़ोन",
"Camera": "कैमरा",
"Voice & Video": "ध्वनि और वीडियो", "Voice & Video": "ध्वनि और वीडियो",
"Failed to unban": "अप्रतिबंधित करने में विफल", "Failed to unban": "अप्रतिबंधित करने में विफल",
"Banned by %(displayName)s": "%(displayName)s द्वारा प्रतिबंधित", "Banned by %(displayName)s": "%(displayName)s द्वारा प्रतिबंधित",
@ -601,7 +593,14 @@
"theme": "थीम", "theme": "थीम",
"options": "विकल्प", "options": "विकल्प",
"labs": "लैब्स", "labs": "लैब्स",
"attachment": "आसक्ति" "attachment": "आसक्ति",
"legal": "कानूनी",
"credits": "क्रेडिट",
"faq": "सामान्य प्रश्न",
"preferences": "अधिमान",
"timeline": "समयसीमा",
"camera": "कैमरा",
"microphone": "माइक्रोफ़ोन"
}, },
"action": { "action": {
"continue": "आगे बढ़ें", "continue": "आगे बढ़ें",
@ -623,7 +622,8 @@
"close": "बंद", "close": "बंद",
"cancel": "रद्द", "cancel": "रद्द",
"add": "जोड़े", "add": "जोड़े",
"accept": "स्वीकार" "accept": "स्वीकार",
"register": "पंजीकरण करें"
}, },
"labs": { "labs": {
"pinning": "संदेश पिनिंग", "pinning": "संदेश पिनिंग",

View file

@ -13,8 +13,6 @@
"No media permissions": "Nincs média jogosultság", "No media permissions": "Nincs média jogosultság",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Lehet, hogy kézileg kell engedélyeznie a(z) %(brand)s számára, hogy hozzáférjen a mikrofonjához és webkamerájához", "You may need to manually permit %(brand)s to access your microphone/webcam": "Lehet, hogy kézileg kell engedélyeznie a(z) %(brand)s számára, hogy hozzáférjen a mikrofonjához és webkamerájához",
"Default Device": "Alapértelmezett eszköz", "Default Device": "Alapértelmezett eszköz",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Advanced": "Speciális", "Advanced": "Speciális",
"Always show message timestamps": "Üzenetek időbélyegének megjelenítése mindig", "Always show message timestamps": "Üzenetek időbélyegének megjelenítése mindig",
"Authentication": "Azonosítás", "Authentication": "Azonosítás",
@ -54,7 +52,6 @@
"Download %(text)s": "%(text)s letöltése", "Download %(text)s": "%(text)s letöltése",
"Email": "E-mail", "Email": "E-mail",
"Email address": "E-mail-cím", "Email address": "E-mail-cím",
"Emoji": "Emodzsi",
"Enter passphrase": "Jelmondat megadása", "Enter passphrase": "Jelmondat megadása",
"Error decrypting attachment": "Csatolmány visszafejtése sikertelen", "Error decrypting attachment": "Csatolmány visszafejtése sikertelen",
"Export": "Mentés", "Export": "Mentés",
@ -112,7 +109,6 @@
"Privileged Users": "Privilegizált felhasználók", "Privileged Users": "Privilegizált felhasználók",
"Profile": "Profil", "Profile": "Profil",
"Reason": "Ok", "Reason": "Ok",
"Register": "Regisztráció",
"Reject invitation": "Meghívó elutasítása", "Reject invitation": "Meghívó elutasítása",
"Return to login screen": "Vissza a bejelentkezési képernyőre", "Return to login screen": "Vissza a bejelentkezési képernyőre",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "A(z) %(brand)s alkalmazásnak nincs jogosultsága értesítést küldeni ellenőrizze a böngésző beállításait", "%(brand)s does not have permission to send you notifications - please check your browser settings": "A(z) %(brand)s alkalmazásnak nincs jogosultsága értesítést küldeni ellenőrizze a böngésző beállításait",
@ -498,7 +494,6 @@
"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.": "Az üzenete nem lett elküldve, mert a Matrix-kiszolgáló túllépett egy erőforráskorlátot. A szolgáltatás használatának folytatásához <a>vegye fel a kapcsolatot a szolgáltatás rendszergazdájával</a>.", "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.": "Az üzenete nem lett elküldve, mert a Matrix-kiszolgáló túllépett egy erőforráskorlátot. A szolgáltatás használatának folytatásához <a>vegye fel a kapcsolatot a szolgáltatás rendszergazdájával</a>.",
"Please <a>contact your service administrator</a> to continue using this service.": "A szolgáltatás további használatához <a>vegye fel a kapcsolatot a szolgáltatás rendszergazdájával</a>.", "Please <a>contact your service administrator</a> to continue using this service.": "A szolgáltatás további használatához <a>vegye fel a kapcsolatot a szolgáltatás rendszergazdájával</a>.",
"Please contact your homeserver administrator.": "Vegye fel a kapcsolatot a Matrix-kiszolgáló rendszergazdájával.", "Please contact your homeserver administrator.": "Vegye fel a kapcsolatot a Matrix-kiszolgáló rendszergazdájával.",
"Legal": "Jogi feltételek",
"This room has been replaced and is no longer active.": "Ezt a szobát lecseréltük és nem aktív többé.", "This room has been replaced and is no longer active.": "Ezt a szobát lecseréltük és nem aktív többé.",
"The conversation continues here.": "A beszélgetés itt folytatódik.", "The conversation continues here.": "A beszélgetés itt folytatódik.",
"This room is a continuation of another conversation.": "Ez a szoba egy másik beszélgetés folytatása.", "This room is a continuation of another conversation.": "Ez a szoba egy másik beszélgetés folytatása.",
@ -623,12 +618,9 @@
"For help with using %(brand)s, click <a>here</a>.": "Az %(brand)s használatában való segítséghez kattintson <a>ide</a>.", "For help with using %(brand)s, click <a>here</a>.": "Az %(brand)s használatában való segítséghez kattintson <a>ide</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Az %(brand)s használatában való segítségért kattintson <a>ide</a>, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Az %(brand)s használatában való segítségért kattintson <a>ide</a>, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.",
"Help & About": "Súgó és névjegy", "Help & About": "Súgó és névjegy",
"FAQ": "GYIK",
"Versions": "Verziók", "Versions": "Verziók",
"Preferences": "Beállítások",
"Composer": "Szerkesztő", "Composer": "Szerkesztő",
"Room list": "Szobalista", "Room list": "Szobalista",
"Timeline": "Idővonal",
"Autocomplete delay (ms)": "Automatikus kiegészítés késleltetése (ms)", "Autocomplete delay (ms)": "Automatikus kiegészítés késleltetése (ms)",
"Roles & Permissions": "Szerepek és jogosultságok", "Roles & Permissions": "Szerepek és jogosultságok",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "A üzenetek olvashatóságának változtatása csak az új üzenetekre lesz érvényes. A régi üzenetek láthatósága nem fog változni.", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "A üzenetek olvashatóságának változtatása csak az új üzenetekre lesz érvényes. A régi üzenetek láthatósága nem fog változni.",
@ -651,7 +643,6 @@
"Phone (optional)": "Telefonszám (nem kötelező)", "Phone (optional)": "Telefonszám (nem kötelező)",
"Join millions for free on the largest public server": "Csatlakozzon több millió felhasználóhoz ingyen a legnagyobb nyilvános szerveren", "Join millions for free on the largest public server": "Csatlakozzon több millió felhasználóhoz ingyen a legnagyobb nyilvános szerveren",
"Other": "Egyéb", "Other": "Egyéb",
"Guest": "Vendég",
"Create account": "Fiók létrehozása", "Create account": "Fiók létrehozása",
"Recovery Method Removed": "Helyreállítási mód törölve", "Recovery Method Removed": "Helyreállítási mód törölve",
"If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Ha nem Ön törölte a helyreállítási módot, akkor lehet, hogy egy támadó hozzá akar férni a fiókjához. Azonnal változtassa meg a jelszavát, és állítson be egy helyreállítási módot a Beállításokban.", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Ha nem Ön törölte a helyreállítási módot, akkor lehet, hogy egy támadó hozzá akar férni a fiókjához. Azonnal változtassa meg a jelszavát, és állítson be egy helyreállítási módot a Beállításokban.",
@ -729,7 +720,6 @@
"Headphones": "Fejhallgató", "Headphones": "Fejhallgató",
"Folder": "Dosszié", "Folder": "Dosszié",
"This homeserver would like to make sure you are not a robot.": "A Matrix-kiszolgáló ellenőrizné, hogy Ön nem egy robot.", "This homeserver would like to make sure you are not a robot.": "A Matrix-kiszolgáló ellenőrizné, hogy Ön nem egy robot.",
"Change": "Módosítás",
"Couldn't load page": "Az oldal nem tölthető be", "Couldn't load page": "Az oldal nem tölthető be",
"Your password has been reset.": "A jelszavad újra beállításra került.", "Your password has been reset.": "A jelszavad újra beállításra került.",
"This homeserver does not support login using email address.": "Ez a Matrix-kiszolgáló nem támogatja az e-mail-címmel történő bejelentkezést.", "This homeserver does not support login using email address.": "Ez a Matrix-kiszolgáló nem támogatja az e-mail-címmel történő bejelentkezést.",
@ -747,7 +737,6 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Figyelmeztetés</b>: csak biztonságos számítógépről állítson be kulcsmentést.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Figyelmeztetés</b>: csak biztonságos számítógépről állítson be kulcsmentést.",
"Your keys are being backed up (the first backup could take a few minutes).": "A kulcsaid mentése folyamatban van (az első mentés több percig is eltarthat).", "Your keys are being backed up (the first backup could take a few minutes).": "A kulcsaid mentése folyamatban van (az első mentés több percig is eltarthat).",
"Success!": "Sikeres!", "Success!": "Sikeres!",
"Credits": "Közreműködők",
"Changes your display nickname in the current room only": "Csak ebben a szobában változtatja meg a megjelenítendő becenevét", "Changes your display nickname in the current room only": "Csak ebben a szobában változtatja meg a megjelenítendő becenevét",
"Show read receipts sent by other users": "Mások által küldött olvasási visszajelzések megjelenítése", "Show read receipts sent by other users": "Mások által küldött olvasási visszajelzések megjelenítése",
"Scissors": "Olló", "Scissors": "Olló",
@ -881,7 +870,6 @@
"Edited at %(date)s. Click to view edits.": "Szerkesztés ideje: %(date)s. Kattintson a szerkesztések megtekintéséhez.", "Edited at %(date)s. Click to view edits.": "Szerkesztés ideje: %(date)s. Kattintson a szerkesztések megtekintéséhez.",
"Message edits": "Üzenetszerkesztések", "Message edits": "Üzenetszerkesztések",
"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:": "A szoba fejlesztéséhez be kell zárnia ezt a szobát, és egy újat kell létrehoznia helyette. Hogy a szoba tagjai számára a lehető legjobb legyen a felhasználói élmény, a következők lépések lesznek végrehajtva:", "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:": "A szoba fejlesztéséhez be kell zárnia ezt a szobát, és egy újat kell létrehoznia helyette. Hogy a szoba tagjai számára a lehető legjobb legyen a felhasználói élmény, a következők lépések lesznek végrehajtva:",
"Show all": "Mind megjelenítése",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s %(count)s alkalommal nem változtattak semmit", "other": "%(severalUsers)s %(count)s alkalommal nem változtattak semmit",
"one": "%(severalUsers)s nem változtattak semmit" "one": "%(severalUsers)s nem változtattak semmit"
@ -921,7 +909,6 @@
"The identity server you have chosen does not have any terms of service.": "A választott azonosítási kiszolgálóhoz nem tartoznak felhasználási feltételek.", "The identity server you have chosen does not have any terms of service.": "A választott azonosítási kiszolgálóhoz nem tartoznak felhasználási feltételek.",
"Only continue if you trust the owner of the server.": "Csak akkor lépjen tovább, ha megbízik a kiszolgáló tulajdonosában.", "Only continue if you trust the owner of the server.": "Csak akkor lépjen tovább, ha megbízik a kiszolgáló tulajdonosában.",
"Disconnect from the identity server <idserver />?": "Bontja a kapcsolatot ezzel az azonosítási kiszolgálóval: <idserver />?", "Disconnect from the identity server <idserver />?": "Bontja a kapcsolatot ezzel az azonosítási kiszolgálóval: <idserver />?",
"Disconnect": "Kapcsolat bontása",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Jelenleg a(z) <server></server> kiszolgálót használja a kapcsolatok kereséséhez, és hogy megtalálják az ismerősei. A használt azonosítási kiszolgálót alább tudja megváltoztatni.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Jelenleg a(z) <server></server> kiszolgálót használja a kapcsolatok kereséséhez, és hogy megtalálják az ismerősei. A használt azonosítási kiszolgálót alább tudja megváltoztatni.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Jelenleg nem használ azonosítási kiszolgálót. A kapcsolatok kereséséhez, és hogy megtalálják az ismerősei, adjon hozzá egy azonosítási kiszolgálót.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Jelenleg nem használ azonosítási kiszolgálót. A kapcsolatok kereséséhez, és hogy megtalálják az ismerősei, adjon hozzá egy azonosítási kiszolgálót.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Az azonosítási kiszolgáló kapcsolatának bontása azt eredményezi, hogy más felhasználók nem találják meg Önt, és nem tud másokat meghívni e-mail-cím vagy telefonszám alapján.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Az azonosítási kiszolgáló kapcsolatának bontása azt eredményezi, hogy más felhasználók nem találják meg Önt, és nem tud másokat meghívni e-mail-cím vagy telefonszám alapján.",
@ -932,7 +919,6 @@
"Always show the window menu bar": "Ablak menüsávjának megjelenítése mindig", "Always show the window menu bar": "Ablak menüsávjának megjelenítése mindig",
"Unable to revoke sharing for email address": "Az e-mail cím megosztását nem sikerült visszavonni", "Unable to revoke sharing for email address": "Az e-mail cím megosztását nem sikerült visszavonni",
"Unable to share email address": "Az e-mail címet nem sikerült megosztani", "Unable to share email address": "Az e-mail címet nem sikerült megosztani",
"Revoke": "Visszavon",
"Discovery options will appear once you have added an email above.": "Felkutatási beállítások megjelennek amint hozzáadtál egy e-mail címet alább.", "Discovery options will appear once you have added an email above.": "Felkutatási beállítások megjelennek amint hozzáadtál egy e-mail címet alább.",
"Unable to revoke sharing for phone number": "A telefonszám megosztást nem sikerült visszavonni", "Unable to revoke sharing for phone number": "A telefonszám megosztást nem sikerült visszavonni",
"Unable to share phone number": "A telefonszámot nem sikerült megosztani", "Unable to share phone number": "A telefonszámot nem sikerült megosztani",
@ -985,7 +971,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.", "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", "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", "Verify the link in your inbox": "Ellenőrizd a hivatkozást a bejövő leveleid között",
"Complete": "Kiegészít",
"Please fill why you're reporting.": "Adja meg, hogy miért jelenti.", "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", "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.", "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.",
@ -1077,7 +1062,6 @@
"You have not ignored anyone.": "Senkit sem mellőz.", "You have not ignored anyone.": "Senkit sem mellőz.",
"You are currently ignoring:": "Jelenleg őket mellőzi:", "You are currently ignoring:": "Jelenleg őket mellőzi:",
"You are not subscribed to any lists": "Nem iratkozott fel egyetlen listára sem", "You are not subscribed to any lists": "Nem iratkozott fel egyetlen listára sem",
"Unsubscribe": "Leiratkozás",
"View rules": "Szabályok megtekintése", "View rules": "Szabályok megtekintése",
"You are currently subscribed to:": "Jelenleg ezekre van feliratkozva:", "You are currently subscribed to:": "Jelenleg ezekre van feliratkozva:",
"⚠ These settings are meant for advanced users.": "⚠ Ezek a beállítások haladó felhasználók számára vannak.", "⚠ These settings are meant for advanced users.": "⚠ Ezek a beállítások haladó felhasználók számára vannak.",
@ -1088,9 +1072,7 @@
"Subscribed lists": "Feliratkozott listák", "Subscribed lists": "Feliratkozott listák",
"Subscribing to a ban list will cause you to join it!": "A tiltólistára történő feliratkozás azzal jár, hogy csatlakozik hozzá!", "Subscribing to a ban list will cause you to join it!": "A tiltólistára történő feliratkozás azzal jár, hogy csatlakozik hozzá!",
"If this isn't what you want, please use a different tool to ignore users.": "Ha nem ez az amit szeretne, akkor használjon más eszközt a felhasználók mellőzéséhez.", "If this isn't what you want, please use a different tool to ignore users.": "Ha nem ez az amit szeretne, akkor használjon más eszközt a felhasználók mellőzéséhez.",
"Subscribe": "Feliratkozás",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Ezt a felhasználót figyelmen kívül hagyod, így az üzenetei el lesznek rejtve. <a>Megjelenítés mindenképpen.</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Ezt a felhasználót figyelmen kívül hagyod, így az üzenetei el lesznek rejtve. <a>Megjelenítés mindenképpen.</a>",
"Custom (%(level)s)": "Egyéni (%(level)s)",
"Trusted": "Megbízható", "Trusted": "Megbízható",
"Not trusted": "Megbízhatatlan", "Not trusted": "Megbízhatatlan",
"Messages in this room are end-to-end encrypted.": "Az üzenetek a szobában végponttól végpontig titkosítottak.", "Messages in this room are end-to-end encrypted.": "Az üzenetek a szobában végponttól végpontig titkosítottak.",
@ -1185,7 +1167,6 @@
"%(num)s hours from now": "%(num)s óra múlva", "%(num)s hours from now": "%(num)s óra múlva",
"about a day from now": "egy nap múlva", "about a day from now": "egy nap múlva",
"%(num)s days from now": "%(num)s nap múlva", "%(num)s days from now": "%(num)s nap múlva",
"Restore": "Visszaállítás",
"Other users may not trust it": "Más felhasználók lehet, hogy nem bíznak benne", "Other users may not trust it": "Más felhasználók lehet, hogy nem bíznak benne",
"Later": "Később", "Later": "Később",
"Something went wrong trying to invite the users.": "Valami nem sikerült a felhasználók meghívásával.", "Something went wrong trying to invite the users.": "Valami nem sikerült a felhasználók meghívásával.",
@ -1210,7 +1191,6 @@
"Verify this session": "Munkamenet ellenőrzése", "Verify this session": "Munkamenet ellenőrzése",
"Encryption upgrade available": "A titkosítási fejlesztés elérhető", "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", "Enable message search in encrypted rooms": "Üzenetek keresésének bekapcsolása a titkosított szobákban",
"Review": "Átnézés",
"This bridge was provisioned by <user />.": "Ezt a hidat a következő készítette: <user />.", "This bridge was provisioned by <user />.": "Ezt a hidat a következő készítette: <user />.",
"Show less": "Kevesebb megjelenítése", "Show less": "Kevesebb megjelenítése",
"Manage": "Kezelés", "Manage": "Kezelés",
@ -1251,7 +1231,6 @@
"You have not verified this user.": "Még nem ellenőrizted ezt a felhasználót.", "You have not verified this user.": "Még nem ellenőrizted ezt a felhasználót.",
"You have verified this user. This user has verified all of their sessions.": "Ezt a felhasználót ellenőrizted. Ez a felhasználó hitelesítette az összes munkamenetét.", "You have verified this user. This user has verified all of their sessions.": "Ezt a felhasználót ellenőrizted. Ez a felhasználó hitelesítette az összes munkamenetét.",
"Someone is using an unknown session": "Valaki ellenőrizetlen munkamenetet használ", "Someone is using an unknown session": "Valaki ellenőrizetlen munkamenetet használ",
"Mod": "Mod",
"Encrypted by an unverified session": "Ellenőrizetlen munkamenet titkosította", "Encrypted by an unverified session": "Ellenőrizetlen munkamenet titkosította",
"Encrypted by a deleted session": "Törölt munkamenet által lett titkosítva", "Encrypted by a deleted session": "Törölt munkamenet által lett titkosítva",
"Waiting for %(displayName)s to accept…": "%(displayName)s felhasználóra várakozás az elfogadáshoz…", "Waiting for %(displayName)s to accept…": "%(displayName)s felhasználóra várakozás az elfogadáshoz…",
@ -1387,7 +1366,6 @@
"Activate selected button": "Kiválasztott gomb aktiválása", "Activate selected button": "Kiválasztott gomb aktiválása",
"Toggle right panel": "Jobb oldali panel be/ki", "Toggle right panel": "Jobb oldali panel be/ki",
"Cancel autocomplete": "Automatikus kiegészítés megszakítása", "Cancel autocomplete": "Automatikus kiegészítés megszakítása",
"Space": "Tér",
"Use Single Sign On to continue": "A folytatáshoz használja az egyszeri bejelentkezést (SSO)", "Use Single Sign On to continue": "A folytatáshoz használja az egyszeri bejelentkezést (SSO)",
"Single Sign On": "Egyszeri bejelentkezés", "Single Sign On": "Egyszeri bejelentkezés",
"%(name)s is requesting verification": "%(name)s ellenőrzést kér", "%(name)s is requesting verification": "%(name)s ellenőrzést kér",
@ -1571,7 +1549,6 @@
"Block anyone not part of %(serverName)s from ever joining this room.": "A szobába ne léphessenek be azok, akik nem ezen a szerveren vannak: %(serverName)s.", "Block anyone not part of %(serverName)s from ever joining this room.": "A szobába ne léphessenek be azok, akik nem ezen a szerveren vannak: %(serverName)s.",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Az egyszerű szöveges üzenet elé teszi ezt: ( ͡° ͜ʖ ͡°)", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Az egyszerű szöveges üzenet elé teszi ezt: ( ͡° ͜ʖ ͡°)",
"Unknown App": "Ismeretlen alkalmazás", "Unknown App": "Ismeretlen alkalmazás",
"Privacy": "Adatvédelem",
"Not encrypted": "Nem titkosított", "Not encrypted": "Nem titkosított",
"Room settings": "Szoba beállítások", "Room settings": "Szoba beállítások",
"Take a picture": "Fénykép készítése", "Take a picture": "Fénykép készítése",
@ -1923,7 +1900,6 @@
"Hold": "Várakoztatás", "Hold": "Várakoztatás",
"Resume": "Folytatás", "Resume": "Folytatás",
"Decline All": "Összes elutasítása", "Decline All": "Összes elutasítása",
"Approve": "Engedélyezés",
"This widget would like to:": "A kisalkalmazás ezeket szeretné:", "This widget would like to:": "A kisalkalmazás ezeket szeretné:",
"Approve widget permissions": "Kisalkalmazás-engedélyek elfogadása", "Approve widget permissions": "Kisalkalmazás-engedélyek elfogadása",
"Sign into your homeserver": "Bejelentkezés a Matrix-kiszolgálójába", "Sign into your homeserver": "Bejelentkezés a Matrix-kiszolgálójába",
@ -2098,8 +2074,6 @@
"Who are you working with?": "Kivel dolgozik együtt?", "Who are you working with?": "Kivel dolgozik együtt?",
"Skip for now": "Kihagy egyenlőre", "Skip for now": "Kihagy egyenlőre",
"Failed to create initial space rooms": "Térhez tartozó kezdő szobákat nem sikerült elkészíteni", "Failed to create initial space rooms": "Térhez tartozó kezdő szobákat nem sikerült elkészíteni",
"Support": "Támogatás",
"Random": "Véletlen",
"Welcome to <name/>": "Üdvözöl a(z) <name/>", "Welcome to <name/>": "Üdvözöl a(z) <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s tag", "one": "%(count)s tag",
@ -2222,8 +2196,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Válassz szobákat vagy beszélgetéseket amit hozzáadhat. Ez csak az ön tere, senki nem lesz értesítve. Továbbiakat később is hozzáadhat.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Válassz szobákat vagy beszélgetéseket amit hozzáadhat. Ez csak az ön tere, senki nem lesz értesítve. Továbbiakat később is hozzáadhat.",
"What do you want to organise?": "Mit szeretne megszervezni?", "What do you want to organise?": "Mit szeretne megszervezni?",
"You have no ignored users.": "Nincsenek mellőzött felhasználók.", "You have no ignored users.": "Nincsenek mellőzött felhasználók.",
"Play": "Lejátszás",
"Pause": "Szünet",
"Select a room below first": "Először válasszon ki szobát alulról", "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", "Join the beta": "Csatlakozás béta lehetőségekhez",
"Leave the beta": "Béta kikapcsolása", "Leave the beta": "Béta kikapcsolása",
@ -2240,7 +2212,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Nem lehet a mikrofont használni. Ellenőrizze a böngésző beállításait és próbálja újra.", "We were unable to access your microphone. Please check your browser settings and try again.": "Nem lehet a mikrofont használni. Ellenőrizze a böngésző beállításait és próbálja újra.",
"Unable to access your microphone": "A mikrofont nem lehet használni", "Unable to access your microphone": "A mikrofont nem lehet használni",
"Your access token gives full access to your account. Do not share it with anyone.": "A hozzáférési kulcs teljes elérést biztosít a fiókhoz. Soha ne ossza meg mással.", "Your access token gives full access to your account. Do not share it with anyone.": "A hozzáférési kulcs teljes elérést biztosít a fiókhoz. Soha ne ossza meg mással.",
"Access Token": "Hozzáférési kulcs",
"Please enter a name for the space": "Adjon meg egy nevet a térhez", "Please enter a name for the space": "Adjon meg egy nevet a térhez",
"Connecting": "Kapcsolódás", "Connecting": "Kapcsolódás",
"To leave the beta, visit your settings.": "A beállításokban tudja elhagyni a bétát.", "To leave the beta, visit your settings.": "A beállításokban tudja elhagyni a bétát.",
@ -2603,7 +2574,6 @@
"You do not have permission to start polls in this room.": "Nincs joga szavazást kezdeményezni ebben a szobában.", "You do not have permission to start polls in this room.": "Nincs joga szavazást kezdeményezni ebben a szobában.",
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Ez a szoba egy platformra sem hidalja át az üzeneteket. <a>Tudjon meg többet.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Ez a szoba egy platformra sem hidalja át az üzeneteket. <a>Tudjon meg többet.</a>",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Ez a szoba olyan terekben is benne van, amelynek nem Ön az adminisztrátora. Ezekben a terekben továbbra is a régi szoba jelenik meg, de az emberek jelzést kapnak, hogy lépjenek be az újba.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Ez a szoba olyan terekben is benne van, amelynek nem Ön az adminisztrátora. Ezekben a terekben továbbra is a régi szoba jelenik meg, de az emberek jelzést kapnak, hogy lépjenek be az újba.",
"Rename": "Átnevezés",
"Select all": "Mindet kijelöli", "Select all": "Mindet kijelöli",
"Deselect all": "Semmit nem jelöl ki", "Deselect all": "Semmit nem jelöl ki",
"Sign out devices": { "Sign out devices": {
@ -3259,7 +3229,6 @@
"Sessions": "Munkamenetek", "Sessions": "Munkamenetek",
"Your server doesn't support disabling sending read receipts.": "A kiszolgálója nem támogatja az olvasási visszajelzések elküldésének kikapcsolását.", "Your server doesn't support disabling sending read receipts.": "A kiszolgálója nem támogatja az olvasási visszajelzések elküldésének kikapcsolását.",
"Share your activity and status with others.": "Ossza meg a tevékenységét és állapotát másokkal.", "Share your activity and status with others.": "Ossza meg a tevékenységét és állapotát másokkal.",
"Presence": "Állapot",
"Spell check": "Helyesírás-ellenőrzés", "Spell check": "Helyesírás-ellenőrzés",
"Complete these to get the most out of %(brand)s": "Ezen lépések befejezésével hozhatja ki a legtöbbet a(z) %(brand)s használatából", "Complete these to get the most out of %(brand)s": "Ezen lépések befejezésével hozhatja ki a legtöbbet a(z) %(brand)s használatából",
"Unverified": "Ellenőrizetlen", "Unverified": "Ellenőrizetlen",
@ -3277,13 +3246,11 @@
"Welcome": "Üdvözöljük", "Welcome": "Üdvözöljük",
"Show shortcut to welcome checklist above the room list": "Kezdő lépések elvégzésének hivatkozásának megjelenítése a szobalista fölött", "Show shortcut to welcome checklist above the room list": "Kezdő lépések elvégzésének hivatkozásának megjelenítése a szobalista fölött",
"Inactive sessions": "Nem aktív munkamenetek", "Inactive sessions": "Nem aktív munkamenetek",
"View all": "Összes megtekintése",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Erősítse meg a munkameneteit a még biztonságosabb csevegéshez vagy jelentkezzen ki ezekből, ha nem ismeri fel vagy már nem használja őket.", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Erősítse meg a munkameneteit a még biztonságosabb csevegéshez vagy jelentkezzen ki ezekből, ha nem ismeri fel vagy már nem használja őket.",
"Unverified sessions": "Meg nem erősített munkamenetek", "Unverified sessions": "Meg nem erősített munkamenetek",
"Security recommendations": "Biztonsági javaslatok", "Security recommendations": "Biztonsági javaslatok",
"Interactively verify by emoji": "Interaktív ellenőrzés emodzsikkal", "Interactively verify by emoji": "Interaktív ellenőrzés emodzsikkal",
"Manually verify by text": "Kézi szöveges ellenőrzés", "Manually verify by text": "Kézi szöveges ellenőrzés",
"Show": "Megjelenítés",
"Filter devices": "Szűrőeszközök", "Filter devices": "Szűrőeszközök",
"Inactive for %(inactiveAgeDays)s days or longer": "Inaktív %(inactiveAgeDays)s óta vagy annál hosszabb ideje", "Inactive for %(inactiveAgeDays)s days or longer": "Inaktív %(inactiveAgeDays)s óta vagy annál hosszabb ideje",
"Inactive": "Inaktív", "Inactive": "Inaktív",
@ -3724,7 +3691,22 @@
"dark": "Sötét", "dark": "Sötét",
"beta": "Béta", "beta": "Béta",
"attachment": "Melléklet", "attachment": "Melléklet",
"appearance": "Megjelenítés" "appearance": "Megjelenítés",
"guest": "Vendég",
"legal": "Jogi feltételek",
"credits": "Közreműködők",
"faq": "GYIK",
"access_token": "Hozzáférési kulcs",
"preferences": "Beállítások",
"presence": "Állapot",
"timeline": "Idővonal",
"privacy": "Adatvédelem",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emodzsi",
"random": "Véletlen",
"support": "Támogatás",
"space": "Tér"
}, },
"action": { "action": {
"continue": "Folytatás", "continue": "Folytatás",
@ -3796,7 +3778,23 @@
"back": "Vissza", "back": "Vissza",
"apply": "Alkalmaz", "apply": "Alkalmaz",
"add": "Hozzáadás", "add": "Hozzáadás",
"accept": "Elfogadás" "accept": "Elfogadás",
"disconnect": "Kapcsolat bontása",
"change": "Módosítás",
"subscribe": "Feliratkozás",
"unsubscribe": "Leiratkozás",
"approve": "Engedélyezés",
"complete": "Kiegészít",
"revoke": "Visszavon",
"rename": "Átnevezés",
"view_all": "Összes megtekintése",
"show_all": "Mind megjelenítése",
"show": "Megjelenítés",
"review": "Átnézés",
"restore": "Visszaállítás",
"play": "Lejátszás",
"pause": "Szünet",
"register": "Regisztráció"
}, },
"a11y": { "a11y": {
"user_menu": "Felhasználói menü" "user_menu": "Felhasználói menü"
@ -3878,7 +3876,9 @@
"default": "Alapértelmezett", "default": "Alapértelmezett",
"restricted": "Korlátozott", "restricted": "Korlátozott",
"moderator": "Moderátor", "moderator": "Moderátor",
"admin": "Admin" "admin": "Admin",
"custom": "Egyéni (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Ha a GitHubon keresztül küldött be hibajegyet, akkor a hibakeresési napló segít nekünk felderíteni a problémát. ", "introduction": "Ha a GitHubon keresztül küldött be hibajegyet, akkor a hibakeresési napló segít nekünk felderíteni a problémát. ",

View file

@ -2,8 +2,6 @@
"Account": "Akun", "Account": "Akun",
"No Microphones detected": "Tidak ada mikrofon terdeteksi", "No Microphones detected": "Tidak ada mikrofon terdeteksi",
"No media permissions": "Tidak ada izin media", "No media permissions": "Tidak ada izin media",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Are you sure?": "Apakah Anda yakin?", "Are you sure?": "Apakah Anda yakin?",
"An error has occurred.": "Telah terjadi kesalahan.", "An error has occurred.": "Telah terjadi kesalahan.",
"Are you sure you want to reject the invitation?": "Anda yakin menolak undangannya?", "Are you sure you want to reject the invitation?": "Anda yakin menolak undangannya?",
@ -33,7 +31,6 @@
"Permissions": "Izin", "Permissions": "Izin",
"Profile": "Profil", "Profile": "Profil",
"Reason": "Alasan", "Reason": "Alasan",
"Register": "Daftar",
"%(brand)s version:": "Versi %(brand)s:", "%(brand)s version:": "Versi %(brand)s:",
"Return to login screen": "Kembali ke halaman masuk", "Return to login screen": "Kembali ke halaman masuk",
"Rooms": "Ruangan", "Rooms": "Ruangan",
@ -245,7 +242,6 @@
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Kami telah mengirim yang lainnya, tetapi orang berikut ini tidak dapat diundang ke <RoomName/>", "We sent the others, but the below people couldn't be invited to <RoomName/>": "Kami telah mengirim yang lainnya, tetapi orang berikut ini tidak dapat diundang ke <RoomName/>",
"Some invites couldn't be sent": "Beberapa undangan tidak dapat dikirim", "Some invites couldn't be sent": "Beberapa undangan tidak dapat dikirim",
"Failed to invite": "Gagal untuk mengundang", "Failed to invite": "Gagal untuk mengundang",
"Custom (%(level)s)": "Kustom (%(level)s)",
"Moderator": "Moderator", "Moderator": "Moderator",
"Restricted": "Dibatasi", "Restricted": "Dibatasi",
"Sign In or Create Account": "Masuk atau Buat Akun", "Sign In or Create Account": "Masuk atau Buat Akun",
@ -582,7 +578,6 @@
"Unignore": "Hilangkan Abaian", "Unignore": "Hilangkan Abaian",
"Copied!": "Disalin!", "Copied!": "Disalin!",
"Users": "Pengguna", "Users": "Pengguna",
"Emoji": "Emoji",
"Phone": "Ponsel", "Phone": "Ponsel",
"Historical": "Riwayat", "Historical": "Riwayat",
"Idle": "Idle", "Idle": "Idle",
@ -590,40 +585,32 @@
"Anyone": "Siapa Saja", "Anyone": "Siapa Saja",
"Unban": "Hilangkan Cekalan", "Unban": "Hilangkan Cekalan",
"Home": "Beranda", "Home": "Beranda",
"Restore": "Pulihkan",
"Support": "Dukungan",
"Random": "Sembarangan",
"Removing…": "Menghilangkan…", "Removing…": "Menghilangkan…",
"Suggested": "Disarankan", "Suggested": "Disarankan",
"Away": "Idle", "Away": "Idle",
"Resume": "Lanjutkan", "Resume": "Lanjutkan",
"Approve": "Setujui",
"Comment": "Komentar", "Comment": "Komentar",
"Information": "Informasi", "Information": "Informasi",
"Widgets": "Widget", "Widgets": "Widget",
"Favourited": "Difavorit", "Favourited": "Difavorit",
"A-Z": "A-Z", "A-Z": "A-Z",
"Activity": "Aktivitas", "Activity": "Aktivitas",
"Privacy": "Privasi",
"ready": "siap", "ready": "siap",
"Algorithm:": "Algoritma:", "Algorithm:": "Algoritma:",
"Autocomplete": "Pelengkapan Otomatis", "Autocomplete": "Pelengkapan Otomatis",
"Calls": "Panggilan", "Calls": "Panggilan",
"Navigation": "Navigasi", "Navigation": "Navigasi",
"Space": "Space",
"Feedback": "Masukan", "Feedback": "Masukan",
"Matrix": "Matrix", "Matrix": "Matrix",
"Categories": "Categori", "Categories": "Categori",
"Go": "Mulai", "Go": "Mulai",
"Unencrypted": "Tidak Dienkripsi", "Unencrypted": "Tidak Dienkripsi",
"Mod": "Mod",
"Bridges": "Jembatan", "Bridges": "Jembatan",
"Cross-signing": "Penandatanganan silang", "Cross-signing": "Penandatanganan silang",
"Manage": "Kelola", "Manage": "Kelola",
"exists": "sudah ada", "exists": "sudah ada",
"Lock": "Gembok", "Lock": "Gembok",
"Later": "Nanti", "Later": "Nanti",
"Review": "Lihat",
"Document": "Dokumen", "Document": "Dokumen",
"Flags": "Bendera", "Flags": "Bendera",
"Symbols": "Simbol", "Symbols": "Simbol",
@ -632,13 +619,8 @@
"Trusted": "Dipercayai", "Trusted": "Dipercayai",
"Accepting…": "Menerima…", "Accepting…": "Menerima…",
"Italics": "Miring", "Italics": "Miring",
"Complete": "Selesai",
"Subscribe": "Berlangganan",
"Unsubscribe": "Berhenti Berlangganan",
"None": "Tidak Ada", "None": "Tidak Ada",
"Ignored/Blocked": "Diabaikan/Diblokir", "Ignored/Blocked": "Diabaikan/Diblokir",
"Disconnect": "Lepaskan Hubungan",
"Revoke": "Hapus",
"Mushroom": "Jamur", "Mushroom": "Jamur",
"Encrypted": "Terenkripsi", "Encrypted": "Terenkripsi",
"Folder": "Map", "Folder": "Map",
@ -653,9 +635,7 @@
"Re-join": "Bergabung Ulang", "Re-join": "Bergabung Ulang",
"Browse": "Jelajahi", "Browse": "Jelajahi",
"Sounds": "Suara", "Sounds": "Suara",
"Credits": "Kredit",
"Discovery": "Penemuan", "Discovery": "Penemuan",
"Change": "Ubah",
"Headphones": "Headphone", "Headphones": "Headphone",
"Anchor": "Jangkar", "Anchor": "Jangkar",
"Bell": "Lonceng", "Bell": "Lonceng",
@ -713,16 +693,11 @@
"Lion": "Singa", "Lion": "Singa",
"Cat": "Kucing", "Cat": "Kucing",
"Dog": "Anjing", "Dog": "Anjing",
"Guest": "Tamu",
"Demote": "Turunkan", "Demote": "Turunkan",
"Stickerpack": "Paket Stiker", "Stickerpack": "Paket Stiker",
"Replying": "Membalas", "Replying": "Membalas",
"Timeline": "Lini Masa",
"Composer": "Komposer", "Composer": "Komposer",
"Preferences": "Preferensi",
"Versions": "Versi", "Versions": "Versi",
"FAQ": "FAQ",
"Legal": "Hukum",
"Encryption": "Enkripsi", "Encryption": "Enkripsi",
"General": "Umum", "General": "Umum",
"Verified!": "Terverifikasi!", "Verified!": "Terverifikasi!",
@ -878,14 +853,11 @@
"Access": "Akses", "Access": "Akses",
"Global": "Global", "Global": "Global",
"Keyword": "Kata kunci", "Keyword": "Kata kunci",
"Rename": "Ubah Nama",
"Visibility": "Visibilitas", "Visibility": "Visibilitas",
"Address": "Alamat", "Address": "Alamat",
"Hangup": "Akhiri", "Hangup": "Akhiri",
"Dialpad": "Tombol Penyetel", "Dialpad": "Tombol Penyetel",
"More": "Lagi", "More": "Lagi",
"Play": "Mainkan",
"Pause": "Jeda",
"Avatar": "Avatar", "Avatar": "Avatar",
"Hold": "Jeda", "Hold": "Jeda",
"Transfer": "Pindah", "Transfer": "Pindah",
@ -1496,7 +1468,6 @@
"Error adding ignored user/server": "Terjadi kesalahan menambahkan pengguna/server yang diabaikan", "Error adding ignored user/server": "Terjadi kesalahan menambahkan pengguna/server yang diabaikan",
"Clear cache and reload": "Hapus cache dan muat ulang", "Clear cache and reload": "Hapus cache dan muat ulang",
"Your access token gives full access to your account. Do not share it with anyone.": "Token akses Anda memberikan akses penuh ke akun Anda. Jangan bagikan dengan siapa pun.", "Your access token gives full access to your account. Do not share it with anyone.": "Token akses Anda memberikan akses penuh ke akun Anda. Jangan bagikan dengan siapa pun.",
"Access Token": "Token Akses",
"Help & About": "Bantuan & Tentang", "Help & About": "Bantuan & Tentang",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Untuk melaporkan masalah keamanan yang berkaitan dengan Matrix, mohon baca <a>Kebijakan Penyingkapan Keamanan</a> Matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Untuk melaporkan masalah keamanan yang berkaitan dengan Matrix, mohon baca <a>Kebijakan Penyingkapan Keamanan</a> Matrix.org.",
"Chat with %(brand)s Bot": "Mulai mengobrol dengan %(brand)s Bot", "Chat with %(brand)s Bot": "Mulai mengobrol dengan %(brand)s Bot",
@ -1799,7 +1770,6 @@
"Message deleted on %(date)s": "Pesan terhapus di %(date)s", "Message deleted on %(date)s": "Pesan terhapus di %(date)s",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>bereaksi dengan %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>bereaksi dengan %(shortName)s</reactedWith>",
"%(reactors)s reacted with %(content)s": "%(reactors)s berekasi dengan %(content)s", "%(reactors)s reacted with %(content)s": "%(reactors)s berekasi dengan %(content)s",
"Show all": "Tampilkan semua",
"Add reaction": "Tambahkan reaksi", "Add reaction": "Tambahkan reaksi",
"Error processing voice message": "Terjadi kesalahan mengolah pesan suara", "Error processing voice message": "Terjadi kesalahan mengolah pesan suara",
"Error decrypting video": "Terjadi kesalahan mendekripsi video", "Error decrypting video": "Terjadi kesalahan mendekripsi video",
@ -3229,7 +3199,6 @@
"Download %(brand)s Desktop": "Unduh %(brand)s Desktop", "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.", "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.", "Share your activity and status with others.": "Bagikan aktivitas dan status Anda dengan orang lain.",
"Presence": "Presensi",
"You did it!": "Anda berhasil!", "You did it!": "Anda berhasil!",
"Only %(count)s steps to go": { "Only %(count)s steps to go": {
"one": "Hanya %(count)s langkah lagi untuk dilalui", "one": "Hanya %(count)s langkah lagi untuk dilalui",
@ -3276,7 +3245,6 @@
"Verified session": "Sesi terverifikasi", "Verified session": "Sesi terverifikasi",
"Welcome": "Selamat datang", "Welcome": "Selamat datang",
"Show shortcut to welcome checklist above the room list": "Tampilkan pintasan ke daftar centang selamat datang di atas daftar ruangan", "Show shortcut to welcome checklist above the room list": "Tampilkan pintasan ke daftar centang selamat datang di atas daftar ruangan",
"View all": "Tampilkan semua",
"Security recommendations": "Saran keamanan", "Security recommendations": "Saran keamanan",
"Filter devices": "Saring perangkat", "Filter devices": "Saring perangkat",
"Inactive for %(inactiveAgeDays)s days or longer": "Tidak aktif selama %(inactiveAgeDays)s hari atau lebih", "Inactive for %(inactiveAgeDays)s days or longer": "Tidak aktif selama %(inactiveAgeDays)s hari atau lebih",
@ -3308,7 +3276,6 @@
"other": "%(user)s dan %(count)s lainnya" "other": "%(user)s dan %(count)s lainnya"
}, },
"%(user1)s and %(user2)s": "%(user1)s dan %(user2)s", "%(user1)s and %(user2)s": "%(user1)s dan %(user2)s",
"Show": "Tampilkan",
"%(downloadButton)s or %(copyButton)s": "-%(downloadButton)s atau %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "-%(downloadButton)s atau %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s atau %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s atau %(recoveryFile)s",
"Proxy URL": "URL Proksi", "Proxy URL": "URL Proksi",
@ -3693,7 +3660,6 @@
"Email summary": "Kirim surel ikhtisar", "Email summary": "Kirim surel ikhtisar",
"Receive an email summary of missed notifications": "Terima surel ikhtisar notifikasi yang terlewat", "Receive an email summary of missed notifications": "Terima surel ikhtisar notifikasi yang terlewat",
"People, Mentions and Keywords": "Orang, Sebutan, dan Kata Kunci", "People, Mentions and Keywords": "Orang, Sebutan, dan Kata Kunci",
"Proceed": "Lanjut",
"Show message preview in desktop notification": "Tampilkan tampilan pesan di notifikasi desktop", "Show message preview in desktop notification": "Tampilkan tampilan pesan di notifikasi desktop",
"I want to be notified for (Default Setting)": "Saya ingin diberi tahu (Pengaturan Bawaan)", "I want to be notified for (Default Setting)": "Saya ingin diberi tahu (Pengaturan Bawaan)",
"This setting will be applied by default to all your rooms.": "Pengaturan ini akan diterapkan secara bawaan ke semua ruangan Anda.", "This setting will be applied by default to all your rooms.": "Pengaturan ini akan diterapkan secara bawaan ke semua ruangan Anda.",
@ -3769,7 +3735,6 @@
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Homeserver Anda terlalu lawas dan tidak mendukung versi API minimum yang diperlukan. Silakan menghubungi pemilik server Anda, atau tingkatkan server Anda.", "Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Homeserver Anda terlalu lawas dan tidak mendukung versi API minimum yang diperlukan. Silakan menghubungi pemilik server Anda, atau tingkatkan server Anda.",
"See less": "Lihat lebih sedikit", "See less": "Lihat lebih sedikit",
"See more": "Lihat lebih banyak", "See more": "Lihat lebih banyak",
"Deny": "Tolak",
"Asking to join": "Meminta untuk bergabung", "Asking to join": "Meminta untuk bergabung",
"No requests": "Tidak ada permintaan", "No requests": "Tidak ada permintaan",
"common": { "common": {
@ -3820,7 +3785,22 @@
"dark": "Gelap", "dark": "Gelap",
"beta": "Beta", "beta": "Beta",
"attachment": "Lampiran", "attachment": "Lampiran",
"appearance": "Tampilan" "appearance": "Tampilan",
"guest": "Tamu",
"legal": "Hukum",
"credits": "Kredit",
"faq": "FAQ",
"access_token": "Token Akses",
"preferences": "Preferensi",
"presence": "Presensi",
"timeline": "Lini Masa",
"privacy": "Privasi",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Sembarangan",
"support": "Dukungan",
"space": "Space"
}, },
"action": { "action": {
"continue": "Lanjut", "continue": "Lanjut",
@ -3892,7 +3872,25 @@
"back": "Kembali", "back": "Kembali",
"apply": "Terapkan", "apply": "Terapkan",
"add": "Tambahkan", "add": "Tambahkan",
"accept": "Terima" "accept": "Terima",
"disconnect": "Lepaskan Hubungan",
"change": "Ubah",
"subscribe": "Berlangganan",
"unsubscribe": "Berhenti Berlangganan",
"approve": "Setujui",
"deny": "Tolak",
"proceed": "Lanjut",
"complete": "Selesai",
"revoke": "Hapus",
"rename": "Ubah Nama",
"view_all": "Tampilkan semua",
"show_all": "Tampilkan semua",
"show": "Tampilkan",
"review": "Lihat",
"restore": "Pulihkan",
"play": "Mainkan",
"pause": "Jeda",
"register": "Daftar"
}, },
"a11y": { "a11y": {
"user_menu": "Menu pengguna" "user_menu": "Menu pengguna"
@ -3979,7 +3977,9 @@
"default": "Bawaan", "default": "Bawaan",
"restricted": "Dibatasi", "restricted": "Dibatasi",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"custom": "Kustom (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Jika Anda mengirim sebuah kutu via GitHub, catatan pengawakutu dapat membantu kami melacak masalahnya. ", "introduction": "Jika Anda mengirim sebuah kutu via GitHub, catatan pengawakutu dapat membantu kami melacak masalahnya. ",

View file

@ -127,7 +127,6 @@
"Copied!": "Afritað!", "Copied!": "Afritað!",
"powered by Matrix": "keyrt með Matrix", "powered by Matrix": "keyrt með Matrix",
"Email address": "Tölvupóstfang", "Email address": "Tölvupóstfang",
"Register": "Nýskrá",
"Something went wrong!": "Eitthvað fór úrskeiðis!", "Something went wrong!": "Eitthvað fór úrskeiðis!",
"What's New": "Nýtt á döfinni", "What's New": "Nýtt á döfinni",
"What's new?": "Hvað er nýtt á döfinni?", "What's new?": "Hvað er nýtt á döfinni?",
@ -171,8 +170,6 @@
"Cryptography": "Dulritun", "Cryptography": "Dulritun",
"Check for update": "Athuga með uppfærslu", "Check for update": "Athuga með uppfærslu",
"Default Device": "Sjálfgefið tæki", "Default Device": "Sjálfgefið tæki",
"Microphone": "Hljóðnemi",
"Camera": "Myndavél",
"Email": "Tölvupóstfang", "Email": "Tölvupóstfang",
"Profile": "Notandasnið", "Profile": "Notandasnið",
"Account": "Notandaaðgangur", "Account": "Notandaaðgangur",
@ -240,7 +237,6 @@
"No Webcams detected": "Engar vefmyndavélar fundust", "No Webcams detected": "Engar vefmyndavélar fundust",
"Displays action": "Birtir aðgerð", "Displays action": "Birtir aðgerð",
"Changes your display nickname": "Breytir birtu gælunafni þínu", "Changes your display nickname": "Breytir birtu gælunafni þínu",
"Emoji": "Tjáningartáknmynd",
"Notify the whole room": "Tilkynna öllum á spjallrásinni", "Notify the whole room": "Tilkynna öllum á spjallrásinni",
"Room Notification": "Tilkynning á spjallrás", "Room Notification": "Tilkynning á spjallrás",
"Passphrases must match": "Lykilfrasar verða að stemma", "Passphrases must match": "Lykilfrasar verða að stemma",
@ -380,8 +376,6 @@
"Click the button below to confirm adding this email address.": "Smelltu á hnappinn hér að neðan til að staðfesta að bæta við þessu netfangi.", "Click the button below to confirm adding this email address.": "Smelltu á hnappinn hér að neðan til að staðfesta að bæta við þessu netfangi.",
"Confirm adding email": "Staðfestu að bæta við tölvupósti", "Confirm adding email": "Staðfestu að bæta við tölvupósti",
"Trusted": "Treyst", "Trusted": "Treyst",
"Subscribe": "Skrá",
"Unsubscribe": "Afskrá",
"None": "Ekkert", "None": "Ekkert",
"Ignored/Blocked": "Hunsað/Hindrað", "Ignored/Blocked": "Hunsað/Hindrað",
"Flags": "Fánar", "Flags": "Fánar",
@ -389,10 +383,7 @@
"Objects": "Hlutir", "Objects": "Hlutir",
"Activities": "Afþreying", "Activities": "Afþreying",
"Document": "Skjal", "Document": "Skjal",
"Complete": "Fullklára",
"Italics": "Skáletrað", "Italics": "Skáletrað",
"Disconnect": "Aftengjast",
"Revoke": "Afturkalla",
"Discovery": "Uppgötvun", "Discovery": "Uppgötvun",
"Actions": "Aðgerðir", "Actions": "Aðgerðir",
"Messages": "Skilaboð", "Messages": "Skilaboð",
@ -427,18 +418,13 @@
"Lion": "Ljón", "Lion": "Ljón",
"Cat": "Köttur", "Cat": "Köttur",
"Dog": "Hundur", "Dog": "Hundur",
"Guest": "Gestur",
"Other": "Annað", "Other": "Annað",
"Encrypted": "Dulritað", "Encrypted": "Dulritað",
"Encryption": "Dulritun", "Encryption": "Dulritun",
"Timeline": "Tímalína",
"Composer": "Skrifreitur", "Composer": "Skrifreitur",
"Preferences": "Stillingar",
"Versions": "Útgáfur", "Versions": "Útgáfur",
"FAQ": "Algengar spurningar",
"General": "Almennt", "General": "Almennt",
"Verified!": "Sannreynt!", "Verified!": "Sannreynt!",
"Legal": "Lagalegir fyrirvarar",
"Demote": "Leggja til baka", "Demote": "Leggja til baka",
"%(oneUser)sleft %(count)s times": { "%(oneUser)sleft %(count)s times": {
"one": "%(oneUser)sfór út", "one": "%(oneUser)sfór út",
@ -750,7 +736,6 @@
"Ok": "Í lagi", "Ok": "Í lagi",
"Use app": "Nota smáforrit", "Use app": "Nota smáforrit",
"Later": "Seinna", "Later": "Seinna",
"Review": "Yfirfara",
"That's fine": "Það er í góðu", "That's fine": "Það er í góðu",
"Topic: %(topic)s": "Umfjöllunarefni: %(topic)s", "Topic: %(topic)s": "Umfjöllunarefni: %(topic)s",
"Current Timeline": "Núverandi tímalína", "Current Timeline": "Núverandi tímalína",
@ -786,7 +771,6 @@
"one": "%(spaceName)s og %(count)s til viðbótar" "one": "%(spaceName)s og %(count)s til viðbótar"
}, },
"%(space1Name)s and %(space2Name)s": "%(space1Name)s og %(space2Name)s", "%(space1Name)s and %(space2Name)s": "%(space1Name)s og %(space2Name)s",
"Custom (%(level)s)": "Sérsniðið (%(level)s)",
"Sign In or Create Account": "Skráðu þig inn eða búðu til aðgang", "Sign In or Create Account": "Skráðu þig inn eða búðu til aðgang",
"Failure to create room": "Mistókst að búa til spjallrás", "Failure to create room": "Mistókst að búa til spjallrás",
"Failed to transfer call": "Mistókst að áframsenda símtal", "Failed to transfer call": "Mistókst að áframsenda símtal",
@ -833,22 +817,17 @@
"Space used:": "Notað geymslupláss:", "Space used:": "Notað geymslupláss:",
"Go to Settings": "Fara í stillingar", "Go to Settings": "Fara í stillingar",
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Útflutta skráin verður varin með lykilfrasa. Settu inn lykilfrasann hér til að afkóða skrána.", "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Útflutta skráin verður varin með lykilfrasa. Settu inn lykilfrasann hér til að afkóða skrána.",
"Restore": "Endurheimta",
"Success!": "Tókst!", "Success!": "Tókst!",
"Use a different passphrase?": "Nota annan lykilfrasa?", "Use a different passphrase?": "Nota annan lykilfrasa?",
"Create account": "Stofna notandaaðgang", "Create account": "Stofna notandaaðgang",
"Your password has been reset.": "Lykilorðið þitt hefur verið endursett.", "Your password has been reset.": "Lykilorðið þitt hefur verið endursett.",
"Show:": "Sýna:", "Show:": "Sýna:",
"Skip for now": "Sleppa í bili", "Skip for now": "Sleppa í bili",
"Support": "Aðstoð",
"Random": "Slembið",
"Results": "Niðurstöður", "Results": "Niðurstöður",
"No results found": "Engar niðurstöður fundust", "No results found": "Engar niðurstöður fundust",
"Suggested": "Tillögur", "Suggested": "Tillögur",
"Delete all": "Eyða öllu", "Delete all": "Eyða öllu",
"Wait!": "Bíddu!", "Wait!": "Bíddu!",
"Play": "Spila",
"Pause": "Bið",
"Sign in with": "Skrá inn með", "Sign in with": "Skrá inn með",
"Enter phone number": "Settu inn símanúmer", "Enter phone number": "Settu inn símanúmer",
"Enter username": "Settu inn notandanafn", "Enter username": "Settu inn notandanafn",
@ -862,7 +841,6 @@
"Move left": "Færa til vinstri", "Move left": "Færa til vinstri",
"Manage & explore rooms": "Sýsla með og kanna spjallrásir", "Manage & explore rooms": "Sýsla með og kanna spjallrásir",
"Space home": "Forsíða svæðis", "Space home": "Forsíða svæðis",
"Space": "Bil",
"Forget": "Gleyma", "Forget": "Gleyma",
"Report": "Tilkynna", "Report": "Tilkynna",
"Show preview": "Birta forskoðun", "Show preview": "Birta forskoðun",
@ -871,7 +849,6 @@
"Resume": "Halda áfram", "Resume": "Halda áfram",
"Looks good!": "Lítur vel út!", "Looks good!": "Lítur vel út!",
"Remember this": "Muna þetta", "Remember this": "Muna þetta",
"Approve": "Samþykkja",
"Upload Error": "Villa við innsendingu", "Upload Error": "Villa við innsendingu",
"Cancel All": "Hætta við allt", "Cancel All": "Hætta við allt",
"Upload all": "Senda allt inn", "Upload all": "Senda allt inn",
@ -942,7 +919,6 @@
"Categories": "Flokkar", "Categories": "Flokkar",
"Share location": "Deila staðsetningu", "Share location": "Deila staðsetningu",
"Location": "Staðsetning", "Location": "Staðsetning",
"Show all": "Sýna allt",
"%(count)s votes": { "%(count)s votes": {
"one": "%(count)s atkvæði", "one": "%(count)s atkvæði",
"other": "%(count)s atkvæði" "other": "%(count)s atkvæði"
@ -993,7 +969,6 @@
"Hide stickers": "Fela límmerki", "Hide stickers": "Fela límmerki",
"Failed to send": "Mistókst að senda", "Failed to send": "Mistókst að senda",
"Your message was sent": "Skilaboðin þín voru send", "Your message was sent": "Skilaboðin þín voru send",
"Mod": "Umsjón",
"Phone Number": "Símanúmer", "Phone Number": "Símanúmer",
"Email Address": "Tölvupóstfang", "Email Address": "Tölvupóstfang",
"Verification code": "Sannvottunarkóði", "Verification code": "Sannvottunarkóði",
@ -1010,15 +985,12 @@
"Audio Output": "Hljóðúttak", "Audio Output": "Hljóðúttak",
"Rooms outside of a space": "Spjallrásir utan svæðis", "Rooms outside of a space": "Spjallrásir utan svæðis",
"Sidebar": "Hliðarspjald", "Sidebar": "Hliðarspjald",
"Privacy": "Friðhelgi",
"Keyboard shortcuts": "Flýtileiðir á lyklaborði", "Keyboard shortcuts": "Flýtileiðir á lyklaborði",
"Keyboard": "Lyklaborð", "Keyboard": "Lyklaborð",
"Credits": "Framlög",
"Deactivate account": "Gera notandaaðgang óvirkann", "Deactivate account": "Gera notandaaðgang óvirkann",
"Phone numbers": "Símanúmer", "Phone numbers": "Símanúmer",
"Email addresses": "Tölvupóstföng", "Email addresses": "Tölvupóstföng",
"Add theme": "Bæta við þema", "Add theme": "Bæta við þema",
"Change": "Breyta",
"not ready": "ekki tilbúið", "not ready": "ekki tilbúið",
"ready": "tilbúið", "ready": "tilbúið",
"Algorithm:": "Reiknirit:", "Algorithm:": "Reiknirit:",
@ -1035,7 +1007,6 @@
"Upgrade required": "Uppfærsla er nauðsynleg", "Upgrade required": "Uppfærsla er nauðsynleg",
"Large": "Stórt", "Large": "Stórt",
"Manage": "Stjórna", "Manage": "Stjórna",
"Rename": "Endurnefna",
"Display Name": "Birtingarnafn", "Display Name": "Birtingarnafn",
"Select all": "Velja allt", "Select all": "Velja allt",
"Deselect all": "Afvelja allt", "Deselect all": "Afvelja allt",
@ -1577,7 +1548,6 @@
"Group all your rooms that aren't part of a space in one place.": "Hópaðu allar spjallrásir sem ekki eru hluti af svæðum á einum stað.", "Group all your rooms that aren't part of a space in one place.": "Hópaðu allar spjallrásir sem ekki eru hluti af svæðum á einum stað.",
"Group all your people in one place.": "Hópaðu allt fólk á einum stað.", "Group all your people in one place.": "Hópaðu allt fólk á einum stað.",
"Group all your favourite rooms and people in one place.": "Hópaðu allar eftirlætisspjallrásir og fólk á einum stað.", "Group all your favourite rooms and people in one place.": "Hópaðu allar eftirlætisspjallrásir og fólk á einum stað.",
"Access Token": "Aðgangsteikn",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Til að tilkynna Matrix-tengd öryggisvandamál, skaltu lesa <a>Security Disclosure Policy</a> á matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Til að tilkynna Matrix-tengd öryggisvandamál, skaltu lesa <a>Security Disclosure Policy</a> á matrix.org.",
"Chat with %(brand)s Bot": "Spjalla við %(brand)s vélmenni", "Chat with %(brand)s Bot": "Spjalla við %(brand)s vélmenni",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Til að fá aðstoð við að nota %(brand)s, smelltu <a>hér</a> eða byrjaðu að spjalla við vélmennið okkar með hnappnum hér fyrir neðan.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Til að fá aðstoð við að nota %(brand)s, smelltu <a>hér</a> eða byrjaðu að spjalla við vélmennið okkar með hnappnum hér fyrir neðan.",
@ -2890,8 +2860,6 @@
"Click to read topic": "Smelltu til að lesa umfjöllunarefni", "Click to read topic": "Smelltu til að lesa umfjöllunarefni",
"Edit topic": "Breyta umfjöllunarefni", "Edit topic": "Breyta umfjöllunarefni",
"Video call ended": "Mynddsímtali lauk", "Video call ended": "Mynddsímtali lauk",
"View all": "Skoða allt",
"Show": "Sýna",
"Inactive": "Óvirkt", "Inactive": "Óvirkt",
"All": "Allt", "All": "Allt",
"No sessions found.": "Engar setur fundust.", "No sessions found.": "Engar setur fundust.",
@ -2915,7 +2883,6 @@
"Enable hardware acceleration (restart %(appName)s to take effect)": "Virkja vélbúnaðarhröðun (endurræstu %(appName)s til að breytingar taki gildi)", "Enable hardware acceleration (restart %(appName)s to take effect)": "Virkja vélbúnaðarhröðun (endurræstu %(appName)s til að breytingar taki gildi)",
"Your server doesn't support disabling sending read receipts.": "Netþjónninn þinn styður ekki að sending leskvittana sé gerð óvirk.", "Your server doesn't support disabling sending read receipts.": "Netþjónninn þinn styður ekki að sending leskvittana sé gerð óvirk.",
"Share your activity and status with others.": "Deila virkni og stöðu þinni með öðrum.", "Share your activity and status with others.": "Deila virkni og stöðu þinni með öðrum.",
"Presence": "Viðvera",
"Deactivating your account is a permanent action — be careful!": "Að gera aðganginn þinn óvirkan er endanleg aðgerð - farðu varlega!", "Deactivating your account is a permanent action — be careful!": "Að gera aðganginn þinn óvirkan er endanleg aðgerð - farðu varlega!",
"Your password was successfully changed.": "Það tókst að breyta lykilorðinu þínu.", "Your password was successfully changed.": "Það tókst að breyta lykilorðinu þínu.",
"Welcome to %(brand)s": "Velkomin í %(brand)s", "Welcome to %(brand)s": "Velkomin í %(brand)s",
@ -3230,7 +3197,22 @@
"dark": "Dökkt", "dark": "Dökkt",
"beta": "Beta-prófunarútgáfa", "beta": "Beta-prófunarútgáfa",
"attachment": "Viðhengi", "attachment": "Viðhengi",
"appearance": "Útlit" "appearance": "Útlit",
"guest": "Gestur",
"legal": "Lagalegir fyrirvarar",
"credits": "Framlög",
"faq": "Algengar spurningar",
"access_token": "Aðgangsteikn",
"preferences": "Stillingar",
"presence": "Viðvera",
"timeline": "Tímalína",
"privacy": "Friðhelgi",
"camera": "Myndavél",
"microphone": "Hljóðnemi",
"emoji": "Tjáningartáknmynd",
"random": "Slembið",
"support": "Aðstoð",
"space": "Bil"
}, },
"action": { "action": {
"continue": "Halda áfram", "continue": "Halda áfram",
@ -3301,7 +3283,23 @@
"back": "Til baka", "back": "Til baka",
"apply": "Virkja", "apply": "Virkja",
"add": "Bæta við", "add": "Bæta við",
"accept": "Samþykkja" "accept": "Samþykkja",
"disconnect": "Aftengjast",
"change": "Breyta",
"subscribe": "Skrá",
"unsubscribe": "Afskrá",
"approve": "Samþykkja",
"complete": "Fullklára",
"revoke": "Afturkalla",
"rename": "Endurnefna",
"view_all": "Skoða allt",
"show_all": "Sýna allt",
"show": "Sýna",
"review": "Yfirfara",
"restore": "Endurheimta",
"play": "Spila",
"pause": "Bið",
"register": "Nýskrá"
}, },
"a11y": { "a11y": {
"user_menu": "Valmynd notandans" "user_menu": "Valmynd notandans"
@ -3365,7 +3363,9 @@
"default": "Sjálfgefið", "default": "Sjálfgefið",
"restricted": "Takmarkað", "restricted": "Takmarkað",
"moderator": "Umsjónarmaður", "moderator": "Umsjónarmaður",
"admin": "Stjórnandi" "admin": "Stjórnandi",
"custom": "Sérsniðið (%(level)s)",
"mod": "Umsjón"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Ef þú hefur tilkynnt vandamál í gegnum GitHub, þá geta atvikaskrár hjálpað okkur við að finna ástæður vandamálanna. ", "introduction": "Ef þú hefur tilkynnt vandamál í gegnum GitHub, þá geta atvikaskrár hjálpað okkur við að finna ástæður vandamálanna. ",

View file

@ -14,8 +14,6 @@
"No Webcams detected": "Nessuna Webcam rilevata", "No Webcams detected": "Nessuna Webcam rilevata",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Potresti dover permettere manualmente a %(brand)s di accedere al tuo microfono/webcam", "You may need to manually permit %(brand)s to access your microphone/webcam": "Potresti dover permettere manualmente a %(brand)s di accedere al tuo microfono/webcam",
"Default Device": "Dispositivo Predefinito", "Default Device": "Dispositivo Predefinito",
"Microphone": "Microfono",
"Camera": "Videocamera",
"Advanced": "Avanzato", "Advanced": "Avanzato",
"Always show message timestamps": "Mostra sempre l'orario dei messaggi", "Always show message timestamps": "Mostra sempre l'orario dei messaggi",
"Authentication": "Autenticazione", "Authentication": "Autenticazione",
@ -48,7 +46,6 @@
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s", "%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s", "%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(time)s",
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s", "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
"Register": "Registrati",
"Rooms": "Stanze", "Rooms": "Stanze",
"Unnamed room": "Stanza senza nome", "Unnamed room": "Stanza senza nome",
"Online": "Online", "Online": "Online",
@ -381,7 +378,6 @@
"Stops ignoring a user, showing their messages going forward": "Smetti di ignorare un utente, mostrando i suoi messaggi successivi", "Stops ignoring a user, showing their messages going forward": "Smetti di ignorare un utente, mostrando i suoi messaggi successivi",
"Opens the Developer Tools dialog": "Apre la finestra di strumenti per sviluppatori", "Opens the Developer Tools dialog": "Apre la finestra di strumenti per sviluppatori",
"Commands": "Comandi", "Commands": "Comandi",
"Emoji": "Emoji",
"Notify the whole room": "Notifica l'intera stanza", "Notify the whole room": "Notifica l'intera stanza",
"Room Notification": "Notifica della stanza", "Room Notification": "Notifica della stanza",
"Users": "Utenti", "Users": "Utenti",
@ -498,7 +494,6 @@
"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.": "Il tuo messaggio non è stato inviato perché questo homeserver ha oltrepassato un limite di risorse. <a>Contatta l'amministratore del servizio</a> per continuare ad usarlo.", "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.": "Il tuo messaggio non è stato inviato perché questo homeserver ha oltrepassato un limite di risorse. <a>Contatta l'amministratore del servizio</a> per continuare ad usarlo.",
"Please <a>contact your service administrator</a> to continue using this service.": "<a>Contatta l'amministratore del servizio</a> per continuare ad usarlo.", "Please <a>contact your service administrator</a> to continue using this service.": "<a>Contatta l'amministratore del servizio</a> per continuare ad usarlo.",
"Please contact your homeserver administrator.": "Contatta l'amministratore del tuo homeserver.", "Please contact your homeserver administrator.": "Contatta l'amministratore del tuo homeserver.",
"Legal": "Informazioni legali",
"Forces the current outbound group session in an encrypted room to be discarded": "Forza l'eliminazione dell'attuale sessione di gruppo in uscita in una stanza criptata", "Forces the current outbound group session in an encrypted room to be discarded": "Forza l'eliminazione dell'attuale sessione di gruppo in uscita in una stanza criptata",
"This room has been replaced and is no longer active.": "Questa stanza è stata sostituita e non è più attiva.", "This room has been replaced and is no longer active.": "Questa stanza è stata sostituita e non è più attiva.",
"The conversation continues here.": "La conversazione continua qui.", "The conversation continues here.": "La conversazione continua qui.",
@ -698,16 +693,12 @@
"Language and region": "Lingua e regione", "Language and region": "Lingua e regione",
"Account management": "Gestione account", "Account management": "Gestione account",
"General": "Generale", "General": "Generale",
"Credits": "Crediti",
"For help with using %(brand)s, click <a>here</a>.": "Per aiuto su come usare %(brand)s, clicca <a>qui</a>.", "For help with using %(brand)s, click <a>here</a>.": "Per aiuto su come usare %(brand)s, clicca <a>qui</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Per aiuto su come usare %(brand)s, clicca <a>qui</a> o inizia una chat con il nostro bot usando il pulsante sotto.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Per aiuto su come usare %(brand)s, clicca <a>qui</a> o inizia una chat con il nostro bot usando il pulsante sotto.",
"Chat with %(brand)s Bot": "Chatta con %(brand)s Bot", "Chat with %(brand)s Bot": "Chatta con %(brand)s Bot",
"Help & About": "Aiuto e informazioni", "Help & About": "Aiuto e informazioni",
"FAQ": "FAQ",
"Versions": "Versioni", "Versions": "Versioni",
"Preferences": "Preferenze",
"Composer": "Compositore", "Composer": "Compositore",
"Timeline": "Linea temporale",
"Room list": "Elenco stanze", "Room list": "Elenco stanze",
"Autocomplete delay (ms)": "Ritardo autocompletamento (ms)", "Autocomplete delay (ms)": "Ritardo autocompletamento (ms)",
"Ignored users": "Utenti ignorati", "Ignored users": "Utenti ignorati",
@ -759,13 +750,11 @@
"Room Settings - %(roomName)s": "Impostazioni stanza - %(roomName)s", "Room Settings - %(roomName)s": "Impostazioni stanza - %(roomName)s",
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Attenzione</b>: dovresti impostare il backup chiavi solo da un computer fidato.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Attenzione</b>: dovresti impostare il backup chiavi solo da un computer fidato.",
"This homeserver would like to make sure you are not a robot.": "Questo homeserver vorrebbe assicurarsi che non sei un robot.", "This homeserver would like to make sure you are not a robot.": "Questo homeserver vorrebbe assicurarsi che non sei un robot.",
"Change": "Cambia",
"Email (optional)": "Email (facoltativa)", "Email (optional)": "Email (facoltativa)",
"Phone (optional)": "Telefono (facoltativo)", "Phone (optional)": "Telefono (facoltativo)",
"Join millions for free on the largest public server": "Unisciti gratis a milioni nel più grande server pubblico", "Join millions for free on the largest public server": "Unisciti gratis a milioni nel più grande server pubblico",
"Other": "Altro", "Other": "Altro",
"Couldn't load page": "Caricamento pagina fallito", "Couldn't load page": "Caricamento pagina fallito",
"Guest": "Ospite",
"Could not load user profile": "Impossibile caricare il profilo utente", "Could not load user profile": "Impossibile caricare il profilo utente",
"Your password has been reset.": "La tua password è stata reimpostata.", "Your password has been reset.": "La tua password è stata reimpostata.",
"This homeserver does not support login using email address.": "Questo homeserver non supporta l'accesso tramite indirizzo email.", "This homeserver does not support login using email address.": "Questo homeserver non supporta l'accesso tramite indirizzo email.",
@ -881,7 +870,6 @@
"Edited at %(date)s. Click to view edits.": "Modificato alle %(date)s. Clicca per vedere le modifiche.", "Edited at %(date)s. Click to view edits.": "Modificato alle %(date)s. Clicca per vedere le modifiche.",
"Message edits": "Modifiche del messaggio", "Message edits": "Modifiche del messaggio",
"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:": "Per aggiornare questa stanza devi chiudere l'istanza attuale e creare una nuova stanza al suo posto. Per offrire la migliore esperienza possibile ai membri della stanza:", "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:": "Per aggiornare questa stanza devi chiudere l'istanza attuale e creare una nuova stanza al suo posto. Per offrire la migliore esperienza possibile ai membri della stanza:",
"Show all": "Mostra tutto",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)snon hanno fatto modifiche %(count)s volte", "other": "%(severalUsers)snon hanno fatto modifiche %(count)s volte",
"one": "%(severalUsers)snon hanno fatto modifiche" "one": "%(severalUsers)snon hanno fatto modifiche"
@ -916,7 +904,6 @@
"Displays list of commands with usages and descriptions": "Visualizza l'elenco dei comandi con usi e descrizioni", "Displays list of commands with usages and descriptions": "Visualizza l'elenco dei comandi con usi e descrizioni",
"Checking server": "Controllo del server", "Checking server": "Controllo del server",
"Disconnect from the identity server <idserver />?": "Disconnettere dal server di identità <idserver />?", "Disconnect from the identity server <idserver />?": "Disconnettere dal server di identità <idserver />?",
"Disconnect": "Disconnetti",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Stai attualmente usando <server></server> per trovare ed essere trovabile dai contatti esistenti che conosci. Puoi cambiare il tuo server di identità sotto.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Stai attualmente usando <server></server> per trovare ed essere trovabile dai contatti esistenti che conosci. Puoi cambiare il tuo server di identità sotto.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Attualmente non stai usando un server di identità. Per trovare ed essere trovabile dai contatti esistenti che conosci, aggiungine uno sotto.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Attualmente non stai usando un server di identità. Per trovare ed essere trovabile dai contatti esistenti che conosci, aggiungine uno sotto.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "La disconnessione dal tuo server di identità significa che non sarai trovabile da altri utenti e non potrai invitare nessuno per email o telefono.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "La disconnessione dal tuo server di identità significa che non sarai trovabile da altri utenti e non potrai invitare nessuno per email o telefono.",
@ -926,7 +913,6 @@
"Always show the window menu bar": "Mostra sempre la barra dei menu della finestra", "Always show the window menu bar": "Mostra sempre la barra dei menu della finestra",
"Unable to revoke sharing for email address": "Impossibile revocare la condivisione dell'indirizzo email", "Unable to revoke sharing for email address": "Impossibile revocare la condivisione dell'indirizzo email",
"Unable to share email address": "Impossibile condividere l'indirizzo email", "Unable to share email address": "Impossibile condividere l'indirizzo email",
"Revoke": "Revoca",
"Discovery options will appear once you have added an email above.": "Le opzioni di scoperta appariranno dopo aver aggiunto un'email sopra.", "Discovery options will appear once you have added an email above.": "Le opzioni di scoperta appariranno dopo aver aggiunto un'email sopra.",
"Unable to revoke sharing for phone number": "Impossibile revocare la condivisione del numero di telefono", "Unable to revoke sharing for phone number": "Impossibile revocare la condivisione del numero di telefono",
"Unable to share phone number": "Impossibile condividere il numero di telefono", "Unable to share phone number": "Impossibile condividere il numero di telefono",
@ -985,7 +971,6 @@
"Italics": "Corsivo", "Italics": "Corsivo",
"Changes the avatar of the current room": "Cambia l'avatar della stanza attuale", "Changes the avatar of the current room": "Cambia l'avatar della stanza attuale",
"Verify the link in your inbox": "Verifica il link nella tua posta in arrivo", "Verify the link in your inbox": "Verifica il link nella tua posta in arrivo",
"Complete": "Completa",
"e.g. my-room": "es. mia-stanza", "e.g. my-room": "es. mia-stanza",
"Close dialog": "Chiudi finestra", "Close dialog": "Chiudi finestra",
"Please enter a name for the room": "Inserisci un nome per la stanza", "Please enter a name for the room": "Inserisci un nome per la stanza",
@ -1066,7 +1051,6 @@
"You have not ignored anyone.": "Non hai ignorato nessuno.", "You have not ignored anyone.": "Non hai ignorato nessuno.",
"You are currently ignoring:": "Attualmente stai ignorando:", "You are currently ignoring:": "Attualmente stai ignorando:",
"You are not subscribed to any lists": "Non sei iscritto ad alcuna lista", "You are not subscribed to any lists": "Non sei iscritto ad alcuna lista",
"Unsubscribe": "Disiscriviti",
"View rules": "Vedi regole", "View rules": "Vedi regole",
"You are currently subscribed to:": "Attualmente sei iscritto a:", "You are currently subscribed to:": "Attualmente sei iscritto a:",
"⚠ These settings are meant for advanced users.": "⚠ Queste opzioni sono pensate per utenti esperti.", "⚠ These settings are meant for advanced users.": "⚠ Queste opzioni sono pensate per utenti esperti.",
@ -1078,7 +1062,6 @@
"Subscribed lists": "Liste sottoscritte", "Subscribed lists": "Liste sottoscritte",
"Subscribing to a ban list will cause you to join it!": "Iscriversi ad una lista di ban implica di unirsi ad essa!", "Subscribing to a ban list will cause you to join it!": "Iscriversi ad una lista di ban implica di unirsi ad essa!",
"If this isn't what you want, please use a different tool to ignore users.": "Se non è ciò che vuoi, usa uno strumento diverso per ignorare utenti.", "If this isn't what you want, please use a different tool to ignore users.": "Se non è ciò che vuoi, usa uno strumento diverso per ignorare utenti.",
"Subscribe": "Iscriviti",
"Message Actions": "Azioni messaggio", "Message Actions": "Azioni messaggio",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Hai ignorato questo utente, perciò il suo messaggio è nascosto. <a>Mostra comunque.</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Hai ignorato questo utente, perciò il suo messaggio è nascosto. <a>Mostra comunque.</a>",
"You verified %(name)s": "Hai verificato %(name)s", "You verified %(name)s": "Hai verificato %(name)s",
@ -1090,7 +1073,6 @@
"%(name)s cancelled": "%(name)s ha annullato", "%(name)s cancelled": "%(name)s ha annullato",
"%(name)s wants to verify": "%(name)s vuole verificare", "%(name)s wants to verify": "%(name)s vuole verificare",
"You sent a verification request": "Hai inviato una richiesta di verifica", "You sent a verification request": "Hai inviato una richiesta di verifica",
"Custom (%(level)s)": "Personalizzato (%(level)s)",
"Trusted": "Fidato", "Trusted": "Fidato",
"Not trusted": "Non fidato", "Not trusted": "Non fidato",
"Messages in this room are end-to-end encrypted.": "I messaggi in questa stanza sono cifrati end-to-end.", "Messages in this room are end-to-end encrypted.": "I messaggi in questa stanza sono cifrati end-to-end.",
@ -1186,7 +1168,6 @@
"Lock": "Lucchetto", "Lock": "Lucchetto",
"Failed to find the following users": "Impossibile trovare i seguenti utenti", "Failed to find the following users": "Impossibile trovare i seguenti utenti",
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "I seguenti utenti potrebbero non esistere o non sono validi, perciò non possono essere invitati: %(csvNames)s", "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "I seguenti utenti potrebbero non esistere o non sono validi, perciò non possono essere invitati: %(csvNames)s",
"Restore": "Ripristina",
"Other users may not trust it": "Altri utenti potrebbero non fidarsi", "Other users may not trust it": "Altri utenti potrebbero non fidarsi",
"Later": "Più tardi", "Later": "Più tardi",
"Something went wrong trying to invite the users.": "Qualcosa è andato storto provando ad invitare gli utenti.", "Something went wrong trying to invite the users.": "Qualcosa è andato storto provando ad invitare gli utenti.",
@ -1214,7 +1195,6 @@
"Waiting for %(displayName)s to verify…": "In attesa della verifica da %(displayName)s …", "Waiting for %(displayName)s to verify…": "In attesa della verifica da %(displayName)s …",
"They match": "Corrispondono", "They match": "Corrispondono",
"They don't match": "Non corrispondono", "They don't match": "Non corrispondono",
"Review": "Controlla",
"This bridge was provisioned by <user />.": "Questo bridge è stato fornito da <user />.", "This bridge was provisioned by <user />.": "Questo bridge è stato fornito da <user />.",
"Show less": "Mostra meno", "Show less": "Mostra meno",
"Manage": "Gestisci", "Manage": "Gestisci",
@ -1286,7 +1266,6 @@
"%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s sta tenendo in cache localmente i messaggi cifrati in modo sicuro affinché appaiano nei risultati di ricerca:", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s sta tenendo in cache localmente i messaggi cifrati in modo sicuro affinché appaiano nei risultati di ricerca:",
"Message downloading sleep time(ms)": "Tempo di attesa scaricamento messaggi (ms)", "Message downloading sleep time(ms)": "Tempo di attesa scaricamento messaggi (ms)",
"Cancel entering passphrase?": "Annullare l'inserimento della password?", "Cancel entering passphrase?": "Annullare l'inserimento della password?",
"Mod": "Moderatore",
"Indexed rooms:": "Stanze indicizzate:", "Indexed rooms:": "Stanze indicizzate:",
"Show typing notifications": "Mostra notifiche di scrittura", "Show typing notifications": "Mostra notifiche di scrittura",
"Scan this unique code": "Scansiona questo codice univoco", "Scan this unique code": "Scansiona questo codice univoco",
@ -1376,7 +1355,6 @@
"Close dialog or context menu": "Chiudi finestra o menu contestuale", "Close dialog or context menu": "Chiudi finestra o menu contestuale",
"Activate selected button": "Attiva pulsante selezionato", "Activate selected button": "Attiva pulsante selezionato",
"Cancel autocomplete": "Annulla autocompletamento", "Cancel autocomplete": "Annulla autocompletamento",
"Space": "Spazio",
"Confirm by comparing the following with the User Settings in your other session:": "Conferma confrontando il seguente con le impostazioni utente nell'altra sessione:", "Confirm by comparing the following with the User Settings in your other session:": "Conferma confrontando il seguente con le impostazioni utente nell'altra sessione:",
"Confirm this user's session by comparing the following with their User Settings:": "Conferma questa sessione confrontando il seguente con le sue impostazioni utente:", "Confirm this user's session by comparing the following with their User Settings:": "Conferma questa sessione confrontando il seguente con le sue impostazioni utente:",
"If they don't match, the security of your communication may be compromised.": "Se non corrispondono, la sicurezza delle tue comunicazioni potrebbe essere compromessa.", "If they don't match, the security of your communication may be compromised.": "Se non corrispondono, la sicurezza delle tue comunicazioni potrebbe essere compromessa.",
@ -1581,7 +1559,6 @@
"ready": "pronto", "ready": "pronto",
"not ready": "non pronto", "not ready": "non pronto",
"Secure Backup": "Backup Sicuro", "Secure Backup": "Backup Sicuro",
"Privacy": "Privacy",
"Not encrypted": "Non cifrato", "Not encrypted": "Non cifrato",
"Room settings": "Impostazioni stanza", "Room settings": "Impostazioni stanza",
"Take a picture": "Scatta una foto", "Take a picture": "Scatta una foto",
@ -1967,7 +1944,6 @@
"Enter email address": "Inserisci indirizzo email", "Enter email address": "Inserisci indirizzo email",
"Decline All": "Rifiuta tutti", "Decline All": "Rifiuta tutti",
"Approve widget permissions": "Approva permessi del widget", "Approve widget permissions": "Approva permessi del widget",
"Approve": "Approva",
"This widget would like to:": "Il widget vorrebbe:", "This widget would like to:": "Il widget vorrebbe:",
"About homeservers": "Riguardo gli homeserver", "About homeservers": "Riguardo gli homeserver",
"Use your preferred Matrix homeserver if you have one, or host your own.": "Usa il tuo homeserver Matrix preferito se ne hai uno, o ospitane uno tuo.", "Use your preferred Matrix homeserver if you have one, or host your own.": "Usa il tuo homeserver Matrix preferito se ne hai uno, o ospitane uno tuo.",
@ -2098,8 +2074,6 @@
"Who are you working with?": "Con chi stai lavorando?", "Who are you working with?": "Con chi stai lavorando?",
"Skip for now": "Salta per adesso", "Skip for now": "Salta per adesso",
"Failed to create initial space rooms": "Creazione di stanze iniziali dello spazio fallita", "Failed to create initial space rooms": "Creazione di stanze iniziali dello spazio fallita",
"Support": "Supporto",
"Random": "Casuale",
"Welcome to <name/>": "Ti diamo il benvenuto in <name/>", "Welcome to <name/>": "Ti diamo il benvenuto in <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s membro", "one": "%(count)s membro",
@ -2222,8 +2196,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Scegli le stanze o le conversazioni da aggiungere. Questo è uno spazio solo per te, nessuno ne saprà nulla. Puoi aggiungerne altre in seguito.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Scegli le stanze o le conversazioni da aggiungere. Questo è uno spazio solo per te, nessuno ne saprà nulla. Puoi aggiungerne altre in seguito.",
"What do you want to organise?": "Cosa vuoi organizzare?", "What do you want to organise?": "Cosa vuoi organizzare?",
"You have no ignored users.": "Non hai utenti ignorati.", "You have no ignored users.": "Non hai utenti ignorati.",
"Play": "Riproduci",
"Pause": "Pausa",
"Select a room below first": "Prima seleziona una stanza sotto", "Select a room below first": "Prima seleziona una stanza sotto",
"Join the beta": "Unisciti alla beta", "Join the beta": "Unisciti alla beta",
"Leave the beta": "Abbandona la beta", "Leave the beta": "Abbandona la beta",
@ -2240,7 +2212,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Non abbiamo potuto accedere al tuo microfono. Controlla le impostazioni del browser e riprova.", "We were unable to access your microphone. Please check your browser settings and try again.": "Non abbiamo potuto accedere al tuo microfono. Controlla le impostazioni del browser e riprova.",
"Unable to access your microphone": "Impossibile accedere al microfono", "Unable to access your microphone": "Impossibile accedere al microfono",
"Your access token gives full access to your account. Do not share it with anyone.": "Il tuo token di accesso ti dà l'accesso al tuo account. Non condividerlo con nessuno.", "Your access token gives full access to your account. Do not share it with anyone.": "Il tuo token di accesso ti dà l'accesso al tuo account. Non condividerlo con nessuno.",
"Access Token": "Token di accesso",
"Please enter a name for the space": "Inserisci un nome per lo spazio", "Please enter a name for the space": "Inserisci un nome per lo spazio",
"Connecting": "In connessione", "Connecting": "In connessione",
"Search names and descriptions": "Cerca nomi e descrizioni", "Search names and descriptions": "Cerca nomi e descrizioni",
@ -2611,7 +2582,6 @@
"The homeserver the user you're verifying is connected to": "L'homeserver al quale è connesso l'utente che stai verificando", "The homeserver the user you're verifying is connected to": "L'homeserver al quale è connesso l'utente che stai verificando",
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Questa stanza non fa un bridge dei messaggi con alcuna piattaforma. <a>Maggiori informazioni.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Questa stanza non fa un bridge dei messaggi con alcuna piattaforma. <a>Maggiori informazioni.</a>",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Questa stanza è in alcuni spazi di cui non sei amministratore. In quegli spazi, la vecchia stanza verrà ancora mostrata, ma alla gente verrà chiesto di entrare in quella nuova.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Questa stanza è in alcuni spazi di cui non sei amministratore. In quegli spazi, la vecchia stanza verrà ancora mostrata, ma alla gente verrà chiesto di entrare in quella nuova.",
"Rename": "Rinomina",
"Select all": "Seleziona tutti", "Select all": "Seleziona tutti",
"Deselect all": "Deseleziona tutti", "Deselect all": "Deseleziona tutti",
"Sign out devices": { "Sign out devices": {
@ -3260,7 +3230,6 @@
"Sessions": "Sessioni", "Sessions": "Sessioni",
"Your server doesn't support disabling sending read receipts.": "Il tuo server non supporta la disattivazione delle conferme di lettura.", "Your server doesn't support disabling sending read receipts.": "Il tuo server non supporta la disattivazione delle conferme di lettura.",
"Share your activity and status with others.": "Condividi la tua attività e lo stato con gli altri.", "Share your activity and status with others.": "Condividi la tua attività e lo stato con gli altri.",
"Presence": "Presenza",
"Send read receipts": "Invia le conferme di lettura", "Send read receipts": "Invia le conferme di lettura",
"Unverified": "Non verificato", "Unverified": "Non verificato",
"Verified": "Verificato", "Verified": "Verificato",
@ -3276,7 +3245,6 @@
"Verified session": "Sessione verificata", "Verified session": "Sessione verificata",
"Interactively verify by emoji": "Verifica interattivamente con emoji", "Interactively verify by emoji": "Verifica interattivamente con emoji",
"Manually verify by text": "Verifica manualmente con testo", "Manually verify by text": "Verifica manualmente con testo",
"View all": "Vedi tutto",
"Security recommendations": "Consigli di sicurezza", "Security recommendations": "Consigli di sicurezza",
"Filter devices": "Filtra dispositivi", "Filter devices": "Filtra dispositivi",
"Inactive for %(inactiveAgeDays)s days or longer": "Inattiva da %(inactiveAgeDays)s giorni o più", "Inactive for %(inactiveAgeDays)s days or longer": "Inattiva da %(inactiveAgeDays)s giorni o più",
@ -3308,7 +3276,6 @@
"other": "%(user)s e altri %(count)s" "other": "%(user)s e altri %(count)s"
}, },
"%(user1)s and %(user2)s": "%(user1)s e %(user2)s", "%(user1)s and %(user2)s": "%(user1)s e %(user2)s",
"Show": "Mostra",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s o %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s o %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s o %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s o %(recoveryFile)s",
"Proxy URL": "URL proxy", "Proxy URL": "URL proxy",
@ -3693,7 +3660,6 @@
"Receive an email summary of missed notifications": "Ricevi un riepilogo via email delle notifiche perse", "Receive an email summary of missed notifications": "Ricevi un riepilogo via email delle notifiche perse",
"People, Mentions and Keywords": "Persone, menzioni e parole chiave", "People, Mentions and Keywords": "Persone, menzioni e parole chiave",
"Mentions and Keywords only": "Solo menzioni e parole chiave", "Mentions and Keywords only": "Solo menzioni e parole chiave",
"Proceed": "Procedi",
"<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>": "<strong>Aggiornamento:</strong>abbiamo semplificato le impostazioni di notifica per rendere più facili da trovare le opzioni. Alcune impostazioni personalizzate che hai scelto in precedenza non vengono mostrate qui, ma sono ancora attive. Se procedi, alcune tue impostazioni possono cambiare. <a>Maggiori info</a>", "<strong>Update:</strong>Weve simplified Notifications Settings to make options easier to find. Some custom settings youve chosen in the past are not shown here, but theyre still active. If you proceed, some of your settings may change. <a>Learn more</a>": "<strong>Aggiornamento:</strong>abbiamo semplificato le impostazioni di notifica per rendere più facili da trovare le opzioni. Alcune impostazioni personalizzate che hai scelto in precedenza non vengono mostrate qui, ma sono ancora attive. Se procedi, alcune tue impostazioni possono cambiare. <a>Maggiori info</a>",
"Audio and Video calls": "Chiamate audio e video", "Audio and Video calls": "Chiamate audio e video",
"Notify when someone mentions using @room": "Avvisa quando qualcuno menziona usando @stanza", "Notify when someone mentions using @room": "Avvisa quando qualcuno menziona usando @stanza",
@ -3770,7 +3736,6 @@
"See less": "Riduci", "See less": "Riduci",
"See more": "Espandi", "See more": "Espandi",
"No requests": "Nessuna richiesta", "No requests": "Nessuna richiesta",
"Deny": "Nega",
"Asking to join": "Richiesta di entrare", "Asking to join": "Richiesta di entrare",
"common": { "common": {
"about": "Al riguardo", "about": "Al riguardo",
@ -3820,7 +3785,22 @@
"dark": "Scuro", "dark": "Scuro",
"beta": "Beta", "beta": "Beta",
"attachment": "Allegato", "attachment": "Allegato",
"appearance": "Aspetto" "appearance": "Aspetto",
"guest": "Ospite",
"legal": "Informazioni legali",
"credits": "Crediti",
"faq": "FAQ",
"access_token": "Token di accesso",
"preferences": "Preferenze",
"presence": "Presenza",
"timeline": "Linea temporale",
"privacy": "Privacy",
"camera": "Videocamera",
"microphone": "Microfono",
"emoji": "Emoji",
"random": "Casuale",
"support": "Supporto",
"space": "Spazio"
}, },
"action": { "action": {
"continue": "Continua", "continue": "Continua",
@ -3892,7 +3872,25 @@
"back": "Indietro", "back": "Indietro",
"apply": "Applica", "apply": "Applica",
"add": "Aggiungi", "add": "Aggiungi",
"accept": "Accetta" "accept": "Accetta",
"disconnect": "Disconnetti",
"change": "Cambia",
"subscribe": "Iscriviti",
"unsubscribe": "Disiscriviti",
"approve": "Approva",
"deny": "Nega",
"proceed": "Procedi",
"complete": "Completa",
"revoke": "Revoca",
"rename": "Rinomina",
"view_all": "Vedi tutto",
"show_all": "Mostra tutto",
"show": "Mostra",
"review": "Controlla",
"restore": "Ripristina",
"play": "Riproduci",
"pause": "Pausa",
"register": "Registrati"
}, },
"a11y": { "a11y": {
"user_menu": "Menu utente" "user_menu": "Menu utente"
@ -3979,7 +3977,9 @@
"default": "Predefinito", "default": "Predefinito",
"restricted": "Limitato", "restricted": "Limitato",
"moderator": "Moderatore", "moderator": "Moderatore",
"admin": "Amministratore" "admin": "Amministratore",
"custom": "Personalizzato (%(level)s)",
"mod": "Moderatore"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Se hai inviato un errore via GitHub, i log di debug possono aiutarci ad individuare il problema. ", "introduction": "Se hai inviato un errore via GitHub, i log di debug possono aiutarci ad individuare il problema. ",

View file

@ -15,15 +15,12 @@
"Upload avatar": "アバターをアップロード", "Upload avatar": "アバターをアップロード",
"No Microphones detected": "マイクが検出されません", "No Microphones detected": "マイクが検出されません",
"No Webcams detected": "Webカメラが検出されません", "No Webcams detected": "Webカメラが検出されません",
"Microphone": "マイク",
"Camera": "カメラ",
"Are you sure?": "よろしいですか?", "Are you sure?": "よろしいですか?",
"Operation failed": "操作に失敗しました", "Operation failed": "操作に失敗しました",
"powered by Matrix": "powered by Matrix", "powered by Matrix": "powered by Matrix",
"Online": "オンライン", "Online": "オンライン",
"unknown error code": "不明なエラーコード", "unknown error code": "不明なエラーコード",
"Failed to forget room %(errCode)s": "ルームの履歴を消去するのに失敗しました %(errCode)s", "Failed to forget room %(errCode)s": "ルームの履歴を消去するのに失敗しました %(errCode)s",
"Register": "登録",
"Rooms": "ルーム", "Rooms": "ルーム",
"Unnamed room": "名前のないルーム", "Unnamed room": "名前のないルーム",
"This email address is already in use": "このメールアドレスは既に使用されています", "This email address is already in use": "このメールアドレスは既に使用されています",
@ -474,7 +471,6 @@
"<not supported>": "<サポート対象外>", "<not supported>": "<サポート対象外>",
"Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート", "Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート",
"Cryptography": "暗号", "Cryptography": "暗号",
"Legal": "法的情報",
"Check for update": "更新を確認", "Check for update": "更新を確認",
"Reject all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を拒否", "Reject all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を拒否",
"Start automatically after system login": "システムログイン後に自動的に起動", "Start automatically after system login": "システムログイン後に自動的に起動",
@ -498,7 +494,6 @@
"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.": "ホームサーバーに接続できません。接続を確認し、<a>ホームサーバーのSSL証明書</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.": "ホームサーバーに接続できません。接続を確認し、<a>ホームサーバーのSSL証明書</a>が信頼できるものであり、ブラウザーの拡張機能が要求をブロックしていないことを確認してください。",
"This server does not support authentication with a phone number.": "このサーバーは、電話番号による認証をサポートしていません。", "This server does not support authentication with a phone number.": "このサーバーは、電話番号による認証をサポートしていません。",
"Commands": "コマンド", "Commands": "コマンド",
"Emoji": "絵文字",
"Notify the whole room": "ルーム全体に通知", "Notify the whole room": "ルーム全体に通知",
"Room Notification": "ルームの通知", "Room Notification": "ルームの通知",
"Users": "ユーザー", "Users": "ユーザー",
@ -601,7 +596,6 @@
"Phone numbers": "電話番号", "Phone numbers": "電話番号",
"Language and region": "言語と地域", "Language and region": "言語と地域",
"General": "一般", "General": "一般",
"Preferences": "環境設定",
"Security & Privacy": "セキュリティーとプライバシー", "Security & Privacy": "セキュリティーとプライバシー",
"Room information": "ルームの情報", "Room information": "ルームの情報",
"Room version": "ルームのバージョン", "Room version": "ルームのバージョン",
@ -624,7 +618,6 @@
"Show advanced": "高度な設定を表示", "Show advanced": "高度な設定を表示",
"Room Settings - %(roomName)s": "ルームの設定 - %(roomName)s", "Room Settings - %(roomName)s": "ルームの設定 - %(roomName)s",
"Enable room encryption": "ルームの暗号化を有効にする", "Enable room encryption": "ルームの暗号化を有効にする",
"Change": "変更",
"Change room avatar": "ルームのアバターの変更", "Change room avatar": "ルームのアバターの変更",
"Change main address for the room": "ルームのメインアドレスの変更", "Change main address for the room": "ルームのメインアドレスの変更",
"Change history visibility": "履歴の見え方の変更", "Change history visibility": "履歴の見え方の変更",
@ -653,10 +646,8 @@
"Delete Backup": "バックアップを削除", "Delete Backup": "バックアップを削除",
"Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "暗号化されたメッセージは、エンドツーエンドの暗号化によって保護されています。これらの暗号化されたメッセージを読むための鍵を持っているのは、あなたと受信者だけです。", "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "暗号化されたメッセージは、エンドツーエンドの暗号化によって保護されています。これらの暗号化されたメッセージを読むための鍵を持っているのは、あなたと受信者だけです。",
"Restore from Backup": "バックアップから復元", "Restore from Backup": "バックアップから復元",
"Credits": "クレジット",
"For help with using %(brand)s, click <a>here</a>.": "%(brand)sの使用方法に関するヘルプは<a>こちら</a>をご覧ください。", "For help with using %(brand)s, click <a>here</a>.": "%(brand)sの使用方法に関するヘルプは<a>こちら</a>をご覧ください。",
"Help & About": "ヘルプと概要", "Help & About": "ヘルプと概要",
"FAQ": "よくある質問",
"Versions": "バージョン", "Versions": "バージョン",
"Voice & Video": "音声とビデオ", "Voice & Video": "音声とビデオ",
"Remove recent messages": "最近のメッセージを削除", "Remove recent messages": "最近のメッセージを削除",
@ -730,7 +721,6 @@
"Encryption upgrade available": "暗号化のアップグレードが利用できます", "Encryption upgrade available": "暗号化のアップグレードが利用できます",
"Not Trusted": "信頼されていません", "Not Trusted": "信頼されていません",
"Later": "後で", "Later": "後で",
"Review": "確認",
"Trusted": "信頼済", "Trusted": "信頼済",
"Not trusted": "信頼されていません", "Not trusted": "信頼されていません",
"%(count)s verified sessions": { "%(count)s verified sessions": {
@ -774,7 +764,6 @@
"Account management": "アカウントの管理", "Account management": "アカウントの管理",
"Deactivate account": "アカウントを無効化", "Deactivate account": "アカウントを無効化",
"Room list": "ルーム一覧", "Room list": "ルーム一覧",
"Timeline": "タイムライン",
"Message search": "メッセージの検索", "Message search": "メッセージの検索",
"Published Addresses": "公開アドレス", "Published Addresses": "公開アドレス",
"Local Addresses": "ローカルアドレス", "Local Addresses": "ローカルアドレス",
@ -801,7 +790,6 @@
"More options": "他のオプション", "More options": "他のオプション",
"Manually verify all remote sessions": "全てのリモートセッションを手動で認証", "Manually verify all remote sessions": "全てのリモートセッションを手動で認証",
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "クロス署名された端末を信頼せず、ユーザーが使用する各セッションを個別に認証し、信頼済に設定。", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "クロス署名された端末を信頼せず、ユーザーが使用する各セッションを個別に認証し、信頼済に設定。",
"Show all": "全て表示",
"Message deleted": "メッセージが削除されました", "Message deleted": "メッセージが削除されました",
"Message deleted by %(name)s": "%(name)sによってメッセージが削除されました", "Message deleted by %(name)s": "%(name)sによってメッセージが削除されました",
"Show less": "詳細を非表示", "Show less": "詳細を非表示",
@ -877,7 +865,6 @@
"Matrix": "Matrix", "Matrix": "Matrix",
"Add a new server": "新しいサーバーを追加", "Add a new server": "新しいサーバーを追加",
"Server name": "サーバー名", "Server name": "サーバー名",
"Privacy": "プライバシー",
"<a>Log in</a> to your new account.": "新しいアカウントに<a>ログイン</a>しましょう。", "<a>Log in</a> to your new account.": "新しいアカウントに<a>ログイン</a>しましょう。",
"a few seconds ago": "数秒前", "a few seconds ago": "数秒前",
"about a minute ago": "約1分前", "about a minute ago": "約1分前",
@ -1037,8 +1024,6 @@
"Unable to share phone number": "電話番号を共有できません", "Unable to share phone number": "電話番号を共有できません",
"Unable to revoke sharing for phone number": "電話番号の共有を取り消せません", "Unable to revoke sharing for phone number": "電話番号の共有を取り消せません",
"Discovery options will appear once you have added an email above.": "上でメールアドレスを追加すると、発見可能に設定するメールアドレスを選択できるようになります。", "Discovery options will appear once you have added an email above.": "上でメールアドレスを追加すると、発見可能に設定するメールアドレスを選択できるようになります。",
"Revoke": "取り消す",
"Complete": "完了",
"Verify the link in your inbox": "受信したメールの認証リンクを開いてください", "Verify the link in your inbox": "受信したメールの認証リンクを開いてください",
"Click the link in the email you received to verify and then click continue again.": "受信したメールにあるリンクを開いて認証した後、改めて「続行する」を押してください。", "Click the link in the email you received to verify and then click continue again.": "受信したメールにあるリンクを開いて認証した後、改めて「続行する」を押してください。",
"Your email address hasn't been verified yet": "メールアドレスはまだ認証されていません", "Your email address hasn't been verified yet": "メールアドレスはまだ認証されていません",
@ -1057,7 +1042,6 @@
"Accept all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を承認", "Accept all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を承認",
"Read Marker off-screen lifetime (ms)": "既読マーカーを動かすまでの時間(画面オフ時)(ミリ秒)", "Read Marker off-screen lifetime (ms)": "既読マーカーを動かすまでの時間(画面オフ時)(ミリ秒)",
"Read Marker lifetime (ms)": "既読マーカーを動かすまでの時間(ミリ秒)", "Read Marker lifetime (ms)": "既読マーカーを動かすまでの時間(ミリ秒)",
"Subscribe": "購読",
"Room ID or address of ban list": "ブロックリストのルームIDまたはアドレス", "Room ID or address of ban list": "ブロックリストのルームIDまたはアドレス",
"If this isn't what you want, please use a different tool to ignore users.": "望ましくない場合は、別のツールを使用してユーザーを無視してください。", "If this isn't what you want, please use a different tool to ignore users.": "望ましくない場合は、別のツールを使用してユーザーを無視してください。",
"Subscribing to a ban list will cause you to join it!": "ブロックリストを購読すると、そのリストに参加します!", "Subscribing to a ban list will cause you to join it!": "ブロックリストを購読すると、そのリストに参加します!",
@ -1070,7 +1054,6 @@
"⚠ These settings are meant for advanced users.": "⚠以下の設定は、上級ユーザーを対象としています。", "⚠ These settings are meant for advanced users.": "⚠以下の設定は、上級ユーザーを対象としています。",
"You are currently subscribed to:": "以下を購読しています:", "You are currently subscribed to:": "以下を購読しています:",
"View rules": "ルールを表示", "View rules": "ルールを表示",
"Unsubscribe": "購読の解除",
"You are not subscribed to any lists": "どのリストも購読していません", "You are not subscribed to any lists": "どのリストも購読していません",
"You are currently ignoring:": "以下を無視しています:", "You are currently ignoring:": "以下を無視しています:",
"You have not ignored anyone.": "誰も無視していません。", "You have not ignored anyone.": "誰も無視していません。",
@ -1109,7 +1092,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ブラウザーのプラグインの内、IDサーバーをブロックする可能性があるものPrivacy Badgerなどを確認してください", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ブラウザーのプラグインの内、IDサーバーをブロックする可能性があるものPrivacy Badgerなどを確認してください",
"You should:": "するべきこと:", "You should:": "するべきこと:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "切断する前にIDサーバー <idserver /> から<b>個人データを削除</b>するべきですが、IDサーバー <idserver /> は現在オフライン状態か、またはアクセスできません。", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "切断する前にIDサーバー <idserver /> から<b>個人データを削除</b>するべきですが、IDサーバー <idserver /> は現在オフライン状態か、またはアクセスできません。",
"Disconnect": "切断",
"Disconnect from the identity server <idserver />?": "IDサーバー <idserver /> から切断しますか?", "Disconnect from the identity server <idserver />?": "IDサーバー <idserver /> から切断しますか?",
"Disconnect identity server": "IDサーバーから切断", "Disconnect identity server": "IDサーバーから切断",
"The identity server you have chosen does not have any terms of service.": "選択したIDサーバーには利用規約がありません。", "The identity server you have chosen does not have any terms of service.": "選択したIDサーバーには利用規約がありません。",
@ -1332,7 +1314,6 @@
"Setting up keys": "鍵のセットアップ", "Setting up keys": "鍵のセットアップ",
"Are you sure you want to cancel entering passphrase?": "パスフレーズの入力をキャンセルしてよろしいですか?", "Are you sure you want to cancel entering passphrase?": "パスフレーズの入力をキャンセルしてよろしいですか?",
"Cancel entering passphrase?": "パスフレーズの入力をキャンセルしますか?", "Cancel entering passphrase?": "パスフレーズの入力をキャンセルしますか?",
"Custom (%(level)s)": "ユーザー定義(%(level)s",
"Use your account or create a new one to continue.": "続行するには、作成済のアカウントを使用するか、新しいアカウントを作成してください。", "Use your account or create a new one to continue.": "続行するには、作成済のアカウントを使用するか、新しいアカウントを作成してください。",
"Sign In or Create Account": "サインインするか、アカウントを作成してください", "Sign In or Create Account": "サインインするか、アカウントを作成してください",
"Zimbabwe": "ジンバブエ", "Zimbabwe": "ジンバブエ",
@ -1391,7 +1372,6 @@
"Recently visited rooms": "最近訪れたルーム", "Recently visited rooms": "最近訪れたルーム",
"Room %(name)s": "ルーム %(name)s", "Room %(name)s": "ルーム %(name)s",
"The authenticity of this encrypted message can't be guaranteed on this device.": "この暗号化されたメッセージの真正性はこの端末では保証できません。", "The authenticity of this encrypted message can't be guaranteed on this device.": "この暗号化されたメッセージの真正性はこの端末では保証できません。",
"Mod": "モデレーター",
"Edit message": "メッセージを編集", "Edit message": "メッセージを編集",
"Someone is using an unknown session": "誰かが不明なセッションを使用しています", "Someone is using an unknown session": "誰かが不明なセッションを使用しています",
"You have verified this user. This user has verified all of their sessions.": "このユーザーを認証しました。このユーザーは全てのセッションを認証しました。", "You have verified this user. This user has verified all of their sessions.": "このユーザーを認証しました。このユーザーは全てのセッションを認証しました。",
@ -1660,7 +1640,6 @@
"Call in progress": "通話しています", "Call in progress": "通話しています",
"%(senderName)s joined the call": "%(senderName)sが通話に参加しました", "%(senderName)s joined the call": "%(senderName)sが通話に参加しました",
"You joined the call": "通話に参加しました", "You joined the call": "通話に参加しました",
"Guest": "ゲスト",
"New login. Was this you?": "新しいログインです。ログインしましたか?", "New login. Was this you?": "新しいログインです。ログインしましたか?",
"Safeguard against losing access to encrypted messages & data": "暗号化されたメッセージとデータへのアクセスが失われるのを防ぎましょう", "Safeguard against losing access to encrypted messages & data": "暗号化されたメッセージとデータへのアクセスが失われるのを防ぎましょう",
"Ok": "OK", "Ok": "OK",
@ -1767,7 +1746,6 @@
"Join the beta": "ベータ版に参加", "Join the beta": "ベータ版に参加",
"Leave the beta": "ベータ版を終了", "Leave the beta": "ベータ版を終了",
"Your access token gives full access to your account. Do not share it with anyone.": "アクセストークンを用いると、あなたのアカウントの全ての情報にアクセスできます。外部に公開したり、誰かと共有したりしないでください。", "Your access token gives full access to your account. Do not share it with anyone.": "アクセストークンを用いると、あなたのアカウントの全ての情報にアクセスできます。外部に公開したり、誰かと共有したりしないでください。",
"Access Token": "アクセストークン",
"Save Changes": "変更を保存", "Save Changes": "変更を保存",
"Edit settings relating to your space.": "スペースの設定を変更します。", "Edit settings relating to your space.": "スペースの設定を変更します。",
"Spaces": "スペース", "Spaces": "スペース",
@ -1797,7 +1775,6 @@
"Skip for now": "スキップ", "Skip for now": "スキップ",
"What do you want to organise?": "何を追加しますか?", "What do you want to organise?": "何を追加しますか?",
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "ルームや会話を追加できます。これはあなた専用のスペースで、他の人からは見えません。後から追加することもできます。", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "ルームや会話を追加できます。これはあなた専用のスペースで、他の人からは見えません。後から追加することもできます。",
"Support": "サポート",
"You can change these anytime.": "ここで入力した情報はいつでも編集できます。", "You can change these anytime.": "ここで入力した情報はいつでも編集できます。",
"Add some details to help people recognise it.": "説明を入力してください。", "Add some details to help people recognise it.": "説明を入力してください。",
"Integration manager": "インテグレーションマネージャー", "Integration manager": "インテグレーションマネージャー",
@ -1845,7 +1822,6 @@
"Suggested": "おすすめ", "Suggested": "おすすめ",
"Joined": "参加済", "Joined": "参加済",
"To join a space you'll need an invite.": "スペースに参加するには招待が必要です。", "To join a space you'll need an invite.": "スペースに参加するには招待が必要です。",
"Rename": "表示名を変更",
"Keyboard": "キーボード", "Keyboard": "キーボード",
"Group all your rooms that aren't part of a space in one place.": "スペースに含まれない全てのルームを一箇所にまとめる。", "Group all your rooms that aren't part of a space in one place.": "スペースに含まれない全てのルームを一箇所にまとめる。",
"Rooms outside of a space": "スペース外のルーム", "Rooms outside of a space": "スペース外のルーム",
@ -1896,8 +1872,6 @@
"Poll": "アンケート", "Poll": "アンケート",
"Insert link": "リンクを挿入", "Insert link": "リンクを挿入",
"Calls are unsupported": "通話はサポートされていません", "Calls are unsupported": "通話はサポートされていません",
"Play": "再生",
"Pause": "一時停止",
"Reason (optional)": "理由(任意)", "Reason (optional)": "理由(任意)",
"Copy link to thread": "スレッドへのリンクをコピー", "Copy link to thread": "スレッドへのリンクをコピー",
"You're all caught up": "未読はありません", "You're all caught up": "未読はありません",
@ -2234,7 +2208,6 @@
"Success!": "成功しました!", "Success!": "成功しました!",
"Comment": "コメント", "Comment": "コメント",
"Information": "情報", "Information": "情報",
"Restore": "復元",
"Failed to get room topic: Unable to find room (%(roomId)s": "ルームのトピックの取得に失敗しました:ルームを発見できません(%(roomId)s", "Failed to get room topic: Unable to find room (%(roomId)s": "ルームのトピックの取得に失敗しました:ルームを発見できません(%(roomId)s",
"Remove messages sent by me": "自分が送信したメッセージの削除", "Remove messages sent by me": "自分が送信したメッセージの削除",
"Search for spaces": "スペースを検索", "Search for spaces": "スペースを検索",
@ -2268,10 +2241,8 @@
"other": "あと%(count)s個のファイルをアップロード" "other": "あと%(count)s個のファイルをアップロード"
}, },
"This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "アップロードしようとしているファイルのサイズが<b>大きすぎます</b>。最大のサイズは%(limit)sですが、ファイルのサイズは%(sizeOfThisFile)sです。", "This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "アップロードしようとしているファイルのサイズが<b>大きすぎます</b>。最大のサイズは%(limit)sですが、ファイルのサイズは%(sizeOfThisFile)sです。",
"Approve": "同意",
"Away": "離席中", "Away": "離席中",
"Categories": "カテゴリー", "Categories": "カテゴリー",
"Space": "スペース",
"Themes": "テーマ", "Themes": "テーマ",
"Developer": "開発者", "Developer": "開発者",
"Experimental": "実験的", "Experimental": "実験的",
@ -2347,7 +2318,6 @@
"Delete all": "全て削除", "Delete all": "全て削除",
"You don't have permission": "権限がありません", "You don't have permission": "権限がありません",
"Results": "結果", "Results": "結果",
"Random": "ランダム",
"Failed to invite the following users to your space: %(csvUsers)s": "以下のユーザーをスペースに招待するのに失敗しました:%(csvUsers)s", "Failed to invite the following users to your space: %(csvUsers)s": "以下のユーザーをスペースに招待するのに失敗しました:%(csvUsers)s",
"Invite by username": "ユーザー名で招待", "Invite by username": "ユーザー名で招待",
"Show all threads": "全てのスレッドを表示", "Show all threads": "全てのスレッドを表示",
@ -3058,10 +3028,8 @@
"Show Labs settings": "ラボの設定を表示", "Show Labs settings": "ラボの設定を表示",
"Private room": "非公開ルーム", "Private room": "非公開ルーム",
"Video call (Jitsi)": "ビデオ通話Jitsi", "Video call (Jitsi)": "ビデオ通話Jitsi",
"View all": "全て表示",
"Show QR code": "QRコードを表示", "Show QR code": "QRコードを表示",
"Sign in with QR code": "QRコードでサインイン", "Sign in with QR code": "QRコードでサインイン",
"Show": "表示",
"All": "全て", "All": "全て",
"Verified session": "認証済のセッション", "Verified session": "認証済のセッション",
"IP address": "IPアドレス", "IP address": "IPアドレス",
@ -3126,7 +3094,6 @@
"Error downloading image": "画像をダウンロードする際にエラーが発生しました", "Error downloading image": "画像をダウンロードする際にエラーが発生しました",
"Unable to show image due to error": "エラーにより画像を表示できません", "Unable to show image due to error": "エラーにより画像を表示できません",
"Share your activity and status with others.": "アクティビティーやステータスを他の人と共有します。", "Share your activity and status with others.": "アクティビティーやステータスを他の人と共有します。",
"Presence": "プレゼンス(ステータス表示)",
"Reset event store?": "イベントストアをリセットしますか?", "Reset event store?": "イベントストアをリセットしますか?",
"Your firewall or anti-virus is blocking the request.": "ファイアーウォールまたはアンチウイルスソフトがリクエストをブロックしています。", "Your firewall or anti-virus is blocking the request.": "ファイアーウォールまたはアンチウイルスソフトがリクエストをブロックしています。",
"We're creating a room with %(names)s": "%(names)sという名前のルームを作成しています", "We're creating a room with %(names)s": "%(names)sという名前のルームを作成しています",
@ -3629,7 +3596,22 @@
"dark": "ダーク", "dark": "ダーク",
"beta": "ベータ版", "beta": "ベータ版",
"attachment": "添付ファイル", "attachment": "添付ファイル",
"appearance": "外観" "appearance": "外観",
"guest": "ゲスト",
"legal": "法的情報",
"credits": "クレジット",
"faq": "よくある質問",
"access_token": "アクセストークン",
"preferences": "環境設定",
"presence": "プレゼンス(ステータス表示)",
"timeline": "タイムライン",
"privacy": "プライバシー",
"camera": "カメラ",
"microphone": "マイク",
"emoji": "絵文字",
"random": "ランダム",
"support": "サポート",
"space": "スペース"
}, },
"action": { "action": {
"continue": "続行", "continue": "続行",
@ -3700,7 +3682,23 @@
"back": "戻る", "back": "戻る",
"apply": "適用", "apply": "適用",
"add": "追加", "add": "追加",
"accept": "同意" "accept": "同意",
"disconnect": "切断",
"change": "変更",
"subscribe": "購読",
"unsubscribe": "購読の解除",
"approve": "同意",
"complete": "完了",
"revoke": "取り消す",
"rename": "表示名を変更",
"view_all": "全て表示",
"show_all": "全て表示",
"show": "表示",
"review": "確認",
"restore": "復元",
"play": "再生",
"pause": "一時停止",
"register": "登録"
}, },
"a11y": { "a11y": {
"user_menu": "ユーザーメニュー" "user_menu": "ユーザーメニュー"
@ -3774,7 +3772,9 @@
"default": "既定値", "default": "既定値",
"restricted": "制限", "restricted": "制限",
"moderator": "モデレーター", "moderator": "モデレーター",
"admin": "管理者" "admin": "管理者",
"custom": "ユーザー定義(%(level)s",
"mod": "モデレーター"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "もしGitHubで不具合を報告した場合は、デバッグログが問題の解決に役立ちます。 ", "introduction": "もしGitHubで不具合を報告した場合は、デバッグログが問題の解決に役立ちます。 ",

View file

@ -38,7 +38,6 @@
"Unnamed Room": "na da cmene", "Unnamed Room": "na da cmene",
"Unable to enable Notifications": ".i na kakne lo nu co'a kakne lo nu benji lo sajgau", "Unable to enable Notifications": ".i na kakne lo nu co'a kakne lo nu benji lo sajgau",
"This email address was not found": ".i na da zo'u facki le du'u samymri judri da", "This email address was not found": ".i na da zo'u facki le du'u samymri judri da",
"Register": "nu co'a na'o jaspu",
"Default": "zmiselcu'a", "Default": "zmiselcu'a",
"Restricted": "vlipa so'u da", "Restricted": "vlipa so'u da",
"Moderator": "vlipa so'o da", "Moderator": "vlipa so'o da",
@ -133,7 +132,6 @@
"Change Password": "nu basti fi le ka lerpoijaspu", "Change Password": "nu basti fi le ka lerpoijaspu",
"Authentication": "lo nu facki lo du'u do du ma kau", "Authentication": "lo nu facki lo du'u do du ma kau",
"Failed to set display name": ".i pu fliba lo nu galfi lo cmene", "Failed to set display name": ".i pu fliba lo nu galfi lo cmene",
"Custom (%(level)s)": "drata (%(level)s)",
"Messages": "notci", "Messages": "notci",
"Actions": "ka'e se zukte", "Actions": "ka'e se zukte",
"Advanced": "macnu", "Advanced": "macnu",
@ -248,7 +246,6 @@
"Switch theme": "nu basti fi le ka jvinu", "Switch theme": "nu basti fi le ka jvinu",
"If you've joined lots of rooms, this might take a while": ".i gi na ja do pagbu so'i se zilbe'i gi la'a ze'u gunka", "If you've joined lots of rooms, this might take a while": ".i gi na ja do pagbu so'i se zilbe'i gi la'a ze'u gunka",
"Incorrect password": ".i le lerpoijaspu na drani", "Incorrect password": ".i le lerpoijaspu na drani",
"Emoji": "cinmo sinxa",
"Users": "pilno", "Users": "pilno",
"That matches!": ".i du", "That matches!": ".i du",
"Success!": ".i snada", "Success!": ".i snada",
@ -296,7 +293,6 @@
"Never send encrypted messages to unverified sessions from this session": "nu na pa mifra be pa notci cu zilbe'i pa se samtcise'u poi na se lanli ku'o le se samtcise'u", "Never send encrypted messages to unverified sessions from this session": "nu na pa mifra be pa notci cu zilbe'i pa se samtcise'u poi na se lanli ku'o le se samtcise'u",
"Later": "nu ca na co'e", "Later": "nu ca na co'e",
"Other users may not trust it": ".i la'a na pa na du be do cu lacri", "Other users may not trust it": ".i la'a na pa na du be do cu lacri",
"Change": "nu basti",
"Change room avatar": "nu basti fi le ka pixra sinxa le ve zilbe'i", "Change room avatar": "nu basti fi le ka pixra sinxa le ve zilbe'i",
"Change room name": "nu basti fi le ka cmene le ve zilbe'i", "Change room name": "nu basti fi le ka cmene le ve zilbe'i",
"Change main address for the room": "nu basti fi le ka ralju lu'i ro judri be le ve zilbe'i", "Change main address for the room": "nu basti fi le ka ralju lu'i ro judri be le ve zilbe'i",
@ -365,7 +361,8 @@
"people": "prenu", "people": "prenu",
"username": "judri cmene", "username": "judri cmene",
"light": "carmi", "light": "carmi",
"dark": "manku" "dark": "manku",
"emoji": "cinmo sinxa"
}, },
"action": { "action": {
"continue": "", "continue": "",
@ -394,7 +391,9 @@
"dismiss": "nu mipri", "dismiss": "nu mipri",
"close": "nu zilmipri", "close": "nu zilmipri",
"add": "jmina", "add": "jmina",
"accept": "nu fonjo'e" "accept": "nu fonjo'e",
"change": "nu basti",
"register": "nu co'a na'o jaspu"
}, },
"labs": { "labs": {
"pinning": "lo du'u xu kau kakne lo nu mrilu lo vitno notci" "pinning": "lo du'u xu kau kakne lo nu mrilu lo vitno notci"
@ -403,6 +402,7 @@
"default": "zmiselcu'a", "default": "zmiselcu'a",
"restricted": "vlipa so'u da", "restricted": "vlipa so'u da",
"moderator": "vlipa so'o da", "moderator": "vlipa so'o da",
"admin": "vlipa so'i da" "admin": "vlipa so'i da",
"custom": "drata (%(level)s)"
} }
} }

View file

@ -35,7 +35,6 @@
"Reason": "Taɣẓint", "Reason": "Taɣẓint",
"Someone": "Albaɛḍ", "Someone": "Albaɛḍ",
"Add another word or two. Uncommon words are better.": "Rnu awal-nniḍen neɣ sin. Awalen imexḍa ad lhun.", "Add another word or two. Uncommon words are better.": "Rnu awal-nniḍen neɣ sin. Awalen imexḍa ad lhun.",
"Review": "Senqed",
"Later": "Ticki", "Later": "Ticki",
"Notifications": "Ilɣa", "Notifications": "Ilɣa",
"Ok": "Ih", "Ok": "Ih",
@ -69,31 +68,19 @@
"Manage": "Sefrek", "Manage": "Sefrek",
"Off": "Insa", "Off": "Insa",
"Display Name": "Sken isem", "Display Name": "Sken isem",
"Disconnect": "Ffeɣ seg tuqqna",
"Change": "Beddel",
"Profile": "Amaɣnu", "Profile": "Amaɣnu",
"Account": "Amiḍan", "Account": "Amiḍan",
"General": "Amatu", "General": "Amatu",
"Legal": "Usḍif",
"Credits": "Asenmer",
"Chat with %(brand)s Bot": "Asqerdec akked %(brand)s Bot", "Chat with %(brand)s Bot": "Asqerdec akked %(brand)s Bot",
"FAQ": "Isteqsiyen FAQ",
"Versions": "Ileqman", "Versions": "Ileqman",
"None": "Ula yiwen", "None": "Ula yiwen",
"Unsubscribe": "Sefsex ajerred",
"Subscribe": "Jerred",
"Preferences": "Ismenyifen",
"Composer": "Imsuddes", "Composer": "Imsuddes",
"Timeline": "Amazray",
"Microphone": "Asawaḍ",
"Camera": "Takamiṛatt",
"Sounds": "Imesla", "Sounds": "Imesla",
"Browse": "Inig", "Browse": "Inig",
"Default role": "Tamlilt tamzwert", "Default role": "Tamlilt tamzwert",
"Permissions": "Tisirag", "Permissions": "Tisirag",
"Anyone": "Yal yiwen", "Anyone": "Yal yiwen",
"Encryption": "Awgelhen", "Encryption": "Awgelhen",
"Complete": "Yemmed",
"Verification code": "Tangalt n usenqed", "Verification code": "Tangalt n usenqed",
"Email Address": "Tansa n yimayl", "Email Address": "Tansa n yimayl",
"Phone Number": "Uṭṭun n tiliɣri", "Phone Number": "Uṭṭun n tiliɣri",
@ -116,7 +103,6 @@
"Today": "Ass-a", "Today": "Ass-a",
"Yesterday": "Iḍelli", "Yesterday": "Iḍelli",
"Error decrypting attachment": "Tuccḍa deg uwgelhen n tceqquft yeddan", "Error decrypting attachment": "Tuccḍa deg uwgelhen n tceqquft yeddan",
"Show all": "Sken akk",
"Message deleted": "Izen yettwakksen", "Message deleted": "Izen yettwakksen",
"Copied!": "Yettwanɣel!", "Copied!": "Yettwanɣel!",
"edited": "yettwaẓreg", "edited": "yettwaẓreg",
@ -153,10 +139,8 @@
"Phone": "Tiliɣri", "Phone": "Tiliɣri",
"Passwords don't match": "Awalen uffiren ur mṣadan ara", "Passwords don't match": "Awalen uffiren ur mṣadan ara",
"Email (optional)": "Imayl (Afrayan)", "Email (optional)": "Imayl (Afrayan)",
"Register": "Jerred",
"Explore rooms": "Snirem tixxamin", "Explore rooms": "Snirem tixxamin",
"Unknown error": "Tuccḍa tarussint", "Unknown error": "Tuccḍa tarussint",
"Guest": "Anerzaf",
"Feedback": "Takti", "Feedback": "Takti",
"Your password has been reset.": "Awal uffir-inek/inem yettuwennez.", "Your password has been reset.": "Awal uffir-inek/inem yettuwennez.",
"Create account": "Rnu amiḍan", "Create account": "Rnu amiḍan",
@ -164,13 +148,11 @@
"Users": "Iseqdacen", "Users": "Iseqdacen",
"Export": "Sifeḍ", "Export": "Sifeḍ",
"Import": "Kter", "Import": "Kter",
"Restore": "Err-d",
"Success!": "Tammug akken iwata!", "Success!": "Tammug akken iwata!",
"Navigation": "Tunigin", "Navigation": "Tunigin",
"Calls": "Isawalen", "Calls": "Isawalen",
"New line": "Izirig amaynut", "New line": "Izirig amaynut",
"Upload a file": "Sali-d afaylu", "Upload a file": "Sali-d afaylu",
"Space": "Tallunt",
"This email address is already in use": "Tansa-agi n yimayl tettuseqdac yakan", "This email address is already in use": "Tansa-agi n yimayl tettuseqdac yakan",
"This phone number is already in use": "Uṭṭun-agi n tilifun yettuseqddac yakan", "This phone number is already in use": "Uṭṭun-agi n tilifun yettuseqddac yakan",
"Your %(brand)s is misconfigured": "%(brand)s inek(inem) ur ittusbadu ara", "Your %(brand)s is misconfigured": "%(brand)s inek(inem) ur ittusbadu ara",
@ -228,7 +210,6 @@
"This email address was not found": "Tansa-a n yimayl ulac-it", "This email address was not found": "Tansa-a n yimayl ulac-it",
"Sign In or Create Account": "Kcem ɣer neɣ rnu amiḍan", "Sign In or Create Account": "Kcem ɣer neɣ rnu amiḍan",
"Use your account or create a new one to continue.": "Seqdec amiḍan-ik/im neɣ snulfu-d yiwen akken ad tkemmleḍ.", "Use your account or create a new one to continue.": "Seqdec amiḍan-ik/im neɣ snulfu-d yiwen akken ad tkemmleḍ.",
"Custom (%(level)s)": "Sagen (%(level)s)",
"Failed to invite": "Ulamek i d-tnecdeḍ", "Failed to invite": "Ulamek i d-tnecdeḍ",
"You need to be able to invite users to do that.": "Tesriḍ ad tizmireḍ ad d-tnecdeḍ iseqdacen ad gen ayagi.", "You need to be able to invite users to do that.": "Tesriḍ ad tizmireḍ ad d-tnecdeḍ iseqdacen ad gen ayagi.",
"Failed to send request.": "Tuzna n usuter ur teddi ara.", "Failed to send request.": "Tuzna n usuter ur teddi ara.",
@ -1039,7 +1020,6 @@
"Show image": "Sken tugna", "Show image": "Sken tugna",
"Invalid base_url for m.identity_server": "D arameɣtu base_url i m.identity_server", "Invalid base_url for m.identity_server": "D arameɣtu base_url i m.identity_server",
"If you've joined lots of rooms, this might take a while": "Ma yella tettekkaḍ deg waṭas n texxamin, ayagi yezmer ad yeṭṭef kra n wakud", "If you've joined lots of rooms, this might take a while": "Ma yella tettekkaḍ deg waṭas n texxamin, ayagi yezmer ad yeṭṭef kra n wakud",
"Emoji": "Imujit",
"Your keys are being backed up (the first backup could take a few minutes).": "Tisura-ik·im la ttwaḥrazent (aḥraz amezwaru yezmer ad yeṭṭef kra n tesdidin).", "Your keys are being backed up (the first backup could take a few minutes).": "Tisura-ik·im la ttwaḥrazent (aḥraz amezwaru yezmer ad yeṭṭef kra n tesdidin).",
"Unexpected error resolving homeserver configuration": "Tuccḍa ur nettwaṛǧa ara lawan n uṣeggem n twila n uqeddac agejdan", "Unexpected error resolving homeserver configuration": "Tuccḍa ur nettwaṛǧa ara lawan n uṣeggem n twila n uqeddac agejdan",
"Unexpected error resolving identity server configuration": "Tuccḍa ur nettwaṛǧa ara lawan n uṣeggem n uqeddac n timagit", "Unexpected error resolving identity server configuration": "Tuccḍa ur nettwaṛǧa ara lawan n uṣeggem n uqeddac n timagit",
@ -1129,7 +1109,6 @@
"Your email address hasn't been verified yet": "Tansa n yimayl-ik·im ur tettwasenqed ara akka ar tura", "Your email address hasn't been verified yet": "Tansa n yimayl-ik·im ur tettwasenqed ara akka ar tura",
"Unable to verify email address.": "Asenqed n tansa n yimayl ur yeddi ara.", "Unable to verify email address.": "Asenqed n tansa n yimayl ur yeddi ara.",
"Verify the link in your inbox": "Senqed aseɣwen deg tbewwaḍt-ik·im n yimayl", "Verify the link in your inbox": "Senqed aseɣwen deg tbewwaḍt-ik·im n yimayl",
"Revoke": "Ḥwi",
"Unable to revoke sharing for phone number": "Aḥwi n beṭṭu n tansa n yimayl ur yeddi ara", "Unable to revoke sharing for phone number": "Aḥwi n beṭṭu n tansa n yimayl ur yeddi ara",
"Unable to share phone number": "Beṭṭu n wuṭṭun n tilifun ur yeddi ara", "Unable to share phone number": "Beṭṭu n wuṭṭun n tilifun ur yeddi ara",
"Unable to verify phone number.": "Asenqed n wuṭṭun n tilifun ur yeddi ara.", "Unable to verify phone number.": "Asenqed n wuṭṭun n tilifun ur yeddi ara.",
@ -1145,7 +1124,6 @@
"You have verified this user. This user has verified all of their sessions.": "Tesneqdeḍ aseqdac-a. Aseqdac-a issenqed akk tiɣimiyin-ines.", "You have verified this user. This user has verified all of their sessions.": "Tesneqdeḍ aseqdac-a. Aseqdac-a issenqed akk tiɣimiyin-ines.",
"Someone is using an unknown session": "Yella win yesseqdacen tiɣimit tarussint", "Someone is using an unknown session": "Yella win yesseqdacen tiɣimit tarussint",
"Everyone in this room is verified": "Yal yiwen deg taxxamt-a yettwasenqed", "Everyone in this room is verified": "Yal yiwen deg taxxamt-a yettwasenqed",
"Mod": "Atrar",
"This event could not be displayed": "Tadyant-a ur tezmir ad d-tettwaskan", "This event could not be displayed": "Tadyant-a ur tezmir ad d-tettwaskan",
"Encrypted by an unverified session": "Yettuwgelhen s tɣimit ur nettwasenqed ara", "Encrypted by an unverified session": "Yettuwgelhen s tɣimit ur nettwasenqed ara",
"Unencrypted": "Ur yettwawgelhen ara", "Unencrypted": "Ur yettwawgelhen ara",
@ -1578,7 +1556,6 @@
"ready": "yewjed", "ready": "yewjed",
"not ready": "ur yewjid ara", "not ready": "ur yewjid ara",
"Secure Backup": "Aklas aɣellsan", "Secure Backup": "Aklas aɣellsan",
"Privacy": "Tabaḍnit",
"Not encrypted": "Ur yettwawgelhen ara", "Not encrypted": "Ur yettwawgelhen ara",
"Room settings": "Iɣewwaṛen n texxamt", "Room settings": "Iɣewwaṛen n texxamt",
"Take a picture": "Ṭṭef tawlaft", "Take a picture": "Ṭṭef tawlaft",
@ -1758,7 +1735,6 @@
"Costa Rica": "Costa Rica", "Costa Rica": "Costa Rica",
"Afghanistan": "Afɣanistan", "Afghanistan": "Afɣanistan",
"Angola": "Angula", "Angola": "Angula",
"Approve": "Qbel",
"Heard & McDonald Islands": "Tigzirin n Hird d Tigzirin n MakDunald", "Heard & McDonald Islands": "Tigzirin n Hird d Tigzirin n MakDunald",
"Puerto Rico": "Porto Rico", "Puerto Rico": "Porto Rico",
"Suriname": "Surinam", "Suriname": "Surinam",
@ -1919,7 +1895,18 @@
"description": "Aglam", "description": "Aglam",
"dark": "Aberkan", "dark": "Aberkan",
"attachment": "Taceqquft yeddan", "attachment": "Taceqquft yeddan",
"appearance": "Arwes" "appearance": "Arwes",
"guest": "Anerzaf",
"legal": "Usḍif",
"credits": "Asenmer",
"faq": "Isteqsiyen FAQ",
"preferences": "Ismenyifen",
"timeline": "Amazray",
"privacy": "Tabaḍnit",
"camera": "Takamiṛatt",
"microphone": "Asawaḍ",
"emoji": "Imujit",
"space": "Tallunt"
}, },
"action": { "action": {
"continue": "Kemmel", "continue": "Kemmel",
@ -1979,7 +1966,18 @@
"cancel": "Sefsex", "cancel": "Sefsex",
"back": "Uɣal ɣer deffir", "back": "Uɣal ɣer deffir",
"add": "Rnu", "add": "Rnu",
"accept": "Qbel" "accept": "Qbel",
"disconnect": "Ffeɣ seg tuqqna",
"change": "Beddel",
"subscribe": "Jerred",
"unsubscribe": "Sefsex ajerred",
"approve": "Qbel",
"complete": "Yemmed",
"revoke": "Ḥwi",
"show_all": "Sken akk",
"review": "Senqed",
"restore": "Err-d",
"register": "Jerred"
}, },
"a11y": { "a11y": {
"user_menu": "Umuɣ n useqdac" "user_menu": "Umuɣ n useqdac"
@ -2014,7 +2012,9 @@
"default": "Amezwer", "default": "Amezwer",
"restricted": "Yesεa tilas", "restricted": "Yesεa tilas",
"moderator": "Aseɣyad", "moderator": "Aseɣyad",
"admin": "Anedbal" "admin": "Anedbal",
"custom": "Sagen (%(level)s)",
"mod": "Atrar"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "I wakken ad d-tazneḍ ugur n tɣellist i icudden ɣer Matrix, ttxil-k·m ɣer <a>tasertit n ukcaf n tɣellist</a> deg Matrix.org.", "matrix_security_issue": "I wakken ad d-tazneḍ ugur n tɣellist i icudden ɣer Matrix, ttxil-k·m ɣer <a>tasertit n ukcaf n tɣellist</a> deg Matrix.org.",

View file

@ -10,8 +10,6 @@
"No Webcams detected": "카메라 감지 없음", "No Webcams detected": "카메라 감지 없음",
"No media permissions": "미디어 권한 없음", "No media permissions": "미디어 권한 없음",
"Default Device": "기본 기기", "Default Device": "기본 기기",
"Microphone": "마이크",
"Camera": "카메라",
"Advanced": "고급", "Advanced": "고급",
"Always show message timestamps": "항상 메시지의 시간을 보이기", "Always show message timestamps": "항상 메시지의 시간을 보이기",
"Authentication": "인증", "Authentication": "인증",
@ -55,7 +53,6 @@
"Deops user with given id": "받은 ID로 사용자의 등급을 낮추기", "Deops user with given id": "받은 ID로 사용자의 등급을 낮추기",
"Displays action": "활동 표시하기", "Displays action": "활동 표시하기",
"Download %(text)s": "%(text)s 다운로드", "Download %(text)s": "%(text)s 다운로드",
"Emoji": "이모지",
"Enter passphrase": "암호 입력", "Enter passphrase": "암호 입력",
"Error decrypting attachment": "첨부 파일 복호화 중 오류", "Error decrypting attachment": "첨부 파일 복호화 중 오류",
"Export": "내보내기", "Export": "내보내기",
@ -116,7 +113,6 @@
"Privileged Users": "권한 있는 사용자", "Privileged Users": "권한 있는 사용자",
"Profile": "프로필", "Profile": "프로필",
"Reason": "이유", "Reason": "이유",
"Register": "등록",
"Reject invitation": "초대 거절", "Reject invitation": "초대 거절",
"Return to login screen": "로그인 화면으로 돌아가기", "Return to login screen": "로그인 화면으로 돌아가기",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s은 알림을 보낼 권한을 가지고 있지 않습니다. 브라우저 설정을 확인해주세요", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s은 알림을 보낼 권한을 가지고 있지 않습니다. 브라우저 설정을 확인해주세요",
@ -676,7 +672,6 @@
"The identity server you have chosen does not have any terms of service.": "고른 ID 서버가 서비스 약관을 갖고 있지 않습니다.", "The identity server you have chosen does not have any terms of service.": "고른 ID 서버가 서비스 약관을 갖고 있지 않습니다.",
"Only continue if you trust the owner of the server.": "서버의 관리자를 신뢰하는 경우에만 계속하세요.", "Only continue if you trust the owner of the server.": "서버의 관리자를 신뢰하는 경우에만 계속하세요.",
"Disconnect from the identity server <idserver />?": "ID 서버 <idserver />(으)로부터 연결을 끊겠습니까?", "Disconnect from the identity server <idserver />?": "ID 서버 <idserver />(으)로부터 연결을 끊겠습니까?",
"Disconnect": "연결 끊기",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "현재 <server></server>을(를) 사용하여 알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색할 수 있습니다. 아래에서 ID 서버를 변경할 수 있습니다.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "현재 <server></server>을(를) 사용하여 알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색할 수 있습니다. 아래에서 ID 서버를 변경할 수 있습니다.",
"If you don't want to use <server /> to discover and be discoverable by existing contacts you know, enter another identity server below.": "알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색할 수 있는 <server />을(를) 쓰고 싶지 않다면, 아래에 다른 ID 서버를 입력하세요.", "If you don't want to use <server /> to discover and be discoverable by existing contacts you know, enter another identity server below.": "알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색할 수 있는 <server />을(를) 쓰고 싶지 않다면, 아래에 다른 ID 서버를 입력하세요.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "현재 ID 서버를 사용하고 있지 않습니다. 알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색하려면, 아래에 하나를 추가하세요.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "현재 ID 서버를 사용하고 있지 않습니다. 알고 있는 기존 연락처 사람들을 검색하거나 사람들이 당신을 검색하려면, 아래에 하나를 추가하세요.",
@ -684,7 +679,6 @@
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "ID 서버를 사용하는 것은 선택입니다. ID 서버를 사용하지 않는다면, 다른 사용자에게 검색될 수 없고, 이메일과 전화번호로 다른 사람을 초대할 수 없게 됩니다.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "ID 서버를 사용하는 것은 선택입니다. ID 서버를 사용하지 않는다면, 다른 사용자에게 검색될 수 없고, 이메일과 전화번호로 다른 사람을 초대할 수 없게 됩니다.",
"Do not use an identity server": "ID 서버를 사용하지 않기", "Do not use an identity server": "ID 서버를 사용하지 않기",
"Enter a new identity server": "새 ID 서버 입력", "Enter a new identity server": "새 ID 서버 입력",
"Change": "변경",
"Email addresses": "이메일 주소", "Email addresses": "이메일 주소",
"Phone numbers": "전화번호", "Phone numbers": "전화번호",
"Language and region": "언어와 나라", "Language and region": "언어와 나라",
@ -693,18 +687,13 @@
"General": "기본", "General": "기본",
"Discovery": "탐색", "Discovery": "탐색",
"Deactivate account": "계정 비활성화", "Deactivate account": "계정 비활성화",
"Legal": "법적",
"Credits": "크레딧",
"For help with using %(brand)s, click <a>here</a>.": "%(brand)s 사용 중 도움이 필요하다면, <a>여기</a>를 클릭하세요.", "For help with using %(brand)s, click <a>here</a>.": "%(brand)s 사용 중 도움이 필요하다면, <a>여기</a>를 클릭하세요.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s을 사용하다가 도움이 필요하다면, <a>여기</a>를 클릭하거나, 아래 버튼을 사용해 우리의 봇과 대화를 시작하세요.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s을 사용하다가 도움이 필요하다면, <a>여기</a>를 클릭하거나, 아래 버튼을 사용해 우리의 봇과 대화를 시작하세요.",
"Chat with %(brand)s Bot": "%(brand)s 봇과 대화", "Chat with %(brand)s Bot": "%(brand)s 봇과 대화",
"Help & About": "도움 & 정보", "Help & About": "도움 & 정보",
"FAQ": "자주 묻는 질문 (FAQ)",
"Versions": "버전", "Versions": "버전",
"Always show the window menu bar": "항상 윈도우 메뉴 막대에 보이기", "Always show the window menu bar": "항상 윈도우 메뉴 막대에 보이기",
"Preferences": "환경 설정",
"Composer": "작성기", "Composer": "작성기",
"Timeline": "타임라인",
"Room list": "방 목록", "Room list": "방 목록",
"Autocomplete delay (ms)": "자동 완성 딜레이 (ms)", "Autocomplete delay (ms)": "자동 완성 딜레이 (ms)",
"Ignored users": "무시한 사용자", "Ignored users": "무시한 사용자",
@ -751,7 +740,6 @@
"Encrypted": "암호화됨", "Encrypted": "암호화됨",
"Unable to revoke sharing for email address": "이메일 주소 공유를 취소할 수 없음", "Unable to revoke sharing for email address": "이메일 주소 공유를 취소할 수 없음",
"Unable to share email address": "이메일 주소를 공유할 수 없음", "Unable to share email address": "이메일 주소를 공유할 수 없음",
"Revoke": "취소",
"Discovery options will appear once you have added an email above.": "위에 이메일을 추가하면 검색 옵션에 나타납니다.", "Discovery options will appear once you have added an email above.": "위에 이메일을 추가하면 검색 옵션에 나타납니다.",
"Unable to revoke sharing for phone number": "전화번호 공유를 취소할 수 없음", "Unable to revoke sharing for phone number": "전화번호 공유를 취소할 수 없음",
"Unable to share phone number": "전화번호를 공유할 수 없음", "Unable to share phone number": "전화번호를 공유할 수 없음",
@ -795,7 +783,6 @@
"Room avatar": "방 아바타", "Room avatar": "방 아바타",
"Room Name": "방 이름", "Room Name": "방 이름",
"Room Topic": "방 주제", "Room Topic": "방 주제",
"Show all": "전체 보기",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>%(shortName)s으로 리액션함</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>%(shortName)s으로 리액션함</reactedWith>",
"Edited at %(date)s. Click to view edits.": "%(date)s에 편집함. 클릭해서 편집 보기.", "Edited at %(date)s. Click to view edits.": "%(date)s에 편집함. 클릭해서 편집 보기.",
"edited": "편집됨", "edited": "편집됨",
@ -906,7 +893,6 @@
"other": "이 방의 이전 버전에서 읽지 않은 %(count)s개의 알림이 있습니다.", "other": "이 방의 이전 버전에서 읽지 않은 %(count)s개의 알림이 있습니다.",
"one": "이 방의 이전 버전에서 읽지 않은 %(count)s개의 알림이 있습니다." "one": "이 방의 이전 버전에서 읽지 않은 %(count)s개의 알림이 있습니다."
}, },
"Guest": "손님",
"Could not load user profile": "사용자 프로필을 불러올 수 없음", "Could not load user profile": "사용자 프로필을 불러올 수 없음",
"Your password has been reset.": "비밀번호가 초기화되었습니다.", "Your password has been reset.": "비밀번호가 초기화되었습니다.",
"Invalid homeserver discovery response": "잘못된 홈서버 검색 응답", "Invalid homeserver discovery response": "잘못된 홈서버 검색 응답",
@ -988,7 +974,6 @@
"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'를 홈서버의 관리자에게 보내게 됩니다. 이 방의 메시지가 암호화되어 있다면, 홈서버 관리자는 메시지 문자를 읽거나 파일 혹은 사진을 볼 수 없습니다.", "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'를 홈서버의 관리자에게 보내게 됩니다. 이 방의 메시지가 암호화되어 있다면, 홈서버 관리자는 메시지 문자를 읽거나 파일 혹은 사진을 볼 수 없습니다.",
"Send report": "신고 보내기", "Send report": "신고 보내기",
"Verify the link in your inbox": "메일함에 있는 링크로 확인", "Verify the link in your inbox": "메일함에 있는 링크로 확인",
"Complete": "완료",
"Read Marker lifetime (ms)": "이전 대화 경계선 표시 시간 (ms)", "Read Marker lifetime (ms)": "이전 대화 경계선 표시 시간 (ms)",
"Read Marker off-screen lifetime (ms)": "이전 대화 경계선 사라지는 시간 (ms)", "Read Marker off-screen lifetime (ms)": "이전 대화 경계선 사라지는 시간 (ms)",
"Changes the avatar of the current room": "현재 방의 아바타 변경하기", "Changes the avatar of the current room": "현재 방의 아바타 변경하기",
@ -1076,12 +1061,10 @@
"You have not ignored anyone.": "아무도 무시하고 있지 않습니다.", "You have not ignored anyone.": "아무도 무시하고 있지 않습니다.",
"You are currently ignoring:": "현재 무시하고 있음:", "You are currently ignoring:": "현재 무시하고 있음:",
"You are not subscribed to any lists": "어느 목록에도 구독하고 있지 않습니다", "You are not subscribed to any lists": "어느 목록에도 구독하고 있지 않습니다",
"Unsubscribe": "구독 해제",
"View rules": "규칙 보기", "View rules": "규칙 보기",
"You are currently subscribed to:": "현재 구독 중임:", "You are currently subscribed to:": "현재 구독 중임:",
"⚠ These settings are meant for advanced users.": "⚠ 이 설정은 고급 사용자를 위한 것입니다.", "⚠ These settings are meant for advanced users.": "⚠ 이 설정은 고급 사용자를 위한 것입니다.",
"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.": "무시하고 싶은 사용자와 서버를 여기에 추가하세요. 별표(*)를 사용해서 %(brand)s이 이름과 문자를 맞춰볼 수 있습니다. 예를 들어, <code>@bot:*</code>이라면 모든 서버에서 'bot'이라는 문자를 가진 이름의 모든 사용자를 무시합니다.", "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.": "무시하고 싶은 사용자와 서버를 여기에 추가하세요. 별표(*)를 사용해서 %(brand)s이 이름과 문자를 맞춰볼 수 있습니다. 예를 들어, <code>@bot:*</code>이라면 모든 서버에서 'bot'이라는 문자를 가진 이름의 모든 사용자를 무시합니다.",
"Custom (%(level)s)": "맞춤 (%(level)s)",
"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.": "차단당하는 사람은 규칙에 따라 차단 목록을 통해 무시됩니다. 차단 목록을 구독하면 그 목록에서 차단당한 사용자/서버를 당신으로부터 감추게됩니다.", "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.": "차단당하는 사람은 규칙에 따라 차단 목록을 통해 무시됩니다. 차단 목록을 구독하면 그 목록에서 차단당한 사용자/서버를 당신으로부터 감추게됩니다.",
"Personal ban list": "개인 차단 목록", "Personal ban list": "개인 차단 목록",
"Server or user ID to ignore": "무시할 서버 또는 사용자 ID", "Server or user ID to ignore": "무시할 서버 또는 사용자 ID",
@ -1089,7 +1072,6 @@
"Subscribed lists": "구독 목록", "Subscribed lists": "구독 목록",
"Subscribing to a ban list will cause you to join it!": "차단 목록을 구독하면 차단 목록에 참여하게 됩니다!", "Subscribing to a ban list will cause you to join it!": "차단 목록을 구독하면 차단 목록에 참여하게 됩니다!",
"If this isn't what you want, please use a different tool to ignore users.": "이것을 원한 것이 아니라면, 사용자를 무시하는 다른 도구를 사용해주세요.", "If this isn't what you want, please use a different tool to ignore users.": "이것을 원한 것이 아니라면, 사용자를 무시하는 다른 도구를 사용해주세요.",
"Subscribe": "구독",
"Trusted": "신뢰함", "Trusted": "신뢰함",
"Not trusted": "신뢰하지 않음", "Not trusted": "신뢰하지 않음",
"Messages in this room are end-to-end encrypted.": "이 방의 메시지는 종단간 암호화되었습니다.", "Messages in this room are end-to-end encrypted.": "이 방의 메시지는 종단간 암호화되었습니다.",
@ -1332,7 +1314,16 @@
"description": "설명", "description": "설명",
"dark": "다크", "dark": "다크",
"attachment": "첨부 파일", "attachment": "첨부 파일",
"appearance": "모습" "appearance": "모습",
"guest": "손님",
"legal": "법적",
"credits": "크레딧",
"faq": "자주 묻는 질문 (FAQ)",
"preferences": "환경 설정",
"timeline": "타임라인",
"camera": "카메라",
"microphone": "마이크",
"emoji": "이모지"
}, },
"action": { "action": {
"continue": "계속하기", "continue": "계속하기",
@ -1384,7 +1375,15 @@
"cancel": "취소", "cancel": "취소",
"back": "돌아가기", "back": "돌아가기",
"add": "추가", "add": "추가",
"accept": "수락" "accept": "수락",
"disconnect": "연결 끊기",
"change": "변경",
"subscribe": "구독",
"unsubscribe": "구독 해제",
"complete": "완료",
"revoke": "취소",
"show_all": "전체 보기",
"register": "등록"
}, },
"labs": { "labs": {
"pinning": "메시지 고정", "pinning": "메시지 고정",
@ -1405,7 +1404,8 @@
"default": "기본", "default": "기본",
"restricted": "제한됨", "restricted": "제한됨",
"moderator": "조정자", "moderator": "조정자",
"admin": "관리자" "admin": "관리자",
"custom": "맞춤 (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "디버그 로그 전송하기", "submit_debug_logs": "디버그 로그 전송하기",

View file

@ -273,7 +273,6 @@
"Failed to invite users to %(roomName)s": "ໃນການເຊີນຜູ້ໃຊ້ໄປຫາ %(roomName)s ບໍ່ສຳເລັດ", "Failed to invite users to %(roomName)s": "ໃນການເຊີນຜູ້ໃຊ້ໄປຫາ %(roomName)s ບໍ່ສຳເລັດ",
"Operation failed": "ການດໍາເນີນງານບໍ່ສຳເລັດ", "Operation failed": "ການດໍາເນີນງານບໍ່ສຳເລັດ",
"Failed to invite": "ການເຊີນບໍ່ສຳເລັດ", "Failed to invite": "ການເຊີນບໍ່ສຳເລັດ",
"Custom (%(level)s)": "ກຳນົດ(%(level)s)ເອງ",
"Admin": "ບໍລິຫານ", "Admin": "ບໍລິຫານ",
"Moderator": "ຜູ້ດຳເນິນລາຍການ", "Moderator": "ຜູ້ດຳເນິນລາຍການ",
"Restricted": "ຖືກຈຳກັດ", "Restricted": "ຖືກຈຳກັດ",
@ -394,8 +393,6 @@
"Unable to share phone number": "ບໍ່ສາມາດແບ່ງປັນເບີໂທລະສັບໄດ້", "Unable to share phone number": "ບໍ່ສາມາດແບ່ງປັນເບີໂທລະສັບໄດ້",
"Unable to revoke sharing for phone number": "ບໍ່ສາມາດຖອນການແບ່ງປັນສຳລັບເບີໂທລະສັບໄດ້", "Unable to revoke sharing for phone number": "ບໍ່ສາມາດຖອນການແບ່ງປັນສຳລັບເບີໂທລະສັບໄດ້",
"Discovery options will appear once you have added an email above.": "ຕົວເລືອກການຄົ້ນພົບຈະປາກົດຂຶ້ນເມື່ອທ່ານໄດ້ເພີ່ມອີເມວຂ້າງເທິງ.", "Discovery options will appear once you have added an email above.": "ຕົວເລືອກການຄົ້ນພົບຈະປາກົດຂຶ້ນເມື່ອທ່ານໄດ້ເພີ່ມອີເມວຂ້າງເທິງ.",
"Revoke": "ຖອນຄືນ",
"Complete": "ສໍາເລັດ",
"Verify the link in your inbox": "ຢືນຢັນການເຊື່ອມຕໍ່ໃນ inbox ຂອງທ່ານ", "Verify the link in your inbox": "ຢືນຢັນການເຊື່ອມຕໍ່ໃນ inbox ຂອງທ່ານ",
"Unable to verify email address.": "ບໍ່ສາມາດຢັ້ງຢືນທີ່ຢູ່ອີເມວໄດ້.", "Unable to verify email address.": "ບໍ່ສາມາດຢັ້ງຢືນທີ່ຢູ່ອີເມວໄດ້.",
"Click the link in the email you received to verify and then click continue again.": "ກົດທີ່ລິ້ງໃນອີເມວທີ່ທ່ານໄດ້ຮັບເພື່ອກວດສອບ ແລະ ຈາກນັ້ນກົດສືບຕໍ່ອີກຄັ້ງ.", "Click the link in the email you received to verify and then click continue again.": "ກົດທີ່ລິ້ງໃນອີເມວທີ່ທ່ານໄດ້ຮັບເພື່ອກວດສອບ ແລະ ຈາກນັ້ນກົດສືບຕໍ່ອີກຄັ້ງ.",
@ -487,9 +484,7 @@
"This room is not accessible by remote Matrix servers": "ຫ້ອງນີ້ບໍ່ສາມາດເຂົ້າເຖິງໄດ້ໂດຍເຊີບເວີ Matrix ໄລຍະໄກ", "This room is not accessible by remote Matrix servers": "ຫ້ອງນີ້ບໍ່ສາມາດເຂົ້າເຖິງໄດ້ໂດຍເຊີບເວີ Matrix ໄລຍະໄກ",
"Voice & Video": "ສຽງ & ວິດີໂອ", "Voice & Video": "ສຽງ & ວິດີໂອ",
"No Webcams detected": "ບໍ່ພົບ Webcam", "No Webcams detected": "ບໍ່ພົບ Webcam",
"Camera": "ກ້ອງຖ່າຍຮູບ",
"No Microphones detected": "ບໍ່ພົບໄມໂຄຣໂຟນ", "No Microphones detected": "ບໍ່ພົບໄມໂຄຣໂຟນ",
"Microphone": "ໄມໂຄຣໂຟນ",
"No Audio Outputs detected": "ບໍ່ພົບສຽງອອກ", "No Audio Outputs detected": "ບໍ່ພົບສຽງອອກ",
"Audio Output": "ສຽງອອກ", "Audio Output": "ສຽງອອກ",
"Request media permissions": "ຮ້ອງຂໍການອະນຸຍາດສື່ມວນຊົນ", "Request media permissions": "ຮ້ອງຂໍການອະນຸຍາດສື່ມວນຊົນ",
@ -507,7 +502,6 @@
"Spaces to show": "ພຶ້ນທີ່ຈະສະແດງ", "Spaces to show": "ພຶ້ນທີ່ຈະສະແດງ",
"Sidebar": "ແຖບດ້ານຂ້າງ", "Sidebar": "ແຖບດ້ານຂ້າງ",
"Share anonymous data to help us identify issues. Nothing personal. No third parties.": "ແບ່ງປັນຂໍ້ມູນທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍໃຫ້ພວກເຮົາລະບຸບັນຫາ. ບໍ່ມີຫຍັງເປັນສ່ວນຕົວ. ບໍ່ມີພາກສ່ວນທີສາມ.", "Share anonymous data to help us identify issues. Nothing personal. No third parties.": "ແບ່ງປັນຂໍ້ມູນທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍໃຫ້ພວກເຮົາລະບຸບັນຫາ. ບໍ່ມີຫຍັງເປັນສ່ວນຕົວ. ບໍ່ມີພາກສ່ວນທີສາມ.",
"Privacy": "ຄວາມເປັນສ່ວນຕົວ",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "ຜູ້ຄຸມເຊີບເວີຂອງທ່ານໄດ້ປິດການນຳໃຊ້ການເຂົ້າລະຫັດແບບຕົ້ນທາງຮອດປາຍທາງໂດຍຄ່າເລີ່ມຕົ້ນໃນຫ້ອງສ່ວນຕົວ ແລະ ຂໍ້ຄວາມໂດຍກົງ.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "ຜູ້ຄຸມເຊີບເວີຂອງທ່ານໄດ້ປິດການນຳໃຊ້ການເຂົ້າລະຫັດແບບຕົ້ນທາງຮອດປາຍທາງໂດຍຄ່າເລີ່ມຕົ້ນໃນຫ້ອງສ່ວນຕົວ ແລະ ຂໍ້ຄວາມໂດຍກົງ.",
"Cross-signing": "ການເຂົ້າລະຫັດແບບໄຂ້ວ", "Cross-signing": "ການເຂົ້າລະຫັດແບບໄຂ້ວ",
"Message search": "ຄົ້ນຫາຂໍ້ຄວາມ", "Message search": "ຄົ້ນຫາຂໍ້ຄວາມ",
@ -520,7 +514,6 @@
"Read Marker off-screen lifetime (ms)": "ອ່ານອາຍຸການໃຊ້ງານຂອງໜ້າຈໍ (ມິລິວິນາທີ)", "Read Marker off-screen lifetime (ms)": "ອ່ານອາຍຸການໃຊ້ງານຂອງໜ້າຈໍ (ມິລິວິນາທີ)",
"Read Marker lifetime (ms)": "ອ່ານອາຍຸ ການໃຊ້ງານຂອງເຄື່ອງຫມາຍ. (ມິນລິວິນາທີ)", "Read Marker lifetime (ms)": "ອ່ານອາຍຸ ການໃຊ້ງານຂອງເຄື່ອງຫມາຍ. (ມິນລິວິນາທີ)",
"Autocomplete delay (ms)": "ການຕື່ມຂໍ້ມູນອັດຕະໂນມັດຊັກຊ້າ (ms)", "Autocomplete delay (ms)": "ການຕື່ມຂໍ້ມູນອັດຕະໂນມັດຊັກຊ້າ (ms)",
"Timeline": "ທາມລາຍ",
"Images, GIFs and videos": "ຮູບພາບ, GIF ແລະ ວິດີໂອ", "Images, GIFs and videos": "ຮູບພາບ, GIF ແລະ ວິດີໂອ",
"Code blocks": "ບລັອກລະຫັດ", "Code blocks": "ບລັອກລະຫັດ",
"Composer": "ນັກປະພັນ", "Composer": "ນັກປະພັນ",
@ -528,12 +521,10 @@
"To view all keyboard shortcuts, <a>click here</a>.": "ເພື່ອເບິ່ງປຸ່ມລັດທັງໝົດ, <a>ຄລິກທີ່ນີ້</a>.", "To view all keyboard shortcuts, <a>click here</a>.": "ເພື່ອເບິ່ງປຸ່ມລັດທັງໝົດ, <a>ຄລິກທີ່ນີ້</a>.",
"Keyboard shortcuts": "ປຸ່ມລັດ", "Keyboard shortcuts": "ປຸ່ມລັດ",
"Room list": "ລາຍຊື່ຫ້ອງ", "Room list": "ລາຍຊື່ຫ້ອງ",
"Preferences": "ການຕັ້ງຄ່າ",
"Show tray icon and minimise window to it on close": "ສະແດງໄອຄອນ ແລະ ຫຍໍ້ຫນ້າຕ່າງໃຫ້ມັນຢູ່ໃກ້", "Show tray icon and minimise window to it on close": "ສະແດງໄອຄອນ ແລະ ຫຍໍ້ຫນ້າຕ່າງໃຫ້ມັນຢູ່ໃກ້",
"Always show the window menu bar": "ສະແດງແຖບເມນູໜ້າຕ່າງສະເໝີ", "Always show the window menu bar": "ສະແດງແຖບເມນູໜ້າຕ່າງສະເໝີ",
"Warn before quitting": "ເຕືອນກ່ອນຢຸດຕິ", "Warn before quitting": "ເຕືອນກ່ອນຢຸດຕິ",
"Start automatically after system login": "ເລີ່ມອັດຕະໂນມັດຫຼັງຈາກເຂົ້າສູ່ລະບົບ", "Start automatically after system login": "ເລີ່ມອັດຕະໂນມັດຫຼັງຈາກເຂົ້າສູ່ລະບົບ",
"Subscribe": "ຕິດຕາມ",
"Room ID or address of ban list": "IDຫ້ອງ ຫຼື ທີ່ຢູ່ຂອງລາຍການຫ້າມ", "Room ID or address of ban list": "IDຫ້ອງ ຫຼື ທີ່ຢູ່ຂອງລາຍການຫ້າມ",
"If this isn't what you want, please use a different tool to ignore users.": "ຖ້າສິ່ງນີ້ບໍ່ແມ່ນສິ່ງທີ່ທ່ານຕ້ອງການ, ກະລຸນາໃຊ້ເຄື່ອງມືອື່ນເພື່ອລະເວັ້ນຜູ້ໃຊ້.", "If this isn't what you want, please use a different tool to ignore users.": "ຖ້າສິ່ງນີ້ບໍ່ແມ່ນສິ່ງທີ່ທ່ານຕ້ອງການ, ກະລຸນາໃຊ້ເຄື່ອງມືອື່ນເພື່ອລະເວັ້ນຜູ້ໃຊ້.",
"Subscribed lists": "ລາຍຊື່ທີ່ສະໝັກແລ້ວ", "Subscribed lists": "ລາຍຊື່ທີ່ສະໝັກແລ້ວ",
@ -545,7 +536,6 @@
"Ignored users": "ຜູ້ໃຊ້ຖືກຍົກເວັ້ນ", "Ignored users": "ຜູ້ໃຊ້ຖືກຍົກເວັ້ນ",
"You are currently subscribed to:": "ປະຈຸບັນທ່ານສະໝັກໃຊ້:", "You are currently subscribed to:": "ປະຈຸບັນທ່ານສະໝັກໃຊ້:",
"View rules": "ເບິ່ງກົດລະບຽບ", "View rules": "ເບິ່ງກົດລະບຽບ",
"Unsubscribe": "ເຊົາຕິດຕາມ",
"You are not subscribed to any lists": "ເຈົ້າຍັງບໍ່ໄດ້ສະໝັກໃຊ້ລາຍການໃດໆ", "You are not subscribed to any lists": "ເຈົ້າຍັງບໍ່ໄດ້ສະໝັກໃຊ້ລາຍການໃດໆ",
"You are currently ignoring:": "ຕອນນີ້ທ່ານກຳລັງລະເລີຍ:", "You are currently ignoring:": "ຕອນນີ້ທ່ານກຳລັງລະເລີຍ:",
"You have not ignored anyone.": "ເຈົ້າຍັງບໍ່ໄດ້ລະເລີຍຜູ້ໃດຜູ້ໜຶ່ງ.", "You have not ignored anyone.": "ເຈົ້າຍັງບໍ່ໄດ້ລະເລີຍຜູ້ໃດຜູ້ໜຶ່ງ.",
@ -564,9 +554,7 @@
"Keyboard": "ແປ້ນພິມ", "Keyboard": "ແປ້ນພິມ",
"Clear cache and reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່", "Clear cache and reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່",
"Your access token gives full access to your account. Do not share it with anyone.": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.", "Your access token gives full access to your account. Do not share it with anyone.": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.",
"Access Token": "ເຂົ້າເຖິງToken",
"Versions": "ເວິຊັ້ນ", "Versions": "ເວິຊັ້ນ",
"FAQ": "ຄໍາຖາມທີ່ພົບເປັນປະຈໍາ",
"Cross-signing public keys:": "ກະແຈສາທາລະນະທີ່ມີ Cross-signing:", "Cross-signing public keys:": "ກະແຈສາທາລະນະທີ່ມີ Cross-signing:",
"Cross-signing is not set up.": "ບໍ່ໄດ້ຕັ້ງຄ່າ Cross-signing.", "Cross-signing is not set up.": "ບໍ່ໄດ້ຕັ້ງຄ່າ Cross-signing.",
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "ບັນຊີຂອງທ່ານມີຂໍ້ມູນແບບ cross-signing ໃນການເກັບຮັກສາຄວາມລັບ, ແຕ່ວ່າຍັງບໍ່ມີຄວາມເຊື່ອຖືໃນລະບົບນີ້.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "ບັນຊີຂອງທ່ານມີຂໍ້ມູນແບບ cross-signing ໃນການເກັບຮັກສາຄວາມລັບ, ແຕ່ວ່າຍັງບໍ່ມີຄວາມເຊື່ອຖືໃນລະບົບນີ້.",
@ -701,7 +689,6 @@
"Unable to start audio streaming.": "ບໍ່ສາມາດເລີ່ມການຖ່າຍທອດສຽງໄດ້.", "Unable to start audio streaming.": "ບໍ່ສາມາດເລີ່ມການຖ່າຍທອດສຽງໄດ້.",
"Thread options": "ຕົວເລືອກກະທູ້", "Thread options": "ຕົວເລືອກກະທູ້",
"Manage & explore rooms": "ຈັດການ ແລະ ສຳຫຼວດຫ້ອງ", "Manage & explore rooms": "ຈັດການ ແລະ ສຳຫຼວດຫ້ອງ",
"Space": "ຍະຫວ່າງ",
"See room timeline (devtools)": "ເບິ່ງທາມລາຍຫ້ອງ (devtools)", "See room timeline (devtools)": "ເບິ່ງທາມລາຍຫ້ອງ (devtools)",
"Mentions only": "ກ່າວເຖິງເທົ່ານັ້ນ", "Mentions only": "ກ່າວເຖິງເທົ່ານັ້ນ",
"Forget": "ລືມ", "Forget": "ລືມ",
@ -945,8 +932,6 @@
"What do you want to organise?": "ທ່ານຕ້ອງການຈັດບໍ?", "What do you want to organise?": "ທ່ານຕ້ອງການຈັດບໍ?",
"Skip for now": "ຂ້າມໄປດຽວນີ້", "Skip for now": "ຂ້າມໄປດຽວນີ້",
"Failed to create initial space rooms": "ການສ້າງພື້ນທີ່ຫ້ອງເບື້ອງຕົ້ນບໍ່ສຳເລັດ", "Failed to create initial space rooms": "ການສ້າງພື້ນທີ່ຫ້ອງເບື້ອງຕົ້ນບໍ່ສຳເລັດ",
"Support": "ສະຫນັບສະຫນູນ",
"Random": "ສຸ່ມ",
"Welcome to <name/>": "ຍິນດີຕ້ອນຮັບສູ່ <name/>", "Welcome to <name/>": "ຍິນດີຕ້ອນຮັບສູ່ <name/>",
"<inviter/> invites you": "<inviter/> ເຊີນທ່ານ", "<inviter/> invites you": "<inviter/> ເຊີນທ່ານ",
"Private space": "ພື້ນທີ່ສ່ວນຕົວ", "Private space": "ພື້ນທີ່ສ່ວນຕົວ",
@ -1252,7 +1237,6 @@
"Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "ການເກັບຮັກສາກະແຈຄວາມປອດໄພຂອງທ່ານໄວ້ບ່ອນໃດບ່ອນໜຶ່ງທີ່ປອດໄພ ເຊັ່ນ: ຕົວຈັດການລະຫັດຜ່ານ ຫຼືບ່ອນປອດໄພ ເພາະຈະຖືກໃຊ້ເພື່ອປົກປ້ອງຂໍ້ມູນທີ່ເຂົ້າລະຫັດໄວ້ຂອງທ່ານ.", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "ການເກັບຮັກສາກະແຈຄວາມປອດໄພຂອງທ່ານໄວ້ບ່ອນໃດບ່ອນໜຶ່ງທີ່ປອດໄພ ເຊັ່ນ: ຕົວຈັດການລະຫັດຜ່ານ ຫຼືບ່ອນປອດໄພ ເພາະຈະຖືກໃຊ້ເພື່ອປົກປ້ອງຂໍ້ມູນທີ່ເຂົ້າລະຫັດໄວ້ຂອງທ່ານ.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "ປັບປຸງລະບົບນີ້ເພື່ອໃຫ້ມັນກວດສອບລະບົບອື່ນ, ອະນຸຍາດໃຫ້ພວກເຂົາເຂົ້າເຖິງຂໍ້ຄວາມທີ່ຖືກເຂົ້າລະຫັດ ແລະເປັນເຄື່ອງໝາຍໃຫ້ເປັນທີ່ເຊື່ອຖືໄດ້ສໍາລັບຜູ້ໃຊ້ອື່ນ.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "ປັບປຸງລະບົບນີ້ເພື່ອໃຫ້ມັນກວດສອບລະບົບອື່ນ, ອະນຸຍາດໃຫ້ພວກເຂົາເຂົ້າເຖິງຂໍ້ຄວາມທີ່ຖືກເຂົ້າລະຫັດ ແລະເປັນເຄື່ອງໝາຍໃຫ້ເປັນທີ່ເຊື່ອຖືໄດ້ສໍາລັບຜູ້ໃຊ້ອື່ນ.",
"You'll need to authenticate with the server to confirm the upgrade.": "ທ່ານຈະຕ້ອງພິສູດຢືນຢັນກັບເຊີບເວີເພື່ອຢືນຢັນການປັບປຸງ.", "You'll need to authenticate with the server to confirm the upgrade.": "ທ່ານຈະຕ້ອງພິສູດຢືນຢັນກັບເຊີບເວີເພື່ອຢືນຢັນການປັບປຸງ.",
"Restore": "ກູ້ຄືນ",
"Restore your key backup to upgrade your encryption": "ກູ້ຄືນການສຳຮອງຂໍ້ມູນກະແຈຂອງທ່ານເພື່ອຍົກລະດັບການເຂົ້າລະຫັດຂອງທ່ານ", "Restore your key backup to upgrade your encryption": "ກູ້ຄືນການສຳຮອງຂໍ້ມູນກະແຈຂອງທ່ານເພື່ອຍົກລະດັບການເຂົ້າລະຫັດຂອງທ່ານ",
"Enter your account password to confirm the upgrade:": "ໃສ່ລະຫັດຜ່ານບັນຊີຂອງທ່ານເພື່ອຢືນຢັນການຍົກລະດັບ:", "Enter your account password to confirm the upgrade:": "ໃສ່ລະຫັດຜ່ານບັນຊີຂອງທ່ານເພື່ອຢືນຢັນການຍົກລະດັບ:",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "ປ້ອງກັນການສູນເສຍການເຂົ້າເຖິງຂໍ້ຄວາມ & ຂໍ້ມູນທີ່ຖືກເຂົ້າລະຫັດໂດຍການສໍາຮອງລະຫັດການເຂົ້າລະຫັດຢູ່ໃນເຊີບເວີຂອງທ່ານ.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "ປ້ອງກັນການສູນເສຍການເຂົ້າເຖິງຂໍ້ຄວາມ & ຂໍ້ມູນທີ່ຖືກເຂົ້າລະຫັດໂດຍການສໍາຮອງລະຫັດການເຂົ້າລະຫັດຢູ່ໃນເຊີບເວີຂອງທ່ານ.",
@ -1589,7 +1573,6 @@
"other": "ຈັດເກັບຂໍ້ຄວາມທີ່ຖືກເຂົ້າລະຫັດໄວ້ຢ່າງປອດໄພຢູ່ໃນເຄື່ອງເພື່ອໃຫ້ປາກົດໃນຜົນການຊອກຫາ, ໂດຍໃຊ້ %(size)s ເພື່ອເກັບຂໍ້ຄວາມຈາກ %(rooms)s ຫ້ອງ." "other": "ຈັດເກັບຂໍ້ຄວາມທີ່ຖືກເຂົ້າລະຫັດໄວ້ຢ່າງປອດໄພຢູ່ໃນເຄື່ອງເພື່ອໃຫ້ປາກົດໃນຜົນການຊອກຫາ, ໂດຍໃຊ້ %(size)s ເພື່ອເກັບຂໍ້ຄວາມຈາກ %(rooms)s ຫ້ອງ."
}, },
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "ຢືນຢັນແຕ່ລະລະບົບທີ່ໃຊ້ໂດຍຜູ້ໃຊ້ເພື່ອໝາຍວ່າເປັນທີ່ໜ້າເຊື່ອຖືໄດ້, ບໍ່ໄວ້ໃຈອຸປະກອນທີ່ cross-signed.", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "ຢືນຢັນແຕ່ລະລະບົບທີ່ໃຊ້ໂດຍຜູ້ໃຊ້ເພື່ອໝາຍວ່າເປັນທີ່ໜ້າເຊື່ອຖືໄດ້, ບໍ່ໄວ້ໃຈອຸປະກອນທີ່ cross-signed.",
"Rename": "ປ່ຽນຊື່",
"Display Name": "ຊື່ສະແດງ", "Display Name": "ຊື່ສະແດງ",
"Failed to set display name": "ກຳນົດການສະເເດງຊື່ບໍ່ສຳເລັດ", "Failed to set display name": "ກຳນົດການສະເເດງຊື່ບໍ່ສຳເລັດ",
"Reset event store": "ກູ້ຄືນທີ່ຈັດເກັບ", "Reset event store": "ກູ້ຄືນທີ່ຈັດເກັບ",
@ -1610,15 +1593,12 @@
"You must <a>register</a> to use this functionality": "ທ່ານຕ້ອງ <a>ລົງທະບຽນ</a> ເພື່ອໃຊ້ຟັງຊັນນີ້", "You must <a>register</a> to use this functionality": "ທ່ານຕ້ອງ <a>ລົງທະບຽນ</a> ເພື່ອໃຊ້ຟັງຊັນນີ້",
"Drop file here to upload": "ວາງໄຟລ໌ໄວ້ບ່ອນນີ້ເພື່ອອັບໂຫລດ", "Drop file here to upload": "ວາງໄຟລ໌ໄວ້ບ່ອນນີ້ເພື່ອອັບໂຫລດ",
"Couldn't load page": "ບໍ່ສາມາດໂຫຼດໜ້າໄດ້", "Couldn't load page": "ບໍ່ສາມາດໂຫຼດໜ້າໄດ້",
"Play": "ຫຼິ້ນ",
"Pause": "ຢຸດຊົ່ວຄາວ",
"Error downloading audio": "ເກີດຄວາມຜິດພາດໃນການດາວໂຫຼດສຽງ", "Error downloading audio": "ເກີດຄວາມຜິດພາດໃນການດາວໂຫຼດສຽງ",
"Unnamed audio": "ສຽງບໍ່ມີຊື່", "Unnamed audio": "ສຽງບໍ່ມີຊື່",
"Sign in with SSO": "ເຂົ້າສູ່ລະບົບດ້ວຍປະຕຸດຽວ ( SSO)", "Sign in with SSO": "ເຂົ້າສູ່ລະບົບດ້ວຍປະຕຸດຽວ ( SSO)",
"Use email to optionally be discoverable by existing contacts.": "ໃຊ້ອີເມລ໌ເພື່ອເປັນທາງເລືອກໃຫ້ຜູ້ຕິດຕໍ່ທີ່ມີຢູ່ແລ້ວສາມາດຄົ້ນຫາໄດ້.", "Use email to optionally be discoverable by existing contacts.": "ໃຊ້ອີເມລ໌ເພື່ອເປັນທາງເລືອກໃຫ້ຜູ້ຕິດຕໍ່ທີ່ມີຢູ່ແລ້ວສາມາດຄົ້ນຫາໄດ້.",
"Use email or phone to optionally be discoverable by existing contacts.": "ໃຊ້ອີເມລ໌ ຫຼື ໂທລະສັບເພື່ອຜູ້ຕິດຕໍ່ທີ່ມີຢູ່ແລ້ວຄົ້ນຫາໄດ້.", "Use email or phone to optionally be discoverable by existing contacts.": "ໃຊ້ອີເມລ໌ ຫຼື ໂທລະສັບເພື່ອຜູ້ຕິດຕໍ່ທີ່ມີຢູ່ແລ້ວຄົ້ນຫາໄດ້.",
"Add an email to be able to reset your password.": "ເພີ່ມອີເມວເພື່ອສາມາດກູ້ຄືນລະຫັດຜ່ານຂອງທ່ານໄດ້.", "Add an email to be able to reset your password.": "ເພີ່ມອີເມວເພື່ອສາມາດກູ້ຄືນລະຫັດຜ່ານຂອງທ່ານໄດ້.",
"Register": "ລົງທະບຽນ",
"Phone (optional)": "ໂທລະສັບ (ທາງເລືອກ)", "Phone (optional)": "ໂທລະສັບ (ທາງເລືອກ)",
"Someone already has that username. Try another or if it is you, sign in below.": "ບາງຄົນມີຊື່ຜູ້ໃຊ້ນັ້ນແລ້ວ. ລອງທາງອື່ນ ຫຼື ຖ້າມັນແມ່ນຕົວເຈົ້າ, ເຂົ້າສູ່ລະບົບຂ້າງລຸ່ມນີ້.", "Someone already has that username. Try another or if it is you, sign in below.": "ບາງຄົນມີຊື່ຜູ້ໃຊ້ນັ້ນແລ້ວ. ລອງທາງອື່ນ ຫຼື ຖ້າມັນແມ່ນຕົວເຈົ້າ, ເຂົ້າສູ່ລະບົບຂ້າງລຸ່ມນີ້.",
"Unable to check if username has been taken. Try again later.": "ບໍ່ສາມາດກວດສອບໄດ້ວ່າຊື່ຜູ້ໃຊ້ໄດ້ຖືກນຳໄປໃຊ້. ລອງໃໝ່ໃນພາຍຫຼັງ.", "Unable to check if username has been taken. Try again later.": "ບໍ່ສາມາດກວດສອບໄດ້ວ່າຊື່ຜູ້ໃຊ້ໄດ້ຖືກນຳໄປໃຊ້. ລອງໃໝ່ໃນພາຍຫຼັງ.",
@ -1724,7 +1704,6 @@
"Allow this widget to verify your identity": "ອະນຸຍາດໃຫ້ widget ນີ້ຢືນຢັນຕົວຕົນຂອງທ່ານ", "Allow this widget to verify your identity": "ອະນຸຍາດໃຫ້ widget ນີ້ຢືນຢັນຕົວຕົນຂອງທ່ານ",
"Remember my selection for this widget": "ຈື່ການເລືອກຂອງຂ້ອຍສໍາລັບ widget ນີ້", "Remember my selection for this widget": "ຈື່ການເລືອກຂອງຂ້ອຍສໍາລັບ widget ນີ້",
"Decline All": "ປະຕິເສດທັງໝົດ", "Decline All": "ປະຕິເສດທັງໝົດ",
"Approve": "ອະນຸມັດ",
"This widget would like to:": "widget ນີ້ຕ້ອງການ:", "This widget would like to:": "widget ນີ້ຕ້ອງການ:",
"Approve widget permissions": "ອະນຸມັດການອະນຸຍາດ widget", "Approve widget permissions": "ອະນຸມັດການອະນຸຍາດ widget",
"Verification Request": "ການຮ້ອງຂໍການຢັ້ງຢືນ", "Verification Request": "ການຮ້ອງຂໍການຢັ້ງຢືນ",
@ -2264,7 +2243,6 @@
"Message deleted on %(date)s": "ຂໍ້ຄວາມຖືກລຶບເມື່ອ %(date)s", "Message deleted on %(date)s": "ຂໍ້ຄວາມຖືກລຶບເມື່ອ %(date)s",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>ປະຕິກິລິຍາດ້ວຍ %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>ປະຕິກິລິຍາດ້ວຍ %(shortName)s</reactedWith>",
"%(reactors)s reacted with %(content)s": "%(reactors)sປະຕິກິລິຍາກັບ %(content)s", "%(reactors)s reacted with %(content)s": "%(reactors)sປະຕິກິລິຍາກັບ %(content)s",
"Show all": "ສະແດງທັງໝົດ",
"Add reaction": "ເພີ່ມການຕອບໂຕ້", "Add reaction": "ເພີ່ມການຕອບໂຕ້",
"Error processing voice message": "ການປະມວນຜົນຂໍ້ຄວາມສຽງຜິດພາດ", "Error processing voice message": "ການປະມວນຜົນຂໍ້ຄວາມສຽງຜິດພາດ",
"Error decrypting video": "ການຖອດລະຫັດວິດີໂອຜິດພາດ", "Error decrypting video": "ການຖອດລະຫັດວິດີໂອຜິດພາດ",
@ -2309,7 +2287,6 @@
"Please contact your homeserver administrator.": "ກະລຸນາຕິດຕໍ່ຜູ້ຄຸ້ມຄອງເຊີບເວີຂອງທ່ານ.", "Please contact your homeserver administrator.": "ກະລຸນາຕິດຕໍ່ຜູ້ຄຸ້ມຄອງເຊີບເວີຂອງທ່ານ.",
"Sorry, your homeserver is too old to participate here.": "ຂໍອະໄພ, homeserverຂອງທ່ານເກົ່າເກີນໄປທີ່ຈະເຂົ້າຮ່ວມທີ່ນີ້.", "Sorry, your homeserver is too old to participate here.": "ຂໍອະໄພ, homeserverຂອງທ່ານເກົ່າເກີນໄປທີ່ຈະເຂົ້າຮ່ວມທີ່ນີ້.",
"There was an error joining.": "ເກີດຄວາມຜິດພາດໃນການເຂົ້າຮ່ວມ.", "There was an error joining.": "ເກີດຄວາມຜິດພາດໃນການເຂົ້າຮ່ວມ.",
"Guest": "ແຂກ",
"New version of %(brand)s is available": "ເວີຊັນໃໝ່ຂອງ %(brand)s ພ້ອມໃຊ້ງານ", "New version of %(brand)s is available": "ເວີຊັນໃໝ່ຂອງ %(brand)s ພ້ອມໃຊ້ງານ",
"Update %(brand)s": "ອັບເດດ %(brand)s", "Update %(brand)s": "ອັບເດດ %(brand)s",
"What's New": "ມີຫຍັງໃຫມ່", "What's New": "ມີຫຍັງໃຫມ່",
@ -2337,7 +2314,6 @@
"Notifications": "ການແຈ້ງເຕືອນ", "Notifications": "ການແຈ້ງເຕືອນ",
"Don't miss a reply": "ຢ່າພາດການຕອບກັບ", "Don't miss a reply": "ຢ່າພາດການຕອບກັບ",
"Later": "ຕໍ່ມາ", "Later": "ຕໍ່ມາ",
"Review": "ທົບທວນຄືນ",
"Review to ensure your account is safe": "ກວດສອບໃຫ້ແນ່ໃຈວ່າບັນຊີຂອງທ່ານປອດໄພ", "Review to ensure your account is safe": "ກວດສອບໃຫ້ແນ່ໃຈວ່າບັນຊີຂອງທ່ານປອດໄພ",
"Share anonymous data to help us identify issues. Nothing personal. No third parties. <LearnMoreLink>Learn More</LearnMoreLink>": "ແບ່ງປັນຂໍ້ມູນທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍພວກເຮົາລະບຸບັນຫາ. ບໍ່ມີຫຍັງສ່ວນຕົວ. ບໍ່ມີຄົນທີສາມ. <LearnMoreLink>ສຶກສາເພີ່ມເຕີມ</LearnMoreLink>", "Share anonymous data to help us identify issues. Nothing personal. No third parties. <LearnMoreLink>Learn More</LearnMoreLink>": "ແບ່ງປັນຂໍ້ມູນທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍພວກເຮົາລະບຸບັນຫາ. ບໍ່ມີຫຍັງສ່ວນຕົວ. ບໍ່ມີຄົນທີສາມ. <LearnMoreLink>ສຶກສາເພີ່ມເຕີມ</LearnMoreLink>",
"You previously consented to share anonymous usage data with us. We're updating how that works.": "ກ່ອນໜ້ານີ້ທ່ານໄດ້ຍິນຍອມທີ່ຈະແບ່ງປັນຂໍ້ມູນການນຳໃຊ້ທີ່ບໍ່ເປີດເຜີຍຊື່ກັບພວກເຮົາ. ພວກເຮົາກຳລັງອັບເດດວິທີການເຮັດວຽກນັ້ນ.", "You previously consented to share anonymous usage data with us. We're updating how that works.": "ກ່ອນໜ້ານີ້ທ່ານໄດ້ຍິນຍອມທີ່ຈະແບ່ງປັນຂໍ້ມູນການນຳໃຊ້ທີ່ບໍ່ເປີດເຜີຍຊື່ກັບພວກເຮົາ. ພວກເຮົາກຳລັງອັບເດດວິທີການເຮັດວຽກນັ້ນ.",
@ -2735,7 +2711,6 @@
"Manage integrations": "ຈັດການການເຊື່ອມໂຍງ", "Manage integrations": "ຈັດການການເຊື່ອມໂຍງ",
"Use an integration manager to manage bots, widgets, and sticker packs.": "ໃຊ້ຕົວຈັດການການເຊື່ອມໂຍງເພື່ອຈັດການ bots, widget, ແລະຊຸດສະຕິກເກີ.", "Use an integration manager to manage bots, widgets, and sticker packs.": "ໃຊ້ຕົວຈັດການການເຊື່ອມໂຍງເພື່ອຈັດການ bots, widget, ແລະຊຸດສະຕິກເກີ.",
"Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "ໃຊ້ຕົວຈັດການການເຊື່ອມໂຍງ <b>(%(serverName)s)</b> ເພື່ອຈັດການບັອດ, widgets, ແລະ ຊຸດສະຕິກເກີ.", "Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "ໃຊ້ຕົວຈັດການການເຊື່ອມໂຍງ <b>(%(serverName)s)</b> ເພື່ອຈັດການບັອດ, widgets, ແລະ ຊຸດສະຕິກເກີ.",
"Change": "ປ່ຽນແປງ",
"Enter a new identity server": "ໃສ່ເຊີບເວີໃໝ່", "Enter a new identity server": "ໃສ່ເຊີບເວີໃໝ່",
"Do not use an identity server": "ກະລຸນນາຢ່າໃຊ້ເຊີບເວີລະບຸຕົວຕົນ", "Do not use an identity server": "ກະລຸນນາຢ່າໃຊ້ເຊີບເວີລະບຸຕົວຕົນ",
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "ການນໍາໃຊ້ຕົວເຊີບເວີເປັນທາງເລືອກ. ຖ້າທ່ານເລືອກທີ່ຈະບໍ່ໃຊ້ຕົວເຊີບເວີ, ທ່ານຈະບໍ່ຖືກຄົ້ນພົບໂດຍຜູ້ໃຊ້ອື່ນ ແລະ ທ່ານຈະບໍ່ສາມາດເຊີນຜູ້ອື່ນໂດຍອີເມລ໌ຫຼືໂທລະສັບ.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "ການນໍາໃຊ້ຕົວເຊີບເວີເປັນທາງເລືອກ. ຖ້າທ່ານເລືອກທີ່ຈະບໍ່ໃຊ້ຕົວເຊີບເວີ, ທ່ານຈະບໍ່ຖືກຄົ້ນພົບໂດຍຜູ້ໃຊ້ອື່ນ ແລະ ທ່ານຈະບໍ່ສາມາດເຊີນຜູ້ອື່ນໂດຍອີເມລ໌ຫຼືໂທລະສັບ.",
@ -2761,7 +2736,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ກວດເບິ່ງ plugins ຂອງບ່ໜາວເຊີຂອງທ່ານສໍາລັບສິ່ງໃດແດ່ທີ່ອາດຈະກີດກັ້ນເຊີບເວີ (ເຊັ່ນ: ຄວາມເປັນສ່ວນຕົວ Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "ກວດເບິ່ງ plugins ຂອງບ່ໜາວເຊີຂອງທ່ານສໍາລັບສິ່ງໃດແດ່ທີ່ອາດຈະກີດກັ້ນເຊີບເວີ (ເຊັ່ນ: ຄວາມເປັນສ່ວນຕົວ Badger)",
"You should:": "ທ່ານຄວນ:", "You should:": "ທ່ານຄວນ:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "ທ່ານຄວນ <b>ລຶບຂໍ້ມູນສ່ວນຕົວຂອງທ່ານ</b> ອອກຈາກເຊີບເວີ <idserver /> ກ່ອນທີ່ຈະຕັດການເຊື່ອມຕໍ່. ຂໍອະໄພ, ເຊີບເວີ <idserver /> ຢູ່ໃນຂະນະອອບລາຍຢູ່ ຫຼືບໍ່ສາມາດຕິດຕໍ່ໄດ້.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "ທ່ານຄວນ <b>ລຶບຂໍ້ມູນສ່ວນຕົວຂອງທ່ານ</b> ອອກຈາກເຊີບເວີ <idserver /> ກ່ອນທີ່ຈະຕັດການເຊື່ອມຕໍ່. ຂໍອະໄພ, ເຊີບເວີ <idserver /> ຢູ່ໃນຂະນະອອບລາຍຢູ່ ຫຼືບໍ່ສາມາດຕິດຕໍ່ໄດ້.",
"Disconnect": "ຕັດການເຊື່ອມຕໍ່",
"Disconnect from the identity server <idserver />?": "ຕັດການເຊື່ອມຕໍ່ຈາກເຊີບເວີ <idserver />?", "Disconnect from the identity server <idserver />?": "ຕັດການເຊື່ອມຕໍ່ຈາກເຊີບເວີ <idserver />?",
"Disconnect identity server": "ຕັດການເຊື່ອມຕໍ່ເຊີບເວີ", "Disconnect identity server": "ຕັດການເຊື່ອມຕໍ່ເຊີບເວີ",
"The identity server you have chosen does not have any terms of service.": "ເຊີບທີ່ທ່ານເລືອກບໍ່ມີເງື່ອນໄຂການບໍລິການໃດໆ.", "The identity server you have chosen does not have any terms of service.": "ເຊີບທີ່ທ່ານເລືອກບໍ່ມີເງື່ອນໄຂການບໍລິການໃດໆ.",
@ -2941,8 +2915,6 @@
"Chat with %(brand)s Bot": "ສົນທະນາກັບ %(brand)s Bot", "Chat with %(brand)s Bot": "ສົນທະນາກັບ %(brand)s Bot",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ <a>ທີ່ນີ້</a> ຫຼືເລີ່ມການສົນທະນາກັບ bot ຂອງພວກເຮົາໂດຍໃຊ້ປຸ່ມຂ້າງລຸ່ມນີ້.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ <a>ທີ່ນີ້</a> ຫຼືເລີ່ມການສົນທະນາກັບ bot ຂອງພວກເຮົາໂດຍໃຊ້ປຸ່ມຂ້າງລຸ່ມນີ້.",
"For help with using %(brand)s, click <a>here</a>.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ <a>ທີ່ນີ້</a>.", "For help with using %(brand)s, click <a>here</a>.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ <a>ທີ່ນີ້</a>.",
"Credits": "ສິນເຊື່ອ",
"Legal": "ຖືກກົດໝາຍ",
"Clear all data in this session?": "ລຶບລ້າງຂໍ້ມູນທັງໝົດໃນລະບົບນີ້ບໍ?", "Clear all data in this session?": "ລຶບລ້າງຂໍ້ມູນທັງໝົດໃນລະບົບນີ້ບໍ?",
"Reason (optional)": "ເຫດຜົນ (ທາງເລືອກ)", "Reason (optional)": "ເຫດຜົນ (ທາງເລືອກ)",
"Confirm Removal": "ຢືນຢັນການລຶບອອກ", "Confirm Removal": "ຢືນຢັນການລຶບອອກ",
@ -2983,7 +2955,6 @@
}, },
"Scroll to most recent messages": "ເລື່ອນໄປຫາຂໍ້ຄວາມຫຼ້າສຸດ", "Scroll to most recent messages": "ເລື່ອນໄປຫາຂໍ້ຄວາມຫຼ້າສຸດ",
"You can't see earlier messages": "ທ່ານບໍ່ສາມາດເຫັນຂໍ້ຄວາມກ່ອນໜ້ານີ້", "You can't see earlier messages": "ທ່ານບໍ່ສາມາດເຫັນຂໍ້ຄວາມກ່ອນໜ້ານີ້",
"Mod": "ກາປັບປ່ຽນ",
"Once enabled, encryption for a room cannot be disabled. Messages sent in an encrypted room cannot be seen by the server, only by the participants of the room. Enabling encryption may prevent many bots and bridges from working correctly. <a>Learn more about encryption.</a>": "ເມື່ອເປີດໃຊ້ແລ້ວ, ການເຂົ້າລະຫັດລັບຂອງຫ້ອງບໍ່ສາມາດປິດໃຊ້ງານໄດ້. ຂໍ້ຄວາມທີ່ສົ່ງຢູ່ໃນຫ້ອງທີ່ເຂົ້າລະຫັດບໍ່ສາມາດເຫັນໄດ້ໂດຍເຊີບເວີ, ສະເພາະແຕ່ຜູ້ເຂົ້າຮ່ວມຂອງຫ້ອງເທົ່ານັ້ນ. ການເປີດໃຊ້ການເຂົ້າລະຫັດອາດຈະເຮັດໃຫ້ bots ແລະ bridges ຈໍານວນຫຼາຍເຮັດວຽກບໍ່ຖືກຕ້ອງ. <a>ສຶກສາເພີ່ມເຕີມກ່ຽວກັບການເຂົ້າລະຫັດ.</a>", "Once enabled, encryption for a room cannot be disabled. Messages sent in an encrypted room cannot be seen by the server, only by the participants of the room. Enabling encryption may prevent many bots and bridges from working correctly. <a>Learn more about encryption.</a>": "ເມື່ອເປີດໃຊ້ແລ້ວ, ການເຂົ້າລະຫັດລັບຂອງຫ້ອງບໍ່ສາມາດປິດໃຊ້ງານໄດ້. ຂໍ້ຄວາມທີ່ສົ່ງຢູ່ໃນຫ້ອງທີ່ເຂົ້າລະຫັດບໍ່ສາມາດເຫັນໄດ້ໂດຍເຊີບເວີ, ສະເພາະແຕ່ຜູ້ເຂົ້າຮ່ວມຂອງຫ້ອງເທົ່ານັ້ນ. ການເປີດໃຊ້ການເຂົ້າລະຫັດອາດຈະເຮັດໃຫ້ bots ແລະ bridges ຈໍານວນຫຼາຍເຮັດວຽກບໍ່ຖືກຕ້ອງ. <a>ສຶກສາເພີ່ມເຕີມກ່ຽວກັບການເຂົ້າລະຫັດ.</a>",
"Enable encryption?": "ເປີດໃຊ້ງານການເຂົ້າລະຫັດບໍ?", "Enable encryption?": "ເປີດໃຊ້ງານການເຂົ້າລະຫັດບໍ?",
"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 encrypted room</a> for the conversation you plan to have.": "ເພື່ອຫຼີກລ້ຽງບັນຫາເຫຼົ່ານີ້, ສ້າງ <a>ຫ້ອງເຂົ້າລະຫັດໃຫມ່</a> ສໍາລັບການສົນທະນາທີ່ທ່ານວາງແຜນຈະມີ.",
@ -3104,7 +3075,6 @@
"You do not have permission to start polls in this room.": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເລີ່ມແບບສຳຫຼວດຢູ່ໃນຫ້ອງນີ້.", "You do not have permission to start polls in this room.": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເລີ່ມແບບສຳຫຼວດຢູ່ໃນຫ້ອງນີ້.",
"Voice Message": "ຂໍ້ຄວາມສຽງ", "Voice Message": "ຂໍ້ຄວາມສຽງ",
"Hide stickers": "ເຊື່ອງສະຕິກເກີ", "Hide stickers": "ເຊື່ອງສະຕິກເກີ",
"Emoji": "ອີໂມຈິ",
"Send voice message": "ສົ່ງຂໍ້ຄວາມສຽງ", "Send voice message": "ສົ່ງຂໍ້ຄວາມສຽງ",
"You do not have permission to post to this room": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ໂພສໃສ່ຫ້ອງນີ້", "You do not have permission to post to this room": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ໂພສໃສ່ຫ້ອງນີ້",
"This room has been replaced and is no longer active.": "ຫ້ອງນີ້ໄດ້ໍປ່ຽນແທນ ແລະບໍ່ມີການເຄື່ອນໄຫວອີກຕໍ່ໄປ.", "This room has been replaced and is no longer active.": "ຫ້ອງນີ້ໄດ້ໍປ່ຽນແທນ ແລະບໍ່ມີການເຄື່ອນໄຫວອີກຕໍ່ໄປ.",
@ -3197,7 +3167,21 @@
"dark": "ມືດ", "dark": "ມືດ",
"beta": "ເບຕ້າ", "beta": "ເບຕ້າ",
"attachment": "ຄັດຕິດ", "attachment": "ຄັດຕິດ",
"appearance": "ຮູບລັກສະນະ" "appearance": "ຮູບລັກສະນະ",
"guest": "ແຂກ",
"legal": "ຖືກກົດໝາຍ",
"credits": "ສິນເຊື່ອ",
"faq": "ຄໍາຖາມທີ່ພົບເປັນປະຈໍາ",
"access_token": "ເຂົ້າເຖິງToken",
"preferences": "ການຕັ້ງຄ່າ",
"timeline": "ທາມລາຍ",
"privacy": "ຄວາມເປັນສ່ວນຕົວ",
"camera": "ກ້ອງຖ່າຍຮູບ",
"microphone": "ໄມໂຄຣໂຟນ",
"emoji": "ອີໂມຈິ",
"random": "ສຸ່ມ",
"support": "ສະຫນັບສະຫນູນ",
"space": "ຍະຫວ່າງ"
}, },
"action": { "action": {
"continue": "ສືບຕໍ່", "continue": "ສືບຕໍ່",
@ -3267,7 +3251,21 @@
"call": "ໂທ", "call": "ໂທ",
"back": "ກັບຄືນ", "back": "ກັບຄືນ",
"add": "ຕື່ມ", "add": "ຕື່ມ",
"accept": "ຍອມຮັບ" "accept": "ຍອມຮັບ",
"disconnect": "ຕັດການເຊື່ອມຕໍ່",
"change": "ປ່ຽນແປງ",
"subscribe": "ຕິດຕາມ",
"unsubscribe": "ເຊົາຕິດຕາມ",
"approve": "ອະນຸມັດ",
"complete": "ສໍາເລັດ",
"revoke": "ຖອນຄືນ",
"rename": "ປ່ຽນຊື່",
"show_all": "ສະແດງທັງໝົດ",
"review": "ທົບທວນຄືນ",
"restore": "ກູ້ຄືນ",
"play": "ຫຼິ້ນ",
"pause": "ຢຸດຊົ່ວຄາວ",
"register": "ລົງທະບຽນ"
}, },
"a11y": { "a11y": {
"user_menu": "ເມນູຜູ້ໃຊ້" "user_menu": "ເມນູຜູ້ໃຊ້"
@ -3308,7 +3306,9 @@
"default": "ຄ່າເລີ່ມຕົ້ນ", "default": "ຄ່າເລີ່ມຕົ້ນ",
"restricted": "ຖືກຈຳກັດ", "restricted": "ຖືກຈຳກັດ",
"moderator": "ຜູ້ດຳເນິນລາຍການ", "moderator": "ຜູ້ດຳເນິນລາຍການ",
"admin": "ບໍລິຫານ" "admin": "ບໍລິຫານ",
"custom": "ກຳນົດ(%(level)s)ເອງ",
"mod": "ກາປັບປ່ຽນ"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "ຖ້າທ່ານໄດ້ສົ່ງຂໍ້ບົກພ່ອງຜ່ານ GitHub, ບັນທຶກການຂໍ້ຜິດພາດສາມາດຊ່ວຍພວກເຮົາຕິດຕາມບັນຫາໄດ້. ", "introduction": "ຖ້າທ່ານໄດ້ສົ່ງຂໍ້ບົກພ່ອງຜ່ານ GitHub, ບັນທຶກການຂໍ້ຜິດພາດສາມາດຊ່ວຍພວກເຮົາຕິດຕາມບັນຫາໄດ້. ",

View file

@ -53,7 +53,6 @@
"Yesterday": "Vakar", "Yesterday": "Vakar",
"Error encountered (%(errorDetail)s).": "Susidurta su klaida (%(errorDetail)s).", "Error encountered (%(errorDetail)s).": "Susidurta su klaida (%(errorDetail)s).",
"Low Priority": "Žemo prioriteto", "Low Priority": "Žemo prioriteto",
"Register": "Registruotis",
"Off": "Išjungta", "Off": "Išjungta",
"Event Type": "Įvykio tipas", "Event Type": "Įvykio tipas",
"Developer Tools": "Programuotojo Įrankiai", "Developer Tools": "Programuotojo Įrankiai",
@ -185,8 +184,6 @@
"No Webcams detected": "Neaptikta jokių kamerų", "No Webcams detected": "Neaptikta jokių kamerų",
"Default Device": "Numatytasis įrenginys", "Default Device": "Numatytasis įrenginys",
"Audio Output": "Garso išvestis", "Audio Output": "Garso išvestis",
"Microphone": "Mikrofonas",
"Camera": "Kamera",
"Email": "El. paštas", "Email": "El. paštas",
"Profile": "Profilis", "Profile": "Profilis",
"Account": "Paskyra", "Account": "Paskyra",
@ -503,7 +500,6 @@
"Enter username": "Įveskite vartotojo vardą", "Enter username": "Įveskite vartotojo vardą",
"Create account": "Sukurti paskyrą", "Create account": "Sukurti paskyrą",
"Change identity server": "Pakeisti tapatybės serverį", "Change identity server": "Pakeisti tapatybės serverį",
"Change": "Keisti",
"Change room avatar": "Keisti kambario pseudoportretą", "Change room avatar": "Keisti kambario pseudoportretą",
"Change room name": "Keisti kambario pavadinimą", "Change room name": "Keisti kambario pavadinimą",
"Change main address for the room": "Keisti pagrindinį kambario adresą", "Change main address for the room": "Keisti pagrindinį kambario adresą",
@ -663,7 +659,6 @@
"Homeserver URL does not appear to be a valid Matrix homeserver": "Serverio adresas neatrodo esantis tinkamas Matrix serveris", "Homeserver URL does not appear to be a valid Matrix homeserver": "Serverio adresas neatrodo esantis tinkamas Matrix serveris",
"This homeserver does not support login using email address.": "Šis serveris nepalaiko prisijungimo naudojant el. pašto adresą.", "This homeserver does not support login using email address.": "Šis serveris nepalaiko prisijungimo naudojant el. pašto adresą.",
"Setting up keys": "Raktų nustatymas", "Setting up keys": "Raktų nustatymas",
"Review": "Peržiūrėti",
"Message deleted": "Žinutė ištrinta", "Message deleted": "Žinutė ištrinta",
"Message deleted by %(name)s": "Žinutė, ištrinta %(name)s", "Message deleted by %(name)s": "Žinutė, ištrinta %(name)s",
"Confirm your identity by entering your account password below.": "Patvirtinkite savo tapatybę žemiau įvesdami savo paskyros slaptažodį.", "Confirm your identity by entering your account password below.": "Patvirtinkite savo tapatybę žemiau įvesdami savo paskyros slaptažodį.",
@ -688,7 +683,6 @@
"Messages containing @room": "Žinutės, kuriose yra @kambarys", "Messages containing @room": "Žinutės, kuriose yra @kambarys",
"To be secure, do this in person or use a trusted way to communicate.": "Norėdami užtikrinti saugumą, darykite tai asmeniškai arba naudokite patikimą komunikacijos būdą.", "To be secure, do this in person or use a trusted way to communicate.": "Norėdami užtikrinti saugumą, darykite tai asmeniškai arba naudokite patikimą komunikacijos būdą.",
"Restore from Backup": "Atkurti iš Atsarginės Kopijos", "Restore from Backup": "Atkurti iš Atsarginės Kopijos",
"Preferences": "Nuostatos",
"Cryptography": "Kriptografija", "Cryptography": "Kriptografija",
"Security & Privacy": "Saugumas ir Privatumas", "Security & Privacy": "Saugumas ir Privatumas",
"Voice & Video": "Garsas ir Vaizdas", "Voice & Video": "Garsas ir Vaizdas",
@ -919,7 +913,6 @@
"Create a new room with the same name, description and avatar": "Sukurti naują kambarį su tuo pačiu pavadinimu, aprašymu ir pseudoportretu", "Create a new room with the same name, description and avatar": "Sukurti naują kambarį su tuo pačiu pavadinimu, aprašymu ir pseudoportretu",
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Kambario atnaujinimas yra sudėtingas veiksmas ir paprastai rekomenduojamas, kai kambarys nestabilus dėl klaidų, trūkstamų funkcijų ar saugos spragų.", "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Kambario atnaujinimas yra sudėtingas veiksmas ir paprastai rekomenduojamas, kai kambarys nestabilus dėl klaidų, trūkstamų funkcijų ar saugos spragų.",
"To help us prevent this in future, please <a>send us logs</a>.": "Norėdami padėti mums išvengti to ateityje, <a>atsiųskite mums žurnalus</a>.", "To help us prevent this in future, please <a>send us logs</a>.": "Norėdami padėti mums išvengti to ateityje, <a>atsiųskite mums žurnalus</a>.",
"Emoji": "Jaustukai",
"Emoji Autocomplete": "Jaustukų automatinis užbaigimas", "Emoji Autocomplete": "Jaustukų automatinis užbaigimas",
"Select room from the room list": "Pasirinkti kambarį iš kambarių sąrašo", "Select room from the room list": "Pasirinkti kambarį iš kambarių sąrašo",
"Collapse room list section": "Sutraukti kambarių sąrašo skyrių", "Collapse room list section": "Sutraukti kambarių sąrašo skyrių",
@ -936,7 +929,6 @@
"Sign In or Create Account": "Prisijungti arba Sukurti Paskyrą", "Sign In or Create Account": "Prisijungti arba Sukurti Paskyrą",
"Use your account or create a new one to continue.": "Norėdami tęsti naudokite savo paskyrą arba sukurkite naują.", "Use your account or create a new one to continue.": "Norėdami tęsti naudokite savo paskyrą arba sukurkite naują.",
"Create Account": "Sukurti Paskyrą", "Create Account": "Sukurti Paskyrą",
"Custom (%(level)s)": "Pasirinktinis (%(level)s)",
"Ask this user to verify their session, or manually verify it below.": "Paprašykite šio vartotojo patvirtinti savo seansą, arba patvirtinkite jį rankiniu būdu žemiau.", "Ask this user to verify their session, or manually verify it below.": "Paprašykite šio vartotojo patvirtinti savo seansą, arba patvirtinkite jį rankiniu būdu žemiau.",
"Encryption upgrade available": "Galimas šifravimo atnaujinimas", "Encryption upgrade available": "Galimas šifravimo atnaujinimas",
"Verify this user by confirming the following number appears on their screen.": "Patvirtinkite šį vartotoją, įsitikindami, kad jo ekrane rodomas toliau esantis skaičius.", "Verify this user by confirming the following number appears on their screen.": "Patvirtinkite šį vartotoją, įsitikindami, kad jo ekrane rodomas toliau esantis skaičius.",
@ -967,7 +959,6 @@
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Šiuo metu jūs nenaudojate tapatybės serverio. Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, pridėkite jį žemiau.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Šiuo metu jūs nenaudojate tapatybės serverio. Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, pridėkite jį žemiau.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Atsijungimas nuo tapatybės serverio reikš, kad jūs nebebūsite randamas kitų vartotojų ir jūs nebegalėsite pakviesti kitų, naudodami jų el. paštą arba telefoną.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Atsijungimas nuo tapatybės serverio reikš, kad jūs nebebūsite randamas kitų vartotojų ir jūs nebegalėsite pakviesti kitų, naudodami jų el. paštą arba telefoną.",
"Deactivate account": "Deaktyvuoti paskyrą", "Deactivate account": "Deaktyvuoti paskyrą",
"Timeline": "Laiko juosta",
"Try scrolling up in the timeline to see if there are any earlier ones.": "Pabandykite slinkti aukštyn laiko juostoje, kad sužinotumėte, ar yra ankstesnių.", "Try scrolling up in the timeline to see if there are any earlier ones.": "Pabandykite slinkti aukštyn laiko juostoje, kad sužinotumėte, ar yra ankstesnių.",
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Bandyta įkelti konkrečią vietą šio kambario laiko juostoje, bet jūs neturite leidimo peržiūrėti tos žinutės.", "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Bandyta įkelti konkrečią vietą šio kambario laiko juostoje, bet jūs neturite leidimo peržiūrėti tos žinutės.",
"Failed to load timeline position": "Nepavyko įkelti laiko juostos pozicijos", "Failed to load timeline position": "Nepavyko įkelti laiko juostos pozicijos",
@ -1005,14 +996,11 @@
"Never send encrypted messages to unverified sessions in this room from this session": "Niekada nesiųsti šifruotų žinučių nepatvirtintiems seansams šiame kambaryje iš šio seanso", "Never send encrypted messages to unverified sessions in this room from this session": "Niekada nesiųsti šifruotų žinučių nepatvirtintiems seansams šiame kambaryje iš šio seanso",
"Cannot connect to integration manager": "Neįmanoma prisijungti prie integracijų tvarkytuvo", "Cannot connect to integration manager": "Neįmanoma prisijungti prie integracijų tvarkytuvo",
"The integration manager is offline or it cannot reach your homeserver.": "Integracijų tvarkytuvas yra išjungtas arba negali pasiekti jūsų serverio.", "The integration manager is offline or it cannot reach your homeserver.": "Integracijų tvarkytuvas yra išjungtas arba negali pasiekti jūsų serverio.",
"Disconnect": "Atsijungti",
"Disconnect anyway": "Vis tiek atsijungti", "Disconnect anyway": "Vis tiek atsijungti",
"Credits": "Padėka",
"For help with using %(brand)s, click <a>here</a>.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite <a>čia</a>.", "For help with using %(brand)s, click <a>here</a>.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite <a>čia</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite <a>čia</a> arba pradėkite pokalbį su mūsų botu pasinaudoję žemiau esančiu mygtuku.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite <a>čia</a> arba pradėkite pokalbį su mūsų botu pasinaudoję žemiau esančiu mygtuku.",
"Clear cache and reload": "Išvalyti podėlį ir perkrauti", "Clear cache and reload": "Išvalyti podėlį ir perkrauti",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Norėdami pranešti apie su Matrix susijusią saugos problemą, perskaitykite Matrix.org <a>Saugumo Atskleidimo Poliiką</a>.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Norėdami pranešti apie su Matrix susijusią saugos problemą, perskaitykite Matrix.org <a>Saugumo Atskleidimo Poliiką</a>.",
"FAQ": "DUK",
"Versions": "Versijos", "Versions": "Versijos",
"Import E2E room keys": "Importuoti E2E (visapusio šifravimo) kambarių raktus", "Import E2E room keys": "Importuoti E2E (visapusio šifravimo) kambarių raktus",
"Session ID:": "Seanso ID:", "Session ID:": "Seanso ID:",
@ -1024,7 +1012,6 @@
"Notes": "Pastabos", "Notes": "Pastabos",
"Integrations are disabled": "Integracijos yra išjungtos", "Integrations are disabled": "Integracijos yra išjungtos",
"Integrations not allowed": "Integracijos neleidžiamos", "Integrations not allowed": "Integracijos neleidžiamos",
"Restore": "Atkurti",
"Use a different passphrase?": "Naudoti kitą slaptafrazę?", "Use a different passphrase?": "Naudoti kitą slaptafrazę?",
"New Recovery Method": "Naujas atgavimo metodas", "New Recovery Method": "Naujas atgavimo metodas",
"This session is encrypting history using the new recovery method.": "Šis seansas šifruoja istoriją naudodamas naują atgavimo metodą.", "This session is encrypting history using the new recovery method.": "Šis seansas šifruoja istoriją naudodamas naują atgavimo metodą.",
@ -1130,7 +1117,6 @@
"%(senderName)s joined the call": "%(senderName)s prisijungė prie skambučio", "%(senderName)s joined the call": "%(senderName)s prisijungė prie skambučio",
"You joined the call": "Jūs prisijungėte prie skambučio", "You joined the call": "Jūs prisijungėte prie skambučio",
"Joins room with given address": "Prisijungia prie kambario su nurodytu adresu", "Joins room with given address": "Prisijungia prie kambario su nurodytu adresu",
"Show all": "Rodyti viską",
"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>", "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.", "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": { "Show %(count)s more": {
@ -1217,7 +1203,6 @@
"Video conference updated by %(senderName)s": "%(senderName)s atnaujino video konferenciją", "Video conference updated by %(senderName)s": "%(senderName)s atnaujino video konferenciją",
"Video conference ended by %(senderName)s": "%(senderName)s užbaigė video konferenciją", "Video conference ended by %(senderName)s": "%(senderName)s užbaigė video konferenciją",
"Start automatically after system login": "Pradėti automatiškai prisijungus prie sistemos", "Start automatically after system login": "Pradėti automatiškai prisijungus prie sistemos",
"Subscribe": "Prenumeruoti",
"Room ID or address of ban list": "Kambario ID arba draudimų sąrašo adresas", "Room ID or address of ban list": "Kambario ID arba draudimų sąrašo adresas",
"If this isn't what you want, please use a different tool to ignore users.": "Jei tai nėra ko jūs norite, naudokite kitą įrankį vartotojams ignoruoti.", "If this isn't what you want, please use a different tool to ignore users.": "Jei tai nėra ko jūs norite, naudokite kitą įrankį vartotojams ignoruoti.",
"Subscribed lists": "Prenumeruojami sąrašai", "Subscribed lists": "Prenumeruojami sąrašai",
@ -1227,7 +1212,6 @@
"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.": "Čia pridėkite vartotojus ir serverius, kuriuos norite ignoruoti. Naudokite žvaigždutes, kad %(brand)s atitiktų bet kokius simbolius. Pavyzdžiui, <code>@botas:*</code> ignoruotų visus vartotojus, turinčius vardą 'botas' bet kuriame serveryje.", "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.": "Čia pridėkite vartotojus ir serverius, kuriuos norite ignoruoti. Naudokite žvaigždutes, kad %(brand)s atitiktų bet kokius simbolius. Pavyzdžiui, <code>@botas:*</code> ignoruotų visus vartotojus, turinčius vardą 'botas' bet kuriame serveryje.",
"Ignored users": "Ignoruojami vartotojai", "Ignored users": "Ignoruojami vartotojai",
"View rules": "Peržiūrėti taisykles", "View rules": "Peržiūrėti taisykles",
"Unsubscribe": "Atsisakyti prenumeratos",
"You have not ignored anyone.": "Jūs nieko neignoruojate.", "You have not ignored anyone.": "Jūs nieko neignoruojate.",
"User rules": "Vartotojo taisyklės", "User rules": "Vartotojo taisyklės",
"Server rules": "Serverio taisyklės", "Server rules": "Serverio taisyklės",
@ -1240,7 +1224,6 @@
"Something went wrong. Please try again or view your console for hints.": "Kažkas ne taip. Bandykite dar kartą arba peržiūrėkite konsolę, kad rastumėte užuominų.", "Something went wrong. Please try again or view your console for hints.": "Kažkas ne taip. Bandykite dar kartą arba peržiūrėkite konsolę, kad rastumėte užuominų.",
"Error adding ignored user/server": "Klaida pridedant ignoruojamą vartotoją/serverį", "Error adding ignored user/server": "Klaida pridedant ignoruojamą vartotoją/serverį",
"Ignored/Blocked": "Ignoruojami/Blokuojami", "Ignored/Blocked": "Ignoruojami/Blokuojami",
"Legal": "Teisiniai",
"Appearance Settings only affect this %(brand)s session.": "Išvaizdos nustatymai įtakoja tik šį %(brand)s seansą.", "Appearance Settings only affect this %(brand)s session.": "Išvaizdos nustatymai įtakoja tik šį %(brand)s seansą.",
"Customise your appearance": "Tinkinti savo išvaizdą", "Customise your appearance": "Tinkinti savo išvaizdą",
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Nustatykite sistemoje įdiegto šrifto pavadinimą ir %(brand)s bandys jį naudoti.", "Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Nustatykite sistemoje įdiegto šrifto pavadinimą ir %(brand)s bandys jį naudoti.",
@ -1318,12 +1301,10 @@
"You started a call": "Jūs pradėjote skambutį", "You started a call": "Jūs pradėjote skambutį",
"Call ended": "Skambutis baigtas", "Call ended": "Skambutis baigtas",
"Call in progress": "Vykdomas skambutis", "Call in progress": "Vykdomas skambutis",
"Guest": "Svečias",
"Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Patvirtinant šį vartotoją, jo seansas bus pažymėtas kaip patikimas, taip pat jūsų seansas bus pažymėtas kaip patikimas jam.", "Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Patvirtinant šį vartotoją, jo seansas bus pažymėtas kaip patikimas, taip pat jūsų seansas bus pažymėtas kaip patikimas jam.",
"Verify the link in your inbox": "Patvirtinkite nuorodą savo el. pašto dėžutėje", "Verify the link in your inbox": "Patvirtinkite nuorodą savo el. pašto dėžutėje",
"Click the link in the email you received to verify and then click continue again.": "Paspauskite nuorodą gautame el. laiške, kad patvirtintumėte, tada dar kartą spustelėkite tęsti.", "Click the link in the email you received to verify and then click continue again.": "Paspauskite nuorodą gautame el. laiške, kad patvirtintumėte, tada dar kartą spustelėkite tęsti.",
"Please verify the room ID or address and try again.": "Patikrinkite kambario ID arba adresą ir bandykite dar kartą.", "Please verify the room ID or address and try again.": "Patikrinkite kambario ID arba adresą ir bandykite dar kartą.",
"Privacy": "Privatumas",
"Accept all %(invitedRooms)s invites": "Priimti visus %(invitedRooms)s pakvietimus", "Accept all %(invitedRooms)s invites": "Priimti visus %(invitedRooms)s pakvietimus",
"Bulk options": "Grupinės parinktys", "Bulk options": "Grupinės parinktys",
"Confirm Security Phrase": "Patvirtinkite Slaptafrazę", "Confirm Security Phrase": "Patvirtinkite Slaptafrazę",
@ -1517,7 +1498,6 @@
"Allow this widget to verify your identity": "Leiskite šiam valdikliui patvirtinti jūsų tapatybę", "Allow this widget to verify your identity": "Leiskite šiam valdikliui patvirtinti jūsų tapatybę",
"Remember my selection for this widget": "Prisiminti mano pasirinkimą šiam valdikliui", "Remember my selection for this widget": "Prisiminti mano pasirinkimą šiam valdikliui",
"Decline All": "Atmesti Visus", "Decline All": "Atmesti Visus",
"Approve": "Patvirtinti",
"This widget would like to:": "Šis valdiklis norėtų:", "This widget would like to:": "Šis valdiklis norėtų:",
"Approve widget permissions": "Patvirtinti valdiklio leidimus", "Approve widget permissions": "Patvirtinti valdiklio leidimus",
"Verification Request": "Patikrinimo Užklausa", "Verification Request": "Patikrinimo Užklausa",
@ -1710,8 +1690,6 @@
"Calls are unsupported": "Skambučiai nėra palaikomi", "Calls are unsupported": "Skambučiai nėra palaikomi",
"Unable to share email address": "Nepavyko pasidalinti el. pašto adresu", "Unable to share email address": "Nepavyko pasidalinti el. pašto adresu",
"Verification code": "Patvirtinimo kodas", "Verification code": "Patvirtinimo kodas",
"Revoke": "Panaikinti",
"Complete": "Užbaigti",
"Olm version:": "Olm versija:", "Olm version:": "Olm versija:",
"Enable email notifications for %(email)s": "Įjungti el. pašto pranešimus %(email)s", "Enable email notifications for %(email)s": "Įjungti el. pašto pranešimus %(email)s",
"Messages containing keywords": "Žinutės turinčios raktažodžių", "Messages containing keywords": "Žinutės turinčios raktažodžių",
@ -1738,7 +1716,6 @@
"other": "Spustelėkite mygtuką žemiau kad patvirtinti šių įrenginių atjungimą.", "other": "Spustelėkite mygtuką žemiau kad patvirtinti šių įrenginių atjungimą.",
"one": "Spustelėkite mygtuką žemiau kad patvirtinti šio įrenginio atjungimą." "one": "Spustelėkite mygtuką žemiau kad patvirtinti šio įrenginio atjungimą."
}, },
"Rename": "Pervadinti",
"Deselect all": "Nuimti pasirinkimą nuo visko", "Deselect all": "Nuimti pasirinkimą nuo visko",
"Select all": "Pasirinkti viską", "Select all": "Pasirinkti viską",
"Sign out devices": { "Sign out devices": {
@ -1989,13 +1966,11 @@
"Code blocks": "Kodo blokai", "Code blocks": "Kodo blokai",
"Your server doesn't support disabling sending read receipts.": "Jūsų serveris nepalaiko skaitymo kvitų siuntimo išjungimo.", "Your server doesn't support disabling sending read receipts.": "Jūsų serveris nepalaiko skaitymo kvitų siuntimo išjungimo.",
"Share your activity and status with others.": "Dalinkitės savo veikla ir būkle su kitais.", "Share your activity and status with others.": "Dalinkitės savo veikla ir būkle su kitais.",
"Presence": "Esamumas",
"Displaying time": "Rodomas laikas", "Displaying time": "Rodomas laikas",
"To view all keyboard shortcuts, <a>click here</a>.": "Norint peržiūrėti visus sparčiuosius klavišus, <a>paspauskite čia</a>.", "To view all keyboard shortcuts, <a>click here</a>.": "Norint peržiūrėti visus sparčiuosius klavišus, <a>paspauskite čia</a>.",
"Keyboard shortcuts": "Spartieji klavišai", "Keyboard shortcuts": "Spartieji klavišai",
"Keyboard": "Klaviatūra", "Keyboard": "Klaviatūra",
"Your access token gives full access to your account. Do not share it with anyone.": "Jūsų prieigos žetonas suteikia visišką prieigą prie paskyros. Niekam jo neduokite.", "Your access token gives full access to your account. Do not share it with anyone.": "Jūsų prieigos žetonas suteikia visišką prieigą prie paskyros. Niekam jo neduokite.",
"Access Token": "Prieigos žetonas",
"Deactivating your account is a permanent action — be careful!": "Paskyros deaktyvavimas yra negrįžtamas veiksmas — būkite atsargūs!", "Deactivating your account is a permanent action — be careful!": "Paskyros deaktyvavimas yra negrįžtamas veiksmas — būkite atsargūs!",
"Spell check": "Rašybos tikrinimas", "Spell check": "Rašybos tikrinimas",
"Your password was successfully changed.": "Jūsų slaptažodis sėkmingai pakeistas.", "Your password was successfully changed.": "Jūsų slaptažodis sėkmingai pakeistas.",
@ -2312,11 +2287,8 @@
"Copy link to thread": "Kopijuoti nuorodą į temą", "Copy link to thread": "Kopijuoti nuorodą į temą",
"View in room": "Peržiūrėti kambaryje", "View in room": "Peržiūrėti kambaryje",
"From a thread": "Iš temos", "From a thread": "Iš temos",
"Mod": "Moderatorius",
"Edit message": "Redaguoti žinutę", "Edit message": "Redaguoti žinutę",
"View all": "Žiūrėti visus",
"Security recommendations": "Saugumo rekomendacijos", "Security recommendations": "Saugumo rekomendacijos",
"Show": "Rodyti",
"Filter devices": "Filtruoti įrenginius", "Filter devices": "Filtruoti įrenginius",
"Inactive for %(inactiveAgeDays)s days or longer": "Neaktyvus %(inactiveAgeDays)s dienas ar ilgiau", "Inactive for %(inactiveAgeDays)s days or longer": "Neaktyvus %(inactiveAgeDays)s dienas ar ilgiau",
"Inactive": "Neaktyvus", "Inactive": "Neaktyvus",
@ -2413,7 +2385,19 @@
"description": "Aprašas", "description": "Aprašas",
"dark": "Tamsi", "dark": "Tamsi",
"attachment": "Priedas", "attachment": "Priedas",
"appearance": "Išvaizda" "appearance": "Išvaizda",
"guest": "Svečias",
"legal": "Teisiniai",
"credits": "Padėka",
"faq": "DUK",
"access_token": "Prieigos žetonas",
"preferences": "Nuostatos",
"presence": "Esamumas",
"timeline": "Laiko juosta",
"privacy": "Privatumas",
"camera": "Kamera",
"microphone": "Mikrofonas",
"emoji": "Jaustukai"
}, },
"action": { "action": {
"continue": "Tęsti", "continue": "Tęsti",
@ -2479,7 +2463,21 @@
"call": "Skambinti", "call": "Skambinti",
"back": "Atgal", "back": "Atgal",
"add": "Pridėti", "add": "Pridėti",
"accept": "Priimti" "accept": "Priimti",
"disconnect": "Atsijungti",
"change": "Keisti",
"subscribe": "Prenumeruoti",
"unsubscribe": "Atsisakyti prenumeratos",
"approve": "Patvirtinti",
"complete": "Užbaigti",
"revoke": "Panaikinti",
"rename": "Pervadinti",
"view_all": "Žiūrėti visus",
"show_all": "Rodyti viską",
"show": "Rodyti",
"review": "Peržiūrėti",
"restore": "Atkurti",
"register": "Registruotis"
}, },
"labs": { "labs": {
"video_rooms": "Vaizdo kambariai", "video_rooms": "Vaizdo kambariai",
@ -2521,7 +2519,9 @@
"default": "Numatytas", "default": "Numatytas",
"restricted": "Apribotas", "restricted": "Apribotas",
"moderator": "Moderatorius", "moderator": "Moderatorius",
"admin": "Administratorius" "admin": "Administratorius",
"custom": "Pasirinktinis (%(level)s)",
"mod": "Moderatorius"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Jei per GitHub pateikėte klaidą, derinimo žurnalai gali padėti mums nustatyti problemą. ", "introduction": "Jei per GitHub pateikėte klaidą, derinimo žurnalai gali padėti mums nustatyti problemą. ",

View file

@ -7,8 +7,6 @@
"No media permissions": "Nav datu nesēju, kuriem atļauta piekļuve", "No media permissions": "Nav datu nesēju, kuriem atļauta piekļuve",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Jums varētu būt nepieciešams manuāli atļaut %(brand)s piekļuvi mikrofonam vai tīmekļa kamerai", "You may need to manually permit %(brand)s to access your microphone/webcam": "Jums varētu būt nepieciešams manuāli atļaut %(brand)s piekļuvi mikrofonam vai tīmekļa kamerai",
"Default Device": "Noklusējuma ierīce", "Default Device": "Noklusējuma ierīce",
"Microphone": "Mikrofons",
"Camera": "Kamera",
"Advanced": "Papildu", "Advanced": "Papildu",
"Always show message timestamps": "Vienmēr rādīt ziņas laika zīmogu", "Always show message timestamps": "Vienmēr rādīt ziņas laika zīmogu",
"Authentication": "Autentifikācija", "Authentication": "Autentifikācija",
@ -43,7 +41,6 @@
"Download %(text)s": "Lejupielādēt: %(text)s", "Download %(text)s": "Lejupielādēt: %(text)s",
"Email": "Epasts", "Email": "Epasts",
"Email address": "Epasta adrese", "Email address": "Epasta adrese",
"Emoji": "Emocijzīmes",
"Enter passphrase": "Ievadiet frāzveida paroli", "Enter passphrase": "Ievadiet frāzveida paroli",
"Error decrypting attachment": "Kļūda atšifrējot pielikumu", "Error decrypting attachment": "Kļūda atšifrējot pielikumu",
"Export": "Eksportēt", "Export": "Eksportēt",
@ -107,7 +104,6 @@
"Privileged Users": "Priviliģētie lietotāji", "Privileged Users": "Priviliģētie lietotāji",
"Profile": "Profils", "Profile": "Profils",
"Reason": "Iemesls", "Reason": "Iemesls",
"Register": "Reģistrēties",
"Reject invitation": "Noraidīt uzaicinājumu", "Reject invitation": "Noraidīt uzaicinājumu",
"Return to login screen": "Atgriezties uz pierakstīšanās lapu", "Return to login screen": "Atgriezties uz pierakstīšanās lapu",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nav atļauts nosūtīt jums paziņojumus. Lūdzu pārbaudi sava pārlūka iestatījumus", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nav atļauts nosūtīt jums paziņojumus. Lūdzu pārbaudi sava pārlūka iestatījumus",
@ -850,7 +846,6 @@
"Bulk options": "Lielapjoma opcijas", "Bulk options": "Lielapjoma opcijas",
"Clear cache and reload": "Notīrīt kešatmiņu un pārlādēt", "Clear cache and reload": "Notīrīt kešatmiņu un pārlādēt",
"Versions": "Versijas", "Versions": "Versijas",
"FAQ": "BUJ",
"For help with using %(brand)s, click <a>here</a>.": "Palīdzībai %(brand)s izmantošanā, spiediet <a>šeit</a>.", "For help with using %(brand)s, click <a>here</a>.": "Palīdzībai %(brand)s izmantošanā, spiediet <a>šeit</a>.",
"Account management": "Konta pārvaldība", "Account management": "Konta pārvaldība",
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Iestaties uz jūsu sistēmas instalēta fonta nosaukumu, kuru & %(brand)s vajadzētu mēģināt izmantot.", "Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Iestaties uz jūsu sistēmas instalēta fonta nosaukumu, kuru & %(brand)s vajadzētu mēģināt izmantot.",
@ -881,12 +876,10 @@
"Enable desktop notifications": "Iespējot darbvirsmas paziņojumus", "Enable desktop notifications": "Iespējot darbvirsmas paziņojumus",
"Don't miss a reply": "Nepalaidiet garām atbildi", "Don't miss a reply": "Nepalaidiet garām atbildi",
"Later": "Vēlāk", "Later": "Vēlāk",
"Review": "Pārlūkot",
"Ensure you have a stable internet connection, or get in touch with the server admin": "Pārliecinieties par stabilu internet savienojumu vai sazinieties ar servera administratoru", "Ensure you have a stable internet connection, or get in touch with the server admin": "Pārliecinieties par stabilu internet savienojumu vai sazinieties ar servera administratoru",
"Could not find user in room": "Lietotājs istabā netika atrasts", "Could not find user in room": "Lietotājs istabā netika atrasts",
"You do not have the required permissions to use this command.": "Jums trūkst šīs komandas lietošanai nepieciešamo atļauju.", "You do not have the required permissions to use this command.": "Jums trūkst šīs komandas lietošanai nepieciešamo atļauju.",
"Missing roomId.": "Trūkst roomId.", "Missing roomId.": "Trūkst roomId.",
"Custom (%(level)s)": "Pielāgots (%(level)s)",
"Create Account": "Izveidot kontu", "Create Account": "Izveidot kontu",
"Use your account or create a new one to continue.": "Izmantojiet esošu kontu vai izveidojiet jaunu, lai turpinātu.", "Use your account or create a new one to continue.": "Izmantojiet esošu kontu vai izveidojiet jaunu, lai turpinātu.",
"Sign In or Create Account": "Pierakstīties vai izveidot kontu", "Sign In or Create Account": "Pierakstīties vai izveidot kontu",
@ -1483,7 +1476,6 @@
"Share content": "Dalīties ar saturu", "Share content": "Dalīties ar saturu",
"Your theme": "Jūsu tēma", "Your theme": "Jūsu tēma",
"Your user ID": "Jūsu lietotāja ID", "Your user ID": "Jūsu lietotāja ID",
"Show all": "Rādīt visu",
"Show image": "Rādīt attēlu", "Show image": "Rādīt attēlu",
"Call back": "Atzvanīt", "Call back": "Atzvanīt",
"Call declined": "Zvans noraidīts", "Call declined": "Zvans noraidīts",
@ -1500,7 +1492,6 @@
"People with supported clients will be able to join the room without having a registered account.": "Cilvēki ar atbalstītām lietotnēm varēs pievienoties istabai bez reģistrēta konta.", "People with supported clients will be able to join the room without having a registered account.": "Cilvēki ar atbalstītām lietotnēm varēs pievienoties istabai bez reģistrēta konta.",
"Decide who can join %(roomName)s.": "Nosakiet, kas var pievienoties %(roomName)s.", "Decide who can join %(roomName)s.": "Nosakiet, kas var pievienoties %(roomName)s.",
"Select the roles required to change various parts of the room": "Izvēlieties lomas, kas nepieciešamas, lai mainītu dažādus istabas parametrus", "Select the roles required to change various parts of the room": "Izvēlieties lomas, kas nepieciešamas, lai mainītu dažādus istabas parametrus",
"Timeline": "Laika skala",
"Code blocks": "Koda bloki", "Code blocks": "Koda bloki",
"Displaying time": "Laika attēlošana", "Displaying time": "Laika attēlošana",
"Keyboard shortcuts": "Īsinājumtaustiņi", "Keyboard shortcuts": "Īsinājumtaustiņi",
@ -1538,7 +1529,6 @@
"Use custom size": "Izmantot pielāgotu izmēru", "Use custom size": "Izmantot pielāgotu izmēru",
"Font size": "Šrifta izmērs", "Font size": "Šrifta izmērs",
"Call ended": "Zvans beidzās", "Call ended": "Zvans beidzās",
"Guest": "Viesis",
"Dates are often easy to guess": "Datumi bieži vien ir viegli uzminami", "Dates are often easy to guess": "Datumi bieži vien ir viegli uzminami",
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s noņēma piespraustu ziņu šajā istabā. Skatīt visas piespraustās ziņas.", "%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s noņēma piespraustu ziņu šajā istabā. Skatīt visas piespraustās ziņas.",
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s noņēma piespraustu <a>ziņu</a> šajā istabā. Skatīt visas <b>piespraustās ziņas</b>.", "%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s noņēma piespraustu <a>ziņu</a> šajā istabā. Skatīt visas <b>piespraustās ziņas</b>.",
@ -1763,7 +1753,13 @@
"description": "Apraksts", "description": "Apraksts",
"dark": "Tumša", "dark": "Tumša",
"attachment": "Pielikums", "attachment": "Pielikums",
"appearance": "Izskats" "appearance": "Izskats",
"guest": "Viesis",
"faq": "BUJ",
"timeline": "Laika skala",
"camera": "Kamera",
"microphone": "Mikrofons",
"emoji": "Emocijzīmes"
}, },
"action": { "action": {
"continue": "Turpināt", "continue": "Turpināt",
@ -1821,7 +1817,10 @@
"cancel": "Atcelt", "cancel": "Atcelt",
"back": "Atpakaļ", "back": "Atpakaļ",
"add": "Pievienot", "add": "Pievienot",
"accept": "Akceptēt" "accept": "Akceptēt",
"show_all": "Rādīt visu",
"review": "Pārlūkot",
"register": "Reģistrēties"
}, },
"a11y": { "a11y": {
"user_menu": "Lietotāja izvēlne" "user_menu": "Lietotāja izvēlne"
@ -1841,7 +1840,8 @@
"default": "Noklusējuma", "default": "Noklusējuma",
"restricted": "Ierobežots", "restricted": "Ierobežots",
"moderator": "Moderators", "moderator": "Moderators",
"admin": "Administrators" "admin": "Administrators",
"custom": "Pielāgots (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "Iesniegt atutošanas logfailus", "submit_debug_logs": "Iesniegt atutošanas logfailus",

View file

@ -7,8 +7,6 @@
"powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു", "powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു",
"unknown error code": "അപരിചിത എറര്‍ കോഡ്", "unknown error code": "അപരിചിത എറര്‍ കോഡ്",
"Failed to change password. Is your password correct?": "രഹസ്യവാക്ക് മാറ്റാന്‍ സാധിച്ചില്ല. രഹസ്യവാക്ക് ശരിയാണോ ?", "Failed to change password. Is your password correct?": "രഹസ്യവാക്ക് മാറ്റാന്‍ സാധിച്ചില്ല. രഹസ്യവാക്ക് ശരിയാണോ ?",
"Microphone": "മൈക്രോഫോൺ",
"Camera": "ക്യാമറ",
"Sunday": "ഞായര്‍", "Sunday": "ഞായര്‍",
"Messages sent by bot": "ബോട്ട് അയയ്ക്കുന്ന സന്ദേശങ്ങള്‍ക്ക്", "Messages sent by bot": "ബോട്ട് അയയ്ക്കുന്ന സന്ദേശങ്ങള്‍ക്ക്",
"Notification targets": "നോട്ടിഫിക്കേഷന്‍ ടാര്‍ഗെറ്റുകള്‍", "Notification targets": "നോട്ടിഫിക്കേഷന്‍ ടാര്‍ഗെറ്റുകള്‍",
@ -57,7 +55,9 @@
"error": "എറര്‍", "error": "എറര്‍",
"mute": "നിശ്ശബ്ദം", "mute": "നിശ്ശബ്ദം",
"settings": "സജ്ജീകരണങ്ങള്‍", "settings": "സജ്ജീകരണങ്ങള്‍",
"warning": "മുന്നറിയിപ്പ്" "warning": "മുന്നറിയിപ്പ്",
"camera": "ക്യാമറ",
"microphone": "മൈക്രോഫോൺ"
}, },
"action": { "action": {
"continue": "മുന്നോട്ട്", "continue": "മുന്നോട്ട്",

View file

@ -74,7 +74,6 @@
"%(brand)s was not given permission to send notifications - please try again": "%(brand)s fikk ikke tillatelse til å sende deg varsler - vennligst prøv igjen", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s fikk ikke tillatelse til å sende deg varsler - vennligst prøv igjen",
"Unable to enable Notifications": "Klarte ikke slå på Varslinger", "Unable to enable Notifications": "Klarte ikke slå på Varslinger",
"This email address was not found": "Denne e-postadressen ble ikke funnet", "This email address was not found": "Denne e-postadressen ble ikke funnet",
"Register": "Registrer",
"Default": "Standard", "Default": "Standard",
"Restricted": "Begrenset", "Restricted": "Begrenset",
"Moderator": "Moderator", "Moderator": "Moderator",
@ -178,7 +177,6 @@
"Anchor": "Anker", "Anchor": "Anker",
"Headphones": "Hodetelefoner", "Headphones": "Hodetelefoner",
"Folder": "Mappe", "Folder": "Mappe",
"Review": "Gjennomgang",
"Show less": "Vis mindre", "Show less": "Vis mindre",
"Current password": "Nåværende passord", "Current password": "Nåværende passord",
"New Password": "Nytt passord", "New Password": "Nytt passord",
@ -186,26 +184,16 @@
"Change Password": "Endre passordet", "Change Password": "Endre passordet",
"Manage": "Administrér", "Manage": "Administrér",
"Display Name": "Visningsnavn", "Display Name": "Visningsnavn",
"Disconnect": "Koble fra",
"Change": "Endre",
"Profile": "Profil", "Profile": "Profil",
"Email addresses": "E-postadresser", "Email addresses": "E-postadresser",
"Phone numbers": "Telefonnumre", "Phone numbers": "Telefonnumre",
"Account": "Konto", "Account": "Konto",
"Language and region": "Språk og område", "Language and region": "Språk og område",
"General": "Generelt", "General": "Generelt",
"Legal": "Juridisk",
"Credits": "Takk til",
"FAQ": "Ofte Stilte Spørsmål",
"Versions": "Versjoner", "Versions": "Versjoner",
"None": "Ingen", "None": "Ingen",
"Unsubscribe": "Meld ut",
"Subscribe": "Abonnér",
"Preferences": "Brukervalg",
"Composer": "Komposør", "Composer": "Komposør",
"Timeline": "Tidslinje",
"Security & Privacy": "Sikkerhet og personvern", "Security & Privacy": "Sikkerhet og personvern",
"Camera": "Kamera",
"Browse": "Bla", "Browse": "Bla",
"Unban": "Opphev utestengelse", "Unban": "Opphev utestengelse",
"Banned users": "Bannlyste brukere", "Banned users": "Bannlyste brukere",
@ -213,13 +201,10 @@
"Anyone": "Alle", "Anyone": "Alle",
"Encryption": "Kryptering", "Encryption": "Kryptering",
"Encrypted": "Kryptert", "Encrypted": "Kryptert",
"Complete": "Fullført",
"Revoke": "Tilbakekall",
"Unable to verify phone number.": "Klarte ikke å verifisere telefonnummeret.", "Unable to verify phone number.": "Klarte ikke å verifisere telefonnummeret.",
"Verification code": "Verifikasjonskode", "Verification code": "Verifikasjonskode",
"Email Address": "E-postadresse", "Email Address": "E-postadresse",
"Phone Number": "Telefonnummer", "Phone Number": "Telefonnummer",
"Mod": "Mod",
"Are you sure?": "Er du sikker?", "Are you sure?": "Er du sikker?",
"Admin Tools": "Adminverktøy", "Admin Tools": "Adminverktøy",
"Invited": "Invitert", "Invited": "Invitert",
@ -236,7 +221,6 @@
"All Rooms": "Alle rom", "All Rooms": "Alle rom",
"Search…": "Søk …", "Search…": "Søk …",
"Download %(text)s": "Last ned %(text)s", "Download %(text)s": "Last ned %(text)s",
"Show all": "Vis alt",
"Copied!": "Kopiert!", "Copied!": "Kopiert!",
"What's New": "Hva er nytt", "What's New": "Hva er nytt",
"Frequently Used": "Ofte brukte", "Frequently Used": "Ofte brukte",
@ -281,15 +265,12 @@
"Enter password": "Skriv inn passord", "Enter password": "Skriv inn passord",
"Enter username": "Skriv inn brukernavn", "Enter username": "Skriv inn brukernavn",
"Explore rooms": "Se alle rom", "Explore rooms": "Se alle rom",
"Guest": "Gjest",
"Your password has been reset.": "Passordet ditt har blitt tilbakestilt.", "Your password has been reset.": "Passordet ditt har blitt tilbakestilt.",
"Create account": "Opprett konto", "Create account": "Opprett konto",
"Commands": "Kommandoer", "Commands": "Kommandoer",
"Emoji": "Emoji",
"Users": "Brukere", "Users": "Brukere",
"Export": "Eksporter", "Export": "Eksporter",
"Import": "Importer", "Import": "Importer",
"Restore": "Gjenopprett",
"Success!": "Suksess!", "Success!": "Suksess!",
"Set up": "Sett opp", "Set up": "Sett opp",
"Identity server has no terms of service": "Identitetstjeneren har ingen brukervilkår", "Identity server has no terms of service": "Identitetstjeneren har ingen brukervilkår",
@ -386,7 +367,6 @@
"No Webcams detected": "Ingen USB-kameraer ble oppdaget", "No Webcams detected": "Ingen USB-kameraer ble oppdaget",
"Default Device": "Standardenhet", "Default Device": "Standardenhet",
"Audio Output": "Lydutdata", "Audio Output": "Lydutdata",
"Microphone": "Mikrofon",
"Voice & Video": "Stemme og video", "Voice & Video": "Stemme og video",
"Room information": "Rominformasjon", "Room information": "Rominformasjon",
"Room version": "Romversjon", "Room version": "Romversjon",
@ -653,7 +633,6 @@
"Autocomplete": "Autofullfør", "Autocomplete": "Autofullfør",
"New line": "Ny linje", "New line": "Ny linje",
"Cancel replying to a message": "Avbryt å svare på en melding", "Cancel replying to a message": "Avbryt å svare på en melding",
"Space": "Mellomrom",
"Enter passphrase": "Skriv inn passordfrase", "Enter passphrase": "Skriv inn passordfrase",
"Avoid sequences": "Unngå sekvenser", "Avoid sequences": "Unngå sekvenser",
"Avoid recent years": "Unngå nylige år", "Avoid recent years": "Unngå nylige år",
@ -1032,7 +1011,6 @@
"No results found": "Ingen resultater ble funnet", "No results found": "Ingen resultater ble funnet",
"Public space": "Offentlig område", "Public space": "Offentlig område",
"Private space": "Privat område", "Private space": "Privat område",
"Support": "Support",
"Suggested": "Anbefalte", "Suggested": "Anbefalte",
"%(deviceId)s from %(ip)s": "%(deviceId)s fra %(ip)s", "%(deviceId)s from %(ip)s": "%(deviceId)s fra %(ip)s",
"Value:": "Verdi:", "Value:": "Verdi:",
@ -1047,7 +1025,6 @@
"Your public space": "Ditt offentlige område", "Your public space": "Ditt offentlige område",
"Your private space": "Ditt private område", "Your private space": "Ditt private område",
"Invite to %(spaceName)s": "Inviter til %(spaceName)s", "Invite to %(spaceName)s": "Inviter til %(spaceName)s",
"Random": "Tilfeldig",
"unknown person": "ukjent person", "unknown person": "ukjent person",
"Click to copy": "Klikk for å kopiere", "Click to copy": "Klikk for å kopiere",
"Share invite link": "Del invitasjonslenke", "Share invite link": "Del invitasjonslenke",
@ -1081,7 +1058,6 @@
"Security Phrase": "Sikkerhetsfrase", "Security Phrase": "Sikkerhetsfrase",
"Open dial pad": "Åpne nummerpanelet", "Open dial pad": "Åpne nummerpanelet",
"Message deleted on %(date)s": "Meldingen ble slettet den %(date)s", "Message deleted on %(date)s": "Meldingen ble slettet den %(date)s",
"Approve": "Godkjenn",
"Already have an account? <a>Sign in here</a>": "Har du allerede en konto? <a>Logg på</a>", "Already have an account? <a>Sign in here</a>": "Har du allerede en konto? <a>Logg på</a>",
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s eller %(usernamePassword)s", "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s eller %(usernamePassword)s",
"New here? <a>Create an account</a>": "Er du ny her? <a>Opprett en konto</a>", "New here? <a>Create an account</a>": "Er du ny her? <a>Opprett en konto</a>",
@ -1151,7 +1127,6 @@
"Explore public rooms": "Utforsk offentlige rom", "Explore public rooms": "Utforsk offentlige rom",
"Verify the link in your inbox": "Verifiser lenken i innboksen din", "Verify the link in your inbox": "Verifiser lenken i innboksen din",
"Bridges": "Broer", "Bridges": "Broer",
"Privacy": "Personvern",
"Reject all %(invitedRooms)s invites": "Avslå alle %(invitedRooms)s-invitasjoner", "Reject all %(invitedRooms)s invites": "Avslå alle %(invitedRooms)s-invitasjoner",
"Upgrade Room Version": "Oppgrader romversjon", "Upgrade Room Version": "Oppgrader romversjon",
"You cancelled verification.": "Du avbrøt verifiseringen.", "You cancelled verification.": "Du avbrøt verifiseringen.",
@ -1397,8 +1372,6 @@
"Show:": "Vis:", "Show:": "Vis:",
"Results": "Resultat", "Results": "Resultat",
"Retry all": "Prøv alle igjen", "Retry all": "Prøv alle igjen",
"Play": "Spill av",
"Pause": "Pause",
"Report": "Rapporter", "Report": "Rapporter",
"Sent": "Sendt", "Sent": "Sendt",
"Sending": "Sender", "Sending": "Sender",
@ -1501,7 +1474,20 @@
"dark": "Mørk", "dark": "Mørk",
"beta": "Beta", "beta": "Beta",
"attachment": "Vedlegg", "attachment": "Vedlegg",
"appearance": "Utseende" "appearance": "Utseende",
"guest": "Gjest",
"legal": "Juridisk",
"credits": "Takk til",
"faq": "Ofte Stilte Spørsmål",
"preferences": "Brukervalg",
"timeline": "Tidslinje",
"privacy": "Personvern",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Tilfeldig",
"support": "Support",
"space": "Mellomrom"
}, },
"action": { "action": {
"continue": "Fortsett", "continue": "Fortsett",
@ -1566,7 +1552,20 @@
"cancel": "Avbryt", "cancel": "Avbryt",
"back": "tilbake", "back": "tilbake",
"add": "Legg til", "add": "Legg til",
"accept": "Godta" "accept": "Godta",
"disconnect": "Koble fra",
"change": "Endre",
"subscribe": "Abonnér",
"unsubscribe": "Meld ut",
"approve": "Godkjenn",
"complete": "Fullført",
"revoke": "Tilbakekall",
"show_all": "Vis alt",
"review": "Gjennomgang",
"restore": "Gjenopprett",
"play": "Spill av",
"pause": "Pause",
"register": "Registrer"
}, },
"a11y": { "a11y": {
"user_menu": "Brukermeny" "user_menu": "Brukermeny"
@ -1598,7 +1597,8 @@
"default": "Standard", "default": "Standard",
"restricted": "Begrenset", "restricted": "Begrenset",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "For å rapportere inn et Matrix-relatert sikkerhetsproblem, vennligst less Matrix.org sine <a>Retningslinjer for sikkerhetspublisering</a>.", "matrix_security_issue": "For å rapportere inn et Matrix-relatert sikkerhetsproblem, vennligst less Matrix.org sine <a>Retningslinjer for sikkerhetspublisering</a>.",

View file

@ -30,8 +30,6 @@
"No media permissions": "Geen mediatoestemmingen", "No media permissions": "Geen mediatoestemmingen",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Je moet %(brand)s wellicht handmatig toestaan je microfoon/webcam te gebruiken", "You may need to manually permit %(brand)s to access your microphone/webcam": "Je moet %(brand)s wellicht handmatig toestaan je microfoon/webcam te gebruiken",
"Default Device": "Standaardapparaat", "Default Device": "Standaardapparaat",
"Microphone": "Microfoon",
"Camera": "Camera",
"Anyone": "Iedereen", "Anyone": "Iedereen",
"Are you sure you want to leave the room '%(roomName)s'?": "Weet je zeker dat je de kamer %(roomName)s wil verlaten?", "Are you sure you want to leave the room '%(roomName)s'?": "Weet je zeker dat je de kamer %(roomName)s wil verlaten?",
"Create new room": "Nieuwe kamer aanmaken", "Create new room": "Nieuwe kamer aanmaken",
@ -54,7 +52,6 @@
"Privileged Users": "Bevoegde personen", "Privileged Users": "Bevoegde personen",
"Profile": "Profiel", "Profile": "Profiel",
"Reason": "Reden", "Reason": "Reden",
"Register": "Registreren",
"Reject invitation": "Uitnodiging weigeren", "Reject invitation": "Uitnodiging weigeren",
"Start authentication": "Authenticatie starten", "Start authentication": "Authenticatie starten",
"Submit": "Bevestigen", "Submit": "Bevestigen",
@ -93,7 +90,6 @@
"Deops user with given id": "Ontmachtigt persoon met de gegeven ID", "Deops user with given id": "Ontmachtigt persoon met de gegeven ID",
"Default": "Standaard", "Default": "Standaard",
"Displays action": "Toont actie", "Displays action": "Toont actie",
"Emoji": "Emoji",
"Enter passphrase": "Wachtwoord invoeren", "Enter passphrase": "Wachtwoord invoeren",
"Error decrypting attachment": "Fout bij het ontsleutelen van de bijlage", "Error decrypting attachment": "Fout bij het ontsleutelen van de bijlage",
"Export": "Wegschrijven", "Export": "Wegschrijven",
@ -648,16 +644,11 @@
"Language and region": "Taal en regio", "Language and region": "Taal en regio",
"Account management": "Accountbeheer", "Account management": "Accountbeheer",
"General": "Algemeen", "General": "Algemeen",
"Legal": "Juridisch",
"Credits": "Met dank aan",
"For help with using %(brand)s, click <a>here</a>.": "Klik <a>hier</a> voor hulp bij het gebruiken van %(brand)s.", "For help with using %(brand)s, click <a>here</a>.": "Klik <a>hier</a> voor hulp bij het gebruiken van %(brand)s.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Klik <a>hier</a> voor hulp bij het gebruiken van %(brand)s of begin een kamer met onze robot met de knop hieronder.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Klik <a>hier</a> voor hulp bij het gebruiken van %(brand)s of begin een kamer met onze robot met de knop hieronder.",
"Help & About": "Hulp & info", "Help & About": "Hulp & info",
"FAQ": "FAQ",
"Versions": "Versies", "Versions": "Versies",
"Preferences": "Voorkeuren",
"Composer": "Opsteller", "Composer": "Opsteller",
"Timeline": "Tijdslijn",
"Room list": "Kamerslijst", "Room list": "Kamerslijst",
"Autocomplete delay (ms)": "Vertraging voor autoaanvullen (ms)", "Autocomplete delay (ms)": "Vertraging voor autoaanvullen (ms)",
"Accept all %(invitedRooms)s invites": "Alle %(invitedRooms)s de uitnodigingen aannemen", "Accept all %(invitedRooms)s invites": "Alle %(invitedRooms)s de uitnodigingen aannemen",
@ -742,7 +733,6 @@
"This homeserver would like to make sure you are not a robot.": "Deze homeserver wil graag weten of je geen robot bent.", "This homeserver would like to make sure you are not a robot.": "Deze homeserver wil graag weten of je geen robot bent.",
"Please review and accept all of the homeserver's policies": "Gelieve het beleid van de homeserver door te nemen en te aanvaarden", "Please review and accept all of the homeserver's policies": "Gelieve het beleid van de homeserver door te nemen en te aanvaarden",
"Please review and accept the policies of this homeserver:": "Gelieve het beleid van deze homeserver door te nemen en te aanvaarden:", "Please review and accept the policies of this homeserver:": "Gelieve het beleid van deze homeserver door te nemen en te aanvaarden:",
"Change": "Wijzigen",
"Email (optional)": "E-mailadres (optioneel)", "Email (optional)": "E-mailadres (optioneel)",
"Phone (optional)": "Telefoonnummer (optioneel)", "Phone (optional)": "Telefoonnummer (optioneel)",
"Join millions for free on the largest public server": "Neem deel aan de grootste publieke server samen met miljoenen anderen", "Join millions for free on the largest public server": "Neem deel aan de grootste publieke server samen met miljoenen anderen",
@ -750,7 +740,6 @@
"Couldn't load page": "Kon pagina niet laden", "Couldn't load page": "Kon pagina niet laden",
"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.": "Je bericht is niet verstuurd omdat deze homeserver zijn limiet voor maandelijks actieve personen heeft bereikt. <a>Neem contact op met je beheerder</a> om de dienst te blijven gebruiken.", "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.": "Je bericht is niet verstuurd omdat deze homeserver zijn limiet voor maandelijks actieve personen heeft bereikt. <a>Neem contact op met je beheerder</a> om de dienst te blijven gebruiken.",
"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.": "Je bericht is niet verstuurd omdat deze homeserver een systeembronlimiet heeft overschreden. <a>Neem contact op met je dienstbeheerder</a> om de dienst te blijven gebruiken.", "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.": "Je bericht is niet verstuurd omdat deze homeserver een systeembronlimiet heeft overschreden. <a>Neem contact op met je dienstbeheerder</a> om de dienst te blijven gebruiken.",
"Guest": "Gast",
"Could not load user profile": "Kon persoonsprofiel niet laden", "Could not load user profile": "Kon persoonsprofiel niet laden",
"Your password has been reset.": "Jouw wachtwoord is opnieuw ingesteld.", "Your password has been reset.": "Jouw wachtwoord is opnieuw ingesteld.",
"Invalid homeserver discovery response": "Ongeldig homeserver-vindbaarheids-antwoord", "Invalid homeserver discovery response": "Ongeldig homeserver-vindbaarheids-antwoord",
@ -881,7 +870,6 @@
"Edited at %(date)s. Click to view edits.": "Bewerkt op %(date)s. Klik om de bewerkingen te bekijken.", "Edited at %(date)s. Click to view edits.": "Bewerkt op %(date)s. Klik om de bewerkingen te bekijken.",
"Message edits": "Berichtbewerkingen", "Message edits": "Berichtbewerkingen",
"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:": "Deze kamer bijwerken vereist dat je de huidige afsluit en in de plaats een nieuwe kamer aanmaakt. Om leden de best mogelijke ervaring te bieden, zullen we:", "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:": "Deze kamer bijwerken vereist dat je de huidige afsluit en in de plaats een nieuwe kamer aanmaakt. Om leden de best mogelijke ervaring te bieden, zullen we:",
"Show all": "Alles tonen",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s hebben %(count)s keer niets gewijzigd", "other": "%(severalUsers)s hebben %(count)s keer niets gewijzigd",
"one": "%(severalUsers)s hebben niets gewijzigd" "one": "%(severalUsers)s hebben niets gewijzigd"
@ -915,7 +903,6 @@
"Displays list of commands with usages and descriptions": "Toont een lijst van beschikbare opdrachten, met hun toepassing en omschrijving", "Displays list of commands with usages and descriptions": "Toont een lijst van beschikbare opdrachten, met hun toepassing en omschrijving",
"Checking server": "Server wordt gecontroleerd", "Checking server": "Server wordt gecontroleerd",
"Disconnect from the identity server <idserver />?": "Wil je de verbinding met de identiteitsserver <idserver /> verbreken?", "Disconnect from the identity server <idserver />?": "Wil je de verbinding met de identiteitsserver <idserver /> verbreken?",
"Disconnect": "Verbinding verbreken",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Om bekenden te kunnen vinden en voor hen vindbaar te zijn gebruik je momenteel <server></server>. Je kan die identiteitsserver hieronder wijzigen.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Om bekenden te kunnen vinden en voor hen vindbaar te zijn gebruik je momenteel <server></server>. Je kan die identiteitsserver hieronder wijzigen.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Je gebruikt momenteel geen identiteitsserver. Voeg er hieronder één toe om bekenden te kunnen vinden en voor hen vindbaar te zijn.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Je gebruikt momenteel geen identiteitsserver. Voeg er hieronder één toe om bekenden te kunnen vinden en voor hen vindbaar te zijn.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Als je de verbinding met je identiteitsserver verbreekt zal je niet door andere personen gevonden kunnen worden, en dat je anderen niet via e-mail of telefoon zal kunnen uitnodigen.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Als je de verbinding met je identiteitsserver verbreekt zal je niet door andere personen gevonden kunnen worden, en dat je anderen niet via e-mail of telefoon zal kunnen uitnodigen.",
@ -924,7 +911,6 @@
"Always show the window menu bar": "De venstermenubalk altijd tonen", "Always show the window menu bar": "De venstermenubalk altijd tonen",
"Unable to revoke sharing for email address": "Kan delen voor dit e-mailadres niet intrekken", "Unable to revoke sharing for email address": "Kan delen voor dit e-mailadres niet intrekken",
"Unable to share email address": "Kan e-mailadres niet delen", "Unable to share email address": "Kan e-mailadres niet delen",
"Revoke": "Intrekken",
"Discovery options will appear once you have added an email above.": "Vindbaarheidopties zullen verschijnen wanneer je een e-mailadres hebt toegevoegd.", "Discovery options will appear once you have added an email above.": "Vindbaarheidopties zullen verschijnen wanneer je een e-mailadres hebt toegevoegd.",
"Unable to revoke sharing for phone number": "Kan delen voor dit telefoonnummer niet intrekken", "Unable to revoke sharing for phone number": "Kan delen voor dit telefoonnummer niet intrekken",
"Unable to share phone number": "Kan telefoonnummer niet delen", "Unable to share phone number": "Kan telefoonnummer niet delen",
@ -967,7 +953,6 @@
"Error changing power level": "Fout bij wijzigen van machtsniveau", "Error changing power level": "Fout bij wijzigen van machtsniveau",
"An error occurred changing the user's power level. Ensure you have sufficient permissions and try again.": "Er is een fout opgetreden bij het wijzigen van het machtsniveau van de persoon. Zorg ervoor dat je over voldoende machtigingen beschikt en probeer het opnieuw.", "An error occurred changing the user's power level. Ensure you have sufficient permissions and try again.": "Er is een fout opgetreden bij het wijzigen van het machtsniveau van de persoon. Zorg ervoor dat je over voldoende machtigingen beschikt en probeer het opnieuw.",
"Verify the link in your inbox": "Verifieer de koppeling in je postvak", "Verify the link in your inbox": "Verifieer de koppeling in je postvak",
"Complete": "Voltooien",
"No recent messages by %(user)s found": "Geen recente berichten door %(user)s gevonden", "No recent messages by %(user)s found": "Geen recente berichten door %(user)s gevonden",
"Try scrolling up in the timeline to see if there are any earlier ones.": "Probeer omhoog te scrollen in de tijdslijn om te kijken of er eerdere zijn.", "Try scrolling up in the timeline to see if there are any earlier ones.": "Probeer omhoog te scrollen in de tijdslijn om te kijken of er eerdere zijn.",
"Remove recent messages by %(user)s": "Recente berichten door %(user)s verwijderen", "Remove recent messages by %(user)s": "Recente berichten door %(user)s verwijderen",
@ -1030,7 +1015,6 @@
"Encryption upgrade available": "Versleutelingsupgrade beschikbaar", "Encryption upgrade available": "Versleutelingsupgrade beschikbaar",
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Typ <code>/help</code> om alle opdrachten te zien. Was het je bedoeling dit als bericht te sturen?", "You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Typ <code>/help</code> om alle opdrachten te zien. Was het je bedoeling dit als bericht te sturen?",
"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.": "Dit vergt validatie van een e-mailadres of telefoonnummer middels de standaard identiteitsserver <server />, maar die server heeft geen gebruiksvoorwaarden.", "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.": "Dit vergt validatie van een e-mailadres of telefoonnummer middels de standaard identiteitsserver <server />, maar die server heeft geen gebruiksvoorwaarden.",
"Custom (%(level)s)": "Aangepast (%(level)s)",
"Error upgrading room": "Upgraden van kamer mislukt", "Error upgrading room": "Upgraden van kamer mislukt",
"Double check that your server supports the room version chosen and try again.": "Ga nogmaals na dat de server de gekozen kamerversie ondersteunt, en probeer het dan opnieuw.", "Double check that your server supports the room version chosen and try again.": "Ga nogmaals na dat de server de gekozen kamerversie ondersteunt, en probeer het dan opnieuw.",
"Verifies a user, session, and pubkey tuple": "Verifieert de combinatie van persoon, sessie en publieke sleutel", "Verifies a user, session, and pubkey tuple": "Verifieert de combinatie van persoon, sessie en publieke sleutel",
@ -1087,7 +1071,6 @@
"Lock": "Hangslot", "Lock": "Hangslot",
"Other users may not trust it": "Mogelijk wantrouwen anderen het", "Other users may not trust it": "Mogelijk wantrouwen anderen het",
"Later": "Later", "Later": "Later",
"Review": "Controleer",
"This bridge was provisioned by <user />.": "Dank aan <user /> voor de brug.", "This bridge was provisioned by <user />.": "Dank aan <user /> voor de brug.",
"This bridge is managed by <user />.": "Brug onderhouden door <user />.", "This bridge is managed by <user />.": "Brug onderhouden door <user />.",
"Show less": "Minder tonen", "Show less": "Minder tonen",
@ -1114,7 +1097,6 @@
"You have not ignored anyone.": "Je hebt niemand genegeerd.", "You have not ignored anyone.": "Je hebt niemand genegeerd.",
"You are currently ignoring:": "Je negeert op dit moment:", "You are currently ignoring:": "Je negeert op dit moment:",
"You are not subscribed to any lists": "Je hebt geen abonnement op een lijst", "You are not subscribed to any lists": "Je hebt geen abonnement op een lijst",
"Unsubscribe": "Abonnement opzeggen",
"View rules": "Bekijk regels", "View rules": "Bekijk regels",
"You are currently subscribed to:": "Je hebt een abonnement op:", "You are currently subscribed to:": "Je hebt een abonnement op:",
"⚠ These settings are meant for advanced users.": "⚠ Deze instellingen zijn bedoeld voor gevorderde personen.", "⚠ These settings are meant for advanced users.": "⚠ Deze instellingen zijn bedoeld voor gevorderde personen.",
@ -1125,7 +1107,6 @@
"Subscribed lists": "Abonnementen op lijsten", "Subscribed lists": "Abonnementen op lijsten",
"Subscribing to a ban list will cause you to join it!": "Wanneer je jezelf abonneert op een banlijst zal je eraan worden toegevoegd!", "Subscribing to a ban list will cause you to join it!": "Wanneer je jezelf abonneert op een banlijst zal je eraan worden toegevoegd!",
"If this isn't what you want, please use a different tool to ignore users.": "Als je dit niet wilt kan je een andere methode gebruiken om personen te negeren.", "If this isn't what you want, please use a different tool to ignore users.": "Als je dit niet wilt kan je een andere methode gebruiken om personen te negeren.",
"Subscribe": "Abonneren",
"Enable desktop notifications for this session": "Bureaubladmeldingen voor deze sessie inschakelen", "Enable desktop notifications for this session": "Bureaubladmeldingen voor deze sessie inschakelen",
"Enable audible notifications for this session": "Meldingen met geluid voor deze sessie inschakelen", "Enable audible notifications for this session": "Meldingen met geluid voor deze sessie inschakelen",
"You should:": "Je zou best:", "You should:": "Je zou best:",
@ -1147,7 +1128,6 @@
"Someone is using an unknown session": "Iemand gebruikt een onbekende sessie", "Someone is using an unknown session": "Iemand gebruikt een onbekende sessie",
"This room is end-to-end encrypted": "Deze kamer is eind-tot-eind-versleuteld", "This room is end-to-end encrypted": "Deze kamer is eind-tot-eind-versleuteld",
"Everyone in this room is verified": "Iedereen in deze kamer is geverifieerd", "Everyone in this room is verified": "Iedereen in deze kamer is geverifieerd",
"Mod": "Mod",
"Direct Messages": "Direct gesprek", "Direct Messages": "Direct gesprek",
"If disabled, messages from encrypted rooms won't appear in search results.": "Dit moet aan staan om te kunnen zoeken in versleutelde kamers.", "If disabled, messages from encrypted rooms won't appear in search results.": "Dit moet aan staan om te kunnen zoeken in versleutelde kamers.",
"Indexed rooms:": "Geïndexeerde kamers:", "Indexed rooms:": "Geïndexeerde kamers:",
@ -1298,7 +1278,6 @@
"Command Autocomplete": "Opdrachten autoaanvullen", "Command Autocomplete": "Opdrachten autoaanvullen",
"Enter your account password to confirm the upgrade:": "Voer je wachtwoord in om het upgraden te bevestigen:", "Enter your account password to confirm the upgrade:": "Voer je wachtwoord in om het upgraden te bevestigen:",
"Restore your key backup to upgrade your encryption": "Herstel je sleutelback-up om je versleuteling te upgraden", "Restore your key backup to upgrade your encryption": "Herstel je sleutelback-up om je versleuteling te upgraden",
"Restore": "Herstellen",
"You'll need to authenticate with the server to confirm the upgrade.": "Je zal moeten inloggen bij de server om het upgraden te bevestigen.", "You'll need to authenticate with the server to confirm the upgrade.": "Je zal moeten inloggen bij de server om het upgraden te bevestigen.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Upgrade deze sessie om er andere sessies mee te verifiëren. Hiermee krijgen de andere sessies toegang tot je versleutelde berichten en is het voor andere personen als vertrouwd gemarkeerd .", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Upgrade deze sessie om er andere sessies mee te verifiëren. Hiermee krijgen de andere sessies toegang tot je versleutelde berichten en is het voor andere personen als vertrouwd gemarkeerd .",
"Upgrade your encryption": "Upgrade je versleuteling", "Upgrade your encryption": "Upgrade je versleuteling",
@ -1666,7 +1645,6 @@
"The authenticity of this encrypted message can't be guaranteed on this device.": "De echtheid van dit versleutelde bericht kan op dit apparaat niet worden gegarandeerd.", "The authenticity of this encrypted message can't be guaranteed on this device.": "De echtheid van dit versleutelde bericht kan op dit apparaat niet worden gegarandeerd.",
"To link to this room, please add an address.": "Voeg een adres toe om naar deze kamer te kunnen verwijzen.", "To link to this room, please add an address.": "Voeg een adres toe om naar deze kamer te kunnen verwijzen.",
"Remove messages sent by others": "Berichten van anderen verwijderen", "Remove messages sent by others": "Berichten van anderen verwijderen",
"Privacy": "Privacy",
"Appearance Settings only affect this %(brand)s session.": "Weergave-instellingen zijn alleen van toepassing op deze %(brand)s sessie.", "Appearance Settings only affect this %(brand)s session.": "Weergave-instellingen zijn alleen van toepassing op deze %(brand)s sessie.",
"Customise your appearance": "Weergave aanpassen", "Customise your appearance": "Weergave aanpassen",
"Use between %(min)s pt and %(max)s pt": "Gebruik een getal tussen %(min)s pt en %(max)s pt", "Use between %(min)s pt and %(max)s pt": "Gebruik een getal tussen %(min)s pt en %(max)s pt",
@ -1890,7 +1868,6 @@
"Dismiss read marker and jump to bottom": "Verlaat de leesmarkering en spring naar beneden", "Dismiss read marker and jump to bottom": "Verlaat de leesmarkering en spring naar beneden",
"Cancel replying to a message": "Antwoord op bericht annuleren", "Cancel replying to a message": "Antwoord op bericht annuleren",
"New line": "Nieuwe regel", "New line": "Nieuwe regel",
"Space": "Space",
"Cancel autocomplete": "Autoaanvullen annuleren", "Cancel autocomplete": "Autoaanvullen annuleren",
"Autocomplete": "Autoaanvullen", "Autocomplete": "Autoaanvullen",
"Room List": "Kamerslijst", "Room List": "Kamerslijst",
@ -1977,7 +1954,6 @@
"The widget will verify your user ID, but won't be able to perform actions for you:": "De widget zal uw persoon-ID verifiëren, maar zal geen acties voor u kunnen uitvoeren:", "The widget will verify your user ID, but won't be able to perform actions for you:": "De widget zal uw persoon-ID verifiëren, maar zal geen acties voor u kunnen uitvoeren:",
"Allow this widget to verify your identity": "Sta deze widget toe om uw identiteit te verifiëren", "Allow this widget to verify your identity": "Sta deze widget toe om uw identiteit te verifiëren",
"Decline All": "Alles weigeren", "Decline All": "Alles weigeren",
"Approve": "Goedkeuren",
"This widget would like to:": "Deze widget zou willen:", "This widget would like to:": "Deze widget zou willen:",
"Approve widget permissions": "Machtigingen voor widgets goedkeuren", "Approve widget permissions": "Machtigingen voor widgets goedkeuren",
"Use your preferred Matrix homeserver if you have one, or host your own.": "Gebruik de Matrix-homeserver van je voorkeur als je er een hebt, of host je eigen.", "Use your preferred Matrix homeserver if you have one, or host your own.": "Gebruik de Matrix-homeserver van je voorkeur als je er een hebt, of host je eigen.",
@ -2097,8 +2073,6 @@
"Who are you working with?": "Met wie werk je samen?", "Who are you working with?": "Met wie werk je samen?",
"Skip for now": "Voorlopig overslaan", "Skip for now": "Voorlopig overslaan",
"Failed to create initial space rooms": "Het maken van de Space kamers is mislukt", "Failed to create initial space rooms": "Het maken van de Space kamers is mislukt",
"Support": "Ondersteuning",
"Random": "Willekeurig",
"Welcome to <name/>": "Welkom in <name/>", "Welcome to <name/>": "Welkom in <name/>",
"%(count)s members": { "%(count)s members": {
"other": "%(count)s personen", "other": "%(count)s personen",
@ -2220,8 +2194,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Kies een kamer of gesprek om hem toe te voegen. Dit is een Space voor jou, niemand zal hiervan een melding krijgen. Je kan er later meer toevoegen.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Kies een kamer of gesprek om hem toe te voegen. Dit is een Space voor jou, niemand zal hiervan een melding krijgen. Je kan er later meer toevoegen.",
"What do you want to organise?": "Wat wil je organiseren?", "What do you want to organise?": "Wat wil je organiseren?",
"You have no ignored users.": "Je hebt geen persoon genegeerd.", "You have no ignored users.": "Je hebt geen persoon genegeerd.",
"Play": "Afspelen",
"Pause": "Pauze",
"Select a room below first": "Start met selecteren van een kamer hieronder", "Select a room below first": "Start met selecteren van een kamer hieronder",
"Join the beta": "Beta inschakelen", "Join the beta": "Beta inschakelen",
"Leave the beta": "Beta verlaten", "Leave the beta": "Beta verlaten",
@ -2238,7 +2210,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "We hebben geen toegang tot je microfoon. Controleer je browserinstellingen en probeer het opnieuw.", "We were unable to access your microphone. Please check your browser settings and try again.": "We hebben geen toegang tot je microfoon. Controleer je browserinstellingen en probeer het opnieuw.",
"Unable to access your microphone": "Geen toegang tot je microfoon", "Unable to access your microphone": "Geen toegang tot je microfoon",
"Your access token gives full access to your account. Do not share it with anyone.": "Jouw toegangstoken geeft je toegang tot je account. Deel hem niet met anderen.", "Your access token gives full access to your account. Do not share it with anyone.": "Jouw toegangstoken geeft je toegang tot je account. Deel hem niet met anderen.",
"Access Token": "Toegangstoken",
"Please enter a name for the space": "Vul een naam in voor deze space", "Please enter a name for the space": "Vul een naam in voor deze space",
"Connecting": "Verbinden", "Connecting": "Verbinden",
"Message search initialisation failed": "Zoeken in berichten opstarten is mislukt", "Message search initialisation failed": "Zoeken in berichten opstarten is mislukt",
@ -2611,7 +2582,6 @@
"Use a more compact 'Modern' layout": "Compacte 'Moderne'-indeling gebruiken", "Use a more compact 'Modern' layout": "Compacte 'Moderne'-indeling gebruiken",
"Other rooms": "Andere kamers", "Other rooms": "Andere kamers",
"Automatically send debug logs on any error": "Automatisch foutenlogboek versturen bij een fout", "Automatically send debug logs on any error": "Automatisch foutenlogboek versturen bij een fout",
"Rename": "Hernoemen",
"Show all threads": "Threads weergeven", "Show all threads": "Threads weergeven",
"Keep discussions organised with threads": "Houd threads georganiseerd", "Keep discussions organised with threads": "Houd threads georganiseerd",
"Shows all threads you've participated in": "Toon alle threads waarin je hebt bijgedragen", "Shows all threads you've participated in": "Toon alle threads waarin je hebt bijgedragen",
@ -3257,7 +3227,6 @@
"You made it!": "Het is je gelukt!", "You made it!": "Het is je gelukt!",
"Interactively verify by emoji": "Interactief verifiëren door emoji", "Interactively verify by emoji": "Interactief verifiëren door emoji",
"Manually verify by text": "Handmatig verifiëren via tekst", "Manually verify by text": "Handmatig verifiëren via tekst",
"View all": "Bekijk alles",
"Security recommendations": "Beveiligingsaanbevelingen", "Security recommendations": "Beveiligingsaanbevelingen",
"Filter devices": "Filter apparaten", "Filter devices": "Filter apparaten",
"Inactive for %(inactiveAgeDays)s days or longer": "Inactief gedurende %(inactiveAgeDays)s dagen of langer", "Inactive for %(inactiveAgeDays)s days or longer": "Inactief gedurende %(inactiveAgeDays)s dagen of langer",
@ -3292,7 +3261,6 @@
"Sessions": "Sessies", "Sessions": "Sessies",
"Your server doesn't support disabling sending read receipts.": "Jouw server biedt geen ondersteuning voor het uitschakelen van het verzenden van leesbevestigingen.", "Your server doesn't support disabling sending read receipts.": "Jouw server biedt geen ondersteuning voor het uitschakelen van het verzenden van leesbevestigingen.",
"Share your activity and status with others.": "Deel je activiteit en status met anderen.", "Share your activity and status with others.": "Deel je activiteit en status met anderen.",
"Presence": "Aanwezigheid",
"Welcome": "Welkom", "Welcome": "Welkom",
"Dont miss a thing by taking %(brand)s with you": "Mis niets door %(brand)s mee te nemen", "Dont miss a thing by taking %(brand)s with you": "Mis niets door %(brand)s mee te nemen",
"Show shortcut to welcome checklist above the room list": "Toon snelkoppeling naar welkomstchecklist boven de kamer gids", "Show shortcut to welcome checklist above the room list": "Toon snelkoppeling naar welkomstchecklist boven de kamer gids",
@ -3319,7 +3287,6 @@
"Your server has native support": "Jouw server heeft native ondersteuning", "Your server has native support": "Jouw server heeft native ondersteuning",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s of %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s of %(appLinks)s",
"%(qrCode)s or %(emojiCompare)s": "%(qrCode)s of %(emojiCompare)s", "%(qrCode)s or %(emojiCompare)s": "%(qrCode)s of %(emojiCompare)s",
"Show": "Toon",
"Completing set up of your new device": "De configuratie van je nieuwe apparaat voltooien", "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", "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", "Review and approve the sign in": "Controleer en keur de aanmelding goed",
@ -3460,7 +3427,22 @@
"dark": "Donker", "dark": "Donker",
"beta": "Beta", "beta": "Beta",
"attachment": "Bijlage", "attachment": "Bijlage",
"appearance": "Weergave" "appearance": "Weergave",
"guest": "Gast",
"legal": "Juridisch",
"credits": "Met dank aan",
"faq": "FAQ",
"access_token": "Toegangstoken",
"preferences": "Voorkeuren",
"presence": "Aanwezigheid",
"timeline": "Tijdslijn",
"privacy": "Privacy",
"camera": "Camera",
"microphone": "Microfoon",
"emoji": "Emoji",
"random": "Willekeurig",
"support": "Ondersteuning",
"space": "Space"
}, },
"action": { "action": {
"continue": "Doorgaan", "continue": "Doorgaan",
@ -3530,7 +3512,23 @@
"call": "Bellen", "call": "Bellen",
"back": "Terug", "back": "Terug",
"add": "Toevoegen", "add": "Toevoegen",
"accept": "Aannemen" "accept": "Aannemen",
"disconnect": "Verbinding verbreken",
"change": "Wijzigen",
"subscribe": "Abonneren",
"unsubscribe": "Abonnement opzeggen",
"approve": "Goedkeuren",
"complete": "Voltooien",
"revoke": "Intrekken",
"rename": "Hernoemen",
"view_all": "Bekijk alles",
"show_all": "Alles tonen",
"show": "Toon",
"review": "Controleer",
"restore": "Herstellen",
"play": "Afspelen",
"pause": "Pauze",
"register": "Registreren"
}, },
"a11y": { "a11y": {
"user_menu": "Persoonsmenu" "user_menu": "Persoonsmenu"
@ -3584,7 +3582,9 @@
"default": "Standaard", "default": "Standaard",
"restricted": "Beperkte toegang", "restricted": "Beperkte toegang",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Beheerder" "admin": "Beheerder",
"custom": "Aangepast (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Als je een bug via GitHub hebt ingediend, kunnen foutopsporingslogboeken ons helpen het probleem op te sporen. ", "introduction": "Als je een bug via GitHub hebt ingediend, kunnen foutopsporingslogboeken ons helpen het probleem op te sporen. ",

View file

@ -244,7 +244,6 @@
"powered by Matrix": "Matrixdriven", "powered by Matrix": "Matrixdriven",
"Sign in with": "Logg inn med", "Sign in with": "Logg inn med",
"Email address": "Epostadresse", "Email address": "Epostadresse",
"Register": "Meld deg inn",
"Something went wrong!": "Noko gjekk gale!", "Something went wrong!": "Noko gjekk gale!",
"What's New": "Kva er nytt", "What's New": "Kva er nytt",
"What's new?": "Kva er nytt?", "What's new?": "Kva er nytt?",
@ -435,8 +434,6 @@
"No Webcams detected": "Ingen Nettkamera funne", "No Webcams detected": "Ingen Nettkamera funne",
"Default Device": "Eininga som brukast i utgangspunktet", "Default Device": "Eininga som brukast i utgangspunktet",
"Audio Output": "Ljodavspeling", "Audio Output": "Ljodavspeling",
"Microphone": "Ljodopptaking",
"Camera": "Kamera",
"Email": "Epost", "Email": "Epost",
"Account": "Brukar", "Account": "Brukar",
"%(brand)s version:": "%(brand)s versjon:", "%(brand)s version:": "%(brand)s versjon:",
@ -450,7 +447,6 @@
"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.": "Kan ikkje kopla til heimtenaren - ver venleg og sjekk tilkoplinga di, og sjå til at <a>heimtenaren din sitt CCL-sertifikat</a> er stolt på og at ein nettlesartillegg ikkje hindrar førespurnader.", "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.": "Kan ikkje kopla til heimtenaren - ver venleg og sjekk tilkoplinga di, og sjå til at <a>heimtenaren din sitt CCL-sertifikat</a> er stolt på og at ein nettlesartillegg ikkje hindrar førespurnader.",
"This server does not support authentication with a phone number.": "Denne tenaren støttar ikkje stadfesting gjennom telefonnummer.", "This server does not support authentication with a phone number.": "Denne tenaren støttar ikkje stadfesting gjennom telefonnummer.",
"Commands": "Kommandoar", "Commands": "Kommandoar",
"Emoji": "Emoji",
"Notify the whole room": "Varsle heile rommet", "Notify the whole room": "Varsle heile rommet",
"Room Notification": "Romvarsel", "Room Notification": "Romvarsel",
"Users": "Brukarar", "Users": "Brukarar",
@ -500,7 +496,6 @@
"other": "Du har %(count)s uleste varslingar i ein tidligare versjon av dette rommet.", "other": "Du har %(count)s uleste varslingar i ein tidligare versjon av dette rommet.",
"one": "Du har %(count)s ulest varsel i ein tidligare versjon av dette rommet." "one": "Du har %(count)s ulest varsel i ein tidligare versjon av dette rommet."
}, },
"Guest": "Gjest",
"Could not load user profile": "Klarde ikkje å laste brukarprofilen", "Could not load user profile": "Klarde ikkje å laste brukarprofilen",
"Your password has been reset.": "Passodet ditt vart nullstilt.", "Your password has been reset.": "Passodet ditt vart nullstilt.",
"Invalid homeserver discovery response": "Feil svar frå heimetenaren (discovery response)", "Invalid homeserver discovery response": "Feil svar frå heimetenaren (discovery response)",
@ -580,7 +575,6 @@
"Identity server has no terms of service": "Identitetstenaren manglar bruksvilkår", "Identity server has no terms of service": "Identitetstenaren manglar bruksvilkår",
"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.": "Denne handlinga krev kommunikasjon mot <server />(standard identitetstenar) for å verifisere e-post eller telefonnummer, men tenaren manglar bruksvilkår.", "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.": "Denne handlinga krev kommunikasjon mot <server />(standard identitetstenar) for å verifisere e-post eller telefonnummer, men tenaren manglar bruksvilkår.",
"Only continue if you trust the owner of the server.": "Gå vidare så lenge du har tillit til eigar av tenaren.", "Only continue if you trust the owner of the server.": "Gå vidare så lenge du har tillit til eigar av tenaren.",
"Custom (%(level)s)": "Tilpassa (%(level)s)",
"Error upgrading room": "Feil ved oppgradering av rom", "Error upgrading room": "Feil ved oppgradering av rom",
"Double check that your server supports the room version chosen and try again.": "Sjekk at tenar støttar denne romversjonen, og prøv på nytt.", "Double check that your server supports the room version chosen and try again.": "Sjekk at tenar støttar denne romversjonen, og prøv på nytt.",
"Verifies a user, session, and pubkey tuple": "Verifiser brukar, økt eller public-key objekt (pubkey tuple)", "Verifies a user, session, and pubkey tuple": "Verifiser brukar, økt eller public-key objekt (pubkey tuple)",
@ -704,9 +698,7 @@
"Invalid theme schema.": "", "Invalid theme schema.": "",
"Language and region": "Språk og region", "Language and region": "Språk og region",
"General": "Generelt", "General": "Generelt",
"Preferences": "Innstillingar",
"Room list": "Romkatalog", "Room list": "Romkatalog",
"Timeline": "Historikk",
"Autocomplete delay (ms)": "Forsinkelse på autofullfør (ms)", "Autocomplete delay (ms)": "Forsinkelse på autofullfør (ms)",
"Room information": "Rominformasjon", "Room information": "Rominformasjon",
"Room Addresses": "Romadresser", "Room Addresses": "Romadresser",
@ -763,7 +755,6 @@
"Enable audible notifications for this session": "Aktiver høyrbare varslingar for denne økta", "Enable audible notifications for this session": "Aktiver høyrbare varslingar for denne økta",
"Custom theme URL": "Tilpassa tema-URL", "Custom theme URL": "Tilpassa tema-URL",
"Add theme": "Legg til tema", "Add theme": "Legg til tema",
"Credits": "Bidragsytarar",
"For help with using %(brand)s, click <a>here</a>.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>.", "For help with using %(brand)s, click <a>here</a>.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>, eller start ein samtale med vår bot ved å bruke knappen under.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>, eller start ein samtale med vår bot ved å bruke knappen under.",
"Clear cache and reload": "Tøm buffer og last inn på nytt", "Clear cache and reload": "Tøm buffer og last inn på nytt",
@ -877,9 +868,7 @@
"Email Address": "E-postadresse", "Email Address": "E-postadresse",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Du bør <b>fjerne dine personlege data</b> frå identitetstenaren <idserver /> før du koplar frå. Dessverre er identitetstenaren <idserver /> utilgjengeleg og kan ikkje nåast akkurat no.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Du bør <b>fjerne dine personlege data</b> frå identitetstenaren <idserver /> før du koplar frå. Dessverre er identitetstenaren <idserver /> utilgjengeleg og kan ikkje nåast akkurat no.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Vi tilrår at du slettar personleg informasjon, som e-postadresser og telefonnummer frå identitetstenaren før du koplar frå.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Vi tilrår at du slettar personleg informasjon, som e-postadresser og telefonnummer frå identitetstenaren før du koplar frå.",
"Privacy": "Personvern",
"Versions": "Versjonar", "Versions": "Versjonar",
"Legal": "Juridisk",
"Identity server": "Identitetstenar", "Identity server": "Identitetstenar",
"You're already in a call with this person.": "Du er allereie i ein samtale med denne personen.", "You're already in a call with this person.": "Du er allereie i ein samtale med denne personen.",
"Already in call": "Allereie i ein samtale", "Already in call": "Allereie i ein samtale",
@ -949,7 +938,6 @@
"Not a valid identity server (status code %(code)s)": "Ikkje ein gyldig identietstenar (statuskode %(code)s)", "Not a valid identity server (status code %(code)s)": "Ikkje ein gyldig identietstenar (statuskode %(code)s)",
"Identity server URL must be HTTPS": "URL for identitetstenar må vera HTTPS", "Identity server URL must be HTTPS": "URL for identitetstenar må vera HTTPS",
"Review to ensure your account is safe": "Undersøk dette for å gjere kontoen trygg", "Review to ensure your account is safe": "Undersøk dette for å gjere kontoen trygg",
"Review": "Undersøk",
"Results are only revealed when you end the poll": "Resultatet blir synleg når du avsluttar røystinga", "Results are only revealed when you end the poll": "Resultatet blir synleg når du avsluttar røystinga",
"Results will be visible when the poll is ended": "Resultata vil bli synlege når røystinga er ferdig", "Results will be visible when the poll is ended": "Resultata vil bli synlege når røystinga er ferdig",
"Enable Markdown": "Aktiver Markdown", "Enable Markdown": "Aktiver Markdown",
@ -967,7 +955,6 @@
"To view all keyboard shortcuts, <a>click here</a>.": "For å sjå alle tastatursnarvegane, <a>klikk her</a>.", "To view all keyboard shortcuts, <a>click here</a>.": "For å sjå alle tastatursnarvegane, <a>klikk her</a>.",
"Deactivate account": "Avliv brukarkontoen", "Deactivate account": "Avliv brukarkontoen",
"Enter a new identity server": "Skriv inn ein ny identitetstenar", "Enter a new identity server": "Skriv inn ein ny identitetstenar",
"Rename": "Endra namn",
"Click the button below to confirm signing out these devices.": { "Click the button below to confirm signing out these devices.": {
"one": "Trykk på knappen under for å stadfesta utlogging frå denne eininga." "one": "Trykk på knappen under for å stadfesta utlogging frå denne eininga."
}, },
@ -1031,7 +1018,16 @@
"description": "Skildring", "description": "Skildring",
"dark": "Mørkt tema", "dark": "Mørkt tema",
"attachment": "Vedlegg", "attachment": "Vedlegg",
"appearance": "Utsjånad" "appearance": "Utsjånad",
"guest": "Gjest",
"legal": "Juridisk",
"credits": "Bidragsytarar",
"preferences": "Innstillingar",
"timeline": "Historikk",
"privacy": "Personvern",
"camera": "Kamera",
"microphone": "Ljodopptaking",
"emoji": "Emoji"
}, },
"action": { "action": {
"continue": "Fortset", "continue": "Fortset",
@ -1077,7 +1073,10 @@
"cancel": "Bryt av", "cancel": "Bryt av",
"back": "Attende", "back": "Attende",
"add": "Legg til", "add": "Legg til",
"accept": "Sei ja" "accept": "Sei ja",
"rename": "Endra namn",
"review": "Undersøk",
"register": "Meld deg inn"
}, },
"labs": { "labs": {
"pinning": "Meldingsfesting", "pinning": "Meldingsfesting",
@ -1098,7 +1097,8 @@
"default": "Opphavleg innstilling", "default": "Opphavleg innstilling",
"restricted": "Avgrensa", "restricted": "Avgrensa",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Administrator" "admin": "Administrator",
"custom": "Tilpassa (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "For å rapportere eit Matrix-relatert sikkerheitsproblem, les Matrix.org sin <a>Security Disclosure Policy</a>.", "matrix_security_issue": "For å rapportere eit Matrix-relatert sikkerheitsproblem, les Matrix.org sin <a>Security Disclosure Policy</a>.",

View file

@ -68,7 +68,6 @@
"Usage": "Usatge", "Usage": "Usatge",
"Thank you!": "Mercés !", "Thank you!": "Mercés !",
"Reason": "Rason", "Reason": "Rason",
"Review": "Reveire",
"Notifications": "Notificacions", "Notifications": "Notificacions",
"Ok": "Validar", "Ok": "Validar",
"Set up": "Parametrar", "Set up": "Parametrar",
@ -104,25 +103,14 @@
"Restore from Backup": "Restablir a partir de l'archiu", "Restore from Backup": "Restablir a partir de l'archiu",
"Off": "Atudat", "Off": "Atudat",
"Display Name": "Nom d'afichatge", "Display Name": "Nom d'afichatge",
"Disconnect": "Se desconnectar",
"Change": "Cambiar",
"Profile": "Perfil", "Profile": "Perfil",
"Account": "Compte", "Account": "Compte",
"General": "General", "General": "General",
"Legal": "Legal",
"Credits": "Crèdits",
"FAQ": "FAQ",
"Versions": "Versions", "Versions": "Versions",
"Unsubscribe": "Se desabonar",
"Subscribe": "S'inscriure",
"Preferences": "Preferéncias",
"Composer": "Compositor", "Composer": "Compositor",
"Timeline": "Axe temporal",
"Unignore": "Ignorar pas", "Unignore": "Ignorar pas",
"Security & Privacy": "Seguretat e vida privada", "Security & Privacy": "Seguretat e vida privada",
"Audio Output": "Sortida àudio", "Audio Output": "Sortida àudio",
"Microphone": "Microfòn",
"Camera": "Aparelh de fotografiar",
"Bridges": "Bridges", "Bridges": "Bridges",
"Sounds": "Sons", "Sounds": "Sons",
"Browse": "Percórrer", "Browse": "Percórrer",
@ -130,10 +118,7 @@
"Permissions": "Permissions", "Permissions": "Permissions",
"Encryption": "Chiframent", "Encryption": "Chiframent",
"Encrypted": "Chifrat", "Encrypted": "Chifrat",
"Complete": "Acabat",
"Revoke": "Revocar",
"Phone Number": "Numèro de telefòn", "Phone Number": "Numèro de telefòn",
"Mod": "Moderador",
"Unencrypted": "Pas chifrat", "Unencrypted": "Pas chifrat",
"Hangup": "Penjar", "Hangup": "Penjar",
"Italics": "Italicas", "Italics": "Italicas",
@ -160,7 +145,6 @@
"Today": "Uèi", "Today": "Uèi",
"Yesterday": "Ièr", "Yesterday": "Ièr",
"Show image": "Afichar l'imatge", "Show image": "Afichar l'imatge",
"Show all": "O mostrar tot",
"Failed to copy": "Impossible de copiar", "Failed to copy": "Impossible de copiar",
"Smileys & People": "Emoticònas e personatges", "Smileys & People": "Emoticònas e personatges",
"Animals & Nature": "Animals e natura", "Animals & Nature": "Animals e natura",
@ -201,21 +185,17 @@
"Email": "Corrièl", "Email": "Corrièl",
"Phone": "Telefòn", "Phone": "Telefòn",
"Passwords don't match": "Los senhals correspondon pas", "Passwords don't match": "Los senhals correspondon pas",
"Register": "S'enregistrar",
"Unknown error": "Error desconeguda", "Unknown error": "Error desconeguda",
"Search failed": "La recèrca a fracassat", "Search failed": "La recèrca a fracassat",
"Feedback": "Comentaris", "Feedback": "Comentaris",
"Incorrect password": "Senhal incorrècte", "Incorrect password": "Senhal incorrècte",
"Commands": "Comandas", "Commands": "Comandas",
"Emoji": "Emoji",
"Users": "Utilizaires", "Users": "Utilizaires",
"Export": "Exportar", "Export": "Exportar",
"Import": "Importar", "Import": "Importar",
"Restore": "Restablir",
"Success!": "Capitada!", "Success!": "Capitada!",
"Navigation": "Navigacion", "Navigation": "Navigacion",
"Upload a file": "Actualizar un fichièr", "Upload a file": "Actualizar un fichièr",
"Space": "Espaci",
"Explore rooms": "Percórrer las salas", "Explore rooms": "Percórrer las salas",
"Create Account": "Crear un compte", "Create Account": "Crear un compte",
"Click the button below to confirm adding this email address.": "Clicatz sus lo boton aicí dejós per confirmar l'adicion de l'adreça e-mail.", "Click the button below to confirm adding this email address.": "Clicatz sus lo boton aicí dejós per confirmar l'adicion de l'adreça e-mail.",
@ -245,7 +225,16 @@
"description": "descripcion", "description": "descripcion",
"dark": "Escur", "dark": "Escur",
"attachment": "Pèça junta", "attachment": "Pèça junta",
"appearance": "Aparéncia" "appearance": "Aparéncia",
"legal": "Legal",
"credits": "Crèdits",
"faq": "FAQ",
"preferences": "Preferéncias",
"timeline": "Axe temporal",
"camera": "Aparelh de fotografiar",
"microphone": "Microfòn",
"emoji": "Emoji",
"space": "Espaci"
}, },
"action": { "action": {
"continue": "Contunhar", "continue": "Contunhar",
@ -293,7 +282,17 @@
"cancel": "Anullar", "cancel": "Anullar",
"back": "Precedenta", "back": "Precedenta",
"add": "Ajustar", "add": "Ajustar",
"accept": "Acceptar" "accept": "Acceptar",
"disconnect": "Se desconnectar",
"change": "Cambiar",
"subscribe": "S'inscriure",
"unsubscribe": "Se desabonar",
"complete": "Acabat",
"revoke": "Revocar",
"show_all": "O mostrar tot",
"review": "Reveire",
"restore": "Restablir",
"register": "S'enregistrar"
}, },
"keyboard": { "keyboard": {
"home": "Dorsièr personal", "home": "Dorsièr personal",
@ -315,6 +314,7 @@
"power_level": { "power_level": {
"default": "Predefinit", "default": "Predefinit",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Admin" "admin": "Admin",
"mod": "Moderador"
} }
} }

View file

@ -31,8 +31,6 @@
"Usage": "Użycie", "Usage": "Użycie",
"Unban": "Odbanuj", "Unban": "Odbanuj",
"Account": "Konto", "Account": "Konto",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Are you sure?": "Czy jesteś pewien?", "Are you sure?": "Czy jesteś pewien?",
"Banned users": "Zbanowani użytkownicy", "Banned users": "Zbanowani użytkownicy",
"Change Password": "Zmień Hasło", "Change Password": "Zmień Hasło",
@ -86,7 +84,6 @@
"Download %(text)s": "Pobierz %(text)s", "Download %(text)s": "Pobierz %(text)s",
"Email": "E-mail", "Email": "E-mail",
"Email address": "Adres e-mail", "Email address": "Adres e-mail",
"Emoji": "Emoji",
"Enable automatic language detection for syntax highlighting": "Włącz automatyczne rozpoznawanie języka dla podświetlania składni", "Enable automatic language detection for syntax highlighting": "Włącz automatyczne rozpoznawanie języka dla podświetlania składni",
"Enter passphrase": "Wpisz frazę", "Enter passphrase": "Wpisz frazę",
"Error decrypting attachment": "Błąd odszyfrowywania załącznika", "Error decrypting attachment": "Błąd odszyfrowywania załącznika",
@ -148,7 +145,6 @@
"Privileged Users": "Użytkownicy uprzywilejowani", "Privileged Users": "Użytkownicy uprzywilejowani",
"Profile": "Profil", "Profile": "Profil",
"Reason": "Powód", "Reason": "Powód",
"Register": "Rejestracja",
"Reject invitation": "Odrzuć zaproszenie", "Reject invitation": "Odrzuć zaproszenie",
"Return to login screen": "Wróć do ekranu logowania", "Return to login screen": "Wróć do ekranu logowania",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nie ma uprawnień, by wysyłać Ci powiadomienia - sprawdź ustawienia swojej przeglądarki", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nie ma uprawnień, by wysyłać Ci powiadomienia - sprawdź ustawienia swojej przeglądarki",
@ -612,8 +608,6 @@
"Language and region": "Język i region", "Language and region": "Język i region",
"Account management": "Zarządzanie kontem", "Account management": "Zarządzanie kontem",
"Versions": "Wersje", "Versions": "Wersje",
"Preferences": "Preferencje",
"Timeline": "Oś czasu",
"Room list": "Lista pokojów", "Room list": "Lista pokojów",
"Security & Privacy": "Bezpieczeństwo i prywatność", "Security & Privacy": "Bezpieczeństwo i prywatność",
"Room Addresses": "Adresy pokoju", "Room Addresses": "Adresy pokoju",
@ -735,21 +729,16 @@
"The identity server you have chosen does not have any terms of service.": "Serwer tożsamości który został wybrany nie posiada warunków użytkowania.", "The identity server you have chosen does not have any terms of service.": "Serwer tożsamości który został wybrany nie posiada warunków użytkowania.",
"Only continue if you trust the owner of the server.": "Kontynuj tylko wtedy, gdy ufasz właścicielowi serwera.", "Only continue if you trust the owner of the server.": "Kontynuj tylko wtedy, gdy ufasz właścicielowi serwera.",
"Disconnect from the identity server <idserver />?": "Odłączyć od serwera tożsamości <idserver />?", "Disconnect from the identity server <idserver />?": "Odłączyć od serwera tożsamości <idserver />?",
"Disconnect": "Odłącz",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Używasz <server></server>, aby odnajdywać i móc być odnajdywanym przez istniejące kontakty, które znasz. Możesz zmienić serwer tożsamości poniżej.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Używasz <server></server>, aby odnajdywać i móc być odnajdywanym przez istniejące kontakty, które znasz. Możesz zmienić serwer tożsamości poniżej.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Nie używasz serwera tożsamości. Aby odkrywać i być odkrywanym przez istniejące kontakty które znasz, dodaj jeden poniżej.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Nie używasz serwera tożsamości. Aby odkrywać i być odkrywanym przez istniejące kontakty które znasz, dodaj jeden poniżej.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Odłączenie się od serwera tożsamości oznacza, że inni nie będą mogli Cię odnaleźć ani Ty nie będziesz w stanie zaprosić nikogo za pomocą e-maila czy telefonu.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Odłączenie się od serwera tożsamości oznacza, że inni nie będą mogli Cię odnaleźć ani Ty nie będziesz w stanie zaprosić nikogo za pomocą e-maila czy telefonu.",
"Enter a new identity server": "Wprowadź nowy serwer tożsamości", "Enter a new identity server": "Wprowadź nowy serwer tożsamości",
"Change": "Zmień",
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Wyrażasz zgodę na warunki użytkowania serwera%(serverName)s aby pozwolić na odkrywanie Ciebie za pomocą adresu e-mail oraz numeru telefonu.", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Wyrażasz zgodę na warunki użytkowania serwera%(serverName)s aby pozwolić na odkrywanie Ciebie za pomocą adresu e-mail oraz numeru telefonu.",
"Discovery": "Odkrywanie", "Discovery": "Odkrywanie",
"Deactivate account": "Dezaktywuj konto", "Deactivate account": "Dezaktywuj konto",
"Legal": "Zasoby prawne",
"Credits": "Podziękowania",
"For help with using %(brand)s, click <a>here</a>.": "Aby uzyskać pomoc w używaniu %(brand)s, naciśnij <a>tutaj</a>.", "For help with using %(brand)s, click <a>here</a>.": "Aby uzyskać pomoc w używaniu %(brand)s, naciśnij <a>tutaj</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Aby uzyskać pomoc w korzystaniu z %(brand)s, kliknij <a>tutaj</a> lub rozpocznij czat z botem za pomocą przycisku poniżej.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Aby uzyskać pomoc w korzystaniu z %(brand)s, kliknij <a>tutaj</a> lub rozpocznij czat z botem za pomocą przycisku poniżej.",
"Chat with %(brand)s Bot": "Rozmowa z Botem %(brand)s", "Chat with %(brand)s Bot": "Rozmowa z Botem %(brand)s",
"FAQ": "Najczęściej zadawane pytania",
"Always show the window menu bar": "Zawsze pokazuj pasek menu okna", "Always show the window menu bar": "Zawsze pokazuj pasek menu okna",
"Add Email Address": "Dodaj adres e-mail", "Add Email Address": "Dodaj adres e-mail",
"Add Phone Number": "Dodaj numer telefonu", "Add Phone Number": "Dodaj numer telefonu",
@ -759,7 +748,6 @@
"Changes the avatar of the current room": "Zmienia awatar dla obecnego pokoju", "Changes the avatar of the current room": "Zmienia awatar dla obecnego pokoju",
"Use an identity server": "Użyj serwera tożsamości", "Use an identity server": "Użyj serwera tożsamości",
"Show previews/thumbnails for images": "Pokaż podgląd/miniatury obrazów", "Show previews/thumbnails for images": "Pokaż podgląd/miniatury obrazów",
"Custom (%(level)s)": "Własny (%(level)s)",
"Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Użyj serwera tożsamości, by zaprosić z użyciem adresu e-mail. Kliknij dalej, żeby użyć domyślnego serwera tożsamości (%(defaultIdentityServerName)s), lub zmień w Ustawieniach.", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Użyj serwera tożsamości, by zaprosić z użyciem adresu e-mail. Kliknij dalej, żeby użyć domyślnego serwera tożsamości (%(defaultIdentityServerName)s), lub zmień w Ustawieniach.",
"Use an identity server to invite by email. Manage in Settings.": "Użyj serwera tożsamości, by zaprosić za pomocą adresu e-mail. Zarządzaj w ustawieniach.", "Use an identity server to invite by email. Manage in Settings.": "Użyj serwera tożsamości, by zaprosić za pomocą adresu e-mail. Zarządzaj w ustawieniach.",
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
@ -857,7 +845,6 @@
"Add theme": "Dodaj motyw", "Add theme": "Dodaj motyw",
"Ignored users": "Zignorowani użytkownicy", "Ignored users": "Zignorowani użytkownicy",
"⚠ These settings are meant for advanced users.": "⚠ Te ustawienia są przeznaczone dla zaawansowanych użytkowników.", "⚠ These settings are meant for advanced users.": "⚠ Te ustawienia są przeznaczone dla zaawansowanych użytkowników.",
"Subscribe": "Subskrybuj",
"Local address": "Lokalny adres", "Local address": "Lokalny adres",
"Published Addresses": "Opublikowane adresy", "Published Addresses": "Opublikowane adresy",
"Local Addresses": "Lokalne adresy", "Local Addresses": "Lokalne adresy",
@ -868,7 +855,6 @@
"Calls": "Połączenia", "Calls": "Połączenia",
"Room List": "Lista pokojów", "Room List": "Lista pokojów",
"New line": "Nowa linia", "New line": "Nowa linia",
"Space": "Przestrzeń",
"Sign In or Create Account": "Zaloguj się lub utwórz konto", "Sign In or Create Account": "Zaloguj się lub utwórz konto",
"Use your account or create a new one to continue.": "Użyj konta lub utwórz nowe, aby kontynuować.", "Use your account or create a new one to continue.": "Użyj konta lub utwórz nowe, aby kontynuować.",
"Edited at %(date)s. Click to view edits.": "Edytowano w %(date)s. Kliknij, aby zobaczyć zmiany.", "Edited at %(date)s. Click to view edits.": "Edytowano w %(date)s. Kliknij, aby zobaczyć zmiany.",
@ -908,7 +894,6 @@
"Enter username": "Wprowadź nazwę użytkownika", "Enter username": "Wprowadź nazwę użytkownika",
"Explore rooms": "Przeglądaj pokoje", "Explore rooms": "Przeglądaj pokoje",
"Forgotten your password?": "Nie pamiętasz hasła?", "Forgotten your password?": "Nie pamiętasz hasła?",
"Restore": "Przywróć",
"Success!": "Sukces!", "Success!": "Sukces!",
"Manage integrations": "Zarządzaj integracjami", "Manage integrations": "Zarządzaj integracjami",
"%(count)s verified sessions": { "%(count)s verified sessions": {
@ -939,7 +924,6 @@
"Session key": "Klucz sesji", "Session key": "Klucz sesji",
"Go": "Przejdź", "Go": "Przejdź",
"Email (optional)": "Adres e-mail (opcjonalnie)", "Email (optional)": "Adres e-mail (opcjonalnie)",
"Guest": "Gość",
"Setting up keys": "Konfigurowanie kluczy", "Setting up keys": "Konfigurowanie kluczy",
"Verify this session": "Zweryfikuj tę sesję", "Verify this session": "Zweryfikuj tę sesję",
"%(name)s is requesting verification": "%(name)s prosi o weryfikację", "%(name)s is requesting verification": "%(name)s prosi o weryfikację",
@ -1084,7 +1068,6 @@
}, },
"Room options": "Ustawienia pokoju", "Room options": "Ustawienia pokoju",
"Manually verify all remote sessions": "Ręcznie weryfikuj wszystkie zdalne sesje", "Manually verify all remote sessions": "Ręcznie weryfikuj wszystkie zdalne sesje",
"Privacy": "Prywatność",
"This version of %(brand)s does not support searching encrypted messages": "Ta wersja %(brand)s nie obsługuje wyszukiwania zabezpieczonych wiadomości", "This version of %(brand)s does not support searching encrypted messages": "Ta wersja %(brand)s nie obsługuje wyszukiwania zabezpieczonych wiadomości",
"Use the <a>Desktop app</a> to search encrypted messages": "Używaj <a>Aplikacji desktopowej</a>, aby wyszukiwać zaszyfrowane wiadomości", "Use the <a>Desktop app</a> to search encrypted messages": "Używaj <a>Aplikacji desktopowej</a>, aby wyszukiwać zaszyfrowane wiadomości",
"Message search": "Wyszukiwanie wiadomości", "Message search": "Wyszukiwanie wiadomości",
@ -1256,7 +1239,6 @@
"Phone (optional)": "Telefon (opcjonalny)", "Phone (optional)": "Telefon (opcjonalny)",
"Upload Error": "Błąd wysyłania", "Upload Error": "Błąd wysyłania",
"Close dialog": "Zamknij okno dialogowe", "Close dialog": "Zamknij okno dialogowe",
"Show all": "Zobacz wszystko",
"Deactivate user": "Dezaktywuj użytkownika", "Deactivate user": "Dezaktywuj użytkownika",
"Deactivate user?": "Dezaktywować użytkownika?", "Deactivate user?": "Dezaktywować użytkownika?",
"Revoke invite": "Odwołaj zaproszenie", "Revoke invite": "Odwołaj zaproszenie",
@ -1266,7 +1248,6 @@
"Cancelling…": "Anulowanie…", "Cancelling…": "Anulowanie…",
"Algorithm:": "Algorytm:", "Algorithm:": "Algorytm:",
"Bulk options": "Masowe działania", "Bulk options": "Masowe działania",
"Approve": "Zatwierdź",
"Incompatible Database": "Niekompatybilna baza danych", "Incompatible Database": "Niekompatybilna baza danych",
"Information": "Informacje", "Information": "Informacje",
"Categories": "Kategorie", "Categories": "Kategorie",
@ -1274,9 +1255,7 @@
"Accepting…": "Akceptowanie…", "Accepting…": "Akceptowanie…",
"Re-join": "Dołącz ponownie", "Re-join": "Dołącz ponownie",
"Unencrypted": "Nieszyfrowane", "Unencrypted": "Nieszyfrowane",
"Revoke": "Odwołaj",
"Encrypted": "Szyfrowane", "Encrypted": "Szyfrowane",
"Unsubscribe": "Odsubskrybuj",
"None": "Brak", "None": "Brak",
"exists": "istnieje", "exists": "istnieje",
"Change the topic of this room": "Zmień temat tego pokoju", "Change the topic of this room": "Zmień temat tego pokoju",
@ -1550,7 +1529,6 @@
"Contact your <a>server admin</a>.": "Skontaktuj się ze swoim <a>administratorem serwera</a>.", "Contact your <a>server admin</a>.": "Skontaktuj się ze swoim <a>administratorem serwera</a>.",
"Your homeserver has exceeded one of its resource limits.": "Twój homeserver przekroczył jeden z limitów zasobów.", "Your homeserver has exceeded one of its resource limits.": "Twój homeserver przekroczył jeden z limitów zasobów.",
"Your homeserver has exceeded its user limit.": "Twój homeserver przekroczył limit użytkowników.", "Your homeserver has exceeded its user limit.": "Twój homeserver przekroczył limit użytkowników.",
"Review": "Przejrzyj",
"Error leaving room": "Błąd opuszczania pokoju", "Error leaving room": "Błąd opuszczania pokoju",
"Unexpected server error trying to leave the room": "Nieoczekiwany błąd serwera podczas próby opuszczania pokoju", "Unexpected server error trying to leave the room": "Nieoczekiwany błąd serwera podczas próby opuszczania pokoju",
"%(num)s days from now": "za %(num)s dni", "%(num)s days from now": "za %(num)s dni",
@ -1624,7 +1602,6 @@
"Generate a Security Key": "Wygeneruj klucz bezpieczeństwa", "Generate a Security Key": "Wygeneruj klucz bezpieczeństwa",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych, tworząc kopię zapasową kluczy szyfrowania na naszym serwerze.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych, tworząc kopię zapasową kluczy szyfrowania na naszym serwerze.",
"Safeguard against losing access to encrypted messages & data": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych", "Safeguard against losing access to encrypted messages & data": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych",
"Access Token": "Token dostępu",
"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.", "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", "Avatar": "Awatar",
"Leave the beta": "Opuść betę", "Leave the beta": "Opuść betę",
@ -1928,7 +1905,6 @@
"Size must be a number": "Rozmiar musi być liczbą", "Size must be a number": "Rozmiar musi być liczbą",
"Hey you. You're the best!": "Hej, ty. Jesteś super!", "Hey you. You're the best!": "Hej, ty. Jesteś super!",
"Message search initialisation failed": "Inicjalizacja wyszukiwania wiadomości nie powiodła się", "Message search initialisation failed": "Inicjalizacja wyszukiwania wiadomości nie powiodła się",
"Rename": "Zmień nazwę",
"Select all": "Zaznacz wszystkie", "Select all": "Zaznacz wszystkie",
"Deselect all": "Odznacz wszystkie", "Deselect all": "Odznacz wszystkie",
"Close dialog or context menu": "Zamknij dialog lub menu kontekstowe", "Close dialog or context menu": "Zamknij dialog lub menu kontekstowe",
@ -1996,7 +1972,6 @@
"Unverified session": "Sesja niezweryfikowana", "Unverified session": "Sesja niezweryfikowana",
"Inactive for %(inactiveAgeDays)s+ days": "Nieaktywne przez %(inactiveAgeDays)s+ dni", "Inactive for %(inactiveAgeDays)s+ days": "Nieaktywne przez %(inactiveAgeDays)s+ dni",
"Unverified sessions": "Sesje niezweryfikowane", "Unverified sessions": "Sesje niezweryfikowane",
"View all": "Pokaż wszystkie",
"Inactive sessions": "Sesje nieaktywne", "Inactive sessions": "Sesje nieaktywne",
"Verified sessions": "Sesje zweryfikowane", "Verified sessions": "Sesje zweryfikowane",
"No verified sessions found.": "Nie znaleziono zweryfikowanych sesji.", "No verified sessions found.": "Nie znaleziono zweryfikowanych sesji.",
@ -2008,7 +1983,6 @@
"Not ready for secure messaging": "Nieprzygotowane do bezpiecznej komunikacji", "Not ready for secure messaging": "Nieprzygotowane do bezpiecznej komunikacji",
"Inactive": "Nieaktywny", "Inactive": "Nieaktywny",
"Inactive for %(inactiveAgeDays)s days or longer": "Nieaktywne przez %(inactiveAgeDays)s dni lub dłużej", "Inactive for %(inactiveAgeDays)s days or longer": "Nieaktywne przez %(inactiveAgeDays)s dni lub dłużej",
"Show": "Pokaż",
"%(qrCode)s or %(emojiCompare)s": "%(qrCode)s lub %(emojiCompare)s", "%(qrCode)s or %(emojiCompare)s": "%(qrCode)s lub %(emojiCompare)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s lub %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s lub %(appLinks)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s lub %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s lub %(recoveryFile)s",
@ -2198,7 +2172,6 @@
"Copy room link": "Kopiuj link do pokoju", "Copy room link": "Kopiuj link do pokoju",
"Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Przestrzenie to sposób grupowania pokoi i osób. Oprócz przestrzeni, w których się znajdujesz, możesz też skorzystać z gotowych grupowań.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Przestrzenie to sposób grupowania pokoi i osób. Oprócz przestrzeni, w których się znajdujesz, możesz też skorzystać z gotowych grupowań.",
"Spaces to show": "Wyświetlanie przestrzeni", "Spaces to show": "Wyświetlanie przestrzeni",
"Complete": "Uzupełnij",
"Previous autocomplete suggestion": "Poprzednia sugestia autouzupełniania", "Previous autocomplete suggestion": "Poprzednia sugestia autouzupełniania",
"Next autocomplete suggestion": "Następna sugestia autouzupełniania", "Next autocomplete suggestion": "Następna sugestia autouzupełniania",
"Next room or DM": "Następny pokój lub wiadomość prywatna", "Next room or DM": "Następny pokój lub wiadomość prywatna",
@ -2454,7 +2427,6 @@
"Images, GIFs and videos": "Obrazy, GIFy i wideo", "Images, GIFs and videos": "Obrazy, GIFy i wideo",
"Code blocks": "Bloki kodu", "Code blocks": "Bloki kodu",
"Share your activity and status with others.": "Udostępnij swoją aktywność i status z innymi.", "Share your activity and status with others.": "Udostępnij swoją aktywność i status z innymi.",
"Presence": "Prezencja",
"Displaying time": "Wyświetlanie czasu", "Displaying time": "Wyświetlanie czasu",
"Keyboard shortcuts": "Skróty klawiszowe", "Keyboard shortcuts": "Skróty klawiszowe",
"Subscribed lists": "Listy subskrybowanych", "Subscribed lists": "Listy subskrybowanych",
@ -2628,7 +2600,6 @@
"Encrypted by an unverified session": "Zaszyfrowano przez sesję niezweryfikowaną", "Encrypted by an unverified session": "Zaszyfrowano przez sesję niezweryfikowaną",
" in <strong>%(room)s</strong>": " w <strong>%(room)s</strong>", " in <strong>%(room)s</strong>": " w <strong>%(room)s</strong>",
"From a thread": "Z wątku", "From a thread": "Z wątku",
"Mod": "Moderator",
"Someone is using an unknown session": "Ktoś używa nieznanej sesji", "Someone is using an unknown session": "Ktoś używa nieznanej sesji",
"You have verified this user. This user has verified all of their sessions.": "Zweryfikowałeś tego użytkownika. Użytkownik zweryfikował wszystkie swoje sesje.", "You have verified this user. This user has verified all of their sessions.": "Zweryfikowałeś tego użytkownika. Użytkownik zweryfikował wszystkie swoje sesje.",
"You have not verified this user.": "Nie zweryfikowałeś tego użytkownika.", "You have not verified this user.": "Nie zweryfikowałeś tego użytkownika.",
@ -3640,8 +3611,6 @@
"Creating rooms…": "Tworzenie pokojów…", "Creating rooms…": "Tworzenie pokojów…",
"Skip for now": "Pomiń na razie", "Skip for now": "Pomiń na razie",
"Failed to create initial space rooms": "Nie udało się utworzyć początkowych pokoi przestrzeni", "Failed to create initial space rooms": "Nie udało się utworzyć początkowych pokoi przestrzeni",
"Support": "Wsparcie",
"Random": "Losowe",
"Welcome to <name/>": "Witamy w <name/>", "Welcome to <name/>": "Witamy w <name/>",
"Search names and descriptions": "Przeszukuj nazwy i opisy", "Search names and descriptions": "Przeszukuj nazwy i opisy",
"Rooms and spaces": "Pokoje i przestrzenie", "Rooms and spaces": "Pokoje i przestrzenie",
@ -3672,8 +3641,6 @@
"Own your conversations.": "Bądź właścicielem swoich konwersacji.", "Own your conversations.": "Bądź właścicielem swoich konwersacji.",
"Add a photo so people know it's you.": "Dodaj zdjęcie, aby inni mogli Cię rozpoznać.", "Add a photo so people know it's you.": "Dodaj zdjęcie, aby inni mogli Cię rozpoznać.",
"Great, that'll help people know it's you": "Świetnie, pomoże to innym Cię rozpoznać", "Great, that'll help people know it's you": "Świetnie, pomoże to innym Cię rozpoznać",
"Play": "Odtwórz",
"Pause": "Wstrzymaj",
"Error downloading audio": "Wystąpił błąd w trakcie pobierania audio", "Error downloading audio": "Wystąpił błąd w trakcie pobierania audio",
"Unnamed audio": "Audio bez nazwy", "Unnamed audio": "Audio bez nazwy",
"Use email to optionally be discoverable by existing contacts.": "Użyj adresu e-mail, aby opcjonalnie móc być odkrywanym przez istniejące kontakty.", "Use email to optionally be discoverable by existing contacts.": "Użyj adresu e-mail, aby opcjonalnie móc być odkrywanym przez istniejące kontakty.",
@ -3705,7 +3672,6 @@
"Show current profile picture and name for users in message history": "Pokaż bieżące zdjęcie i nazwę użytkowników w historii wiadomości", "Show current profile picture and name for users in message history": "Pokaż bieżące zdjęcie i nazwę użytkowników w historii wiadomości",
"Show profile picture changes": "Pokaż zmiany zdjęcia profilowego", "Show profile picture changes": "Pokaż zmiany zdjęcia profilowego",
"Mentions and Keywords only": "Wyłącznie wzmianki i słowa kluczowe", "Mentions and Keywords only": "Wyłącznie wzmianki i słowa kluczowe",
"Proceed": "Kontynuuj",
"Play a sound for": "Odtwórz dźwięk dla", "Play a sound for": "Odtwórz dźwięk dla",
"Notify when someone mentions using @room": "Powiadom mnie, gdy ktoś użyje wzmianki @room", "Notify when someone mentions using @room": "Powiadom mnie, gdy ktoś użyje wzmianki @room",
"Email Notifications": "Powiadomienia e-mail", "Email Notifications": "Powiadomienia e-mail",
@ -3797,7 +3763,22 @@
"dark": "Ciemny", "dark": "Ciemny",
"beta": "Beta", "beta": "Beta",
"attachment": "Załącznik", "attachment": "Załącznik",
"appearance": "Wygląd" "appearance": "Wygląd",
"guest": "Gość",
"legal": "Zasoby prawne",
"credits": "Podziękowania",
"faq": "Najczęściej zadawane pytania",
"access_token": "Token dostępu",
"preferences": "Preferencje",
"presence": "Prezencja",
"timeline": "Oś czasu",
"privacy": "Prywatność",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Losowe",
"support": "Wsparcie",
"space": "Przestrzeń"
}, },
"action": { "action": {
"continue": "Kontynuuj", "continue": "Kontynuuj",
@ -3869,7 +3850,24 @@
"back": "Powrót", "back": "Powrót",
"apply": "Zastosuj", "apply": "Zastosuj",
"add": "Dodaj", "add": "Dodaj",
"accept": "Akceptuj" "accept": "Akceptuj",
"disconnect": "Odłącz",
"change": "Zmień",
"subscribe": "Subskrybuj",
"unsubscribe": "Odsubskrybuj",
"approve": "Zatwierdź",
"proceed": "Kontynuuj",
"complete": "Uzupełnij",
"revoke": "Odwołaj",
"rename": "Zmień nazwę",
"view_all": "Pokaż wszystkie",
"show_all": "Zobacz wszystko",
"show": "Pokaż",
"review": "Przejrzyj",
"restore": "Przywróć",
"play": "Odtwórz",
"pause": "Wstrzymaj",
"register": "Rejestracja"
}, },
"a11y": { "a11y": {
"user_menu": "Menu użytkownika" "user_menu": "Menu użytkownika"
@ -3956,7 +3954,9 @@
"default": "Zwykły", "default": "Zwykły",
"restricted": "Ograniczony", "restricted": "Ograniczony",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Administrator" "admin": "Administrator",
"custom": "Własny (%(level)s)",
"mod": "Moderator"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Jeśli zgłosiłeś błąd za pomocą serwisu GitHub, dzienniki debugowania mogą pomóc nam w namierzeniu problemu. ", "introduction": "Jeśli zgłosiłeś błąd za pomocą serwisu GitHub, dzienniki debugowania mogą pomóc nam w namierzeniu problemu. ",

View file

@ -17,7 +17,6 @@
"Default": "Padrão", "Default": "Padrão",
"Deops user with given id": "Retirar função de moderador do usuário com o identificador informado", "Deops user with given id": "Retirar função de moderador do usuário com o identificador informado",
"Displays action": "Visualizar atividades", "Displays action": "Visualizar atividades",
"Emoji": "Emoji",
"Export E2E room keys": "Exportar chaves ponta-a-ponta da sala", "Export E2E room keys": "Exportar chaves ponta-a-ponta da sala",
"Failed to change password. Is your password correct?": "Falha ao alterar a palavra-passe. A sua palavra-passe está correta?", "Failed to change password. Is your password correct?": "Falha ao alterar a palavra-passe. A sua palavra-passe está correta?",
"Failed to reject invitation": "Falha ao tentar rejeitar convite", "Failed to reject invitation": "Falha ao tentar rejeitar convite",
@ -210,12 +209,9 @@
"No media permissions": "Não há permissões para o uso de vídeo/áudio no seu navegador", "No media permissions": "Não há permissões para o uso de vídeo/áudio no seu navegador",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Você talvez precise autorizar manualmente que o %(brand)s acesse seu microfone e webcam", "You may need to manually permit %(brand)s to access your microphone/webcam": "Você talvez precise autorizar manualmente que o %(brand)s acesse seu microfone e webcam",
"Default Device": "Dispositivo padrão", "Default Device": "Dispositivo padrão",
"Microphone": "Microfone",
"Camera": "Câmera de vídeo",
"Anyone": "Qualquer pessoa", "Anyone": "Qualquer pessoa",
"Are you sure you want to leave the room '%(roomName)s'?": "Você tem certeza que deseja sair da sala '%(roomName)s'?", "Are you sure you want to leave the room '%(roomName)s'?": "Você tem certeza que deseja sair da sala '%(roomName)s'?",
"Custom level": "Nível personalizado", "Custom level": "Nível personalizado",
"Register": "Registar",
"You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.", "You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.",
"You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.", "You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.",
"Create new room": "Criar nova sala", "Create new room": "Criar nova sala",
@ -564,7 +560,6 @@
"Effects": "Ações", "Effects": "Ações",
"Zambia": "Zâmbia", "Zambia": "Zâmbia",
"Missing roomId.": "Falta ID de Sala.", "Missing roomId.": "Falta ID de Sala.",
"Custom (%(level)s)": "Personalizado (%(level)s)",
"Sign In or Create Account": "Iniciar Sessão ou Criar Conta", "Sign In or Create Account": "Iniciar Sessão ou Criar Conta",
"Zimbabwe": "Zimbabué", "Zimbabwe": "Zimbabué",
"Yemen": "Iémen", "Yemen": "Iémen",
@ -719,7 +714,10 @@
"home": "Início", "home": "Início",
"favourites": "Favoritos", "favourites": "Favoritos",
"description": "Descrição", "description": "Descrição",
"attachment": "Anexo" "attachment": "Anexo",
"camera": "Câmera de vídeo",
"microphone": "Microfone",
"emoji": "Emoji"
}, },
"action": { "action": {
"continue": "Continuar", "continue": "Continuar",
@ -754,7 +752,8 @@
"cancel": "Cancelar", "cancel": "Cancelar",
"back": "Voltar", "back": "Voltar",
"add": "Adicionar", "add": "Adicionar",
"accept": "Aceitar" "accept": "Aceitar",
"register": "Registar"
}, },
"keyboard": { "keyboard": {
"home": "Início" "home": "Início"
@ -763,7 +762,8 @@
"default": "Padrão", "default": "Padrão",
"restricted": "Restrito", "restricted": "Restrito",
"moderator": "Moderador/a", "moderator": "Moderador/a",
"admin": "Administrador" "admin": "Administrador",
"custom": "Personalizado (%(level)s)"
}, },
"bug_reporting": { "bug_reporting": {
"description": "Os registos de depuração contêm dados de utilização da aplicação, incluindo o seu nome de utilizador, os IDs ou pseudónimos das salas que visitou, os últimos elementos da IU com que interagiu e os nomes de utilizador de outros utilizadores. No entanto não contêm mensagens.", "description": "Os registos de depuração contêm dados de utilização da aplicação, incluindo o seu nome de utilizador, os IDs ou pseudónimos das salas que visitou, os últimos elementos da IU com que interagiu e os nomes de utilizador de outros utilizadores. No entanto não contêm mensagens.",

View file

@ -17,7 +17,6 @@
"Default": "Padrão", "Default": "Padrão",
"Deops user with given id": "Retira o nível de moderador do usuário com o ID informado", "Deops user with given id": "Retira o nível de moderador do usuário com o ID informado",
"Displays action": "Visualizar atividades", "Displays action": "Visualizar atividades",
"Emoji": "Emoji",
"Export E2E room keys": "Exportar chaves ponta-a-ponta da sala", "Export E2E room keys": "Exportar chaves ponta-a-ponta da sala",
"Failed to change password. Is your password correct?": "Não foi possível alterar a senha. A sua senha está correta?", "Failed to change password. Is your password correct?": "Não foi possível alterar a senha. A sua senha está correta?",
"Failed to reject invitation": "Falha ao tentar recusar o convite", "Failed to reject invitation": "Falha ao tentar recusar o convite",
@ -210,12 +209,9 @@
"No media permissions": "Não tem permissões para acessar a mídia", "No media permissions": "Não tem permissões para acessar a mídia",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Pode ser necessário permitir manualmente ao %(brand)s acessar seu microfone ou sua câmera", "You may need to manually permit %(brand)s to access your microphone/webcam": "Pode ser necessário permitir manualmente ao %(brand)s acessar seu microfone ou sua câmera",
"Default Device": "Aparelho padrão", "Default Device": "Aparelho padrão",
"Microphone": "Microfone",
"Camera": "Câmera",
"Anyone": "Qualquer pessoa", "Anyone": "Qualquer pessoa",
"Are you sure you want to leave the room '%(roomName)s'?": "Tem certeza de que deseja sair da sala '%(roomName)s'?", "Are you sure you want to leave the room '%(roomName)s'?": "Tem certeza de que deseja sair da sala '%(roomName)s'?",
"Custom level": "Nível personalizado", "Custom level": "Nível personalizado",
"Register": "Registre-se",
"You have <a>disabled</a> URL previews by default.": "Você <a>desativou</a> pré-visualizações de links por padrão.", "You have <a>disabled</a> URL previews by default.": "Você <a>desativou</a> pré-visualizações de links por padrão.",
"You have <a>enabled</a> URL previews by default.": "Você <a>ativou</a> pré-visualizações de links por padrão.", "You have <a>enabled</a> URL previews by default.": "Você <a>ativou</a> pré-visualizações de links por padrão.",
"Home": "Home", "Home": "Home",
@ -558,7 +554,6 @@
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "Você não pode enviar nenhuma mensagem até revisar e concordar com <consentLink>nossos termos e condições</consentLink>.", "You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "Você não pode enviar nenhuma mensagem até revisar e concordar com <consentLink>nossos termos e condições</consentLink>.",
"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.": "Sua mensagem não foi enviada porque este homeserver atingiu seu Limite de usuário ativo mensal. Por favor, <a>entre em contato com o seu administrador de serviços</a> para continuar usando o serviço.", "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.": "Sua mensagem não foi enviada porque este homeserver atingiu seu Limite de usuário ativo mensal. Por favor, <a>entre em contato com o seu administrador de serviços</a> para continuar usando o serviço.",
"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.": "Sua mensagem não foi enviada porque este servidor local excedeu o limite de recursos. Por favor, <a>entre em contato com o seu administrador de serviços</a> para continuar usando o serviço.", "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.": "Sua mensagem não foi enviada porque este servidor local excedeu o limite de recursos. Por favor, <a>entre em contato com o seu administrador de serviços</a> para continuar usando o serviço.",
"Legal": "Legal",
"No Audio Outputs detected": "Nenhuma caixa de som detectada", "No Audio Outputs detected": "Nenhuma caixa de som detectada",
"Audio Output": "Caixa de som", "Audio Output": "Caixa de som",
"Invalid homeserver discovery response": "Resposta de descoberta de homeserver inválida", "Invalid homeserver discovery response": "Resposta de descoberta de homeserver inválida",
@ -696,16 +691,12 @@
"Language and region": "Idioma e região", "Language and region": "Idioma e região",
"Account management": "Gerenciamento da Conta", "Account management": "Gerenciamento da Conta",
"General": "Geral", "General": "Geral",
"Credits": "Licenças",
"For help with using %(brand)s, click <a>here</a>.": "Para obter ajuda com o uso do %(brand)s, clique <a>aqui</a>.", "For help with using %(brand)s, click <a>here</a>.": "Para obter ajuda com o uso do %(brand)s, clique <a>aqui</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Para obter ajuda com o uso do %(brand)s, clique <a>aqui</a> ou inicie um bate-papo com nosso bot usando o botão abaixo.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Para obter ajuda com o uso do %(brand)s, clique <a>aqui</a> ou inicie um bate-papo com nosso bot usando o botão abaixo.",
"Chat with %(brand)s Bot": "Converse com o bot do %(brand)s", "Chat with %(brand)s Bot": "Converse com o bot do %(brand)s",
"Help & About": "Ajuda e sobre", "Help & About": "Ajuda e sobre",
"FAQ": "FAQ",
"Versions": "Versões", "Versions": "Versões",
"Preferences": "Preferências",
"Composer": "Campo de texto", "Composer": "Campo de texto",
"Timeline": "Conversas",
"Room list": "Lista de salas", "Room list": "Lista de salas",
"Autocomplete delay (ms)": "Atraso no preenchimento automático (ms)", "Autocomplete delay (ms)": "Atraso no preenchimento automático (ms)",
"Ignored users": "Usuários bloqueados", "Ignored users": "Usuários bloqueados",
@ -751,7 +742,6 @@
"Sign In or Create Account": "Faça login ou crie uma conta", "Sign In or Create Account": "Faça login ou crie uma conta",
"Use your account or create a new one to continue.": "Use sua conta ou crie uma nova para continuar.", "Use your account or create a new one to continue.": "Use sua conta ou crie uma nova para continuar.",
"Create Account": "Criar Conta", "Create Account": "Criar Conta",
"Custom (%(level)s)": "Personalizado (%(level)s)",
"Messages": "Mensagens", "Messages": "Mensagens",
"Actions": "Ações", "Actions": "Ações",
"Other": "Outros", "Other": "Outros",
@ -847,7 +837,6 @@
"%(num)s days from now": "dentro de %(num)s dias", "%(num)s days from now": "dentro de %(num)s dias",
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
"The user's homeserver does not support the version of the room.": "O servidor desta(e) usuária(o) não suporta a versão desta sala.", "The user's homeserver does not support the version of the room.": "O servidor desta(e) usuária(o) não suporta a versão desta sala.",
"Review": "Revisar",
"Later": "Mais tarde", "Later": "Mais tarde",
"Your homeserver has exceeded its user limit.": "Seu servidor ultrapassou seu limite de usuárias(os).", "Your homeserver has exceeded its user limit.": "Seu servidor ultrapassou seu limite de usuárias(os).",
"Your homeserver has exceeded one of its resource limits.": "Seu servidor local excedeu um de seus limites de recursos.", "Your homeserver has exceeded one of its resource limits.": "Seu servidor local excedeu um de seus limites de recursos.",
@ -857,7 +846,6 @@
"Verify this session": "Confirmar esta sessão", "Verify this session": "Confirmar esta sessão",
"Other users may not trust it": "Outras(os) usuárias(os) podem não confiar nela", "Other users may not trust it": "Outras(os) usuárias(os) podem não confiar nela",
"New login. Was this you?": "Novo login. Foi você?", "New login. Was this you?": "Novo login. Foi você?",
"Guest": "Convidada(o)",
"You joined the call": "Você entrou na chamada", "You joined the call": "Você entrou na chamada",
"%(senderName)s joined the call": "%(senderName)s entrou na chamada", "%(senderName)s joined the call": "%(senderName)s entrou na chamada",
"Call in progress": "Chamada em andamento", "Call in progress": "Chamada em andamento",
@ -1033,7 +1021,6 @@
"%(name)s declined": "%(name)s recusou", "%(name)s declined": "%(name)s recusou",
"%(name)s cancelled": "%(name)s cancelou", "%(name)s cancelled": "%(name)s cancelou",
"You sent a verification request": "Você enviou uma solicitação de confirmação", "You sent a verification request": "Você enviou uma solicitação de confirmação",
"Show all": "Mostrar tudo",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagiu com %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagiu com %(shortName)s</reactedWith>",
"Message deleted": "Mensagem apagada", "Message deleted": "Mensagem apagada",
"Message deleted by %(name)s": "Mensagem apagada por %(name)s", "Message deleted by %(name)s": "Mensagem apagada por %(name)s",
@ -1161,7 +1148,6 @@
"The identity server you have chosen does not have any terms of service.": "O servidor de identidade que você escolheu não possui nenhum termo de serviço.", "The identity server you have chosen does not have any terms of service.": "O servidor de identidade que você escolheu não possui nenhum termo de serviço.",
"Disconnect identity server": "Desconectar servidor de identidade", "Disconnect identity server": "Desconectar servidor de identidade",
"Disconnect from the identity server <idserver />?": "Desconectar-se do servidor de identidade <idserver />?", "Disconnect from the identity server <idserver />?": "Desconectar-se do servidor de identidade <idserver />?",
"Disconnect": "Desconectar",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Você deve <b>remover seus dados pessoais</b> do servidor de identidade <idserver /> antes de desconectar. Infelizmente, o servidor de identidade <idserver /> ou está indisponível no momento, ou não pode ser acessado.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Você deve <b>remover seus dados pessoais</b> do servidor de identidade <idserver /> antes de desconectar. Infelizmente, o servidor de identidade <idserver /> ou está indisponível no momento, ou não pode ser acessado.",
"You should:": "Você deveria:", "You should:": "Você deveria:",
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "verifique se há extensões no seu navegador que possam bloquear o servidor de identidade (por exemplo, Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "verifique se há extensões no seu navegador que possam bloquear o servidor de identidade (por exemplo, Privacy Badger)",
@ -1176,7 +1162,6 @@
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar um servidor de identidade é opcional. Se você optar por não usar um servidor de identidade, não poderá ser descoberto por outros usuários e não poderá convidar outras pessoas por e-mail ou por número de celular.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Usar um servidor de identidade é opcional. Se você optar por não usar um servidor de identidade, não poderá ser descoberto por outros usuários e não poderá convidar outras pessoas por e-mail ou por número de celular.",
"Do not use an identity server": "Não usar um servidor de identidade", "Do not use an identity server": "Não usar um servidor de identidade",
"Enter a new identity server": "Digite um novo servidor de identidade", "Enter a new identity server": "Digite um novo servidor de identidade",
"Change": "Alterar",
"Manage integrations": "Gerenciar integrações", "Manage integrations": "Gerenciar integrações",
"New version available. <a>Update now.</a>": "Nova versão disponível. <a>Atualize agora.</a>", "New version available. <a>Update now.</a>": "Nova versão disponível. <a>Atualize agora.</a>",
"Hey you. You're the best!": "Ei, você aí. Você é incrível!", "Hey you. You're the best!": "Ei, você aí. Você é incrível!",
@ -1273,13 +1258,11 @@
"You have not ignored anyone.": "Você não bloqueou ninguém.", "You have not ignored anyone.": "Você não bloqueou ninguém.",
"You are currently ignoring:": "Você está bloqueando:", "You are currently ignoring:": "Você está bloqueando:",
"You are not subscribed to any lists": "Você não está inscrito em nenhuma lista", "You are not subscribed to any lists": "Você não está inscrito em nenhuma lista",
"Unsubscribe": "Desinscrever-se",
"View rules": "Ver regras", "View rules": "Ver regras",
"You are currently subscribed to:": "No momento, você está inscrito em:", "You are currently subscribed to:": "No momento, você está inscrito em:",
"⚠ These settings are meant for advanced users.": "⚠ Essas configurações são destinadas a usuários avançados.", "⚠ These settings are meant for advanced users.": "⚠ Essas configurações são destinadas a usuários avançados.",
"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.": "Adicione aqui os usuários e servidores que você deseja bloquear. Use asteriscos para fazer com que o %(brand)s corresponda a qualquer caractere. Por exemplo, <code>@bot:*</code> bloqueará todos os usuários em qualquer servidor que tenham 'bot' no nome.", "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.": "Adicione aqui os usuários e servidores que você deseja bloquear. Use asteriscos para fazer com que o %(brand)s corresponda a qualquer caractere. Por exemplo, <code>@bot:*</code> bloqueará todos os usuários em qualquer servidor que tenham 'bot' no nome.",
"Server or user ID to ignore": "Servidor ou ID de usuário para bloquear", "Server or user ID to ignore": "Servidor ou ID de usuário para bloquear",
"Subscribe": "Inscrever-se",
"Session ID:": "ID da sessão:", "Session ID:": "ID da sessão:",
"Message search": "Pesquisa de mensagens", "Message search": "Pesquisa de mensagens",
"Set a new custom sound": "Definir um novo som personalizado", "Set a new custom sound": "Definir um novo som personalizado",
@ -1288,7 +1271,6 @@
"Ban users": "Banir usuários", "Ban users": "Banir usuários",
"Notify everyone": "Notificar todos", "Notify everyone": "Notificar todos",
"Your email address hasn't been verified yet": "Seu endereço de e-mail ainda não foi confirmado", "Your email address hasn't been verified yet": "Seu endereço de e-mail ainda não foi confirmado",
"Revoke": "Revogar",
"Unable to revoke sharing for phone number": "Não foi possível revogar o compartilhamento do número de celular", "Unable to revoke sharing for phone number": "Não foi possível revogar o compartilhamento do número de celular",
"Unable to share phone number": "Não foi possível compartilhar o número de celular", "Unable to share phone number": "Não foi possível compartilhar o número de celular",
"Please enter verification code sent via text.": "Digite o código de confirmação enviado por mensagem de texto.", "Please enter verification code sent via text.": "Digite o código de confirmação enviado por mensagem de texto.",
@ -1301,7 +1283,6 @@
"Someone is using an unknown session": "Alguém está usando uma sessão desconhecida", "Someone is using an unknown session": "Alguém está usando uma sessão desconhecida",
"Everyone in this room is verified": "Todos nesta sala estão confirmados", "Everyone in this room is verified": "Todos nesta sala estão confirmados",
"Edit message": "Editar mensagem", "Edit message": "Editar mensagem",
"Mod": "Moderador",
"Scroll to most recent messages": "Ir para as mensagens recentes", "Scroll to most recent messages": "Ir para as mensagens recentes",
"Close preview": "Fechar a visualização", "Close preview": "Fechar a visualização",
"Send a reply…": "Digite sua resposta…", "Send a reply…": "Digite sua resposta…",
@ -1418,7 +1399,6 @@
"Invalid base_url for m.identity_server": "base_url inválido para m.identity_server", "Invalid base_url for m.identity_server": "base_url inválido para m.identity_server",
"This account has been deactivated.": "Esta conta foi desativada.", "This account has been deactivated.": "Esta conta foi desativada.",
"Forgotten your password?": "Esqueceu sua senha?", "Forgotten your password?": "Esqueceu sua senha?",
"Restore": "Restaurar",
"Success!": "Pronto!", "Success!": "Pronto!",
"Space used:": "Espaço usado:", "Space used:": "Espaço usado:",
"Navigation": "Navegação", "Navigation": "Navegação",
@ -1478,7 +1458,6 @@
"Upgrade this room to the recommended room version": "Atualizar a versão desta sala", "Upgrade this room to the recommended room version": "Atualizar a versão desta sala",
"View older messages in %(roomName)s.": "Ler mensagens antigas em %(roomName)s.", "View older messages in %(roomName)s.": "Ler mensagens antigas em %(roomName)s.",
"Error changing power level": "Erro ao alterar a permissão do usuário", "Error changing power level": "Erro ao alterar a permissão do usuário",
"Complete": "Concluir",
"Discovery options will appear once you have added a phone number above.": "As opções de descoberta aparecerão assim que você adicione um número de telefone acima.", "Discovery options will appear once you have added a phone number above.": "As opções de descoberta aparecerão assim que você adicione um número de telefone acima.",
"No other published addresses yet, add one below": "Nenhum endereço publicado ainda, adicione um abaixo", "No other published addresses yet, add one below": "Nenhum endereço publicado ainda, adicione um abaixo",
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Defina endereços para esta sala, de modo que os usuários possam encontrar esta sala em seu servidor local (%(localDomain)s)", "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Defina endereços para esta sala, de modo que os usuários possam encontrar esta sala em seu servidor local (%(localDomain)s)",
@ -1515,10 +1494,8 @@
"Try scrolling up in the timeline to see if there are any earlier ones.": "Tente rolar para cima na conversa para ver se há mensagens anteriores.", "Try scrolling up in the timeline to see if there are any earlier ones.": "Tente rolar para cima na conversa para ver se há mensagens anteriores.",
"Unexpected server error trying to leave the room": "Erro inesperado no servidor, ao tentar sair da sala", "Unexpected server error trying to leave the room": "Erro inesperado no servidor, ao tentar sair da sala",
"Error leaving room": "Erro ao sair da sala", "Error leaving room": "Erro ao sair da sala",
"Space": "Barra de espaço",
"Unknown App": "App desconhecido", "Unknown App": "App desconhecido",
"eg: @bot:* or example.org": "por exemplo: @bot:* ou exemplo.org", "eg: @bot:* or example.org": "por exemplo: @bot:* ou exemplo.org",
"Privacy": "Privacidade",
"Widgets": "Widgets", "Widgets": "Widgets",
"Edit widgets, bridges & bots": "Editar widgets, integrações e bots", "Edit widgets, bridges & bots": "Editar widgets, integrações e bots",
"Add widgets, bridges & bots": "Adicionar widgets, integrações e bots", "Add widgets, bridges & bots": "Adicionar widgets, integrações e bots",
@ -1913,7 +1890,6 @@
"Enter phone number": "Digite o número de telefone", "Enter phone number": "Digite o número de telefone",
"Enter email address": "Digite o endereço de e-mail", "Enter email address": "Digite o endereço de e-mail",
"Decline All": "Recusar tudo", "Decline All": "Recusar tudo",
"Approve": "Autorizar",
"This widget would like to:": "Este widget gostaria de:", "This widget would like to:": "Este widget gostaria de:",
"Approve widget permissions": "Autorizar as permissões do widget", "Approve widget permissions": "Autorizar as permissões do widget",
"Return to call": "Retornar para a chamada", "Return to call": "Retornar para a chamada",
@ -2091,7 +2067,6 @@
"Add existing room": "Adicionar sala existente", "Add existing room": "Adicionar sala existente",
"Send message": "Enviar mensagem", "Send message": "Enviar mensagem",
"Skip for now": "Ignorar por enquanto", "Skip for now": "Ignorar por enquanto",
"Random": "Aleatório",
"Welcome to <name/>": "Boas-vindas ao <name/>", "Welcome to <name/>": "Boas-vindas ao <name/>",
"This homeserver has been blocked by its administrator.": "Este servidor local foi bloqueado pelo seu administrador.", "This homeserver has been blocked by its administrator.": "Este servidor local foi bloqueado pelo seu administrador.",
"You're already in a call with this person.": "Você já está em uma chamada com essa pessoa.", "You're already in a call with this person.": "Você já está em uma chamada com essa pessoa.",
@ -2129,7 +2104,6 @@
"Jump to the bottom of the timeline when you send a message": "Vá para o final da linha do tempo ao enviar uma mensagem", "Jump to the bottom of the timeline when you send a message": "Vá para o final da linha do tempo ao enviar uma mensagem",
"Decrypted event source": "Fonte de evento descriptografada", "Decrypted event source": "Fonte de evento descriptografada",
"Invite by username": "Convidar por nome de usuário", "Invite by username": "Convidar por nome de usuário",
"Support": "Suporte",
"Original event source": "Fonte do evento original", "Original event source": "Fonte do evento original",
"Integration manager": "Gerenciador de integrações", "Integration manager": "Gerenciador de integrações",
"Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "Seu %(brand)s não permite que você use o gerenciador de integrações para fazer isso. Entre em contato com o administrador.", "Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "Seu %(brand)s não permite que você use o gerenciador de integrações para fazer isso. Entre em contato com o administrador.",
@ -2181,7 +2155,6 @@
"Code blocks": "Blocos de código", "Code blocks": "Blocos de código",
"Keyboard shortcuts": "Teclas de atalho do teclado", "Keyboard shortcuts": "Teclas de atalho do teclado",
"Warn before quitting": "Avisar antes de sair", "Warn before quitting": "Avisar antes de sair",
"Access Token": "Símbolo de acesso",
"Message bubbles": "Balões de mensagem", "Message bubbles": "Balões de mensagem",
"Mentions & keywords": "Menções e palavras-chave", "Mentions & keywords": "Menções e palavras-chave",
"Global": "Global", "Global": "Global",
@ -2532,7 +2505,6 @@
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Esta sala está em alguns espaços dos quais você não é administrador. Nesses espaços, a sala antiga ainda será exibida, mas as pessoas serão solicitadas a ingressar na nova.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Esta sala está em alguns espaços dos quais você não é administrador. Nesses espaços, a sala antiga ainda será exibida, mas as pessoas serão solicitadas a ingressar na nova.",
"Large": "Grande", "Large": "Grande",
"Image size in the timeline": "Tamanho da imagem na linha do tempo", "Image size in the timeline": "Tamanho da imagem na linha do tempo",
"Rename": "Renomear",
"Deselect all": "Desmarcar todos", "Deselect all": "Desmarcar todos",
"Select all": "Selecionar tudo", "Select all": "Selecionar tudo",
"Sign out devices": { "Sign out devices": {
@ -2785,7 +2757,21 @@
"description": "Descrição", "description": "Descrição",
"dark": "Escuro", "dark": "Escuro",
"attachment": "Anexo", "attachment": "Anexo",
"appearance": "Aparência" "appearance": "Aparência",
"guest": "Convidada(o)",
"legal": "Legal",
"credits": "Licenças",
"faq": "FAQ",
"access_token": "Símbolo de acesso",
"preferences": "Preferências",
"timeline": "Conversas",
"privacy": "Privacidade",
"camera": "Câmera",
"microphone": "Microfone",
"emoji": "Emoji",
"random": "Aleatório",
"support": "Suporte",
"space": "Barra de espaço"
}, },
"action": { "action": {
"continue": "Continuar", "continue": "Continuar",
@ -2852,7 +2838,19 @@
"cancel": "Cancelar", "cancel": "Cancelar",
"back": "Voltar", "back": "Voltar",
"add": "Adicionar", "add": "Adicionar",
"accept": "Aceitar" "accept": "Aceitar",
"disconnect": "Desconectar",
"change": "Alterar",
"subscribe": "Inscrever-se",
"unsubscribe": "Desinscrever-se",
"approve": "Autorizar",
"complete": "Concluir",
"revoke": "Revogar",
"rename": "Renomear",
"show_all": "Mostrar tudo",
"review": "Revisar",
"restore": "Restaurar",
"register": "Registre-se"
}, },
"a11y": { "a11y": {
"user_menu": "Menu do usuário" "user_menu": "Menu do usuário"
@ -2896,7 +2894,9 @@
"default": "Padrão", "default": "Padrão",
"restricted": "Restrito", "restricted": "Restrito",
"moderator": "Moderador/a", "moderator": "Moderador/a",
"admin": "Administrador/a" "admin": "Administrador/a",
"custom": "Personalizado (%(level)s)",
"mod": "Moderador"
}, },
"bug_reporting": { "bug_reporting": {
"matrix_security_issue": "Para relatar um problema de segurança relacionado à tecnologia Matrix, leia a <a>Política de Divulgação de Segurança</a> da Matrix.org.", "matrix_security_issue": "Para relatar um problema de segurança relacionado à tecnologia Matrix, leia a <a>Política de Divulgação de Segurança</a> da Matrix.org.",

View file

@ -13,7 +13,6 @@
"Default": "По умолчанию", "Default": "По умолчанию",
"Deops user with given id": "Снимает полномочия оператора с пользователя с заданным ID", "Deops user with given id": "Снимает полномочия оператора с пользователя с заданным ID",
"Displays action": "Отображение действий", "Displays action": "Отображение действий",
"Emoji": "Смайлы",
"Export E2E room keys": "Экспорт ключей шифрования", "Export E2E room keys": "Экспорт ключей шифрования",
"Failed to change password. Is your password correct?": "Не удалось сменить пароль. Вы правильно ввели текущий пароль?", "Failed to change password. Is your password correct?": "Не удалось сменить пароль. Вы правильно ввели текущий пароль?",
"Failed to reject invitation": "Не удалось отклонить приглашение", "Failed to reject invitation": "Не удалось отклонить приглашение",
@ -152,8 +151,6 @@
"powered by Matrix": "основано на Matrix", "powered by Matrix": "основано на Matrix",
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Отображать время в 12-часовом формате (напр. 2:30 ПП)", "Show timestamps in 12 hour format (e.g. 2:30pm)": "Отображать время в 12-часовом формате (напр. 2:30 ПП)",
"No Microphones detected": "Микрофоны не обнаружены", "No Microphones detected": "Микрофоны не обнаружены",
"Camera": "Камера",
"Microphone": "Микрофон",
"Start automatically after system login": "Автозапуск при входе в систему", "Start automatically after system login": "Автозапуск при входе в систему",
"Default Device": "Устройство по умолчанию", "Default Device": "Устройство по умолчанию",
"No Webcams detected": "Веб-камера не обнаружена", "No Webcams detected": "Веб-камера не обнаружена",
@ -172,7 +169,6 @@
"Invited": "Приглашены", "Invited": "Приглашены",
"Jump to first unread message.": "Перейти к первому непрочитанному сообщению.", "Jump to first unread message.": "Перейти к первому непрочитанному сообщению.",
"Privileged Users": "Привилегированные пользователи", "Privileged Users": "Привилегированные пользователи",
"Register": "Зарегистрироваться",
"Server error": "Ошибка сервера", "Server error": "Ошибка сервера",
"Server may be unavailable, overloaded, or search timed out :(": "Сервер может быть недоступен, перегружен или поиск прекращен по тайм-ауту :(", "Server may be unavailable, overloaded, or search timed out :(": "Сервер может быть недоступен, перегружен или поиск прекращен по тайм-ауту :(",
"Server may be unavailable, overloaded, or you hit a bug.": "Возможно, сервер недоступен, перегружен или случилась ошибка.", "Server may be unavailable, overloaded, or you hit a bug.": "Возможно, сервер недоступен, перегружен или случилась ошибка.",
@ -569,11 +565,8 @@
"Account management": "Управление учётной записью", "Account management": "Управление учётной записью",
"Chat with %(brand)s Bot": "Чат с ботом %(brand)s", "Chat with %(brand)s Bot": "Чат с ботом %(brand)s",
"Help & About": "Помощь и о программе", "Help & About": "Помощь и о программе",
"FAQ": "Часто задаваемые вопросы",
"Versions": "Версии", "Versions": "Версии",
"Preferences": "Параметры",
"Room list": "Список комнат", "Room list": "Список комнат",
"Timeline": "Лента сообщений",
"Autocomplete delay (ms)": "Задержка автодополнения (мс)", "Autocomplete delay (ms)": "Задержка автодополнения (мс)",
"Roles & Permissions": "Роли и права", "Roles & Permissions": "Роли и права",
"Security & Privacy": "Безопасность", "Security & Privacy": "Безопасность",
@ -593,7 +586,6 @@
"Prompt before sending invites to potentially invalid matrix IDs": "Подтверждать отправку приглашений на потенциально недействительные matrix ID", "Prompt before sending invites to potentially invalid matrix IDs": "Подтверждать отправку приглашений на потенциально недействительные matrix ID",
"All keys backed up": "Все ключи сохранены", "All keys backed up": "Все ключи сохранены",
"General": "Общие", "General": "Общие",
"Legal": "Правовая информация",
"Room avatar": "Аватар комнаты", "Room avatar": "Аватар комнаты",
"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": "Пригласить и больше не предупреждать",
@ -737,7 +729,6 @@
"Show read receipts sent by other users": "Уведомления о прочтении другими пользователями", "Show read receipts sent by other users": "Уведомления о прочтении другими пользователями",
"Show hidden events in timeline": "Показывать скрытые события в ленте сообщений", "Show hidden events in timeline": "Показывать скрытые события в ленте сообщений",
"When rooms are upgraded": "При обновлении комнат", "When rooms are upgraded": "При обновлении комнат",
"Credits": "Благодарности",
"Bulk options": "Основные опции", "Bulk options": "Основные опции",
"Upgrade this room to the recommended room version": "Модернизируйте комнату до рекомендованной версии", "Upgrade this room to the recommended room version": "Модернизируйте комнату до рекомендованной версии",
"View older messages in %(roomName)s.": "Просмотр старых сообщений в %(roomName)s.", "View older messages in %(roomName)s.": "Просмотр старых сообщений в %(roomName)s.",
@ -815,7 +806,6 @@
"This homeserver would like to make sure you are not a robot.": "Этот сервер хотел бы убедиться, что вы не робот.", "This homeserver would like to make sure you are not a robot.": "Этот сервер хотел бы убедиться, что вы не робот.",
"Please review and accept all of the homeserver's policies": "Пожалуйста, просмотрите и примите все правила сервера", "Please review and accept all of the homeserver's policies": "Пожалуйста, просмотрите и примите все правила сервера",
"Please review and accept the policies of this homeserver:": "Пожалуйста, просмотрите и примите политику этого сервера:", "Please review and accept the policies of this homeserver:": "Пожалуйста, просмотрите и примите политику этого сервера:",
"Change": "Изменить",
"Use an email address to recover your account": "Используйте почтовый адрес, чтобы восстановить доступ к учётной записи", "Use an email address to recover your account": "Используйте почтовый адрес, чтобы восстановить доступ к учётной записи",
"Enter email address (required on this homeserver)": "Введите адрес электронной почты (требуется для этого сервера)", "Enter email address (required on this homeserver)": "Введите адрес электронной почты (требуется для этого сервера)",
"Doesn't look like a valid email address": "Не похоже на действительный адрес электронной почты", "Doesn't look like a valid email address": "Не похоже на действительный адрес электронной почты",
@ -834,7 +824,6 @@
"other": "У вас есть %(count)s непрочитанных уведомлений в предыдущей версии этой комнаты.", "other": "У вас есть %(count)s непрочитанных уведомлений в предыдущей версии этой комнаты.",
"one": "В предыдущей версии этой комнаты у вас есть непрочитанное уведомление %(count)s." "one": "В предыдущей версии этой комнаты у вас есть непрочитанное уведомление %(count)s."
}, },
"Guest": "Гость",
"Could not load user profile": "Не удалось загрузить профиль пользователя", "Could not load user profile": "Не удалось загрузить профиль пользователя",
"Your password has been reset.": "Ваш пароль был сброшен.", "Your password has been reset.": "Ваш пароль был сброшен.",
"Invalid homeserver discovery response": "Неверный ответ при попытке обнаружения домашнего сервера", "Invalid homeserver discovery response": "Неверный ответ при попытке обнаружения домашнего сервера",
@ -875,7 +864,6 @@
"You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Вы можете войти в систему, но некоторые возможности не будет доступны, пока сервер идентификации не станет доступным. Если вы продолжаете видеть это предупреждение, проверьте вашу конфигурацию или свяжитесь с администратором сервера.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Вы можете войти в систему, но некоторые возможности не будет доступны, пока сервер идентификации не станет доступным. Если вы продолжаете видеть это предупреждение, проверьте вашу конфигурацию или свяжитесь с администратором сервера.",
"<a>Log in</a> to your new account.": "<a>Войти</a> в новую учётную запись.", "<a>Log in</a> to your new account.": "<a>Войти</a> в новую учётную запись.",
"Registration Successful": "Регистрация успешно завершена", "Registration Successful": "Регистрация успешно завершена",
"Show all": "Показать все",
"Edited at %(date)s. Click to view edits.": "Изменено %(date)s. Нажмите для посмотра истории изменений.", "Edited at %(date)s. Click to view edits.": "Изменено %(date)s. Нажмите для посмотра истории изменений.",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)sничего не изменили %(count)s раз(а)", "other": "%(severalUsers)sничего не изменили %(count)s раз(а)",
@ -923,7 +911,6 @@
"The identity server you have chosen does not have any terms of service.": "Сервер идентификации, который вы выбрали, не имеет никаких условий обслуживания.", "The identity server you have chosen does not have any terms of service.": "Сервер идентификации, который вы выбрали, не имеет никаких условий обслуживания.",
"Only continue if you trust the owner of the server.": "Продолжайте, только если доверяете владельцу сервера.", "Only continue if you trust the owner of the server.": "Продолжайте, только если доверяете владельцу сервера.",
"Disconnect from the identity server <idserver />?": "Отсоединиться от сервера идентификации <idserver />?", "Disconnect from the identity server <idserver />?": "Отсоединиться от сервера идентификации <idserver />?",
"Disconnect": "Отключить",
"Do not use an identity server": "Не использовать сервер идентификации", "Do not use an identity server": "Не использовать сервер идентификации",
"Enter a new identity server": "Введите новый идентификационный сервер", "Enter a new identity server": "Введите новый идентификационный сервер",
"Sends a message as plain text, without interpreting it as markdown": "Посылает сообщение в виде простого текста, не интерпретируя его как разметку", "Sends a message as plain text, without interpreting it as markdown": "Посылает сообщение в виде простого текста, не интерпретируя его как разметку",
@ -971,8 +958,6 @@
"Your email address hasn't been verified yet": "Ваш адрес электронной почты еще не проверен", "Your email address hasn't been verified yet": "Ваш адрес электронной почты еще не проверен",
"Click the link in the email you received to verify and then click continue again.": "Нажмите на ссылку в электронном письме, которое вы получили, чтобы подтвердить, и затем нажмите продолжить снова.", "Click the link in the email you received to verify and then click continue again.": "Нажмите на ссылку в электронном письме, которое вы получили, чтобы подтвердить, и затем нажмите продолжить снова.",
"Verify the link in your inbox": "Проверьте ссылку в вашем почтовом ящике(папка \"Входящие\")", "Verify the link in your inbox": "Проверьте ссылку в вашем почтовом ящике(папка \"Входящие\")",
"Complete": "Выполнено",
"Revoke": "Отмена",
"Discovery options will appear once you have added an email above.": "Параметры поиска по электронной почты появятся после добавления её выше.", "Discovery options will appear once you have added an email above.": "Параметры поиска по электронной почты появятся после добавления её выше.",
"Unable to revoke sharing for phone number": "Не удалось отменить общий доступ к номеру телефона", "Unable to revoke sharing for phone number": "Не удалось отменить общий доступ к номеру телефона",
"Unable to share phone number": "Не удается предоставить общий доступ к номеру телефона", "Unable to share phone number": "Не удается предоставить общий доступ к номеру телефона",
@ -1051,7 +1036,6 @@
"Unread messages.": "Непрочитанные сообщения.", "Unread messages.": "Непрочитанные сообщения.",
"Message Actions": "Сообщение действий", "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/> для подтверждения адреса электронной почты или номера телефона, но у сервера нет никакого пользовательского соглашения.", "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/> для подтверждения адреса электронной почты или номера телефона, но у сервера нет никакого пользовательского соглашения.",
"Custom (%(level)s)": "Пользовательский (%(level)s)",
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
"My Ban List": "Мой список блокировки", "My Ban List": "Мой список блокировки",
"Ignored/Blocked": "Игнорируемые/Заблокированные", "Ignored/Blocked": "Игнорируемые/Заблокированные",
@ -1077,7 +1061,6 @@
"Your keys are <b>not being backed up from this session</b>.": "Ваши ключи <b>не резервируются с этом сеансе</b>.", "Your keys are <b>not being backed up from this session</b>.": "Ваши ключи <b>не резервируются с этом сеансе</b>.",
"Server or user ID to ignore": "Сервер или ID пользователя для игнорирования", "Server or user ID to ignore": "Сервер или ID пользователя для игнорирования",
"Subscribed lists": "Подписанные списки", "Subscribed lists": "Подписанные списки",
"Subscribe": "Подписаться",
"Cancel entering passphrase?": "Отменить ввод кодовой фразы?", "Cancel entering passphrase?": "Отменить ввод кодовой фразы?",
"Setting up keys": "Настройка ключей", "Setting up keys": "Настройка ключей",
"Encryption upgrade available": "Доступно обновление шифрования", "Encryption upgrade available": "Доступно обновление шифрования",
@ -1118,7 +1101,6 @@
"Lock": "Заблокировать", "Lock": "Заблокировать",
"Other users may not trust it": "Другие пользователи могут не доверять этому сеансу", "Other users may not trust it": "Другие пользователи могут не доверять этому сеансу",
"Later": "Позже", "Later": "Позже",
"Review": "Обзор",
"This bridge was provisioned by <user />.": "Этот мост был подготовлен пользователем <user />.", "This bridge was provisioned by <user />.": "Этот мост был подготовлен пользователем <user />.",
"This bridge is managed by <user />.": "Этот мост управляется <user />.", "This bridge is managed by <user />.": "Этот мост управляется <user />.",
"Show less": "Показать меньше", "Show less": "Показать меньше",
@ -1191,7 +1173,6 @@
"You have not ignored anyone.": "Вы никого не игнорируете.", "You have not ignored anyone.": "Вы никого не игнорируете.",
"You are currently ignoring:": "Вы игнорируете:", "You are currently ignoring:": "Вы игнорируете:",
"You are not subscribed to any lists": "Вы не подписаны ни на один список", "You are not subscribed to any lists": "Вы не подписаны ни на один список",
"Unsubscribe": "Отписаться",
"View rules": "Посмотреть правила", "View rules": "Посмотреть правила",
"You are currently subscribed to:": "Вы подписаны на:", "You are currently subscribed to:": "Вы подписаны на:",
"Verify by scanning": "Подтверждение сканированием", "Verify by scanning": "Подтверждение сканированием",
@ -1233,7 +1214,6 @@
"Someone is using an unknown session": "Кто-то использует неизвестный сеанс", "Someone is using an unknown session": "Кто-то использует неизвестный сеанс",
"This room is end-to-end encrypted": "Эта комната зашифрована сквозным шифрованием", "This room is end-to-end encrypted": "Эта комната зашифрована сквозным шифрованием",
"Everyone in this room is verified": "Все в этой комнате подтверждены", "Everyone in this room is verified": "Все в этой комнате подтверждены",
"Mod": "Модератор",
"Encrypted by an unverified session": "Зашифровано неподтверждённым сеансом", "Encrypted by an unverified session": "Зашифровано неподтверждённым сеансом",
"Unencrypted": "Не зашифровано", "Unencrypted": "Не зашифровано",
"Encrypted by a deleted session": "Зашифровано удалённым сеансом", "Encrypted by a deleted session": "Зашифровано удалённым сеансом",
@ -1510,7 +1490,6 @@
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Используйте секретную фразу, известную только вам, и при необходимости сохраните ключ безопасности для резервного копирования.", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Используйте секретную фразу, известную только вам, и при необходимости сохраните ключ безопасности для резервного копирования.",
"Enter your account password to confirm the upgrade:": "Введите пароль своей учетной записи для подтверждения обновления:", "Enter your account password to confirm the upgrade:": "Введите пароль своей учетной записи для подтверждения обновления:",
"Restore your key backup to upgrade your encryption": "Восстановите резервную копию ключа для обновления шифрования", "Restore your key backup to upgrade your encryption": "Восстановите резервную копию ключа для обновления шифрования",
"Restore": "Восстановление",
"You'll need to authenticate with the server to confirm the upgrade.": "Вам нужно будет пройти аутентификацию на сервере,чтобы подтвердить обновление.", "You'll need to authenticate with the server to confirm the upgrade.": "Вам нужно будет пройти аутентификацию на сервере,чтобы подтвердить обновление.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Модернизируйте этот сеанс, чтобы через него можно было подтвердить другие сеансы, предоставляя им доступ к зашифрованным сообщениям и помечая их как доверенные для других пользователей.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Модернизируйте этот сеанс, чтобы через него можно было подтвердить другие сеансы, предоставляя им доступ к зашифрованным сообщениям и помечая их как доверенные для других пользователей.",
"Use a different passphrase?": "Использовать другую кодовую фразу?", "Use a different passphrase?": "Использовать другую кодовую фразу?",
@ -1553,7 +1532,6 @@
"Expand room list section": "Раскрыть секцию списка комнат", "Expand room list section": "Раскрыть секцию списка комнат",
"Toggle the top left menu": "Переключение верхнего левого меню", "Toggle the top left menu": "Переключение верхнего левого меню",
"Close dialog or context menu": "Закрыть диалоговое окно или контекстное меню", "Close dialog or context menu": "Закрыть диалоговое окно или контекстное меню",
"Space": "Подпространство",
"No files visible in this room": "Нет видимых файлов в этой комнате", "No files visible in this room": "Нет видимых файлов в этой комнате",
"Attach files from chat or just drag and drop them anywhere in a room.": "Прикрепите файлы из чата или просто перетащите их в комнату.", "Attach files from chat or just drag and drop them anywhere in a room.": "Прикрепите файлы из чата или просто перетащите их в комнату.",
"Master private key:": "Приватный мастер-ключ:", "Master private key:": "Приватный мастер-ключ:",
@ -1568,7 +1546,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.": "Вы можете включить это, если комната будет использоваться только для совместной работы с внутренними командами на вашем домашнем сервере. Это не может быть изменено позже.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Вы можете включить это, если комната будет использоваться только для совместной работы с внутренними командами на вашем домашнем сервере. Это не может быть изменено позже.",
"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.": "Вы можете отключить это, если комната будет использоваться для совместной работы с внешними командами, у которых есть собственный домашний сервер. Это не может быть изменено позже.", "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.": "Вы можете отключить это, если комната будет использоваться для совместной работы с внешними командами, у которых есть собственный домашний сервер. Это не может быть изменено позже.",
"Block anyone not part of %(serverName)s from ever joining this room.": "Запретить кому-либо, не входящему в %(serverName)s, когда-либо присоединяться к этой комнате.", "Block anyone not part of %(serverName)s from ever joining this room.": "Запретить кому-либо, не входящему в %(serverName)s, когда-либо присоединяться к этой комнате.",
"Privacy": "Конфиденциальность",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Добавляет ( ͡° ͜ʖ ͡°) в начало сообщения", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Добавляет ( ͡° ͜ʖ ͡°) в начало сообщения",
"Unknown App": "Неизвестное приложение", "Unknown App": "Неизвестное приложение",
"Not encrypted": "Не зашифровано", "Not encrypted": "Не зашифровано",
@ -1688,7 +1665,6 @@
"Other homeserver": "Другой домашний сервер", "Other homeserver": "Другой домашний сервер",
"Server Options": "Параметры сервера", "Server Options": "Параметры сервера",
"Decline All": "Отклонить все", "Decline All": "Отклонить все",
"Approve": "Согласиться",
"Approve widget permissions": "Одобрить разрешения виджета", "Approve widget permissions": "Одобрить разрешения виджета",
"Send stickers into your active room": "Отправить стикеры в активную комнату", "Send stickers into your active room": "Отправить стикеры в активную комнату",
"Remain on your screen while running": "Оставаться на экране во время работы", "Remain on your screen while running": "Оставаться на экране во время работы",
@ -2161,8 +2137,6 @@
"Share %(name)s": "Поделиться %(name)s", "Share %(name)s": "Поделиться %(name)s",
"Skip for now": "Пропустить сейчас", "Skip for now": "Пропустить сейчас",
"Failed to create initial space rooms": "Не удалось создать первоначальные комнаты пространства", "Failed to create initial space rooms": "Не удалось создать первоначальные комнаты пространства",
"Support": "Поддержка",
"Random": "Случайный",
"Welcome to <name/>": "Добро пожаловать в <name/>", "Welcome to <name/>": "Добро пожаловать в <name/>",
"Your server does not support showing space hierarchies.": "Ваш сервер не поддерживает отображение пространственных иерархий.", "Your server does not support showing space hierarchies.": "Ваш сервер не поддерживает отображение пространственных иерархий.",
"Private space": "Приватное пространство", "Private space": "Приватное пространство",
@ -2174,8 +2148,6 @@
"Mark as not suggested": "Отметить как не рекомендуется", "Mark as not suggested": "Отметить как не рекомендуется",
"Failed to remove some rooms. Try again later": "Не удалось удалить несколько комнат. Попробуйте позже", "Failed to remove some rooms. Try again later": "Не удалось удалить несколько комнат. Попробуйте позже",
"Sends the given message as a spoiler": "Отправить данное сообщение под спойлером", "Sends the given message as a spoiler": "Отправить данное сообщение под спойлером",
"Play": "Воспроизведение",
"Pause": "Пауза",
"Connecting": "Подключение", "Connecting": "Подключение",
"%(deviceId)s from %(ip)s": "%(deviceId)s с %(ip)s", "%(deviceId)s from %(ip)s": "%(deviceId)s с %(ip)s",
"The user you called is busy.": "Вызываемый пользователь занят.", "The user you called is busy.": "Вызываемый пользователь занят.",
@ -2391,7 +2363,6 @@
"Keyboard shortcuts": "Горячие клавиши", "Keyboard shortcuts": "Горячие клавиши",
"Warn before quitting": "Предупредить перед выходом", "Warn before quitting": "Предупредить перед выходом",
"Your access token gives full access to your account. Do not share it with anyone.": "Ваш токен доступа даёт полный доступ к вашей учётной записи. Не передавайте его никому.", "Your access token gives full access to your account. Do not share it with anyone.": "Ваш токен доступа даёт полный доступ к вашей учётной записи. Не передавайте его никому.",
"Access Token": "Токен доступа",
"Message bubbles": "Пузыри сообщений", "Message bubbles": "Пузыри сообщений",
"There was an error loading your notification settings.": "Произошла ошибка при загрузке настроек уведомлений.", "There was an error loading your notification settings.": "Произошла ошибка при загрузке настроек уведомлений.",
"Mentions & keywords": "Упоминания и ключевые слова", "Mentions & keywords": "Упоминания и ключевые слова",
@ -2799,7 +2770,6 @@
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Эта комната находится в некоторых пространствах, администратором которых вы не являетесь. В этих пространствах старая комната будет по-прежнему отображаться, но людям будет предложено присоединиться к новой.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Эта комната находится в некоторых пространствах, администратором которых вы не являетесь. В этих пространствах старая комната будет по-прежнему отображаться, но людям будет предложено присоединиться к новой.",
"Large": "Большой", "Large": "Большой",
"Image size in the timeline": "Размер изображения в ленте сообщений", "Image size in the timeline": "Размер изображения в ленте сообщений",
"Rename": "Переименовать",
"Select all": "Выбрать все", "Select all": "Выбрать все",
"Deselect all": "Отменить выбор", "Deselect all": "Отменить выбор",
"Sign out devices": { "Sign out devices": {
@ -3246,7 +3216,6 @@
"Verify or sign out from this session for best security and reliability.": "Заверьте или выйдите из этого сеанса для лучшей безопасности и надёжности.", "Verify or sign out from this session for best security and reliability.": "Заверьте или выйдите из этого сеанса для лучшей безопасности и надёжности.",
"Your server doesn't support disabling sending read receipts.": "Ваш сервер не поддерживает отключение отправки уведомлений о прочтении.", "Your server doesn't support disabling sending read receipts.": "Ваш сервер не поддерживает отключение отправки уведомлений о прочтении.",
"Share your activity and status with others.": "Поделитесь своей активностью и статусом с другими.", "Share your activity and status with others.": "Поделитесь своей активностью и статусом с другими.",
"Presence": "Присутствие",
"Complete these to get the most out of %(brand)s": "Выполните их, чтобы получить максимальную отдачу от %(brand)s", "Complete these to get the most out of %(brand)s": "Выполните их, чтобы получить максимальную отдачу от %(brand)s",
"You did it!": "Вы сделали это!", "You did it!": "Вы сделали это!",
"Only %(count)s steps to go": { "Only %(count)s steps to go": {
@ -3282,7 +3251,6 @@
"All": "Все", "All": "Все",
"Verified sessions": "Заверенные сеансы", "Verified sessions": "Заверенные сеансы",
"Inactive": "Неактивно", "Inactive": "Неактивно",
"View all": "Посмотреть все",
"Empty room (was %(oldName)s)": "Пустая комната (без %(oldName)s)", "Empty room (was %(oldName)s)": "Пустая комната (без %(oldName)s)",
"%(user1)s and %(user2)s": "%(user1)s и %(user2)s", "%(user1)s and %(user2)s": "%(user1)s и %(user2)s",
"No unverified sessions found.": "Незаверенных сеансов не обнаружено.", "No unverified sessions found.": "Незаверенных сеансов не обнаружено.",
@ -3296,7 +3264,6 @@
"Inactive for %(inactiveAgeDays)s days or longer": "Неактивны %(inactiveAgeDays)s дней или дольше", "Inactive for %(inactiveAgeDays)s days or longer": "Неактивны %(inactiveAgeDays)s дней или дольше",
"No inactive sessions found.": "Неактивных сеансов не обнаружено.", "No inactive sessions found.": "Неактивных сеансов не обнаружено.",
"No sessions found.": "Сеансов не найдено.", "No sessions found.": "Сеансов не найдено.",
"Show": "Показать",
"Ready for secure messaging": "Готовы к безопасному обмену сообщениями", "Ready for secure messaging": "Готовы к безопасному обмену сообщениями",
"Not ready for secure messaging": "Не готовы к безопасному обмену сообщениями", "Not ready for secure messaging": "Не готовы к безопасному обмену сообщениями",
"Manually verify by text": "Ручная сверка по тексту", "Manually verify by text": "Ручная сверка по тексту",
@ -3521,7 +3488,22 @@
"dark": "Темная", "dark": "Темная",
"beta": "Бета", "beta": "Бета",
"attachment": "Вложение", "attachment": "Вложение",
"appearance": "Внешний вид" "appearance": "Внешний вид",
"guest": "Гость",
"legal": "Правовая информация",
"credits": "Благодарности",
"faq": "Часто задаваемые вопросы",
"access_token": "Токен доступа",
"preferences": "Параметры",
"presence": "Присутствие",
"timeline": "Лента сообщений",
"privacy": "Конфиденциальность",
"camera": "Камера",
"microphone": "Микрофон",
"emoji": "Смайлы",
"random": "Случайный",
"support": "Поддержка",
"space": "Подпространство"
}, },
"action": { "action": {
"continue": "Продолжить", "continue": "Продолжить",
@ -3592,7 +3574,23 @@
"back": "Назад", "back": "Назад",
"apply": "Применить", "apply": "Применить",
"add": "Добавить", "add": "Добавить",
"accept": "Принять" "accept": "Принять",
"disconnect": "Отключить",
"change": "Изменить",
"subscribe": "Подписаться",
"unsubscribe": "Отписаться",
"approve": "Согласиться",
"complete": "Выполнено",
"revoke": "Отмена",
"rename": "Переименовать",
"view_all": "Посмотреть все",
"show_all": "Показать все",
"show": "Показать",
"review": "Обзор",
"restore": "Восстановление",
"play": "Воспроизведение",
"pause": "Пауза",
"register": "Зарегистрироваться"
}, },
"a11y": { "a11y": {
"user_menu": "Меню пользователя" "user_menu": "Меню пользователя"
@ -3661,7 +3659,9 @@
"default": "По умолчанию", "default": "По умолчанию",
"restricted": "Ограниченный пользователь", "restricted": "Ограниченный пользователь",
"moderator": "Модератор", "moderator": "Модератор",
"admin": "Администратор" "admin": "Администратор",
"custom": "Пользовательский (%(level)s)",
"mod": "Модератор"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Если вы отправили ошибку через GitHub, журналы отладки могут помочь нам отследить проблему. ", "introduction": "Если вы отправили ошибку через GitHub, журналы отладки могут помочь нам отследить проблему. ",

View file

@ -177,7 +177,6 @@
"powered by Matrix": "používa protokol Matrix", "powered by Matrix": "používa protokol Matrix",
"Sign in with": "Na prihlásenie sa použije", "Sign in with": "Na prihlásenie sa použije",
"Email address": "Emailová adresa", "Email address": "Emailová adresa",
"Register": "Zaregistrovať",
"Something went wrong!": "Niečo sa pokazilo!", "Something went wrong!": "Niečo sa pokazilo!",
"Delete Widget": "Vymazať widget", "Delete Widget": "Vymazať widget",
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Týmto vymažete widget pre všetkých používateľov v tejto miestnosti. Ste si istí, že chcete vymazať tento widget?", "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Týmto vymažete widget pre všetkých používateľov v tejto miestnosti. Ste si istí, že chcete vymazať tento widget?",
@ -329,8 +328,6 @@
"No Microphones detected": "Neboli rozpoznané žiadne mikrofóny", "No Microphones detected": "Neboli rozpoznané žiadne mikrofóny",
"No Webcams detected": "Neboli rozpoznané žiadne kamery", "No Webcams detected": "Neboli rozpoznané žiadne kamery",
"Default Device": "Predvolené zariadenie", "Default Device": "Predvolené zariadenie",
"Microphone": "Mikrofón",
"Camera": "Kamera",
"Email": "Email", "Email": "Email",
"Notifications": "Oznámenia", "Notifications": "Oznámenia",
"Profile": "Profil", "Profile": "Profil",
@ -353,7 +350,6 @@
"Ignores a user, hiding their messages from you": "Ignoruje používateľa a skryje pred vami jeho správy", "Ignores a user, hiding their messages from you": "Ignoruje používateľa a skryje pred vami jeho správy",
"Stops ignoring a user, showing their messages going forward": "Prestane ignorovať používateľa a začne zobrazovať jeho správy", "Stops ignoring a user, showing their messages going forward": "Prestane ignorovať používateľa a začne zobrazovať jeho správy",
"Commands": "Príkazy", "Commands": "Príkazy",
"Emoji": "Emotikon",
"Notify the whole room": "Oznamovať celú miestnosť", "Notify the whole room": "Oznamovať celú miestnosť",
"Room Notification": "Oznámenie miestnosti", "Room Notification": "Oznámenie miestnosti",
"Users": "Používatelia", "Users": "Používatelia",
@ -509,7 +505,6 @@
"Before submitting logs, you must <a>create a GitHub issue</a> to describe your problem.": "Pred tým, než odošlete záznamy, musíte <a>nahlásiť váš problém na GitHub</a>. Uvedte prosím podrobný popis.", "Before submitting logs, you must <a>create a GitHub issue</a> to describe your problem.": "Pred tým, než odošlete záznamy, musíte <a>nahlásiť váš problém na GitHub</a>. Uvedte prosím podrobný popis.",
"%(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 teraz vyžaduje 3-5× menej pamäte, pretože informácie o ostatných používateľoch načítava len podľa potreby. Prosím počkajte na dokončenie synchronizácie so serverom!", "%(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 teraz vyžaduje 3-5× menej pamäte, pretože informácie o ostatných používateľoch načítava len podľa potreby. Prosím počkajte na dokončenie synchronizácie so serverom!",
"Updating %(brand)s": "Prebieha aktualizácia %(brand)s", "Updating %(brand)s": "Prebieha aktualizácia %(brand)s",
"Legal": "Právne informácie",
"Unable to load! Check your network connectivity and try again.": "Nie je možné načítať! Skontrolujte prístup na internet a skúste neskôr.", "Unable to load! Check your network connectivity and try again.": "Nie je možné načítať! Skontrolujte prístup na internet a skúste neskôr.",
"Unrecognised address": "Nerozpoznaná adresa", "Unrecognised address": "Nerozpoznaná adresa",
"You do not have permission to invite people to this room.": "Nemáte povolenie pozývať ľudí do tejto miestnosti.", "You do not have permission to invite people to this room.": "Nemáte povolenie pozývať ľudí do tejto miestnosti.",
@ -696,16 +691,12 @@
"Language and region": "Jazyk a región", "Language and region": "Jazyk a región",
"Account management": "Správa účtu", "Account management": "Správa účtu",
"General": "Všeobecné", "General": "Všeobecné",
"Credits": "Poďakovanie",
"For help with using %(brand)s, click <a>here</a>.": "Pomoc pri používaní %(brand)s môžete získať kliknutím <a>sem</a>.", "For help with using %(brand)s, click <a>here</a>.": "Pomoc pri používaní %(brand)s môžete získať kliknutím <a>sem</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pomoc pri používaní aplikácie %(brand)s môžete získať kliknutím <a>sem</a>, alebo začnite konverzáciu s našim robotom pomocou tlačidla dole.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pomoc pri používaní aplikácie %(brand)s môžete získať kliknutím <a>sem</a>, alebo začnite konverzáciu s našim robotom pomocou tlačidla dole.",
"Chat with %(brand)s Bot": "Konverzácia s %(brand)s Bot", "Chat with %(brand)s Bot": "Konverzácia s %(brand)s Bot",
"Help & About": "Pomocník a o programe", "Help & About": "Pomocník a o programe",
"FAQ": "Často kladené otázky (FAQ)",
"Versions": "Verzie", "Versions": "Verzie",
"Preferences": "Predvoľby",
"Composer": "Písanie správ", "Composer": "Písanie správ",
"Timeline": "Časová os",
"Room list": "Zoznam miestností", "Room list": "Zoznam miestností",
"Autocomplete delay (ms)": "Oneskorenie automatického dokončovania (ms)", "Autocomplete delay (ms)": "Oneskorenie automatického dokončovania (ms)",
"Ignored users": "Ignorovaní používatelia", "Ignored users": "Ignorovaní používatelia",
@ -757,13 +748,11 @@
"Room Settings - %(roomName)s": "Nastavenia miestnosti - %(roomName)s", "Room Settings - %(roomName)s": "Nastavenia miestnosti - %(roomName)s",
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Varovanie</b>: zálohovanie šifrovacích kľúčov by ste mali nastavovať na dôveryhodnom počítači.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Varovanie</b>: zálohovanie šifrovacích kľúčov by ste mali nastavovať na dôveryhodnom počítači.",
"This homeserver would like to make sure you are not a robot.": "Tento domovský server by sa rád uistil, že nie ste robot.", "This homeserver would like to make sure you are not a robot.": "Tento domovský server by sa rád uistil, že nie ste robot.",
"Change": "Zmeniť",
"Email (optional)": "Email (nepovinné)", "Email (optional)": "Email (nepovinné)",
"Phone (optional)": "Telefón (nepovinné)", "Phone (optional)": "Telefón (nepovinné)",
"Join millions for free on the largest public server": "Pripojte sa k mnohým používateľom najväčšieho verejného domovského servera zdarma", "Join millions for free on the largest public server": "Pripojte sa k mnohým používateľom najväčšieho verejného domovského servera zdarma",
"Other": "Ďalšie", "Other": "Ďalšie",
"Couldn't load page": "Nie je možné načítať stránku", "Couldn't load page": "Nie je možné načítať stránku",
"Guest": "Hosť",
"Could not load user profile": "Nie je možné načítať profil používateľa", "Could not load user profile": "Nie je možné načítať profil používateľa",
"Your password has been reset.": "Vaše heslo bolo obnovené.", "Your password has been reset.": "Vaše heslo bolo obnovené.",
"This homeserver does not support login using email address.": "Tento domovský server nepodporuje prihlásenie sa zadaním emailovej adresy.", "This homeserver does not support login using email address.": "Tento domovský server nepodporuje prihlásenie sa zadaním emailovej adresy.",
@ -810,7 +799,6 @@
"Add Email Address": "Pridať emailovú adresu", "Add Email Address": "Pridať emailovú adresu",
"Add Phone Number": "Pridať telefónne číslo", "Add Phone Number": "Pridať telefónne číslo",
"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.": "Táto akcia vyžaduje prístup k predvolenému serveru totožností <server /> na overenie emailovej adresy alebo telefónneho čísla, ale server nemá žiadne podmienky používania.", "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.": "Táto akcia vyžaduje prístup k predvolenému serveru totožností <server /> na overenie emailovej adresy alebo telefónneho čísla, ale server nemá žiadne podmienky používania.",
"Custom (%(level)s)": "Vlastný (%(level)s)",
"Sends a message as plain text, without interpreting it as markdown": "Odošle správu ako obyčajný text bez interpretácie ako markdown", "Sends a message as plain text, without interpreting it as markdown": "Odošle správu ako obyčajný text bez interpretácie ako markdown",
"You do not have the required permissions to use this command.": "Na použitie tohoto príkazu nemáte dostatočné povolenia.", "You do not have the required permissions to use this command.": "Na použitie tohoto príkazu nemáte dostatočné povolenia.",
"Error upgrading room": "Chyba pri aktualizácii miestnosti", "Error upgrading room": "Chyba pri aktualizácii miestnosti",
@ -858,7 +846,6 @@
"Disconnect from the identity server <current /> and connect to <new /> instead?": "Naozaj si želáte odpojiť od servera totožností <current /> a pripojiť sa namiesto toho k serveru <new />?", "Disconnect from the identity server <current /> and connect to <new /> instead?": "Naozaj si želáte odpojiť od servera totožností <current /> a pripojiť sa namiesto toho k serveru <new />?",
"Disconnect identity server": "Odpojiť server totožností", "Disconnect identity server": "Odpojiť server totožností",
"Disconnect from the identity server <idserver />?": "Naozaj sa chcete odpojiť od servera totožností <idserver />?", "Disconnect from the identity server <idserver />?": "Naozaj sa chcete odpojiť od servera totožností <idserver />?",
"Disconnect": "Odpojiť",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Pred odpojením by ste mali <b>odstrániť vaše osobné údaje</b> zo servera totožností <idserver />. Žiaľ, server totožnosti <idserver /> momentálne nie je dostupný a nie je možné sa k nemu pripojiť.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Pred odpojením by ste mali <b>odstrániť vaše osobné údaje</b> zo servera totožností <idserver />. Žiaľ, server totožnosti <idserver /> momentálne nie je dostupný a nie je možné sa k nemu pripojiť.",
"You should:": "Mali by ste:", "You should:": "Mali by ste:",
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "Skontrolovať rozšírenia inštalované vo webovom prehliadači, ktoré by mohli blokovať prístup k serveru totožností (napr. rozšírenie Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "Skontrolovať rozšírenia inštalované vo webovom prehliadači, ktoré by mohli blokovať prístup k serveru totožností (napr. rozšírenie Privacy Badger)",
@ -986,7 +973,6 @@
"If you can't scan the code above, verify by comparing unique emoji.": "Ak sa vám nepodarí naskenovať uvedený kód, overte pomocou porovnania jedinečných emotikonov.", "If you can't scan the code above, verify by comparing unique emoji.": "Ak sa vám nepodarí naskenovať uvedený kód, overte pomocou porovnania jedinečných emotikonov.",
"Verify by comparing unique emoji.": "Overenie porovnaním jedinečnej kombinácie emotikonov.", "Verify by comparing unique emoji.": "Overenie porovnaním jedinečnej kombinácie emotikonov.",
"Verify by emoji": "Overiť pomocou emotikonov", "Verify by emoji": "Overiť pomocou emotikonov",
"Review": "Skontrolovať",
"Later": "Neskôr", "Later": "Neskôr",
"Other users may not trust it": "Ostatní používatelia jej nemusia dôverovať", "Other users may not trust it": "Ostatní používatelia jej nemusia dôverovať",
"This bridge was provisioned by <user />.": "Toto premostenie poskytuje <user />.", "This bridge was provisioned by <user />.": "Toto premostenie poskytuje <user />.",
@ -1061,7 +1047,6 @@
"You have not ignored anyone.": "Nikoho neignorujete.", "You have not ignored anyone.": "Nikoho neignorujete.",
"You are currently ignoring:": "Ignorujete:", "You are currently ignoring:": "Ignorujete:",
"You are not subscribed to any lists": "Nie ste prihlásený do žiadneho zoznamu", "You are not subscribed to any lists": "Nie ste prihlásený do žiadneho zoznamu",
"Unsubscribe": "Odhlásenie z odberu",
"View rules": "Zobraziť pravidlá", "View rules": "Zobraziť pravidlá",
"You are currently subscribed to:": "Aktuálne odoberáte:", "You are currently subscribed to:": "Aktuálne odoberáte:",
"⚠ These settings are meant for advanced users.": "⚠ Tieto nastavenia sú určené pre pokročilých používateľov.", "⚠ These settings are meant for advanced users.": "⚠ Tieto nastavenia sú určené pre pokročilých používateľov.",
@ -1074,7 +1059,6 @@
"Subscribing to a ban list will cause you to join it!": "Prihlásenie sa na zoznam zákazov spôsobí, že sa naň pridáte!", "Subscribing to a ban list will cause you to join it!": "Prihlásenie sa na zoznam zákazov spôsobí, že sa naň pridáte!",
"If this isn't what you want, please use a different tool to ignore users.": "Pokiaľ toto nechcete, tak použite prosím iný nástroj na ignorovanie používateľov.", "If this isn't what you want, please use a different tool to ignore users.": "Pokiaľ toto nechcete, tak použite prosím iný nástroj na ignorovanie používateľov.",
"Room ID or address of ban list": "ID miestnosti alebo adresa zoznamu zákazov", "Room ID or address of ban list": "ID miestnosti alebo adresa zoznamu zákazov",
"Subscribe": "Prihlásiť sa na odber",
"Always show the window menu bar": "Vždy zobraziť hornú lištu okna", "Always show the window menu bar": "Vždy zobraziť hornú lištu okna",
"Read Marker lifetime (ms)": "Platnosť značky Prečítané (ms)", "Read Marker lifetime (ms)": "Platnosť značky Prečítané (ms)",
"Read Marker off-screen lifetime (ms)": "Platnosť značky Prečítané mimo obrazovku (ms)", "Read Marker off-screen lifetime (ms)": "Platnosť značky Prečítané mimo obrazovku (ms)",
@ -1103,8 +1087,6 @@
"Your email address hasn't been verified yet": "Vaša emailová adresa nebola zatiaľ overená", "Your email address hasn't been verified yet": "Vaša emailová adresa nebola zatiaľ overená",
"Click the link in the email you received to verify and then click continue again.": "Pre overenie kliknite na odkaz v emaile, ktorý ste dostali, a potom znova kliknite pokračovať.", "Click the link in the email you received to verify and then click continue again.": "Pre overenie kliknite na odkaz v emaile, ktorý ste dostali, a potom znova kliknite pokračovať.",
"Verify the link in your inbox": "Overte odkaz vo vašej emailovej schránke", "Verify the link in your inbox": "Overte odkaz vo vašej emailovej schránke",
"Complete": "Dokončiť",
"Revoke": "Odvolať",
"Unable to revoke sharing for phone number": "Nepodarilo sa zrušiť zdieľanie telefónneho čísla", "Unable to revoke sharing for phone number": "Nepodarilo sa zrušiť zdieľanie telefónneho čísla",
"Unable to share phone number": "Nepodarilo sa zdieľanie telefónneho čísla", "Unable to share phone number": "Nepodarilo sa zdieľanie telefónneho čísla",
"Please enter verification code sent via text.": "Zadajte prosím overovací kód zaslaný prostredníctvom SMS.", "Please enter verification code sent via text.": "Zadajte prosím overovací kód zaslaný prostredníctvom SMS.",
@ -1118,7 +1100,6 @@
"This room is end-to-end encrypted": "Táto miestnosť je end-to-end šifrovaná", "This room is end-to-end encrypted": "Táto miestnosť je end-to-end šifrovaná",
"Everyone in this room is verified": "Všetci v tejto miestnosti sú overení", "Everyone in this room is verified": "Všetci v tejto miestnosti sú overení",
"Edit message": "Upraviť správu", "Edit message": "Upraviť správu",
"Mod": "Moderátor",
"Are you sure you want to cancel entering passphrase?": "Naozaj chcete zrušiť zadávanie prístupovej frázy?", "Are you sure you want to cancel entering passphrase?": "Naozaj chcete zrušiť zadávanie prístupovej frázy?",
"%(num)s minutes from now": "o %(num)s minút", "%(num)s minutes from now": "o %(num)s minút",
"%(num)s hours from now": "o %(num)s hodín", "%(num)s hours from now": "o %(num)s hodín",
@ -1501,7 +1482,6 @@
"one": "Odhlásiť zariadenie", "one": "Odhlásiť zariadenie",
"other": "Odhlásené zariadenia" "other": "Odhlásené zariadenia"
}, },
"Rename": "Premenovať",
"Image size in the timeline": "Veľkosť obrázku na časovej osi", "Image size in the timeline": "Veľkosť obrázku na časovej osi",
"Unable to copy a link to the room to the clipboard.": "Nie je možné skopírovať odkaz na miestnosť do schránky.", "Unable to copy a link to the room to the clipboard.": "Nie je možné skopírovať odkaz na miestnosť do schránky.",
"Unable to copy room link": "Nie je možné skopírovať odkaz na miestnosť", "Unable to copy room link": "Nie je možné skopírovať odkaz na miestnosť",
@ -1538,12 +1518,10 @@
"Show previews of messages": "Zobraziť náhľady správ", "Show previews of messages": "Zobraziť náhľady správ",
"Activity": "Aktivity", "Activity": "Aktivity",
"Sort by": "Zoradiť podľa", "Sort by": "Zoradiť podľa",
"Access Token": "Prístupový token",
"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.", "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.", "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.", "Some suggestions may be hidden for privacy.": "Niektoré návrhy môžu byť skryté kvôli ochrane súkromia.",
"You can read all our terms <PrivacyPolicyUrl>here</PrivacyPolicyUrl>": "Všetky naše podmienky si môžete prečítať <PrivacyPolicyUrl>tu</PrivacyPolicyUrl>", "You can read all our terms <PrivacyPolicyUrl>here</PrivacyPolicyUrl>": "Všetky naše podmienky si môžete prečítať <PrivacyPolicyUrl>tu</PrivacyPolicyUrl>",
"Privacy": "Súkromie",
"Cross-signing is ready for use.": "Krížové podpisovanie je pripravené na použitie.", "Cross-signing is ready for use.": "Krížové podpisovanie je pripravené na použitie.",
"Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "Zálohujte si šifrovacie kľúče s údajmi o účte pre prípad, že stratíte prístup k reláciám. Vaše kľúče budú zabezpečené jedinečným bezpečnostným kľúčom.", "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "Zálohujte si šifrovacie kľúče s údajmi o účte pre prípad, že stratíte prístup k reláciám. Vaše kľúče budú zabezpečené jedinečným bezpečnostným kľúčom.",
"The authenticity of this encrypted message can't be guaranteed on this device.": "Vierohodnosť tejto zašifrovanej správy nie je možné na tomto zariadení zaručiť.", "The authenticity of this encrypted message can't be guaranteed on this device.": "Vierohodnosť tejto zašifrovanej správy nie je možné na tomto zariadení zaručiť.",
@ -1598,7 +1576,6 @@
"Topic (optional)": "Téma (voliteľné)", "Topic (optional)": "Téma (voliteľné)",
"e.g. my-room": "napr. moja-miestnost", "e.g. my-room": "napr. moja-miestnost",
"Deactivate user?": "Deaktivovať používateľa?", "Deactivate user?": "Deaktivovať používateľa?",
"Show all": "Zobraziť všetko",
"Upload all": "Nahrať všetko", "Upload all": "Nahrať všetko",
"Add room": "Pridať miestnosť", "Add room": "Pridať miestnosť",
"Enter username": "Zadať používateľské meno", "Enter username": "Zadať používateľské meno",
@ -1624,22 +1601,15 @@
"Visibility": "Viditeľnosť", "Visibility": "Viditeľnosť",
"Sent": "Odoslané", "Sent": "Odoslané",
"Connecting": "Pripájanie", "Connecting": "Pripájanie",
"Play": "Prehrať",
"Pause": "Pozastaviť",
"Sending": "Odosielanie", "Sending": "Odosielanie",
"Avatar": "Obrázok", "Avatar": "Obrázok",
"Suggested": "Navrhované", "Suggested": "Navrhované",
"Support": "Podpora",
"Random": "Náhodné",
"Value:": "Hodnota:", "Value:": "Hodnota:",
"Level": "Úroveň", "Level": "Úroveň",
"Setting:": "Nastavenie:", "Setting:": "Nastavenie:",
"Approve": "Schváliť",
"Comment": "Komentár", "Comment": "Komentár",
"Away": "Preč", "Away": "Preč",
"Restore": "Obnoviť",
"A-Z": "A-Z", "A-Z": "A-Z",
"Space": "Priestor",
"Calls": "Hovory", "Calls": "Hovory",
"Navigation": "Navigácia", "Navigation": "Navigácia",
"Matrix": "Matrix", "Matrix": "Matrix",
@ -3257,7 +3227,6 @@
"Download %(brand)s": "Stiahnuť %(brand)s", "Download %(brand)s": "Stiahnuť %(brand)s",
"Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutie odosielania potvrdení o prečítaní.", "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.", "Share your activity and status with others.": "Zdieľajte svoju aktivitu a stav s ostatnými.",
"Presence": "Prítomnosť",
"Send read receipts": "Odosielať potvrdenia o prečítaní", "Send read receipts": "Odosielať potvrdenia o prečítaní",
"Last activity": "Posledná aktivita", "Last activity": "Posledná aktivita",
"Sessions": "Relácie", "Sessions": "Relácie",
@ -3277,7 +3246,6 @@
"Welcome": "Vitajte", "Welcome": "Vitajte",
"Show shortcut to welcome checklist above the room list": "Zobraziť skratku na uvítací kontrolný zoznam nad zoznamom miestností", "Show shortcut to welcome checklist above the room list": "Zobraziť skratku na uvítací kontrolný zoznam nad zoznamom miestností",
"Inactive sessions": "Neaktívne relácie", "Inactive sessions": "Neaktívne relácie",
"View all": "Zobraziť všetky",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Overte si relácie pre vylepšené bezpečné zasielanie správ alebo sa odhláste z tých, ktoré už nepoznáte alebo nepoužívate.", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Overte si relácie pre vylepšené bezpečné zasielanie správ alebo sa odhláste z tých, ktoré už nepoznáte alebo nepoužívate.",
"Unverified sessions": "Neoverené relácie", "Unverified sessions": "Neoverené relácie",
"Security recommendations": "Bezpečnostné odporúčania", "Security recommendations": "Bezpečnostné odporúčania",
@ -3308,7 +3276,6 @@
"other": "%(user)s a %(count)s ďalších" "other": "%(user)s a %(count)s ďalších"
}, },
"%(user1)s and %(user2)s": "%(user1)s a %(user2)s", "%(user1)s and %(user2)s": "%(user1)s a %(user2)s",
"Show": "Zobraziť",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s alebo %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s alebo %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s alebo %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s alebo %(recoveryFile)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s alebo %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s alebo %(appLinks)s",
@ -3713,7 +3680,6 @@
"Email summary": "Emailový súhrn", "Email summary": "Emailový súhrn",
"People, Mentions and Keywords": "Ľudia, zmienky a kľúčové slová", "People, Mentions and Keywords": "Ľudia, zmienky a kľúčové slová",
"Mentions and Keywords only": "Iba zmienky a kľúčové slová", "Mentions and Keywords only": "Iba zmienky a kľúčové slová",
"Proceed": "Pokračovať",
"Show message preview in desktop notification": "Zobraziť náhľad správy v oznámení na pracovnej ploche", "Show message preview in desktop notification": "Zobraziť náhľad správy v oznámení na pracovnej ploche",
"I want to be notified for (Default Setting)": "Chcem byť upozornený na (Predvolené nastavenie)", "I want to be notified for (Default Setting)": "Chcem byť upozornený na (Predvolené nastavenie)",
"This setting will be applied by default to all your rooms.": "Toto nastavenie sa predvolene použije pre všetky vaše miestnosti.", "This setting will be applied by default to all your rooms.": "Toto nastavenie sa predvolene použije pre všetky vaše miestnosti.",
@ -3815,7 +3781,22 @@
"dark": "Tmavý", "dark": "Tmavý",
"beta": "Beta", "beta": "Beta",
"attachment": "Príloha", "attachment": "Príloha",
"appearance": "Vzhľad" "appearance": "Vzhľad",
"guest": "Hosť",
"legal": "Právne informácie",
"credits": "Poďakovanie",
"faq": "Často kladené otázky (FAQ)",
"access_token": "Prístupový token",
"preferences": "Predvoľby",
"presence": "Prítomnosť",
"timeline": "Časová os",
"privacy": "Súkromie",
"camera": "Kamera",
"microphone": "Mikrofón",
"emoji": "Emotikon",
"random": "Náhodné",
"support": "Podpora",
"space": "Priestor"
}, },
"action": { "action": {
"continue": "Pokračovať", "continue": "Pokračovať",
@ -3887,7 +3868,24 @@
"back": "Naspäť", "back": "Naspäť",
"apply": "Použiť", "apply": "Použiť",
"add": "Pridať", "add": "Pridať",
"accept": "Prijať" "accept": "Prijať",
"disconnect": "Odpojiť",
"change": "Zmeniť",
"subscribe": "Prihlásiť sa na odber",
"unsubscribe": "Odhlásenie z odberu",
"approve": "Schváliť",
"proceed": "Pokračovať",
"complete": "Dokončiť",
"revoke": "Odvolať",
"rename": "Premenovať",
"view_all": "Zobraziť všetky",
"show_all": "Zobraziť všetko",
"show": "Zobraziť",
"review": "Skontrolovať",
"restore": "Obnoviť",
"play": "Prehrať",
"pause": "Pozastaviť",
"register": "Zaregistrovať"
}, },
"a11y": { "a11y": {
"user_menu": "Používateľské menu" "user_menu": "Používateľské menu"
@ -3974,7 +3972,9 @@
"default": "Predvolené", "default": "Predvolené",
"restricted": "Obmedzené", "restricted": "Obmedzené",
"moderator": "Moderátor", "moderator": "Moderátor",
"admin": "Správca" "admin": "Správca",
"custom": "Vlastný (%(level)s)",
"mod": "Moderátor"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Ak ste odoslali chybu prostredníctvom služby GitHub, záznamy o ladení nám môžu pomôcť nájsť problém. ", "introduction": "Ak ste odoslali chybu prostredníctvom služby GitHub, záznamy o ladení nám môžu pomôcť nájsť problém. ",

View file

@ -15,7 +15,6 @@
"Click the button below to confirm adding this phone number.": "Pritisnite gumb spodaj da potrdite dodajanje te telefonske številke.", "Click the button below to confirm adding this phone number.": "Pritisnite gumb spodaj da potrdite dodajanje te telefonske številke.",
"Add Phone Number": "Dodaj telefonsko številko", "Add Phone Number": "Dodaj telefonsko številko",
"Call Failed": "Klic ni uspel", "Call Failed": "Klic ni uspel",
"Change": "Sprememba",
"Explore rooms": "Raziščite sobe", "Explore rooms": "Raziščite sobe",
"Create Account": "Registracija", "Create Account": "Registracija",
"Identity server has no terms of service": "Identifikacijski strežnik nima pogojev storitve", "Identity server has no terms of service": "Identifikacijski strežnik nima pogojev storitve",
@ -58,7 +57,8 @@
"action": { "action": {
"confirm": "Potrdi", "confirm": "Potrdi",
"dismiss": "Opusti", "dismiss": "Opusti",
"sign_in": "Prijava" "sign_in": "Prijava",
"change": "Sprememba"
}, },
"time": { "time": {
"hours_minutes_seconds_left": "Preostalo je %(hours)s ur, %(minutes)s minut %(seconds)s sekund", "hours_minutes_seconds_left": "Preostalo je %(hours)s ur, %(minutes)s minut %(seconds)s sekund",

View file

@ -109,7 +109,6 @@
"Event Type": "Lloj Akti", "Event Type": "Lloj Akti",
"Low Priority": "Përparësi e Ulët", "Low Priority": "Përparësi e Ulët",
"What's New": ka të Re", "What's New": ka të Re",
"Register": "Regjistrohuni",
"Off": "Off", "Off": "Off",
"Developer Tools": "Mjete Zhvilluesi", "Developer Tools": "Mjete Zhvilluesi",
"Event Content": "Lëndë Akti", "Event Content": "Lëndë Akti",
@ -251,8 +250,6 @@
"No Microphones detected": "Su pikasën Mikrofona", "No Microphones detected": "Su pikasën Mikrofona",
"No Webcams detected": "Su pikasën kamera", "No Webcams detected": "Su pikasën kamera",
"Default Device": "Pajisje Parazgjedhje", "Default Device": "Pajisje Parazgjedhje",
"Microphone": "Mikrofon",
"Camera": "Kamerë",
"Email": "Email", "Email": "Email",
"Profile": "Profil", "Profile": "Profil",
"Account": "Llogari", "Account": "Llogari",
@ -355,7 +352,6 @@
"Define the power level of a user": "Përcaktoni shkallë pushteti të një përdoruesi", "Define the power level of a user": "Përcaktoni shkallë pushteti të një përdoruesi",
"Deops user with given id": "I heq cilësinë e operatorit përdoruesit me ID-në e dhënë", "Deops user with given id": "I heq cilësinë e operatorit përdoruesit me ID-në e dhënë",
"Changes your display nickname": "Ndryshon nofkën tuaj në ekran", "Changes your display nickname": "Ndryshon nofkën tuaj në ekran",
"Emoji": "Emoji",
"You are no longer ignoring %(userId)s": "Nuk e shpërfillni më %(userId)s", "You are no longer ignoring %(userId)s": "Nuk e shpërfillni më %(userId)s",
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s ndryshoi emrin e dhomës në %(roomName)s.", "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s ndryshoi emrin e dhomës në %(roomName)s.",
"%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s dërgoi një ftesë për %(targetDisplayName)s që të marrë pjesë në dhomë.", "%(senderName)s sent an invitation to %(targetDisplayName)s to join the room.": "%(senderName)s dërgoi një ftesë për %(targetDisplayName)s që të marrë pjesë në dhomë.",
@ -427,7 +423,6 @@
"To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Që të vazhdohet të përdoret shërbyesi home %(homeserverDomain)s, duhet të shqyrtoni dhe pajtoheni me termat dhe kushtet.", "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Që të vazhdohet të përdoret shërbyesi home %(homeserverDomain)s, duhet të shqyrtoni dhe pajtoheni me termat dhe kushtet.",
"Review terms and conditions": "Shqyrtoni terma & kushte", "Review terms and conditions": "Shqyrtoni terma & kushte",
"Failed to reject invite": "Su arrit të hidhet tej ftesa", "Failed to reject invite": "Su arrit të hidhet tej ftesa",
"Legal": "Ligjore",
"Please <a>contact your service administrator</a> to continue using this service.": "Ju lutemi, që të vazhdoni të përdorni këtë shërbim, <a>lidhuni me përgjegjësin e shërbimit tuaj</a>.", "Please <a>contact your service administrator</a> to continue using this service.": "Ju lutemi, që të vazhdoni të përdorni këtë shërbim, <a>lidhuni me përgjegjësin e shërbimit tuaj</a>.",
"You do not have permission to start a conference call in this room": "Skeni leje për të nisur një thirrje konferencë këtë në këtë dhomë", "You do not have permission to start a conference call in this room": "Skeni leje për të nisur një thirrje konferencë këtë në këtë dhomë",
"Missing roomId.": "Mungon roomid.", "Missing roomId.": "Mungon roomid.",
@ -620,12 +615,9 @@
"For help with using %(brand)s, click <a>here</a>.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>.", "For help with using %(brand)s, click <a>here</a>.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.",
"Help & About": "Ndihmë & Rreth", "Help & About": "Ndihmë & Rreth",
"FAQ": "FAQ",
"Versions": "Versione", "Versions": "Versione",
"Preferences": "Parapëlqime",
"Composer": "Hartues", "Composer": "Hartues",
"Room list": "Listë dhomash", "Room list": "Listë dhomash",
"Timeline": "Rrjedhë Kohore",
"Autocomplete delay (ms)": "Vonesë Vetëplotësimi (ms)", "Autocomplete delay (ms)": "Vonesë Vetëplotësimi (ms)",
"Roles & Permissions": "Role & Leje", "Roles & Permissions": "Role & Leje",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Ndryshime se cilët mund të lexojnë historikun do të vlejnë vetëm për mesazhe të ardhshëm në këtë dhomë. Dukshmëria e historikut ekzistues nuk do të ndryshohet.", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Ndryshime se cilët mund të lexojnë historikun do të vlejnë vetëm për mesazhe të ardhshëm në këtë dhomë. Dukshmëria e historikut ekzistues nuk do të ndryshohet.",
@ -649,7 +641,6 @@
"Phone (optional)": "Telefoni (në daçi)", "Phone (optional)": "Telefoni (në daçi)",
"Join millions for free on the largest public server": "Bashkojuni milionave, falas, në shërbyesin më të madh publik", "Join millions for free on the largest public server": "Bashkojuni milionave, falas, në shërbyesin më të madh publik",
"Other": "Tjetër", "Other": "Tjetër",
"Guest": "Mysafir",
"General failure": "Dështim i përgjithshëm", "General failure": "Dështim i përgjithshëm",
"Create account": "Krijoni llogari", "Create account": "Krijoni llogari",
"Recovery Method Removed": "U hoq Metodë Rimarrje", "Recovery Method Removed": "U hoq Metodë Rimarrje",
@ -716,7 +707,6 @@
"Folder": "Dosje", "Folder": "Dosje",
"Chat with %(brand)s Bot": "Fjalosuni me Robotin %(brand)s", "Chat with %(brand)s Bot": "Fjalosuni me Robotin %(brand)s",
"This homeserver would like to make sure you are not a robot.": "Ky Shërbyes Home do të donte të sigurohej se sjeni robot.", "This homeserver would like to make sure you are not a robot.": "Ky Shërbyes Home do të donte të sigurohej se sjeni robot.",
"Change": "Ndërroje",
"Couldn't load page": "Su ngarkua dot faqja", "Couldn't load page": "Su ngarkua dot faqja",
"Your password has been reset.": "Fjalëkalimi juaj u ricaktua.", "Your password has been reset.": "Fjalëkalimi juaj u ricaktua.",
"This homeserver does not support login using email address.": "Ky shërbyes Home nuk mbulon hyrje përmes adresash email.", "This homeserver does not support login using email address.": "Ky shërbyes Home nuk mbulon hyrje përmes adresash email.",
@ -744,7 +734,6 @@
"<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Kujdes</b>: duhet të ujdisni kopjeruajtje kyçesh vetëm nga një kompjuter i besuar.", "<b>Warning</b>: you should only set up key backup from a trusted computer.": "<b>Kujdes</b>: duhet të ujdisni kopjeruajtje kyçesh vetëm nga një kompjuter i besuar.",
"Your keys are being backed up (the first backup could take a few minutes).": "Kyçet tuaj po kopjeruhen (kopjeruajtja e parë mund të hajë disa minuta).", "Your keys are being backed up (the first backup could take a few minutes).": "Kyçet tuaj po kopjeruhen (kopjeruajtja e parë mund të hajë disa minuta).",
"Success!": "Sukses!", "Success!": "Sukses!",
"Credits": "Kredite",
"Changes your display nickname in the current room only": "Bën ndryshimin e emrit tuaj në ekran vetëm në dhomën e tanishme", "Changes your display nickname in the current room only": "Bën ndryshimin e emrit tuaj në ekran vetëm në dhomën e tanishme",
"Show read receipts sent by other users": "Shfaq dëftesa leximi dërguar nga përdorues të tjerë", "Show read receipts sent by other users": "Shfaq dëftesa leximi dërguar nga përdorues të tjerë",
"Scissors": "Gërshërë", "Scissors": "Gërshërë",
@ -877,7 +866,6 @@
"Edited at %(date)s. Click to view edits.": "Përpunuar më %(date)s. Klikoni që të shihni përpunimet.", "Edited at %(date)s. Click to view edits.": "Përpunuar më %(date)s. Klikoni që të shihni përpunimet.",
"Message edits": "Përpunime mesazhi", "Message edits": "Përpunime mesazhi",
"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:": "Përmirësimi i kësaj dhome lyp mbylljen e instancës së tanishme të dhomës dhe krijimin e një dhome të re në vend të saj. Për tu dhënë anëtarëve të dhomës më të mirën, do të:", "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:": "Përmirësimi i kësaj dhome lyp mbylljen e instancës së tanishme të dhomës dhe krijimin e një dhome të re në vend të saj. Për tu dhënë anëtarëve të dhomës më të mirën, do të:",
"Show all": "Shfaqi krejt",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s sbënë ndryshime gjatë %(count)s herësh", "other": "%(severalUsers)s sbënë ndryshime gjatë %(count)s herësh",
"one": "%(severalUsers)s sbënë ndryshime" "one": "%(severalUsers)s sbënë ndryshime"
@ -898,7 +886,6 @@
"Always show the window menu bar": "Shfaqe përherë shtyllën e menusë së dritares", "Always show the window menu bar": "Shfaqe përherë shtyllën e menusë së dritares",
"Unable to revoke sharing for email address": "Sarrihet të shfuqizohet ndarja për këtë adresë email", "Unable to revoke sharing for email address": "Sarrihet të shfuqizohet ndarja për këtë adresë email",
"Unable to share email address": "Sarrihet të ndahet adresë email", "Unable to share email address": "Sarrihet të ndahet adresë email",
"Revoke": "Shfuqizoje",
"Unable to revoke sharing for phone number": "Sarrihet të shfuqizohet ndarja për numrin e telefonit", "Unable to revoke sharing for phone number": "Sarrihet të shfuqizohet ndarja për numrin e telefonit",
"Unable to share phone number": "Sarrihet të ndahet numër telefoni", "Unable to share phone number": "Sarrihet të ndahet numër telefoni",
"Please enter verification code sent via text.": "Ju lutemi, jepni kod verifikimi të dërguar përmes teksti.", "Please enter verification code sent via text.": "Ju lutemi, jepni kod verifikimi të dërguar përmes teksti.",
@ -924,7 +911,6 @@
"Spanner": "Çelës", "Spanner": "Çelës",
"Checking server": "Po kontrollohet shërbyesi", "Checking server": "Po kontrollohet shërbyesi",
"Disconnect from the identity server <idserver />?": "Të shkëputet prej shërbyesit të identiteteve <idserver />?", "Disconnect from the identity server <idserver />?": "Të shkëputet prej shërbyesit të identiteteve <idserver />?",
"Disconnect": "Shkëputu",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Jeni duke përdorur <server></server> për të zbuluar dhe për tu zbuluar nga kontakte ekzistues që njihni. Shërbyesin tuaj të identiteteve mund ta ndryshoni më poshtë.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Jeni duke përdorur <server></server> për të zbuluar dhe për tu zbuluar nga kontakte ekzistues që njihni. Shërbyesin tuaj të identiteteve mund ta ndryshoni më poshtë.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Spo përdorni ndonjë shërbyes identitetesh. Që të zbuloni dhe të jeni i zbulueshëm nga kontakte ekzistues që njihni, shtoni një të tillë më poshtë.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Spo përdorni ndonjë shërbyes identitetesh. Që të zbuloni dhe të jeni i zbulueshëm nga kontakte ekzistues që njihni, shtoni një të tillë më poshtë.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Shkëputja prej shërbyesit tuaj të identiteteve do të thotë se sdo të jeni i zbulueshëm nga përdorues të tjerë dhe sdo të jeni në gjendje të ftoni të tjerë përmes email-i apo telefoni.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Shkëputja prej shërbyesit tuaj të identiteteve do të thotë se sdo të jeni i zbulueshëm nga përdorues të tjerë dhe sdo të jeni në gjendje të ftoni të tjerë përmes email-i apo telefoni.",
@ -1075,7 +1061,6 @@
"You have not ignored anyone.": "Skeni shpërfillur ndonjë.", "You have not ignored anyone.": "Skeni shpërfillur ndonjë.",
"You are currently ignoring:": "Aktualisht shpërfillni:", "You are currently ignoring:": "Aktualisht shpërfillni:",
"You are not subscribed to any lists": "Sjeni pajtuar te ndonjë listë", "You are not subscribed to any lists": "Sjeni pajtuar te ndonjë listë",
"Unsubscribe": "Shpajtohuni",
"View rules": "Shihni rregulla", "View rules": "Shihni rregulla",
"You are currently subscribed to:": "Jeni i pajtuar te:", "You are currently subscribed to:": "Jeni i pajtuar te:",
"⚠ These settings are meant for advanced users.": "⚠ Këto rregullime janë menduar për përdorues të përparuar.", "⚠ These settings are meant for advanced users.": "⚠ Këto rregullime janë menduar për përdorues të përparuar.",
@ -1087,9 +1072,7 @@
"Subscribed lists": "Lista me pajtim", "Subscribed lists": "Lista me pajtim",
"Subscribing to a ban list will cause you to join it!": "Pajtimi te një listë dëbimesh do të shkaktojë pjesëmarrjen tuaj në të!", "Subscribing to a ban list will cause you to join it!": "Pajtimi te një listë dëbimesh do të shkaktojë pjesëmarrjen tuaj në të!",
"If this isn't what you want, please use a different tool to ignore users.": "Nëse kjo sështë ajo çka doni, ju lutemi, përdorni një tjetër mjet për të shpërfillur përdorues.", "If this isn't what you want, please use a different tool to ignore users.": "Nëse kjo sështë ajo çka doni, ju lutemi, përdorni një tjetër mjet për të shpërfillur përdorues.",
"Subscribe": "Pajtohuni",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "E keni shpërfillur këtë përdorues, ndaj mesazhi i tij është fshehur. <a>Shfaqe, sido qoftë.</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "E keni shpërfillur këtë përdorues, ndaj mesazhi i tij është fshehur. <a>Shfaqe, sido qoftë.</a>",
"Custom (%(level)s)": "Vetjak (%(level)s)",
"Trusted": "E besuar", "Trusted": "E besuar",
"Not trusted": "Jo e besuar", "Not trusted": "Jo e besuar",
"Messages in this room are end-to-end encrypted.": "Mesazhet në këtë dhomë janë të fshehtëzuara skaj-më-skaj.", "Messages in this room are end-to-end encrypted.": "Mesazhet në këtë dhomë janë të fshehtëzuara skaj-më-skaj.",
@ -1182,7 +1165,6 @@
"Other users may not trust it": "Përdorues të tjerë mund të mos e besojnë", "Other users may not trust it": "Përdorues të tjerë mund të mos e besojnë",
"Later": "Më vonë", "Later": "Më vonë",
"Cross-signing private keys:": "Kyçe privatë për <em>cross-signing</em>:", "Cross-signing private keys:": "Kyçe privatë për <em>cross-signing</em>:",
"Complete": "E plotë",
"This room is end-to-end encrypted": "Kjo dhomë është e fshehtëzuar skaj-më-skaj", "This room is end-to-end encrypted": "Kjo dhomë është e fshehtëzuar skaj-më-skaj",
"Everyone in this room is verified": "Gjithkush në këtë dhomë është verifikuar", "Everyone in this room is verified": "Gjithkush në këtë dhomë është verifikuar",
"Send a reply…": "Dërgoni një përgjigje…", "Send a reply…": "Dërgoni një përgjigje…",
@ -1200,13 +1182,11 @@
"We couldn't invite those users. Please check the users you want to invite and try again.": "Si ftuam dot këta përdorues. Ju lutemi, kontrolloni përdoruesit që doni të ftoni dhe riprovoni.", "We couldn't invite those users. Please check the users you want to invite and try again.": "Si ftuam dot këta përdorues. Ju lutemi, kontrolloni përdoruesit që doni të ftoni dhe riprovoni.",
"Failed to find the following users": "Su arrit të gjendeshin përdoruesit vijues", "Failed to find the following users": "Su arrit të gjendeshin përdoruesit vijues",
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Përdoruesit vijues mund të mos ekzistojnë ose janë të pavlefshëm, dhe smund të ftohen: %(csvNames)s", "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Përdoruesit vijues mund të mos ekzistojnë ose janë të pavlefshëm, dhe smund të ftohen: %(csvNames)s",
"Restore": "Riktheje",
"Enter your account password to confirm the upgrade:": "Që të ripohohet përmirësimi, jepni fjalëkalimin e llogarisë tuaj:", "Enter your account password to confirm the upgrade:": "Që të ripohohet përmirësimi, jepni fjalëkalimin e llogarisë tuaj:",
"You'll need to authenticate with the server to confirm the upgrade.": "Do tju duhet të bëni mirëfilltësimin me shërbyesin që të ripohohet përmirësimi.", "You'll need to authenticate with the server to confirm the upgrade.": "Do tju duhet të bëni mirëfilltësimin me shërbyesin që të ripohohet përmirësimi.",
"Upgrade your encryption": "Përmirësoni fshehtëzimin tuaj", "Upgrade your encryption": "Përmirësoni fshehtëzimin tuaj",
"Verify this session": "Verifikoni këtë sesion", "Verify this session": "Verifikoni këtë sesion",
"Encryption upgrade available": "Ka të gatshëm përmirësim fshehtëzimi", "Encryption upgrade available": "Ka të gatshëm përmirësim fshehtëzimi",
"Review": "Shqyrtojeni",
"Enable message search in encrypted rooms": "Aktivizo kërkim mesazhesh në dhoma të fshehtëzuara", "Enable message search in encrypted rooms": "Aktivizo kërkim mesazhesh në dhoma të fshehtëzuara",
"Manage": "Administroni", "Manage": "Administroni",
"Securely cache encrypted messages locally for them to appear in search results.": "Ruaj lokalisht në mënyrë të sigurt në fshehtinë mesazhet që të shfaqen në përfundime kërkimi.", "Securely cache encrypted messages locally for them to appear in search results.": "Ruaj lokalisht në mënyrë të sigurt në fshehtinë mesazhet që të shfaqen në përfundime kërkimi.",
@ -1248,7 +1228,6 @@
"You have not verified this user.": "Se keni verifikuar këtë përdorues.", "You have not verified this user.": "Se keni verifikuar këtë përdorues.",
"You have verified this user. This user has verified all of their sessions.": "E keni verifikuar këtë përdorues. Ky përdorues ka verifikuar krejt sesionet e veta.", "You have verified this user. This user has verified all of their sessions.": "E keni verifikuar këtë përdorues. Ky përdorues ka verifikuar krejt sesionet e veta.",
"Someone is using an unknown session": "Dikush po përdor një sesion të panjohur", "Someone is using an unknown session": "Dikush po përdor një sesion të panjohur",
"Mod": "Moderator",
"Encrypted by an unverified session": "Fshehtëzuar nga një sesion i paverifikuar", "Encrypted by an unverified session": "Fshehtëzuar nga një sesion i paverifikuar",
"Encrypted by a deleted session": "Fshehtëzuar nga një sesion i fshirë", "Encrypted by a deleted session": "Fshehtëzuar nga një sesion i fshirë",
"Waiting for %(displayName)s to accept…": "Po pritet për %(displayName)s të pranojë…", "Waiting for %(displayName)s to accept…": "Po pritet për %(displayName)s të pranojë…",
@ -1372,7 +1351,6 @@
"Close dialog or context menu": "Mbyllni dialog ose menu konteksti", "Close dialog or context menu": "Mbyllni dialog ose menu konteksti",
"Activate selected button": "Aktivizo buton të përzgjedhur", "Activate selected button": "Aktivizo buton të përzgjedhur",
"Cancel autocomplete": "Anulo vetëplotësim", "Cancel autocomplete": "Anulo vetëplotësim",
"Space": "Space",
"Confirm by comparing the following with the User Settings in your other session:": "Ripohojeni duke krahasuar sa vijon me Rregullimet e Përdoruesit te sesioni juaj tjetër:", "Confirm by comparing the following with the User Settings in your other session:": "Ripohojeni duke krahasuar sa vijon me Rregullimet e Përdoruesit te sesioni juaj tjetër:",
"Confirm this user's session by comparing the following with their User Settings:": "Ripohojeni këtë sesion përdoruesi duke krahasuar sa vijon me Rregullimet e tij të Përdoruesit:", "Confirm this user's session by comparing the following with their User Settings:": "Ripohojeni këtë sesion përdoruesi duke krahasuar sa vijon me Rregullimet e tij të Përdoruesit:",
"If they don't match, the security of your communication may be compromised.": "Nëse spërputhen, siguria e komunikimeve tuaja mund të jetë komprometuar.", "If they don't match, the security of your communication may be compromised.": "Nëse spërputhen, siguria e komunikimeve tuaja mund të jetë komprometuar.",
@ -1564,7 +1542,6 @@
"Set up Secure Backup": "Ujdisni Kopjeruajtje të Sigurt", "Set up Secure Backup": "Ujdisni Kopjeruajtje të Sigurt",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Një mesazhi tekst të thjeshtë vëri përpara ( ͡° ͜ʖ ͡°)", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Një mesazhi tekst të thjeshtë vëri përpara ( ͡° ͜ʖ ͡°)",
"Unknown App": "Aplikacion i Panjohur", "Unknown App": "Aplikacion i Panjohur",
"Privacy": "Privatësi",
"Not encrypted": "Jo e fshehtëzuar", "Not encrypted": "Jo e fshehtëzuar",
"Room settings": "Rregullime dhome", "Room settings": "Rregullime dhome",
"Take a picture": "Bëni një foto", "Take a picture": "Bëni një foto",
@ -1945,7 +1922,6 @@
"Enter phone number": "Jepni numër telefoni", "Enter phone number": "Jepni numër telefoni",
"Enter email address": "Jepni adresë email-i", "Enter email address": "Jepni adresë email-i",
"Decline All": "Hidhi Krejt Poshtë", "Decline All": "Hidhi Krejt Poshtë",
"Approve": "Miratojeni",
"This widget would like to:": "Ky widget do të donte të:", "This widget would like to:": "Ky widget do të donte të:",
"Approve widget permissions": "Miratoni leje widget-i", "Approve widget permissions": "Miratoni leje widget-i",
"Use Ctrl + Enter to send a message": "Që të dërgoni një mesazh përdorni tastet Ctrl + Enter", "Use Ctrl + Enter to send a message": "Që të dërgoni një mesazh përdorni tastet Ctrl + Enter",
@ -2091,8 +2067,6 @@
"Who are you working with?": "Me cilët po punoni?", "Who are you working with?": "Me cilët po punoni?",
"Skip for now": "Hëpërhë anashkaloje", "Skip for now": "Hëpërhë anashkaloje",
"Failed to create initial space rooms": "Su arrit të krijohen dhomat fillestare të hapësirës", "Failed to create initial space rooms": "Su arrit të krijohen dhomat fillestare të hapësirës",
"Support": "Asistencë",
"Random": "Kuturu",
"Welcome to <name/>": "Mirë se vini te <name/>", "Welcome to <name/>": "Mirë se vini te <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s anëtar", "one": "%(count)s anëtar",
@ -2215,8 +2189,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Zgjidhni dhoma ose biseda që të shtohen. Kjo është thjesht një hapësirë për ju, sdo ta dijë kush tjetër. Mund të shtoni të tjerë më vonë.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Zgjidhni dhoma ose biseda që të shtohen. Kjo është thjesht një hapësirë për ju, sdo ta dijë kush tjetër. Mund të shtoni të tjerë më vonë.",
"What do you want to organise?": doni të sistemoni?", "What do you want to organise?": doni të sistemoni?",
"You have no ignored users.": "Skeni përdorues të shpërfillur.", "You have no ignored users.": "Skeni përdorues të shpërfillur.",
"Play": "Luaje",
"Pause": "Ndalesë",
"Search names and descriptions": "Kërko te emra dhe përshkrime", "Search names and descriptions": "Kërko te emra dhe përshkrime",
"Select a room below first": "Së pari, përzgjidhni më poshtë një dhomë", "Select a room below first": "Së pari, përzgjidhni më poshtë një dhomë",
"Join the beta": "Merrni pjesë te beta", "Join the beta": "Merrni pjesë te beta",
@ -2238,7 +2210,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Sqemë në gjendje të përdorim mikrofonin tuaj. Ju lutemi, kontrolloni rregullimet e shfletuesit tuaj dhe riprovoni.", "We were unable to access your microphone. Please check your browser settings and try again.": "Sqemë në gjendje të përdorim mikrofonin tuaj. Ju lutemi, kontrolloni rregullimet e shfletuesit tuaj dhe riprovoni.",
"Unable to access your microphone": "Sarrihet të përdoret mikrofoni juaj", "Unable to access your microphone": "Sarrihet të përdoret mikrofoni juaj",
"Your access token gives full access to your account. Do not share it with anyone.": "Tokeni-i juaj i hyrjeve jep hyrje të plotë në llogarinë tuaj. Mos ia jepni kujt.", "Your access token gives full access to your account. Do not share it with anyone.": "Tokeni-i juaj i hyrjeve jep hyrje të plotë në llogarinë tuaj. Mos ia jepni kujt.",
"Access Token": "Token Hyrjesh",
"Please enter a name for the space": "Ju lutemi, jepni një emër për hapësirën", "Please enter a name for the space": "Ju lutemi, jepni një emër për hapësirën",
"Connecting": "Po lidhet", "Connecting": "Po lidhet",
"Message search initialisation failed": "Dështoi gatitje kërkimi mesazhesh", "Message search initialisation failed": "Dështoi gatitje kërkimi mesazhesh",
@ -2605,7 +2576,6 @@
"The homeserver the user you're verifying is connected to": "Shërbyesi Home te i cili është lidhur përdoruesi që po verifikoni", "The homeserver the user you're verifying is connected to": "Shërbyesi Home te i cili është lidhur përdoruesi që po verifikoni",
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Kjo dhomë skalon mesazhe në ndonjë platformë. <a>Mësoni më tepër.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Kjo dhomë skalon mesazhe në ndonjë platformë. <a>Mësoni më tepër.</a>",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Kjo dhomë gjendet në disa hapësira për të cilat nuk jeni një nga përgjegjësit. Në këto hapësira, dhoma e vjetër prapë do të shfaqet, por njerëzve do tu kërkohet të marrin pjesë te e reja.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Kjo dhomë gjendet në disa hapësira për të cilat nuk jeni një nga përgjegjësit. Në këto hapësira, dhoma e vjetër prapë do të shfaqet, por njerëzve do tu kërkohet të marrin pjesë te e reja.",
"Rename": "Riemërtojeni",
"Select all": "Përzgjidhi krejt", "Select all": "Përzgjidhi krejt",
"Deselect all": "Shpërzgjidhi krejt", "Deselect all": "Shpërzgjidhi krejt",
"Sign out devices": { "Sign out devices": {
@ -3272,11 +3242,9 @@
"Ongoing call": "Thirrje në kryerje e sipër", "Ongoing call": "Thirrje në kryerje e sipër",
"Video call (Jitsi)": "Thirrje me video (Jitsi)", "Video call (Jitsi)": "Thirrje me video (Jitsi)",
"Show formatting": "Shfaq formatim", "Show formatting": "Shfaq formatim",
"View all": "Shihini krejt",
"Security recommendations": "Rekomandime sigurie", "Security recommendations": "Rekomandime sigurie",
"Show QR code": "Shfaq kod QR", "Show QR code": "Shfaq kod QR",
"Sign in with QR code": "Hyni me kod QR", "Sign in with QR code": "Hyni me kod QR",
"Show": "Shfaqe",
"Inactive for %(inactiveAgeDays)s days or longer": "Joaktiv për for %(inactiveAgeDays)s ditë ose më gjatë", "Inactive for %(inactiveAgeDays)s days or longer": "Joaktiv për for %(inactiveAgeDays)s ditë ose më gjatë",
"Inactive": "Joaktiv", "Inactive": "Joaktiv",
"Not ready for secure messaging": "Jo gati për shkëmbim të sigurt mesazhesh", "Not ready for secure messaging": "Jo gati për shkëmbim të sigurt mesazhesh",
@ -3330,7 +3298,6 @@
"For best security, verify your sessions and sign out from any session that you don't recognize or use anymore.": "Për sigurinë më të mirë, verifikoni sesionet tuaja dhe dilni nga çfarëdo sesioni që se njihni, ose se përdorni më.", "For best security, verify your sessions and sign out from any session that you don't recognize or use anymore.": "Për sigurinë më të mirë, verifikoni sesionet tuaja dhe dilni nga çfarëdo sesioni që se njihni, ose se përdorni më.",
"Other sessions": "Sesione të tjerë", "Other sessions": "Sesione të tjerë",
"Sessions": "Sesione", "Sessions": "Sesione",
"Presence": "Prani",
"Enable notifications for this account": "Aktivizo njoftime për këtë llogari", "Enable notifications for this account": "Aktivizo njoftime për këtë llogari",
"You did it!": "Ia dolët!", "You did it!": "Ia dolët!",
"Welcome to %(brand)s": "Mirë se vini te %(brand)s", "Welcome to %(brand)s": "Mirë se vini te %(brand)s",
@ -3716,7 +3683,22 @@
"dark": "E errët", "dark": "E errët",
"beta": "Beta", "beta": "Beta",
"attachment": "Bashkëngjitje", "attachment": "Bashkëngjitje",
"appearance": "Dukje" "appearance": "Dukje",
"guest": "Mysafir",
"legal": "Ligjore",
"credits": "Kredite",
"faq": "FAQ",
"access_token": "Token Hyrjesh",
"preferences": "Parapëlqime",
"presence": "Prani",
"timeline": "Rrjedhë Kohore",
"privacy": "Privatësi",
"camera": "Kamerë",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Kuturu",
"support": "Asistencë",
"space": "Space"
}, },
"action": { "action": {
"continue": "Vazhdo", "continue": "Vazhdo",
@ -3788,7 +3770,23 @@
"back": "Mbrapsht", "back": "Mbrapsht",
"apply": "Aplikoje", "apply": "Aplikoje",
"add": "Shtojeni", "add": "Shtojeni",
"accept": "Pranoje" "accept": "Pranoje",
"disconnect": "Shkëputu",
"change": "Ndërroje",
"subscribe": "Pajtohuni",
"unsubscribe": "Shpajtohuni",
"approve": "Miratojeni",
"complete": "E plotë",
"revoke": "Shfuqizoje",
"rename": "Riemërtojeni",
"view_all": "Shihini krejt",
"show_all": "Shfaqi krejt",
"show": "Shfaqe",
"review": "Shqyrtojeni",
"restore": "Riktheje",
"play": "Luaje",
"pause": "Ndalesë",
"register": "Regjistrohuni"
}, },
"a11y": { "a11y": {
"user_menu": "Menu përdoruesi" "user_menu": "Menu përdoruesi"
@ -3867,7 +3865,9 @@
"default": "Parazgjedhje", "default": "Parazgjedhje",
"restricted": "E kufizuar", "restricted": "E kufizuar",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Përgjegjës" "admin": "Përgjegjës",
"custom": "Vetjak (%(level)s)",
"mod": "Moderator"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Nëse keni parashtruar një të metë përmes GitHub-i, regjistrat e diagnostikimit na ndihmojnë të kapim problemin. ", "introduction": "Nëse keni parashtruar një të metë përmes GitHub-i, regjistrat e diagnostikimit na ndihmojnë të kapim problemin. ",

View file

@ -203,7 +203,6 @@
"powered by Matrix": "покреће га Матрикс", "powered by Matrix": "покреће га Матрикс",
"Sign in with": "Пријавите се преко", "Sign in with": "Пријавите се преко",
"Email address": "Мејл адреса", "Email address": "Мејл адреса",
"Register": "Регистровање",
"Something went wrong!": "Нешто је пошло наопако!", "Something went wrong!": "Нешто је пошло наопако!",
"Delete Widget": "Обриши виџет", "Delete Widget": "Обриши виџет",
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Брисање виџета уклања виџет за све чланове ове собе. Да ли сте сигурни да желите обрисати овај виџет?", "Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Брисање виџета уклања виџет за све чланове ове собе. Да ли сте сигурни да желите обрисати овај виџет?",
@ -359,8 +358,6 @@
"No Microphones detected": "Нема уочених микрофона", "No Microphones detected": "Нема уочених микрофона",
"No Webcams detected": "Нема уочених веб камера", "No Webcams detected": "Нема уочених веб камера",
"Default Device": "Подразумевани уређај", "Default Device": "Подразумевани уређај",
"Microphone": "Микрофон",
"Camera": "Камера",
"Email": "Мејл", "Email": "Мејл",
"Notifications": "Обавештења", "Notifications": "Обавештења",
"Profile": "Профил", "Profile": "Профил",
@ -384,7 +381,6 @@
"Ignores a user, hiding their messages from you": "Занемарује корисника и тиме скрива њихове поруке од вас", "Ignores a user, hiding their messages from you": "Занемарује корисника и тиме скрива њихове поруке од вас",
"Stops ignoring a user, showing their messages going forward": "Престаје са занемаривањем корисника и тиме приказује њихове поруке одсад", "Stops ignoring a user, showing their messages going forward": "Престаје са занемаривањем корисника и тиме приказује њихове поруке одсад",
"Commands": "Наредбе", "Commands": "Наредбе",
"Emoji": "Емоџи",
"Notify the whole room": "Обавести све у соби", "Notify the whole room": "Обавести све у соби",
"Room Notification": "Собно обавештење", "Room Notification": "Собно обавештење",
"Users": "Корисници", "Users": "Корисници",
@ -493,7 +489,6 @@
"Join millions for free on the largest public server": "Придружите се милионима других бесплатно на највећем јавном серверу", "Join millions for free on the largest public server": "Придружите се милионима других бесплатно на највећем јавном серверу",
"Create account": "Направи налог", "Create account": "Направи налог",
"Email (optional)": "Мејл (изборно)", "Email (optional)": "Мејл (изборно)",
"Change": "Промени",
"Messages containing my username": "Поруке које садрже моје корисничко", "Messages containing my username": "Поруке које садрже моје корисничко",
"Are you sure you want to sign out?": "Заиста желите да се одјавите?", "Are you sure you want to sign out?": "Заиста желите да се одјавите?",
"Call failed due to misconfigured server": "Позив неуспешан због лоше подешеног сервера", "Call failed due to misconfigured server": "Позив неуспешан због лоше подешеног сервера",
@ -597,10 +592,8 @@
"Customise your appearance": "Прилагодите изглед", "Customise your appearance": "Прилагодите изглед",
"Appearance Settings only affect this %(brand)s session.": "Подешавања изгледа се примењују само на %(brand)s сесију.", "Appearance Settings only affect this %(brand)s session.": "Подешавања изгледа се примењују само на %(brand)s сесију.",
"Help & About": "Помоћ и подаци о програму", "Help & About": "Помоћ и подаци о програму",
"Preferences": "Поставке",
"Voice & Video": "Глас и видео", "Voice & Video": "Глас и видео",
"Unable to revoke sharing for email address": "Не могу да опозовем дељење ове мејл адресе", "Unable to revoke sharing for email address": "Не могу да опозовем дељење ове мејл адресе",
"Revoke": "Опозови",
"Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона", "Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона",
"Send a reply…": "Пошаљи одговор…", "Send a reply…": "Пошаљи одговор…",
"No recently visited rooms": "Нема недавно посећених соба", "No recently visited rooms": "Нема недавно посећених соба",
@ -637,7 +630,6 @@
"Setting up keys": "Постављам кључеве", "Setting up keys": "Постављам кључеве",
"Are you sure you want to cancel entering passphrase?": "Заиста желите да откажете унос фразе?", "Are you sure you want to cancel entering passphrase?": "Заиста желите да откажете унос фразе?",
"Cancel entering passphrase?": "Отказати унос фразе?", "Cancel entering passphrase?": "Отказати унос фразе?",
"Custom (%(level)s)": "Посебан %(level)s",
"Create Account": "Направи налог", "Create Account": "Направи налог",
"Use your account or create a new one to continue.": "Користите постојећи или направите нови да наставите.", "Use your account or create a new one to continue.": "Користите постојећи или направите нови да наставите.",
"Sign In or Create Account": "Пријавите се или направите налог", "Sign In or Create Account": "Пријавите се или направите налог",
@ -1076,14 +1068,11 @@
"Please enter verification code sent via text.": "Унесите верификациони код послат путем текста.", "Please enter verification code sent via text.": "Унесите верификациони код послат путем текста.",
"Unable to verify phone number.": "Није могуће верификовати број телефона.", "Unable to verify phone number.": "Није могуће верификовати број телефона.",
"Unable to share phone number": "Није могуће делити телефонски број", "Unable to share phone number": "Није могуће делити телефонски број",
"Complete": "Заврши",
"You'll need to authenticate with the server to confirm the upgrade.": "Да бисте потврдили надоградњу, мораћете да се пријавите на серверу.", "You'll need to authenticate with the server to confirm the upgrade.": "Да бисте потврдили надоградњу, мораћете да се пријавите на серверу.",
"Restore": "Врати",
"Restore your key backup to upgrade your encryption": "Вратите сигурносну копију кључа да бисте надоградили шифровање", "Restore your key backup to upgrade your encryption": "Вратите сигурносну копију кључа да бисте надоградили шифровање",
"Enter your account password to confirm the upgrade:": "Унесите лозинку за налог да бисте потврдили надоградњу:", "Enter your account password to confirm the upgrade:": "Унесите лозинку за налог да бисте потврдили надоградњу:",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Заштитите од губитка приступа шифрованим порукама и подацима је подржан сигурносном копијом кључева за шифровање на серверу.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Заштитите од губитка приступа шифрованим порукама и подацима је подржан сигурносном копијом кључева за шифровање на серверу.",
"Clear all data": "Очисти све податке", "Clear all data": "Очисти све податке",
"Guest": "Гост",
"New version of %(brand)s is available": "Доступна је нова верзија %(brand)s", "New version of %(brand)s is available": "Доступна је нова верзија %(brand)s",
"Update %(brand)s": "Ажурирај %(brand)s", "Update %(brand)s": "Ажурирај %(brand)s",
"New login. Was this you?": "Нова пријава. Да ли сте то били Ви?", "New login. Was this you?": "Нова пријава. Да ли сте то били Ви?",
@ -1186,8 +1175,6 @@
"Away": "Неприсутан", "Away": "Неприсутан",
"Go to Home View": "Идите на почетни приказ", "Go to Home View": "Идите на почетни приказ",
"End": "", "End": "",
"Credits": "Заслуге",
"Legal": "Легално",
"Deactivate account": "Деактивирај налог", "Deactivate account": "Деактивирај налог",
"Account management": "Управљање профилом", "Account management": "Управљање профилом",
"Server name": "Име сервера", "Server name": "Име сервера",
@ -1285,7 +1272,14 @@
"description": "Опис", "description": "Опис",
"dark": "Тамна", "dark": "Тамна",
"attachment": "Прилог", "attachment": "Прилог",
"appearance": "Изглед" "appearance": "Изглед",
"guest": "Гост",
"legal": "Легално",
"credits": "Заслуге",
"preferences": "Поставке",
"camera": "Камера",
"microphone": "Микрофон",
"emoji": "Емоџи"
}, },
"action": { "action": {
"continue": "Настави", "continue": "Настави",
@ -1333,7 +1327,12 @@
"cancel": "Откажи", "cancel": "Откажи",
"back": "Назад", "back": "Назад",
"add": "Додај", "add": "Додај",
"accept": "Прихвати" "accept": "Прихвати",
"change": "Промени",
"complete": "Заврши",
"revoke": "Опозови",
"restore": "Врати",
"register": "Регистровање"
}, },
"labs": { "labs": {
"pinning": "Закачене поруке", "pinning": "Закачене поруке",
@ -1351,7 +1350,8 @@
"default": "Подразумевано", "default": "Подразумевано",
"restricted": "Ограничено", "restricted": "Ограничено",
"moderator": "Модератор", "moderator": "Модератор",
"admin": "Админ" "admin": "Админ",
"custom": "Посебан %(level)s"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "Пошаљи записнике за поправљање грешака", "submit_debug_logs": "Пошаљи записнике за поправљање грешака",

View file

@ -35,7 +35,6 @@
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nema dozvolu da vam šalje obaveštenja. Molim proverite podešavanja vašeg internet pregledača", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nema dozvolu da vam šalje obaveštenja. Molim proverite podešavanja vašeg internet pregledača",
"%(brand)s was not given permission to send notifications - please try again": "%(brand)s nije dobio dozvolu da šalje obaveštenja. Molim pokušajte ponovo", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s nije dobio dozvolu da šalje obaveštenja. Molim pokušajte ponovo",
"This email address was not found": "Ova adresa elektronske pošte nije pronađena", "This email address was not found": "Ova adresa elektronske pošte nije pronađena",
"Register": "Registruj se",
"Default": "Podrazumevano", "Default": "Podrazumevano",
"Restricted": "Ograničeno", "Restricted": "Ograničeno",
"Moderator": "Moderator", "Moderator": "Moderator",
@ -94,7 +93,8 @@
"confirm": "Potvrdi", "confirm": "Potvrdi",
"dismiss": "Odbaci", "dismiss": "Odbaci",
"trust": "Vjeruj", "trust": "Vjeruj",
"sign_in": "Prijavite se" "sign_in": "Prijavite se",
"register": "Registruj se"
}, },
"power_level": { "power_level": {
"default": "Podrazumevano", "default": "Podrazumevano",

View file

@ -6,8 +6,6 @@
"No media permissions": "Inga mediebehörigheter", "No media permissions": "Inga mediebehörigheter",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Du behöver manuellt tillåta %(brand)s att komma åt din mikrofon/kamera", "You may need to manually permit %(brand)s to access your microphone/webcam": "Du behöver manuellt tillåta %(brand)s att komma åt din mikrofon/kamera",
"Default Device": "Standardenhet", "Default Device": "Standardenhet",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Advanced": "Avancerat", "Advanced": "Avancerat",
"Always show message timestamps": "Visa alltid tidsstämplar för meddelanden", "Always show message timestamps": "Visa alltid tidsstämplar för meddelanden",
"Authentication": "Autentisering", "Authentication": "Autentisering",
@ -44,7 +42,6 @@
"Download %(text)s": "Ladda ner %(text)s", "Download %(text)s": "Ladda ner %(text)s",
"Email": "E-post", "Email": "E-post",
"Email address": "E-postadress", "Email address": "E-postadress",
"Emoji": "Emoji",
"Error decrypting attachment": "Fel vid avkryptering av bilagan", "Error decrypting attachment": "Fel vid avkryptering av bilagan",
"Export": "Exportera", "Export": "Exportera",
"Export E2E room keys": "Exportera krypteringsrumsnycklar", "Export E2E room keys": "Exportera krypteringsrumsnycklar",
@ -109,7 +106,6 @@
"Privileged Users": "Privilegierade användare", "Privileged Users": "Privilegierade användare",
"Profile": "Profil", "Profile": "Profil",
"Reason": "Orsak", "Reason": "Orsak",
"Register": "Registrera",
"Reject invitation": "Avböj inbjudan", "Reject invitation": "Avböj inbjudan",
"Return to login screen": "Tillbaka till inloggningsskärmen", "Return to login screen": "Tillbaka till inloggningsskärmen",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s har inte tillstånd att skicka aviseringar - kontrollera webbläsarens inställningar", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s har inte tillstånd att skicka aviseringar - kontrollera webbläsarens inställningar",
@ -491,7 +487,6 @@
"This homeserver has exceeded one of its resource limits.": "Hemservern har överskridit en av sina resursgränser.", "This homeserver has exceeded one of its resource limits.": "Hemservern har överskridit en av sina resursgränser.",
"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.": "Ditt meddelande skickades inte eftersom hemservern har nått sin månatliga gräns för användaraktivitet. Vänligen <a>kontakta din serviceadministratör</a> för att fortsätta använda tjänsten.", "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.": "Ditt meddelande skickades inte eftersom hemservern har nått sin månatliga gräns för användaraktivitet. Vänligen <a>kontakta din serviceadministratör</a> för att fortsätta använda tjänsten.",
"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.": "Ditt meddelande skickades inte eftersom hemservern har överskridit en av sina resursgränser. Vänligen <a>kontakta din serviceadministratör</a> för att fortsätta använda tjänsten.", "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.": "Ditt meddelande skickades inte eftersom hemservern har överskridit en av sina resursgränser. Vänligen <a>kontakta din serviceadministratör</a> för att fortsätta använda tjänsten.",
"Legal": "Juridiskt",
"Please <a>contact your service administrator</a> to continue using this service.": "Vänligen <a>kontakta din tjänstadministratör</a> för att fortsätta använda tjänsten.", "Please <a>contact your service administrator</a> to continue using this service.": "Vänligen <a>kontakta din tjänstadministratör</a> för att fortsätta använda tjänsten.",
"This room has been replaced and is no longer active.": "Detta rum har ersatts och är inte längre aktivt.", "This room has been replaced and is no longer active.": "Detta rum har ersatts och är inte längre aktivt.",
"The conversation continues here.": "Konversationen fortsätter här.", "The conversation continues here.": "Konversationen fortsätter här.",
@ -646,15 +641,11 @@
"Language and region": "Språk och region", "Language and region": "Språk och region",
"Account management": "Kontohantering", "Account management": "Kontohantering",
"General": "Allmänt", "General": "Allmänt",
"Credits": "Medverkande",
"For help with using %(brand)s, click <a>here</a>.": "För hjälp med att använda %(brand)s, klicka <a>här</a>.", "For help with using %(brand)s, click <a>here</a>.": "För hjälp med att använda %(brand)s, klicka <a>här</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "För hjälp med att använda %(brand)s, klicka <a>här</a> eller starta en chatt med vår bott med knappen nedan.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "För hjälp med att använda %(brand)s, klicka <a>här</a> eller starta en chatt med vår bott med knappen nedan.",
"Chat with %(brand)s Bot": "Chatta med %(brand)s-bott", "Chat with %(brand)s Bot": "Chatta med %(brand)s-bott",
"Help & About": "Hjälp & om", "Help & About": "Hjälp & om",
"FAQ": "FAQ",
"Versions": "Versioner", "Versions": "Versioner",
"Preferences": "Alternativ",
"Timeline": "Tidslinje",
"Room list": "Rumslista", "Room list": "Rumslista",
"Autocomplete delay (ms)": "Autokompletteringsfördröjning (ms)", "Autocomplete delay (ms)": "Autokompletteringsfördröjning (ms)",
"Voice & Video": "Röst & video", "Voice & Video": "Röst & video",
@ -663,7 +654,6 @@
"Room version:": "Rumsversion:", "Room version:": "Rumsversion:",
"Room Addresses": "Rumsadresser", "Room Addresses": "Rumsadresser",
"This homeserver would like to make sure you are not a robot.": "Denna hemserver vill se till att du inte är en robot.", "This homeserver would like to make sure you are not a robot.": "Denna hemserver vill se till att du inte är en robot.",
"Change": "Ändra",
"Email (optional)": "E-post (valfritt)", "Email (optional)": "E-post (valfritt)",
"Phone (optional)": "Telefon (valfritt)", "Phone (optional)": "Telefon (valfritt)",
"Join millions for free on the largest public server": "Gå med miljontals användare gratis på den största publika servern", "Join millions for free on the largest public server": "Gå med miljontals användare gratis på den största publika servern",
@ -737,7 +727,6 @@
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Verifiera denna användare för att markera den som betrodd. Att lita på användare ger en extra sinnesfrid när man använder totalsträckskrypterade meddelanden.", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Verifiera denna användare för att markera den som betrodd. Att lita på användare ger en extra sinnesfrid när man använder totalsträckskrypterade meddelanden.",
"Remember my selection for this widget": "Kom ihåg mitt val för den här widgeten", "Remember my selection for this widget": "Kom ihåg mitt val för den här widgeten",
"Unable to load backup status": "Kunde inte ladda status för säkerhetskopia", "Unable to load backup status": "Kunde inte ladda status för säkerhetskopia",
"Guest": "Gäst",
"Could not load user profile": "Kunde inte ladda användarprofil", "Could not load user profile": "Kunde inte ladda användarprofil",
"The file '%(fileName)s' failed to upload.": "Filen '%(fileName)s' kunde inte laddas upp.", "The file '%(fileName)s' failed to upload.": "Filen '%(fileName)s' kunde inte laddas upp.",
"Composer": "Meddelandefält", "Composer": "Meddelandefält",
@ -800,7 +789,6 @@
"Only continue if you trust the owner of the server.": "Fortsätt endast om du litar på serverns ägare.", "Only continue if you trust the owner of the server.": "Fortsätt endast om du litar på serverns ägare.",
"Disconnect identity server": "Koppla ifrån identitetsservern", "Disconnect identity server": "Koppla ifrån identitetsservern",
"Disconnect from the identity server <idserver />?": "Koppla ifrån från identitetsservern <idserver />?", "Disconnect from the identity server <idserver />?": "Koppla ifrån från identitetsservern <idserver />?",
"Disconnect": "Koppla ifrån",
"You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Du <b>delar fortfarande dina personuppgifter</b> på identitetsservern <idserver />.", "You are still <b>sharing your personal data</b> on the identity server <idserver />.": "Du <b>delar fortfarande dina personuppgifter</b> på identitetsservern <idserver />.",
"We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Vi rekommenderar att du tar bort dina e-postadresser och telefonnummer från identitetsservern innan du kopplar från.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Vi rekommenderar att du tar bort dina e-postadresser och telefonnummer från identitetsservern innan du kopplar från.",
"Disconnect anyway": "Koppla ifrån ändå", "Disconnect anyway": "Koppla ifrån ändå",
@ -821,7 +809,6 @@
"Set a new custom sound": "Ställ in ett nytt anpassat ljud", "Set a new custom sound": "Ställ in ett nytt anpassat ljud",
"Upgrade the room": "Uppgradera rummet", "Upgrade the room": "Uppgradera rummet",
"Enable room encryption": "Aktivera rumskryptering", "Enable room encryption": "Aktivera rumskryptering",
"Revoke": "Återkalla",
"Discovery options will appear once you have added an email above.": "Upptäcktsalternativ kommer att visas när du har lagt till en e-postadress ovan.", "Discovery options will appear once you have added an email above.": "Upptäcktsalternativ kommer att visas när du har lagt till en e-postadress ovan.",
"Remove %(email)s?": "Ta bort %(email)s?", "Remove %(email)s?": "Ta bort %(email)s?",
"Remove %(phone)s?": "Ta bort %(phone)s?", "Remove %(phone)s?": "Ta bort %(phone)s?",
@ -843,7 +830,6 @@
"Join the conversation with an account": "Gå med i konversationen med ett konto", "Join the conversation with an account": "Gå med i konversationen med ett konto",
"Sign Up": "Registrera dig", "Sign Up": "Registrera dig",
"Prompt before sending invites to potentially invalid matrix IDs": "Fråga innan inbjudningar skickas till potentiellt ogiltiga Matrix-ID:n", "Prompt before sending invites to potentially invalid matrix IDs": "Fråga innan inbjudningar skickas till potentiellt ogiltiga Matrix-ID:n",
"Show all": "Visa alla",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagerade med %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagerade med %(shortName)s</reactedWith>",
"Edited at %(date)s. Click to view edits.": "Redigerat vid %(date)s. Klicka för att visa redigeringar.", "Edited at %(date)s. Click to view edits.": "Redigerat vid %(date)s. Klicka för att visa redigeringar.",
"edited": "redigerat", "edited": "redigerat",
@ -863,7 +849,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.": "Den här åtgärden kräver åtkomst till standardidentitetsservern <server /> för att validera en e-postadress eller ett telefonnummer, men servern har inga användarvillkor.", "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.": "Den här åtgärden kräver åtkomst till standardidentitetsservern <server /> för att validera en e-postadress eller ett telefonnummer, men servern har inga användarvillkor.",
"%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)",
"Show previews/thumbnails for images": "Visa förhandsgranskning/miniatyr för bilder", "Show previews/thumbnails for images": "Visa förhandsgranskning/miniatyr för bilder",
"Custom (%(level)s)": "Anpassad (%(level)s)",
"Error upgrading room": "Fel vid uppgradering av rum", "Error upgrading room": "Fel vid uppgradering av rum",
"Double check that your server supports the room version chosen and try again.": "Dubbelkolla att din server stöder den valda rumsversionen och försök igen.", "Double check that your server supports the room version chosen and try again.": "Dubbelkolla att din server stöder den valda rumsversionen och försök igen.",
"%(senderName)s placed a voice call.": "%(senderName)s ringde ett röstsamtal.", "%(senderName)s placed a voice call.": "%(senderName)s ringde ett röstsamtal.",
@ -974,7 +959,6 @@
"Your email address hasn't been verified yet": "Din e-postadress har inte verifierats än", "Your email address hasn't been verified yet": "Din e-postadress har inte verifierats än",
"Click the link in the email you received to verify and then click continue again.": "Klicka på länken i e-postmeddelandet för att bekräfta och klicka sedan på Fortsätt igen.", "Click the link in the email you received to verify and then click continue again.": "Klicka på länken i e-postmeddelandet för att bekräfta och klicka sedan på Fortsätt igen.",
"Verify the link in your inbox": "Verifiera länken i din inkorg", "Verify the link in your inbox": "Verifiera länken i din inkorg",
"Complete": "Färdigställ",
"Unable to revoke sharing for phone number": "Kunde inte återkalla delning för telefonnummer", "Unable to revoke sharing for phone number": "Kunde inte återkalla delning för telefonnummer",
"Unable to share phone number": "Kunde inte dela telefonnummer", "Unable to share phone number": "Kunde inte dela telefonnummer",
"Please enter verification code sent via text.": "Ange verifieringskod skickad via SMS.", "Please enter verification code sent via text.": "Ange verifieringskod skickad via SMS.",
@ -1002,7 +986,6 @@
"Toggle Quote": "Växla citat", "Toggle Quote": "Växla citat",
"New line": "Ny rad", "New line": "Ny rad",
"Jump to room search": "Hoppa till rumssökning", "Jump to room search": "Hoppa till rumssökning",
"Space": "Utrymme",
"Use Single Sign On to continue": "Använd samlad inloggning (single sign on) för att fortsätta", "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.", "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", "Single Sign On": "Samlad inloggning",
@ -1071,7 +1054,6 @@
"%(num)s days from now": "om %(num)s dagar", "%(num)s days from now": "om %(num)s dagar",
"Unexpected server error trying to leave the room": "Oväntat serverfel vid försök att lämna rummet", "Unexpected server error trying to leave the room": "Oväntat serverfel vid försök att lämna rummet",
"Error leaving room": "Fel när rummet lämnades", "Error leaving room": "Fel när rummet lämnades",
"Review": "Granska",
"Later": "Senare", "Later": "Senare",
"Your homeserver has exceeded its user limit.": "Din hemserver har överskridit sin användargräns.", "Your homeserver has exceeded its user limit.": "Din hemserver har överskridit sin användargräns.",
"Your homeserver has exceeded one of its resource limits.": "Din hemserver har överskridit en av sina resursgränser.", "Your homeserver has exceeded one of its resource limits.": "Din hemserver har överskridit en av sina resursgränser.",
@ -1192,7 +1174,6 @@
"You have not ignored anyone.": "Du har inte ignorerat någon.", "You have not ignored anyone.": "Du har inte ignorerat någon.",
"You are currently ignoring:": "Du ignorerar just nu:", "You are currently ignoring:": "Du ignorerar just nu:",
"You are not subscribed to any lists": "Du prenumererar inte på några listor", "You are not subscribed to any lists": "Du prenumererar inte på några listor",
"Unsubscribe": "Avprenumerera",
"View rules": "Visa regler", "View rules": "Visa regler",
"You are currently subscribed to:": "Du prenumerera just nu på:", "You are currently subscribed to:": "Du prenumerera just nu på:",
"⚠ These settings are meant for advanced users.": "⚠ Dessa inställningar är till för avancerade användare.", "⚠ These settings are meant for advanced users.": "⚠ Dessa inställningar är till för avancerade användare.",
@ -1205,7 +1186,6 @@
"Subscribing to a ban list will cause you to join it!": "Att prenumerera till en bannlista kommer att få dig att gå med i den!", "Subscribing to a ban list will cause you to join it!": "Att prenumerera till en bannlista kommer att få dig att gå med i den!",
"If this isn't what you want, please use a different tool to ignore users.": "Om det här inte är det du vill, använd ett annat verktyg för att ignorera användare.", "If this isn't what you want, please use a different tool to ignore users.": "Om det här inte är det du vill, använd ett annat verktyg för att ignorera användare.",
"Room ID or address of ban list": "Rums-ID eller adress för bannlista", "Room ID or address of ban list": "Rums-ID eller adress för bannlista",
"Subscribe": "Prenumerera",
"Read Marker lifetime (ms)": "Läsmarkörens livstid (ms)", "Read Marker lifetime (ms)": "Läsmarkörens livstid (ms)",
"Read Marker off-screen lifetime (ms)": "Läsmarkörens livstid utanför skärmen (ms)", "Read Marker off-screen lifetime (ms)": "Läsmarkörens livstid utanför skärmen (ms)",
"Session ID:": "Sessions-ID:", "Session ID:": "Sessions-ID:",
@ -1227,7 +1207,6 @@
"Someone is using an unknown session": "Någon använder en okänd session", "Someone is using an unknown session": "Någon använder en okänd session",
"This room is end-to-end encrypted": "Det här rummet är totalsträckskrypterat", "This room is end-to-end encrypted": "Det här rummet är totalsträckskrypterat",
"Everyone in this room is verified": "Alla i det här rummet är verifierade", "Everyone in this room is verified": "Alla i det här rummet är verifierade",
"Mod": "Mod",
"Encrypted by an unverified session": "Krypterat av en overifierad session", "Encrypted by an unverified session": "Krypterat av en overifierad session",
"Unencrypted": "Okrypterat", "Unencrypted": "Okrypterat",
"Encrypted by a deleted session": "Krypterat av en raderad session", "Encrypted by a deleted session": "Krypterat av en raderad session",
@ -1495,7 +1474,6 @@
"Identity server URL does not appear to be a valid identity server": "Identitetsserver-URL:en verkar inte vara en giltig Matrix-identitetsserver", "Identity server URL does not appear to be a valid identity server": "Identitetsserver-URL:en verkar inte vara en giltig Matrix-identitetsserver",
"This account has been deactivated.": "Det här kontot har avaktiverats.", "This account has been deactivated.": "Det här kontot har avaktiverats.",
"Failed to perform homeserver discovery": "Misslyckades att genomföra hemserverupptäckt", "Failed to perform homeserver discovery": "Misslyckades att genomföra hemserverupptäckt",
"Privacy": "Sekretess",
"If you've joined lots of rooms, this might take a while": "Om du har gått med i många rum kan det här ta ett tag", "If you've joined lots of rooms, this might take a while": "Om du har gått med i många rum kan det här ta ett tag",
"Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Ditt nya konto (%(newAccountId)s) är registrerat, men du är redan inloggad på ett annat konto (%(loggedInUserId)s).", "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Ditt nya konto (%(newAccountId)s) är registrerat, men du är redan inloggad på ett annat konto (%(loggedInUserId)s).",
"Continue with previous account": "Fortsätt med de tidigare kontot", "Continue with previous account": "Fortsätt med de tidigare kontot",
@ -1522,7 +1500,6 @@
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Använd en hemlig fras endast du känner till, och spara valfritt en säkerhetsnyckel att använda för säkerhetskopiering.", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Använd en hemlig fras endast du känner till, och spara valfritt en säkerhetsnyckel att använda för säkerhetskopiering.",
"Enter your account password to confirm the upgrade:": "Ange ditt kontolösenord för att bekräfta uppgraderingen:", "Enter your account password to confirm the upgrade:": "Ange ditt kontolösenord för att bekräfta uppgraderingen:",
"Restore your key backup to upgrade your encryption": "Återställ din nyckelsäkerhetskopia för att uppgradera din kryptering", "Restore your key backup to upgrade your encryption": "Återställ din nyckelsäkerhetskopia för att uppgradera din kryptering",
"Restore": "Återställ",
"You'll need to authenticate with the server to confirm the upgrade.": "Du kommer behöva autentisera mot servern för att bekräfta uppgraderingen.", "You'll need to authenticate with the server to confirm the upgrade.": "Du kommer behöva autentisera mot servern för att bekräfta uppgraderingen.",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Uppgradera den här sessionen för att låta den verifiera andra sessioner, för att ge dem åtkomst till krypterade meddelanden och markera dem som betrodda för andra användare.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Uppgradera den här sessionen för att låta den verifiera andra sessioner, för att ge dem åtkomst till krypterade meddelanden och markera dem som betrodda för andra användare.",
"That matches!": "Det matchar!", "That matches!": "Det matchar!",
@ -1997,7 +1974,6 @@
"Hold": "Parkera", "Hold": "Parkera",
"Resume": "Återuppta", "Resume": "Återuppta",
"Decline All": "Neka alla", "Decline All": "Neka alla",
"Approve": "Godta",
"This widget would like to:": "Den här widgeten skulle vilja:", "This widget would like to:": "Den här widgeten skulle vilja:",
"Approve widget permissions": "Godta widgetbehörigheter", "Approve widget permissions": "Godta widgetbehörigheter",
"About homeservers": "Om hemservrar", "About homeservers": "Om hemservrar",
@ -2096,8 +2072,6 @@
"Who are you working with?": "Vem arbetar du med?", "Who are you working with?": "Vem arbetar du med?",
"Skip for now": "Hoppa över för tillfället", "Skip for now": "Hoppa över för tillfället",
"Failed to create initial space rooms": "Misslyckades att skapa initiala utrymmesrum", "Failed to create initial space rooms": "Misslyckades att skapa initiala utrymmesrum",
"Support": "Hjälp",
"Random": "Slumpmässig",
"Welcome to <name/>": "Välkommen till <name/>", "Welcome to <name/>": "Välkommen till <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s medlem", "one": "%(count)s medlem",
@ -2220,8 +2194,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Välj rum eller konversationer att lägga till. Detta är bara ett utrymmer för dig, ingen kommer att informeras. Du kan lägga till fler senare.", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Välj rum eller konversationer att lägga till. Detta är bara ett utrymmer för dig, ingen kommer att informeras. Du kan lägga till fler senare.",
"What do you want to organise?": "Vad vill du organisera?", "What do you want to organise?": "Vad vill du organisera?",
"You have no ignored users.": "Du har inga ignorerade användare.", "You have no ignored users.": "Du har inga ignorerade användare.",
"Play": "Spela",
"Pause": "Pausa",
"Message search initialisation failed": "Initialisering av meddelandesökning misslyckades", "Message search initialisation failed": "Initialisering av meddelandesökning misslyckades",
"Search names and descriptions": "Sök namn och beskrivningar", "Search names and descriptions": "Sök namn och beskrivningar",
"Select a room below first": "Välj ett rum nedan först", "Select a room below first": "Välj ett rum nedan först",
@ -2244,7 +2216,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "Vi kunde inte komma åt din mikrofon. Vänligen kolla dina webbläsarinställningar och försök igen.", "We were unable to access your microphone. Please check your browser settings and try again.": "Vi kunde inte komma åt din mikrofon. Vänligen kolla dina webbläsarinställningar och försök igen.",
"Unable to access your microphone": "Kan inte komma åt din mikrofon", "Unable to access your microphone": "Kan inte komma åt din mikrofon",
"Your access token gives full access to your account. Do not share it with anyone.": "Din åtkomsttoken ger full åtkomst till ditt konto. Dela den inte med någon.", "Your access token gives full access to your account. Do not share it with anyone.": "Din åtkomsttoken ger full åtkomst till ditt konto. Dela den inte med någon.",
"Access Token": "Åtkomsttoken",
"Please enter a name for the space": "Vänligen ange ett namn för utrymmet", "Please enter a name for the space": "Vänligen ange ett namn för utrymmet",
"Connecting": "Ansluter", "Connecting": "Ansluter",
"Space Autocomplete": "Utrymmesautokomplettering", "Space Autocomplete": "Utrymmesautokomplettering",
@ -2622,7 +2593,6 @@
"You do not have permission to start polls in this room.": "Du får inte starta omröstningar i det här rummet.", "You do not have permission to start polls in this room.": "Du får inte starta omröstningar i det här rummet.",
"This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Det här rummet bryggar inte meddelanden till några platformar. <a>Läs mer.</a>", "This room isn't bridging messages to any platforms. <a>Learn more.</a>": "Det här rummet bryggar inte meddelanden till några platformar. <a>Läs mer.</a>",
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Det här rummet är med i några utrymmen du inte är admin för. I de utrymmena så kommer det gamla rummet fortfarande visas, men folk kommer uppmanas att gå med i det nya.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Det här rummet är med i några utrymmen du inte är admin för. I de utrymmena så kommer det gamla rummet fortfarande visas, men folk kommer uppmanas att gå med i det nya.",
"Rename": "Döp om",
"Select all": "Välj alla", "Select all": "Välj alla",
"Deselect all": "Välj bort alla", "Deselect all": "Välj bort alla",
"Sign out devices": { "Sign out devices": {
@ -3289,7 +3259,6 @@
"Sessions": "Sessioner", "Sessions": "Sessioner",
"Your server doesn't support disabling sending read receipts.": "Din server stöder inte inaktivering av läskvitton.", "Your server doesn't support disabling sending read receipts.": "Din server stöder inte inaktivering av läskvitton.",
"Share your activity and status with others.": "Dela din aktivitet och status med andra.", "Share your activity and status with others.": "Dela din aktivitet och status med andra.",
"Presence": "Närvaro",
"Feeling experimental? Try out our latest ideas in development. These features are not finalised; they may be unstable, may change, or may be dropped altogether. <a>Learn more</a>.": "Känner du dig äventyrlig? Pröva våra senaste idéer under utveckling. Dessa funktioner är inte slutförda; de kan vara instabila, kan ändras, eller kan tas bort helt. <a>Läs mer</a>.", "Feeling experimental? Try out our latest ideas in development. These features are not finalised; they may be unstable, may change, or may be dropped altogether. <a>Learn more</a>.": "Känner du dig äventyrlig? Pröva våra senaste idéer under utveckling. Dessa funktioner är inte slutförda; de kan vara instabila, kan ändras, eller kan tas bort helt. <a>Läs mer</a>.",
"Early previews": "Tidiga förhandstittar", "Early previews": "Tidiga förhandstittar",
"What's next for %(brand)s? Labs are the best way to get things early, test out new features and help shape them before they actually launch.": "Vad händer härnäst med %(brand)s? Experiment är det bästa sättet att få saker tidigt, pröva nya funktioner, och hjälpa till att forma dem innan de egentligen släpps.", "What's next for %(brand)s? Labs are the best way to get things early, test out new features and help shape them before they actually launch.": "Vad händer härnäst med %(brand)s? Experiment är det bästa sättet att få saker tidigt, pröva nya funktioner, och hjälpa till att forma dem innan de egentligen släpps.",
@ -3364,12 +3333,10 @@
"Show formatting": "Visa formatering", "Show formatting": "Visa formatering",
"Hide formatting": "Dölj formatering", "Hide formatting": "Dölj formatering",
"Failed to set pusher state": "Misslyckades att sätta pusharläge", "Failed to set pusher state": "Misslyckades att sätta pusharläge",
"View all": "Visa alla",
"Security recommendations": "Säkerhetsrekommendationer", "Security recommendations": "Säkerhetsrekommendationer",
"Show QR code": "Visa QR-kod", "Show QR code": "Visa QR-kod",
"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.": "Du kan använda den här enheten för att logga in en ny enhet med en QR-kod. Du kommer behöva skanna QR-koden som visas på den här enheten med din enhet som är utloggad.", "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.": "Du kan använda den här enheten för att logga in en ny enhet med en QR-kod. Du kommer behöva skanna QR-koden som visas på den här enheten med din enhet som är utloggad.",
"Sign in with QR code": "Logga in med QR-kod", "Sign in with QR code": "Logga in med QR-kod",
"Show": "Visa",
"Filter devices": "Filtrera enheter", "Filter devices": "Filtrera enheter",
"Inactive for %(inactiveAgeDays)s days or longer": "Inaktiv i %(inactiveAgeDays)s dagar eller längre", "Inactive for %(inactiveAgeDays)s days or longer": "Inaktiv i %(inactiveAgeDays)s dagar eller längre",
"Inactive": "Inaktiv", "Inactive": "Inaktiv",
@ -3755,7 +3722,22 @@
"dark": "Mörkt", "dark": "Mörkt",
"beta": "Beta", "beta": "Beta",
"attachment": "Bilaga", "attachment": "Bilaga",
"appearance": "Utseende" "appearance": "Utseende",
"guest": "Gäst",
"legal": "Juridiskt",
"credits": "Medverkande",
"faq": "FAQ",
"access_token": "Åtkomsttoken",
"preferences": "Alternativ",
"presence": "Närvaro",
"timeline": "Tidslinje",
"privacy": "Sekretess",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji",
"random": "Slumpmässig",
"support": "Hjälp",
"space": "Utrymme"
}, },
"action": { "action": {
"continue": "Fortsätt", "continue": "Fortsätt",
@ -3827,7 +3809,23 @@
"back": "Tillbaka", "back": "Tillbaka",
"apply": "Tillämpa", "apply": "Tillämpa",
"add": "Lägg till", "add": "Lägg till",
"accept": "Godkänn" "accept": "Godkänn",
"disconnect": "Koppla ifrån",
"change": "Ändra",
"subscribe": "Prenumerera",
"unsubscribe": "Avprenumerera",
"approve": "Godta",
"complete": "Färdigställ",
"revoke": "Återkalla",
"rename": "Döp om",
"view_all": "Visa alla",
"show_all": "Visa alla",
"show": "Visa",
"review": "Granska",
"restore": "Återställ",
"play": "Spela",
"pause": "Pausa",
"register": "Registrera"
}, },
"a11y": { "a11y": {
"user_menu": "Användarmeny" "user_menu": "Användarmeny"
@ -3914,7 +3912,9 @@
"default": "Standard", "default": "Standard",
"restricted": "Begränsad", "restricted": "Begränsad",
"moderator": "Moderator", "moderator": "Moderator",
"admin": "Administratör" "admin": "Administratör",
"custom": "Anpassad (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Om du har rapporterat en bugg via GitHub så kan felsökningsloggar hjälpa oss att hitta problemet. ", "introduction": "Om du har rapporterat en bugg via GitHub så kan felsökningsloggar hjälpa oss att hitta problemet. ",

View file

@ -49,7 +49,6 @@
"Event sent!": "நிகழ்வு அனுப்பப்பட்டது", "Event sent!": "நிகழ்வு அனுப்பப்பட்டது",
"Event Type": "நிகழ்வு வகை", "Event Type": "நிகழ்வு வகை",
"Event Content": "நிகழ்வு உள்ளடக்கம்", "Event Content": "நிகழ்வு உள்ளடக்கம்",
"Register": "பதிவு செய்",
"Rooms": "அறைகள்", "Rooms": "அறைகள்",
"This email address is already in use": "இந்த மின்னஞ்சல் முகவரி முன்னதாகவே பயன்பாட்டில் உள்ளது", "This email address is already in use": "இந்த மின்னஞ்சல் முகவரி முன்னதாகவே பயன்பாட்டில் உள்ளது",
"This phone number is already in use": "இந்த தொலைபேசி எண் முன்னதாகவே பயன்பாட்டில் உள்ளது", "This phone number is already in use": "இந்த தொலைபேசி எண் முன்னதாகவே பயன்பாட்டில் உள்ளது",
@ -146,7 +145,8 @@
"confirm": "உறுதிப்படுத்தவும்", "confirm": "உறுதிப்படுத்தவும்",
"close": "மூடு", "close": "மூடு",
"cancel": "ரத்து", "cancel": "ரத்து",
"back": "பின்" "back": "பின்",
"register": "பதிவு செய்"
}, },
"bug_reporting": { "bug_reporting": {
"send_logs": "பதிவுகளை அனுப்பு" "send_logs": "பதிவுகளை அனுப்பு"

View file

@ -6,8 +6,6 @@
"No Webcams detected": "వెబ్కామ్లు కనుగొనబడలేదు", "No Webcams detected": "వెబ్కామ్లు కనుగొనబడలేదు",
"No media permissions": "మీడియా అనుమతులు లేవు", "No media permissions": "మీడియా అనుమతులు లేవు",
"Default Device": "డిఫాల్ట్ పరికరం", "Default Device": "డిఫాల్ట్ పరికరం",
"Microphone": "మైక్రోఫోన్",
"Camera": "కెమెరా",
"Advanced": "ఆధునిక", "Advanced": "ఆధునిక",
"Always show message timestamps": "ఎల్లప్పుడూ సందేశాల సమయ ముద్రలు చూపించు", "Always show message timestamps": "ఎల్లప్పుడూ సందేశాల సమయ ముద్రలు చూపించు",
"Authentication": "ప్రామాణీకరణ", "Authentication": "ప్రామాణీకరణ",
@ -116,7 +114,9 @@
"mute": "నిశబ్ధము", "mute": "నిశబ్ధము",
"settings": "అమరికలు", "settings": "అమరికలు",
"warning": "హెచ్చరిక", "warning": "హెచ్చరిక",
"attachment": "జోడింపు" "attachment": "జోడింపు",
"camera": "కెమెరా",
"microphone": "మైక్రోఫోన్"
}, },
"action": { "action": {
"continue": "కొనసాగించు", "continue": "కొనసాగించు",

View file

@ -1,8 +1,6 @@
{ {
"Account": "บัญชี", "Account": "บัญชี",
"Microphone": "ไมโครโฟน",
"No Microphones detected": "ไม่พบไมโครโฟน", "No Microphones detected": "ไม่พบไมโครโฟน",
"Camera": "กล้อง",
"Advanced": "ขึ้นสูง", "Advanced": "ขึ้นสูง",
"Change Password": "เปลี่ยนรหัสผ่าน", "Change Password": "เปลี่ยนรหัสผ่าน",
"Default": "ค่าเริ่มต้น", "Default": "ค่าเริ่มต้น",
@ -10,11 +8,9 @@
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s เปลี่ยนหัวข้อเป็น \"%(topic)s\"", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s เปลี่ยนหัวข้อเป็น \"%(topic)s\"",
"Decrypt %(text)s": "ถอดรหัส %(text)s", "Decrypt %(text)s": "ถอดรหัส %(text)s",
"Download %(text)s": "ดาวน์โหลด %(text)s", "Download %(text)s": "ดาวน์โหลด %(text)s",
"Emoji": "อีโมจิ",
"Low priority": "ความสำคัญต่ำ", "Low priority": "ความสำคัญต่ำ",
"Profile": "โปรไฟล์", "Profile": "โปรไฟล์",
"Reason": "เหตุผล", "Reason": "เหตุผล",
"Register": "ลงทะเบียน",
"%(brand)s version:": "เวอร์ชัน %(brand)s:", "%(brand)s version:": "เวอร์ชัน %(brand)s:",
"Notifications": "การแจ้งเตือน", "Notifications": "การแจ้งเตือน",
"Operation failed": "การดำเนินการล้มเหลว", "Operation failed": "การดำเนินการล้มเหลว",
@ -414,7 +410,6 @@
"Idle": "ว่าง", "Idle": "ว่าง",
"Online": "ออนไลน์", "Online": "ออนไลน์",
"Your email address does not appear to be associated with a Matrix ID on this homeserver.": "ที่อยู่อีเมลของคุณไม่ได้เชื่อมโยงกับ Matrix ID บนโฮมเซิร์ฟเวอร์นี้", "Your email address does not appear to be associated with a Matrix ID on this homeserver.": "ที่อยู่อีเมลของคุณไม่ได้เชื่อมโยงกับ Matrix ID บนโฮมเซิร์ฟเวอร์นี้",
"Timeline": "เส้นเวลา",
"common": { "common": {
"encryption_enabled": "เปิดใช้งานการเข้ารหัส", "encryption_enabled": "เปิดใช้งานการเข้ารหัส",
"error": "ข้อผิดพลาด", "error": "ข้อผิดพลาด",
@ -433,7 +428,11 @@
"labs": "ห้องทดลอง", "labs": "ห้องทดลอง",
"home": "เมนูหลัก", "home": "เมนูหลัก",
"favourites": "รายการโปรด", "favourites": "รายการโปรด",
"attachment": "ไฟล์แนบ" "attachment": "ไฟล์แนบ",
"timeline": "เส้นเวลา",
"camera": "กล้อง",
"microphone": "ไมโครโฟน",
"emoji": "อีโมจิ"
}, },
"action": { "action": {
"continue": "ดำเนินการต่อ", "continue": "ดำเนินการต่อ",
@ -471,7 +470,8 @@
"close": "ปิด", "close": "ปิด",
"cancel": "ยกเลิก", "cancel": "ยกเลิก",
"add": "เพิ่ม", "add": "เพิ่ม",
"accept": "ยอมรับ" "accept": "ยอมรับ",
"register": "ลงทะเบียน"
}, },
"keyboard": { "keyboard": {
"home": "เมนูหลัก" "home": "เมนูหลัก"

View file

@ -7,8 +7,6 @@
"No media permissions": "Medya izinleri yok", "No media permissions": "Medya izinleri yok",
"You may need to manually permit %(brand)s to access your microphone/webcam": "%(brand)s'un mikrofonunuza / web kameranıza el le erişmesine izin vermeniz gerekebilir", "You may need to manually permit %(brand)s to access your microphone/webcam": "%(brand)s'un mikrofonunuza / web kameranıza el le erişmesine izin vermeniz gerekebilir",
"Default Device": "Varsayılan Cihaz", "Default Device": "Varsayılan Cihaz",
"Microphone": "Mikrofon",
"Camera": "Kamera",
"Advanced": "Gelişmiş", "Advanced": "Gelişmiş",
"Always show message timestamps": "Her zaman mesaj zaman dalgalarını (timestamps) gösterin", "Always show message timestamps": "Her zaman mesaj zaman dalgalarını (timestamps) gösterin",
"Authentication": "Doğrulama", "Authentication": "Doğrulama",
@ -47,7 +45,6 @@
"Download %(text)s": "%(text)s metnini indir", "Download %(text)s": "%(text)s metnini indir",
"Email": "E-posta", "Email": "E-posta",
"Email address": "E-posta Adresi", "Email address": "E-posta Adresi",
"Emoji": "Emoji (Karakter)",
"Enter passphrase": "Şifre deyimi Girin", "Enter passphrase": "Şifre deyimi Girin",
"Error decrypting attachment": "Ek şifresini çözme hatası", "Error decrypting attachment": "Ek şifresini çözme hatası",
"Export": "Dışa Aktar", "Export": "Dışa Aktar",
@ -110,7 +107,6 @@
"Privileged Users": "Ayrıcalıklı Kullanıcılar", "Privileged Users": "Ayrıcalıklı Kullanıcılar",
"Profile": "Profil", "Profile": "Profil",
"Reason": "Sebep", "Reason": "Sebep",
"Register": "Kaydolun",
"Reject invitation": "Daveti Reddet", "Reject invitation": "Daveti Reddet",
"Return to login screen": "Giriş ekranına dön", "Return to login screen": "Giriş ekranına dön",
"%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s size bildirim gönderme iznine sahip değil - lütfen tarayıcı ayarlarınızı kontrol edin", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s size bildirim gönderme iznine sahip değil - lütfen tarayıcı ayarlarınızı kontrol edin",
@ -463,7 +459,6 @@
"Jump to first unread room.": "Okunmamış ilk odaya zıpla.", "Jump to first unread room.": "Okunmamış ilk odaya zıpla.",
"Jump to first invite.": "İlk davete zıpla.", "Jump to first invite.": "İlk davete zıpla.",
"Add room": "Oda ekle", "Add room": "Oda ekle",
"Guest": "Misafir",
"Could not load user profile": "Kullanıcı profili yüklenemedi", "Could not load user profile": "Kullanıcı profili yüklenemedi",
"Your password has been reset.": "Parolanız sıfırlandı.", "Your password has been reset.": "Parolanız sıfırlandı.",
"General failure": "Genel başarısızlık", "General failure": "Genel başarısızlık",
@ -599,7 +594,6 @@
"Disconnect anyway": "Yinede bağlantıyı kes", "Disconnect anyway": "Yinede bağlantıyı kes",
"Do not use an identity server": "Bir kimlik sunucu kullanma", "Do not use an identity server": "Bir kimlik sunucu kullanma",
"Enter a new identity server": "Yeni bir kimlik sunucu gir", "Enter a new identity server": "Yeni bir kimlik sunucu gir",
"Change": "Değiştir",
"Manage integrations": "Entegrasyonları yönet", "Manage integrations": "Entegrasyonları yönet",
"Email addresses": "E-posta adresleri", "Email addresses": "E-posta adresleri",
"Phone numbers": "Telefon numaraları", "Phone numbers": "Telefon numaraları",
@ -607,10 +601,8 @@
"Account management": "Hesap yönetimi", "Account management": "Hesap yönetimi",
"General": "Genel", "General": "Genel",
"Discovery": "Keşfet", "Discovery": "Keşfet",
"Legal": "Yasal",
"Check for update": "Güncelleme kontrolü", "Check for update": "Güncelleme kontrolü",
"Help & About": "Yardım & Hakkında", "Help & About": "Yardım & Hakkında",
"FAQ": "FAQ",
"Versions": "Sürümler", "Versions": "Sürümler",
"Server rules": "Sunucu kuralları", "Server rules": "Sunucu kuralları",
"User rules": "Kullanıcı kuralları", "User rules": "Kullanıcı kuralları",
@ -677,7 +669,6 @@
"The identity server you have chosen does not have any terms of service.": "Seçtiğiniz kimlik sunucu herhangi bir hizmet şartları sözleşmesine sahip değil.", "The identity server you have chosen does not have any terms of service.": "Seçtiğiniz kimlik sunucu herhangi bir hizmet şartları sözleşmesine sahip değil.",
"Disconnect identity server": "Kimlik sunucu bağlantısını kes", "Disconnect identity server": "Kimlik sunucu bağlantısını kes",
"Disconnect from the identity server <idserver />?": "<idserver /> kimlik sunucusundan bağlantıyı kes?", "Disconnect from the identity server <idserver />?": "<idserver /> kimlik sunucusundan bağlantıyı kes?",
"Disconnect": "Bağlantıyı kes",
"contact the administrators of identity server <idserver />": "<idserver /> kimlik sunucusu yöneticisiyle bağlantıya geç", "contact the administrators of identity server <idserver />": "<idserver /> kimlik sunucusu yöneticisiyle bağlantıya geç",
"Deactivate user?": "Kullanıcıyı pasifleştir?", "Deactivate user?": "Kullanıcıyı pasifleştir?",
"Deactivate user": "Kullanıcıyı pasifleştir", "Deactivate user": "Kullanıcıyı pasifleştir",
@ -741,7 +732,6 @@
"%(name)s cancelled": "%(name)s iptal etti", "%(name)s cancelled": "%(name)s iptal etti",
"%(name)s wants to verify": "%(name)s doğrulamak istiyor", "%(name)s wants to verify": "%(name)s doğrulamak istiyor",
"You sent a verification request": "Doğrulama isteği gönderdiniz", "You sent a verification request": "Doğrulama isteği gönderdiniz",
"Show all": "Hepsini göster",
"Click here to see older messages.": "Daha eski mesajları görmek için buraya tıklayın.", "Click here to see older messages.": "Daha eski mesajları görmek için buraya tıklayın.",
"Copied!": "Kopyalandı!", "Copied!": "Kopyalandı!",
"Failed to copy": "Kopyalama başarısız", "Failed to copy": "Kopyalama başarısız",
@ -757,7 +747,6 @@
"Ban list rules - %(roomName)s": "Yasak Liste Kuralları - %(roomName)s", "Ban list rules - %(roomName)s": "Yasak Liste Kuralları - %(roomName)s",
"You have not ignored anyone.": "Kimseyi yok saymamışsınız.", "You have not ignored anyone.": "Kimseyi yok saymamışsınız.",
"You are currently ignoring:": "Halihazırda yoksaydıklarınız:", "You are currently ignoring:": "Halihazırda yoksaydıklarınız:",
"Unsubscribe": "Abonelikten Çık",
"You are currently subscribed to:": "Halizhazırdaki abonelikleriniz:", "You are currently subscribed to:": "Halizhazırdaki abonelikleriniz:",
"Ignored users": "Yoksayılan kullanıcılar", "Ignored users": "Yoksayılan kullanıcılar",
"Personal ban list": "Kişisel yasak listesi", "Personal ban list": "Kişisel yasak listesi",
@ -765,7 +754,6 @@
"eg: @bot:* or example.org": "örn: @bot:* veya example.org", "eg: @bot:* or example.org": "örn: @bot:* veya example.org",
"Subscribed lists": "Abone olunmuş listeler", "Subscribed lists": "Abone olunmuş listeler",
"If this isn't what you want, please use a different tool to ignore users.": "Eğer istediğiniz bu değilse, kullanıcıları yoksaymak için lütfen farklı bir araç kullanın.", "If this isn't what you want, please use a different tool to ignore users.": "Eğer istediğiniz bu değilse, kullanıcıları yoksaymak için lütfen farklı bir araç kullanın.",
"Subscribe": "Abone ol",
"Always show the window menu bar": "Pencerenin menü çubuğunu her zaman göster", "Always show the window menu bar": "Pencerenin menü çubuğunu her zaman göster",
"Bulk options": "Toplu işlem seçenekleri", "Bulk options": "Toplu işlem seçenekleri",
"Accept all %(invitedRooms)s invites": "Bütün %(invitedRooms)s davetlerini kabul et", "Accept all %(invitedRooms)s invites": "Bütün %(invitedRooms)s davetlerini kabul et",
@ -786,8 +774,6 @@
"The conversation continues here.": "Sohbet buradan devam ediyor.", "The conversation continues here.": "Sohbet buradan devam ediyor.",
"You can only join it with a working invite.": "Sadece çalışan bir davet ile katılınabilir.", "You can only join it with a working invite.": "Sadece çalışan bir davet ile katılınabilir.",
"Try to join anyway": "Katılmak için yinede deneyin", "Try to join anyway": "Katılmak için yinede deneyin",
"Preferences": "Tercihler",
"Timeline": "Zaman Çizelgesi",
"This room has been replaced and is no longer active.": "Bu oda değiştirildi ve artık aktif değil.", "This room has been replaced and is no longer active.": "Bu oda değiştirildi ve artık aktif değil.",
"Idle for %(duration)s": "%(duration)s süresince boşta", "Idle for %(duration)s": "%(duration)s süresince boşta",
"You were banned from %(roomName)s by %(memberName)s": "%(memberName)s tarafından %(roomName)s odası size yasaklandı", "You were banned from %(roomName)s by %(memberName)s": "%(memberName)s tarafından %(roomName)s odası size yasaklandı",
@ -840,7 +826,6 @@
"Mirror local video feed": "Yerel video beslemesi yansısı", "Mirror local video feed": "Yerel video beslemesi yansısı",
"Match system theme": "Sistem temasıyla eşle", "Match system theme": "Sistem temasıyla eşle",
"Missing media permissions, click the button below to request.": "Medya izinleri eksik, alttaki butona tıkayarak talep edin.", "Missing media permissions, click the button below to request.": "Medya izinleri eksik, alttaki butona tıkayarak talep edin.",
"Credits": "Katkıda Bulunanlar",
"Clear cache and reload": "Belleği temizle ve yeniden yükle", "Clear cache and reload": "Belleği temizle ve yeniden yükle",
"Ignored/Blocked": "Yoksayılan/Bloklanan", "Ignored/Blocked": "Yoksayılan/Bloklanan",
"Error adding ignored user/server": "Yoksayılan kullanıcı/sunucu eklenirken hata", "Error adding ignored user/server": "Yoksayılan kullanıcı/sunucu eklenirken hata",
@ -976,7 +961,6 @@
"They don't match": "Eşleşmiyorlar", "They don't match": "Eşleşmiyorlar",
"Other users may not trust it": "Diğer kullanıcılar güvenmeyebilirler", "Other users may not trust it": "Diğer kullanıcılar güvenmeyebilirler",
"Later": "Sonra", "Later": "Sonra",
"Review": "Gözden Geçirme",
"Show less": "Daha az göster", "Show less": "Daha az göster",
"Show more": "Daha fazla göster", "Show more": "Daha fazla göster",
"in memory": "hafızada", "in memory": "hafızada",
@ -994,7 +978,6 @@
"Someone is using an unknown session": "Birisi bilinmeyen bir oturum kullanıyor", "Someone is using an unknown session": "Birisi bilinmeyen bir oturum kullanıyor",
"Everyone in this room is verified": "Bu odadaki herkes doğrulanmış", "Everyone in this room is verified": "Bu odadaki herkes doğrulanmış",
"Setting up keys": "Anahtarları ayarla", "Setting up keys": "Anahtarları ayarla",
"Custom (%(level)s)": "Özel (%(level)s)",
"Upload %(count)s other files": { "Upload %(count)s other files": {
"other": "%(count)s diğer dosyaları yükle", "other": "%(count)s diğer dosyaları yükle",
"one": "%(count)s dosyayı sağla" "one": "%(count)s dosyayı sağla"
@ -1083,7 +1066,6 @@
"Registration has been disabled on this homeserver.": "Bu anasunucuda kayıt işlemleri kapatılmış.", "Registration has been disabled on this homeserver.": "Bu anasunucuda kayıt işlemleri kapatılmış.",
"Enter your password to sign in and regain access to your account.": "Oturum açmak için şifreni gir ve hesabına yeniden erişimi sağla.", "Enter your password to sign in and regain access to your account.": "Oturum açmak için şifreni gir ve hesabına yeniden erişimi sağla.",
"Enter your account password to confirm the upgrade:": "Güncellemeyi başlatmak için hesap şifreni gir:", "Enter your account password to confirm the upgrade:": "Güncellemeyi başlatmak için hesap şifreni gir:",
"Restore": "Geri yükle",
"You'll need to authenticate with the server to confirm the upgrade.": "Güncellemeyi teyit etmek için sunucuda oturum açmaya ihtiyacınız var.", "You'll need to authenticate with the server to confirm the upgrade.": "Güncellemeyi teyit etmek için sunucuda oturum açmaya ihtiyacınız var.",
"Unable to set up secret storage": "Sır deposu ayarlanamıyor", "Unable to set up secret storage": "Sır deposu ayarlanamıyor",
"Your keys are being backed up (the first backup could take a few minutes).": "Anahtarlarınız yedekleniyor (ilk yedek bir kaç dakika sürebilir).", "Your keys are being backed up (the first backup could take a few minutes).": "Anahtarlarınız yedekleniyor (ilk yedek bir kaç dakika sürebilir).",
@ -1535,7 +1517,6 @@
"Use Command + Enter to send a message": "Mesaj göndermek için Command + Enter tuşlarını kullanın", "Use Command + Enter to send a message": "Mesaj göndermek için Command + Enter tuşlarını kullanın",
"Use custom size": "Özel büyüklük kullan", "Use custom size": "Özel büyüklük kullan",
"Font size": "Yazı boyutu", "Font size": "Yazı boyutu",
"Space": "Boşluk",
"%(senderName)s: %(stickerName)s": "%(senderName)s%(stickerName)s", "%(senderName)s: %(stickerName)s": "%(senderName)s%(stickerName)s",
"%(senderName)s: %(message)s": "%(senderName)s%(message)s", "%(senderName)s: %(message)s": "%(senderName)s%(message)s",
"* %(senderName)s %(emote)s": "%(senderName)s%(emote)s", "* %(senderName)s %(emote)s": "%(senderName)s%(emote)s",
@ -1696,7 +1677,6 @@
"Transfer": "Aktar", "Transfer": "Aktar",
"Hold": "Beklet", "Hold": "Beklet",
"Resume": "Devam et", "Resume": "Devam et",
"Approve": "Onayla",
"Information": "Bilgi", "Information": "Bilgi",
"Calls": "Aramalar", "Calls": "Aramalar",
"Feedback": "Geri bildirim", "Feedback": "Geri bildirim",
@ -1708,10 +1688,6 @@
"Room options": "Oda ayarları", "Room options": "Oda ayarları",
"Forget Room": "Odayı unut", "Forget Room": "Odayı unut",
"Open dial pad": "Arama tuşlarını aç", "Open dial pad": "Arama tuşlarını aç",
"Mod": "Mod",
"Revoke": "İptal et",
"Complete": "Tamamla",
"Privacy": "Gizlilik",
"New version available. <a>Update now.</a>": "Yeni sürüm mevcut: <a> Şimdi güncelle.</a>", "New version available. <a>Update now.</a>": "Yeni sürüm mevcut: <a> Şimdi güncelle.</a>",
"Use between %(min)s pt and %(max)s pt": "%(min)s ile %(max)s arasında girin", "Use between %(min)s pt and %(max)s pt": "%(min)s ile %(max)s arasında girin",
"Custom font size can only be between %(min)s pt and %(max)s pt": "Özel yazı tipi boyutu %(min)s ile %(max)s arasında olmalı", "Custom font size can only be between %(min)s pt and %(max)s pt": "Özel yazı tipi boyutu %(min)s ile %(max)s arasında olmalı",
@ -1880,9 +1856,7 @@
"Failed to transfer call": "Arama aktarılırken hata oluştu", "Failed to transfer call": "Arama aktarılırken hata oluştu",
"Plain Text": "Düz Metin", "Plain Text": "Düz Metin",
"For best security, sign out from any session that you don't recognize or use anymore.": "En iyi güvenlik için, tanımadığın ya da artık kullanmadığın oturumlardan çıkış yap.", "For best security, sign out from any session that you don't recognize or use anymore.": "En iyi güvenlik için, tanımadığın ya da artık kullanmadığın oturumlardan çıkış yap.",
"View all": "Hepsini göster",
"Security recommendations": "Güvenlik önerileri", "Security recommendations": "Güvenlik önerileri",
"Show": "Göster",
"Filter devices": "Cihazları filtrele", "Filter devices": "Cihazları filtrele",
"Not ready for secure messaging": "Güvenli mesajlaşma için hazır değil", "Not ready for secure messaging": "Güvenli mesajlaşma için hazır değil",
"Ready for secure messaging": "Güvenli mesajlaşma için hazır", "Ready for secure messaging": "Güvenli mesajlaşma için hazır",
@ -1945,7 +1919,18 @@
"description": "Tanım", "description": "Tanım",
"dark": "Karanlık", "dark": "Karanlık",
"attachment": "Ek Dosya", "attachment": "Ek Dosya",
"appearance": "Görünüm" "appearance": "Görünüm",
"guest": "Misafir",
"legal": "Yasal",
"credits": "Katkıda Bulunanlar",
"faq": "FAQ",
"preferences": "Tercihler",
"timeline": "Zaman Çizelgesi",
"privacy": "Gizlilik",
"camera": "Kamera",
"microphone": "Mikrofon",
"emoji": "Emoji (Karakter)",
"space": "Boşluk"
}, },
"action": { "action": {
"continue": "Devam Et", "continue": "Devam Et",
@ -2003,7 +1988,20 @@
"cancel": "İptal", "cancel": "İptal",
"back": "Geri", "back": "Geri",
"add": "Ekle", "add": "Ekle",
"accept": "Kabul Et" "accept": "Kabul Et",
"disconnect": "Bağlantıyı kes",
"change": "Değiştir",
"subscribe": "Abone ol",
"unsubscribe": "Abonelikten Çık",
"approve": "Onayla",
"complete": "Tamamla",
"revoke": "İptal et",
"view_all": "Hepsini göster",
"show_all": "Hepsini göster",
"show": "Göster",
"review": "Gözden Geçirme",
"restore": "Geri yükle",
"register": "Kaydolun"
}, },
"a11y": { "a11y": {
"user_menu": "Kullanıcı menüsü" "user_menu": "Kullanıcı menüsü"
@ -2039,7 +2037,9 @@
"default": "Varsayılan", "default": "Varsayılan",
"restricted": "Sınırlı", "restricted": "Sınırlı",
"moderator": "Moderatör", "moderator": "Moderatör",
"admin": "Admin" "admin": "Admin",
"custom": "Özel (%(level)s)",
"mod": "Mod"
}, },
"bug_reporting": { "bug_reporting": {
"submit_debug_logs": "Hata ayıklama kayıtlarını gönder", "submit_debug_logs": "Hata ayıklama kayıtlarını gönder",

View file

@ -24,9 +24,6 @@
"Add Phone Number": "Rnu uṭṭun n utilifun", "Add Phone Number": "Rnu uṭṭun n utilifun",
"Add Email Address": "Rnu tasna imayl", "Add Email Address": "Rnu tasna imayl",
"Permissions": "Tisirag", "Permissions": "Tisirag",
"Subscribe": "Zemmem",
"Change": "Senfel",
"Disconnect": "Kkes azday",
"exists": "illa", "exists": "illa",
"Santa": "Santa", "Santa": "Santa",
"Pizza": "Tapizzat", "Pizza": "Tapizzat",
@ -51,9 +48,7 @@
"Andorra": "Andura", "Andorra": "Andura",
"Algeria": "Dzayer", "Algeria": "Dzayer",
"Albania": "Albanya", "Albania": "Albanya",
"Space": "Space",
"Calls": "Iɣuṛiten", "Calls": "Iɣuṛiten",
"Emoji": "Imuji",
"Afghanistan": "Afɣanistan", "Afghanistan": "Afɣanistan",
"Phone": "Atilifun", "Phone": "Atilifun",
"Email": "Imayl", "Email": "Imayl",
@ -67,8 +62,6 @@
"A-Z": "A-Ẓ", "A-Z": "A-Ẓ",
"Re-join": "als-lkem", "Re-join": "als-lkem",
"%(duration)sd": "%(duration)sas", "%(duration)sd": "%(duration)sas",
"Camera": "Takamiṛa",
"Microphone": "Amikṛu",
"None": "Walu", "None": "Walu",
"Account": "Amiḍan", "Account": "Amiḍan",
"Algorithm:": "Talguritmit:", "Algorithm:": "Talguritmit:",
@ -99,7 +92,6 @@
"Lion": "Izem", "Lion": "Izem",
"Cat": "Amuc", "Cat": "Amuc",
"Dog": "Aydi", "Dog": "Aydi",
"Guest": "Anebgi",
"Ok": "Wax", "Ok": "Wax",
"Notifications": "Tineɣmisin", "Notifications": "Tineɣmisin",
"Usage": "Asemres", "Usage": "Asemres",
@ -113,7 +105,12 @@
"theme": "Asgum", "theme": "Asgum",
"name": "Isem", "name": "Isem",
"home": "Asnubeg", "home": "Asnubeg",
"dark": "Adeɣmum" "dark": "Adeɣmum",
"guest": "Anebgi",
"camera": "Takamiṛa",
"microphone": "Amikṛu",
"emoji": "Imuji",
"space": "Space"
}, },
"action": { "action": {
"continue": "Kemmel", "continue": "Kemmel",
@ -137,7 +134,10 @@
"confirm": "Sentem", "confirm": "Sentem",
"close": "Rgel", "close": "Rgel",
"cancel": "Sser", "cancel": "Sser",
"add": "Rnu" "add": "Rnu",
"disconnect": "Kkes azday",
"change": "Senfel",
"subscribe": "Zemmem"
}, },
"keyboard": { "keyboard": {
"home": "Asnubeg", "home": "Asnubeg",

View file

@ -15,8 +15,6 @@
"No media permissions": "Немає медіадозволів", "No media permissions": "Немає медіадозволів",
"You may need to manually permit %(brand)s to access your microphone/webcam": "Можливо, вам треба дозволити %(brand)s використання мікрофону/камери вручну", "You may need to manually permit %(brand)s to access your microphone/webcam": "Можливо, вам треба дозволити %(brand)s використання мікрофону/камери вручну",
"Default Device": "Уставний пристрій", "Default Device": "Уставний пристрій",
"Microphone": "Мікрофон",
"Camera": "Камера",
"Advanced": "Подробиці", "Advanced": "Подробиці",
"Always show message timestamps": "Завжди показувати часові позначки повідомлень", "Always show message timestamps": "Завжди показувати часові позначки повідомлень",
"Authentication": "Автентифікація", "Authentication": "Автентифікація",
@ -41,7 +39,6 @@
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s змінює тему на %(topic)s.", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s змінює тему на %(topic)s.",
"Email": "Е-пошта", "Email": "Е-пошта",
"Email address": "Адреса е-пошти", "Email address": "Адреса е-пошти",
"Register": "Зареєструватися",
"Rooms": "Кімнати", "Rooms": "Кімнати",
"This email address is already in use": "Ця е-пошта вже використовується", "This email address is already in use": "Ця е-пошта вже використовується",
"This phone number is already in use": "Цей телефонний номер вже використовується", "This phone number is already in use": "Цей телефонний номер вже використовується",
@ -283,7 +280,6 @@
"Upload Error": "Помилка вивантаження", "Upload Error": "Помилка вивантаження",
"Upload avatar": "Вивантажити аватар", "Upload avatar": "Вивантажити аватар",
"For security, this session has been signed out. Please sign in again.": "З метою безпеки ваш сеанс було завершено. Увійдіть знову.", "For security, this session has been signed out. Please sign in again.": "З метою безпеки ваш сеанс було завершено. Увійдіть знову.",
"Custom (%(level)s)": "Власний (%(level)s)",
"Error upgrading room": "Помилка поліпшення кімнати", "Error upgrading room": "Помилка поліпшення кімнати",
"Double check that your server supports the room version chosen and try again.": "Перевірте, чи підримує ваш сервер вказану версію кімнати та спробуйте ще.", "Double check that your server supports the room version chosen and try again.": "Перевірте, чи підримує ваш сервер вказану версію кімнати та спробуйте ще.",
"Send a Direct Message": "Надіслати особисте повідомлення", "Send a Direct Message": "Надіслати особисте повідомлення",
@ -309,13 +305,10 @@
"Use your account or create a new one to continue.": "Скористайтесь вашим обліковим записом або створіть новий, щоб продовжити.", "Use your account or create a new one to continue.": "Скористайтесь вашим обліковим записом або створіть новий, щоб продовжити.",
"Create Account": "Створити обліковий запис", "Create Account": "Створити обліковий запис",
"Later": "Пізніше", "Later": "Пізніше",
"Review": "Переглянути",
"Language and region": "Мова та регіон", "Language and region": "Мова та регіон",
"Account management": "Керування обліковим записом", "Account management": "Керування обліковим записом",
"Deactivate Account": "Деактивувати обліковий запис", "Deactivate Account": "Деактивувати обліковий запис",
"Deactivate account": "Деактивувати обліковий запис", "Deactivate account": "Деактивувати обліковий запис",
"Legal": "Правові положення",
"Credits": "Подяки",
"For help with using %(brand)s, click <a>here</a>.": "Якщо необхідна допомога у користуванні %(brand)s'ом, клацніть <a>тут</a>.", "For help with using %(brand)s, click <a>here</a>.": "Якщо необхідна допомога у користуванні %(brand)s'ом, клацніть <a>тут</a>.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Якщо необхідна допомога у користуванні %(brand)s, клацніть <a>тут</a> або розпочніть бесіду з нашим ботом, клацнувши на кнопку внизу.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Якщо необхідна допомога у користуванні %(brand)s, клацніть <a>тут</a> або розпочніть бесіду з нашим ботом, клацнувши на кнопку внизу.",
"Join the conversation with an account": "Приєднатись до бесіди з обліковим записом", "Join the conversation with an account": "Приєднатись до бесіди з обліковим записом",
@ -490,7 +483,6 @@
"Set up": "Налаштувати", "Set up": "Налаштувати",
"Other users may not trust it": "Інші користувачі можуть не довіряти цьому", "Other users may not trust it": "Інші користувачі можуть не довіряти цьому",
"New login. Was this you?": "Новий вхід. Це були ви?", "New login. Was this you?": "Новий вхід. Це були ви?",
"Guest": "Гість",
"You joined the call": "Ви приєднались до виклику", "You joined the call": "Ви приєднались до виклику",
"%(senderName)s joined the call": "%(senderName)s приєднується до виклику", "%(senderName)s joined the call": "%(senderName)s приєднується до виклику",
"Call in progress": "Виклик триває", "Call in progress": "Виклик триває",
@ -510,7 +502,6 @@
"Help & About": "Допомога та про програму", "Help & About": "Допомога та про програму",
"Clear cache and reload": "Очистити кеш та перезавантажити", "Clear cache and reload": "Очистити кеш та перезавантажити",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Щоб повідомити про проблеми безпеки Matrix, будь ласка, прочитайте <a>Політику розкриття інформації</a> Matrix.org.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Щоб повідомити про проблеми безпеки Matrix, будь ласка, прочитайте <a>Політику розкриття інформації</a> Matrix.org.",
"FAQ": "ЧаПи",
"Versions": "Версії", "Versions": "Версії",
"%(brand)s version:": "Версія %(brand)s:", "%(brand)s version:": "Версія %(brand)s:",
"Ignored/Blocked": "Ігноровані/Заблоковані", "Ignored/Blocked": "Ігноровані/Заблоковані",
@ -527,7 +518,6 @@
"You have not ignored anyone.": "Ви нікого не ігноруєте.", "You have not ignored anyone.": "Ви нікого не ігноруєте.",
"You are currently ignoring:": "Ви ігноруєте:", "You are currently ignoring:": "Ви ігноруєте:",
"You are not subscribed to any lists": "Ви не підписані ні на один список", "You are not subscribed to any lists": "Ви не підписані ні на один список",
"Unsubscribe": "Відписатись",
"View rules": "Переглянути правила", "View rules": "Переглянути правила",
"You are currently subscribed to:": "Ви підписані на:", "You are currently subscribed to:": "Ви підписані на:",
"⚠ These settings are meant for advanced users.": "⚠ Ці налаштування розраховані на досвідчених користувачів.", "⚠ These settings are meant for advanced users.": "⚠ Ці налаштування розраховані на досвідчених користувачів.",
@ -539,10 +529,8 @@
"Subscribing to a ban list will cause you to join it!": "Підписавшись на список блокування ви приєднаєтесь до нього!", "Subscribing to a ban list will cause you to join it!": "Підписавшись на список блокування ви приєднаєтесь до нього!",
"If this isn't what you want, please use a different tool to ignore users.": "Якщо вас це не влаштовує, спробуйте інший інструмент для ігнорування користувачів.", "If this isn't what you want, please use a different tool to ignore users.": "Якщо вас це не влаштовує, спробуйте інший інструмент для ігнорування користувачів.",
"Room ID or address of ban list": "ID кімнати або адреса списку блокування", "Room ID or address of ban list": "ID кімнати або адреса списку блокування",
"Subscribe": "Підписатись",
"Start automatically after system login": "Автозапуск при вході в систему", "Start automatically after system login": "Автозапуск при вході в систему",
"Always show the window menu bar": "Завжди показувати рядок меню", "Always show the window menu bar": "Завжди показувати рядок меню",
"Preferences": "Параметри",
"Room list": "Перелік кімнат", "Room list": "Перелік кімнат",
"Composer": "Редактор", "Composer": "Редактор",
"Security & Privacy": "Безпека й приватність", "Security & Privacy": "Безпека й приватність",
@ -653,12 +641,10 @@
"All keys backed up": "Усі ключі збережено", "All keys backed up": "Усі ключі збережено",
"Enable audible notifications for this session": "Увімкнути звукові сповіщення для цього сеансу", "Enable audible notifications for this session": "Увімкнути звукові сповіщення для цього сеансу",
"Checking server": "Перевірка сервера", "Checking server": "Перевірка сервера",
"Disconnect": "Від'єднатися",
"You should:": "Вам варто:", "You should:": "Вам варто:",
"Disconnect anyway": "Відключити в будь-якому випадку", "Disconnect anyway": "Відключити в будь-якому випадку",
"Do not use an identity server": "Не використовувати сервер ідентифікації", "Do not use an identity server": "Не використовувати сервер ідентифікації",
"Enter a new identity server": "Введіть новий сервер ідентифікації", "Enter a new identity server": "Введіть новий сервер ідентифікації",
"Change": "Змінити",
"Manage integrations": "Керування інтеграціями", "Manage integrations": "Керування інтеграціями",
"Size must be a number": "Розмір повинен бути числом", "Size must be a number": "Розмір повинен бути числом",
"No Audio Outputs detected": "Звуковий вивід не виявлено", "No Audio Outputs detected": "Звуковий вивід не виявлено",
@ -667,7 +653,6 @@
"Upgrade this room to the recommended room version": "Поліпшити цю кімнату до рекомендованої версії", "Upgrade this room to the recommended room version": "Поліпшити цю кімнату до рекомендованої версії",
"Upgrade the room": "Поліпшити кімнату", "Upgrade the room": "Поліпшити кімнату",
"Unable to revoke sharing for email address": "Не вдалось відкликати оприлюднювання адреси е-пошти", "Unable to revoke sharing for email address": "Не вдалось відкликати оприлюднювання адреси е-пошти",
"Revoke": "Відкликати",
"Unable to revoke sharing for phone number": "Не вдалось відкликати оприлюднювання телефонного номеру", "Unable to revoke sharing for phone number": "Не вдалось відкликати оприлюднювання телефонного номеру",
"Filter room members": "Відфільтрувати учасників кімнати", "Filter room members": "Відфільтрувати учасників кімнати",
"Voice call": "Голосовий виклик", "Voice call": "Голосовий виклик",
@ -754,7 +739,6 @@
"Failed to copy": "Не вдалося скопіювати", "Failed to copy": "Не вдалося скопіювати",
"Your display name": "Ваш псевдонім", "Your display name": "Ваш псевдонім",
"Cancel replying to a message": "Скасувати відповідання на повідомлення", "Cancel replying to a message": "Скасувати відповідання на повідомлення",
"Space": "Простір",
"Clearing all data from this session is permanent. Encrypted messages will be lost unless their keys have been backed up.": "Видалення даних з цього сеансу є безповоротним. Зашифровані повідомлення будуть втрачені якщо їхні ключі не було продубльовано.", "Clearing all data from this session is permanent. Encrypted messages will be lost unless their keys have been backed up.": "Видалення даних з цього сеансу є безповоротним. Зашифровані повідомлення будуть втрачені якщо їхні ключі не було продубльовано.",
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Звірте цього користувача щоб позначити його довіреним. Довіряння користувачам додає спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Звірте цього користувача щоб позначити його довіреним. Довіряння користувачам додає спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.",
"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.": "Звірте цей пристрій щоб позначити його довіреним. Довіряння цьому пристрою додає вам та іншим користувачам спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.", "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.": "Звірте цей пристрій щоб позначити його довіреним. Довіряння цьому пристрою додає вам та іншим користувачам спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.",
@ -773,7 +757,6 @@
"If you can't scan the code above, verify by comparing unique emoji.": "Якщо ви не можете сканувати зазначений код, звірте порівнянням унікальних емодзі.", "If you can't scan the code above, verify by comparing unique emoji.": "Якщо ви не можете сканувати зазначений код, звірте порівнянням унікальних емодзі.",
"Verify by comparing unique emoji.": "Звірити порівнянням унікальних емодзі.", "Verify by comparing unique emoji.": "Звірити порівнянням унікальних емодзі.",
"Verify by emoji": "Звірити за допомогою емодзі", "Verify by emoji": "Звірити за допомогою емодзі",
"Emoji": "Емодзі",
"Emoji Autocomplete": "Самодоповнення емодзі", "Emoji Autocomplete": "Самодоповнення емодзі",
"%(senderName)s created a ban rule matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування зі збігом з %(glob)s через %(reason)s", "%(senderName)s created a ban rule matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування зі збігом з %(glob)s через %(reason)s",
"%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s змінює правило блокування користувачів зі збігу з %(oldGlob)s на збіг з %(newGlob)s через %(reason)s", "%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s змінює правило блокування користувачів зі збігу з %(oldGlob)s на збіг з %(newGlob)s через %(reason)s",
@ -794,7 +777,6 @@
"Failed to connect to integration manager": "Не вдалось з'єднатись з менеджером інтеграцій", "Failed to connect to integration manager": "Не вдалось з'єднатись з менеджером інтеграцій",
"Show image": "Показати зображення", "Show image": "Показати зображення",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Ви ігноруєте цього користувача, тож його повідомлення приховано. <a>Все одно показати.</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Ви ігноруєте цього користувача, тож його повідомлення приховано. <a>Все одно показати.</a>",
"Show all": "Показати все",
"Add an Integration": "Додати інтеграцію", "Add an Integration": "Додати інтеграцію",
"Show advanced": "Показати розширені", "Show advanced": "Показати розширені",
"Review terms and conditions": "Переглянути умови користування", "Review terms and conditions": "Переглянути умови користування",
@ -1365,7 +1347,6 @@
"Share your public space": "Поділитися своїм загальнодоступним простором", "Share your public space": "Поділитися своїм загальнодоступним простором",
"Join the beta": "Долучитися до бета-тестування", "Join the beta": "Долучитися до бета-тестування",
"Some suggestions may be hidden for privacy.": "Деякі пропозиції можуть бути сховані для приватності.", "Some suggestions may be hidden for privacy.": "Деякі пропозиції можуть бути сховані для приватності.",
"Privacy": "Приватність",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Захистіться від втрати доступу до зашифрованих повідомлень і даних створенням резервної копії ключів шифрування на своєму сервері.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Захистіться від втрати доступу до зашифрованих повідомлень і даних створенням резервної копії ключів шифрування на своєму сервері.",
"Secure Backup": "Безпечне резервне копіювання", "Secure Backup": "Безпечне резервне копіювання",
"You may contact me if you have any follow up questions": "Можете зв’язатися зі мною, якщо у вас виникнуть додаткові запитання", "You may contact me if you have any follow up questions": "Можете зв’язатися зі мною, якщо у вас виникнуть додаткові запитання",
@ -1568,8 +1549,6 @@
"What do you want to organise?": "Що б ви хотіли організувати?", "What do you want to organise?": "Що б ви хотіли організувати?",
"Skip for now": "Пропустити зараз", "Skip for now": "Пропустити зараз",
"Failed to create initial space rooms": "Не вдалося створити початкові кімнати простору", "Failed to create initial space rooms": "Не вдалося створити початкові кімнати простору",
"Support": "Підтримка",
"Random": "Випадковий",
"Welcome to <name/>": "Вітаємо у <name/>", "Welcome to <name/>": "Вітаємо у <name/>",
"<inviter/> invites you": "<inviter/> запрошує вас", "<inviter/> invites you": "<inviter/> запрошує вас",
"Private space": "Приватний простір", "Private space": "Приватний простір",
@ -1856,7 +1835,6 @@
"one": "%(count)s відповідь", "one": "%(count)s відповідь",
"other": "%(count)s відповідей" "other": "%(count)s відповідей"
}, },
"Mod": "Модератор",
"Edit message": "Редагувати повідомлення", "Edit message": "Редагувати повідомлення",
"Unrecognised command: %(commandText)s": "Нерозпізнана команда: %(commandText)s", "Unrecognised command: %(commandText)s": "Нерозпізнана команда: %(commandText)s",
"Unknown Command": "Невідома команда", "Unknown Command": "Невідома команда",
@ -1868,7 +1846,6 @@
"Invalid Email Address": "Хибна адреса е-пошти", "Invalid Email Address": "Хибна адреса е-пошти",
"Remove %(email)s?": "Вилучити %(email)s?", "Remove %(email)s?": "Вилучити %(email)s?",
"Verification code": "Код перевірки", "Verification code": "Код перевірки",
"Complete": "Завершити",
"Verify the link in your inbox": "Перевірте посилання у теці «Вхідні»", "Verify the link in your inbox": "Перевірте посилання у теці «Вхідні»",
"Unable to verify email address.": "Не вдалося перевірити адресу е-пошти.", "Unable to verify email address.": "Не вдалося перевірити адресу е-пошти.",
"Access": "Доступ", "Access": "Доступ",
@ -1967,7 +1944,6 @@
"Cryptography": "Криптографія", "Cryptography": "Криптографія",
"Ignored users": "Нехтувані користувачі", "Ignored users": "Нехтувані користувачі",
"You have no ignored users.": "Ви не маєте нехтуваних користувачів.", "You have no ignored users.": "Ви не маєте нехтуваних користувачів.",
"Rename": "Перейменувати",
"The server is offline.": "Сервер вимкнено.", "The server is offline.": "Сервер вимкнено.",
"%(spaceName)s and %(count)s others": { "%(spaceName)s and %(count)s others": {
"one": "%(spaceName)s і %(count)s інших", "one": "%(spaceName)s і %(count)s інших",
@ -2021,7 +1997,6 @@
"Surround selected text when typing special characters": "Обгортати виділений текст при введенні спеціальних символів", "Surround selected text when typing special characters": "Обгортати виділений текст при введенні спеціальних символів",
"Use Command + F to search timeline": "Command + F для пошуку в стрічці", "Use Command + F to search timeline": "Command + F для пошуку в стрічці",
"Jump to the bottom of the timeline when you send a message": "Переходити вниз стрічки під час надсилання повідомлення", "Jump to the bottom of the timeline when you send a message": "Переходити вниз стрічки під час надсилання повідомлення",
"Timeline": "Стрічка",
"Images, GIFs and videos": "Зображення, GIF та відео", "Images, GIFs and videos": "Зображення, GIF та відео",
"Displaying time": "Формат часу", "Displaying time": "Формат часу",
"Code blocks": "Блоки коду", "Code blocks": "Блоки коду",
@ -2030,7 +2005,6 @@
"Use Ctrl + F to search timeline": "Ctrl + F для пошуку в стрічці", "Use Ctrl + F to search timeline": "Ctrl + F для пошуку в стрічці",
"Olm version:": "Версія Olm:", "Olm version:": "Версія Olm:",
"Your access token gives full access to your account. Do not share it with anyone.": "Токен доступу надає повний доступ до вашого облікового запису. Не передавайте його нікому.", "Your access token gives full access to your account. Do not share it with anyone.": "Токен доступу надає повний доступ до вашого облікового запису. Не передавайте його нікому.",
"Access Token": "Токен доступу",
"Messaging": "Спілкування", "Messaging": "Спілкування",
"Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Зберігайте ключ безпеки в надійному місці, скажімо в менеджері паролів чи сейфі, бо ключ оберігає ваші зашифровані дані.", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Зберігайте ключ безпеки в надійному місці, скажімо в менеджері паролів чи сейфі, бо ключ оберігає ваші зашифровані дані.",
"You do not have permission to start polls in this room.": "Ви не маєте дозволу створювати опитування в цій кімнаті.", "You do not have permission to start polls in this room.": "Ви не маєте дозволу створювати опитування в цій кімнаті.",
@ -2283,8 +2257,6 @@
"Use email to optionally be discoverable by existing contacts.": "Можете ввести е-пошту, щоб наявні контакти знаходили вас за нею.", "Use email to optionally be discoverable by existing contacts.": "Можете ввести е-пошту, щоб наявні контакти знаходили вас за нею.",
"Use email or phone to optionally be discoverable by existing contacts.": "Можете ввести е-пошту чи телефон, щоб наявні контакти знаходили вас за ними.", "Use email or phone to optionally be discoverable by existing contacts.": "Можете ввести е-пошту чи телефон, щоб наявні контакти знаходили вас за ними.",
"Add an email to be able to reset your password.": "Додайте е-пошту, щоб могти скинути пароль.", "Add an email to be able to reset your password.": "Додайте е-пошту, щоб могти скинути пароль.",
"Play": "Відтворити",
"Pause": "Призупинити",
"You must join the room to see its files": "Приєднайтесь до кімнати, щоб бачити її файли", "You must join the room to see its files": "Приєднайтесь до кімнати, щоб бачити її файли",
"You must <a>register</a> to use this functionality": "<a>Зареєструйтеся</a>, щоб скористатись цим функціоналом", "You must <a>register</a> to use this functionality": "<a>Зареєструйтеся</a>, щоб скористатись цим функціоналом",
"Attach files from chat or just drag and drop them anywhere in a room.": "Перешліть файли з бесіди чи просто потягніть їх до кімнати.", "Attach files from chat or just drag and drop them anywhere in a room.": "Перешліть файли з бесіди чи просто потягніть їх до кімнати.",
@ -2612,7 +2584,6 @@
"Remember this": "Запам'ятати це", "Remember this": "Запам'ятати це",
"Remember my selection for this widget": "Запам'ятати мій вибір для цього віджета", "Remember my selection for this widget": "Запам'ятати мій вибір для цього віджета",
"Decline All": "Відхилити все", "Decline All": "Відхилити все",
"Approve": "Дозволити",
"This widget would like to:": "Віджет бажає:", "This widget would like to:": "Віджет бажає:",
"Approve widget permissions": "Підтвердьте дозволи віджета", "Approve widget permissions": "Підтвердьте дозволи віджета",
"Looks good!": "Виглядає файно!", "Looks good!": "Виглядає файно!",
@ -2662,7 +2633,6 @@
"Message preview": "Попередній перегляд повідомлення", "Message preview": "Попередній перегляд повідомлення",
"We couldn't create your DM.": "Не вдалося створити особисте повідомлення.", "We couldn't create your DM.": "Не вдалося створити особисте повідомлення.",
"Unable to query secret storage status": "Не вдалося дізнатися стан таємного сховища", "Unable to query secret storage status": "Не вдалося дізнатися стан таємного сховища",
"Restore": "Відновити",
"You can also set up Secure Backup & manage your keys in Settings.": "Ввімкнути захищене резервне копіювання й керувати своїми ключами можна в налаштуваннях.", "You can also set up Secure Backup & manage your keys in Settings.": "Ввімкнути захищене резервне копіювання й керувати своїми ключами можна в налаштуваннях.",
"If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Якщо скасуєте це й загубите пристрій, то втратите зашифровані повідомлення й дані.", "If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Якщо скасуєте це й загубите пристрій, то втратите зашифровані повідомлення й дані.",
"Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Звірка цього користувача позначить його сеанс довіреним вам, а ваш йому.", "Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Звірка цього користувача позначить його сеанс довіреним вам, а ваш йому.",
@ -3257,7 +3227,6 @@
"We're creating a room with %(names)s": "Ми створюємо кімнату з %(names)s", "We're creating a room with %(names)s": "Ми створюємо кімнату з %(names)s",
"Your server doesn't support disabling sending read receipts.": "Ваш сервер не підтримує вимкнення надсилання сповіщень про прочитання.", "Your server doesn't support disabling sending read receipts.": "Ваш сервер не підтримує вимкнення надсилання сповіщень про прочитання.",
"Share your activity and status with others.": "Діліться своєю активністю та станом з іншими.", "Share your activity and status with others.": "Діліться своєю активністю та станом з іншими.",
"Presence": "Присутність",
"Send read receipts": "Надсилати підтвердження прочитання", "Send read receipts": "Надсилати підтвердження прочитання",
"Last activity": "Остання активність", "Last activity": "Остання активність",
"Sessions": "Сеанси", "Sessions": "Сеанси",
@ -3277,7 +3246,6 @@
"Welcome": "Вітаємо", "Welcome": "Вітаємо",
"Show shortcut to welcome checklist above the room list": "Показати ярлик контрольного списку привітання над списком кімнат", "Show shortcut to welcome checklist above the room list": "Показати ярлик контрольного списку привітання над списком кімнат",
"Inactive sessions": "Неактивні сеанси", "Inactive sessions": "Неактивні сеанси",
"View all": "Переглянути всі",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Звірте свої сеанси для покращеного безпечного обміну повідомленнями або вийдіть із тих, які ви не розпізнаєте або не використовуєте.", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "Звірте свої сеанси для покращеного безпечного обміну повідомленнями або вийдіть із тих, які ви не розпізнаєте або не використовуєте.",
"Unverified sessions": "Не звірені сеанси", "Unverified sessions": "Не звірені сеанси",
"Security recommendations": "Поради щодо безпеки", "Security recommendations": "Поради щодо безпеки",
@ -3308,7 +3276,6 @@
"other": "%(user)s і ще %(count)s" "other": "%(user)s і ще %(count)s"
}, },
"%(user1)s and %(user2)s": "%(user1)s і %(user2)s", "%(user1)s and %(user2)s": "%(user1)s і %(user2)s",
"Show": "Показати",
"%(downloadButton)s or %(copyButton)s": "%(downloadButton)s або %(copyButton)s", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s або %(copyButton)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s або %(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s або %(recoveryFile)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s або %(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s або %(appLinks)s",
@ -3697,7 +3664,6 @@
"Show profile picture changes": "Показувати зміни зображення профілю", "Show profile picture changes": "Показувати зміни зображення профілю",
"Ask to join": "Запит на приєднання", "Ask to join": "Запит на приєднання",
"Mentions and Keywords only": "Лише згадки та ключові слова", "Mentions and Keywords only": "Лише згадки та ключові слова",
"Proceed": "Продовжити",
"This setting will be applied by default to all your rooms.": "Цей параметр буде застосовано усталеним до всіх ваших кімнат.", "This setting will be applied by default to all your rooms.": "Цей параметр буде застосовано усталеним до всіх ваших кімнат.",
"Play a sound for": "Відтворювати звук про", "Play a sound for": "Відтворювати звук про",
"Mentions and Keywords": "Згадки та ключові слова", "Mentions and Keywords": "Згадки та ключові слова",
@ -3815,7 +3781,22 @@
"dark": "Темна", "dark": "Темна",
"beta": "Бета", "beta": "Бета",
"attachment": "Прикріплення", "attachment": "Прикріплення",
"appearance": "Вигляд" "appearance": "Вигляд",
"guest": "Гість",
"legal": "Правові положення",
"credits": "Подяки",
"faq": "ЧаПи",
"access_token": "Токен доступу",
"preferences": "Параметри",
"presence": "Присутність",
"timeline": "Стрічка",
"privacy": "Приватність",
"camera": "Камера",
"microphone": "Мікрофон",
"emoji": "Емодзі",
"random": "Випадковий",
"support": "Підтримка",
"space": "Простір"
}, },
"action": { "action": {
"continue": "Продовжити", "continue": "Продовжити",
@ -3887,7 +3868,24 @@
"back": "Назад", "back": "Назад",
"apply": "Застосувати", "apply": "Застосувати",
"add": "Додати", "add": "Додати",
"accept": "Погодитись" "accept": "Погодитись",
"disconnect": "Від'єднатися",
"change": "Змінити",
"subscribe": "Підписатись",
"unsubscribe": "Відписатись",
"approve": "Дозволити",
"proceed": "Продовжити",
"complete": "Завершити",
"revoke": "Відкликати",
"rename": "Перейменувати",
"view_all": "Переглянути всі",
"show_all": "Показати все",
"show": "Показати",
"review": "Переглянути",
"restore": "Відновити",
"play": "Відтворити",
"pause": "Призупинити",
"register": "Зареєструватися"
}, },
"a11y": { "a11y": {
"user_menu": "Користувацьке меню" "user_menu": "Користувацьке меню"
@ -3974,7 +3972,9 @@
"default": "Типовий", "default": "Типовий",
"restricted": "Обмежено", "restricted": "Обмежено",
"moderator": "Модератор", "moderator": "Модератор",
"admin": "Адміністратор" "admin": "Адміністратор",
"custom": "Власний (%(level)s)",
"mod": "Модератор"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Якщо ви надіслали звіт про ваду на GitHub, журнали зневадження можуть допомогти нам визначити проблему. ", "introduction": "Якщо ви надіслали звіт про ваду на GitHub, журнали зневадження можуть допомогти нам визначити проблему. ",

View file

@ -44,7 +44,6 @@
"%(brand)s was not given permission to send notifications - please try again": "%(brand)s vẫn chưa được cấp quyền để gửi thông báo - vui lòng thử lại", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s vẫn chưa được cấp quyền để gửi thông báo - vui lòng thử lại",
"Unable to enable Notifications": "Không thể bật thông báo", "Unable to enable Notifications": "Không thể bật thông báo",
"This email address was not found": "Địa chỉ thư điện tử này không tồn tại trong hệ thống", "This email address was not found": "Địa chỉ thư điện tử này không tồn tại trong hệ thống",
"Register": "Đăng ký",
"Default": "Mặc định", "Default": "Mặc định",
"Restricted": "Bị hạn chế", "Restricted": "Bị hạn chế",
"Moderator": "Điều phối viên", "Moderator": "Điều phối viên",
@ -211,8 +210,6 @@
"Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Tin nhắn an toàn với người dùng này được mã hóa đầu cuối và không thể được các bên thứ ba đọc.", "Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Tin nhắn an toàn với người dùng này được mã hóa đầu cuối và không thể được các bên thứ ba đọc.",
"You've successfully verified this user.": "Bạn đã xác thực thành công người dùng này.", "You've successfully verified this user.": "Bạn đã xác thực thành công người dùng này.",
"Verified!": "Đã xác thực!", "Verified!": "Đã xác thực!",
"Play": "Chạy",
"Pause": "Tạm dừng",
"Are you sure?": "Bạn có chắc không?", "Are you sure?": "Bạn có chắc không?",
"Confirm Removal": "Xác nhận Loại bỏ", "Confirm Removal": "Xác nhận Loại bỏ",
"Removing…": "Đang xóa…", "Removing…": "Đang xóa…",
@ -292,7 +289,6 @@
"Unable to query secret storage status": "Không thể truy vấn trạng thái lưu trữ bí mật", "Unable to query secret storage status": "Không thể truy vấn trạng thái lưu trữ bí mật",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Nâng cấp phiên này để cho phép nó xác thực các phiên khác, cấp cho họ quyền truy cập vào các thư được mã hóa và đánh dấu chúng là đáng tin cậy đối với những người dùng khác.", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "Nâng cấp phiên này để cho phép nó xác thực các phiên khác, cấp cho họ quyền truy cập vào các thư được mã hóa và đánh dấu chúng là đáng tin cậy đối với những người dùng khác.",
"You'll need to authenticate with the server to confirm the upgrade.": "Bạn sẽ cần xác thực với máy chủ để xác nhận nâng cấp.", "You'll need to authenticate with the server to confirm the upgrade.": "Bạn sẽ cần xác thực với máy chủ để xác nhận nâng cấp.",
"Restore": "Khôi phục",
"Restore your key backup to upgrade your encryption": "Khôi phục bản sao lưu khóa của bạn để nâng cấp mã hóa của bạn", "Restore your key backup to upgrade your encryption": "Khôi phục bản sao lưu khóa của bạn để nâng cấp mã hóa của bạn",
"Enter your account password to confirm the upgrade:": "Nhập mật khẩu tài khoản của bạn để xác nhận nâng cấp:", "Enter your account password to confirm the upgrade:": "Nhập mật khẩu tài khoản của bạn để xác nhận nâng cấp:",
"Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Bảo vệ chống mất quyền truy cập vào các tin nhắn và dữ liệu được mã hóa bằng cách sao lưu các khóa mã hóa trên máy chủ của bạn.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Bảo vệ chống mất quyền truy cập vào các tin nhắn và dữ liệu được mã hóa bằng cách sao lưu các khóa mã hóa trên máy chủ của bạn.",
@ -318,7 +314,6 @@
"Room Notification": "Thông báo phòng", "Room Notification": "Thông báo phòng",
"Notify the whole room": "Thông báo cho cả phòng", "Notify the whole room": "Thông báo cho cả phòng",
"Emoji Autocomplete": "Tự động hoàn thành biểu tượng cảm xúc", "Emoji Autocomplete": "Tự động hoàn thành biểu tượng cảm xúc",
"Emoji": "Biểu tượng cảm xúc",
"Command Autocomplete": "Tự động hoàn thành lệnh", "Command Autocomplete": "Tự động hoàn thành lệnh",
"Commands": "Lệnh", "Commands": "Lệnh",
"Clear personal data": "Xóa dữ liệu cá nhân", "Clear personal data": "Xóa dữ liệu cá nhân",
@ -700,13 +695,10 @@
"What do you want to organise?": "Bạn muốn tổ chức những gì?", "What do you want to organise?": "Bạn muốn tổ chức những gì?",
"Skip for now": "Bỏ qua ngay bây giờ", "Skip for now": "Bỏ qua ngay bây giờ",
"Failed to create initial space rooms": "Không tạo được các phòng space ban đầu", "Failed to create initial space rooms": "Không tạo được các phòng space ban đầu",
"Support": "Hỗ trợ",
"Random": "Ngẫu nhiên",
"Welcome to <name/>": "Chào mừng đến với <name />", "Welcome to <name/>": "Chào mừng đến với <name />",
"<inviter/> invites you": "<inviter /> mời bạn", "<inviter/> invites you": "<inviter /> mời bạn",
"Private space": "Space riêng tư", "Private space": "Space riêng tư",
"Search names and descriptions": "Tìm kiếm tên và mô tả", "Search names and descriptions": "Tìm kiếm tên và mô tả",
"Space": "space",
"You may want to try a different search or check for typos.": "Bạn có thể muốn thử một tìm kiếm khác hoặc kiểm tra lỗi chính tả.", "You may want to try a different search or check for typos.": "Bạn có thể muốn thử một tìm kiếm khác hoặc kiểm tra lỗi chính tả.",
"No results found": "không tim được kêt quả", "No results found": "không tim được kêt quả",
"Your server does not support showing space hierarchies.": "Máy chủ của bạn không hỗ trợ hiển thị phân cấp space.", "Your server does not support showing space hierarchies.": "Máy chủ của bạn không hỗ trợ hiển thị phân cấp space.",
@ -908,7 +900,6 @@
"Allow this widget to verify your identity": "Cho phép tiện ích widget này xác thực danh tính của bạn", "Allow this widget to verify your identity": "Cho phép tiện ích widget này xác thực danh tính của bạn",
"Remember my selection for this widget": "Hãy nhớ lựa chọn của tôi cho tiện ích này", "Remember my selection for this widget": "Hãy nhớ lựa chọn của tôi cho tiện ích này",
"Decline All": "Từ chối tất cả", "Decline All": "Từ chối tất cả",
"Approve": "Chấp thuận",
"This widget would like to:": "Tiện ích widget này muốn:", "This widget would like to:": "Tiện ích widget này muốn:",
"Approve widget permissions": "Phê duyệt quyền của tiện ích widget", "Approve widget permissions": "Phê duyệt quyền của tiện ích widget",
"Verification Request": "Yêu cầu xác thực", "Verification Request": "Yêu cầu xác thực",
@ -1083,7 +1074,6 @@
"Message deleted on %(date)s": "Tin nhắn đã bị xóa vào %(date)s", "Message deleted on %(date)s": "Tin nhắn đã bị xóa vào %(date)s",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>đã phản hồi với %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>đã phản hồi với %(shortName)s</reactedWith>",
"%(reactors)s reacted with %(content)s": "%(reactors)s đã phản hồi với %(content)s", "%(reactors)s reacted with %(content)s": "%(reactors)s đã phản hồi với %(content)s",
"Show all": "Hiển thị tất cả",
"Add reaction": "Thêm phản ứng", "Add reaction": "Thêm phản ứng",
"Error processing voice message": "Lỗi khi xử lý tin nhắn thoại", "Error processing voice message": "Lỗi khi xử lý tin nhắn thoại",
"Error decrypting video": "Lỗi khi giải mã video", "Error decrypting video": "Lỗi khi giải mã video",
@ -1404,9 +1394,7 @@
"This room is not accessible by remote Matrix servers": "Phòng này không thể truy cập từ xa bằng máy chủ Matrix", "This room is not accessible by remote Matrix servers": "Phòng này không thể truy cập từ xa bằng máy chủ Matrix",
"Voice & Video": "Âm thanh & Hình ảnh", "Voice & Video": "Âm thanh & Hình ảnh",
"No Webcams detected": "Không có Webcam nào được phát hiện", "No Webcams detected": "Không có Webcam nào được phát hiện",
"Camera": "Máy ảnh",
"No Microphones detected": "Không phát hiện thấy micrô", "No Microphones detected": "Không phát hiện thấy micrô",
"Microphone": "Micrô",
"No Audio Outputs detected": "Không phát hiện thấy đầu ra âm thanh", "No Audio Outputs detected": "Không phát hiện thấy đầu ra âm thanh",
"Audio Output": "Đầu ra âm thanh", "Audio Output": "Đầu ra âm thanh",
"Request media permissions": "Yêu cầu quyền phương tiện", "Request media permissions": "Yêu cầu quyền phương tiện",
@ -1414,7 +1402,6 @@
"You may need to manually permit %(brand)s to access your microphone/webcam": "Bạn có thể cần phải cho phép %(brand)s truy cập vào micrô/webcam của mình theo cách thủ công", "You may need to manually permit %(brand)s to access your microphone/webcam": "Bạn có thể cần phải cho phép %(brand)s truy cập vào micrô/webcam của mình theo cách thủ công",
"No media permissions": "Không có quyền sử dụng công cụ truyền thông", "No media permissions": "Không có quyền sử dụng công cụ truyền thông",
"Default Device": "Thiết bị mặc định", "Default Device": "Thiết bị mặc định",
"Privacy": "Quyền riêng tư",
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Người quản trị máy chủ của bạn đã vô hiệu hóa mã hóa đầu cuối theo mặc định trong phòng riêng và Tin nhắn trực tiếp.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Người quản trị máy chủ của bạn đã vô hiệu hóa mã hóa đầu cuối theo mặc định trong phòng riêng và Tin nhắn trực tiếp.",
"Cross-signing": "Xác thực chéo", "Cross-signing": "Xác thực chéo",
"Message search": "Tìm kiếm tin nhắn", "Message search": "Tìm kiếm tin nhắn",
@ -1427,18 +1414,15 @@
"Read Marker off-screen lifetime (ms)": "Đọc thời gian tồn tại ngoài màn hình của Marker (mili giây)", "Read Marker off-screen lifetime (ms)": "Đọc thời gian tồn tại ngoài màn hình của Marker (mili giây)",
"Read Marker lifetime (ms)": "Đọc thời gian Marker (mili giây)", "Read Marker lifetime (ms)": "Đọc thời gian Marker (mili giây)",
"Autocomplete delay (ms)": "Độ trễ tự động hoàn thành (mili giây)", "Autocomplete delay (ms)": "Độ trễ tự động hoàn thành (mili giây)",
"Timeline": "Dòng thời gian",
"Images, GIFs and videos": "Hình ảnh, GIF và video", "Images, GIFs and videos": "Hình ảnh, GIF và video",
"Code blocks": "Khối mã", "Code blocks": "Khối mã",
"Composer": "Soạn thảo", "Composer": "Soạn thảo",
"Displaying time": "Thời gian hiển thị", "Displaying time": "Thời gian hiển thị",
"Keyboard shortcuts": "Các phím tắt bàn phím", "Keyboard shortcuts": "Các phím tắt bàn phím",
"Room list": "Danh sách phòng", "Room list": "Danh sách phòng",
"Preferences": "Tùy chọn",
"Always show the window menu bar": "Luôn hiển thị thanh menu cửa sổ", "Always show the window menu bar": "Luôn hiển thị thanh menu cửa sổ",
"Warn before quitting": "Cảnh báo trước khi bỏ thuốc lá", "Warn before quitting": "Cảnh báo trước khi bỏ thuốc lá",
"Start automatically after system login": "Tự động khởi động sau khi đăng nhập hệ thống", "Start automatically after system login": "Tự động khởi động sau khi đăng nhập hệ thống",
"Subscribe": "Đặt mua",
"Room ID or address of ban list": "ID phòng hoặc địa chỉ của danh sách cấm", "Room ID or address of ban list": "ID phòng hoặc địa chỉ của danh sách cấm",
"If this isn't what you want, please use a different tool to ignore users.": "Nếu đây không phải là điều bạn muốn, vui lòng sử dụng một công cụ khác để bỏ qua người dùng.", "If this isn't what you want, please use a different tool to ignore users.": "Nếu đây không phải là điều bạn muốn, vui lòng sử dụng một công cụ khác để bỏ qua người dùng.",
"Subscribing to a ban list will cause you to join it!": "Đăng ký vào danh sách cấm sẽ khiến bạn tham gia vào danh sách đó!", "Subscribing to a ban list will cause you to join it!": "Đăng ký vào danh sách cấm sẽ khiến bạn tham gia vào danh sách đó!",
@ -1452,7 +1436,6 @@
"Ignored users": "Người dùng bị bỏ qua", "Ignored users": "Người dùng bị bỏ qua",
"You are currently subscribed to:": "Bạn hiện đã đăng ký:", "You are currently subscribed to:": "Bạn hiện đã đăng ký:",
"View rules": "Xem các quy tắc", "View rules": "Xem các quy tắc",
"Unsubscribe": "Hủy đăng ký",
"You are not subscribed to any lists": "Bạn chưa đăng ký bất kỳ danh sách nào", "You are not subscribed to any lists": "Bạn chưa đăng ký bất kỳ danh sách nào",
"You are currently ignoring:": "Bạn hiện đang bỏ qua:", "You are currently ignoring:": "Bạn hiện đang bỏ qua:",
"You have not ignored anyone.": "Bạn đã không bỏ qua bất cứ ai.", "You have not ignored anyone.": "Bạn đã không bỏ qua bất cứ ai.",
@ -1470,16 +1453,12 @@
"Ignored/Blocked": "Bị bỏ qua / bị chặn", "Ignored/Blocked": "Bị bỏ qua / bị chặn",
"Clear cache and reload": "Xóa bộ nhớ cache và tải lại", "Clear cache and reload": "Xóa bộ nhớ cache và tải lại",
"Your access token gives full access to your account. Do not share it with anyone.": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.", "Your access token gives full access to your account. Do not share it with anyone.": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.",
"Access Token": "Token truy cập",
"Versions": "Phiên bản", "Versions": "Phiên bản",
"FAQ": "Câu hỏi thường gặp",
"Help & About": "Trợ giúp & Giới thiệu", "Help & About": "Trợ giúp & Giới thiệu",
"To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Để báo cáo sự cố bảo mật liên quan đến Matrix, vui lòng đọc Chính sách tiết lộ bảo mật của Matrix.org <a>Security Disclosure Policy</a>.", "To report a Matrix-related security issue, please read the Matrix.org <a>Security Disclosure Policy</a>.": "Để báo cáo sự cố bảo mật liên quan đến Matrix, vui lòng đọc Chính sách tiết lộ bảo mật của Matrix.org <a>Security Disclosure Policy</a>.",
"Chat with %(brand)s Bot": "Trò chuyện với Bot %(brand)s", "Chat with %(brand)s Bot": "Trò chuyện với Bot %(brand)s",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây <a>here</a> hoặc bắt đầu trò chuyện với bot của chúng tôi bằng nút bên dưới.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây <a>here</a> hoặc bắt đầu trò chuyện với bot của chúng tôi bằng nút bên dưới.",
"For help with using %(brand)s, click <a>here</a>.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây <a>here</a>.", "For help with using %(brand)s, click <a>here</a>.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây <a>here</a>.",
"Credits": "Ghi công",
"Legal": "Pháp lý",
"Olm version:": "Phiên bản Olm:", "Olm version:": "Phiên bản Olm:",
"%(brand)s version:": "Phiên bản %(brand)s:", "%(brand)s version:": "Phiên bản %(brand)s:",
"Discovery": "Khám phá", "Discovery": "Khám phá",
@ -1508,7 +1487,6 @@
"Manage integrations": "Quản lý các tích hợp", "Manage integrations": "Quản lý các tích hợp",
"Use an integration manager to manage bots, widgets, and sticker packs.": "Sử dụng trình quản lý tích hợp để quản lý bot, tiện ích và gói sticker cảm xúc.", "Use an integration manager to manage bots, widgets, and sticker packs.": "Sử dụng trình quản lý tích hợp để quản lý bot, tiện ích và gói sticker cảm xúc.",
"Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "Sử dụng trình quản lý tích hợp <b>(%(serverName)s)</b> để quản lý bot, tiện ích và gói sticker cảm xúc.", "Use an integration manager <b>(%(serverName)s)</b> to manage bots, widgets, and sticker packs.": "Sử dụng trình quản lý tích hợp <b>(%(serverName)s)</b> để quản lý bot, tiện ích và gói sticker cảm xúc.",
"Change": "Thay đổi",
"Enter a new identity server": "Nhập một máy chủ nhận dạng mới", "Enter a new identity server": "Nhập một máy chủ nhận dạng mới",
"Do not use an identity server": "Không sử dụng máy chủ nhận dạng", "Do not use an identity server": "Không sử dụng máy chủ nhận dạng",
"Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Sử dụng máy chủ định danh là tùy chọn. Nếu bạn chọn không sử dụng máy chủ định danh, bạn sẽ không thể bị phát hiện bởi những người dùng khác và bạn sẽ không thể mời người khác qua thư điện tử hoặc số điện thoại.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Sử dụng máy chủ định danh là tùy chọn. Nếu bạn chọn không sử dụng máy chủ định danh, bạn sẽ không thể bị phát hiện bởi những người dùng khác và bạn sẽ không thể mời người khác qua thư điện tử hoặc số điện thoại.",
@ -1526,7 +1504,6 @@
"check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "kiểm tra các plugin trình duyệt của bạn để tìm bất kỳ thứ gì có thể chặn máy chủ nhận dạng (chẳng hạn như Privacy Badger)", "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "kiểm tra các plugin trình duyệt của bạn để tìm bất kỳ thứ gì có thể chặn máy chủ nhận dạng (chẳng hạn như Privacy Badger)",
"You should:": "Bạn nên:", "You should:": "Bạn nên:",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Bạn nên xóa dữ liệu cá nhân của mình <b>remove your personal data</b> khỏi máy chủ nhận dạng <idserver /> trước khi ngắt kết nối. Rất tiếc, máy chủ nhận dạng <idserver /> hiện đang ngoại tuyến hoặc không thể kết nối được.", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "Bạn nên xóa dữ liệu cá nhân của mình <b>remove your personal data</b> khỏi máy chủ nhận dạng <idserver /> trước khi ngắt kết nối. Rất tiếc, máy chủ nhận dạng <idserver /> hiện đang ngoại tuyến hoặc không thể kết nối được.",
"Disconnect": "Ngắt kết nối",
"Disconnect from the identity server <idserver />?": "Ngắt kết nối với máy chủ định danh <idserver />?", "Disconnect from the identity server <idserver />?": "Ngắt kết nối với máy chủ định danh <idserver />?",
"They'll still be able to access whatever you're not an admin of.": "Họ sẽ vẫn có thể truy cập vào bất cứ gì mà bạn không phải là quản trị viên.", "They'll still be able to access whatever you're not an admin of.": "Họ sẽ vẫn có thể truy cập vào bất cứ gì mà bạn không phải là quản trị viên.",
"Disinvite from %(roomName)s": "Hủy mời từ %(roomName)s", "Disinvite from %(roomName)s": "Hủy mời từ %(roomName)s",
@ -1794,7 +1771,6 @@
"one": "%(count)s trả lời", "one": "%(count)s trả lời",
"other": "%(count)s trả lời" "other": "%(count)s trả lời"
}, },
"Mod": "Người quản trị",
"Edit message": "Chỉnh sửa tin nhắn", "Edit message": "Chỉnh sửa tin nhắn",
"Send as message": "Gửi dưới dạng tin nhắn", "Send as message": "Gửi dưới dạng tin nhắn",
"Hint: Begin your message with <code>//</code> to start it with a slash.": "Gợi ý: Bắt đầu thư của bạn bằng <code>//</code> để bắt đầu thư bằng dấu gạch chéo.", "Hint: Begin your message with <code>//</code> to start it with a slash.": "Gợi ý: Bắt đầu thư của bạn bằng <code>//</code> để bắt đầu thư bằng dấu gạch chéo.",
@ -1827,8 +1803,6 @@
"Unable to share phone number": "Không thể chia sẻ số điện thoại", "Unable to share phone number": "Không thể chia sẻ số điện thoại",
"Unable to revoke sharing for phone number": "Không thể thu hồi chia sẻ cho số điện thoại", "Unable to revoke sharing for phone number": "Không thể thu hồi chia sẻ cho số điện thoại",
"Discovery options will appear once you have added an email above.": "Tùy chọn khám phá sẽ xuất hiện khi nào bạn đã thêm địa chỉ thư điện tử.", "Discovery options will appear once you have added an email above.": "Tùy chọn khám phá sẽ xuất hiện khi nào bạn đã thêm địa chỉ thư điện tử.",
"Revoke": "Rút lại",
"Complete": "Hoàn thành",
"Verify the link in your inbox": "Xác minh liên kết trong hộp thư đến của bạn", "Verify the link in your inbox": "Xác minh liên kết trong hộp thư đến của bạn",
"Unable to verify email address.": "Không thể xác minh địa chỉ thư điện tử.", "Unable to verify email address.": "Không thể xác minh địa chỉ thư điện tử.",
"Click the link in the email you received to verify and then click continue again.": "Nhấp vào liên kết trong thư điện tử bạn nhận được để xác minh và sau đó nhấp lại tiếp tục.", "Click the link in the email you received to verify and then click continue again.": "Nhấp vào liên kết trong thư điện tử bạn nhận được để xác minh và sau đó nhấp lại tiếp tục.",
@ -1928,7 +1902,6 @@
"Notifications": "Thông báo", "Notifications": "Thông báo",
"Don't miss a reply": "Đừng bỏ lỡ một câu trả lời", "Don't miss a reply": "Đừng bỏ lỡ một câu trả lời",
"Later": "Để sau", "Later": "Để sau",
"Review": "Xem xét",
"Review to ensure your account is safe": "Xem lại để đảm bảo tài khoản của bạn an toàn", "Review to ensure your account is safe": "Xem lại để đảm bảo tài khoản của bạn an toàn",
"File Attached": "Tệp được đính kèm", "File Attached": "Tệp được đính kèm",
"Error fetching file": "Lỗi lấy tệp", "Error fetching file": "Lỗi lấy tệp",
@ -2242,7 +2215,6 @@
"Cancel entering passphrase?": "Hủy nhập cụm mật khẩu?", "Cancel entering passphrase?": "Hủy nhập cụm mật khẩu?",
"Some invites couldn't be sent": "Không thể gửi một số lời mời", "Some invites couldn't be sent": "Không thể gửi một số lời mời",
"We sent the others, but the below people couldn't be invited to <RoomName/>": "Chúng tôi đã mời những người khác, nhưng những người dưới đây không thể được mời tham gia <RoomName/>", "We sent the others, but the below people couldn't be invited to <RoomName/>": "Chúng tôi đã mời những người khác, nhưng những người dưới đây không thể được mời tham gia <RoomName/>",
"Custom (%(level)s)": "Tùy chỉnh (%(level)s)",
"Use your account or create a new one to continue.": "Sử dụng tài khoản của bạn hoặc tạo một tài khoản mới để tiếp tục.", "Use your account or create a new one to continue.": "Sử dụng tài khoản của bạn hoặc tạo một tài khoản mới để tiếp tục.",
"Sign In or Create Account": "Đăng nhập hoặc Tạo tài khoản", "Sign In or Create Account": "Đăng nhập hoặc Tạo tài khoản",
"Zimbabwe": "Zimbabwe", "Zimbabwe": "Zimbabwe",
@ -2426,7 +2398,6 @@
"* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s", "* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s",
"%(senderName)s is calling": "%(senderName)s đang gọi", "%(senderName)s is calling": "%(senderName)s đang gọi",
"Waiting for answer": "Chờ câu trả lời", "Waiting for answer": "Chờ câu trả lời",
"Guest": "Khách",
"New version of %(brand)s is available": "Đã có phiên bản mới của %(brand)s", "New version of %(brand)s is available": "Đã có phiên bản mới của %(brand)s",
"Update %(brand)s": "Cập nhật %(brand)s", "Update %(brand)s": "Cập nhật %(brand)s",
"Guinea": "Guinea", "Guinea": "Guinea",
@ -2678,7 +2649,6 @@
"This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Phòng này đang trong một số space mà bạn không phải là quản trị viên. Trong các space đó, phòng cũ vẫn sẽ được hiển thị, nhưng mọi người sẽ được thông báo để tham gia phòng mới.", "This room is in some spaces you're not an admin of. In those spaces, the old room will still be shown, but people will be prompted to join the new one.": "Phòng này đang trong một số space mà bạn không phải là quản trị viên. Trong các space đó, phòng cũ vẫn sẽ được hiển thị, nhưng mọi người sẽ được thông báo để tham gia phòng mới.",
"Large": "Lớn", "Large": "Lớn",
"Image size in the timeline": "Kích thước hình ảnh trong timeline", "Image size in the timeline": "Kích thước hình ảnh trong timeline",
"Rename": "Đặt lại tên",
"Select all": "Chọn tất cả", "Select all": "Chọn tất cả",
"Deselect all": "Bỏ chọn tất cả", "Deselect all": "Bỏ chọn tất cả",
"Sign out devices": { "Sign out devices": {
@ -2953,7 +2923,6 @@
"No identity access token found": "Không tìm thấy mã thông báo danh tính", "No identity access token found": "Không tìm thấy mã thông báo danh tính",
"Unverified sessions are sessions that have logged in with your credentials but have not been cross-verified.": "Các phiên chưa được xác thực là các phiên đăng nhập bằng thông tin đăng nhập nhưng chưa được xác thực chéo.", "Unverified sessions are sessions that have logged in with your credentials but have not been cross-verified.": "Các phiên chưa được xác thực là các phiên đăng nhập bằng thông tin đăng nhập nhưng chưa được xác thực chéo.",
"Secure Backup successful": "Sao lưu bảo mật thành công", "Secure Backup successful": "Sao lưu bảo mật thành công",
"Presence": "Hiện diện",
"Send read receipts": "Gửi thông báo đã đọc", "Send read receipts": "Gửi thông báo đã đọc",
"Start messages with <code>/plain</code> to send without markdown.": "Bắt đầu tin nhắn với <code>/plain</code> để gửi mà không dùng Markdown.", "Start messages with <code>/plain</code> to send without markdown.": "Bắt đầu tin nhắn với <code>/plain</code> để gửi mà không dùng Markdown.",
"%(senderName)s ended a <a>voice broadcast</a>": "%(senderName)s đã kết thúc một <a>cuộc phát thanh</a>", "%(senderName)s ended a <a>voice broadcast</a>": "%(senderName)s đã kết thúc một <a>cuộc phát thanh</a>",
@ -3235,10 +3204,8 @@
"This message could not be decrypted": "Không giải mã được tin nhắn", "This message could not be decrypted": "Không giải mã được tin nhắn",
"Inactive for %(inactiveAgeDays)s days or longer": "Không hoạt động trong %(inactiveAgeDays)s ngày hoặc lâu hơn", "Inactive for %(inactiveAgeDays)s days or longer": "Không hoạt động trong %(inactiveAgeDays)s ngày hoặc lâu hơn",
"Filter devices": "Bộ lọc", "Filter devices": "Bộ lọc",
"View all": "Xem tất cả",
"URL": "Đường dẫn URL", "URL": "Đường dẫn URL",
"Show QR code": "Hiện mã QR", "Show QR code": "Hiện mã QR",
"Show": "Hiện",
"Sign in with QR code": "Đăng nhập bằng mã QR", "Sign in with QR code": "Đăng nhập bằng mã QR",
"Room directory": "Thư mục phòng", "Room directory": "Thư mục phòng",
"Receive push notifications on this session.": "Nhận thông báo đẩy trong phiên này.", "Receive push notifications on this session.": "Nhận thông báo đẩy trong phiên này.",
@ -3463,7 +3430,6 @@
"Play a sound for": "Phát âm thanh cho", "Play a sound for": "Phát âm thanh cho",
"Close call": "Đóng cuộc gọi", "Close call": "Đóng cuộc gọi",
"Email Notifications": "Thông báo qua thư điện tử", "Email Notifications": "Thông báo qua thư điện tử",
"Proceed": "Tiếp tục",
"Reset to default settings": "Đặt lại về cài đặt mặc định", "Reset to default settings": "Đặt lại về cài đặt mặc định",
"Failed to cancel": "Không hủy được", "Failed to cancel": "Không hủy được",
"%(senderDisplayName)s changed the join rule to ask to join.": "%(senderDisplayName)s thay đổi quy tắc tham gia thành yêu cầu để tham gia.", "%(senderDisplayName)s changed the join rule to ask to join.": "%(senderDisplayName)s thay đổi quy tắc tham gia thành yêu cầu để tham gia.",
@ -3524,7 +3490,22 @@
"dark": "Tối", "dark": "Tối",
"beta": "Beta", "beta": "Beta",
"attachment": "Tập tin đính kèm", "attachment": "Tập tin đính kèm",
"appearance": "Giao diện" "appearance": "Giao diện",
"guest": "Khách",
"legal": "Pháp lý",
"credits": "Ghi công",
"faq": "Câu hỏi thường gặp",
"access_token": "Token truy cập",
"preferences": "Tùy chọn",
"presence": "Hiện diện",
"timeline": "Dòng thời gian",
"privacy": "Quyền riêng tư",
"camera": "Máy ảnh",
"microphone": "Micrô",
"emoji": "Biểu tượng cảm xúc",
"random": "Ngẫu nhiên",
"support": "Hỗ trợ",
"space": "space"
}, },
"action": { "action": {
"continue": "Tiếp tục", "continue": "Tiếp tục",
@ -3596,7 +3577,24 @@
"back": "Quay lại", "back": "Quay lại",
"apply": "Áp dụng", "apply": "Áp dụng",
"add": "Thêm", "add": "Thêm",
"accept": "Đồng ý" "accept": "Đồng ý",
"disconnect": "Ngắt kết nối",
"change": "Thay đổi",
"subscribe": "Đặt mua",
"unsubscribe": "Hủy đăng ký",
"approve": "Chấp thuận",
"proceed": "Tiếp tục",
"complete": "Hoàn thành",
"revoke": "Rút lại",
"rename": "Đặt lại tên",
"view_all": "Xem tất cả",
"show_all": "Hiển thị tất cả",
"show": "Hiện",
"review": "Xem xét",
"restore": "Khôi phục",
"play": "Chạy",
"pause": "Tạm dừng",
"register": "Đăng ký"
}, },
"a11y": { "a11y": {
"user_menu": "Menu người dùng" "user_menu": "Menu người dùng"
@ -3677,7 +3675,9 @@
"default": "Mặc định", "default": "Mặc định",
"restricted": "Bị hạn chế", "restricted": "Bị hạn chế",
"moderator": "Điều phối viên", "moderator": "Điều phối viên",
"admin": "Quản trị viên" "admin": "Quản trị viên",
"custom": "Tùy chỉnh (%(level)s)",
"mod": "Người quản trị"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "Nếu bạn đã báo cáo lỗi qua GitHub, nhật ký gỡ lỗi có thể giúp chúng tôi theo dõi vấn đề. ", "introduction": "Nếu bạn đã báo cáo lỗi qua GitHub, nhật ký gỡ lỗi có thể giúp chúng tôi theo dõi vấn đề. ",

View file

@ -44,7 +44,6 @@
"%(brand)s was not given permission to send notifications - please try again": "%(brand)s èt geen toestemmienge gekreegn ghed vo joun meldiengn te verstuurn - herprobeer t e ki", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s èt geen toestemmienge gekreegn ghed vo joun meldiengn te verstuurn - herprobeer t e ki",
"Unable to enable Notifications": "Kostege meldiengn nie inschoakeln", "Unable to enable Notifications": "Kostege meldiengn nie inschoakeln",
"This email address was not found": "Dat e-mailadresse hier es nie gevoundn", "This email address was not found": "Dat e-mailadresse hier es nie gevoundn",
"Register": "Registreern",
"Default": "Standoard", "Default": "Standoard",
"Restricted": "Beperkten toegank", "Restricted": "Beperkten toegank",
"Moderator": "Moderator", "Moderator": "Moderator",
@ -321,21 +320,16 @@
"Account management": "Accountbeheer", "Account management": "Accountbeheer",
"Deactivate Account": "Account deactiveern", "Deactivate Account": "Account deactiveern",
"General": "Algemeen", "General": "Algemeen",
"Legal": "Wettelik",
"Credits": "Me dank an",
"For help with using %(brand)s, click <a>here</a>.": "Klikt <a>hier</a> voor hulp by t gebruukn van %(brand)s.", "For help with using %(brand)s, click <a>here</a>.": "Klikt <a>hier</a> voor hulp by t gebruukn van %(brand)s.",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Klikt <a>hier</a> voor hulp by t gebruukn van %(brand)s, of begint e gesprek met uzze robot me de knop hieroundern.", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Klikt <a>hier</a> voor hulp by t gebruukn van %(brand)s, of begint e gesprek met uzze robot me de knop hieroundern.",
"Chat with %(brand)s Bot": "Chattn me %(brand)s-robot", "Chat with %(brand)s Bot": "Chattn me %(brand)s-robot",
"Check for update": "Controleern ip updates", "Check for update": "Controleern ip updates",
"Help & About": "Hulp & Info", "Help & About": "Hulp & Info",
"FAQ": "VGV",
"Versions": "Versies", "Versions": "Versies",
"%(brand)s version:": "%(brand)s-versie:", "%(brand)s version:": "%(brand)s-versie:",
"Notifications": "Meldiengn", "Notifications": "Meldiengn",
"Start automatically after system login": "Automatisch startn achter systeemanmeldienge", "Start automatically after system login": "Automatisch startn achter systeemanmeldienge",
"Preferences": "Instelliengn",
"Composer": "Ipsteller", "Composer": "Ipsteller",
"Timeline": "Tydslyn",
"Room list": "Gesprekslyste", "Room list": "Gesprekslyste",
"Autocomplete delay (ms)": "Vertroagienge vo t automatisch anvulln (ms)", "Autocomplete delay (ms)": "Vertroagienge vo t automatisch anvulln (ms)",
"Unignore": "Nie mi negeern", "Unignore": "Nie mi negeern",
@ -356,8 +350,6 @@
"No Webcams detected": "Geen webcams gevoundn", "No Webcams detected": "Geen webcams gevoundn",
"Default Device": "Standoardtoestel", "Default Device": "Standoardtoestel",
"Audio Output": "Geluudsuutgang", "Audio Output": "Geluudsuutgang",
"Microphone": "Microfoon",
"Camera": "Camera",
"Voice & Video": "Sproak & video", "Voice & Video": "Sproak & video",
"This room is not accessible by remote Matrix servers": "Dit gesprek es nie toegankelik voor externe Matrix-servers", "This room is not accessible by remote Matrix servers": "Dit gesprek es nie toegankelik voor externe Matrix-servers",
"Upgrade this room to the recommended room version": "Actualiseert dit gesprek noar danbevooln gespreksversie", "Upgrade this room to the recommended room version": "Actualiseert dit gesprek noar danbevooln gespreksversie",
@ -741,7 +733,6 @@
"Start authentication": "Authenticoasje beginn", "Start authentication": "Authenticoasje beginn",
"Email": "E-mailadresse", "Email": "E-mailadresse",
"Phone": "Telefongnumero", "Phone": "Telefongnumero",
"Change": "Wyzign",
"Sign in with": "Anmeldn me", "Sign in with": "Anmeldn me",
"Use an email address to recover your account": "Gebruukt een e-mailadresse vo jen account therstelln", "Use an email address to recover your account": "Gebruukt een e-mailadresse vo jen account therstelln",
"Enter email address (required on this homeserver)": "Gift een e-mailadresse in (vereist ip deze thuusserver)", "Enter email address (required on this homeserver)": "Gift een e-mailadresse in (vereist ip deze thuusserver)",
@ -793,7 +784,6 @@
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Jè geprobeerd van e gegeven punt in de tydslyn van dit gesprek te loadn, moa jè geen toeloatienge vo t desbetreffend bericht te zien.", "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Jè geprobeerd van e gegeven punt in de tydslyn van dit gesprek te loadn, moa jè geen toeloatienge vo t desbetreffend bericht te zien.",
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Geprobeerd voor e gegeven punt in de tydslyn van dit gesprek te loadn, moar kostege dit nie viendn.", "Tried to load a specific point in this room's timeline, but was unable to find it.": "Geprobeerd voor e gegeven punt in de tydslyn van dit gesprek te loadn, moar kostege dit nie viendn.",
"Failed to load timeline position": "Loadn van tydslynpositie is mislukt", "Failed to load timeline position": "Loadn van tydslynpositie is mislukt",
"Guest": "Gast",
"Uploading %(filename)s and %(count)s others": { "Uploading %(filename)s and %(count)s others": {
"other": "%(filename)s en %(count)s andere wordn ipgeloadn", "other": "%(filename)s en %(count)s andere wordn ipgeloadn",
"one": "%(filename)s en %(count)s ander wordn ipgeloadn" "one": "%(filename)s en %(count)s ander wordn ipgeloadn"
@ -826,7 +816,6 @@
"Unable to query for supported registration methods.": "Kostege doundersteunde registroasjemethodes nie ipvroagn.", "Unable to query for supported registration methods.": "Kostege doundersteunde registroasjemethodes nie ipvroagn.",
"This server does not support authentication with a phone number.": "Deze server biedt geen oundersteunienge voor authenticoasje met e telefongnumero.", "This server does not support authentication with a phone number.": "Deze server biedt geen oundersteunienge voor authenticoasje met e telefongnumero.",
"Commands": "Ipdrachtn", "Commands": "Ipdrachtn",
"Emoji": "Emoticons",
"Notify the whole room": "Loat dit an gans t groepsgesprek weetn", "Notify the whole room": "Loat dit an gans t groepsgesprek weetn",
"Room Notification": "Groepsgespreksmeldienge", "Room Notification": "Groepsgespreksmeldienge",
"Users": "Gebruukers", "Users": "Gebruukers",
@ -881,7 +870,6 @@
"Upload all": "Alles iploadn", "Upload all": "Alles iploadn",
"Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Je nieuwen account (%(newAccountId)s) is geregistreerd, mo je zyt al angemeld met een anderen account (%(loggedInUserId)s).", "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Je nieuwen account (%(newAccountId)s) is geregistreerd, mo je zyt al angemeld met een anderen account (%(loggedInUserId)s).",
"Continue with previous account": "Verdergoan me de vorigen account", "Continue with previous account": "Verdergoan me de vorigen account",
"Show all": "Alles toogn",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s èn %(count)s kis nietent gewyzigd", "other": "%(severalUsers)s èn %(count)s kis nietent gewyzigd",
"one": "%(severalUsers)s èn nietent gewyzigd" "one": "%(severalUsers)s èn nietent gewyzigd"
@ -915,7 +903,6 @@
"Displays list of commands with usages and descriptions": "Toogt e lyste van beschikboare ipdrachtn, met hunder gebruukn en beschryviengn", "Displays list of commands with usages and descriptions": "Toogt e lyste van beschikboare ipdrachtn, met hunder gebruukn en beschryviengn",
"Checking server": "Server wor gecontroleerd", "Checking server": "Server wor gecontroleerd",
"Disconnect from the identity server <idserver />?": "Wil je de verbindienge me den identiteitsserver <idserver /> verbreekn?", "Disconnect from the identity server <idserver />?": "Wil je de verbindienge me den identiteitsserver <idserver /> verbreekn?",
"Disconnect": "Verbindienge verbreekn",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Je makt vo de moment gebruuk van <server></server> vo deur je contactn gevoundn te kunn wordn, en von hunder te kunn viendn. Je kut hierounder jen identiteitsserver wyzign.", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Je makt vo de moment gebruuk van <server></server> vo deur je contactn gevoundn te kunn wordn, en von hunder te kunn viendn. Je kut hierounder jen identiteitsserver wyzign.",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Je makt vo de moment geen gebruuk van een identiteitsserver. Voegt der hierounder één toe vo deur je contactn gevoundn te kunn wordn en von hunder te kunn viendn.", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Je makt vo de moment geen gebruuk van een identiteitsserver. Voegt der hierounder één toe vo deur je contactn gevoundn te kunn wordn en von hunder te kunn viendn.",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "De verbindienge me jen identiteitsserver verbreekn goat dervoorn zorgn da je nie mi deur andere gebruukers gevoundn goa kunn wordn, en dat andere menschn je nie via e-mail of telefong goan kunn uutnodign.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "De verbindienge me jen identiteitsserver verbreekn goat dervoorn zorgn da je nie mi deur andere gebruukers gevoundn goa kunn wordn, en dat andere menschn je nie via e-mail of telefong goan kunn uutnodign.",
@ -924,7 +911,6 @@
"Always show the window menu bar": "De veinstermenubalk alsan toogn", "Always show the window menu bar": "De veinstermenubalk alsan toogn",
"Unable to revoke sharing for email address": "Kostege t deeln vo dat e-mailadresse hier nie intrekkn", "Unable to revoke sharing for email address": "Kostege t deeln vo dat e-mailadresse hier nie intrekkn",
"Unable to share email address": "Kostege t e-mailadresse nie deeln", "Unable to share email address": "Kostege t e-mailadresse nie deeln",
"Revoke": "Intrekkn",
"Discovery options will appear once you have added an email above.": "Ountdekkiengsopties goan verschynn a jeen e-mailadresse toegevoegd ghed èt.", "Discovery options will appear once you have added an email above.": "Ountdekkiengsopties goan verschynn a jeen e-mailadresse toegevoegd ghed èt.",
"Unable to revoke sharing for phone number": "Kostege t deeln vo dien telefongnumero hier nie intrekkn", "Unable to revoke sharing for phone number": "Kostege t deeln vo dien telefongnumero hier nie intrekkn",
"Unable to share phone number": "Kostege den telefongnumero nie deeln", "Unable to share phone number": "Kostege den telefongnumero nie deeln",
@ -969,7 +955,16 @@
"home": "Thuus", "home": "Thuus",
"favourites": "Favorietn", "favourites": "Favorietn",
"description": "Beschryvienge", "description": "Beschryvienge",
"attachment": "Byloage" "attachment": "Byloage",
"guest": "Gast",
"legal": "Wettelik",
"credits": "Me dank an",
"faq": "VGV",
"preferences": "Instelliengn",
"timeline": "Tydslyn",
"camera": "Camera",
"microphone": "Microfoon",
"emoji": "Emoticons"
}, },
"action": { "action": {
"continue": "Verdergoan", "continue": "Verdergoan",
@ -1013,7 +1008,12 @@
"cancel": "Annuleern", "cancel": "Annuleern",
"back": "Were", "back": "Were",
"add": "Toevoegn", "add": "Toevoegn",
"accept": "Anveirdn" "accept": "Anveirdn",
"disconnect": "Verbindienge verbreekn",
"change": "Wyzign",
"revoke": "Intrekkn",
"show_all": "Alles toogn",
"register": "Registreern"
}, },
"labs": { "labs": {
"pinning": "Bericht vastprikkn", "pinning": "Bericht vastprikkn",

View file

@ -8,7 +8,6 @@
"Download %(text)s": "下载 %(text)s", "Download %(text)s": "下载 %(text)s",
"Email": "电子邮箱", "Email": "电子邮箱",
"Email address": "邮箱地址", "Email address": "邮箱地址",
"Emoji": "表情符号",
"Error decrypting attachment": "解密附件时出错", "Error decrypting attachment": "解密附件时出错",
"Export E2E room keys": "导出房间的端到端加密密钥", "Export E2E room keys": "导出房间的端到端加密密钥",
"Failed to ban user": "封禁失败", "Failed to ban user": "封禁失败",
@ -70,8 +69,6 @@
"No media permissions": "没有媒体存取权限", "No media permissions": "没有媒体存取权限",
"You may need to manually permit %(brand)s to access your microphone/webcam": "你可能需要手动授权 %(brand)s 使用你的麦克风或摄像头", "You may need to manually permit %(brand)s to access your microphone/webcam": "你可能需要手动授权 %(brand)s 使用你的麦克风或摄像头",
"Default Device": "默认设备", "Default Device": "默认设备",
"Microphone": "麦克风",
"Camera": "摄像头",
"Authentication": "认证", "Authentication": "认证",
"%(items)s and %(lastItem)s": "%(items)s 和 %(lastItem)s", "%(items)s and %(lastItem)s": "%(items)s 和 %(lastItem)s",
"and %(count)s others...": { "and %(count)s others...": {
@ -121,7 +118,6 @@
"No more results": "没有更多结果", "No more results": "没有更多结果",
"Privileged Users": "特权用户", "Privileged Users": "特权用户",
"Reason": "理由", "Reason": "理由",
"Register": "注册",
"Reject invitation": "拒绝邀请", "Reject invitation": "拒绝邀请",
"Users": "用户", "Users": "用户",
"Verified key": "已验证的密钥", "Verified key": "已验证的密钥",
@ -499,7 +495,6 @@
"Update any local room aliases to point to the new room": "更新所有本地房间别名以使其指向新房间", "Update any local room aliases to point to the new room": "更新所有本地房间别名以使其指向新房间",
"Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "阻止用户在旧房间中发言,并发送消息建议用户迁移至新房间", "Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "阻止用户在旧房间中发言,并发送消息建议用户迁移至新房间",
"Put a link back to the old room at the start of the new room so people can see old messages": "在新房间的开始处发送一条指回旧房间的链接,这样用户可以查看旧消息", "Put a link back to the old room at the start of the new room so people can see old messages": "在新房间的开始处发送一条指回旧房间的链接,这样用户可以查看旧消息",
"Legal": "法律信息",
"This homeserver has hit its Monthly Active User limit.": "此家服务器已达到其每月活跃用户限制。", "This homeserver has hit its Monthly Active User limit.": "此家服务器已达到其每月活跃用户限制。",
"This homeserver has exceeded one of its resource limits.": "本服务器已达到其使用量限制之一。", "This homeserver has exceeded one of its resource limits.": "本服务器已达到其使用量限制之一。",
"Please <a>contact your service administrator</a> to continue using this service.": "请 <a>联系你的服务管理员</a> 以继续使用本服务。", "Please <a>contact your service administrator</a> to continue using this service.": "请 <a>联系你的服务管理员</a> 以继续使用本服务。",
@ -669,16 +664,12 @@
"Language and region": "语言与地区", "Language and region": "语言与地区",
"Account management": "账户管理", "Account management": "账户管理",
"General": "通用", "General": "通用",
"Credits": "感谢",
"For help with using %(brand)s, click <a>here</a>.": "关于 %(brand)s 的<a>使用说明</a>。", "For help with using %(brand)s, click <a>here</a>.": "关于 %(brand)s 的<a>使用说明</a>。",
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "关于 %(brand)s 的使用说明,请点击<a>这里</a>或者通过下方按钮同我们的机器人聊聊。", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "关于 %(brand)s 的使用说明,请点击<a>这里</a>或者通过下方按钮同我们的机器人聊聊。",
"Chat with %(brand)s Bot": "与 %(brand)s 机器人聊天", "Chat with %(brand)s Bot": "与 %(brand)s 机器人聊天",
"Help & About": "帮助及关于", "Help & About": "帮助及关于",
"FAQ": "常见问答集",
"Versions": "版本", "Versions": "版本",
"Preferences": "偏好",
"Composer": "编辑器", "Composer": "编辑器",
"Timeline": "时间线",
"Room list": "房间列表", "Room list": "房间列表",
"Autocomplete delay (ms)": "自动完成延迟(毫秒)", "Autocomplete delay (ms)": "自动完成延迟(毫秒)",
"Ignored users": "已忽略的用户", "Ignored users": "已忽略的用户",
@ -724,13 +715,11 @@
"This homeserver would like to make sure you are not a robot.": "此家服务器想要确认你不是机器人。", "This homeserver would like to make sure you are not a robot.": "此家服务器想要确认你不是机器人。",
"Please review and accept all of the homeserver's policies": "请阅读并接受此家服务器的所有政策", "Please review and accept all of the homeserver's policies": "请阅读并接受此家服务器的所有政策",
"Please review and accept the policies of this homeserver:": "请阅读并接受此家服务器的政策:", "Please review and accept the policies of this homeserver:": "请阅读并接受此家服务器的政策:",
"Change": "更改",
"Email (optional)": "电子邮箱(可选)", "Email (optional)": "电子邮箱(可选)",
"Phone (optional)": "电话号码(可选)", "Phone (optional)": "电话号码(可选)",
"Join millions for free on the largest public server": "免费加入最大的公共服务器,成为数百万用户中的一员", "Join millions for free on the largest public server": "免费加入最大的公共服务器,成为数百万用户中的一员",
"Other": "其他", "Other": "其他",
"Couldn't load page": "无法加载页面", "Couldn't load page": "无法加载页面",
"Guest": "游客",
"Could not load user profile": "无法加载用户资料", "Could not load user profile": "无法加载用户资料",
"Your password has been reset.": "你的密码已重置。", "Your password has been reset.": "你的密码已重置。",
"Invalid homeserver discovery response": "无效的家服务器搜索响应", "Invalid homeserver discovery response": "无效的家服务器搜索响应",
@ -817,7 +806,6 @@
"Sign In or Create Account": "登录或创建账户", "Sign In or Create Account": "登录或创建账户",
"Use your account or create a new one to continue.": "使用已有账户或创建一个新账户。", "Use your account or create a new one to continue.": "使用已有账户或创建一个新账户。",
"Create Account": "创建账户", "Create Account": "创建账户",
"Custom (%(level)s)": "自定义(%(level)s",
"Messages": "消息", "Messages": "消息",
"Actions": "动作", "Actions": "动作",
"Sends a message as plain text, without interpreting it as markdown": "以纯文本形式发送消息,不将其作为 markdown 处理", "Sends a message as plain text, without interpreting it as markdown": "以纯文本形式发送消息,不将其作为 markdown 处理",
@ -910,7 +898,6 @@
"%(name)s (%(userId)s)": "%(name)s%(userId)s", "%(name)s (%(userId)s)": "%(name)s%(userId)s",
"Your browser does not support the required cryptography extensions": "你的浏览器不支持所需的密码学扩展", "Your browser does not support the required cryptography extensions": "你的浏览器不支持所需的密码学扩展",
"The user's homeserver does not support the version of the room.": "用户的家服务器不支持此房间版本。", "The user's homeserver does not support the version of the room.": "用户的家服务器不支持此房间版本。",
"Review": "开始验证",
"Later": "稍后再说", "Later": "稍后再说",
"Your homeserver has exceeded its user limit.": "你的家服务器已超过用户限制。", "Your homeserver has exceeded its user limit.": "你的家服务器已超过用户限制。",
"Your homeserver has exceeded one of its resource limits.": "你的家服务器已超过某项资源限制。", "Your homeserver has exceeded one of its resource limits.": "你的家服务器已超过某项资源限制。",
@ -979,7 +966,6 @@
"The identity server you have chosen does not have any terms of service.": "你选择的身份服务器没有服务协议。", "The identity server you have chosen does not have any terms of service.": "你选择的身份服务器没有服务协议。",
"Disconnect identity server": "断开身份服务器连接", "Disconnect identity server": "断开身份服务器连接",
"Disconnect from the identity server <idserver />?": "从身份服务器 <idserver /> 断开连接吗?", "Disconnect from the identity server <idserver />?": "从身份服务器 <idserver /> 断开连接吗?",
"Disconnect": "断开连接",
"You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "断开连接前,你应从身份服务器<idserver />上<b>删除你的个人数据</b>。不幸的是,身份服务器<idserver />当前处于离线状态或无法访问。", "You should <b>remove your personal data</b> from identity server <idserver /> before disconnecting. Unfortunately, identity server <idserver /> is currently offline or cannot be reached.": "断开连接前,你应从身份服务器<idserver />上<b>删除你的个人数据</b>。不幸的是,身份服务器<idserver />当前处于离线状态或无法访问。",
"You should:": "你应该:", "You should:": "你应该:",
"contact the administrators of identity server <idserver />": "联系身份服务器 <idserver /> 的管理员", "contact the administrators of identity server <idserver />": "联系身份服务器 <idserver /> 的管理员",
@ -1022,7 +1008,6 @@
"You have not ignored anyone.": "你没有忽略任何人。", "You have not ignored anyone.": "你没有忽略任何人。",
"You are currently ignoring:": "你正在忽略:", "You are currently ignoring:": "你正在忽略:",
"You are not subscribed to any lists": "你没有订阅任何列表", "You are not subscribed to any lists": "你没有订阅任何列表",
"Unsubscribe": "取消订阅",
"View rules": "查看规则", "View rules": "查看规则",
"You are currently subscribed to:": "你正在订阅:", "You are currently subscribed to:": "你正在订阅:",
"⚠ These settings are meant for advanced users.": "⚠ 这些设置是为高级用户准备的。", "⚠ These settings are meant for advanced users.": "⚠ 这些设置是为高级用户准备的。",
@ -1035,7 +1020,6 @@
"Subscribing to a ban list will cause you to join it!": "订阅一个封禁列表会使你加入它!", "Subscribing to a ban list will cause you to join it!": "订阅一个封禁列表会使你加入它!",
"If this isn't what you want, please use a different tool to ignore users.": "如果这不是你想要的,请使用别的的工具来忽略用户。", "If this isn't what you want, please use a different tool to ignore users.": "如果这不是你想要的,请使用别的的工具来忽略用户。",
"Room ID or address of ban list": "封禁列表的房间 ID 或地址", "Room ID or address of ban list": "封禁列表的房间 ID 或地址",
"Subscribe": "订阅",
"Always show the window menu bar": "总是显示窗口菜单栏", "Always show the window menu bar": "总是显示窗口菜单栏",
"Session ID:": "会话 ID", "Session ID:": "会话 ID",
"Session key:": "会话密钥:", "Session key:": "会话密钥:",
@ -1058,7 +1042,6 @@
"Your email address hasn't been verified yet": "你的邮件地址尚未被验证", "Your email address hasn't been verified yet": "你的邮件地址尚未被验证",
"Click the link in the email you received to verify and then click continue again.": "点击你所收到的电子邮件中的链接进行验证,然后再次点击继续。", "Click the link in the email you received to verify and then click continue again.": "点击你所收到的电子邮件中的链接进行验证,然后再次点击继续。",
"Verify the link in your inbox": "验证你的收件箱中的链接", "Verify the link in your inbox": "验证你的收件箱中的链接",
"Complete": "完成",
"Discovery options will appear once you have added an email above.": "你在上方添加邮箱后发现选项将会出现。", "Discovery options will appear once you have added an email above.": "你在上方添加邮箱后发现选项将会出现。",
"Unable to share phone number": "无法共享电话号码", "Unable to share phone number": "无法共享电话号码",
"Please enter verification code sent via text.": "请输入短信中发送的验证码。", "Please enter verification code sent via text.": "请输入短信中发送的验证码。",
@ -1248,7 +1231,6 @@
"%(name)s cancelled": "%(name)s 取消了", "%(name)s cancelled": "%(name)s 取消了",
"%(name)s wants to verify": "%(name)s 想要验证", "%(name)s wants to verify": "%(name)s 想要验证",
"You sent a verification request": "你发送了一个验证请求", "You sent a verification request": "你发送了一个验证请求",
"Show all": "显示全部",
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>回应了 %(shortName)s</reactedWith>", "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>回应了 %(shortName)s</reactedWith>",
"Message deleted": "消息已删除", "Message deleted": "消息已删除",
"Message deleted by %(name)s": "消息被 %(name)s 删除", "Message deleted by %(name)s": "消息被 %(name)s 删除",
@ -1478,7 +1460,6 @@
"Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "使用一个只有你知道的密码,你也可以保存安全密钥以供备份使用。", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "使用一个只有你知道的密码,你也可以保存安全密钥以供备份使用。",
"Enter your account password to confirm the upgrade:": "输入你的账户密码以确认升级:", "Enter your account password to confirm the upgrade:": "输入你的账户密码以确认升级:",
"Restore your key backup to upgrade your encryption": "恢复你的密钥备份以更新你的加密方式", "Restore your key backup to upgrade your encryption": "恢复你的密钥备份以更新你的加密方式",
"Restore": "恢复",
"You'll need to authenticate with the server to confirm the upgrade.": "你需要和服务器进行认证以确认更新。", "You'll need to authenticate with the server to confirm the upgrade.": "你需要和服务器进行认证以确认更新。",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "更新此会话以允许其验证其他会话、允许其他会话访问加密消息,并将它们对别的用户标记为已信任。", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "更新此会话以允许其验证其他会话、允许其他会话访问加密消息,并将它们对别的用户标记为已信任。",
"Use a different passphrase?": "使用不同的口令词组?", "Use a different passphrase?": "使用不同的口令词组?",
@ -1516,7 +1497,6 @@
"Expand room list section": "展开房间列表段", "Expand room list section": "展开房间列表段",
"Close dialog or context menu": "关闭对话框或上下文菜单", "Close dialog or context menu": "关闭对话框或上下文菜单",
"Cancel autocomplete": "取消自动补全", "Cancel autocomplete": "取消自动补全",
"Space": "空格",
"How fast should messages be downloaded.": "消息下载速度。", "How fast should messages be downloaded.": "消息下载速度。",
"IRC display name width": "IRC 显示名称宽度", "IRC display name width": "IRC 显示名称宽度",
"When rooms are upgraded": "当房间升级时", "When rooms are upgraded": "当房间升级时",
@ -1534,9 +1514,7 @@
"Read Marker lifetime (ms)": "已读标记生存期(毫秒)", "Read Marker lifetime (ms)": "已读标记生存期(毫秒)",
"Read Marker off-screen lifetime (ms)": "已读标记屏幕外生存期(毫秒)", "Read Marker off-screen lifetime (ms)": "已读标记屏幕外生存期(毫秒)",
"Unable to revoke sharing for email address": "无法撤消电子邮件地址共享", "Unable to revoke sharing for email address": "无法撤消电子邮件地址共享",
"Revoke": "撤销",
"Unable to revoke sharing for phone number": "无法撤销电话号码共享", "Unable to revoke sharing for phone number": "无法撤销电话号码共享",
"Mod": "管理员",
"Explore public rooms": "探索公共房间", "Explore public rooms": "探索公共房间",
"You can only join it with a working invite.": "你只能通过有效邀请加入。", "You can only join it with a working invite.": "你只能通过有效邀请加入。",
"Language Dropdown": "语言下拉菜单", "Language Dropdown": "语言下拉菜单",
@ -1576,7 +1554,6 @@
"ready": "就绪", "ready": "就绪",
"not ready": "尚未就绪", "not ready": "尚未就绪",
"Secure Backup": "安全备份", "Secure Backup": "安全备份",
"Privacy": "隐私",
"No other application is using the webcam": "没有其他应用程序正在使用摄像头", "No other application is using the webcam": "没有其他应用程序正在使用摄像头",
"Permission is granted to use the webcam": "授权使用摄像头", "Permission is granted to use the webcam": "授权使用摄像头",
"A microphone and webcam are plugged in and set up correctly": "已插入并正确设置麦克风和摄像头", "A microphone and webcam are plugged in and set up correctly": "已插入并正确设置麦克风和摄像头",
@ -1703,7 +1680,6 @@
"Go to Home View": "转到主视图", "Go to Home View": "转到主视图",
"Search (must be enabled)": "搜索(必须启用)", "Search (must be enabled)": "搜索(必须启用)",
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s 或 %(usernamePassword)s", "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s 或 %(usernamePassword)s",
"Random": "随机",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s 位成员", "one": "%(count)s 位成员",
"other": "%(count)s 位成员" "other": "%(count)s 位成员"
@ -1757,7 +1733,6 @@
"Sends the given message with fireworks": "附加烟火发送", "Sends the given message with fireworks": "附加烟火发送",
"sends fireworks": "发送烟火", "sends fireworks": "发送烟火",
"The <b>%(capability)s</b> capability": "<b>%(capability)s</b> 容量", "The <b>%(capability)s</b> capability": "<b>%(capability)s</b> 容量",
"Support": "支持",
"Your server does not support showing space hierarchies.": "你的服务器不支持显示空间层次结构。", "Your server does not support showing space hierarchies.": "你的服务器不支持显示空间层次结构。",
"This version of %(brand)s does not support searching encrypted messages": "当前版本的 %(brand)s 不支持搜索加密消息", "This version of %(brand)s does not support searching encrypted messages": "当前版本的 %(brand)s 不支持搜索加密消息",
"This version of %(brand)s does not support viewing some encrypted files": "当前版本的 %(brand)s 不支持查看某些加密文件", "This version of %(brand)s does not support viewing some encrypted files": "当前版本的 %(brand)s 不支持查看某些加密文件",
@ -1861,7 +1836,6 @@
"Enter Security Phrase": "输入安全短语", "Enter Security Phrase": "输入安全短语",
"Allow this widget to verify your identity": "允许此挂件验证你的身份", "Allow this widget to verify your identity": "允许此挂件验证你的身份",
"Decline All": "全部拒绝", "Decline All": "全部拒绝",
"Approve": "批准",
"This widget would like to:": "此挂件想要:", "This widget would like to:": "此挂件想要:",
"Approve widget permissions": "批准挂件权限", "Approve widget permissions": "批准挂件权限",
"Failed to save space settings.": "空间设置保存失败。", "Failed to save space settings.": "空间设置保存失败。",
@ -2178,7 +2152,6 @@
"You have no ignored users.": "你没有设置忽略用户。", "You have no ignored users.": "你没有设置忽略用户。",
"Warn before quitting": "退出前警告", "Warn before quitting": "退出前警告",
"Your access token gives full access to your account. Do not share it with anyone.": "你的访问令牌可以完全访问你的账户。不要将其与任何人分享。", "Your access token gives full access to your account. Do not share it with anyone.": "你的访问令牌可以完全访问你的账户。不要将其与任何人分享。",
"Access Token": "访问令牌",
"Message search initialisation failed": "消息搜索初始化失败", "Message search initialisation failed": "消息搜索初始化失败",
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
"one": "使用%(size)s存储%(rooms)s个房间的消息。在本地安全地缓存已加密的消息以使其出现在搜索结果中。", "one": "使用%(size)s存储%(rooms)s个房间的消息。在本地安全地缓存已加密的消息以使其出现在搜索结果中。",
@ -2186,8 +2159,6 @@
}, },
"Manage & explore rooms": "管理并探索房间", "Manage & explore rooms": "管理并探索房间",
"Please enter a name for the space": "请输入空间名称", "Please enter a name for the space": "请输入空间名称",
"Play": "播放",
"Pause": "暂停",
"%(name)s on hold": "保留 %(name)s", "%(name)s on hold": "保留 %(name)s",
"Connecting": "连接中", "Connecting": "连接中",
"Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "与 %(transferTarget)s 进行协商。<a>转让至 %(transferee)s</a>", "Consulting with %(transferTarget)s. <a>Transfer to %(transferee)s</a>": "与 %(transferTarget)s 进行协商。<a>转让至 %(transferee)s</a>",
@ -2595,7 +2566,6 @@
"Light high contrast": "浅色高对比", "Light high contrast": "浅色高对比",
"Joining": "加入中", "Joining": "加入中",
"Automatically send debug logs on any error": "遇到任何错误自动发送调试日志", "Automatically send debug logs on any error": "遇到任何错误自动发送调试日志",
"Rename": "重命名",
"Select all": "全选", "Select all": "全选",
"Deselect all": "取消全选", "Deselect all": "取消全选",
"Sign out devices": { "Sign out devices": {
@ -3148,7 +3118,6 @@
}, },
"Remove them from everything I'm able to": "", "Remove them from everything I'm able to": "",
"Inactive sessions": "不活跃的会话", "Inactive sessions": "不活跃的会话",
"View all": "查看全部",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "验证你的会话以增强消息传输的安全性,或从那些你不认识或不再使用的会话登出。", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "验证你的会话以增强消息传输的安全性,或从那些你不认识或不再使用的会话登出。",
"Unverified sessions": "未验证的会话", "Unverified sessions": "未验证的会话",
"Security recommendations": "安全建议", "Security recommendations": "安全建议",
@ -3264,7 +3233,6 @@
"%(user1)s and %(user2)s": "%(user1)s和%(user2)s", "%(user1)s and %(user2)s": "%(user1)s和%(user2)s",
"Choose a locale": "选择区域设置", "Choose a locale": "选择区域设置",
"Empty room (was %(oldName)s)": "空房间(曾是%(oldName)s", "Empty room (was %(oldName)s)": "空房间(曾是%(oldName)s",
"Show": "显示",
"%(qrCode)s or %(emojiCompare)s": "%(qrCode)s或%(emojiCompare)s", "%(qrCode)s or %(emojiCompare)s": "%(qrCode)s或%(emojiCompare)s",
"%(qrCode)s or %(appLinks)s": "%(qrCode)s或%(appLinks)s", "%(qrCode)s or %(appLinks)s": "%(qrCode)s或%(appLinks)s",
"%(securityKey)s or %(recoveryFile)s": "%(securityKey)s或%(recoveryFile)s", "%(securityKey)s or %(recoveryFile)s": "%(securityKey)s或%(recoveryFile)s",
@ -3343,7 +3311,6 @@
"one": "你确定要登出%(count)s个会话吗", "one": "你确定要登出%(count)s个会话吗",
"other": "你确定要退出这 %(count)s 个会话吗?" "other": "你确定要退出这 %(count)s 个会话吗?"
}, },
"Presence": "在线",
"Search users in this room…": "搜索该房间内的用户……", "Search users in this room…": "搜索该房间内的用户……",
"Give one or multiple users in this room more privileges": "授权给该房间内的某人或某些人", "Give one or multiple users in this room more privileges": "授权给该房间内的某人或某些人",
"Add privileged users": "添加特权用户", "Add privileged users": "添加特权用户",
@ -3428,7 +3395,22 @@
"dark": "深色", "dark": "深色",
"beta": "beta", "beta": "beta",
"attachment": "附件", "attachment": "附件",
"appearance": "外观" "appearance": "外观",
"guest": "游客",
"legal": "法律信息",
"credits": "感谢",
"faq": "常见问答集",
"access_token": "访问令牌",
"preferences": "偏好",
"presence": "在线",
"timeline": "时间线",
"privacy": "隐私",
"camera": "摄像头",
"microphone": "麦克风",
"emoji": "表情符号",
"random": "随机",
"support": "支持",
"space": "空格"
}, },
"action": { "action": {
"continue": "继续", "continue": "继续",
@ -3500,7 +3482,23 @@
"back": "返回", "back": "返回",
"apply": "申请", "apply": "申请",
"add": "添加", "add": "添加",
"accept": "接受" "accept": "接受",
"disconnect": "断开连接",
"change": "更改",
"subscribe": "订阅",
"unsubscribe": "取消订阅",
"approve": "批准",
"complete": "完成",
"revoke": "撤销",
"rename": "重命名",
"view_all": "查看全部",
"show_all": "显示全部",
"show": "显示",
"review": "开始验证",
"restore": "恢复",
"play": "播放",
"pause": "暂停",
"register": "注册"
}, },
"a11y": { "a11y": {
"user_menu": "用户菜单" "user_menu": "用户菜单"
@ -3563,7 +3561,9 @@
"default": "默认", "default": "默认",
"restricted": "受限", "restricted": "受限",
"moderator": "协管员", "moderator": "协管员",
"admin": "管理员" "admin": "管理员",
"custom": "自定义(%(level)s",
"mod": "管理员"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "若你通过GitHub提交bug则调试日志能帮助我们追踪问题。 ", "introduction": "若你通过GitHub提交bug则调试日志能帮助我们追踪问题。 ",

View file

@ -22,7 +22,6 @@
"Download %(text)s": "下載 %(text)s", "Download %(text)s": "下載 %(text)s",
"Email": "電子郵件地址", "Email": "電子郵件地址",
"Email address": "電子郵件地址", "Email address": "電子郵件地址",
"Emoji": "表情符號",
"Error decrypting attachment": "解密附件時出錯", "Error decrypting attachment": "解密附件時出錯",
"Export E2E room keys": "匯出聊天室的端對端加密金鑰", "Export E2E room keys": "匯出聊天室的端對端加密金鑰",
"Failed to ban user": "無法封鎖使用者", "Failed to ban user": "無法封鎖使用者",
@ -86,13 +85,10 @@
"powered by Matrix": "由 Matrix 提供", "powered by Matrix": "由 Matrix 提供",
"unknown error code": "未知的錯誤代碼", "unknown error code": "未知的錯誤代碼",
"Default Device": "預設裝置", "Default Device": "預設裝置",
"Microphone": "麥克風",
"Camera": "相機",
"Anyone": "任何人", "Anyone": "任何人",
"Command error": "指令出錯", "Command error": "指令出錯",
"Commands": "指令", "Commands": "指令",
"Reason": "原因", "Reason": "原因",
"Register": "註冊",
"Error decrypting image": "解密圖片出錯", "Error decrypting image": "解密圖片出錯",
"Error decrypting video": "解密影片出錯", "Error decrypting video": "解密影片出錯",
"Add an Integration": "新增整合器", "Add an Integration": "新增整合器",
@ -497,7 +493,6 @@
"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.": "您的訊息未傳送,因為其家伺服器已超過一項資源限制。請<a>聯絡您的服務管理員</a>以繼序使用服務。", "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.": "您的訊息未傳送,因為其家伺服器已超過一項資源限制。請<a>聯絡您的服務管理員</a>以繼序使用服務。",
"Please <a>contact your service administrator</a> to continue using this service.": "請<a>聯絡您的服務管理員</a>以繼續使用此服務。", "Please <a>contact your service administrator</a> to continue using this service.": "請<a>聯絡您的服務管理員</a>以繼續使用此服務。",
"Please contact your homeserver administrator.": "請聯絡您的家伺服器的管理員。", "Please contact your homeserver administrator.": "請聯絡您的家伺服器的管理員。",
"Legal": "法律",
"This room has been replaced and is no longer active.": "這個聊天室已被取代,且不再使用。", "This room has been replaced and is no longer active.": "這個聊天室已被取代,且不再使用。",
"The conversation continues here.": "對話在此繼續。", "The conversation continues here.": "對話在此繼續。",
"This room is a continuation of another conversation.": "此聊天室是另一個對話的延續。", "This room is a continuation of another conversation.": "此聊天室是另一個對話的延續。",
@ -622,12 +617,9 @@
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "對於使用 %(brand)s 的說明,點選<a>這裡</a>或是使用下面的按鈕開始與我們的聊天機器人聊天。", "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "對於使用 %(brand)s 的說明,點選<a>這裡</a>或是使用下面的按鈕開始與我們的聊天機器人聊天。",
"Chat with %(brand)s Bot": "與 %(brand)s 機器人聊天", "Chat with %(brand)s Bot": "與 %(brand)s 機器人聊天",
"Help & About": "說明與關於", "Help & About": "說明與關於",
"FAQ": "常見問答集",
"Versions": "版本", "Versions": "版本",
"Preferences": "偏好設定",
"Composer": "編輯器", "Composer": "編輯器",
"Room list": "聊天室清單", "Room list": "聊天室清單",
"Timeline": "時間軸",
"Autocomplete delay (ms)": "自動完成延遲(毫秒)", "Autocomplete delay (ms)": "自動完成延遲(毫秒)",
"Roles & Permissions": "角色與權限", "Roles & Permissions": "角色與權限",
"Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "對可閱讀訊息紀錄的使用者的變更,僅適用於此聊天室的新訊息。現有訊息的顯示狀態將保持不變。", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "對可閱讀訊息紀錄的使用者的變更,僅適用於此聊天室的新訊息。現有訊息的顯示狀態將保持不變。",
@ -650,7 +642,6 @@
"Phone (optional)": "電話(選擇性)", "Phone (optional)": "電話(選擇性)",
"Join millions for free on the largest public server": "在最大的公開伺服器上,免費與數百萬人一起交流", "Join millions for free on the largest public server": "在最大的公開伺服器上,免費與數百萬人一起交流",
"Other": "其他", "Other": "其他",
"Guest": "訪客",
"Create account": "建立帳號", "Create account": "建立帳號",
"Recovery Method Removed": "已移除復原方法", "Recovery Method Removed": "已移除復原方法",
"If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "如果您沒有移除復原方法,攻擊者可能會試圖存取您的帳號。請立刻在設定中變更您帳號的密碼並設定新的復原方式。", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "如果您沒有移除復原方法,攻擊者可能會試圖存取您的帳號。請立刻在設定中變更您帳號的密碼並設定新的復原方式。",
@ -727,7 +718,6 @@
"Headphones": "耳機", "Headphones": "耳機",
"Folder": "資料夾", "Folder": "資料夾",
"This homeserver would like to make sure you are not a robot.": "這個家伺服器想要確認您不是機器人。", "This homeserver would like to make sure you are not a robot.": "這個家伺服器想要確認您不是機器人。",
"Change": "變更",
"Couldn't load page": "無法載入頁面", "Couldn't load page": "無法載入頁面",
"Your password has been reset.": "您的密碼已重設。", "Your password has been reset.": "您的密碼已重設。",
"This homeserver does not support login using email address.": "此家伺服器不支援使用電子郵件地址登入。", "This homeserver does not support login using email address.": "此家伺服器不支援使用電子郵件地址登入。",
@ -738,7 +728,6 @@
"Restore from Backup": "從備份還原", "Restore from Backup": "從備份還原",
"Back up your keys before signing out to avoid losing them.": "請在登出前備份您的金鑰,以免遺失。", "Back up your keys before signing out to avoid losing them.": "請在登出前備份您的金鑰,以免遺失。",
"Start using Key Backup": "開始使用金鑰備份", "Start using Key Backup": "開始使用金鑰備份",
"Credits": "感謝",
"I don't want my encrypted messages": "我不要我的加密訊息了", "I don't want my encrypted messages": "我不要我的加密訊息了",
"Manually export keys": "手動匯出金鑰", "Manually export keys": "手動匯出金鑰",
"You'll lose access to your encrypted messages": "您將會失去您的加密訊息", "You'll lose access to your encrypted messages": "您將會失去您的加密訊息",
@ -879,7 +868,6 @@
"Edited at %(date)s. Click to view edits.": "編輯於 %(date)s。點擊以檢視編輯。", "Edited at %(date)s. Click to view edits.": "編輯於 %(date)s。點擊以檢視編輯。",
"Message edits": "訊息編輯紀錄", "Message edits": "訊息編輯紀錄",
"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:": "升級這個聊天室需要關閉目前的執行個體並重新建立一個新的聊天室來替代。為了給予聊天室成員最佳的體驗,我們將會:", "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:": "升級這個聊天室需要關閉目前的執行個體並重新建立一個新的聊天室來替代。為了給予聊天室成員最佳的體驗,我們將會:",
"Show all": "顯示全部",
"%(severalUsers)smade no changes %(count)s times": { "%(severalUsers)smade no changes %(count)s times": {
"other": "%(severalUsers)s 未做出變更 %(count)s 次", "other": "%(severalUsers)s 未做出變更 %(count)s 次",
"one": "%(severalUsers)s 未做出變更" "one": "%(severalUsers)s 未做出變更"
@ -917,7 +905,6 @@
"Deactivate account": "停用帳號", "Deactivate account": "停用帳號",
"Unable to revoke sharing for email address": "無法撤回電子郵件的分享", "Unable to revoke sharing for email address": "無法撤回電子郵件的分享",
"Unable to share email address": "無法分享電子郵件", "Unable to share email address": "無法分享電子郵件",
"Revoke": "撤回",
"Discovery options will appear once you have added an email above.": "當您在上面加入電子郵件時將會出現探索選項。", "Discovery options will appear once you have added an email above.": "當您在上面加入電子郵件時將會出現探索選項。",
"Unable to revoke sharing for phone number": "無法撤回電話號碼的分享", "Unable to revoke sharing for phone number": "無法撤回電話號碼的分享",
"Unable to share phone number": "無法分享電話號碼", "Unable to share phone number": "無法分享電話號碼",
@ -926,7 +913,6 @@
"A text message has been sent to +%(msisdn)s. Please enter the verification code it contains.": "文字訊息將會被傳送到 +%(msisdn)s。請輸入其中包含的驗證碼。", "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains.": "文字訊息將會被傳送到 +%(msisdn)s。請輸入其中包含的驗證碼。",
"Checking server": "正在檢查伺服器", "Checking server": "正在檢查伺服器",
"Disconnect from the identity server <idserver />?": "要中斷與身分伺服器 <idserver /> 的連線嗎?", "Disconnect from the identity server <idserver />?": "要中斷與身分伺服器 <idserver /> 的連線嗎?",
"Disconnect": "中斷連線",
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "您目前使用 <server></server> 來尋找聯絡人,以及被您的聯絡人找到。可以在下方變更身分伺服器。", "You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "您目前使用 <server></server> 來尋找聯絡人,以及被您的聯絡人找到。可以在下方變更身分伺服器。",
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "您目前未使用身分伺服器。若想要尋找聯絡人,或被您認識的聯絡人找到,請在下方加入伺服器。", "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "您目前未使用身分伺服器。若想要尋找聯絡人,或被您認識的聯絡人找到,請在下方加入伺服器。",
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "與您的身分伺服器中斷連線後,其他使用者就無法再探索到您,您也不能透過電子郵件地址或電話號碼邀請其他人。", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "與您的身分伺服器中斷連線後,其他使用者就無法再探索到您,您也不能透過電子郵件地址或電話號碼邀請其他人。",
@ -967,7 +953,6 @@
"Error changing power level": "變更權限等級錯誤", "Error changing power level": "變更權限等級錯誤",
"An error occurred changing the user's power level. Ensure you have sufficient permissions and try again.": "變更使用者的權限等級時遇到錯誤。請確定您有足夠的權限並再試一次。", "An error occurred changing the user's power level. Ensure you have sufficient permissions and try again.": "變更使用者的權限等級時遇到錯誤。請確定您有足夠的權限並再試一次。",
"Verify the link in your inbox": "驗證您收件匣中的連結", "Verify the link in your inbox": "驗證您收件匣中的連結",
"Complete": "完成",
"No recent messages by %(user)s found": "找不到 %(user)s 最近的訊息", "No recent messages by %(user)s found": "找不到 %(user)s 最近的訊息",
"Try scrolling up in the timeline to see if there are any earlier ones.": "試著在時間軸上捲動以檢視有沒有較早的。", "Try scrolling up in the timeline to see if there are any earlier ones.": "試著在時間軸上捲動以檢視有沒有較早的。",
"Remove recent messages by %(user)s": "移除 %(user)s 最近的訊息", "Remove recent messages by %(user)s": "移除 %(user)s 最近的訊息",
@ -1075,7 +1060,6 @@
"You have not ignored anyone.": "您尚未忽略任何人。", "You have not ignored anyone.": "您尚未忽略任何人。",
"You are currently ignoring:": "您目前忽略了:", "You are currently ignoring:": "您目前忽略了:",
"You are not subscribed to any lists": "您尚未訂閱任何清單", "You are not subscribed to any lists": "您尚未訂閱任何清單",
"Unsubscribe": "取消訂閱",
"View rules": "檢視規則", "View rules": "檢視規則",
"You are currently subscribed to:": "您目前已訂閱:", "You are currently subscribed to:": "您目前已訂閱:",
"⚠ These settings are meant for advanced users.": "⚠ 這些設定適用於進階使用者。", "⚠ These settings are meant for advanced users.": "⚠ 這些設定適用於進階使用者。",
@ -1087,9 +1071,7 @@
"Subscribed lists": "訂閱清單", "Subscribed lists": "訂閱清單",
"Subscribing to a ban list will cause you to join it!": "訂閱封鎖清單會讓您加入它!", "Subscribing to a ban list will cause you to join it!": "訂閱封鎖清單會讓您加入它!",
"If this isn't what you want, please use a different tool to ignore users.": "如果您不想這樣,請使用其他工具來忽略使用者。", "If this isn't what you want, please use a different tool to ignore users.": "如果您不想這樣,請使用其他工具來忽略使用者。",
"Subscribe": "訂閱",
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "您已忽略這個使用者,所以他們的訊息會隱藏。<a>無論如何都顯示。</a>", "You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "您已忽略這個使用者,所以他們的訊息會隱藏。<a>無論如何都顯示。</a>",
"Custom (%(level)s)": "自訂 (%(level)s)",
"Trusted": "受信任", "Trusted": "受信任",
"Not trusted": "未受信任", "Not trusted": "未受信任",
"Messages in this room are end-to-end encrypted.": "此聊天室內的訊息有端對端加密。", "Messages in this room are end-to-end encrypted.": "此聊天室內的訊息有端對端加密。",
@ -1170,7 +1152,6 @@
"Failed to find the following users": "找不到以下使用者", "Failed to find the following users": "找不到以下使用者",
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "以下使用者可能不存在或無效,且無法被邀請:%(csvNames)s", "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "以下使用者可能不存在或無效,且無法被邀請:%(csvNames)s",
"Lock": "鎖定", "Lock": "鎖定",
"Restore": "還原",
"a few seconds ago": "數秒前", "a few seconds ago": "數秒前",
"about a minute ago": "大約一分鐘前", "about a minute ago": "大約一分鐘前",
"%(num)s minutes ago": "%(num)s 分鐘前", "%(num)s minutes ago": "%(num)s 分鐘前",
@ -1219,7 +1200,6 @@
"They match": "它們相符", "They match": "它們相符",
"They don't match": "它們不相符", "They don't match": "它們不相符",
"To be secure, do this in person or use a trusted way to communicate.": "為了確保安全,請面對面進行驗證,或使用其他方式來通訊。", "To be secure, do this in person or use a trusted way to communicate.": "為了確保安全,請面對面進行驗證,或使用其他方式來通訊。",
"Review": "評論",
"This bridge was provisioned by <user />.": "此橋接是由 <user /> 設定。", "This bridge was provisioned by <user />.": "此橋接是由 <user /> 設定。",
"Show less": "顯示更少", "Show less": "顯示更少",
"Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "您的帳號在秘密儲存空間中有交叉簽署的身分,但尚未被此工作階段信任。", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "您的帳號在秘密儲存空間中有交叉簽署的身分,但尚未被此工作階段信任。",
@ -1268,7 +1248,6 @@
"Restore your key backup to upgrade your encryption": "復原您的金鑰備份以升級您的加密", "Restore your key backup to upgrade your encryption": "復原您的金鑰備份以升級您的加密",
"Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "升級此工作階段以驗證其他工作階段,給予其他工作階段存取加密訊息的權限,並為其他使用者標記它們為受信任。", "Upgrade this session to allow it to verify other sessions, granting them access to encrypted messages and marking them as trusted for other users.": "升級此工作階段以驗證其他工作階段,給予其他工作階段存取加密訊息的權限,並為其他使用者標記它們為受信任。",
"This session is encrypting history using the new recovery method.": "此工作階段正在使用新的復原方法加密歷史。", "This session is encrypting history using the new recovery method.": "此工作階段正在使用新的復原方法加密歷史。",
"Mod": "版主",
"Encryption not enabled": "加密未啟用", "Encryption not enabled": "加密未啟用",
"The encryption used by this room isn't supported.": "不支援此聊天室使用的加密。", "The encryption used by this room isn't supported.": "不支援此聊天室使用的加密。",
"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.": "驗證此裝置,並標記為可受信任。由您將裝置標記為可受信任後,可讓聊天夥伴傳送端到端加密訊息時能更加放心。", "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.": "驗證此裝置,並標記為可受信任。由您將裝置標記為可受信任後,可讓聊天夥伴傳送端到端加密訊息時能更加放心。",
@ -1374,7 +1353,6 @@
"Close dialog or context menu": "關閉對話框或內容選單", "Close dialog or context menu": "關閉對話框或內容選單",
"Activate selected button": "啟動已選取按鈕", "Activate selected button": "啟動已選取按鈕",
"Cancel autocomplete": "取消自動完成", "Cancel autocomplete": "取消自動完成",
"Space": "群組空間",
"Confirm by comparing the following with the User Settings in your other session:": "透過將下列內容與您其他工作階段中的「使用者設定」所顯示的內容來確認:", "Confirm by comparing the following with the User Settings in your other session:": "透過將下列內容與您其他工作階段中的「使用者設定」所顯示的內容來確認:",
"Confirm this user's session by comparing the following with their User Settings:": "將以下內容與對方的「使用者設定」當中顯示的內容進行比對,來確認對方的工作階段:", "Confirm this user's session by comparing the following with their User Settings:": "將以下內容與對方的「使用者設定」當中顯示的內容進行比對,來確認對方的工作階段:",
"If they don't match, the security of your communication may be compromised.": "如果它們不相符,則可能會威脅到您的通訊安全。", "If they don't match, the security of your communication may be compromised.": "如果它們不相符,則可能會威脅到您的通訊安全。",
@ -1569,7 +1547,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.": "如果聊天室僅用於與在您的家伺服器上的內部團隊協作的話,可以啟用此功能。這無法在稍後變更。", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "如果聊天室僅用於與在您的家伺服器上的內部團隊協作的話,可以啟用此功能。這無法在稍後變更。",
"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.": "如果聊天室會用於與有自己家伺服器的外部團隊協作的話,可以停用此功能。這無法在稍後變更。", "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.": "如果聊天室會用於與有自己家伺服器的外部團隊協作的話,可以停用此功能。這無法在稍後變更。",
"Block anyone not part of %(serverName)s from ever joining this room.": "阻止任何不屬於 %(serverName)s 的人加入此聊天室。", "Block anyone not part of %(serverName)s from ever joining this room.": "阻止任何不屬於 %(serverName)s 的人加入此聊天室。",
"Privacy": "隱私",
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "把 ( ͡° ͜ʖ ͡°) 加在純文字訊息前", "Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "把 ( ͡° ͜ʖ ͡°) 加在純文字訊息前",
"Unknown App": "未知的應用程式", "Unknown App": "未知的應用程式",
"Not encrypted": "未加密", "Not encrypted": "未加密",
@ -1908,7 +1885,6 @@
"other": "使用 %(size)s 來儲存來自 %(rooms)s 個聊天室的訊息,在本機安全地快取已加密的訊息以使其出現在搜尋結果中。" "other": "使用 %(size)s 來儲存來自 %(rooms)s 個聊天室的訊息,在本機安全地快取已加密的訊息以使其出現在搜尋結果中。"
}, },
"Decline All": "全部拒絕", "Decline All": "全部拒絕",
"Approve": "批准",
"This widget would like to:": "這個小工具想要:", "This widget would like to:": "這個小工具想要:",
"Approve widget permissions": "批准小工具權限", "Approve widget permissions": "批准小工具權限",
"Use Ctrl + Enter to send a message": "使用 Ctrl + Enter 來傳送訊息", "Use Ctrl + Enter to send a message": "使用 Ctrl + Enter 來傳送訊息",
@ -2098,8 +2074,6 @@
"Who are you working with?": "您與誰一起工作?", "Who are you working with?": "您與誰一起工作?",
"Skip for now": "現在跳過", "Skip for now": "現在跳過",
"Failed to create initial space rooms": "無法建立第一個聊天空間中的聊天室", "Failed to create initial space rooms": "無法建立第一個聊天空間中的聊天室",
"Support": "支援",
"Random": "隨機",
"Welcome to <name/>": "歡迎加入 <name/>", "Welcome to <name/>": "歡迎加入 <name/>",
"%(count)s members": { "%(count)s members": {
"one": "%(count)s 位成員", "one": "%(count)s 位成員",
@ -2222,8 +2196,6 @@
"Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "挑選要新增的聊天室或對話。這是專屬於您的空間,不會有人被通知。您稍後可以再新增更多。", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "挑選要新增的聊天室或對話。這是專屬於您的空間,不會有人被通知。您稍後可以再新增更多。",
"What do you want to organise?": "您想要整理什麼?", "What do you want to organise?": "您想要整理什麼?",
"You have no ignored users.": "您沒有忽略的使用者。", "You have no ignored users.": "您沒有忽略的使用者。",
"Play": "播放",
"Pause": "暫停",
"Select a room below first": "首先選取一個聊天室", "Select a room below first": "首先選取一個聊天室",
"Join the beta": "加入 Beta 測試", "Join the beta": "加入 Beta 測試",
"Leave the beta": "離開 Beta 測試", "Leave the beta": "離開 Beta 測試",
@ -2240,7 +2212,6 @@
"We were unable to access your microphone. Please check your browser settings and try again.": "我們無法存取您的麥克風。請檢查您的瀏覽器設定並再試一次。", "We were unable to access your microphone. Please check your browser settings and try again.": "我們無法存取您的麥克風。請檢查您的瀏覽器設定並再試一次。",
"Unable to access your microphone": "無法存取您的麥克風", "Unable to access your microphone": "無法存取您的麥克風",
"Your access token gives full access to your account. Do not share it with anyone.": "您的存取權杖可提供您帳號完整的存取權限。請勿分享給任何人。", "Your access token gives full access to your account. Do not share it with anyone.": "您的存取權杖可提供您帳號完整的存取權限。請勿分享給任何人。",
"Access Token": "存取權杖",
"Please enter a name for the space": "請輸入聊天空間名稱", "Please enter a name for the space": "請輸入聊天空間名稱",
"Connecting": "連線中", "Connecting": "連線中",
"Message search initialisation failed": "訊息搜尋初始化失敗", "Message search initialisation failed": "訊息搜尋初始化失敗",
@ -2594,7 +2565,6 @@
"Joining": "正在加入", "Joining": "正在加入",
"Use high contrast": "使用高對比", "Use high contrast": "使用高對比",
"Light high contrast": "亮色高對比", "Light high contrast": "亮色高對比",
"Rename": "重新命名",
"Select all": "全部選取", "Select all": "全部選取",
"Deselect all": "取消選取", "Deselect all": "取消選取",
"Sign out devices": { "Sign out devices": {
@ -3257,7 +3227,6 @@
"We're creating a room with %(names)s": "正在建立包含 %(names)s 的聊天室", "We're creating a room with %(names)s": "正在建立包含 %(names)s 的聊天室",
"Your server doesn't support disabling sending read receipts.": "您的伺服器不支援停用傳送讀取回條。", "Your server doesn't support disabling sending read receipts.": "您的伺服器不支援停用傳送讀取回條。",
"Share your activity and status with others.": "與他人分享您的活動與狀態。", "Share your activity and status with others.": "與他人分享您的活動與狀態。",
"Presence": "出席",
"Send read receipts": "傳送讀取回條", "Send read receipts": "傳送讀取回條",
"Last activity": "上次活動", "Last activity": "上次活動",
"Sessions": "工作階段", "Sessions": "工作階段",
@ -3277,7 +3246,6 @@
"Welcome": "歡迎", "Welcome": "歡迎",
"Show shortcut to welcome checklist above the room list": "在聊天室清單上方顯示歡迎新人檢核表的捷徑", "Show shortcut to welcome checklist above the room list": "在聊天室清單上方顯示歡迎新人檢核表的捷徑",
"Inactive sessions": "不活躍的工作階段", "Inactive sessions": "不活躍的工作階段",
"View all": "檢視全部",
"Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "請驗證您的工作階段來加強通訊安全,或將您不認識,或已不再使用的工作階段登出。", "Verify your sessions for enhanced secure messaging or sign out from those you don't recognize or use anymore.": "請驗證您的工作階段來加強通訊安全,或將您不認識,或已不再使用的工作階段登出。",
"Unverified sessions": "未驗證的工作階段", "Unverified sessions": "未驗證的工作階段",
"Security recommendations": "安全建議", "Security recommendations": "安全建議",
@ -3296,7 +3264,6 @@
"Interactively verify by emoji": "透過表情符號互動來驗證", "Interactively verify by emoji": "透過表情符號互動來驗證",
"Manually verify by text": "透過文字手動驗證", "Manually verify by text": "透過文字手動驗證",
"Dont miss a thing by taking %(brand)s with you": "隨身攜帶 %(brand)s不錯過任何事情", "Dont miss a thing by taking %(brand)s with you": "隨身攜帶 %(brand)s不錯過任何事情",
"Show": "顯示",
"<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>不建議為公開聊天室新增加密。</b>任何人都可以找到並加入公開聊天室,所以任何人都可以閱讀其中的訊息。您將無法享受加密帶來的任何好處,且您將無法在稍後將其關閉。在公開聊天室中加密訊息將會讓接收與傳送訊息變慢。", "<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>不建議為公開聊天室新增加密。</b>任何人都可以找到並加入公開聊天室,所以任何人都可以閱讀其中的訊息。您將無法享受加密帶來的任何好處,且您將無法在稍後將其關閉。在公開聊天室中加密訊息將會讓接收與傳送訊息變慢。",
"Empty room (was %(oldName)s)": "空的聊天室(曾為 %(oldName)s", "Empty room (was %(oldName)s)": "空的聊天室(曾為 %(oldName)s",
"Inviting %(user)s and %(count)s others": { "Inviting %(user)s and %(count)s others": {
@ -3700,7 +3667,6 @@
"Email summary": "電子郵件摘要", "Email summary": "電子郵件摘要",
"Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "選取您要將摘要傳送到的電子郵件地址。請在<button>一般</button>中管理您的電子郵件地址。", "Select which emails you want to send summaries to. Manage your emails in <button>General</button>.": "選取您要將摘要傳送到的電子郵件地址。請在<button>一般</button>中管理您的電子郵件地址。",
"Mentions and Keywords only": "僅提及與關鍵字", "Mentions and Keywords only": "僅提及與關鍵字",
"Proceed": "繼續",
"Show message preview in desktop notification": "在桌面通知顯示訊息預覽", "Show message preview in desktop notification": "在桌面通知顯示訊息預覽",
"I want to be notified for (Default Setting)": "我想收到相關的通知(預設設定)", "I want to be notified for (Default Setting)": "我想收到相關的通知(預設設定)",
"Your server requires encryption to be disabled.": "您的伺服器必須停用加密。", "Your server requires encryption to be disabled.": "您的伺服器必須停用加密。",
@ -3815,7 +3781,22 @@
"dark": "暗色", "dark": "暗色",
"beta": "Beta", "beta": "Beta",
"attachment": "附件", "attachment": "附件",
"appearance": "外觀" "appearance": "外觀",
"guest": "訪客",
"legal": "法律",
"credits": "感謝",
"faq": "常見問答集",
"access_token": "存取權杖",
"preferences": "偏好設定",
"presence": "出席",
"timeline": "時間軸",
"privacy": "隱私",
"camera": "相機",
"microphone": "麥克風",
"emoji": "表情符號",
"random": "隨機",
"support": "支援",
"space": "群組空間"
}, },
"action": { "action": {
"continue": "繼續", "continue": "繼續",
@ -3887,7 +3868,24 @@
"back": "上一步", "back": "上一步",
"apply": "套用", "apply": "套用",
"add": "新增", "add": "新增",
"accept": "接受" "accept": "接受",
"disconnect": "中斷連線",
"change": "變更",
"subscribe": "訂閱",
"unsubscribe": "取消訂閱",
"approve": "批准",
"proceed": "繼續",
"complete": "完成",
"revoke": "撤回",
"rename": "重新命名",
"view_all": "檢視全部",
"show_all": "顯示全部",
"show": "顯示",
"review": "評論",
"restore": "還原",
"play": "播放",
"pause": "暫停",
"register": "註冊"
}, },
"a11y": { "a11y": {
"user_menu": "使用者選單" "user_menu": "使用者選單"
@ -3974,7 +3972,9 @@
"default": "預設", "default": "預設",
"restricted": "已限制", "restricted": "已限制",
"moderator": "版主", "moderator": "版主",
"admin": "管理員" "admin": "管理員",
"custom": "自訂 (%(level)s)",
"mod": "版主"
}, },
"bug_reporting": { "bug_reporting": {
"introduction": "若您透過 GitHub 遞交錯誤,除錯紀錄檔可以協助我們追蹤問題。 ", "introduction": "若您透過 GitHub 遞交錯誤,除錯紀錄檔可以協助我們追蹤問題。 ",

View file

@ -63,7 +63,7 @@ export class OwnProfileStore extends AsyncStoreWithClient<IState> {
if (!this.matrixClient) return this.state.displayName || null; if (!this.matrixClient) return this.state.displayName || null;
if (this.matrixClient.isGuest()) { if (this.matrixClient.isGuest()) {
return _t("Guest"); return _t("common|guest");
} else if (this.state.displayName) { } else if (this.state.displayName) {
return this.state.displayName; return this.state.displayName;
} else { } else {

View file

@ -44,7 +44,7 @@ export const showToast = (deviceIds: Set<string>): void => {
icon: "verification_warning", icon: "verification_warning",
props: { props: {
description: _t("Review to ensure your account is safe"), description: _t("Review to ensure your account is safe"),
acceptLabel: _t("Review"), acceptLabel: _t("action|review"),
onAccept, onAccept,
rejectLabel: _t("Later"), rejectLabel: _t("Later"),
onReject, onReject,

View file

@ -47,7 +47,7 @@ export const showToast = (
{errorText} {contactText} {errorText} {contactText}
</React.Fragment> </React.Fragment>
), ),
acceptLabel: _t("Ok"), acceptLabel: _t("action|ok"),
onAccept: () => { onAccept: () => {
hideToast(); hideToast();
if (onHideToast) onHideToast(); if (onHideToast) onHideToast();