Align common_*
strings with Element X project in Localazy (#11434)
This commit is contained in:
parent
1a49a38f04
commit
c40141cc4f
132 changed files with 1491 additions and 1247 deletions
|
@ -77,7 +77,7 @@ export default class AsyncWrapper extends React.Component<IProps, IState> {
|
||||||
return <Component {...this.props} />;
|
return <Component {...this.props} />;
|
||||||
} else if (this.state.error) {
|
} else if (this.state.error) {
|
||||||
return (
|
return (
|
||||||
<BaseDialog onFinished={this.props.onFinished} title={_t("Error")}>
|
<BaseDialog onFinished={this.props.onFinished} title={_t("common|error")}>
|
||||||
{_t("Unable to load! Check your network connectivity and try again.")}
|
{_t("Unable to load! Check your network connectivity and try again.")}
|
||||||
<DialogButtons
|
<DialogButtons
|
||||||
primaryButton={_t("Dismiss")}
|
primaryButton={_t("Dismiss")}
|
||||||
|
|
|
@ -586,7 +586,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent<IProp
|
||||||
<div>
|
<div>
|
||||||
<Field
|
<Field
|
||||||
type="password"
|
type="password"
|
||||||
label={_t("Password")}
|
label={_t("common|password")}
|
||||||
value={this.state.accountPassword}
|
value={this.state.accountPassword}
|
||||||
onChange={this.onAccountPasswordChange}
|
onChange={this.onAccountPasswordChange}
|
||||||
forceValidity={this.state.accountPasswordCorrect === false ? false : undefined}
|
forceValidity={this.state.accountPasswordCorrect === false ? false : undefined}
|
||||||
|
|
|
@ -1990,7 +1990,7 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
|
||||||
|
|
||||||
this.subTitleStatus = "";
|
this.subTitleStatus = "";
|
||||||
if (state === SyncState.Error) {
|
if (state === SyncState.Error) {
|
||||||
this.subTitleStatus += `[${_t("Offline")}] `;
|
this.subTitleStatus += `[${_t("common|offline")}] `;
|
||||||
}
|
}
|
||||||
if (numUnreadRooms > 0) {
|
if (numUnreadRooms > 0) {
|
||||||
this.subTitleStatus += `[${numUnreadRooms}]`;
|
this.subTitleStatus += `[${numUnreadRooms}]`;
|
||||||
|
|
|
@ -199,7 +199,7 @@ export const RoomSearchView = forwardRef<ScrollPanel, Props>(
|
||||||
if (!results?.results?.length) {
|
if (!results?.results?.length) {
|
||||||
ret.push(
|
ret.push(
|
||||||
<li key="search-top-marker">
|
<li key="search-top-marker">
|
||||||
<h2 className="mx_RoomView_topMarker">{_t("No results")}</h2>
|
<h2 className="mx_RoomView_topMarker">{_t("common|no_results")}</h2>
|
||||||
</li>,
|
</li>,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -253,7 +253,7 @@ const SpaceLanding: React.FC<{ space: Room }> = ({ space }) => {
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
showSpaceSettings(space);
|
showSpaceSettings(space);
|
||||||
}}
|
}}
|
||||||
title={_t("Settings")}
|
title={_t("common|settings")}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -313,7 +313,7 @@ const SpaceSetupFirstRooms: React.FC<{
|
||||||
key={name}
|
key={name}
|
||||||
name={name}
|
name={name}
|
||||||
type="text"
|
type="text"
|
||||||
label={_t("Room name")}
|
label={_t("common|room_name")}
|
||||||
placeholder={placeholders[i]}
|
placeholder={placeholders[i]}
|
||||||
value={roomNames[i]}
|
value={roomNames[i]}
|
||||||
onChange={(ev: React.ChangeEvent<HTMLInputElement>) => setRoomName(i, ev.target.value)}
|
onChange={(ev: React.ChangeEvent<HTMLInputElement>) => setRoomName(i, ev.target.value)}
|
||||||
|
|
|
@ -378,7 +378,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
|
||||||
{homeButton}
|
{homeButton}
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
iconClassName="mx_UserMenu_iconSettings"
|
iconClassName="mx_UserMenu_iconSettings"
|
||||||
label={_t("Settings")}
|
label={_t("common|settings")}
|
||||||
onClick={(e) => this.onSettingsOpen(e)}
|
onClick={(e) => this.onSettingsOpen(e)}
|
||||||
/>
|
/>
|
||||||
{feedbackButton}
|
{feedbackButton}
|
||||||
|
|
|
@ -234,7 +234,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
|
||||||
{error}
|
{error}
|
||||||
<Field
|
<Field
|
||||||
type="password"
|
type="password"
|
||||||
label={_t("Password")}
|
label={_t("common|password")}
|
||||||
onChange={this.onPasswordChange}
|
onChange={this.onPasswordChange}
|
||||||
value={this.state.password}
|
value={this.state.password}
|
||||||
disabled={this.state.busy}
|
disabled={this.state.busy}
|
||||||
|
|
|
@ -175,7 +175,7 @@ export class PasswordAuthEntry extends React.Component<IAuthEntryProps, IPasswor
|
||||||
className={passwordBoxClass}
|
className={passwordBoxClass}
|
||||||
type="password"
|
type="password"
|
||||||
name="passwordField"
|
name="passwordField"
|
||||||
label={_t("Password")}
|
label={_t("common|password")}
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
value={this.state.password}
|
value={this.state.password}
|
||||||
onChange={this.onPasswordFieldChange}
|
onChange={this.onPasswordFieldChange}
|
||||||
|
|
|
@ -211,7 +211,7 @@ export default class LoginWithQRFlow extends React.Component<IProps> {
|
||||||
buttons = this.cancelButton();
|
buttons = this.cancelButton();
|
||||||
break;
|
break;
|
||||||
case Phase.Verifying:
|
case Phase.Verifying:
|
||||||
title = _t("Success");
|
title = _t("common|success");
|
||||||
centreTitle = true;
|
centreTitle = true;
|
||||||
main = this.simpleSpinner(_t("Completing set up of your new device"));
|
main = this.simpleSpinner(_t("Completing set up of your new device"));
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -45,7 +45,7 @@ interface IProps extends Omit<IInputProps, "onValidate" | "element"> {
|
||||||
|
|
||||||
class PassphraseField extends PureComponent<IProps> {
|
class PassphraseField extends PureComponent<IProps> {
|
||||||
public static defaultProps = {
|
public static defaultProps = {
|
||||||
label: _td("Password"),
|
label: _td("common|password"),
|
||||||
labelEnterPassword: _td("Enter password"),
|
labelEnterPassword: _td("Enter password"),
|
||||||
labelStrongPassword: _td("Nice, strong password!"),
|
labelStrongPassword: _td("Nice, strong password!"),
|
||||||
labelAllowedButUnsafe: _td("Password is allowed, but unsafe"),
|
labelAllowedButUnsafe: _td("Password is allowed, but unsafe"),
|
||||||
|
|
|
@ -308,8 +308,8 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
|
||||||
autoComplete="username"
|
autoComplete="username"
|
||||||
key="username_input"
|
key="username_input"
|
||||||
type="text"
|
type="text"
|
||||||
label={_t("Username")}
|
label={_t("common|username")}
|
||||||
placeholder={_t("Username").toLocaleLowerCase()}
|
placeholder={_t("common|username").toLocaleLowerCase()}
|
||||||
value={this.props.username}
|
value={this.props.username}
|
||||||
onChange={this.onUsernameChanged}
|
onChange={this.onUsernameChanged}
|
||||||
onBlur={this.onUsernameBlur}
|
onBlur={this.onUsernameBlur}
|
||||||
|
@ -404,7 +404,7 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
|
||||||
disabled={this.props.busy}
|
disabled={this.props.busy}
|
||||||
>
|
>
|
||||||
<option key={LoginField.MatrixId} value={LoginField.MatrixId}>
|
<option key={LoginField.MatrixId} value={LoginField.MatrixId}>
|
||||||
{_t("Username")}
|
{_t("common|username")}
|
||||||
</option>
|
</option>
|
||||||
<option key={LoginField.Email} value={LoginField.Email}>
|
<option key={LoginField.Email} value={LoginField.Email}>
|
||||||
{_t("Email address")}
|
{_t("Email address")}
|
||||||
|
@ -428,7 +428,7 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
|
||||||
autoComplete="current-password"
|
autoComplete="current-password"
|
||||||
type="password"
|
type="password"
|
||||||
name="password"
|
name="password"
|
||||||
label={_t("Password")}
|
label={_t("common|password")}
|
||||||
value={this.state.password}
|
value={this.state.password}
|
||||||
onChange={this.onPasswordChanged}
|
onChange={this.onPasswordChanged}
|
||||||
disabled={this.props.busy}
|
disabled={this.props.busy}
|
||||||
|
|
|
@ -525,8 +525,8 @@ export default class RegistrationForm extends React.PureComponent<IProps, IState
|
||||||
ref={(field) => (this[RegistrationField.Username] = field)}
|
ref={(field) => (this[RegistrationField.Username] = field)}
|
||||||
type="text"
|
type="text"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
label={_t("Username")}
|
label={_t("common|username")}
|
||||||
placeholder={_t("Username").toLocaleLowerCase()}
|
placeholder={_t("common|username").toLocaleLowerCase()}
|
||||||
value={this.state.username}
|
value={this.state.username}
|
||||||
onChange={this.onUsernameChange}
|
onChange={this.onUsernameChange}
|
||||||
onValidate={this.onUsernameValidate}
|
onValidate={this.onUsernameValidate}
|
||||||
|
|
|
@ -67,7 +67,7 @@ function tooltipText(variant: Icon): string | undefined {
|
||||||
case Icon.PresenceAway:
|
case Icon.PresenceAway:
|
||||||
return _t("Away");
|
return _t("Away");
|
||||||
case Icon.PresenceOffline:
|
case Icon.PresenceOffline:
|
||||||
return _t("Offline");
|
return _t("common|offline");
|
||||||
case Icon.PresenceBusy:
|
case Icon.PresenceBusy:
|
||||||
return _t("Busy");
|
return _t("Busy");
|
||||||
}
|
}
|
||||||
|
|
|
@ -186,7 +186,7 @@ const RoomContextMenu: React.FC<IProps> = ({ room, onFinished, ...props }) => {
|
||||||
iconClassName = "mx_RoomTile_iconNotificationsMentionsKeywords";
|
iconClassName = "mx_RoomTile_iconNotificationsMentionsKeywords";
|
||||||
break;
|
break;
|
||||||
case RoomNotifState.Mute:
|
case RoomNotifState.Mute:
|
||||||
notificationLabel = _t("Mute");
|
notificationLabel = _t("common|mute");
|
||||||
iconClassName = "mx_RoomTile_iconNotificationsNone";
|
iconClassName = "mx_RoomTile_iconNotificationsNone";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -228,7 +228,7 @@ const RoomContextMenu: React.FC<IProps> = ({ room, onFinished, ...props }) => {
|
||||||
onFinished();
|
onFinished();
|
||||||
PosthogTrackers.trackInteraction("WebRoomHeaderContextMenuPeopleItem", ev);
|
PosthogTrackers.trackInteraction("WebRoomHeaderContextMenuPeopleItem", ev);
|
||||||
}}
|
}}
|
||||||
label={_t("People")}
|
label={_t("common|people")}
|
||||||
iconClassName="mx_RoomTile_iconPeople"
|
iconClassName="mx_RoomTile_iconPeople"
|
||||||
>
|
>
|
||||||
<span className="mx_IconizedContextMenu_sublabel">{room.getJoinedMemberCount()}</span>
|
<span className="mx_IconizedContextMenu_sublabel">{room.getJoinedMemberCount()}</span>
|
||||||
|
@ -390,7 +390,7 @@ const RoomContextMenu: React.FC<IProps> = ({ room, onFinished, ...props }) => {
|
||||||
onFinished();
|
onFinished();
|
||||||
PosthogTrackers.trackInteraction("WebRoomHeaderContextMenuSettingsItem", ev);
|
PosthogTrackers.trackInteraction("WebRoomHeaderContextMenuSettingsItem", ev);
|
||||||
}}
|
}}
|
||||||
label={_t("Settings")}
|
label={_t("common|settings")}
|
||||||
iconClassName="mx_RoomTile_iconSettings"
|
iconClassName="mx_RoomTile_iconSettings"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
@ -172,7 +172,7 @@ export const RoomGeneralContextMenu: React.FC<RoomGeneralContextMenuProps> = ({
|
||||||
}),
|
}),
|
||||||
onPostSettingsClick,
|
onPostSettingsClick,
|
||||||
)}
|
)}
|
||||||
label={_t("Settings")}
|
label={_t("common|settings")}
|
||||||
iconClassName="mx_RoomGeneralContextMenu_iconSettings"
|
iconClassName="mx_RoomGeneralContextMenu_iconSettings"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -90,7 +90,7 @@ const SpaceContextMenu: React.FC<IProps> = ({ space, hideHeader, onFinished, ...
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
data-testid="settings-option"
|
data-testid="settings-option"
|
||||||
iconClassName="mx_SpacePanel_iconSettings"
|
iconClassName="mx_SpacePanel_iconSettings"
|
||||||
label={_t("Settings")}
|
label={_t("common|settings")}
|
||||||
onClick={onSettingsClick}
|
onClick={onSettingsClick}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -348,7 +348,9 @@ export const AddExistingToSpace: React.FC<IAddExistingToSpaceProps> = ({
|
||||||
|
|
||||||
{dms.length > 0 && dmsRenderer ? dmsRenderer(dms, selectedToAdd, dmsScrollState, onChange) : null}
|
{dms.length > 0 && dmsRenderer ? dmsRenderer(dms, selectedToAdd, dmsScrollState, onChange) : null}
|
||||||
|
|
||||||
{noResults ? <span className="mx_AddExistingToSpace_noResults">{_t("No results")}</span> : undefined}
|
{noResults ? (
|
||||||
|
<span className="mx_AddExistingToSpace_noResults">{_t("common|no_results")}</span>
|
||||||
|
) : undefined}
|
||||||
</AutoHideScrollbar>
|
</AutoHideScrollbar>
|
||||||
|
|
||||||
<div className="mx_AddExistingToSpace_footer">{footer}</div>
|
<div className="mx_AddExistingToSpace_footer">{footer}</div>
|
||||||
|
|
|
@ -87,7 +87,7 @@ export default class ConfirmAndWaitRedactDialog extends React.PureComponent<IPro
|
||||||
return (
|
return (
|
||||||
<ErrorDialog
|
<ErrorDialog
|
||||||
onFinished={this.props.onFinished}
|
onFinished={this.props.onFinished}
|
||||||
title={_t("Error")}
|
title={_t("common|error")}
|
||||||
description={_t("You cannot delete this message. (%(code)s)", { code })}
|
description={_t("You cannot delete this message. (%(code)s)", { code })}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -104,7 +104,7 @@ export function createRedactEventDialog({
|
||||||
if (typeof code !== "undefined") {
|
if (typeof code !== "undefined") {
|
||||||
// display error message stating you couldn't delete this.
|
// display error message stating you couldn't delete this.
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("You cannot delete this message. (%(code)s)", { code }),
|
description: _t("You cannot delete this message. (%(code)s)", { code }),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -188,7 +188,7 @@ export default class DeactivateAccountDialog extends React.Component<IProps, ISt
|
||||||
error = <div className="error">{this.state.errStr}</div>;
|
error = <div className="error">{this.state.errStr}</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
let auth = <div>{_t("Loading…")}</div>;
|
let auth = <div>{_t("common|loading")}</div>;
|
||||||
if (this.state.authData && this.state.authEnabled) {
|
if (this.state.authData && this.state.authEnabled) {
|
||||||
auth = (
|
auth = (
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -74,7 +74,7 @@ export default class ErrorDialog extends React.Component<IProps, IState> {
|
||||||
<BaseDialog
|
<BaseDialog
|
||||||
className="mx_ErrorDialog"
|
className="mx_ErrorDialog"
|
||||||
onFinished={this.props.onFinished}
|
onFinished={this.props.onFinished}
|
||||||
title={this.props.title || _t("Error")}
|
title={this.props.title || _t("common|error")}
|
||||||
headerImage={this.props.headerImage}
|
headerImage={this.props.headerImage}
|
||||||
contentId="mx_Dialog_content"
|
contentId="mx_Dialog_content"
|
||||||
>
|
>
|
||||||
|
|
|
@ -121,7 +121,7 @@ const FeedbackDialog: React.FC<IProps> = (props: IProps) => {
|
||||||
description={
|
description={
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<div className="mx_FeedbackDialog_section mx_FeedbackDialog_reportBug">
|
<div className="mx_FeedbackDialog_section mx_FeedbackDialog_reportBug">
|
||||||
<h3>{_t("Report a bug")}</h3>
|
<h3>{_t("common|report_a_bug")}</h3>
|
||||||
<p>
|
<p>
|
||||||
{_t(
|
{_t(
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.",
|
||||||
|
|
|
@ -276,7 +276,7 @@ const ForwardDialog: React.FC<IProps> = ({ matrixClient: cli, event, permalinkCr
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BaseDialog
|
<BaseDialog
|
||||||
title={_t("Forward message")}
|
title={_t("common|forward_message")}
|
||||||
className="mx_ForwardDialog"
|
className="mx_ForwardDialog"
|
||||||
contentId="mx_ForwardList"
|
contentId="mx_ForwardList"
|
||||||
onFinished={onFinished}
|
onFinished={onFinished}
|
||||||
|
@ -329,7 +329,7 @@ const ForwardDialog: React.FC<IProps> = ({ matrixClient: cli, event, permalinkCr
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<span className="mx_ForwardList_noResults">{_t("No results")}</span>
|
<span className="mx_ForwardList_noResults">{_t("common|no_results")}</span>
|
||||||
)}
|
)}
|
||||||
</AutoHideScrollbar>
|
</AutoHideScrollbar>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -52,7 +52,7 @@ export default class IntegrationsDisabledDialog extends React.Component<IProps>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<DialogButtons
|
<DialogButtons
|
||||||
primaryButton={_t("Settings")}
|
primaryButton={_t("common|settings")}
|
||||||
onPrimaryButtonClick={this.onOpenSettingsClick}
|
onPrimaryButtonClick={this.onOpenSettingsClick}
|
||||||
cancelButton={_t("OK")}
|
cancelButton={_t("OK")}
|
||||||
onCancel={this.onAcknowledgeClick}
|
onCancel={this.onAcknowledgeClick}
|
||||||
|
|
|
@ -990,10 +990,10 @@ export default class InviteDialog extends React.PureComponent<Props, IInviteDial
|
||||||
let showNum = kind === "recents" ? this.state.numRecentsShown : this.state.numSuggestionsShown;
|
let showNum = kind === "recents" ? this.state.numRecentsShown : this.state.numSuggestionsShown;
|
||||||
const showMoreFn = kind === "recents" ? this.showMoreRecents.bind(this) : this.showMoreSuggestions.bind(this);
|
const showMoreFn = kind === "recents" ? this.showMoreRecents.bind(this) : this.showMoreSuggestions.bind(this);
|
||||||
const lastActive = (m: Result): number | undefined => (kind === "recents" ? m.lastActive : undefined);
|
const lastActive = (m: Result): number | undefined => (kind === "recents" ? m.lastActive : undefined);
|
||||||
let sectionName = kind === "recents" ? _t("Recent Conversations") : _t("Suggestions");
|
let sectionName = kind === "recents" ? _t("Recent Conversations") : _t("common|suggestions");
|
||||||
|
|
||||||
if (this.props.kind === InviteKind.Invite) {
|
if (this.props.kind === InviteKind.Invite) {
|
||||||
sectionName = kind === "recents" ? _t("Recently Direct Messaged") : _t("Suggestions");
|
sectionName = kind === "recents" ? _t("Recently Direct Messaged") : _t("common|suggestions");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mix in the server results if we have any, but only if we're searching. We track the additional
|
// Mix in the server results if we have any, but only if we're searching. We track the additional
|
||||||
|
@ -1038,7 +1038,7 @@ export default class InviteDialog extends React.PureComponent<Props, IInviteDial
|
||||||
return (
|
return (
|
||||||
<div className="mx_InviteDialog_section">
|
<div className="mx_InviteDialog_section">
|
||||||
<h3>{sectionName}</h3>
|
<h3>{sectionName}</h3>
|
||||||
<p>{_t("No results")}</p>
|
<p>{_t("common|no_results")}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -229,7 +229,7 @@ const ManageRestrictedJoinRuleDialog: React.FC<IProps> = ({ room, selected = [],
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
{totalResults < 1 ? (
|
{totalResults < 1 ? (
|
||||||
<span className="mx_ManageRestrictedJoinRuleDialog_noResults">{_t("No results")}</span>
|
<span className="mx_ManageRestrictedJoinRuleDialog_noResults">{_t("common|no_results")}</span>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
</AutoHideScrollbar>
|
</AutoHideScrollbar>
|
||||||
|
|
||||||
|
|
|
@ -144,7 +144,7 @@ class RoomSettingsDialog extends React.Component<IProps, IState> {
|
||||||
tabs.push(
|
tabs.push(
|
||||||
new Tab(
|
new Tab(
|
||||||
RoomSettingsTab.People,
|
RoomSettingsTab.People,
|
||||||
_td("People"),
|
_td("common|people"),
|
||||||
"mx_RoomSettingsDialog_peopleIcon",
|
"mx_RoomSettingsDialog_peopleIcon",
|
||||||
<PeopleRoomSettingsTab room={this.state.room} />,
|
<PeopleRoomSettingsTab room={this.state.room} />,
|
||||||
),
|
),
|
||||||
|
|
|
@ -55,7 +55,7 @@ const SpacePreferencesAppearanceTab: React.FC<Pick<IProps, "space">> = ({ space
|
||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{_t("People")}
|
{_t("common|people")}
|
||||||
</StyledCheckbox>
|
</StyledCheckbox>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
{_t(
|
{_t(
|
||||||
|
|
|
@ -50,7 +50,7 @@ export default class TextInputDialog extends React.Component<IProps, IState> {
|
||||||
title: "",
|
title: "",
|
||||||
value: "",
|
value: "",
|
||||||
description: "",
|
description: "",
|
||||||
busyMessage: _td("Loading…"),
|
busyMessage: _td("common|loading"),
|
||||||
focus: true,
|
focus: true,
|
||||||
hasCancel: true,
|
hasCancel: true,
|
||||||
};
|
};
|
||||||
|
|
|
@ -205,7 +205,7 @@ export default class UserSettingsDialog extends React.Component<IProps, IState>
|
||||||
className="mx_UserSettingsDialog"
|
className="mx_UserSettingsDialog"
|
||||||
hasCancel={true}
|
hasCancel={true}
|
||||||
onFinished={this.props.onFinished}
|
onFinished={this.props.onFinished}
|
||||||
title={_t("Settings")}
|
title={_t("common|settings")}
|
||||||
>
|
>
|
||||||
<div className="mx_SettingsDialog_content">
|
<div className="mx_SettingsDialog_content">
|
||||||
<TabbedView
|
<TabbedView
|
||||||
|
|
|
@ -338,7 +338,7 @@ export default class RestoreKeyBackupDialog extends React.PureComponent<IProps,
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else if (this.state.loadError) {
|
} else if (this.state.loadError) {
|
||||||
title = _t("Error");
|
title = _t("common|error");
|
||||||
content = _t("Unable to load backup status");
|
content = _t("Unable to load backup status");
|
||||||
} else if (this.state.restoreError) {
|
} else if (this.state.restoreError) {
|
||||||
if (
|
if (
|
||||||
|
@ -369,11 +369,11 @@ export default class RestoreKeyBackupDialog extends React.PureComponent<IProps,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
title = _t("Error");
|
title = _t("common|error");
|
||||||
content = _t("Unable to restore backup");
|
content = _t("Unable to restore backup");
|
||||||
}
|
}
|
||||||
} else if (this.state.backupInfo === null) {
|
} else if (this.state.backupInfo === null) {
|
||||||
title = _t("Error");
|
title = _t("common|error");
|
||||||
content = _t("No backup found!");
|
content = _t("No backup found!");
|
||||||
} else if (this.state.recoverInfo) {
|
} else if (this.state.recoverInfo) {
|
||||||
title = _t("Keys restored");
|
title = _t("Keys restored");
|
||||||
|
|
|
@ -120,7 +120,7 @@ enum Section {
|
||||||
function filterToLabel(filter: Filter): string {
|
function filterToLabel(filter: Filter): string {
|
||||||
switch (filter) {
|
switch (filter) {
|
||||||
case Filter.People:
|
case Filter.People:
|
||||||
return _t("People");
|
return _t("common|people");
|
||||||
case Filter.PublicRooms:
|
case Filter.PublicRooms:
|
||||||
return _t("Public rooms");
|
return _t("Public rooms");
|
||||||
case Filter.PublicSpaces:
|
case Filter.PublicSpaces:
|
||||||
|
@ -751,7 +751,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||||
role="group"
|
role="group"
|
||||||
aria-labelledby="mx_SpotlightDialog_section_suggestions"
|
aria-labelledby="mx_SpotlightDialog_section_suggestions"
|
||||||
>
|
>
|
||||||
<h4 id="mx_SpotlightDialog_section_suggestions">{_t("Suggestions")}</h4>
|
<h4 id="mx_SpotlightDialog_section_suggestions">{_t("common|suggestions")}</h4>
|
||||||
<div>{results[Section.Suggestions].slice(0, SECTION_LIMIT).map(resultMapper)}</div>
|
<div>{results[Section.Suggestions].slice(0, SECTION_LIMIT).map(resultMapper)}</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -807,7 +807,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||||
aria-labelledby="mx_SpotlightDialog_section_publicRooms"
|
aria-labelledby="mx_SpotlightDialog_section_publicRooms"
|
||||||
>
|
>
|
||||||
<div className="mx_SpotlightDialog_sectionHeader">
|
<div className="mx_SpotlightDialog_sectionHeader">
|
||||||
<h4 id="mx_SpotlightDialog_section_publicRooms">{_t("Suggestions")}</h4>
|
<h4 id="mx_SpotlightDialog_section_publicRooms">{_t("common|suggestions")}</h4>
|
||||||
<div className="mx_SpotlightDialog_options">
|
<div className="mx_SpotlightDialog_options">
|
||||||
<NetworkDropdown protocols={protocols} config={config ?? null} setConfig={setConfig} />
|
<NetworkDropdown protocols={protocols} config={config ?? null} setConfig={setConfig} />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -620,7 +620,7 @@ export default class AppTile extends React.Component<IProps, IState> {
|
||||||
|
|
||||||
const loadingElement = (
|
const loadingElement = (
|
||||||
<div className="mx_AppTileBody_fadeInSpinner">
|
<div className="mx_AppTileBody_fadeInSpinner">
|
||||||
<Spinner message={_t("Loading…")} />
|
<Spinner message={_t("common|loading")} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -320,7 +320,7 @@ export default class Dropdown extends React.Component<DropdownProps, IState> {
|
||||||
if (!options?.length) {
|
if (!options?.length) {
|
||||||
return [
|
return [
|
||||||
<li key="0" className="mx_Dropdown_option" role="option" aria-selected={false}>
|
<li key="0" className="mx_Dropdown_option" role="option" aria-selected={false}>
|
||||||
{_t("No results")}
|
{_t("common|no_results")}
|
||||||
</li>,
|
</li>,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -531,7 +531,7 @@ export default class ImageView extends React.Component<IProps, IState> {
|
||||||
if (this.props.mxEvent?.getContent()) {
|
if (this.props.mxEvent?.getContent()) {
|
||||||
title = (
|
title = (
|
||||||
<div className="mx_ImageView_title">
|
<div className="mx_ImageView_title">
|
||||||
{presentableTextForFile(this.props.mxEvent?.getContent(), _t("Image"), true)}
|
{presentableTextForFile(this.props.mxEvent?.getContent(), _t("common|image"), true)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default class InlineSpinner extends React.PureComponent<IProps> {
|
||||||
<div
|
<div
|
||||||
className="mx_InlineSpinner_icon mx_Spinner_icon"
|
className="mx_InlineSpinner_icon mx_Spinner_icon"
|
||||||
style={{ width: this.props.w, height: this.props.h }}
|
style={{ width: this.props.w, height: this.props.h }}
|
||||||
aria-label={_t("Loading…")}
|
aria-label={_t("common|loading")}
|
||||||
>
|
>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -139,7 +139,7 @@ export const Pill: React.FC<PillProps> = ({ type: propType, url, inMessage, room
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
avatar = linkIcon;
|
avatar = linkIcon;
|
||||||
pillText = _t("Message");
|
pillText = _t("common|message");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -43,7 +43,7 @@ export default class Spinner extends React.PureComponent<IProps> {
|
||||||
<div
|
<div
|
||||||
className="mx_Spinner_icon"
|
className="mx_Spinner_icon"
|
||||||
style={{ width: w, height: h }}
|
style={{ width: w, height: h }}
|
||||||
aria-label={_t("Loading…")}
|
aria-label={_t("common|loading")}
|
||||||
role="progressbar"
|
role="progressbar"
|
||||||
data-testid="spinner"
|
data-testid="spinner"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -67,7 +67,7 @@ const EncryptionEvent = forwardRef<HTMLDivElement, IProps>(({ mxEvent, timestamp
|
||||||
return (
|
return (
|
||||||
<EventTileBubble
|
<EventTileBubble
|
||||||
className="mx_cryptoEvent mx_cryptoEvent_icon"
|
className="mx_cryptoEvent mx_cryptoEvent_icon"
|
||||||
title={_t("Encryption enabled")}
|
title={_t("common|encryption_enabled")}
|
||||||
subtitle={subtitle}
|
subtitle={subtitle}
|
||||||
timestamp={timestamp}
|
timestamp={timestamp}
|
||||||
/>
|
/>
|
||||||
|
@ -78,7 +78,7 @@ const EncryptionEvent = forwardRef<HTMLDivElement, IProps>(({ mxEvent, timestamp
|
||||||
return (
|
return (
|
||||||
<EventTileBubble
|
<EventTileBubble
|
||||||
className="mx_cryptoEvent mx_cryptoEvent_icon"
|
className="mx_cryptoEvent mx_cryptoEvent_icon"
|
||||||
title={_t("Encryption enabled")}
|
title={_t("common|encryption_enabled")}
|
||||||
subtitle={_t("Ignored attempt to disable encryption")}
|
subtitle={_t("Ignored attempt to disable encryption")}
|
||||||
timestamp={timestamp}
|
timestamp={timestamp}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -173,7 +173,7 @@ export default class MFileBody extends React.Component<IProps, IState> {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.warn("Unable to decrypt attachment: ", err);
|
logger.warn("Unable to decrypt attachment: ", err);
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Error decrypting attachment"),
|
description: _t("Error decrypting attachment"),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -395,7 +395,11 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <span className="mx_MImageBody_banner">{presentableTextForFile(content, _t("Image"), true, true)}</span>;
|
return (
|
||||||
|
<span className="mx_MImageBody_banner">
|
||||||
|
{presentableTextForFile(content, _t("common|image"), true, true)}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected messageContent(
|
protected messageContent(
|
||||||
|
|
|
@ -225,7 +225,7 @@ export default class ReactionsRow extends React.PureComponent<IProps, IState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_ReactionsRow" role="toolbar" aria-label={_t("Reactions")}>
|
<div className="mx_ReactionsRow" role="toolbar" aria-label={_t("common|reactions")}>
|
||||||
{items}
|
{items}
|
||||||
{showAllButton}
|
{showAllButton}
|
||||||
{addReactionButton}
|
{addReactionButton}
|
||||||
|
|
|
@ -337,9 +337,9 @@ const RoomSummaryCard: React.FC<IProps> = ({ room, permalinkCreator, onClose })
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BaseCard header={header} className="mx_RoomSummaryCard" onClose={onClose}>
|
<BaseCard header={header} className="mx_RoomSummaryCard" onClose={onClose}>
|
||||||
<Group title={_t("About")} className="mx_RoomSummaryCard_aboutGroup">
|
<Group title={_t("common|about")} className="mx_RoomSummaryCard_aboutGroup">
|
||||||
<Button className="mx_RoomSummaryCard_icon_people" onClick={onRoomMembersClick}>
|
<Button className="mx_RoomSummaryCard_icon_people" onClick={onRoomMembersClick}>
|
||||||
{_t("People")}
|
{_t("common|people")}
|
||||||
<span className="mx_BaseCard_Button_sublabel">{memberCount}</span>
|
<span className="mx_BaseCard_Button_sublabel">{memberCount}</span>
|
||||||
</Button>
|
</Button>
|
||||||
{!isVideoRoom && (
|
{!isVideoRoom && (
|
||||||
|
|
|
@ -344,7 +344,7 @@ const MessageButton = ({ member }: { member: Member }): JSX.Element => {
|
||||||
className="mx_UserInfo_field"
|
className="mx_UserInfo_field"
|
||||||
disabled={busy}
|
disabled={busy}
|
||||||
>
|
>
|
||||||
{_t("Message")}
|
{_t("common|message")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -845,7 +845,7 @@ export const BanToggleButton = ({
|
||||||
function (err) {
|
function (err) {
|
||||||
logger.error("Ban error: " + err);
|
logger.error("Ban error: " + err);
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to ban user"),
|
description: _t("Failed to ban user"),
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -927,7 +927,7 @@ const MuteToggleButton: React.FC<IBaseRoomProps> = ({
|
||||||
function (err) {
|
function (err) {
|
||||||
logger.error("Mute error: " + err);
|
logger.error("Mute error: " + err);
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to mute user"),
|
description: _t("Failed to mute user"),
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -941,7 +941,7 @@ const MuteToggleButton: React.FC<IBaseRoomProps> = ({
|
||||||
mx_UserInfo_destructive: !muted,
|
mx_UserInfo_destructive: !muted,
|
||||||
});
|
});
|
||||||
|
|
||||||
const muteLabel = muted ? _t("Unmute") : _t("Mute");
|
const muteLabel = muted ? _t("common|unmute") : _t("common|mute");
|
||||||
return (
|
return (
|
||||||
<AccessibleButton kind="link" className={classes} onClick={onMuteToggle} disabled={isUpdating}>
|
<AccessibleButton kind="link" className={classes} onClick={onMuteToggle} disabled={isUpdating}>
|
||||||
{muteLabel}
|
{muteLabel}
|
||||||
|
@ -1159,7 +1159,7 @@ export const PowerLevelEditor: React.FC<{
|
||||||
function (err) {
|
function (err) {
|
||||||
logger.error("Failed to change power level " + err);
|
logger.error("Failed to change power level " + err);
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to change power level"),
|
description: _t("Failed to change power level"),
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -1516,7 +1516,7 @@ const BasicUserInfo: React.FC<{
|
||||||
|
|
||||||
const securitySection = (
|
const securitySection = (
|
||||||
<div className="mx_UserInfo_container">
|
<div className="mx_UserInfo_container">
|
||||||
<h3>{_t("Security")}</h3>
|
<h3>{_t("common|security")}</h3>
|
||||||
<p>{text}</p>
|
<p>{text}</p>
|
||||||
{verifyButton}
|
{verifyButton}
|
||||||
{cryptoEnabled && (
|
{cryptoEnabled && (
|
||||||
|
|
|
@ -353,7 +353,7 @@ export default class VerificationPanel extends React.PureComponent<IProps, IStat
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_UserInfo_container">
|
<div className="mx_UserInfo_container">
|
||||||
<h3>{_t("Verification cancelled")}</h3>
|
<h3>{_t("common|verification_cancelled")}</h3>
|
||||||
<p>{text}</p>
|
<p>{text}</p>
|
||||||
|
|
||||||
<AccessibleButton kind="primary" className="mx_UserInfo_wideButton" onClick={this.props.onClose}>
|
<AccessibleButton kind="primary" className="mx_UserInfo_wideButton" onClick={this.props.onClose}>
|
||||||
|
|
|
@ -67,7 +67,7 @@ interface LiveContentSummaryWithCallProps {
|
||||||
export const LiveContentSummaryWithCall: FC<LiveContentSummaryWithCallProps> = ({ call }) => (
|
export const LiveContentSummaryWithCall: FC<LiveContentSummaryWithCallProps> = ({ call }) => (
|
||||||
<LiveContentSummary
|
<LiveContentSummary
|
||||||
type={LiveContentType.Video}
|
type={LiveContentType.Video}
|
||||||
text={_t("Video")}
|
text={_t("common|video")}
|
||||||
active={false}
|
active={false}
|
||||||
participantCount={useParticipantCount(call)}
|
participantCount={useParticipantCount(call)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -259,7 +259,7 @@ function showStickersButton(props: IProps): ReactElement | null {
|
||||||
className="mx_MessageComposer_button"
|
className="mx_MessageComposer_button"
|
||||||
iconClassName="mx_MessageComposer_stickers"
|
iconClassName="mx_MessageComposer_stickers"
|
||||||
onClick={() => props.setStickerPickerOpen(!props.isStickerPickerOpen)}
|
onClick={() => props.setStickerPickerOpen(!props.isStickerPickerOpen)}
|
||||||
title={props.isStickerPickerOpen ? _t("Hide stickers") : _t("Sticker")}
|
title={props.isStickerPickerOpen ? _t("Hide stickers") : _t("common|sticker")}
|
||||||
/>
|
/>
|
||||||
) : null;
|
) : null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,7 +76,7 @@ export default class PresenceLabel extends React.Component<IProps> {
|
||||||
} else {
|
} else {
|
||||||
if (presence === "online") return _t("Online");
|
if (presence === "online") return _t("Online");
|
||||||
if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right?
|
if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right?
|
||||||
if (presence === "offline") return _t("Offline");
|
if (presence === "offline") return _t("common|offline");
|
||||||
return _t("Unknown");
|
return _t("Unknown");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -402,7 +402,7 @@ const TAG_AESTHETICS: TagAestheticsMap = {
|
||||||
defaultHidden: false,
|
defaultHidden: false,
|
||||||
},
|
},
|
||||||
[DefaultTagID.DM]: {
|
[DefaultTagID.DM]: {
|
||||||
sectionLabel: _td("People"),
|
sectionLabel: _td("common|people"),
|
||||||
isInvite: false,
|
isInvite: false,
|
||||||
defaultHidden: false,
|
defaultHidden: false,
|
||||||
AuxButtonComponent: DmAuxButton,
|
AuxButtonComponent: DmAuxButton,
|
||||||
|
|
|
@ -333,7 +333,7 @@ export default class RoomPreviewBar extends React.Component<IProps, IState> {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MessageCase.Loading: {
|
case MessageCase.Loading: {
|
||||||
title = _t("Loading…");
|
title = _t("common|loading");
|
||||||
showSpinner = true;
|
showSpinner = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ export const RoomTileCallSummary: FC<Props> = ({ call }) => {
|
||||||
|
|
||||||
switch (useConnectionState(call)) {
|
switch (useConnectionState(call)) {
|
||||||
case ConnectionState.Disconnected:
|
case ConnectionState.Disconnected:
|
||||||
text = _t("Video");
|
text = _t("common|video");
|
||||||
active = false;
|
active = false;
|
||||||
break;
|
break;
|
||||||
case ConnectionState.Connecting:
|
case ConnectionState.Connecting:
|
||||||
|
|
|
@ -54,7 +54,7 @@ export const AddPrivilegedUsers: React.FC<AddPrivilegedUsersProps> = ({ room, de
|
||||||
// `RoomPowerLevels` event should exist, but technically it is not guaranteed.
|
// `RoomPowerLevels` event should exist, but technically it is not guaranteed.
|
||||||
if (powerLevelEvent === null) {
|
if (powerLevelEvent === null) {
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to change power level"),
|
description: _t("Failed to change power level"),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ export const AddPrivilegedUsers: React.FC<AddPrivilegedUsersProps> = ({ room, de
|
||||||
setPowerLevel(defaultUserLevel);
|
setPowerLevel(defaultUserLevel);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to change power level"),
|
description: _t("Failed to change power level"),
|
||||||
});
|
});
|
||||||
} finally {
|
} finally {
|
||||||
|
|
|
@ -68,7 +68,7 @@ export default class LayoutSwitcher extends React.Component<IProps, IState> {
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SettingsSubsection heading={_t("Message layout")}>
|
<SettingsSubsection heading={_t("common|message_layout")}>
|
||||||
<div className="mx_LayoutSwitcher_RadioButtons">
|
<div className="mx_LayoutSwitcher_RadioButtons">
|
||||||
<label className={ircClasses}>
|
<label className={ircClasses}>
|
||||||
<EventTilePreview
|
<EventTilePreview
|
||||||
|
@ -103,7 +103,7 @@ export default class LayoutSwitcher extends React.Component<IProps, IState> {
|
||||||
checked={this.state.layout == Layout.Group}
|
checked={this.state.layout == Layout.Group}
|
||||||
onChange={this.onLayoutChange}
|
onChange={this.onLayoutChange}
|
||||||
>
|
>
|
||||||
{_t("Modern")}
|
{_t("common|modern")}
|
||||||
</StyledRadioButton>
|
</StyledRadioButton>
|
||||||
</label>
|
</label>
|
||||||
<label className={bubbleClasses}>
|
<label className={bubbleClasses}>
|
||||||
|
|
|
@ -201,7 +201,7 @@ export default class PhoneNumbers extends React.Component<IProps, IState> {
|
||||||
logger.error("Unable to add phone number " + phoneNumber + " " + err);
|
logger.error("Unable to add phone number " + phoneNumber + " " + err);
|
||||||
this.setState({ verifying: false, continueDisabled: false, addTask: null });
|
this.setState({ verifying: false, continueDisabled: false, addTask: null });
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: extractErrorMessageFromError(err, _t("Operation failed")),
|
description: extractErrorMessageFromError(err, _t("Operation failed")),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -150,7 +150,7 @@ export const PeopleRoomSettingsTab: VFC<{ room: Room }> = ({ room }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SettingsTab>
|
<SettingsTab>
|
||||||
<SettingsSection heading={_t("People")}>
|
<SettingsSection heading={_t("common|people")}>
|
||||||
<SettingsFieldset legend={_t("Asking to join")}>
|
<SettingsFieldset legend={_t("Asking to join")}>
|
||||||
{knockMembers.length ? (
|
{knockMembers.length ? (
|
||||||
knockMembers.map((knockMember) => (
|
knockMembers.map((knockMember) => (
|
||||||
|
|
|
@ -94,7 +94,7 @@ export class BannedUser extends React.Component<IBannedUserProps> {
|
||||||
this.context.unban(this.props.member.roomId, this.props.member.userId).catch((err) => {
|
this.context.unban(this.props.member.roomId, this.props.member.userId).catch((err) => {
|
||||||
logger.error("Failed to unban: " + err);
|
logger.error("Failed to unban: " + err);
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Error"),
|
title: _t("common|error"),
|
||||||
description: _t("Failed to unban"),
|
description: _t("Failed to unban"),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -309,7 +309,7 @@ export default class GeneralUserSettingsTab extends React.Component<IProps, ISta
|
||||||
const description = _t("Your password was successfully changed.");
|
const description = _t("Your password was successfully changed.");
|
||||||
// TODO: Figure out a design that doesn't involve replacing the current dialog
|
// TODO: Figure out a design that doesn't involve replacing the current dialog
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: _t("Success"),
|
title: _t("common|success"),
|
||||||
description,
|
description,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -319,7 +319,7 @@ export default class SecurityUserSettingsTab extends React.Component<IProps, ISt
|
||||||
privacySection = (
|
privacySection = (
|
||||||
<SettingsSection heading={_t("Privacy")}>
|
<SettingsSection heading={_t("Privacy")}>
|
||||||
<SettingsSubsection
|
<SettingsSubsection
|
||||||
heading={_t("Analytics")}
|
heading={_t("common|analytics")}
|
||||||
description={_t(
|
description={_t(
|
||||||
"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.",
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -120,7 +120,7 @@ const SidebarUserSettingsTab: React.FC = () => {
|
||||||
>
|
>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
<MembersIcon />
|
<MembersIcon />
|
||||||
{_t("People")}
|
{_t("common|people")}
|
||||||
</SettingsSubsectionText>
|
</SettingsSubsectionText>
|
||||||
<SettingsSubsectionText>{_t("Group all your people in one place.")}</SettingsSubsectionText>
|
<SettingsSubsectionText>{_t("Group all your people in one place.")}</SettingsSubsectionText>
|
||||||
</StyledCheckbox>
|
</StyledCheckbox>
|
||||||
|
|
|
@ -107,7 +107,7 @@ const QuickSettingsButton: React.FC<{
|
||||||
onChange={onMetaSpaceChangeFactory(MetaSpace.People, "WebQuickSettingsPinToSidebarCheckbox")}
|
onChange={onMetaSpaceChangeFactory(MetaSpace.People, "WebQuickSettingsPinToSidebarCheckbox")}
|
||||||
>
|
>
|
||||||
<MembersIcon className="mx_QuickSettingsButton_icon" />
|
<MembersIcon className="mx_QuickSettingsButton_icon" />
|
||||||
{_t("People")}
|
{_t("common|people")}
|
||||||
</StyledCheckbox>
|
</StyledCheckbox>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_QuickSettingsButton_moreOptionsButton"
|
className="mx_QuickSettingsButton_moreOptionsButton"
|
||||||
|
@ -138,7 +138,7 @@ const QuickSettingsButton: React.FC<{
|
||||||
forceHide={!isPanelCollapsed}
|
forceHide={!isPanelCollapsed}
|
||||||
aria-expanded={!isPanelCollapsed}
|
aria-expanded={!isPanelCollapsed}
|
||||||
>
|
>
|
||||||
{!isPanelCollapsed ? _t("Settings") : null}
|
{!isPanelCollapsed ? _t("common|settings") : null}
|
||||||
</AccessibleTooltipButton>
|
</AccessibleTooltipButton>
|
||||||
|
|
||||||
{contextMenu}
|
{contextMenu}
|
||||||
|
|
|
@ -83,7 +83,7 @@ const SpecificChildrenPicker: React.FC<ISpecificChildrenPickerProps> = ({
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
{filteredRooms.length < 1 ? (
|
{filteredRooms.length < 1 ? (
|
||||||
<span className="mx_SpaceChildrenPicker_noResults">{_t("No results")}</span>
|
<span className="mx_SpaceChildrenPicker_noResults">{_t("common|no_results")}</span>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
</AutoHideScrollbar>
|
</AutoHideScrollbar>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,14 +7,12 @@
|
||||||
"Dismiss": "أهمِل",
|
"Dismiss": "أهمِل",
|
||||||
"Failed to change password. Is your password correct?": "فشلت عملية تعديل الكلمة السرية. هل كلمتك السرية صحيحة ؟",
|
"Failed to change password. Is your password correct?": "فشلت عملية تعديل الكلمة السرية. هل كلمتك السرية صحيحة ؟",
|
||||||
"Warning": "تنبيه",
|
"Warning": "تنبيه",
|
||||||
"Error": "عُطل",
|
|
||||||
"Remove": "حذف",
|
"Remove": "حذف",
|
||||||
"Send": "إرسال",
|
"Send": "إرسال",
|
||||||
"Edit": "تعديل",
|
"Edit": "تعديل",
|
||||||
"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": "رقم الهاتف هذا مستخدم بالفعل",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "فشل التثبّت من عنوان البريد الإلكتروني: تأكّد من نقر الرابط في البريد المُرسل",
|
"Failed to verify email address: make sure you clicked the link in the email": "فشل التثبّت من عنوان البريد الإلكتروني: تأكّد من نقر الرابط في البريد المُرسل",
|
||||||
"Analytics": "التحاليل",
|
|
||||||
"Unavailable": "غير متوفر",
|
"Unavailable": "غير متوفر",
|
||||||
"All Rooms": "كل الغُرف",
|
"All Rooms": "كل الغُرف",
|
||||||
"All messages": "كل الرسائل",
|
"All messages": "كل الرسائل",
|
||||||
|
@ -263,7 +261,6 @@
|
||||||
"expand": "توسيع",
|
"expand": "توسيع",
|
||||||
"collapse": "تضييق",
|
"collapse": "تضييق",
|
||||||
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "الرجاء <newIssueLink> إنشاء إشكال جديد</newIssueLink> على GitHub حتى نتمكن من التحقيق في هذا الخطأ.",
|
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "الرجاء <newIssueLink> إنشاء إشكال جديد</newIssueLink> على GitHub حتى نتمكن من التحقيق في هذا الخطأ.",
|
||||||
"No results": "لا نتائج",
|
|
||||||
"Join": "انضم",
|
"Join": "انضم",
|
||||||
"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 s عرض بعض الملفات المشفرة",
|
"This version of %(brand)s does not support viewing some encrypted files": "لا يدعم هذا الإصدار من %(brand)s s عرض بعض الملفات المشفرة",
|
||||||
|
@ -312,7 +309,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>",
|
||||||
"Reactions": "التفاعلات",
|
|
||||||
"Show all": "أظهر الكل",
|
"Show all": "أظهر الكل",
|
||||||
"Error decrypting video": "تعذر فك تشفير الفيديو",
|
"Error decrypting video": "تعذر فك تشفير الفيديو",
|
||||||
"You sent a verification request": "أنت أرسلت طلب تحقق",
|
"You sent a verification request": "أنت أرسلت طلب تحقق",
|
||||||
|
@ -345,7 +341,6 @@
|
||||||
"The encryption used by this room isn't supported.": "التشفير الذي تستخدمه هذه الغرفة غير مدعوم.",
|
"The encryption used by this room isn't supported.": "التشفير الذي تستخدمه هذه الغرفة غير مدعوم.",
|
||||||
"Encryption not enabled": "التشفير غير مفعل",
|
"Encryption not enabled": "التشفير غير مفعل",
|
||||||
"Ignored attempt to disable encryption": "تم تجاهل محاولة تعطيل التشفير",
|
"Ignored attempt to disable encryption": "تم تجاهل محاولة تعطيل التشفير",
|
||||||
"Encryption enabled": "التشفير مفعل",
|
|
||||||
"View Source": "انظر المصدر",
|
"View Source": "انظر المصدر",
|
||||||
"Yesterday": "أمس",
|
"Yesterday": "أمس",
|
||||||
"Today": "اليوم",
|
"Today": "اليوم",
|
||||||
|
@ -356,7 +351,6 @@
|
||||||
"Tuesday": "الثلاثاء",
|
"Tuesday": "الثلاثاء",
|
||||||
"Monday": "الاثنين",
|
"Monday": "الاثنين",
|
||||||
"Sunday": "الأحد",
|
"Sunday": "الأحد",
|
||||||
"Verification cancelled": "أُلغي التحقق",
|
|
||||||
"You cancelled verification.": "لقد ألغيتَ التحقق.",
|
"You cancelled verification.": "لقد ألغيتَ التحقق.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s ألغى التحقق.",
|
"%(displayName)s cancelled verification.": "%(displayName)s ألغى التحقق.",
|
||||||
"Verification timed out.": "انتهت مهلة التحقق.",
|
"Verification timed out.": "انتهت مهلة التحقق.",
|
||||||
|
@ -417,7 +411,6 @@
|
||||||
"other": "%(count)s من الرسائل والإشارات غير المقروءة."
|
"other": "%(count)s من الرسائل والإشارات غير المقروءة."
|
||||||
},
|
},
|
||||||
"Room options": "خيارات الغرفة",
|
"Room options": "خيارات الغرفة",
|
||||||
"Settings": "الإعدادات",
|
|
||||||
"Low Priority": "أولوية منخفضة",
|
"Low Priority": "أولوية منخفضة",
|
||||||
"Favourite": "تفضيل",
|
"Favourite": "تفضيل",
|
||||||
"Favourited": "فُضلت",
|
"Favourited": "فُضلت",
|
||||||
|
@ -470,7 +463,6 @@
|
||||||
"Add room": "أضف غرفة",
|
"Add room": "أضف غرفة",
|
||||||
"Rooms": "الغرف",
|
"Rooms": "الغرف",
|
||||||
"Start chat": "ابدأ محادثة",
|
"Start chat": "ابدأ محادثة",
|
||||||
"People": "الأشخاص",
|
|
||||||
"Favourites": "مفضلات",
|
"Favourites": "مفضلات",
|
||||||
"Invites": "دعوات",
|
"Invites": "دعوات",
|
||||||
"Search": "بحث",
|
"Search": "بحث",
|
||||||
|
@ -487,7 +479,6 @@
|
||||||
"Room %(name)s": "الغرفة %(name)s",
|
"Room %(name)s": "الغرفة %(name)s",
|
||||||
"Replying": "الرد",
|
"Replying": "الرد",
|
||||||
"Unknown": "غير معروف",
|
"Unknown": "غير معروف",
|
||||||
"Offline": "منفصل",
|
|
||||||
"Idle": "جامد",
|
"Idle": "جامد",
|
||||||
"Online": "متصل",
|
"Online": "متصل",
|
||||||
"Unknown for %(duration)s": "غير معروف منذ %(duration)s",
|
"Unknown for %(duration)s": "غير معروف منذ %(duration)s",
|
||||||
|
@ -582,12 +573,9 @@
|
||||||
"Account": "الحساب",
|
"Account": "الحساب",
|
||||||
"Phone numbers": "أرقام الهواتف",
|
"Phone numbers": "أرقام الهواتف",
|
||||||
"Email addresses": "عنوان البريد الإلكتروني",
|
"Email addresses": "عنوان البريد الإلكتروني",
|
||||||
"Success": "نجاح",
|
|
||||||
"Appearance Settings only affect this %(brand)s session.": "إنما تؤثر إعدادات المظهر في %(brand)s وعلى هذا الاتصال فقط.",
|
"Appearance Settings only affect this %(brand)s session.": "إنما تؤثر إعدادات المظهر في %(brand)s وعلى هذا الاتصال فقط.",
|
||||||
"Customise your appearance": "تخصيص مظهرك",
|
"Customise your appearance": "تخصيص مظهرك",
|
||||||
"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 استخدامه.",
|
||||||
"Modern": "حديث",
|
|
||||||
"Message layout": "مظهر الرسائل",
|
|
||||||
"Theme": "المظهر",
|
"Theme": "المظهر",
|
||||||
"Add theme": "إضافة مظهر",
|
"Add theme": "إضافة مظهر",
|
||||||
"Custom theme URL": "رابط المظهر المخصص",
|
"Custom theme URL": "رابط المظهر المخصص",
|
||||||
|
@ -672,7 +660,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.": "إذا لم تتمكن من مسح الرمز أعلاه ، فتحقق بمقارنة الرموز التعبيرية الفريدة.",
|
||||||
"Ask %(displayName)s to scan your code:": "اطلب من %(displayName)s مسح رمزك:",
|
"Ask %(displayName)s to scan your code:": "اطلب من %(displayName)s مسح رمزك:",
|
||||||
"Verify by scanning": "تحقق بالمسح",
|
"Verify by scanning": "تحقق بالمسح",
|
||||||
"Security": "الأمان",
|
|
||||||
"This client does not support end-to-end encryption.": "لا يدعم هذا العميل التشفير من طرف إلى طرف.",
|
"This client does not support end-to-end encryption.": "لا يدعم هذا العميل التشفير من طرف إلى طرف.",
|
||||||
"Failed to deactivate user": "تعذر إلغاء نشاط المستخدم",
|
"Failed to deactivate user": "تعذر إلغاء نشاط المستخدم",
|
||||||
"Deactivate user": "إلغاء نشاط المستخدم",
|
"Deactivate user": "إلغاء نشاط المستخدم",
|
||||||
|
@ -681,8 +668,6 @@
|
||||||
"Are you sure?": "هل متأكد أنت؟",
|
"Are you sure?": "هل متأكد أنت؟",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "لن تكون قادرًا على التراجع عن هذا التغيير لأنك ترقي المستخدم ليكون له نفس مستوى الطاقة لديك.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "لن تكون قادرًا على التراجع عن هذا التغيير لأنك ترقي المستخدم ليكون له نفس مستوى الطاقة لديك.",
|
||||||
"Failed to change power level": "تعذر تغيير مستوى القوة",
|
"Failed to change power level": "تعذر تغيير مستوى القوة",
|
||||||
"Mute": "كتم",
|
|
||||||
"Unmute": "رفع الكتم",
|
|
||||||
"Failed to mute user": "تعذر كتم المستخدم",
|
"Failed to mute user": "تعذر كتم المستخدم",
|
||||||
"Failed to ban user": "تعذر حذف المستخدم",
|
"Failed to ban user": "تعذر حذف المستخدم",
|
||||||
"Remove recent messages": "احذف الرسائل الحديثة",
|
"Remove recent messages": "احذف الرسائل الحديثة",
|
||||||
|
@ -715,7 +700,6 @@
|
||||||
"Trusted": "موثوق",
|
"Trusted": "موثوق",
|
||||||
"Room settings": "إعدادات الغرفة",
|
"Room settings": "إعدادات الغرفة",
|
||||||
"Share room": "شارك الغرفة",
|
"Share room": "شارك الغرفة",
|
||||||
"About": "حول",
|
|
||||||
"Not encrypted": "غير مشفر",
|
"Not encrypted": "غير مشفر",
|
||||||
"Add widgets, bridges & bots": "إضافة عناصر الواجهة والجسور والروبوتات",
|
"Add widgets, bridges & bots": "إضافة عناصر الواجهة والجسور والروبوتات",
|
||||||
"Edit widgets, bridges & bots": "تعديل عناصر الواجهة والجسور والروبوتات",
|
"Edit widgets, bridges & bots": "تعديل عناصر الواجهة والجسور والروبوتات",
|
||||||
|
@ -1336,5 +1320,23 @@
|
||||||
"You cannot place calls in this browser.": "لا يمكنك إجراء المكالمات في هذا المتصفّح.",
|
"You cannot place calls in this browser.": "لا يمكنك إجراء المكالمات في هذا المتصفّح.",
|
||||||
"Calls are unsupported": "المكالمات غير مدعومة",
|
"Calls are unsupported": "المكالمات غير مدعومة",
|
||||||
"%(user1)s and %(user2)s": "%(user1)s و %(user2)s",
|
"%(user1)s and %(user2)s": "%(user1)s و %(user2)s",
|
||||||
"Empty room": "غرفة فارغة"
|
"Empty room": "غرفة فارغة",
|
||||||
|
"common": {
|
||||||
|
"about": "حول",
|
||||||
|
"analytics": "التحاليل",
|
||||||
|
"encryption_enabled": "التشفير مفعل",
|
||||||
|
"error": "عُطل",
|
||||||
|
"message_layout": "مظهر الرسائل",
|
||||||
|
"modern": "حديث",
|
||||||
|
"mute": "كتم",
|
||||||
|
"no_results": "لا نتائج",
|
||||||
|
"offline": "منفصل",
|
||||||
|
"people": "الأشخاص",
|
||||||
|
"reactions": "التفاعلات",
|
||||||
|
"security": "الأمان",
|
||||||
|
"settings": "الإعدادات",
|
||||||
|
"success": "نجاح",
|
||||||
|
"unmute": "رفع الكتم",
|
||||||
|
"verification_cancelled": "أُلغي التحقق"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,6 @@
|
||||||
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s hüquqların səviyyələrini dəyişdirdi %(powerLevelDiffText)s.",
|
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s hüquqların səviyyələrini dəyişdirdi %(powerLevelDiffText)s.",
|
||||||
"Always show message timestamps": "Həmişə mesajların göndərilməsi vaxtını göstərmək",
|
"Always show message timestamps": "Həmişə mesajların göndərilməsi vaxtını göstərmək",
|
||||||
"Accept": "Qəbul etmək",
|
"Accept": "Qəbul etmək",
|
||||||
"Error": "Səhv",
|
|
||||||
"Incorrect verification code": "Təsdiq etmənin səhv kodu",
|
"Incorrect verification code": "Təsdiq etmənin səhv kodu",
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
"New passwords don't match": "Yeni şifrlər uyğun gəlmir",
|
"New passwords don't match": "Yeni şifrlər uyğun gəlmir",
|
||||||
|
@ -80,7 +79,6 @@
|
||||||
"Continue": "Davam etmək",
|
"Continue": "Davam etmək",
|
||||||
"Export E2E room keys": "Şifrləmənin açarlarının ixracı",
|
"Export E2E room keys": "Şifrləmənin açarlarının ixracı",
|
||||||
"Current password": "Cari şifrə",
|
"Current password": "Cari şifrə",
|
||||||
"Password": "Şifrə",
|
|
||||||
"New Password": "Yeni şifrə",
|
"New Password": "Yeni şifrə",
|
||||||
"Confirm password": "Yeni şifrə təsdiq edin",
|
"Confirm password": "Yeni şifrə təsdiq edin",
|
||||||
"Change Password": "Şifrəni dəyişdirin",
|
"Change Password": "Şifrəni dəyişdirin",
|
||||||
|
@ -106,7 +104,6 @@
|
||||||
"Command error": "Komandanın səhvi",
|
"Command error": "Komandanın səhvi",
|
||||||
"Join Room": "Otağa girmək",
|
"Join Room": "Otağa girmək",
|
||||||
"Upload avatar": "Avatar-ı yükləmək",
|
"Upload avatar": "Avatar-ı yükləmək",
|
||||||
"Settings": "Qurmalar",
|
|
||||||
"Forget room": "Otağı unutmaq",
|
"Forget room": "Otağı unutmaq",
|
||||||
"Invites": "Dəvətlər",
|
"Invites": "Dəvətlər",
|
||||||
"Favourites": "Seçilmişlər",
|
"Favourites": "Seçilmişlər",
|
||||||
|
@ -134,7 +131,6 @@
|
||||||
"What's New": "Nə dəyişdi",
|
"What's New": "Nə dəyişdi",
|
||||||
"Update": "Yeniləmək",
|
"Update": "Yeniləmək",
|
||||||
"Create new room": "Otağı yaratmaq",
|
"Create new room": "Otağı yaratmaq",
|
||||||
"No results": "Nəticə yoxdur",
|
|
||||||
"Home": "Başlanğıc",
|
"Home": "Başlanğıc",
|
||||||
"%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s",
|
||||||
"Start chat": "Çata başlamaq",
|
"Start chat": "Çata başlamaq",
|
||||||
|
@ -176,7 +172,6 @@
|
||||||
"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",
|
||||||
"This phone number is already in use": "Bu telefon nömrəsi artıq istifadə olunur",
|
"This phone number is already in use": "Bu telefon nömrəsi artıq istifadə olunur",
|
||||||
"Analytics": "Analitik",
|
|
||||||
"Call Failed": "Uğursuz zəng",
|
"Call Failed": "Uğursuz zəng",
|
||||||
"Permission Required": "İzn tələb olunur",
|
"Permission Required": "İzn tələb olunur",
|
||||||
"You do not have permission to start a conference call in this room": "Bu otaqda konfrans başlamaq üçün icazə yoxdur",
|
"You do not have permission to start a conference call in this room": "Bu otaqda konfrans başlamaq üçün icazə yoxdur",
|
||||||
|
@ -251,5 +246,12 @@
|
||||||
"Create Account": "Hesab Aç",
|
"Create Account": "Hesab Aç",
|
||||||
"Explore rooms": "Otaqları kəşf edin",
|
"Explore rooms": "Otaqları kəşf edin",
|
||||||
"Sign In": "Daxil ol",
|
"Sign In": "Daxil ol",
|
||||||
"Identity server": "Eyniləşdirmənin serveri"
|
"Identity server": "Eyniləşdirmənin serveri",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Analitik",
|
||||||
|
"error": "Səhv",
|
||||||
|
"no_results": "Nəticə yoxdur",
|
||||||
|
"password": "Şifrə",
|
||||||
|
"settings": "Qurmalar"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,11 @@
|
||||||
"Remove": "Выдалiць",
|
"Remove": "Выдалiць",
|
||||||
"Failed to remove tag %(tagName)s from room": "Не ўдалося выдаліць %(tagName)s з пакоя",
|
"Failed to remove tag %(tagName)s from room": "Не ўдалося выдаліць %(tagName)s з пакоя",
|
||||||
"Leave": "Пакінуць",
|
"Leave": "Пакінуць",
|
||||||
"Error": "Памылка",
|
|
||||||
"Operation failed": "Не атрымалася выканаць аперацыю",
|
"Operation failed": "Не атрымалася выканаць аперацыю",
|
||||||
"Mute": "Без гуку",
|
|
||||||
"powered by Matrix": "працуе на Matrix",
|
"powered by Matrix": "працуе на Matrix",
|
||||||
"Source URL": "URL-адрас крыніцы"
|
"Source URL": "URL-адрас крыніцы",
|
||||||
|
"common": {
|
||||||
|
"error": "Памылка",
|
||||||
|
"mute": "Без гуку"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"Dismiss": "Затвори",
|
"Dismiss": "Затвори",
|
||||||
"powered by Matrix": "базирано на Matrix",
|
"powered by Matrix": "базирано на Matrix",
|
||||||
"Warning": "Предупреждение",
|
"Warning": "Предупреждение",
|
||||||
"Error": "Грешка",
|
|
||||||
"Remove": "Премахни",
|
"Remove": "Премахни",
|
||||||
"Close": "Затвори",
|
"Close": "Затвори",
|
||||||
"Cancel": "Отказ",
|
"Cancel": "Отказ",
|
||||||
|
@ -40,7 +39,6 @@
|
||||||
"Failed to remove tag %(tagName)s from room": "Неуспешно премахване на %(tagName)s етикет от стаята",
|
"Failed to remove tag %(tagName)s from room": "Неуспешно премахване на %(tagName)s етикет от стаята",
|
||||||
"unknown error code": "неизвестен код за грешка",
|
"unknown error code": "неизвестен код за грешка",
|
||||||
"Failed to forget room %(errCode)s": "Неуспешно забравяне на стаята %(errCode)s",
|
"Failed to forget room %(errCode)s": "Неуспешно забравяне на стаята %(errCode)s",
|
||||||
"Mute": "Заглуши",
|
|
||||||
"Leave": "Напусни",
|
"Leave": "Напусни",
|
||||||
"Favourite": "Любим",
|
"Favourite": "Любим",
|
||||||
"Register": "Регистрация",
|
"Register": "Регистрация",
|
||||||
|
@ -51,7 +49,6 @@
|
||||||
"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": "Този телефонен номер е вече зает",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Неуспешно потвърждаване на имейл адреса: уверете се, че сте кликнали върху връзката в имейла",
|
"Failed to verify email address: make sure you clicked the link in the email": "Неуспешно потвърждаване на имейл адреса: уверете се, че сте кликнали върху връзката в имейла",
|
||||||
"Analytics": "Статистика",
|
|
||||||
"Call Failed": "Неуспешно повикване",
|
"Call Failed": "Неуспешно повикване",
|
||||||
"You cannot place a call with yourself.": "Не може да осъществите разговор със себе си.",
|
"You cannot place a call with yourself.": "Не може да осъществите разговор със себе си.",
|
||||||
"Warning!": "Внимание!",
|
"Warning!": "Внимание!",
|
||||||
|
@ -128,7 +125,6 @@
|
||||||
"Export E2E room keys": "Експортирай E2E ключове",
|
"Export E2E room keys": "Експортирай E2E ключове",
|
||||||
"Do you want to set an email address?": "Искате ли да зададете имейл адрес?",
|
"Do you want to set an email address?": "Искате ли да зададете имейл адрес?",
|
||||||
"Current password": "Текуща парола",
|
"Current password": "Текуща парола",
|
||||||
"Password": "Парола",
|
|
||||||
"New Password": "Нова парола",
|
"New Password": "Нова парола",
|
||||||
"Confirm password": "Потвърждаване на парола",
|
"Confirm password": "Потвърждаване на парола",
|
||||||
"Change Password": "Смяна на парола",
|
"Change Password": "Смяна на парола",
|
||||||
|
@ -147,7 +143,6 @@
|
||||||
"Ignore": "Игнорирай",
|
"Ignore": "Игнорирай",
|
||||||
"Mention": "Спомени",
|
"Mention": "Спомени",
|
||||||
"Invite": "Покани",
|
"Invite": "Покани",
|
||||||
"Unmute": "Премахни заглушаването",
|
|
||||||
"Admin Tools": "Инструменти на администратора",
|
"Admin Tools": "Инструменти на администратора",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "и %(count)s други...",
|
"other": "и %(count)s други...",
|
||||||
|
@ -175,7 +170,6 @@
|
||||||
"Offline for %(duration)s": "Офлайн от %(duration)s",
|
"Offline for %(duration)s": "Офлайн от %(duration)s",
|
||||||
"Unknown for %(duration)s": "Неизвестен от %(duration)s",
|
"Unknown for %(duration)s": "Неизвестен от %(duration)s",
|
||||||
"Idle": "Неактивен",
|
"Idle": "Неактивен",
|
||||||
"Offline": "Офлайн",
|
|
||||||
"Unknown": "Неизвестен",
|
"Unknown": "Неизвестен",
|
||||||
"Replying": "Отговаря",
|
"Replying": "Отговаря",
|
||||||
"Save": "Запази",
|
"Save": "Запази",
|
||||||
|
@ -185,7 +179,6 @@
|
||||||
},
|
},
|
||||||
"Join Room": "Присъединяване към стаята",
|
"Join Room": "Присъединяване към стаята",
|
||||||
"Upload avatar": "Качи профилна снимка",
|
"Upload avatar": "Качи профилна снимка",
|
||||||
"Settings": "Настройки",
|
|
||||||
"Forget room": "Забрави стаята",
|
"Forget room": "Забрави стаята",
|
||||||
"Invites": "Покани",
|
"Invites": "Покани",
|
||||||
"Favourites": "Любими",
|
"Favourites": "Любими",
|
||||||
|
@ -242,7 +235,6 @@
|
||||||
"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?": "Изтриването на приспособление го премахва за всички потребители в тази стая. Сигурни ли сте, че искате да изтриете това приспособление?",
|
||||||
"Delete widget": "Изтрий приспособлението",
|
"Delete widget": "Изтрий приспособлението",
|
||||||
"Create new room": "Създай нова стая",
|
"Create new room": "Създай нова стая",
|
||||||
"No results": "Няма резултати",
|
|
||||||
"Home": "Начална страница",
|
"Home": "Начална страница",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -386,7 +378,6 @@
|
||||||
"one": "Качване на %(filename)s и %(count)s друг"
|
"one": "Качване на %(filename)s и %(count)s друг"
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "Качване на %(filename)s",
|
"Uploading %(filename)s": "Качване на %(filename)s",
|
||||||
"Success": "Успешно",
|
|
||||||
"<not supported>": "<не се поддържа>",
|
"<not supported>": "<не се поддържа>",
|
||||||
"Import E2E room keys": "Импортирай E2E ключове",
|
"Import E2E room keys": "Импортирай E2E ключове",
|
||||||
"Cryptography": "Криптография",
|
"Cryptography": "Криптография",
|
||||||
|
@ -709,7 +700,6 @@
|
||||||
"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.": "Потвърди потребителя и го маркирай като доверен. Доверяването на потребители Ви дава допълнително спокойствие при използване на съобщения шифровани от край-до-край.",
|
||||||
"Incoming Verification Request": "Входяща заявка за потвърждение",
|
"Incoming Verification Request": "Входяща заявка за потвърждение",
|
||||||
"Go back": "Върни се",
|
"Go back": "Върни се",
|
||||||
"Username": "Потребителско име",
|
|
||||||
"Email (optional)": "Имейл (незадължително)",
|
"Email (optional)": "Имейл (незадължително)",
|
||||||
"Phone (optional)": "Телефон (незадължително)",
|
"Phone (optional)": "Телефон (незадължително)",
|
||||||
"Confirm": "Потвърди",
|
"Confirm": "Потвърди",
|
||||||
|
@ -1217,9 +1207,7 @@
|
||||||
},
|
},
|
||||||
"Messages in this room are end-to-end encrypted.": "Съобщенията в тази стая са шифровани от край-до-край.",
|
"Messages in this room are end-to-end encrypted.": "Съобщенията в тази стая са шифровани от край-до-край.",
|
||||||
"Verify": "Потвърди",
|
"Verify": "Потвърди",
|
||||||
"Security": "Сигурност",
|
|
||||||
"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>",
|
||||||
"Reactions": "Реакции",
|
|
||||||
"Any of the following data may be shared:": "Следните данни може да бъдат споделени:",
|
"Any of the following data may be shared:": "Следните данни може да бъдат споделени:",
|
||||||
"Your display name": "Вашето име",
|
"Your display name": "Вашето име",
|
||||||
"Your user ID": "Потребителския ви идентификатор",
|
"Your user ID": "Потребителския ви идентификатор",
|
||||||
|
@ -1248,7 +1236,6 @@
|
||||||
"Show info about bridges in room settings": "Показвай информация за връзки с други мрежи в настройките на стаята",
|
"Show info about bridges in room settings": "Показвай информация за връзки с други мрежи в настройките на стаята",
|
||||||
"This bridge is managed by <user />.": "Тази връзка с друга мрежа се управлява от <user />.",
|
"This bridge is managed by <user />.": "Тази връзка с друга мрежа се управлява от <user />.",
|
||||||
"Recent Conversations": "Скорошни разговори",
|
"Recent Conversations": "Скорошни разговори",
|
||||||
"Suggestions": "Предложения",
|
|
||||||
"Show more": "Покажи повече",
|
"Show more": "Покажи повече",
|
||||||
"Direct Messages": "Директни съобщения",
|
"Direct Messages": "Директни съобщения",
|
||||||
"Go": "Давай",
|
"Go": "Давай",
|
||||||
|
@ -1424,8 +1411,6 @@
|
||||||
"Verification timed out.": "Изтече времето за верификация.",
|
"Verification timed out.": "Изтече времето за верификация.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s отказа верификацията.",
|
"%(displayName)s cancelled verification.": "%(displayName)s отказа верификацията.",
|
||||||
"You cancelled verification.": "Отказахте верификацията.",
|
"You cancelled verification.": "Отказахте верификацията.",
|
||||||
"Verification cancelled": "Верификацията беше отказана",
|
|
||||||
"Encryption enabled": "Шифроването е включено",
|
|
||||||
"Encryption not enabled": "Шифроването не е включено",
|
"Encryption not enabled": "Шифроването не е включено",
|
||||||
"The encryption used by this room isn't supported.": "Шифроването използвано от тази стая не се поддържа.",
|
"The encryption used by this room isn't supported.": "Шифроването използвано от тази стая не се поддържа.",
|
||||||
"You declined": "Отказахте",
|
"You declined": "Отказахте",
|
||||||
|
@ -1523,7 +1508,6 @@
|
||||||
"Explore Public Rooms": "Разгледай публичните стаи",
|
"Explore Public Rooms": "Разгледай публичните стаи",
|
||||||
"Create a Group Chat": "Създай групов чат",
|
"Create a Group Chat": "Създай групов чат",
|
||||||
"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.": "Администраторът на сървъра е изключил шифроване от край-до-край по подразбиране за лични стаи и за директни съобщения.",
|
||||||
"People": "Хора",
|
|
||||||
"Switch to light mode": "Смени на светъл режим",
|
"Switch to light mode": "Смени на светъл режим",
|
||||||
"Switch to dark mode": "Смени на тъмен режим",
|
"Switch to dark mode": "Смени на тъмен режим",
|
||||||
"Switch theme": "Смени темата",
|
"Switch theme": "Смени темата",
|
||||||
|
@ -1600,8 +1584,6 @@
|
||||||
"Use a system font": "Използвай системния шрифт",
|
"Use a system font": "Използвай системния шрифт",
|
||||||
"System font name": "Име на системния шрифт",
|
"System font name": "Име на системния шрифт",
|
||||||
"Hey you. You're the best!": "Хей, ти. Върхът си!",
|
"Hey you. You're the best!": "Хей, ти. Върхът си!",
|
||||||
"Message layout": "Изглед на съобщенията",
|
|
||||||
"Modern": "Модерен",
|
|
||||||
"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 сесия.",
|
||||||
"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.": "Автентичността на това шифровано съобщение не може да бъде гарантирана на това устройство.",
|
||||||
|
@ -1670,7 +1652,6 @@
|
||||||
"Send feedback": "Изпрати обратна връзка",
|
"Send feedback": "Изпрати обратна връзка",
|
||||||
"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> за да ни помогнете да открием проблема.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Първо прегледайте <existingIssuesLink>съществуващите проблеми в Github</existingIssuesLink>. Няма подобни? <newIssueLink>Създайте нов</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Първо прегледайте <existingIssuesLink>съществуващите проблеми в Github</existingIssuesLink>. Няма подобни? <newIssueLink>Създайте нов</newIssueLink>.",
|
||||||
"Report a bug": "Съобщете за проблем",
|
|
||||||
"Comment": "Коментар",
|
"Comment": "Коментар",
|
||||||
"Feedback sent": "Обратната връзка беше изпратена",
|
"Feedback sent": "Обратната връзка беше изпратена",
|
||||||
"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 от присъединяване в тази стая.",
|
||||||
|
@ -1694,7 +1675,6 @@
|
||||||
"Join the conference at the top of this room": "Присъединете се към конференцията в горната част на стаята",
|
"Join the conference at the top of this room": "Присъединете се към конференцията в горната част на стаята",
|
||||||
"Ignored attempt to disable encryption": "Опитът за изключване на шифроването беше игнориран",
|
"Ignored attempt to disable encryption": "Опитът за изключване на шифроването беше игнориран",
|
||||||
"Room settings": "Настройки на стаята",
|
"Room settings": "Настройки на стаята",
|
||||||
"About": "Относно",
|
|
||||||
"Not encrypted": "Не е шифровано",
|
"Not encrypted": "Не е шифровано",
|
||||||
"Add widgets, bridges & bots": "Добави приспособления, мостове и ботове",
|
"Add widgets, bridges & bots": "Добави приспособления, мостове и ботове",
|
||||||
"Edit widgets, bridges & bots": "Промени приспособления, мостове и ботове",
|
"Edit widgets, bridges & bots": "Промени приспособления, мостове и ботове",
|
||||||
|
@ -2119,6 +2099,28 @@
|
||||||
},
|
},
|
||||||
"%(user1)s and %(user2)s": "%(user1)s и %(user2)s",
|
"%(user1)s and %(user2)s": "%(user1)s и %(user2)s",
|
||||||
"Empty room": "Празна стая",
|
"Empty room": "Празна стая",
|
||||||
|
"common": {
|
||||||
|
"about": "Относно",
|
||||||
|
"analytics": "Статистика",
|
||||||
|
"encryption_enabled": "Шифроването е включено",
|
||||||
|
"error": "Грешка",
|
||||||
|
"message_layout": "Изглед на съобщенията",
|
||||||
|
"modern": "Модерен",
|
||||||
|
"mute": "Заглуши",
|
||||||
|
"no_results": "Няма резултати",
|
||||||
|
"offline": "Офлайн",
|
||||||
|
"password": "Парола",
|
||||||
|
"people": "Хора",
|
||||||
|
"reactions": "Реакции",
|
||||||
|
"report_a_bug": "Съобщете за проблем",
|
||||||
|
"security": "Сигурност",
|
||||||
|
"settings": "Настройки",
|
||||||
|
"success": "Успешно",
|
||||||
|
"suggestions": "Предложения",
|
||||||
|
"unmute": "Премахни заглушаването",
|
||||||
|
"username": "Потребителско име",
|
||||||
|
"verification_cancelled": "Верификацията беше отказана"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Потребителско меню"
|
"user_menu": "Потребителско меню"
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,11 +9,8 @@
|
||||||
"Cancel": "Cancel·la",
|
"Cancel": "Cancel·la",
|
||||||
"Close": "Tanca",
|
"Close": "Tanca",
|
||||||
"Create new room": "Crea una sala nova",
|
"Create new room": "Crea una sala nova",
|
||||||
"Error": "Error",
|
|
||||||
"Failed to forget room %(errCode)s": "No s'ha pogut oblidar la sala %(errCode)s",
|
"Failed to forget room %(errCode)s": "No s'ha pogut oblidar la sala %(errCode)s",
|
||||||
"Favourite": "Favorit",
|
"Favourite": "Favorit",
|
||||||
"Mute": "Silencia",
|
|
||||||
"Settings": "Configuració",
|
|
||||||
"Start chat": "Inicia un xat",
|
"Start chat": "Inicia un xat",
|
||||||
"Failed to change password. Is your password correct?": "S'ha produït un error en canviar la contrasenya. És correcta la teva contrasenya?",
|
"Failed to change password. Is your password correct?": "S'ha produït un error en canviar la contrasenya. És correcta la teva contrasenya?",
|
||||||
"Continue": "Continua",
|
"Continue": "Continua",
|
||||||
|
@ -130,7 +127,6 @@
|
||||||
"Export E2E room keys": "Exporta les claus E2E de la sala",
|
"Export E2E room keys": "Exporta les claus E2E de la sala",
|
||||||
"Do you want to set an email address?": "Voleu establir una adreça de correu electrònic?",
|
"Do you want to set an email address?": "Voleu establir una adreça de correu electrònic?",
|
||||||
"Current password": "Contrasenya actual",
|
"Current password": "Contrasenya actual",
|
||||||
"Password": "Contrasenya",
|
|
||||||
"New Password": "Nova contrasenya",
|
"New Password": "Nova contrasenya",
|
||||||
"Confirm password": "Confirma la contrasenya",
|
"Confirm password": "Confirma la contrasenya",
|
||||||
"Change Password": "Canvia la contrasenya",
|
"Change Password": "Canvia la contrasenya",
|
||||||
|
@ -151,7 +147,6 @@
|
||||||
"Jump to read receipt": "Vés a l'últim missatge llegit",
|
"Jump to read receipt": "Vés a l'últim missatge llegit",
|
||||||
"Mention": "Menciona",
|
"Mention": "Menciona",
|
||||||
"Invite": "Convida",
|
"Invite": "Convida",
|
||||||
"Unmute": "No silenciïs",
|
|
||||||
"Admin Tools": "Eines d'administració",
|
"Admin Tools": "Eines d'administració",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "i %(count)s altres...",
|
"other": "i %(count)s altres...",
|
||||||
|
@ -181,7 +176,6 @@
|
||||||
"Unknown for %(duration)s": "Desconegut durant %(duration)s",
|
"Unknown for %(duration)s": "Desconegut durant %(duration)s",
|
||||||
"Online": "En línia",
|
"Online": "En línia",
|
||||||
"Idle": "Inactiu",
|
"Idle": "Inactiu",
|
||||||
"Offline": "Fora de línia",
|
|
||||||
"Unknown": "Desconegut",
|
"Unknown": "Desconegut",
|
||||||
"Replying": "S'està contestant",
|
"Replying": "S'està contestant",
|
||||||
"Unnamed room": "Sala sense nom",
|
"Unnamed room": "Sala sense nom",
|
||||||
|
@ -245,7 +239,6 @@
|
||||||
"Delete Widget": "Suprimeix el giny",
|
"Delete Widget": "Suprimeix el giny",
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "La supressió d'un giny l'elimina per a tots els usuaris d'aquesta sala. Esteu segur que voleu eliminar aquest giny?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "La supressió d'un giny l'elimina per a tots els usuaris d'aquesta sala. Esteu segur que voleu eliminar aquest giny?",
|
||||||
"Delete widget": "Suprimeix el giny",
|
"Delete widget": "Suprimeix el giny",
|
||||||
"No results": "Sense resultats",
|
|
||||||
"Home": "Inici",
|
"Home": "Inici",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -400,7 +393,6 @@
|
||||||
"Import room keys": "Importa les claus de la sala",
|
"Import room keys": "Importa les claus de la sala",
|
||||||
"Import": "Importa",
|
"Import": "Importa",
|
||||||
"Email": "Correu electrònic",
|
"Email": "Correu electrònic",
|
||||||
"Analytics": "Analítiques",
|
|
||||||
"Submit debug logs": "Enviar logs de depuració",
|
"Submit debug logs": "Enviar logs de depuració",
|
||||||
"Sunday": "Diumenge",
|
"Sunday": "Diumenge",
|
||||||
"Failed to add tag %(tagName)s to room": "No s'ha pogut afegir l'etiqueta %(tagName)s a la sala",
|
"Failed to add tag %(tagName)s to room": "No s'ha pogut afegir l'etiqueta %(tagName)s a la sala",
|
||||||
|
@ -653,5 +645,15 @@
|
||||||
"Integration manager": "Gestor d'integracions",
|
"Integration manager": "Gestor d'integracions",
|
||||||
"Integration managers receive configuration data, and can modify widgets, send room invites, and set power levels on your behalf.": "Els gestors d'integracions reben dades de configuració i poden modificar ginys, enviar invitacions a sales i establir nivells d'autoritat en nom teu.",
|
"Integration managers receive configuration data, and can modify widgets, send room invites, and set power levels on your behalf.": "Els gestors d'integracions reben dades de configuració i poden modificar ginys, enviar invitacions a sales i establir nivells d'autoritat en nom teu.",
|
||||||
"Identity server": "Servidor d'identitat",
|
"Identity server": "Servidor d'identitat",
|
||||||
"Could not connect to identity server": "No s'ha pogut connectar amb el servidor d'identitat"
|
"Could not connect to identity server": "No s'ha pogut connectar amb el servidor d'identitat",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Analítiques",
|
||||||
|
"error": "Error",
|
||||||
|
"mute": "Silencia",
|
||||||
|
"no_results": "Sense resultats",
|
||||||
|
"offline": "Fora de línia",
|
||||||
|
"password": "Contrasenya",
|
||||||
|
"settings": "Configuració",
|
||||||
|
"unmute": "No silenciïs"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"Notifications": "Oznámení",
|
"Notifications": "Oznámení",
|
||||||
"Rooms": "Místnosti",
|
"Rooms": "Místnosti",
|
||||||
"Search": "Hledání",
|
"Search": "Hledání",
|
||||||
"Settings": "Nastavení",
|
|
||||||
"Video call": "Videohovor",
|
"Video call": "Videohovor",
|
||||||
"Voice call": "Hlasový hovor",
|
"Voice call": "Hlasový hovor",
|
||||||
"Sun": "Ne",
|
"Sun": "Ne",
|
||||||
|
@ -37,9 +36,7 @@
|
||||||
"Options": "Volby",
|
"Options": "Volby",
|
||||||
"Register": "Zaregistrovat",
|
"Register": "Zaregistrovat",
|
||||||
"Cancel": "Storno",
|
"Cancel": "Storno",
|
||||||
"Error": "Chyba",
|
|
||||||
"Favourite": "Oblíbené",
|
"Favourite": "Oblíbené",
|
||||||
"Mute": "Ztlumit",
|
|
||||||
"Continue": "Pokračovat",
|
"Continue": "Pokračovat",
|
||||||
"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",
|
||||||
|
@ -135,8 +132,6 @@
|
||||||
"PM": "odp.",
|
"PM": "odp.",
|
||||||
"No display name": "Žádné zobrazované jméno",
|
"No display name": "Žádné zobrazované jméno",
|
||||||
"No more results": "Žádné další výsledky",
|
"No more results": "Žádné další výsledky",
|
||||||
"No results": "Žádné výsledky",
|
|
||||||
"Password": "Heslo",
|
|
||||||
"Passwords can't be empty": "Hesla nemohou být prázdná",
|
"Passwords can't be empty": "Hesla nemohou být prázdná",
|
||||||
"Permissions": "Oprávnění",
|
"Permissions": "Oprávnění",
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
|
@ -167,7 +162,6 @@
|
||||||
"Someone": "Někdo",
|
"Someone": "Někdo",
|
||||||
"Start authentication": "Zahájit autentizaci",
|
"Start authentication": "Zahájit autentizaci",
|
||||||
"Submit": "Odeslat",
|
"Submit": "Odeslat",
|
||||||
"Success": "Úspěch",
|
|
||||||
"This email address is already in use": "Tato e-mailová adresa je již používána",
|
"This email address is already in use": "Tato e-mailová adresa je již používána",
|
||||||
"This email address was not found": "Tato e-mailová adresa nebyla nalezena",
|
"This email address was not found": "Tato e-mailová adresa nebyla nalezena",
|
||||||
"This room has no local addresses": "Tato místnost nemá žádné místní adresy",
|
"This room has no local addresses": "Tato místnost nemá žádné místní adresy",
|
||||||
|
@ -179,7 +173,6 @@
|
||||||
"You cannot place a call with yourself.": "Nemůžete volat sami sobě.",
|
"You cannot place a call with yourself.": "Nemůžete volat sami sobě.",
|
||||||
"You do not have permission to post to this room": "Nemáte oprávnění zveřejňovat příspěvky v této místnosti",
|
"You do not have permission to post to this room": "Nemáte oprávnění zveřejňovat příspěvky v této místnosti",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Offline": "Offline",
|
|
||||||
"Check for update": "Zkontrolovat aktualizace",
|
"Check for update": "Zkontrolovat aktualizace",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Nelze se připojit k domovskému serveru přes HTTP, pokud je v adresním řádku HTTPS. Buď použijte HTTPS, nebo <a>povolte nezabezpečené skripty</a>.",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Nelze se připojit k domovskému serveru přes HTTP, pokud je v adresním řádku HTTPS. Buď použijte HTTPS, nebo <a>povolte nezabezpečené skripty</a>.",
|
||||||
"Displays action": "Zobrazí akci",
|
"Displays action": "Zobrazí akci",
|
||||||
|
@ -195,7 +188,6 @@
|
||||||
"Unable to verify email address.": "Nepodařilo se ověřit e-mailovou adresu.",
|
"Unable to verify email address.": "Nepodařilo se ověřit e-mailovou adresu.",
|
||||||
"Unban": "Zrušit vykázání",
|
"Unban": "Zrušit vykázání",
|
||||||
"Unable to enable Notifications": "Nepodařilo se povolit oznámení",
|
"Unable to enable Notifications": "Nepodařilo se povolit oznámení",
|
||||||
"Unmute": "Povolit",
|
|
||||||
"Unnamed Room": "Nepojmenovaná místnost",
|
"Unnamed Room": "Nepojmenovaná místnost",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
"zero": "Nahrávání souboru %(filename)s",
|
"zero": "Nahrávání souboru %(filename)s",
|
||||||
|
@ -409,7 +401,6 @@
|
||||||
"Sent messages will be stored until your connection has returned.": "Odeslané zprávy zůstanou uložené, dokud se spojení znovu neobnoví.",
|
"Sent messages will be stored until your connection has returned.": "Odeslané zprávy zůstanou uložené, dokud se spojení znovu neobnoví.",
|
||||||
"Room": "Místnost",
|
"Room": "Místnost",
|
||||||
"Failed to load timeline position": "Nepodařilo se načíst pozici na časové ose",
|
"Failed to load timeline position": "Nepodařilo se načíst pozici na časové ose",
|
||||||
"Analytics": "Analytické údaje",
|
|
||||||
"Labs": "Experimentální funkce",
|
"Labs": "Experimentální funkce",
|
||||||
"Reject all %(invitedRooms)s invites": "Odmítnutí všech %(invitedRooms)s pozvání",
|
"Reject all %(invitedRooms)s invites": "Odmítnutí všech %(invitedRooms)s pozvání",
|
||||||
"Start automatically after system login": "Zahájit automaticky po přihlášení do systému",
|
"Start automatically after system login": "Zahájit automaticky po přihlášení do systému",
|
||||||
|
@ -796,7 +787,6 @@
|
||||||
"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",
|
||||||
"Username": "Uživatelské jméno",
|
|
||||||
"Change": "Změnit",
|
"Change": "Změnit",
|
||||||
"Email (optional)": "E-mail (nepovinné)",
|
"Email (optional)": "E-mail (nepovinné)",
|
||||||
"Phone (optional)": "Telefonní číslo (nepovinné)",
|
"Phone (optional)": "Telefonní číslo (nepovinné)",
|
||||||
|
@ -1197,10 +1187,8 @@
|
||||||
"Trusted": "Důvěryhodné",
|
"Trusted": "Důvěryhodné",
|
||||||
"Not trusted": "Nedůvěryhodné",
|
"Not trusted": "Nedůvěryhodné",
|
||||||
"Messages in this room are end-to-end encrypted.": "Zprávy jsou v této místnosti koncově šifrované.",
|
"Messages in this room are end-to-end encrypted.": "Zprávy jsou v této místnosti koncově šifrované.",
|
||||||
"Security": "Zabezpečení",
|
|
||||||
"Verify": "Ověřit",
|
"Verify": "Ověřit",
|
||||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Tohoto uživatele ignorujete, takže jsou jeho zprávy skryté. <a>Přesto zobrazit.</a>",
|
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Tohoto uživatele ignorujete, takže jsou jeho zprávy skryté. <a>Přesto zobrazit.</a>",
|
||||||
"Reactions": "Reakce",
|
|
||||||
"Any of the following data may be shared:": "Následující data můžou být sdílena:",
|
"Any of the following data may be shared:": "Následující data můžou být sdílena:",
|
||||||
"Your display name": "Vaše zobrazované jméno",
|
"Your display name": "Vaše zobrazované jméno",
|
||||||
"Your user ID": "Vaše ID",
|
"Your user ID": "Vaše ID",
|
||||||
|
@ -1331,7 +1319,6 @@
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Pokud vám skenování kódů nefunguje, ověřte se porovnáním emoji.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Pokud vám skenování kódů nefunguje, ověřte se porovnáním emoji.",
|
||||||
"You've successfully verified %(displayName)s!": "Úspěšně jste ověřili uživatele %(displayName)s!",
|
"You've successfully verified %(displayName)s!": "Úspěšně jste ověřili uživatele %(displayName)s!",
|
||||||
"Got it": "Rozumím",
|
"Got it": "Rozumím",
|
||||||
"Encryption enabled": "Šifrování je zapnuté",
|
|
||||||
"Encryption not enabled": "Šifrování je vypnuté",
|
"Encryption not enabled": "Šifrování je vypnuté",
|
||||||
"The encryption used by this room isn't supported.": "Šifrování používané v této místnosti není podporované.",
|
"The encryption used by this room isn't supported.": "Šifrování používané v této místnosti není podporované.",
|
||||||
"Clear all data in this session?": "Smazat všechna data v této relaci?",
|
"Clear all data in this session?": "Smazat všechna data v této relaci?",
|
||||||
|
@ -1347,7 +1334,6 @@
|
||||||
"Failed to find the following users": "Nepovedlo se najít následující uživatele",
|
"Failed to find the following users": "Nepovedlo se najít následující uživatele",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Následující uživatelé asi neexistují nebo jsou neplatní a nelze je pozvat: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Následující uživatelé asi neexistují nebo jsou neplatní a nelze je pozvat: %(csvNames)s",
|
||||||
"Recent Conversations": "Nedávné konverzace",
|
"Recent Conversations": "Nedávné konverzace",
|
||||||
"Suggestions": "Návrhy",
|
|
||||||
"Recently Direct Messaged": "Nedávno kontaktovaní",
|
"Recently Direct Messaged": "Nedávno kontaktovaní",
|
||||||
"Go": "Ok",
|
"Go": "Ok",
|
||||||
"Confirm your identity by entering your account password below.": "Potvrďte svou identitu zadáním hesla ke svému účtu.",
|
"Confirm your identity by entering your account password below.": "Potvrďte svou identitu zadáním hesla ke svému účtu.",
|
||||||
|
@ -1435,7 +1421,6 @@
|
||||||
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Nastavit adresy pro tuto místnost, aby uživatelé mohli místnost najít zkrze váš domovský server (%(localDomain)s)",
|
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Nastavit adresy pro tuto místnost, aby uživatelé mohli místnost najít zkrze váš domovský server (%(localDomain)s)",
|
||||||
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "V šifrovaných místnostech jsou vaše zprávy bezpečné a pouze vy a příjemce má klíče k jejich rozšifrování.",
|
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "V šifrovaných místnostech jsou vaše zprávy bezpečné a pouze vy a příjemce má klíče k jejich rozšifrování.",
|
||||||
"Verify all users in a room to ensure it's secure.": "Ověřit všechny uživatele v místnosti, abyste se přesvědčili o bezpečnosti.",
|
"Verify all users in a room to ensure it's secure.": "Ověřit všechny uživatele v místnosti, abyste se přesvědčili o bezpečnosti.",
|
||||||
"Verification cancelled": "Oveření bylo zrušeno",
|
|
||||||
"Enter a server name": "Zadejte jméno serveru",
|
"Enter a server name": "Zadejte jméno serveru",
|
||||||
"Use Single Sign On to continue": "Pokračovat pomocí Jednotného přihlášení",
|
"Use Single Sign On to continue": "Pokračovat pomocí Jednotného přihlášení",
|
||||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrďte přidání této adresy pomocí Jednotného přihlášení.",
|
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrďte přidání této adresy pomocí Jednotného přihlášení.",
|
||||||
|
@ -1538,8 +1523,6 @@
|
||||||
"Click the button below to confirm your identity.": "Klikněte na tlačítko níže pro potvrzení vaší identity.",
|
"Click the button below to confirm your identity.": "Klikněte na tlačítko níže pro potvrzení vaší identity.",
|
||||||
"a new master key signature": "nový podpis hlavního klíče",
|
"a new master key signature": "nový podpis hlavního klíče",
|
||||||
"New version available. <a>Update now.</a>": "Je dostupná nová verze. <a>Aktualizovat nyní.</a>",
|
"New version available. <a>Update now.</a>": "Je dostupná nová verze. <a>Aktualizovat nyní.</a>",
|
||||||
"Message layout": "Zobrazení zpráv",
|
|
||||||
"Modern": "Moderní",
|
|
||||||
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Zadejte jméno písma, které máte naistalované v systému, a %(brand)s se jej pokusí použít.",
|
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Zadejte jméno písma, které máte naistalované v systému, a %(brand)s se jej pokusí použít.",
|
||||||
"Customise your appearance": "Přizpůsobte si vzhled aplikace",
|
"Customise your appearance": "Přizpůsobte si vzhled aplikace",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Nastavení vzhledu působí jen v této relaci programu %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Nastavení vzhledu působí jen v této relaci programu %(brand)s.",
|
||||||
|
@ -1570,7 +1553,6 @@
|
||||||
"To link to this room, please add an address.": "Přidejte prosím místnosti adresu aby na ní šlo odkazovat.",
|
"To link to this room, please add an address.": "Přidejte prosím místnosti adresu aby na ní šlo odkazovat.",
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "Pravost této šifrované zprávy nelze na tomto zařízení ověřit.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "Pravost této šifrované zprávy nelze na tomto zařízení ověřit.",
|
||||||
"No recently visited rooms": "Žádné nedávno navštívené místnosti",
|
"No recently visited rooms": "Žádné nedávno navštívené místnosti",
|
||||||
"People": "Lidé",
|
|
||||||
"Explore public rooms": "Prozkoumat veřejné místnosti",
|
"Explore public rooms": "Prozkoumat veřejné místnosti",
|
||||||
"Preparing to download logs": "Příprava na stažení záznamů",
|
"Preparing to download logs": "Příprava na stažení záznamů",
|
||||||
"Download logs": "Stáhnout záznamy",
|
"Download logs": "Stáhnout záznamy",
|
||||||
|
@ -1632,7 +1614,6 @@
|
||||||
"The call could not be established": "Hovor se nepovedlo navázat",
|
"The call could not be established": "Hovor se nepovedlo navázat",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "TIP pro profíky: Pokud nahlásíte chybu, odešlete prosím <debugLogsLink>ladicí protokoly</debugLogsLink>, které nám pomohou problém vypátrat.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "TIP pro profíky: Pokud nahlásíte chybu, odešlete prosím <debugLogsLink>ladicí protokoly</debugLogsLink>, které nám pomohou problém vypátrat.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Nejříve si prosím prohlédněte <existingIssuesLink>existující chyby na Githubu</existingIssuesLink>. Žádná shoda? <newIssueLink>Nahlašte novou chybu</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Nejříve si prosím prohlédněte <existingIssuesLink>existující chyby na Githubu</existingIssuesLink>. Žádná shoda? <newIssueLink>Nahlašte novou chybu</newIssueLink>.",
|
||||||
"Report a bug": "Nahlásit chybu",
|
|
||||||
"Add widgets, bridges & bots": "Přidat widgety, propojení a boty",
|
"Add widgets, bridges & bots": "Přidat widgety, propojení a boty",
|
||||||
"Widgets": "Widgety",
|
"Widgets": "Widgety",
|
||||||
"Show Widgets": "Zobrazit widgety",
|
"Show Widgets": "Zobrazit widgety",
|
||||||
|
@ -1641,7 +1622,6 @@
|
||||||
"Use the <a>Desktop app</a> to see all encrypted files": "Pro zobrazení všech šifrovaných souborů použijte <a>desktopovou aplikaci</a>",
|
"Use the <a>Desktop app</a> to see all encrypted files": "Pro zobrazení všech šifrovaných souborů použijte <a>desktopovou aplikaci</a>",
|
||||||
"Attach files from chat or just drag and drop them anywhere in a room.": "Připojte soubory z chatu nebo je jednoduše přetáhněte kamkoli do místnosti.",
|
"Attach files from chat or just drag and drop them anywhere in a room.": "Připojte soubory z chatu nebo je jednoduše přetáhněte kamkoli do místnosti.",
|
||||||
"No files visible in this room": "V této místnosti nejsou viditelné žádné soubory",
|
"No files visible in this room": "V této místnosti nejsou viditelné žádné soubory",
|
||||||
"About": "O",
|
|
||||||
"Hey you. You're the best!": "Hej ty. Jsi nejlepší!",
|
"Hey you. You're the best!": "Hej ty. Jsi nejlepší!",
|
||||||
"Secret storage:": "Bezpečné úložiště:",
|
"Secret storage:": "Bezpečné úložiště:",
|
||||||
"Backup key cached:": "Klíč zálohy cachován:",
|
"Backup key cached:": "Klíč zálohy cachován:",
|
||||||
|
@ -2264,7 +2244,6 @@
|
||||||
"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",
|
"Support": "Podpora",
|
||||||
"Room name": "Název místnosti",
|
|
||||||
"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í",
|
||||||
|
@ -2388,7 +2367,6 @@
|
||||||
"Some suggestions may be hidden for privacy.": "Některé návrhy mohou být z důvodu ochrany soukromí skryty.",
|
"Some suggestions may be hidden for privacy.": "Některé návrhy mohou být z důvodu ochrany soukromí skryty.",
|
||||||
"Search for rooms or people": "Hledat místnosti nebo osoby",
|
"Search for rooms or people": "Hledat místnosti nebo osoby",
|
||||||
"Message preview": "Náhled zprávy",
|
"Message preview": "Náhled zprávy",
|
||||||
"Forward message": "Přeposlat zprávu",
|
|
||||||
"Sent": "Odesláno",
|
"Sent": "Odesláno",
|
||||||
"You don't have permission to do this": "K tomu nemáte povolení",
|
"You don't have permission to do this": "K tomu nemáte povolení",
|
||||||
"Error - Mixed content": "Chyba - Smíšený obsah",
|
"Error - Mixed content": "Chyba - Smíšený obsah",
|
||||||
|
@ -2531,8 +2509,6 @@
|
||||||
"Anyone will be able to find and join this room, not just members of <SpaceName/>.": "Tuto místnost bude moci najít a připojit se k ní kdokoli, nejen členové <SpaceName/>.",
|
"Anyone will be able to find and join this room, not just members of <SpaceName/>.": "Tuto místnost bude moci najít a připojit se k ní kdokoli, nejen členové <SpaceName/>.",
|
||||||
"You can change this at any time from room settings.": "Tuto hodnotu můžete kdykoli změnit v nastavení místnosti.",
|
"You can change this at any time from room settings.": "Tuto hodnotu můžete kdykoli změnit v nastavení místnosti.",
|
||||||
"Everyone in <SpaceName/> will be able to find and join this room.": "Všichni v <SpaceName/> budou moci tuto místnost najít a připojit se k ní.",
|
"Everyone in <SpaceName/> will be able to find and join this room.": "Všichni v <SpaceName/> budou moci tuto místnost najít a připojit se k ní.",
|
||||||
"Image": "Obrázek",
|
|
||||||
"Sticker": "Nálepka",
|
|
||||||
"The call is in an unknown state!": "Hovor je v neznámém stavu!",
|
"The call is in an unknown state!": "Hovor je v neznámém stavu!",
|
||||||
"Call back": "Zavolat zpět",
|
"Call back": "Zavolat zpět",
|
||||||
"Show %(count)s other previews": {
|
"Show %(count)s other previews": {
|
||||||
|
@ -2638,7 +2614,6 @@
|
||||||
"Change space avatar": "Změnit avatar prostoru",
|
"Change space avatar": "Změnit avatar prostoru",
|
||||||
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Kdokoli v <spaceName/> může prostor najít a připojit se. Můžete vybrat i další prostory.",
|
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Kdokoli v <spaceName/> může prostor najít a připojit se. Můžete vybrat i další prostory.",
|
||||||
"Message didn't send. Click for info.": "Zpráva se neodeslala. Klikněte pro informace.",
|
"Message didn't send. Click for info.": "Zpráva se neodeslala. Klikněte pro informace.",
|
||||||
"Message": "Zpráva",
|
|
||||||
"To join a space you'll need an invite.": "Pro připojení k prostoru potřebujete pozvánku.",
|
"To join a space you'll need an invite.": "Pro připojení k prostoru potřebujete pozvánku.",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s reagoval(a) na %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s reagoval(a) na %(content)s",
|
||||||
"Would you like to leave the rooms in this space?": "Chcete odejít z místností v tomto prostoru?",
|
"Would you like to leave the rooms in this space?": "Chcete odejít z místností v tomto prostoru?",
|
||||||
|
@ -3131,7 +3106,6 @@
|
||||||
"Share for %(duration)s": "Sdílet na %(duration)s",
|
"Share for %(duration)s": "Sdílet na %(duration)s",
|
||||||
"%(timeRemaining)s left": "%(timeRemaining)s zbývá",
|
"%(timeRemaining)s left": "%(timeRemaining)s zbývá",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Ladící protokoly obsahují údaje o používání aplikace včetně vašeho uživatelského jména, ID nebo aliasů místností, které jste navštívili, s kterými prvky uživatelského rozhraní jste naposledy interagovali a uživatelských jmen ostatních uživatelů. Neobsahují zprávy.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Ladící protokoly obsahují údaje o používání aplikace včetně vašeho uživatelského jména, ID nebo aliasů místností, které jste navštívili, s kterými prvky uživatelského rozhraní jste naposledy interagovali a uživatelských jmen ostatních uživatelů. Neobsahují zprávy.",
|
||||||
"Video": "Video",
|
|
||||||
"Next recently visited room or space": "Další nedávno navštívená místnost nebo prostor",
|
"Next recently visited room or space": "Další nedávno navštívená místnost nebo prostor",
|
||||||
"Previous recently visited room or space": "Předchozí nedávno navštívená místnost nebo prostor",
|
"Previous recently visited room or space": "Předchozí nedávno navštívená místnost nebo prostor",
|
||||||
"Event ID: %(eventId)s": "ID události: %(eventId)s",
|
"Event ID: %(eventId)s": "ID události: %(eventId)s",
|
||||||
|
@ -3758,7 +3732,6 @@
|
||||||
"Adding…": "Přidání…",
|
"Adding…": "Přidání…",
|
||||||
"Write something…": "Napište něco…",
|
"Write something…": "Napište něco…",
|
||||||
"Rejecting invite…": "Odmítání pozvánky…",
|
"Rejecting invite…": "Odmítání pozvánky…",
|
||||||
"Loading…": "Načítání…",
|
|
||||||
"Encrypting your message…": "Šifrování zprávy…",
|
"Encrypting your message…": "Šifrování zprávy…",
|
||||||
"Sending your message…": "Odeslání zprávy…",
|
"Sending your message…": "Odeslání zprávy…",
|
||||||
"Set a new account password…": "Nastavení nového hesla k účtu…",
|
"Set a new account password…": "Nastavení nového hesla k účtu…",
|
||||||
|
@ -3974,6 +3947,35 @@
|
||||||
"Deny": "Odmítnout",
|
"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": {
|
||||||
|
"about": "O",
|
||||||
|
"analytics": "Analytické údaje",
|
||||||
|
"encryption_enabled": "Šifrování je zapnuté",
|
||||||
|
"error": "Chyba",
|
||||||
|
"forward_message": "Přeposlat zprávu",
|
||||||
|
"image": "Obrázek",
|
||||||
|
"loading": "Načítání…",
|
||||||
|
"message": "Zpráva",
|
||||||
|
"message_layout": "Zobrazení zpráv",
|
||||||
|
"modern": "Moderní",
|
||||||
|
"mute": "Ztlumit",
|
||||||
|
"no_results": "Žádné výsledky",
|
||||||
|
"offline": "Offline",
|
||||||
|
"password": "Heslo",
|
||||||
|
"people": "Lidé",
|
||||||
|
"reactions": "Reakce",
|
||||||
|
"report_a_bug": "Nahlásit chybu",
|
||||||
|
"room_name": "Název místnosti",
|
||||||
|
"security": "Zabezpečení",
|
||||||
|
"settings": "Nastavení",
|
||||||
|
"sticker": "Nálepka",
|
||||||
|
"success": "Úspěch",
|
||||||
|
"suggestions": "Návrhy",
|
||||||
|
"unmute": "Povolit",
|
||||||
|
"username": "Uživatelské jméno",
|
||||||
|
"verification_cancelled": "Oveření bylo zrušeno",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Uživatelská nabídka"
|
"user_menu": "Uživatelská nabídka"
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
"Cryptography": "Kryptografi",
|
"Cryptography": "Kryptografi",
|
||||||
"Deactivate Account": "Deaktiver brugerkonto",
|
"Deactivate Account": "Deaktiver brugerkonto",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Error": "Fejl",
|
|
||||||
"Export E2E room keys": "Eksporter E2E rum nøgler",
|
"Export E2E room keys": "Eksporter E2E rum nøgler",
|
||||||
"Failed to change password. Is your password correct?": "Kunne ikke ændre adgangskoden. Er din adgangskode rigtig?",
|
"Failed to change password. Is your password correct?": "Kunne ikke ændre adgangskoden. Er din adgangskode rigtig?",
|
||||||
"Failed to reject invitation": "Kunne ikke afvise invitationen",
|
"Failed to reject invitation": "Kunne ikke afvise invitationen",
|
||||||
|
@ -36,7 +35,6 @@
|
||||||
"Favourite": "Favorit",
|
"Favourite": "Favorit",
|
||||||
"Notifications": "Notifikationer",
|
"Notifications": "Notifikationer",
|
||||||
"Remove": "Fjern",
|
"Remove": "Fjern",
|
||||||
"Settings": "Indstillinger",
|
|
||||||
"unknown error code": "Ukendt fejlkode",
|
"unknown error code": "Ukendt fejlkode",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Search": "Søg",
|
"Search": "Søg",
|
||||||
|
@ -46,7 +44,6 @@
|
||||||
"Cancel": "Afbryd",
|
"Cancel": "Afbryd",
|
||||||
"Edit": "Rediger",
|
"Edit": "Rediger",
|
||||||
"Failed to forget room %(errCode)s": "Kunne ikke glemme rummet %(errCode)s",
|
"Failed to forget room %(errCode)s": "Kunne ikke glemme rummet %(errCode)s",
|
||||||
"Mute": "Sæt på lydløs",
|
|
||||||
"Leave": "Forlad",
|
"Leave": "Forlad",
|
||||||
"Register": "Registrér",
|
"Register": "Registrér",
|
||||||
"Unnamed room": "Unavngivet rum",
|
"Unnamed room": "Unavngivet rum",
|
||||||
|
@ -173,7 +170,6 @@
|
||||||
"Reply": "Besvar",
|
"Reply": "Besvar",
|
||||||
"Failed to send logs: ": "Kunne ikke sende logfiler: ",
|
"Failed to send logs: ": "Kunne ikke sende logfiler: ",
|
||||||
"Preparing to send logs": "Forbereder afsendelse af logfiler",
|
"Preparing to send logs": "Forbereder afsendelse af logfiler",
|
||||||
"Analytics": "Analyse data",
|
|
||||||
"Call Failed": "Opkald mislykkedes",
|
"Call Failed": "Opkald mislykkedes",
|
||||||
"Call failed due to misconfigured server": "Opkaldet mislykkedes pga. fejlkonfigureret server",
|
"Call failed due to misconfigured server": "Opkaldet mislykkedes pga. fejlkonfigureret server",
|
||||||
"Please ask the administrator of your homeserver (<code>%(homeserverDomain)s</code>) to configure a TURN server in order for calls to work reliably.": "Bed administratoren af din homeserver (<code>%(homeserverDomain)s</code>) om at konfigurere en TURN server for at opkald virker pålideligt.",
|
"Please ask the administrator of your homeserver (<code>%(homeserverDomain)s</code>) to configure a TURN server in order for calls to work reliably.": "Bed administratoren af din homeserver (<code>%(homeserverDomain)s</code>) om at konfigurere en TURN server for at opkald virker pålideligt.",
|
||||||
|
@ -405,7 +401,6 @@
|
||||||
"Comment": "Kommentar",
|
"Comment": "Kommentar",
|
||||||
"Privacy": "Privatliv",
|
"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",
|
||||||
"No results": "Ingen resultater",
|
|
||||||
"Disable": "Deaktiver",
|
"Disable": "Deaktiver",
|
||||||
"Profile": "Profil",
|
"Profile": "Profil",
|
||||||
"Local address": "Lokal adresse",
|
"Local address": "Lokal adresse",
|
||||||
|
@ -713,9 +708,16 @@
|
||||||
"Incorrect username and/or password.": "Forkert brugernavn og/eller adgangskode.",
|
"Incorrect username and/or password.": "Forkert brugernavn og/eller adgangskode.",
|
||||||
"Your password has been reset.": "Din adgangskode er blevet nulstillet.",
|
"Your password has been reset.": "Din adgangskode er blevet nulstillet.",
|
||||||
"Forgot password?": "Glemt adgangskode?",
|
"Forgot password?": "Glemt adgangskode?",
|
||||||
"Password": "Adgangskode",
|
|
||||||
"Your password was successfully changed.": "Din adgangskode blev ændret.",
|
"Your password was successfully changed.": "Din adgangskode blev ændret.",
|
||||||
"New Password": "Ny adgangskode",
|
"New Password": "Ny adgangskode",
|
||||||
"Set a new custom sound": "Sæt en ny brugerdefineret lyd",
|
"Set a new custom sound": "Sæt en ny brugerdefineret lyd",
|
||||||
"Empty room": "Tomt rum"
|
"Empty room": "Tomt rum",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Analyse data",
|
||||||
|
"error": "Fejl",
|
||||||
|
"mute": "Sæt på lydløs",
|
||||||
|
"no_results": "Ingen resultater",
|
||||||
|
"password": "Adgangskode",
|
||||||
|
"settings": "Indstillinger"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
"Emoji": "Emojis",
|
"Emoji": "Emojis",
|
||||||
"Sign in": "Anmelden",
|
"Sign in": "Anmelden",
|
||||||
"Warning!": "Warnung!",
|
"Warning!": "Warnung!",
|
||||||
"Error": "Fehler",
|
|
||||||
"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?",
|
||||||
"Banned users": "Verbannte Benutzer",
|
"Banned users": "Verbannte Benutzer",
|
||||||
|
@ -46,7 +45,6 @@
|
||||||
"Notifications": "Benachrichtigungen",
|
"Notifications": "Benachrichtigungen",
|
||||||
"<not supported>": "<nicht unterstützt>",
|
"<not supported>": "<nicht unterstützt>",
|
||||||
"No users have specific privileges in this room": "Keine Nutzer haben in diesem Raum privilegierte Berechtigungen",
|
"No users have specific privileges in this room": "Keine Nutzer haben in diesem Raum privilegierte Berechtigungen",
|
||||||
"Password": "Passwort",
|
|
||||||
"Permissions": "Berechtigungen",
|
"Permissions": "Berechtigungen",
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
"Please check your email and click on the link it contains. Once this is done, click continue.": "Bitte prüfe deinen E-Mail-Posteingang und klicke auf den in der E-Mail enthaltenen Link. Anschließend auf \"Fortsetzen\" klicken.",
|
"Please check your email and click on the link it contains. Once this is done, click continue.": "Bitte prüfe deinen E-Mail-Posteingang und klicke auf den in der E-Mail enthaltenen Link. Anschließend auf \"Fortsetzen\" klicken.",
|
||||||
|
@ -55,11 +53,9 @@
|
||||||
"Reject invitation": "Einladung ablehnen",
|
"Reject invitation": "Einladung ablehnen",
|
||||||
"Remove": "Entfernen",
|
"Remove": "Entfernen",
|
||||||
"Return to login screen": "Zur Anmeldemaske zurückkehren",
|
"Return to login screen": "Zur Anmeldemaske zurückkehren",
|
||||||
"Settings": "Einstellungen",
|
|
||||||
"Signed Out": "Abgemeldet",
|
"Signed Out": "Abgemeldet",
|
||||||
"Sign out": "Abmelden",
|
"Sign out": "Abmelden",
|
||||||
"Someone": "Jemand",
|
"Someone": "Jemand",
|
||||||
"Success": "Erfolg",
|
|
||||||
"This doesn't appear to be a valid email address": "Dies scheint keine gültige E-Mail-Adresse zu sein",
|
"This doesn't appear to be a valid email address": "Dies scheint keine gültige E-Mail-Adresse zu sein",
|
||||||
"This room is not accessible by remote Matrix servers": "Dieser Raum ist von Personen auf anderen Matrix-Servern nicht betretbar",
|
"This room is not accessible by remote Matrix servers": "Dieser Raum ist von Personen auf anderen Matrix-Servern nicht betretbar",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
@ -152,7 +148,6 @@
|
||||||
"Join Room": "Raum betreten",
|
"Join Room": "Raum betreten",
|
||||||
"not specified": "nicht angegeben",
|
"not specified": "nicht angegeben",
|
||||||
"No more results": "Keine weiteren Ergebnisse",
|
"No more results": "Keine weiteren Ergebnisse",
|
||||||
"No results": "Keine Ergebnisse",
|
|
||||||
"OK": "Ok",
|
"OK": "Ok",
|
||||||
"Search": "Suchen",
|
"Search": "Suchen",
|
||||||
"Search failed": "Suche ist fehlgeschlagen",
|
"Search failed": "Suche ist fehlgeschlagen",
|
||||||
|
@ -183,9 +178,7 @@
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Uhrzeiten im 12-Stundenformat (z. B. 2:30 p. m.)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Uhrzeiten im 12-Stundenformat (z. B. 2:30 p. m.)",
|
||||||
"Email address": "E-Mail-Adresse",
|
"Email address": "E-Mail-Adresse",
|
||||||
"Error decrypting attachment": "Fehler beim Entschlüsseln des Anhangs",
|
"Error decrypting attachment": "Fehler beim Entschlüsseln des Anhangs",
|
||||||
"Mute": "Stummschalten",
|
|
||||||
"Operation failed": "Aktion fehlgeschlagen",
|
"Operation failed": "Aktion fehlgeschlagen",
|
||||||
"Unmute": "Stummschalten aufheben",
|
|
||||||
"Invalid file%(extra)s": "Ungültige Datei%(extra)s",
|
"Invalid file%(extra)s": "Ungültige Datei%(extra)s",
|
||||||
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s hat den Raumnamen entfernt.",
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s hat den Raumnamen entfernt.",
|
||||||
"Passphrases must match": "Passphrases müssen übereinstimmen",
|
"Passphrases must match": "Passphrases müssen übereinstimmen",
|
||||||
|
@ -210,10 +203,8 @@
|
||||||
"Import room keys": "Raum-Schlüssel importieren",
|
"Import room keys": "Raum-Schlüssel importieren",
|
||||||
"File to import": "Zu importierende Datei",
|
"File to import": "Zu importierende Datei",
|
||||||
"This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Dieser Prozess erlaubt es dir, die Schlüssel für die in verschlüsselten Räumen empfangenen Nachrichten in eine lokale Datei zu exportieren. In Zukunft wird es möglich sein, diese Datei in eine andere Matrix-Anwendung zu importieren, sodass diese die Nachrichten ebenfalls entschlüsseln kann.",
|
"This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Dieser Prozess erlaubt es dir, die Schlüssel für die in verschlüsselten Räumen empfangenen Nachrichten in eine lokale Datei zu exportieren. In Zukunft wird es möglich sein, diese Datei in eine andere Matrix-Anwendung zu importieren, sodass diese die Nachrichten ebenfalls entschlüsseln kann.",
|
||||||
"Analytics": "Analysedaten",
|
|
||||||
"Add an Integration": "Eine Integration hinzufügen",
|
"Add an Integration": "Eine Integration hinzufügen",
|
||||||
"URL Previews": "URL-Vorschau",
|
"URL Previews": "URL-Vorschau",
|
||||||
"Offline": "Offline",
|
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Dieser Prozess erlaubt es dir, die zuvor von einer anderen Matrix-Anwendung exportierten Verschlüsselungs-Schlüssel zu importieren. Danach kannst du alle Nachrichten entschlüsseln, die auch bereits auf der anderen Anwendung entschlüsselt werden konnten.",
|
"This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Dieser Prozess erlaubt es dir, die zuvor von einer anderen Matrix-Anwendung exportierten Verschlüsselungs-Schlüssel zu importieren. Danach kannst du alle Nachrichten entschlüsseln, die auch bereits auf der anderen Anwendung entschlüsselt werden konnten.",
|
||||||
"If you have previously used a more recent version of %(brand)s, your session may be incompatible with this version. Close this window and return to the more recent version.": "Wenn du zuvor eine aktuellere Version von %(brand)s verwendet hast, ist deine Sitzung eventuell inkompatibel mit dieser Version. Bitte schließe dieses Fenster und kehre zur aktuelleren Version zurück.",
|
"If you have previously used a more recent version of %(brand)s, your session may be incompatible with this version. Close this window and return to the more recent version.": "Wenn du zuvor eine aktuellere Version von %(brand)s verwendet hast, ist deine Sitzung eventuell inkompatibel mit dieser Version. Bitte schließe dieses Fenster und kehre zur aktuelleren Version zurück.",
|
||||||
|
@ -794,7 +785,6 @@
|
||||||
"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.",
|
||||||
"Username": "Benutzername",
|
|
||||||
"Change": "Ändern",
|
"Change": "Ändern",
|
||||||
"Email (optional)": "E-Mail-Adresse (optional)",
|
"Email (optional)": "E-Mail-Adresse (optional)",
|
||||||
"Phone (optional)": "Telefon (optional)",
|
"Phone (optional)": "Telefon (optional)",
|
||||||
|
@ -997,7 +987,6 @@
|
||||||
"Browse": "Durchsuchen",
|
"Browse": "Durchsuchen",
|
||||||
"Direct Messages": "Direktnachrichten",
|
"Direct Messages": "Direktnachrichten",
|
||||||
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Du kannst <code>/help</code> benutzen, um alle verfügbaren Befehle aufzulisten. Willst du es stattdessen als Nachricht senden?",
|
"You can use <code>/help</code> to list available commands. Did you mean to send this as a message?": "Du kannst <code>/help</code> benutzen, um alle verfügbaren Befehle aufzulisten. Willst du es stattdessen als Nachricht senden?",
|
||||||
"Suggestions": "Vorschläge",
|
|
||||||
"Recently Direct Messaged": "Zuletzt kontaktiert",
|
"Recently Direct Messaged": "Zuletzt kontaktiert",
|
||||||
"Go": "Los",
|
"Go": "Los",
|
||||||
"Command Help": "Befehl Hilfe",
|
"Command Help": "Befehl Hilfe",
|
||||||
|
@ -1024,7 +1013,6 @@
|
||||||
"one": "%(count)s Sitzung"
|
"one": "%(count)s Sitzung"
|
||||||
},
|
},
|
||||||
"Hide sessions": "Sitzungen ausblenden",
|
"Hide sessions": "Sitzungen ausblenden",
|
||||||
"Encryption enabled": "Verschlüsselung aktiviert",
|
|
||||||
"Encryption not enabled": "Verschlüsselung nicht aktiviert",
|
"Encryption not enabled": "Verschlüsselung nicht aktiviert",
|
||||||
"You verified %(name)s": "Du hast %(name)s verifiziert",
|
"You verified %(name)s": "Du hast %(name)s verifiziert",
|
||||||
"You cancelled verifying %(name)s": "Du hast die Verifizierung von %(name)s abgebrochen",
|
"You cancelled verifying %(name)s": "Du hast die Verifizierung von %(name)s abgebrochen",
|
||||||
|
@ -1058,7 +1046,6 @@
|
||||||
"Trusted": "Vertrauenswürdig",
|
"Trusted": "Vertrauenswürdig",
|
||||||
"Not trusted": "Nicht vertrauenswürdig",
|
"Not trusted": "Nicht vertrauenswürdig",
|
||||||
"Messages in this room are not end-to-end encrypted.": "Nachrichten in diesem Raum sind nicht Ende-zu-Ende verschlüsselt.",
|
"Messages in this room are not end-to-end encrypted.": "Nachrichten in diesem Raum sind nicht Ende-zu-Ende verschlüsselt.",
|
||||||
"Security": "Sicherheit",
|
|
||||||
"Ask %(displayName)s to scan your code:": "Bitte %(displayName)s, deinen Code zu scannen:",
|
"Ask %(displayName)s to scan your code:": "Bitte %(displayName)s, deinen Code zu scannen:",
|
||||||
"Verify by emoji": "Mit Emojis verifizieren",
|
"Verify by emoji": "Mit Emojis verifizieren",
|
||||||
"Verify by comparing unique emoji.": "Durch den Vergleich einzigartiger Emojis verifizieren.",
|
"Verify by comparing unique emoji.": "Durch den Vergleich einzigartiger Emojis verifizieren.",
|
||||||
|
@ -1328,7 +1315,6 @@
|
||||||
"Verification timed out.": "Verifikationsanfrage abgelaufen.",
|
"Verification timed out.": "Verifikationsanfrage abgelaufen.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s hat die Verifikationsanfrage abgelehnt.",
|
"%(displayName)s cancelled verification.": "%(displayName)s hat die Verifikationsanfrage abgelehnt.",
|
||||||
"You cancelled verification.": "Du hast die Verifikation abgebrochen.",
|
"You cancelled verification.": "Du hast die Verifikation abgebrochen.",
|
||||||
"Verification cancelled": "Verifikation abgebrochen",
|
|
||||||
"Message Actions": "Nachrichtenaktionen",
|
"Message Actions": "Nachrichtenaktionen",
|
||||||
"Show image": "Bild anzeigen",
|
"Show image": "Bild anzeigen",
|
||||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Du blockierst diesen Benutzer, deshalb werden seine Nachrichten nicht angezeigt. <a>Trotzdem anzeigen.</a>",
|
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Du blockierst diesen Benutzer, deshalb werden seine Nachrichten nicht angezeigt. <a>Trotzdem anzeigen.</a>",
|
||||||
|
@ -1337,7 +1323,6 @@
|
||||||
"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",
|
"Show all": "Alles zeigen",
|
||||||
"Reactions": "Reaktionen",
|
|
||||||
"<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",
|
||||||
|
@ -1576,7 +1561,6 @@
|
||||||
"This address is already in use": "Diese Adresse wird bereits verwendet",
|
"This address is already in use": "Diese Adresse wird bereits verwendet",
|
||||||
"Use a different passphrase?": "Eine andere Passphrase verwenden?",
|
"Use a different passphrase?": "Eine andere Passphrase verwenden?",
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Deine Server-Administration hat die Ende-zu-Ende-Verschlüsselung für private Räume und Direktnachrichten standardmäßig deaktiviert.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Deine Server-Administration hat die Ende-zu-Ende-Verschlüsselung für private Räume und Direktnachrichten standardmäßig deaktiviert.",
|
||||||
"People": "Personen",
|
|
||||||
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Beim Entfernen dieser Adresse ist ein Fehler aufgetreten. Vielleicht existiert sie nicht mehr oder es kam zu einem temporären Fehler.",
|
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Beim Entfernen dieser Adresse ist ein Fehler aufgetreten. Vielleicht existiert sie nicht mehr oder es kam zu einem temporären Fehler.",
|
||||||
"You've previously used a newer version of %(brand)s with this session. To use this version again with end to end encryption, you will need to sign out and back in again.": "Du hast für diese Sitzung zuvor eine neuere Version von %(brand)s verwendet. Um diese Version mit Ende-zu-Ende-Verschlüsselung wieder zu benutzen, musst du dich erst ab- und dann wieder anmelden.",
|
"You've previously used a newer version of %(brand)s with this session. To use this version again with end to end encryption, you will need to sign out and back in again.": "Du hast für diese Sitzung zuvor eine neuere Version von %(brand)s verwendet. Um diese Version mit Ende-zu-Ende-Verschlüsselung wieder zu benutzen, musst du dich erst ab- und dann wieder anmelden.",
|
||||||
"Switch to light mode": "Zum hellen Thema wechseln",
|
"Switch to light mode": "Zum hellen Thema wechseln",
|
||||||
|
@ -1601,8 +1585,6 @@
|
||||||
"Dark": "Dunkel",
|
"Dark": "Dunkel",
|
||||||
"Use custom size": "Andere Schriftgröße verwenden",
|
"Use custom size": "Andere Schriftgröße verwenden",
|
||||||
"Hey you. You're the best!": "Hey du. Du bist großartig!",
|
"Hey you. You're the best!": "Hey du. Du bist großartig!",
|
||||||
"Message layout": "Nachrichtenlayout",
|
|
||||||
"Modern": "Modern",
|
|
||||||
"Use a system font": "Systemschriftart verwenden",
|
"Use a system font": "Systemschriftart verwenden",
|
||||||
"System font name": "Systemschriftart",
|
"System font name": "Systemschriftart",
|
||||||
"Customise your appearance": "Verändere das Erscheinungsbild",
|
"Customise your appearance": "Verändere das Erscheinungsbild",
|
||||||
|
@ -1681,7 +1663,6 @@
|
||||||
"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",
|
||||||
"About": "Über",
|
|
||||||
"Room settings": "Raumeinstellungen",
|
"Room settings": "Raumeinstellungen",
|
||||||
"Take a picture": "Bildschirmfoto",
|
"Take a picture": "Bildschirmfoto",
|
||||||
"Unpin": "Nicht mehr anheften",
|
"Unpin": "Nicht mehr anheften",
|
||||||
|
@ -1735,7 +1716,6 @@
|
||||||
"Modal Widget": "Modales Widget",
|
"Modal Widget": "Modales Widget",
|
||||||
"Offline encrypted messaging using dehydrated devices": "Offline verschlüsselte Kommunikation mit Hilfe von dehydrierten Geräten",
|
"Offline encrypted messaging using dehydrated devices": "Offline verschlüsselte Kommunikation mit Hilfe von dehydrierten Geräten",
|
||||||
"Send feedback": "Rückmeldung senden",
|
"Send feedback": "Rückmeldung senden",
|
||||||
"Report a bug": "Einen Fehler melden",
|
|
||||||
"Feedback sent": "Rückmeldung gesendet",
|
"Feedback sent": "Rückmeldung gesendet",
|
||||||
"Takes the call in the current room off hold": "Beendet das Halten des Anrufs",
|
"Takes the call in the current room off hold": "Beendet das Halten des Anrufs",
|
||||||
"Places the call in the current room on hold": "Den aktuellen Anruf halten",
|
"Places the call in the current room on hold": "Den aktuellen Anruf halten",
|
||||||
|
@ -2202,7 +2182,6 @@
|
||||||
"Value in this room": "Wert in diesem Raum",
|
"Value in this room": "Wert in diesem Raum",
|
||||||
"Values at explicit levels": "Werte für explizite Stufen",
|
"Values at explicit levels": "Werte für explizite Stufen",
|
||||||
"Settable at room": "Für den Raum einstellbar",
|
"Settable at room": "Für den Raum einstellbar",
|
||||||
"Room name": "Raumname",
|
|
||||||
"%(count)s members": {
|
"%(count)s members": {
|
||||||
"other": "%(count)s Mitglieder",
|
"other": "%(count)s Mitglieder",
|
||||||
"one": "%(count)s Mitglied"
|
"one": "%(count)s Mitglied"
|
||||||
|
@ -2389,7 +2368,6 @@
|
||||||
"Or send invite link": "Oder versende einen Einladungslink",
|
"Or send invite link": "Oder versende einen Einladungslink",
|
||||||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Sofern du die Berechtigung hast, öffne das Menü einer Nachricht und wähle <b>Anheften</b>, um sie hier aufzubewahren.",
|
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Sofern du die Berechtigung hast, öffne das Menü einer Nachricht und wähle <b>Anheften</b>, um sie hier aufzubewahren.",
|
||||||
"Search for rooms or people": "Räume oder Leute suchen",
|
"Search for rooms or people": "Räume oder Leute suchen",
|
||||||
"Forward message": "Nachricht weiterleiten",
|
|
||||||
"Sent": "Gesendet",
|
"Sent": "Gesendet",
|
||||||
"You don't have permission to do this": "Du bist dazu nicht berechtigt",
|
"You don't have permission to do this": "Du bist dazu nicht berechtigt",
|
||||||
"Error loading Widget": "Fehler beim Laden des Widgets",
|
"Error loading Widget": "Fehler beim Laden des Widgets",
|
||||||
|
@ -2510,8 +2488,6 @@
|
||||||
"Connection failed": "Verbindung fehlgeschlagen",
|
"Connection failed": "Verbindung fehlgeschlagen",
|
||||||
"Silence call": "Anruf stummschalten",
|
"Silence call": "Anruf stummschalten",
|
||||||
"Error downloading audio": "Fehler beim Herunterladen der Audiodatei",
|
"Error downloading audio": "Fehler beim Herunterladen der Audiodatei",
|
||||||
"Image": "Bild",
|
|
||||||
"Sticker": "Sticker",
|
|
||||||
"An unknown error occurred": "Ein unbekannter Fehler ist aufgetreten",
|
"An unknown error occurred": "Ein unbekannter Fehler ist aufgetreten",
|
||||||
"Message bubbles": "Nachrichtenblasen",
|
"Message bubbles": "Nachrichtenblasen",
|
||||||
"More": "Mehr",
|
"More": "Mehr",
|
||||||
|
@ -2633,7 +2609,6 @@
|
||||||
"Don't leave any rooms": "Keine Räume und Subspaces verlassen",
|
"Don't leave any rooms": "Keine Räume und Subspaces verlassen",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s hat mit %(content)s reagiert",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s hat mit %(content)s reagiert",
|
||||||
"Some encryption parameters have been changed.": "Einige Verschlüsselungsoptionen wurden geändert.",
|
"Some encryption parameters have been changed.": "Einige Verschlüsselungsoptionen wurden geändert.",
|
||||||
"Message": "Nachricht",
|
|
||||||
"Message didn't send. Click for info.": "Nachricht nicht gesendet. Klicke für Details.",
|
"Message didn't send. Click for info.": "Nachricht nicht gesendet. Klicke für Details.",
|
||||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "<a>Erstelle einen neuen Raum für deine Konversation</a>, um diese Probleme zu umgehen.",
|
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "<a>Erstelle einen neuen Raum für deine Konversation</a>, um diese Probleme zu umgehen.",
|
||||||
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Es ist nicht sinnvoll, verschlüsselte Räume öffentlich zu machen.</b> Das würde bedeuten, dass alle den Raum finden und betreten, also auch Nachrichten lesen könnten. Du erhältst also keinen Vorteil der Verschlüsselung, während sie das Senden und Empfangen von Nachrichten langsamer macht.",
|
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Es ist nicht sinnvoll, verschlüsselte Räume öffentlich zu machen.</b> Das würde bedeuten, dass alle den Raum finden und betreten, also auch Nachrichten lesen könnten. Du erhältst also keinen Vorteil der Verschlüsselung, während sie das Senden und Empfangen von Nachrichten langsamer macht.",
|
||||||
|
@ -3160,7 +3135,6 @@
|
||||||
"one": "1 Teilnehmer",
|
"one": "1 Teilnehmer",
|
||||||
"other": "%(count)s Teilnehmer"
|
"other": "%(count)s Teilnehmer"
|
||||||
},
|
},
|
||||||
"Video": "Video",
|
|
||||||
"Try again later, or ask a room or space admin to check if you have access.": "Versuche es später erneut oder bitte einen Raum- oder Space-Admin um eine Zutrittserlaubnis.",
|
"Try again later, or ask a room or space admin to check if you have access.": "Versuche es später erneut oder bitte einen Raum- oder Space-Admin um eine Zutrittserlaubnis.",
|
||||||
"This room or space is not accessible at this time.": "Dieser Raum oder Space ist im Moment nicht zugänglich.",
|
"This room or space is not accessible at this time.": "Dieser Raum oder Space ist im Moment nicht zugänglich.",
|
||||||
"Are you sure you're at the right place?": "Bist du sicher am richtigen Ort?",
|
"Are you sure you're at the right place?": "Bist du sicher am richtigen Ort?",
|
||||||
|
@ -3755,7 +3729,6 @@
|
||||||
"Adding…": "Füge hinzu …",
|
"Adding…": "Füge hinzu …",
|
||||||
"Write something…": "Schreibe etwas …",
|
"Write something…": "Schreibe etwas …",
|
||||||
"Rejecting invite…": "Lehne Einladung ab …",
|
"Rejecting invite…": "Lehne Einladung ab …",
|
||||||
"Loading…": "Lade …",
|
|
||||||
"Joining room…": "Betrete Raum …",
|
"Joining room…": "Betrete Raum …",
|
||||||
"Joining space…": "Betrete Space …",
|
"Joining space…": "Betrete Space …",
|
||||||
"Encrypting your message…": "Verschlüssele deine Nachricht …",
|
"Encrypting your message…": "Verschlüssele deine Nachricht …",
|
||||||
|
@ -3974,6 +3947,35 @@
|
||||||
"Asking to join": "Beitrittsanfragen",
|
"Asking to join": "Beitrittsanfragen",
|
||||||
"See less": "Weniger",
|
"See less": "Weniger",
|
||||||
"See more": "Mehr",
|
"See more": "Mehr",
|
||||||
|
"common": {
|
||||||
|
"about": "Über",
|
||||||
|
"analytics": "Analysedaten",
|
||||||
|
"encryption_enabled": "Verschlüsselung aktiviert",
|
||||||
|
"error": "Fehler",
|
||||||
|
"forward_message": "Nachricht weiterleiten",
|
||||||
|
"image": "Bild",
|
||||||
|
"loading": "Lade …",
|
||||||
|
"message": "Nachricht",
|
||||||
|
"message_layout": "Nachrichtenlayout",
|
||||||
|
"modern": "Modern",
|
||||||
|
"mute": "Stummschalten",
|
||||||
|
"no_results": "Keine Ergebnisse",
|
||||||
|
"offline": "Offline",
|
||||||
|
"password": "Passwort",
|
||||||
|
"people": "Personen",
|
||||||
|
"reactions": "Reaktionen",
|
||||||
|
"report_a_bug": "Einen Fehler melden",
|
||||||
|
"room_name": "Raumname",
|
||||||
|
"security": "Sicherheit",
|
||||||
|
"settings": "Einstellungen",
|
||||||
|
"sticker": "Sticker",
|
||||||
|
"success": "Erfolg",
|
||||||
|
"suggestions": "Vorschläge",
|
||||||
|
"unmute": "Stummschalten aufheben",
|
||||||
|
"username": "Benutzername",
|
||||||
|
"verification_cancelled": "Verifikation abgebrochen",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Benutzermenü"
|
"user_menu": "Benutzermenü"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
{
|
{
|
||||||
"Error": "Σφάλμα",
|
|
||||||
"Failed to forget room %(errCode)s": "Δεν ήταν δυνατή η διαγραφή του δωματίου (%(errCode)s)",
|
"Failed to forget room %(errCode)s": "Δεν ήταν δυνατή η διαγραφή του δωματίου (%(errCode)s)",
|
||||||
"Mute": "Σίγαση",
|
|
||||||
"Notifications": "Ειδοποιήσεις",
|
"Notifications": "Ειδοποιήσεις",
|
||||||
"Operation failed": "Η λειτουργία απέτυχε",
|
"Operation failed": "Η λειτουργία απέτυχε",
|
||||||
"Remove": "Αφαίρεση",
|
"Remove": "Αφαίρεση",
|
||||||
"Search": "Αναζήτηση",
|
"Search": "Αναζήτηση",
|
||||||
"Settings": "Ρυθμίσεις",
|
|
||||||
"unknown error code": "άγνωστος κωδικός σφάλματος",
|
"unknown error code": "άγνωστος κωδικός σφάλματος",
|
||||||
"Account": "Λογαριασμός",
|
"Account": "Λογαριασμός",
|
||||||
"Admin": "Διαχειριστής",
|
"Admin": "Διαχειριστής",
|
||||||
|
@ -88,9 +85,7 @@
|
||||||
"New passwords must match each other.": "Οι νέοι κωδικοί πρόσβασης πρέπει να ταιριάζουν.",
|
"New passwords must match each other.": "Οι νέοι κωδικοί πρόσβασης πρέπει να ταιριάζουν.",
|
||||||
"<not supported>": "<δεν υποστηρίζεται>",
|
"<not supported>": "<δεν υποστηρίζεται>",
|
||||||
"No more results": "Δεν υπάρχουν άλλα αποτελέσματα",
|
"No more results": "Δεν υπάρχουν άλλα αποτελέσματα",
|
||||||
"No results": "Κανένα αποτέλεσμα",
|
|
||||||
"OK": "Εντάξει",
|
"OK": "Εντάξει",
|
||||||
"Password": "Κωδικός πρόσβασης",
|
|
||||||
"Passwords can't be empty": "Οι κωδικοί πρόσβασης δεν γίνετε να είναι κενοί",
|
"Passwords can't be empty": "Οι κωδικοί πρόσβασης δεν γίνετε να είναι κενοί",
|
||||||
"Phone": "Τηλέφωνο",
|
"Phone": "Τηλέφωνο",
|
||||||
"Register": "Εγγραφή",
|
"Register": "Εγγραφή",
|
||||||
|
@ -105,7 +100,6 @@
|
||||||
"Someone": "Κάποιος",
|
"Someone": "Κάποιος",
|
||||||
"This email address is already in use": "Η διεύθυνση ηλ. αλληλογραφίας χρησιμοποιείται ήδη",
|
"This email address is already in use": "Η διεύθυνση ηλ. αλληλογραφίας χρησιμοποιείται ήδη",
|
||||||
"This email address was not found": "Δεν βρέθηκε η διεύθυνση ηλ. αλληλογραφίας",
|
"This email address was not found": "Δεν βρέθηκε η διεύθυνση ηλ. αλληλογραφίας",
|
||||||
"Success": "Επιτυχία",
|
|
||||||
"Cancel": "Ακύρωση",
|
"Cancel": "Ακύρωση",
|
||||||
"Dismiss": "Απόρριψη",
|
"Dismiss": "Απόρριψη",
|
||||||
"Close": "Κλείσιμο",
|
"Close": "Κλείσιμο",
|
||||||
|
@ -142,7 +136,6 @@
|
||||||
"Unable to verify email address.": "Αδυναμία επιβεβαίωσης διεύθυνσης ηλεκτρονικής αλληλογραφίας.",
|
"Unable to verify email address.": "Αδυναμία επιβεβαίωσης διεύθυνσης ηλεκτρονικής αλληλογραφίας.",
|
||||||
"Unban": "Άρση αποκλεισμού",
|
"Unban": "Άρση αποκλεισμού",
|
||||||
"Unable to enable Notifications": "Αδυναμία ενεργοποίησης των ειδοποιήσεων",
|
"Unable to enable Notifications": "Αδυναμία ενεργοποίησης των ειδοποιήσεων",
|
||||||
"Unmute": "Άρση σίγασης",
|
|
||||||
"Unnamed Room": "Ανώνυμο δωμάτιο",
|
"Unnamed Room": "Ανώνυμο δωμάτιο",
|
||||||
"Upload avatar": "Αποστολή προσωπικής εικόνας",
|
"Upload avatar": "Αποστολή προσωπικής εικόνας",
|
||||||
"Upload Failed": "Απέτυχε η αποστολή",
|
"Upload Failed": "Απέτυχε η αποστολή",
|
||||||
|
@ -202,7 +195,6 @@
|
||||||
"Drop file here to upload": "Αποθέστε εδώ για αποστολή",
|
"Drop file here to upload": "Αποθέστε εδώ για αποστολή",
|
||||||
"Online": "Σε σύνδεση",
|
"Online": "Σε σύνδεση",
|
||||||
"Idle": "Αδρανής",
|
"Idle": "Αδρανής",
|
||||||
"Offline": "Εκτός σύνδεσης",
|
|
||||||
"%(senderDisplayName)s removed the room avatar.": "Ο %(senderDisplayName)s διέγραψε την προσωπική εικόνα του δωματίου.",
|
"%(senderDisplayName)s removed the room avatar.": "Ο %(senderDisplayName)s διέγραψε την προσωπική εικόνα του δωματίου.",
|
||||||
"%(senderDisplayName)s changed the avatar for %(roomName)s": "Ο %(senderDisplayName)s άλλαξε την προσωπική εικόνα του %(roomName)s",
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "Ο %(senderDisplayName)s άλλαξε την προσωπική εικόνα του %(roomName)s",
|
||||||
"Something went wrong!": "Κάτι πήγε στραβά!",
|
"Something went wrong!": "Κάτι πήγε στραβά!",
|
||||||
|
@ -243,7 +235,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Φαίνεται ότι είστε σε μια κλήση, είστε βέβαιοι ότι θέλετε να αποχωρήσετε;",
|
"You seem to be in a call, are you sure you want to quit?": "Φαίνεται ότι είστε σε μια κλήση, είστε βέβαιοι ότι θέλετε να αποχωρήσετε;",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s %(time)s",
|
||||||
"Connectivity to the server has been lost.": "Χάθηκε η συνδεσιμότητα στον διακομιστή.",
|
"Connectivity to the server has been lost.": "Χάθηκε η συνδεσιμότητα στον διακομιστή.",
|
||||||
"Analytics": "Αναλυτικά δεδομένα",
|
|
||||||
"Failed to invite": "Δεν ήταν δυνατή η πρόσκληση",
|
"Failed to invite": "Δεν ήταν δυνατή η πρόσκληση",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "Ο %(senderDisplayName)s άλλαξε την εικόνα του δωματίου σε <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "Ο %(senderDisplayName)s άλλαξε την εικόνα του δωματίου σε <img/>",
|
||||||
"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 στο μικρόφωνο/κάμερα",
|
||||||
|
@ -864,7 +855,6 @@
|
||||||
"Poll": "Ψηφοφορία",
|
"Poll": "Ψηφοφορία",
|
||||||
"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": "Φωνητικό μήνυμα",
|
||||||
"Sticker": "Αυτοκόλλητο",
|
|
||||||
"Hide stickers": "Απόκρυψη αυτοκόλλητων",
|
"Hide stickers": "Απόκρυψη αυτοκόλλητων",
|
||||||
"Send voice message": "Στείλτε φωνητικό μήνυμα",
|
"Send voice message": "Στείλτε φωνητικό μήνυμα",
|
||||||
"This room has been replaced and is no longer active.": "Αυτό το δωμάτιο έχει αντικατασταθεί και δεν είναι πλέον ενεργό.",
|
"This room has been replaced and is no longer active.": "Αυτό το δωμάτιο έχει αντικατασταθεί και δεν είναι πλέον ενεργό.",
|
||||||
|
@ -921,8 +911,6 @@
|
||||||
"Error saving notification preferences": "Σφάλμα κατά την αποθήκευση των προτιμήσεων ειδοποιήσεων",
|
"Error saving notification preferences": "Σφάλμα κατά την αποθήκευση των προτιμήσεων ειδοποιήσεων",
|
||||||
"Messages containing keywords": "Μηνύματα που περιέχουν λέξεις-κλειδιά",
|
"Messages containing keywords": "Μηνύματα που περιέχουν λέξεις-κλειδιά",
|
||||||
"Message bubbles": "Συννεφάκια μηνυμάτων",
|
"Message bubbles": "Συννεφάκια μηνυμάτων",
|
||||||
"Modern": "Μοντέρνο",
|
|
||||||
"Message layout": "Διάταξη μηνύματος",
|
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Ενημέρωση χώρου...",
|
"one": "Ενημέρωση χώρου...",
|
||||||
"other": "Ενημέρωση χώρων... (%(progress)s out of %(count)s)"
|
"other": "Ενημέρωση χώρων... (%(progress)s out of %(count)s)"
|
||||||
|
@ -996,7 +984,6 @@
|
||||||
"Invite people": "Προσκαλέστε άτομα",
|
"Invite people": "Προσκαλέστε άτομα",
|
||||||
"Add some details to help people recognise it.": "Προσθέστε ορισμένες λεπτομέρειες για να βοηθήσετε τους άλλους να το αναγνωρίσουν.",
|
"Add some details to help people recognise it.": "Προσθέστε ορισμένες λεπτομέρειες για να βοηθήσετε τους άλλους να το αναγνωρίσουν.",
|
||||||
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Οι Χώροι είναι ένας νέος τρόπος ομαδοποίησης δωματίων και ατόμων. Τι είδους Χώρο θέλετε να δημιουργήσετε; Μπορείτε αυτό να το αλλάξετε αργότερα.",
|
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Οι Χώροι είναι ένας νέος τρόπος ομαδοποίησης δωματίων και ατόμων. Τι είδους Χώρο θέλετε να δημιουργήσετε; Μπορείτε αυτό να το αλλάξετε αργότερα.",
|
||||||
"People": "Άτομα",
|
|
||||||
"Generating a ZIP": "Δημιουργία ZIP",
|
"Generating a ZIP": "Δημιουργία ZIP",
|
||||||
"Are you sure you want to exit during this export?": "Είστε βέβαιοι ότι θέλετε να αποχωρήσετε κατά τη διάρκεια αυτής της εξαγωγής;",
|
"Are you sure you want to exit during this export?": "Είστε βέβαιοι ότι θέλετε να αποχωρήσετε κατά τη διάρκεια αυτής της εξαγωγής;",
|
||||||
"Unknown App": "Άγνωστη εφαρμογή",
|
"Unknown App": "Άγνωστη εφαρμογή",
|
||||||
|
@ -1778,7 +1765,6 @@
|
||||||
"Preferences": "Προτιμήσεις",
|
"Preferences": "Προτιμήσεις",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Τα αρχεία καταγραφής εντοπισμού σφαλμάτων περιέχουν δεδομένα χρήσης εφαρμογών, συμπεριλαμβανομένου του ονόματος χρήστη σας, των αναγνωριστικών ή των ψευδωνύμων των δωματίων που έχετε επισκεφτεί, των στοιχείων διεπαφής χρήστη με τα οποία αλληλεπιδράσατε τελευταία και των ονομάτων χρήστη άλλων χρηστών. Δεν περιέχουν μηνύματα.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Τα αρχεία καταγραφής εντοπισμού σφαλμάτων περιέχουν δεδομένα χρήσης εφαρμογών, συμπεριλαμβανομένου του ονόματος χρήστη σας, των αναγνωριστικών ή των ψευδωνύμων των δωματίων που έχετε επισκεφτεί, των στοιχείων διεπαφής χρήστη με τα οποία αλληλεπιδράσατε τελευταία και των ονομάτων χρήστη άλλων χρηστών. Δεν περιέχουν μηνύματα.",
|
||||||
"Legal": "Νομικό",
|
"Legal": "Νομικό",
|
||||||
"Video": "Βίντεο",
|
|
||||||
"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": "Επαλήθευση συνεδρίας",
|
||||||
|
@ -1912,7 +1898,6 @@
|
||||||
"Use lowercase letters, numbers, dashes and underscores only": "Χρησιμοποιήστε μόνο πεζά γράμματα, αριθμούς, παύλες και κάτω παύλες",
|
"Use lowercase letters, numbers, dashes and underscores only": "Χρησιμοποιήστε μόνο πεζά γράμματα, αριθμούς, παύλες και κάτω παύλες",
|
||||||
"Use an email address to recover your account": "Χρησιμοποιήστε μια διεύθυνση email για να ανακτήσετε τον λογαριασμό σας",
|
"Use an email address to recover your account": "Χρησιμοποιήστε μια διεύθυνση email για να ανακτήσετε τον λογαριασμό σας",
|
||||||
"Forgot password?": "Ξεχάσατε τον κωδικό;",
|
"Forgot password?": "Ξεχάσατε τον κωδικό;",
|
||||||
"Username": "Όνομα χρήστη",
|
|
||||||
"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": "Αυτός ο αριθμός τηλεφώνου δε φαίνεται σωστός, ελέγξτε και δοκιμάστε ξανά",
|
||||||
"Enter phone number": "Εισάγετε αριθμό τηλεφώνου",
|
"Enter phone number": "Εισάγετε αριθμό τηλεφώνου",
|
||||||
"Enter username": "Εισάγετε όνομα χρήστη",
|
"Enter username": "Εισάγετε όνομα χρήστη",
|
||||||
|
@ -2089,7 +2074,6 @@
|
||||||
"Video conference ended by %(senderName)s": "Η τηλεδιάσκεψη τερματίστηκε από %(senderName)s",
|
"Video conference ended by %(senderName)s": "Η τηλεδιάσκεψη τερματίστηκε από %(senderName)s",
|
||||||
"Join the conference at the top of this room": "Συμμετάσχετε στην τηλεδιάσκεψη από την κορυφή του δωματίου αυτού",
|
"Join the conference at the top of this room": "Συμμετάσχετε στην τηλεδιάσκεψη από την κορυφή του δωματίου αυτού",
|
||||||
"Join the conference from the room information card on the right": "Συμμετάσχετε στην τηλεδιάσκεψη από την κάρτα πληροφοριών στα δεξιά",
|
"Join the conference from the room information card on the right": "Συμμετάσχετε στην τηλεδιάσκεψη από την κάρτα πληροφοριών στα δεξιά",
|
||||||
"Image": "Εικόνα",
|
|
||||||
"Show image": "Εμφάνιση εικόνας",
|
"Show image": "Εμφάνιση εικόνας",
|
||||||
"Click": "Κλικ",
|
"Click": "Κλικ",
|
||||||
"Expand quotes": "Ανάπτυξη εισαγωγικών",
|
"Expand quotes": "Ανάπτυξη εισαγωγικών",
|
||||||
|
@ -2106,7 +2090,6 @@
|
||||||
"The encryption used by this room isn't supported.": "Η κρυπτογράφηση που χρησιμοποιείται από αυτό το δωμάτιο δεν υποστηρίζεται.",
|
"The encryption used by this room isn't supported.": "Η κρυπτογράφηση που χρησιμοποιείται από αυτό το δωμάτιο δεν υποστηρίζεται.",
|
||||||
"Encryption not enabled": "Η κρυπτογράφηση δεν ενεργοποιήθηκε",
|
"Encryption not enabled": "Η κρυπτογράφηση δεν ενεργοποιήθηκε",
|
||||||
"Ignored attempt to disable encryption": "Αγνοήθηκε προσπάθεια απενεργοποίησης κρυπτογράφησης",
|
"Ignored attempt to disable encryption": "Αγνοήθηκε προσπάθεια απενεργοποίησης κρυπτογράφησης",
|
||||||
"Encryption enabled": "Η κρυπτογράφηση ενεργοποιήθηκε",
|
|
||||||
"Some encryption parameters have been changed.": "Ορισμένες παράμετροι κρυπτογράφησης έχουν αλλάξει.",
|
"Some encryption parameters have been changed.": "Ορισμένες παράμετροι κρυπτογράφησης έχουν αλλάξει.",
|
||||||
"with state key %(stateKey)s": "με κλειδί κατάστασης %(stateKey)s",
|
"with state key %(stateKey)s": "με κλειδί κατάστασης %(stateKey)s",
|
||||||
"with an empty state key": "με ένα κενό κλειδί κατάστασης",
|
"with an empty state key": "με ένα κενό κλειδί κατάστασης",
|
||||||
|
@ -2189,7 +2172,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",
|
||||||
"Reactions": "Αντιδράσεις",
|
|
||||||
"Show all": "Εμφάνιση όλων",
|
"Show all": "Εμφάνιση όλων",
|
||||||
"Add reaction": "Προσθέστε αντίδραση",
|
"Add reaction": "Προσθέστε αντίδραση",
|
||||||
"Error processing voice message": "Σφάλμα επεξεργασίας του φωνητικού μηνύματος",
|
"Error processing voice message": "Σφάλμα επεξεργασίας του φωνητικού μηνύματος",
|
||||||
|
@ -2231,7 +2213,6 @@
|
||||||
"No answer": "Καμία απάντηση",
|
"No answer": "Καμία απάντηση",
|
||||||
"Call back": "Καλέστε πίσω",
|
"Call back": "Καλέστε πίσω",
|
||||||
"Call declined": "Η κλήση απορρίφθηκε",
|
"Call declined": "Η κλήση απορρίφθηκε",
|
||||||
"Verification cancelled": "Η επαλήθευση ακυρώθηκε",
|
|
||||||
"You cancelled verification.": "Ακυρώσατε την επαλήθευση.",
|
"You cancelled verification.": "Ακυρώσατε την επαλήθευση.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s ακύρωσε την επαλύθευση.",
|
"%(displayName)s cancelled verification.": "%(displayName)s ακύρωσε την επαλύθευση.",
|
||||||
"You cancelled verification on your other device.": "Ακυρώσατε την επαλήθευση στην άλλη συσκευή σας.",
|
"You cancelled verification on your other device.": "Ακυρώσατε την επαλήθευση στην άλλη συσκευή σας.",
|
||||||
|
@ -2257,7 +2238,6 @@
|
||||||
"Compare unique emoji": "Συγκρίνετε μοναδικά emoji",
|
"Compare unique emoji": "Συγκρίνετε μοναδικά emoji",
|
||||||
"Scan this unique code": "Σαρώστε αυτόν τον μοναδικό κωδικό",
|
"Scan this unique code": "Σαρώστε αυτόν τον μοναδικό κωδικό",
|
||||||
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "Η συσκευή που προσπαθείτε να επαληθεύσετε δεν υποστηρίζει τη σάρωση κωδικού QR ή επαλήθευσης emoji, κάτι που υποστηρίζει το %(brand)s. Δοκιμάστε με διαφορετικό πρόγραμμα-πελάτη.",
|
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "Η συσκευή που προσπαθείτε να επαληθεύσετε δεν υποστηρίζει τη σάρωση κωδικού QR ή επαλήθευσης emoji, κάτι που υποστηρίζει το %(brand)s. Δοκιμάστε με διαφορετικό πρόγραμμα-πελάτη.",
|
||||||
"Security": "Ασφάλεια",
|
|
||||||
"Edit devices": "Επεξεργασία συσκευών",
|
"Edit devices": "Επεξεργασία συσκευών",
|
||||||
"This client does not support end-to-end encryption.": "Αυτό το πρόγραμμα-πελάτης δεν υποστηρίζει κρυπτογράφηση από άκρο σε άκρο.",
|
"This client does not support end-to-end encryption.": "Αυτό το πρόγραμμα-πελάτης δεν υποστηρίζει κρυπτογράφηση από άκρο σε άκρο.",
|
||||||
"Role in <RoomName/>": "Ρόλος στο <RoomName/>",
|
"Role in <RoomName/>": "Ρόλος στο <RoomName/>",
|
||||||
|
@ -2274,7 +2254,6 @@
|
||||||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Δε θα μπορείτε να αναιρέσετε αυτήν την ενέργεια καθώς υποβιβάζετε τον εαυτό σας, εάν είστε ο τελευταίος προνομιούχος χρήστης στο δωμάτιο, θα είναι αδύνατο να ανακτήσετε τα προνόμια.",
|
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Δε θα μπορείτε να αναιρέσετε αυτήν την ενέργεια καθώς υποβιβάζετε τον εαυτό σας, εάν είστε ο τελευταίος προνομιούχος χρήστης στο δωμάτιο, θα είναι αδύνατο να ανακτήσετε τα προνόμια.",
|
||||||
"Share Link to User": "Κοινή χρήση Συνδέσμου με Χρήστη",
|
"Share Link to User": "Κοινή χρήση Συνδέσμου με Χρήστη",
|
||||||
"Jump to read receipt": "Μετάβαση στο αποδεικτικό ανάγνωσης",
|
"Jump to read receipt": "Μετάβαση στο αποδεικτικό ανάγνωσης",
|
||||||
"Message": "Μήνυμα",
|
|
||||||
"Hide sessions": "Απόκρυψη συνεδριών",
|
"Hide sessions": "Απόκρυψη συνεδριών",
|
||||||
"%(count)s sessions": {
|
"%(count)s sessions": {
|
||||||
"one": "%(count)s συνεδρία",
|
"one": "%(count)s συνεδρία",
|
||||||
|
@ -2291,7 +2270,6 @@
|
||||||
"Export chat": "Εξαγωγή συνομιλίας",
|
"Export chat": "Εξαγωγή συνομιλίας",
|
||||||
"Pinned": "Καρφιτσωμένο",
|
"Pinned": "Καρφιτσωμένο",
|
||||||
"Files": "Αρχεία",
|
"Files": "Αρχεία",
|
||||||
"About": "Σχετικά με",
|
|
||||||
"Not encrypted": "Μη κρυπτογραφημένο",
|
"Not encrypted": "Μη κρυπτογραφημένο",
|
||||||
"Add widgets, bridges & bots": "Προσθήκη μικροεφαρμογών, γεφυρών & bots",
|
"Add widgets, bridges & bots": "Προσθήκη μικροεφαρμογών, γεφυρών & bots",
|
||||||
"Edit widgets, bridges & bots": "Επεξεργασία μικροεφαρμογών, γεφυρών & bots",
|
"Edit widgets, bridges & bots": "Επεξεργασία μικροεφαρμογών, γεφυρών & bots",
|
||||||
|
@ -2342,11 +2320,9 @@
|
||||||
"Everyone in <SpaceName/> will be able to find and join this room.": "Όλοι στο <SpaceName/> θα μπορούν να βρουν και να συμμετάσχουν σε αυτό το δωμάτιο.",
|
"Everyone in <SpaceName/> will be able to find and join this room.": "Όλοι στο <SpaceName/> θα μπορούν να βρουν και να συμμετάσχουν σε αυτό το δωμάτιο.",
|
||||||
"Please enter a name for the room": "Εισάγετε ένα όνομα για το δωμάτιο",
|
"Please enter a name for the room": "Εισάγετε ένα όνομα για το δωμάτιο",
|
||||||
"Message preview": "Προεπισκόπηση μηνύματος",
|
"Message preview": "Προεπισκόπηση μηνύματος",
|
||||||
"Forward message": "Προώθηση μηνύματος",
|
|
||||||
"You don't have permission to do this": "Δεν έχετε άδεια να το κάνετε αυτό",
|
"You don't have permission to do this": "Δεν έχετε άδεια να το κάνετε αυτό",
|
||||||
"Send feedback": "Στείλετε τα σχόλιά σας",
|
"Send feedback": "Στείλετε τα σχόλιά σας",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Δείτε πρώτα τα <existingIssuesLink>υπάρχοντα ζητήματα (issues) στο Github</existingIssuesLink>. Δε βρήκατε κάτι; <newIssueLink>Ξεκινήστε ένα νέο</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Δείτε πρώτα τα <existingIssuesLink>υπάρχοντα ζητήματα (issues) στο Github</existingIssuesLink>. Δε βρήκατε κάτι; <newIssueLink>Ξεκινήστε ένα νέο</newIssueLink>.",
|
||||||
"Report a bug": "Αναφορά σφάλματος",
|
|
||||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "Μπορείτε να επικοινωνήσετε μαζί μου εάν θέλετε να έρθετε σε επαφή ή να με αφήσετε να δοκιμάσω επερχόμενες ιδέες",
|
"You may contact me if you want to follow up or to let me test out upcoming ideas": "Μπορείτε να επικοινωνήσετε μαζί μου εάν θέλετε να έρθετε σε επαφή ή να με αφήσετε να δοκιμάσω επερχόμενες ιδέες",
|
||||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Η πλατφόρμα και το όνομα χρήστη σας θα καταγραφούν για να μας βοηθήσουν να χρησιμοποιήσουμε τα σχόλιά σας όσο μπορούμε περισσότερο.",
|
"Your platform and username will be noted to help us use your feedback as much as we can.": "Η πλατφόρμα και το όνομα χρήστη σας θα καταγραφούν για να μας βοηθήσουν να χρησιμοποιήσουμε τα σχόλιά σας όσο μπορούμε περισσότερο.",
|
||||||
"Feedback sent": "Τα σχόλια στάλθηκαν",
|
"Feedback sent": "Τα σχόλια στάλθηκαν",
|
||||||
|
@ -2671,7 +2647,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": "Παράλειψη προς το παρόν",
|
||||||
"Room name": "Όνομα δωματίου",
|
|
||||||
"Support": "Υποστήριξη",
|
"Support": "Υποστήριξη",
|
||||||
"Random": "Τυχαία",
|
"Random": "Τυχαία",
|
||||||
"Welcome to <name/>": "Καλώς ήρθατε στο <name/>",
|
"Welcome to <name/>": "Καλώς ήρθατε στο <name/>",
|
||||||
|
@ -2726,7 +2701,6 @@
|
||||||
"Search spaces": "Αναζήτηση χώρων",
|
"Search spaces": "Αναζήτηση χώρων",
|
||||||
"Updating %(brand)s": "Ενημέρωση %(brand)s",
|
"Updating %(brand)s": "Ενημέρωση %(brand)s",
|
||||||
"Unable to upload": "Αδυναμία μεταφόρτωσης",
|
"Unable to upload": "Αδυναμία μεταφόρτωσης",
|
||||||
"Suggestions": "Προτάσεις",
|
|
||||||
"Recent Conversations": "Πρόσφατες Συνομιλίες",
|
"Recent Conversations": "Πρόσφατες Συνομιλίες",
|
||||||
"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",
|
||||||
"Failed to find the following users": "Αποτυχία εύρεσης των παρακάτω χρηστών",
|
"Failed to find the following users": "Αποτυχία εύρεσης των παρακάτω χρηστών",
|
||||||
|
@ -3285,6 +3259,34 @@
|
||||||
"You were disconnected from the call. (Error: %(message)s)": "Αποσυνδεθήκατε από την κλήση. (Σφάλμα: %(message)s)",
|
"You were disconnected from the call. (Error: %(message)s)": "Αποσυνδεθήκατε από την κλήση. (Σφάλμα: %(message)s)",
|
||||||
"Connection lost": "Η σύνδεση χάθηκε",
|
"Connection lost": "Η σύνδεση χάθηκε",
|
||||||
"Jump to the given date in the timeline": "Μεταβείτε στη δεδομένη ημερομηνία στη γραμμή χρόνου",
|
"Jump to the given date in the timeline": "Μεταβείτε στη δεδομένη ημερομηνία στη γραμμή χρόνου",
|
||||||
|
"common": {
|
||||||
|
"about": "Σχετικά με",
|
||||||
|
"analytics": "Αναλυτικά δεδομένα",
|
||||||
|
"encryption_enabled": "Η κρυπτογράφηση ενεργοποιήθηκε",
|
||||||
|
"error": "Σφάλμα",
|
||||||
|
"forward_message": "Προώθηση μηνύματος",
|
||||||
|
"image": "Εικόνα",
|
||||||
|
"message": "Μήνυμα",
|
||||||
|
"message_layout": "Διάταξη μηνύματος",
|
||||||
|
"modern": "Μοντέρνο",
|
||||||
|
"mute": "Σίγαση",
|
||||||
|
"no_results": "Κανένα αποτέλεσμα",
|
||||||
|
"offline": "Εκτός σύνδεσης",
|
||||||
|
"password": "Κωδικός πρόσβασης",
|
||||||
|
"people": "Άτομα",
|
||||||
|
"reactions": "Αντιδράσεις",
|
||||||
|
"report_a_bug": "Αναφορά σφάλματος",
|
||||||
|
"room_name": "Όνομα δωματίου",
|
||||||
|
"security": "Ασφάλεια",
|
||||||
|
"settings": "Ρυθμίσεις",
|
||||||
|
"sticker": "Αυτοκόλλητο",
|
||||||
|
"success": "Επιτυχία",
|
||||||
|
"suggestions": "Προτάσεις",
|
||||||
|
"unmute": "Άρση σίγασης",
|
||||||
|
"username": "Όνομα χρήστη",
|
||||||
|
"verification_cancelled": "Η επαλήθευση ακυρώθηκε",
|
||||||
|
"video": "Βίντεο"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Μενού χρήστη"
|
"user_menu": "Μενού χρήστη"
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
"Confirm adding phone number": "Confirm adding phone number",
|
"Confirm adding phone number": "Confirm adding phone number",
|
||||||
"Click the button below to confirm adding this phone number.": "Click the button below to confirm adding this phone number.",
|
"Click the button below to confirm adding this phone number.": "Click the button below to confirm adding this phone number.",
|
||||||
"Add Phone Number": "Add Phone Number",
|
"Add Phone Number": "Add Phone Number",
|
||||||
"Error": "Error",
|
|
||||||
"Unable to load! Check your network connectivity and try again.": "Unable to load! Check your network connectivity and try again.",
|
"Unable to load! Check your network connectivity and try again.": "Unable to load! Check your network connectivity and try again.",
|
||||||
"Dismiss": "Dismiss",
|
"Dismiss": "Dismiss",
|
||||||
"Attachment": "Attachment",
|
"Attachment": "Attachment",
|
||||||
|
@ -604,7 +603,6 @@
|
||||||
"Join": "Join",
|
"Join": "Join",
|
||||||
"Unknown room": "Unknown room",
|
"Unknown room": "Unknown room",
|
||||||
"Video call started": "Video call started",
|
"Video call started": "Video call started",
|
||||||
"Video": "Video",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Sound on": "Sound on",
|
"Sound on": "Sound on",
|
||||||
"Silence call": "Silence call",
|
"Silence call": "Silence call",
|
||||||
|
@ -652,7 +650,6 @@
|
||||||
"All rooms": "All rooms",
|
"All rooms": "All rooms",
|
||||||
"Home": "Home",
|
"Home": "Home",
|
||||||
"Favourites": "Favourites",
|
"Favourites": "Favourites",
|
||||||
"People": "People",
|
|
||||||
"Other rooms": "Other rooms",
|
"Other rooms": "Other rooms",
|
||||||
"You joined the call": "You joined the call",
|
"You joined the call": "You joined the call",
|
||||||
"%(senderName)s joined the call": "%(senderName)s joined the call",
|
"%(senderName)s joined the call": "%(senderName)s joined the call",
|
||||||
|
@ -702,7 +699,6 @@
|
||||||
"Rooms": "Rooms",
|
"Rooms": "Rooms",
|
||||||
"Voice & Video": "Voice & Video",
|
"Voice & Video": "Voice & Video",
|
||||||
"Moderation": "Moderation",
|
"Moderation": "Moderation",
|
||||||
"Analytics": "Analytics",
|
|
||||||
"Themes": "Themes",
|
"Themes": "Themes",
|
||||||
"Encryption": "Encryption",
|
"Encryption": "Encryption",
|
||||||
"Experimental": "Experimental",
|
"Experimental": "Experimental",
|
||||||
|
@ -972,7 +968,6 @@
|
||||||
"Developer tools": "Developer tools",
|
"Developer tools": "Developer tools",
|
||||||
"Pin to sidebar": "Pin to sidebar",
|
"Pin to sidebar": "Pin to sidebar",
|
||||||
"More options": "More options",
|
"More options": "More options",
|
||||||
"Settings": "Settings",
|
|
||||||
"Match system": "Match system",
|
"Match system": "Match system",
|
||||||
"Theme": "Theme",
|
"Theme": "Theme",
|
||||||
"Space selection": "Space selection",
|
"Space selection": "Space selection",
|
||||||
|
@ -982,7 +977,6 @@
|
||||||
"Upload": "Upload",
|
"Upload": "Upload",
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
"Description": "Description",
|
"Description": "Description",
|
||||||
"No results": "No results",
|
|
||||||
"Search %(spaceName)s": "Search %(spaceName)s",
|
"Search %(spaceName)s": "Search %(spaceName)s",
|
||||||
"Please enter a name for the space": "Please enter a name for the space",
|
"Please enter a name for the space": "Please enter a name for the space",
|
||||||
"e.g. my-space": "e.g. my-space",
|
"e.g. my-space": "e.g. my-space",
|
||||||
|
@ -1131,9 +1125,7 @@
|
||||||
"People cannot join unless access is granted.": "People cannot join unless access is granted.",
|
"People cannot join unless access is granted.": "People cannot join unless access is granted.",
|
||||||
"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.",
|
"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.",
|
||||||
"This upgrade will allow members of selected spaces access to this room without an invite.": "This upgrade will allow members of selected spaces access to this room without an invite.",
|
"This upgrade will allow members of selected spaces access to this room without an invite.": "This upgrade will allow members of selected spaces access to this room without an invite.",
|
||||||
"Message layout": "Message layout",
|
|
||||||
"IRC (Experimental)": "IRC (Experimental)",
|
"IRC (Experimental)": "IRC (Experimental)",
|
||||||
"Modern": "Modern",
|
|
||||||
"Message bubbles": "Message bubbles",
|
"Message bubbles": "Message bubbles",
|
||||||
"Messages containing keywords": "Messages containing keywords",
|
"Messages containing keywords": "Messages containing keywords",
|
||||||
"Error saving notification preferences": "Error saving notification preferences",
|
"Error saving notification preferences": "Error saving notification preferences",
|
||||||
|
@ -1242,7 +1234,6 @@
|
||||||
"%(errorMessage)s (HTTP status %(httpStatus)s)": "%(errorMessage)s (HTTP status %(httpStatus)s)",
|
"%(errorMessage)s (HTTP status %(httpStatus)s)": "%(errorMessage)s (HTTP status %(httpStatus)s)",
|
||||||
"Error changing password": "Error changing password",
|
"Error changing password": "Error changing password",
|
||||||
"Your password was successfully changed.": "Your password was successfully changed.",
|
"Your password was successfully changed.": "Your password was successfully changed.",
|
||||||
"Success": "Success",
|
|
||||||
"Email addresses": "Email addresses",
|
"Email addresses": "Email addresses",
|
||||||
"Phone numbers": "Phone numbers",
|
"Phone numbers": "Phone numbers",
|
||||||
"Set a new account password…": "Set a new account password…",
|
"Set a new account password…": "Set a new account password…",
|
||||||
|
@ -1711,7 +1702,6 @@
|
||||||
"You do not have permission to post to this room": "You do not have permission to post to this room",
|
"You do not have permission to post to this room": "You do not have permission to post to this room",
|
||||||
"Send voice message": "Send voice message",
|
"Send voice message": "Send voice message",
|
||||||
"Hide stickers": "Hide stickers",
|
"Hide stickers": "Hide stickers",
|
||||||
"Sticker": "Sticker",
|
|
||||||
"Voice Message": "Voice Message",
|
"Voice Message": "Voice Message",
|
||||||
"You do not have permission to start polls in this room.": "You do not have permission to start polls in this room.",
|
"You do not have permission to start polls in this room.": "You do not have permission to start polls in this room.",
|
||||||
"Poll": "Poll",
|
"Poll": "Poll",
|
||||||
|
@ -1752,7 +1742,6 @@
|
||||||
"Unknown for %(duration)s": "Unknown for %(duration)s",
|
"Unknown for %(duration)s": "Unknown for %(duration)s",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Idle": "Idle",
|
"Idle": "Idle",
|
||||||
"Offline": "Offline",
|
|
||||||
"Unknown": "Unknown",
|
"Unknown": "Unknown",
|
||||||
"%(members)s and more": "%(members)s and more",
|
"%(members)s and more": "%(members)s and more",
|
||||||
"%(members)s and %(last)s": "%(members)s and %(last)s",
|
"%(members)s and %(last)s": "%(members)s and %(last)s",
|
||||||
|
@ -1810,7 +1799,6 @@
|
||||||
"Joining space…": "Joining space…",
|
"Joining space…": "Joining space…",
|
||||||
"Joining room…": "Joining room…",
|
"Joining room…": "Joining room…",
|
||||||
"Joining…": "Joining…",
|
"Joining…": "Joining…",
|
||||||
"Loading…": "Loading…",
|
|
||||||
"Rejecting invite…": "Rejecting invite…",
|
"Rejecting invite…": "Rejecting invite…",
|
||||||
"Join the room to participate": "Join the room to participate",
|
"Join the room to participate": "Join the room to participate",
|
||||||
"Join the conversation with an account": "Join the conversation with an account",
|
"Join the conversation with an account": "Join the conversation with an account",
|
||||||
|
@ -2006,7 +1994,6 @@
|
||||||
"Edit widgets, bridges & bots": "Edit widgets, bridges & bots",
|
"Edit widgets, bridges & bots": "Edit widgets, bridges & bots",
|
||||||
"Add widgets, bridges & bots": "Add widgets, bridges & bots",
|
"Add widgets, bridges & bots": "Add widgets, bridges & bots",
|
||||||
"Not encrypted": "Not encrypted",
|
"Not encrypted": "Not encrypted",
|
||||||
"About": "About",
|
|
||||||
"Files": "Files",
|
"Files": "Files",
|
||||||
"Poll history": "Poll history",
|
"Poll history": "Poll history",
|
||||||
"Pinned": "Pinned",
|
"Pinned": "Pinned",
|
||||||
|
@ -2025,7 +2012,6 @@
|
||||||
"one": "%(count)s session"
|
"one": "%(count)s session"
|
||||||
},
|
},
|
||||||
"Hide sessions": "Hide sessions",
|
"Hide sessions": "Hide sessions",
|
||||||
"Message": "Message",
|
|
||||||
"Ignore %(user)s": "Ignore %(user)s",
|
"Ignore %(user)s": "Ignore %(user)s",
|
||||||
"All messages and invites from this user will be hidden. Are you sure you want to ignore them?": "All messages and invites from this user will be hidden. Are you sure you want to ignore them?",
|
"All messages and invites from this user will be hidden. Are you sure you want to ignore them?": "All messages and invites from this user will be hidden. Are you sure you want to ignore them?",
|
||||||
"Jump to read receipt": "Jump to read receipt",
|
"Jump to read receipt": "Jump to read receipt",
|
||||||
|
@ -2059,8 +2045,6 @@
|
||||||
"They won't be able to access whatever you're not an admin of.": "They won't be able to access whatever you're not an admin of.",
|
"They won't be able to access whatever you're not an admin of.": "They won't be able to access whatever you're not an admin of.",
|
||||||
"Failed to ban user": "Failed to ban user",
|
"Failed to ban user": "Failed to ban user",
|
||||||
"Failed to mute user": "Failed to mute user",
|
"Failed to mute user": "Failed to mute user",
|
||||||
"Unmute": "Unmute",
|
|
||||||
"Mute": "Mute",
|
|
||||||
"Warning!": "Warning!",
|
"Warning!": "Warning!",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.",
|
||||||
"Are you sure?": "Are you sure?",
|
"Are you sure?": "Are you sure?",
|
||||||
|
@ -2071,7 +2055,6 @@
|
||||||
"Role in <RoomName/>": "Role in <RoomName/>",
|
"Role in <RoomName/>": "Role in <RoomName/>",
|
||||||
"This client does not support end-to-end encryption.": "This client does not support end-to-end encryption.",
|
"This client does not support end-to-end encryption.": "This client does not support end-to-end encryption.",
|
||||||
"Edit devices": "Edit devices",
|
"Edit devices": "Edit devices",
|
||||||
"Security": "Security",
|
|
||||||
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.",
|
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.",
|
||||||
"Scan this unique code": "Scan this unique code",
|
"Scan this unique code": "Scan this unique code",
|
||||||
"Compare unique emoji": "Compare unique emoji",
|
"Compare unique emoji": "Compare unique emoji",
|
||||||
|
@ -2098,7 +2081,6 @@
|
||||||
"You cancelled verification on your other device.": "You cancelled verification on your other device.",
|
"You cancelled verification on your other device.": "You cancelled verification on your other device.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s cancelled verification.",
|
"%(displayName)s cancelled verification.": "%(displayName)s cancelled verification.",
|
||||||
"You cancelled verification.": "You cancelled verification.",
|
"You cancelled verification.": "You cancelled verification.",
|
||||||
"Verification cancelled": "Verification cancelled",
|
|
||||||
"%(count)s votes": {
|
"%(count)s votes": {
|
||||||
"other": "%(count)s votes",
|
"other": "%(count)s votes",
|
||||||
"one": "%(count)s vote"
|
"one": "%(count)s vote"
|
||||||
|
@ -2149,7 +2131,6 @@
|
||||||
"Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their profile picture.": "Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their profile picture.",
|
"Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their profile picture.": "Messages here are end-to-end encrypted. Verify %(displayName)s in their profile - tap on their profile picture.",
|
||||||
"Messages in this chat will be end-to-end encrypted.": "Messages in this chat will be end-to-end encrypted.",
|
"Messages in this chat will be end-to-end encrypted.": "Messages in this chat will be end-to-end encrypted.",
|
||||||
"Messages in this room are end-to-end encrypted. When people join, you can verify them in their profile, just tap on their profile picture.": "Messages in this room are end-to-end encrypted. When people join, you can verify them in their profile, just tap on their profile picture.",
|
"Messages in this room are end-to-end encrypted. When people join, you can verify them in their profile, just tap on their profile picture.": "Messages in this room are end-to-end encrypted. When people join, you can verify them in their profile, just tap on their profile picture.",
|
||||||
"Encryption enabled": "Encryption enabled",
|
|
||||||
"Ignored attempt to disable encryption": "Ignored attempt to disable encryption",
|
"Ignored attempt to disable encryption": "Ignored attempt to disable encryption",
|
||||||
"Encryption not enabled": "Encryption not enabled",
|
"Encryption not enabled": "Encryption not enabled",
|
||||||
"The encryption used by this room isn't supported.": "The encryption used by this room isn't supported.",
|
"The encryption used by this room isn't supported.": "The encryption used by this room isn't supported.",
|
||||||
|
@ -2183,7 +2164,6 @@
|
||||||
"Error decrypting attachment": "Error decrypting attachment",
|
"Error decrypting attachment": "Error decrypting attachment",
|
||||||
"Decrypt %(text)s": "Decrypt %(text)s",
|
"Decrypt %(text)s": "Decrypt %(text)s",
|
||||||
"Invalid file%(extra)s": "Invalid file%(extra)s",
|
"Invalid file%(extra)s": "Invalid file%(extra)s",
|
||||||
"Image": "Image",
|
|
||||||
"Unable to show image due to error": "Unable to show image due to error",
|
"Unable to show image due to error": "Unable to show image due to error",
|
||||||
"Error decrypting image": "Error decrypting image",
|
"Error decrypting image": "Error decrypting image",
|
||||||
"Error downloading image": "Error downloading image",
|
"Error downloading image": "Error downloading image",
|
||||||
|
@ -2230,7 +2210,6 @@
|
||||||
"Error decrypting video": "Error decrypting video",
|
"Error decrypting video": "Error decrypting video",
|
||||||
"Error processing voice message": "Error processing voice message",
|
"Error processing voice message": "Error processing voice message",
|
||||||
"Add reaction": "Add reaction",
|
"Add reaction": "Add reaction",
|
||||||
"Reactions": "Reactions",
|
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s reacted with %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s reacted with %(content)s",
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>",
|
||||||
"Message deleted on %(date)s": "Message deleted on %(date)s",
|
"Message deleted on %(date)s": "Message deleted on %(date)s",
|
||||||
|
@ -2710,7 +2689,6 @@
|
||||||
"Feedback": "Feedback",
|
"Feedback": "Feedback",
|
||||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "You may contact me if you want to follow up or to let me test out upcoming ideas",
|
"You may contact me if you want to follow up or to let me test out upcoming ideas": "You may contact me if you want to follow up or to let me test out upcoming ideas",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.",
|
||||||
"Report a bug": "Report a bug",
|
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.",
|
||||||
"Send feedback": "Send feedback",
|
"Send feedback": "Send feedback",
|
||||||
"You don't have permission to do this": "You don't have permission to do this",
|
"You don't have permission to do this": "You don't have permission to do this",
|
||||||
|
@ -2718,7 +2696,6 @@
|
||||||
"Sent": "Sent",
|
"Sent": "Sent",
|
||||||
"Open room": "Open room",
|
"Open room": "Open room",
|
||||||
"Send": "Send",
|
"Send": "Send",
|
||||||
"Forward message": "Forward message",
|
|
||||||
"Message preview": "Message preview",
|
"Message preview": "Message preview",
|
||||||
"Search for rooms or people": "Search for rooms or people",
|
"Search for rooms or people": "Search for rooms or people",
|
||||||
"Feedback sent! Thanks, we appreciate it!": "Feedback sent! Thanks, we appreciate it!",
|
"Feedback sent! Thanks, we appreciate it!": "Feedback sent! Thanks, we appreciate it!",
|
||||||
|
@ -2747,7 +2724,6 @@
|
||||||
"Failed to find the following users": "Failed to find the following users",
|
"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": "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "The following users might not exist or are invalid, and cannot be invited: %(csvNames)s",
|
||||||
"Recent Conversations": "Recent Conversations",
|
"Recent Conversations": "Recent Conversations",
|
||||||
"Suggestions": "Suggestions",
|
|
||||||
"Recently Direct Messaged": "Recently Direct Messaged",
|
"Recently Direct Messaged": "Recently Direct Messaged",
|
||||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.",
|
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.",
|
||||||
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Use an identity server to invite by email. Manage in <settings>Settings</settings>.",
|
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "Use an identity server to invite by email. Manage in <settings>Settings</settings>.",
|
||||||
|
@ -3190,7 +3166,6 @@
|
||||||
"Enter email address": "Enter email address",
|
"Enter email address": "Enter email address",
|
||||||
"Doesn't look like a valid email address": "Doesn't look like a valid email address",
|
"Doesn't look like a valid email address": "Doesn't look like a valid email address",
|
||||||
"Confirm your identity by entering your account password below.": "Confirm your identity by entering your account password below.",
|
"Confirm your identity by entering your account password below.": "Confirm your identity by entering your account password below.",
|
||||||
"Password": "Password",
|
|
||||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.",
|
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.",
|
||||||
"Please review and accept all of the homeserver's policies": "Please review and accept all of the homeserver's policies",
|
"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:",
|
"Please review and accept the policies of this homeserver:": "Please review and accept the policies of this homeserver:",
|
||||||
|
@ -3235,7 +3210,6 @@
|
||||||
"Enter username": "Enter username",
|
"Enter username": "Enter username",
|
||||||
"Enter phone number": "Enter phone number",
|
"Enter phone number": "Enter phone number",
|
||||||
"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",
|
"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",
|
||||||
"Username": "Username",
|
|
||||||
"Phone": "Phone",
|
"Phone": "Phone",
|
||||||
"Forgot password?": "Forgot password?",
|
"Forgot password?": "Forgot password?",
|
||||||
"Sign in with": "Sign in with",
|
"Sign in with": "Sign in with",
|
||||||
|
@ -3338,7 +3312,6 @@
|
||||||
"Welcome to <name/>": "Welcome to <name/>",
|
"Welcome to <name/>": "Welcome to <name/>",
|
||||||
"Random": "Random",
|
"Random": "Random",
|
||||||
"Support": "Support",
|
"Support": "Support",
|
||||||
"Room name": "Room name",
|
|
||||||
"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…",
|
||||||
|
@ -3388,9 +3361,6 @@
|
||||||
"Switch to light mode": "Switch to light mode",
|
"Switch to light mode": "Switch to light mode",
|
||||||
"Switch to dark mode": "Switch to dark mode",
|
"Switch to dark mode": "Switch to dark mode",
|
||||||
"Switch theme": "Switch theme",
|
"Switch theme": "Switch theme",
|
||||||
"a11y": {
|
|
||||||
"user_menu": "User menu"
|
|
||||||
},
|
|
||||||
"Could not load user profile": "Could not load user profile",
|
"Could not load user profile": "Could not load user profile",
|
||||||
"Decrypted event source": "Decrypted event source",
|
"Decrypted event source": "Decrypted event source",
|
||||||
"Decrypted source unavailable": "Decrypted source unavailable",
|
"Decrypted source unavailable": "Decrypted source unavailable",
|
||||||
|
@ -3628,5 +3598,37 @@
|
||||||
"Activate selected button": "Activate selected button",
|
"Activate selected button": "Activate selected button",
|
||||||
"New line": "New line",
|
"New line": "New line",
|
||||||
"Force complete": "Force complete",
|
"Force complete": "Force complete",
|
||||||
"Search (must be enabled)": "Search (must be enabled)"
|
"Search (must be enabled)": "Search (must be enabled)",
|
||||||
|
"common": {
|
||||||
|
"error": "Error",
|
||||||
|
"video": "Video",
|
||||||
|
"people": "People",
|
||||||
|
"analytics": "Analytics",
|
||||||
|
"settings": "Settings",
|
||||||
|
"no_results": "No results",
|
||||||
|
"message_layout": "Message layout",
|
||||||
|
"modern": "Modern",
|
||||||
|
"success": "Success",
|
||||||
|
"sticker": "Sticker",
|
||||||
|
"offline": "Offline",
|
||||||
|
"loading": "Loading…",
|
||||||
|
"about": "About",
|
||||||
|
"message": "Message",
|
||||||
|
"unmute": "Unmute",
|
||||||
|
"mute": "Mute",
|
||||||
|
"security": "Security",
|
||||||
|
"verification_cancelled": "Verification cancelled",
|
||||||
|
"encryption_enabled": "Encryption enabled",
|
||||||
|
"image": "Image",
|
||||||
|
"reactions": "Reactions",
|
||||||
|
"report_a_bug": "Report a bug",
|
||||||
|
"forward_message": "Forward message",
|
||||||
|
"suggestions": "Suggestions",
|
||||||
|
"password": "Password",
|
||||||
|
"username": "Username",
|
||||||
|
"room_name": "Room name"
|
||||||
|
},
|
||||||
|
"a11y": {
|
||||||
|
"user_menu": "User menu"
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -52,7 +52,6 @@
|
||||||
"Email": "Email",
|
"Email": "Email",
|
||||||
"Email address": "Email address",
|
"Email address": "Email address",
|
||||||
"Emoji": "Emoji",
|
"Emoji": "Emoji",
|
||||||
"Error": "Error",
|
|
||||||
"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",
|
||||||
|
@ -110,7 +109,6 @@
|
||||||
"Missing room_id in request": "Missing room_id in request",
|
"Missing room_id in request": "Missing room_id in request",
|
||||||
"Missing user_id in request": "Missing user_id in request",
|
"Missing user_id in request": "Missing user_id in request",
|
||||||
"Moderator": "Moderator",
|
"Moderator": "Moderator",
|
||||||
"Mute": "Mute",
|
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
"New passwords don't match": "New passwords don't match",
|
"New passwords don't match": "New passwords don't match",
|
||||||
"New passwords must match each other.": "New passwords must match each other.",
|
"New passwords must match each other.": "New passwords must match each other.",
|
||||||
|
@ -118,11 +116,9 @@
|
||||||
"Notifications": "Notifications",
|
"Notifications": "Notifications",
|
||||||
"<not supported>": "<not supported>",
|
"<not supported>": "<not supported>",
|
||||||
"No more results": "No more results",
|
"No more results": "No more results",
|
||||||
"No results": "No results",
|
|
||||||
"No users have specific privileges in this room": "No users have specific privileges in this room",
|
"No users have specific privileges in this room": "No users have specific privileges in this room",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Operation failed": "Operation failed",
|
"Operation failed": "Operation failed",
|
||||||
"Password": "Password",
|
|
||||||
"Passwords can't be empty": "Passwords can't be empty",
|
"Passwords can't be empty": "Passwords can't be empty",
|
||||||
"Permissions": "Permissions",
|
"Permissions": "Permissions",
|
||||||
"Phone": "Phone",
|
"Phone": "Phone",
|
||||||
|
@ -151,14 +147,12 @@
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Server may be unavailable, overloaded, or you hit a bug.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "Server may be unavailable, overloaded, or you hit a bug.",
|
||||||
"Server unavailable, overloaded, or something else went wrong.": "Server unavailable, overloaded, or something else went wrong.",
|
"Server unavailable, overloaded, or something else went wrong.": "Server unavailable, overloaded, or something else went wrong.",
|
||||||
"Session ID": "Session ID",
|
"Session ID": "Session ID",
|
||||||
"Settings": "Settings",
|
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Show timestamps in 12 hour format (e.g. 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Show timestamps in 12 hour format (e.g. 2:30pm)",
|
||||||
"Signed Out": "Signed Out",
|
"Signed Out": "Signed Out",
|
||||||
"Sign in": "Sign in",
|
"Sign in": "Sign in",
|
||||||
"Sign out": "Sign out",
|
"Sign out": "Sign out",
|
||||||
"Someone": "Someone",
|
"Someone": "Someone",
|
||||||
"Submit": "Submit",
|
"Submit": "Submit",
|
||||||
"Success": "Success",
|
|
||||||
"This email address is already in use": "This email address is already in use",
|
"This email address is already in use": "This email address is already in use",
|
||||||
"This email address was not found": "This email address was not found",
|
"This email address was not found": "This email address was not found",
|
||||||
"The email address linked to your account must be entered.": "The email address linked to your account must be entered.",
|
"The email address linked to your account must be entered.": "The email address linked to your account must be entered.",
|
||||||
|
@ -175,7 +169,6 @@
|
||||||
"Unban": "Unban",
|
"Unban": "Unban",
|
||||||
"Unable to enable Notifications": "Unable to enable Notifications",
|
"Unable to enable Notifications": "Unable to enable Notifications",
|
||||||
"unknown error code": "unknown error code",
|
"unknown error code": "unknown error code",
|
||||||
"Unmute": "Unmute",
|
|
||||||
"Upload avatar": "Upload avatar",
|
"Upload avatar": "Upload avatar",
|
||||||
"Upload Failed": "Upload Failed",
|
"Upload Failed": "Upload Failed",
|
||||||
"Usage": "Usage",
|
"Usage": "Usage",
|
||||||
|
@ -223,7 +216,6 @@
|
||||||
"Sent messages will be stored until your connection has returned.": "Sent messages will be stored until your connection has returned.",
|
"Sent messages will be stored until your connection has returned.": "Sent messages will be stored until your connection has returned.",
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Start automatically after system login": "Start automatically after system login",
|
"Start automatically after system login": "Start automatically after system login",
|
||||||
"Analytics": "Analytics",
|
|
||||||
"Banned by %(displayName)s": "Banned by %(displayName)s",
|
"Banned by %(displayName)s": "Banned by %(displayName)s",
|
||||||
"Options": "Options",
|
"Options": "Options",
|
||||||
"Passphrases must match": "Passphrases must match",
|
"Passphrases must match": "Passphrases must match",
|
||||||
|
@ -256,7 +248,6 @@
|
||||||
"Drop file here to upload": "Drop file here to upload",
|
"Drop file here to upload": "Drop file here to upload",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Idle": "Idle",
|
"Idle": "Idle",
|
||||||
"Offline": "Offline",
|
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s changed the room avatar to <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s changed the room avatar to <img/>",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removed the room avatar.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removed the room avatar.",
|
||||||
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s changed the avatar for %(roomName)s",
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s changed the avatar for %(roomName)s",
|
||||||
|
@ -451,5 +442,16 @@
|
||||||
"User Busy": "User Busy",
|
"User Busy": "User Busy",
|
||||||
"%(seconds)ss left": "%(seconds)ss left",
|
"%(seconds)ss left": "%(seconds)ss left",
|
||||||
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss left",
|
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss left",
|
||||||
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sh %(minutes)sm %(seconds)ss left"
|
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sh %(minutes)sm %(seconds)ss left",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Analytics",
|
||||||
|
"error": "Error",
|
||||||
|
"mute": "Mute",
|
||||||
|
"no_results": "No results",
|
||||||
|
"offline": "Offline",
|
||||||
|
"password": "Password",
|
||||||
|
"settings": "Settings",
|
||||||
|
"success": "Success",
|
||||||
|
"unmute": "Unmute"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,7 +96,6 @@
|
||||||
"Enable URL previews by default for participants in this room": "Ŝalti URL-antaŭrigardon por anoj de ĉi tiu ĉambro",
|
"Enable URL previews by default for participants in this room": "Ŝalti URL-antaŭrigardon por anoj de ĉi tiu ĉambro",
|
||||||
"Decline": "Rifuzi",
|
"Decline": "Rifuzi",
|
||||||
"Accept": "Akcepti",
|
"Accept": "Akcepti",
|
||||||
"Error": "Eraro",
|
|
||||||
"Incorrect verification code": "Malĝusta kontrola kodo",
|
"Incorrect verification code": "Malĝusta kontrola kodo",
|
||||||
"Submit": "Sendi",
|
"Submit": "Sendi",
|
||||||
"Phone": "Telefono",
|
"Phone": "Telefono",
|
||||||
|
@ -108,7 +107,6 @@
|
||||||
"Export E2E room keys": "Elporti tutvoje ĉifrajn ŝlosilojn de la ĉambro",
|
"Export E2E room keys": "Elporti tutvoje ĉifrajn ŝlosilojn de la ĉambro",
|
||||||
"Do you want to set an email address?": "Ĉu vi volas agordi retpoŝtadreson?",
|
"Do you want to set an email address?": "Ĉu vi volas agordi retpoŝtadreson?",
|
||||||
"Current password": "Nuna pasvorto",
|
"Current password": "Nuna pasvorto",
|
||||||
"Password": "Pasvorto",
|
|
||||||
"New Password": "Nova pasvorto",
|
"New Password": "Nova pasvorto",
|
||||||
"Confirm password": "Konfirmu pasvorton",
|
"Confirm password": "Konfirmu pasvorton",
|
||||||
"Change Password": "Ŝanĝi pasvorton",
|
"Change Password": "Ŝanĝi pasvorton",
|
||||||
|
@ -129,8 +127,6 @@
|
||||||
"Jump to read receipt": "Salti al legokonfirmo",
|
"Jump to read receipt": "Salti al legokonfirmo",
|
||||||
"Mention": "Mencio",
|
"Mention": "Mencio",
|
||||||
"Invite": "Inviti",
|
"Invite": "Inviti",
|
||||||
"Unmute": "Malsilentigi",
|
|
||||||
"Mute": "Silentigi",
|
|
||||||
"Admin Tools": "Estriloj",
|
"Admin Tools": "Estriloj",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "kaj %(count)s aliaj…",
|
"other": "kaj %(count)s aliaj…",
|
||||||
|
@ -157,7 +153,6 @@
|
||||||
"Unknown for %(duration)s": "Nekonata jam je %(duration)s",
|
"Unknown for %(duration)s": "Nekonata jam je %(duration)s",
|
||||||
"Online": "Enreta",
|
"Online": "Enreta",
|
||||||
"Idle": "Senfara",
|
"Idle": "Senfara",
|
||||||
"Offline": "Eksterreta",
|
|
||||||
"Unknown": "Nekonata",
|
"Unknown": "Nekonata",
|
||||||
"Unnamed room": "Sennoma ĉambro",
|
"Unnamed room": "Sennoma ĉambro",
|
||||||
"Save": "Konservi",
|
"Save": "Konservi",
|
||||||
|
@ -167,7 +162,6 @@
|
||||||
},
|
},
|
||||||
"Join Room": "Aliĝi al ĉambro",
|
"Join Room": "Aliĝi al ĉambro",
|
||||||
"Upload avatar": "Alŝuti profilbildon",
|
"Upload avatar": "Alŝuti profilbildon",
|
||||||
"Settings": "Agordoj",
|
|
||||||
"Forget room": "Forgesi ĉambron",
|
"Forget room": "Forgesi ĉambron",
|
||||||
"Search": "Serĉi",
|
"Search": "Serĉi",
|
||||||
"Invites": "Invitoj",
|
"Invites": "Invitoj",
|
||||||
|
@ -233,7 +227,6 @@
|
||||||
"Delete Widget": "Forigi fenestraĵon",
|
"Delete Widget": "Forigi fenestraĵon",
|
||||||
"Delete widget": "Forigi fenestraĵon",
|
"Delete widget": "Forigi fenestraĵon",
|
||||||
"Create new room": "Krei novan ĉambron",
|
"Create new room": "Krei novan ĉambron",
|
||||||
"No results": "Neniuj rezultoj",
|
|
||||||
"Home": "Hejmo",
|
"Home": "Hejmo",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -376,12 +369,10 @@
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "Alŝutante dosieron %(filename)s",
|
"Uploading %(filename)s": "Alŝutante dosieron %(filename)s",
|
||||||
"Sign out": "Adiaŭi",
|
"Sign out": "Adiaŭi",
|
||||||
"Success": "Sukceso",
|
|
||||||
"Unable to remove contact information": "Ne povas forigi kontaktajn informojn",
|
"Unable to remove contact information": "Ne povas forigi kontaktajn informojn",
|
||||||
"<not supported>": "<nesubtenata>",
|
"<not supported>": "<nesubtenata>",
|
||||||
"Import E2E room keys": "Enporti tutvoje ĉifrajn ĉambrajn ŝlosilojn",
|
"Import E2E room keys": "Enporti tutvoje ĉifrajn ĉambrajn ŝlosilojn",
|
||||||
"Cryptography": "Ĉifroteĥnikaro",
|
"Cryptography": "Ĉifroteĥnikaro",
|
||||||
"Analytics": "Analizo",
|
|
||||||
"Labs": "Eksperimentaj funkcioj",
|
"Labs": "Eksperimentaj funkcioj",
|
||||||
"Check for update": "Kontroli ĝisdatigojn",
|
"Check for update": "Kontroli ĝisdatigojn",
|
||||||
"Reject all %(invitedRooms)s invites": "Rifuzi ĉiujn %(invitedRooms)s invitojn",
|
"Reject all %(invitedRooms)s invites": "Rifuzi ĉiujn %(invitedRooms)s invitojn",
|
||||||
|
@ -665,7 +656,6 @@
|
||||||
"Share Room Message": "Kunhavigi ĉambran mesaĝon",
|
"Share Room Message": "Kunhavigi ĉambran mesaĝon",
|
||||||
"Next": "Sekva",
|
"Next": "Sekva",
|
||||||
"Code": "Kodo",
|
"Code": "Kodo",
|
||||||
"Username": "Uzantonomo",
|
|
||||||
"Change": "Ŝanĝi",
|
"Change": "Ŝanĝi",
|
||||||
"Email (optional)": "Retpoŝto (malnepra)",
|
"Email (optional)": "Retpoŝto (malnepra)",
|
||||||
"Phone (optional)": "Telefono (malnepra)",
|
"Phone (optional)": "Telefono (malnepra)",
|
||||||
|
@ -1204,12 +1194,9 @@
|
||||||
"Start Verification": "Komenci kontrolon",
|
"Start Verification": "Komenci kontrolon",
|
||||||
"Trusted": "Fidata",
|
"Trusted": "Fidata",
|
||||||
"Not trusted": "Nefidata",
|
"Not trusted": "Nefidata",
|
||||||
"Security": "Sekureco",
|
|
||||||
"Reactions": "Reagoj",
|
|
||||||
"More options": "Pliaj elektebloj",
|
"More options": "Pliaj elektebloj",
|
||||||
"Integrations are disabled": "Kunigoj estas malŝaltitaj",
|
"Integrations are disabled": "Kunigoj estas malŝaltitaj",
|
||||||
"Integrations not allowed": "Kunigoj ne estas permesitaj",
|
"Integrations not allowed": "Kunigoj ne estas permesitaj",
|
||||||
"Suggestions": "Rekomendoj",
|
|
||||||
"Upgrade private room": "Gradaltigi privatan ĉambron",
|
"Upgrade private room": "Gradaltigi privatan ĉambron",
|
||||||
"Upgrade public room": "Gradaltigi publikan ĉambron",
|
"Upgrade public room": "Gradaltigi publikan ĉambron",
|
||||||
"Start": "Komenci",
|
"Start": "Komenci",
|
||||||
|
@ -1369,7 +1356,6 @@
|
||||||
"Verify by comparing unique emoji.": "Kontrolu per komparo de unikaj bildsignoj.",
|
"Verify by comparing unique emoji.": "Kontrolu per komparo de unikaj bildsignoj.",
|
||||||
"You've successfully verified %(displayName)s!": "Vi sukcese kontrolis uzanton %(displayName)s!",
|
"You've successfully verified %(displayName)s!": "Vi sukcese kontrolis uzanton %(displayName)s!",
|
||||||
"Got it": "Komprenite",
|
"Got it": "Komprenite",
|
||||||
"Encryption enabled": "Ĉifrado estas ŝaltita",
|
|
||||||
"Encryption not enabled": "Ĉifrado ne estas ŝaltita",
|
"Encryption not enabled": "Ĉifrado ne estas ŝaltita",
|
||||||
"The encryption used by this room isn't supported.": "La ĉifro uzata de ĉi tiu ĉambro ne estas subtenata.",
|
"The encryption used by this room isn't supported.": "La ĉifro uzata de ĉi tiu ĉambro ne estas subtenata.",
|
||||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Vi malatentis ĉi tiun uzanton, ĝia mesaĝo estas do kaŝita. <a>Tamen montri.</a>",
|
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Vi malatentis ĉi tiun uzanton, ĝia mesaĝo estas do kaŝita. <a>Tamen montri.</a>",
|
||||||
|
@ -1488,7 +1474,6 @@
|
||||||
"Mod": "Reguligisto",
|
"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.",
|
||||||
"Verification cancelled": "Kontrolo nuliĝis",
|
|
||||||
"Use Single Sign On to continue": "Daŭrigi per ununura saluto",
|
"Use Single Sign On to continue": "Daŭrigi per ununura saluto",
|
||||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Konfirmi aldonon de ĉi tiu retpoŝtadreso, uzante ununuran saluton por pruvi vian identecon.",
|
"Confirm adding this email address by using Single Sign On to prove your identity.": "Konfirmi aldonon de ĉi tiu retpoŝtadreso, uzante ununuran saluton por pruvi vian identecon.",
|
||||||
"Single Sign On": "Ununura saluto",
|
"Single Sign On": "Ununura saluto",
|
||||||
|
@ -1597,8 +1582,6 @@
|
||||||
"Unknown caller": "Nekonata vokanto",
|
"Unknown caller": "Nekonata vokanto",
|
||||||
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s ne povas sekure kaŝkopii ĉifritajn mesaĝojn loke, funkciante per foliumilo. Uzu <desktopLink>%(brand)s Desktop</desktopLink> por aperigi ĉifritajn mesaĝojn en serĉrezultoj.",
|
"%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use <desktopLink>%(brand)s Desktop</desktopLink> for encrypted messages to appear in search results.": "%(brand)s ne povas sekure kaŝkopii ĉifritajn mesaĝojn loke, funkciante per foliumilo. Uzu <desktopLink>%(brand)s Desktop</desktopLink> por aperigi ĉifritajn mesaĝojn en serĉrezultoj.",
|
||||||
"Hey you. You're the best!": "He, vi. Vi bonegas!",
|
"Hey you. You're the best!": "He, vi. Vi bonegas!",
|
||||||
"Message layout": "Aranĝo de mesaĝoj",
|
|
||||||
"Modern": "Moderna",
|
|
||||||
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Agordu la nomon de tiparo instalita en via sistemo kaj %(brand)s provos ĝin uzi.",
|
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Agordu la nomon de tiparo instalita en via sistemo kaj %(brand)s provos ĝin uzi.",
|
||||||
"Customise your appearance": "Adaptu vian aspekton",
|
"Customise your appearance": "Adaptu vian aspekton",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Agordoj de aspekto nur efikos sur ĉi tiun salutaĵon de %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Agordoj de aspekto nur efikos sur ĉi tiun salutaĵon de %(brand)s.",
|
||||||
|
@ -1606,7 +1589,6 @@
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "La administranto de via servilo malŝaltis implicitan tutvojan ĉifradon en privataj kaj individuaj ĉambroj.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "La administranto de via servilo malŝaltis implicitan tutvojan ĉifradon en privataj kaj individuaj ĉambroj.",
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "La aŭtentikeco de ĉi tiu ĉifrita mesaĝo ne povas esti garantiita sur ĉi tiu aparato.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "La aŭtentikeco de ĉi tiu ĉifrita mesaĝo ne povas esti garantiita sur ĉi tiu aparato.",
|
||||||
"No recently visited rooms": "Neniuj freŝdate vizititaj ĉambroj",
|
"No recently visited rooms": "Neniuj freŝdate vizititaj ĉambroj",
|
||||||
"People": "Personoj",
|
|
||||||
"Message preview": "Antaŭrigardo al mesaĝo",
|
"Message preview": "Antaŭrigardo al mesaĝo",
|
||||||
"Sort by": "Ordigi laŭ",
|
"Sort by": "Ordigi laŭ",
|
||||||
"Activity": "Aktiveco",
|
"Activity": "Aktiveco",
|
||||||
|
@ -1689,7 +1671,6 @@
|
||||||
"Join the conference at the top of this room": "Aliĝu al la grupa voko supre je la ĉambro",
|
"Join the conference at the top of this room": "Aliĝu al la grupa voko supre je la ĉambro",
|
||||||
"Ignored attempt to disable encryption": "Malatentis provon malŝalti ĉifradon",
|
"Ignored attempt to disable encryption": "Malatentis provon malŝalti ĉifradon",
|
||||||
"Room settings": "Agordoj de ĉambro",
|
"Room settings": "Agordoj de ĉambro",
|
||||||
"About": "Prio",
|
|
||||||
"Not encrypted": "Neĉifrita",
|
"Not encrypted": "Neĉifrita",
|
||||||
"Add widgets, bridges & bots": "Aldonu fenestraĵojn, pontojn, kaj robotojn",
|
"Add widgets, bridges & bots": "Aldonu fenestraĵojn, pontojn, kaj robotojn",
|
||||||
"Edit widgets, bridges & bots": "Redakti fenestraĵojn, pontojn, kaj robotojn",
|
"Edit widgets, bridges & bots": "Redakti fenestraĵojn, pontojn, kaj robotojn",
|
||||||
|
@ -1734,7 +1715,6 @@
|
||||||
"Send feedback": "Prikomenti",
|
"Send feedback": "Prikomenti",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "KONSILO: Kiam vi raportas eraron, bonvolu kunsendi <debugLogsLink>erarserĉan protokolon</debugLogsLink>, por ke ni povu pli facile trovi la problemon.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "KONSILO: Kiam vi raportas eraron, bonvolu kunsendi <debugLogsLink>erarserĉan protokolon</debugLogsLink>, por ke ni povu pli facile trovi la problemon.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Bonvolu unue vidi <existingIssuesLink>jamajn erarojn en GitHub</existingIssuesLink>. Ĉu neniu akordas la vian? <newIssueLink>Raportu novan</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Bonvolu unue vidi <existingIssuesLink>jamajn erarojn en GitHub</existingIssuesLink>. Ĉu neniu akordas la vian? <newIssueLink>Raportu novan</newIssueLink>.",
|
||||||
"Report a bug": "Raporti eraron",
|
|
||||||
"Comment": "Komento",
|
"Comment": "Komento",
|
||||||
"Uzbekistan": "Uzbekujo",
|
"Uzbekistan": "Uzbekujo",
|
||||||
"United Arab Emirates": "Unuiĝinaj Arabaj Emirlandoj",
|
"United Arab Emirates": "Unuiĝinaj Arabaj Emirlandoj",
|
||||||
|
@ -2207,7 +2187,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",
|
||||||
"Room name": "Nomo de ĉambro",
|
|
||||||
"Support": "Subteno",
|
"Support": "Subteno",
|
||||||
"Random": "Hazarda",
|
"Random": "Hazarda",
|
||||||
"Welcome to <name/>": "Bonvenu al <name/>",
|
"Welcome to <name/>": "Bonvenu al <name/>",
|
||||||
|
@ -2535,7 +2514,6 @@
|
||||||
"Or send invite link": "Aŭ sendu invitan ligilon",
|
"Or send invite link": "Aŭ sendu invitan ligilon",
|
||||||
"Some suggestions may be hidden for privacy.": "Iuj proponoj povas esti kaŝitaj pro privateco.",
|
"Some suggestions may be hidden for privacy.": "Iuj proponoj povas esti kaŝitaj pro privateco.",
|
||||||
"Search for rooms or people": "Serĉi ĉambrojn aŭ personojn",
|
"Search for rooms or people": "Serĉi ĉambrojn aŭ personojn",
|
||||||
"Forward message": "Plusendi mesaĝon",
|
|
||||||
"Sent": "Sendite",
|
"Sent": "Sendite",
|
||||||
"You don't have permission to do this": "Vi ne rajtas fari tion",
|
"You don't have permission to do this": "Vi ne rajtas fari tion",
|
||||||
"Want to add an existing space instead?": "Ĉu vi volas aldoni jaman aron anstataŭe?",
|
"Want to add an existing space instead?": "Ĉu vi volas aldoni jaman aron anstataŭe?",
|
||||||
|
@ -2576,8 +2554,6 @@
|
||||||
"Message search initialisation failed, check <a>your settings</a> for more information": "Malsukcesis komencigo de serĉado de mesaĝoj, kontrolu <a>viajn agordojn</a> por pliaj informoj",
|
"Message search initialisation failed, check <a>your settings</a> for more information": "Malsukcesis komencigo de serĉado de mesaĝoj, kontrolu <a>viajn agordojn</a> por pliaj informoj",
|
||||||
"Error - Mixed content": "Eraris – Miksita enhavo",
|
"Error - Mixed content": "Eraris – Miksita enhavo",
|
||||||
"Error loading Widget": "Eraris enlegado de fenestraĵo",
|
"Error loading Widget": "Eraris enlegado de fenestraĵo",
|
||||||
"Image": "Bildo",
|
|
||||||
"Sticker": "Glumarko",
|
|
||||||
"Error processing audio message": "Eraris traktado de sonmesaĝo",
|
"Error processing audio message": "Eraris traktado de sonmesaĝo",
|
||||||
"Decrypting": "Malĉifrante",
|
"Decrypting": "Malĉifrante",
|
||||||
"The call is in an unknown state!": "La voko estas en nekonata stato!",
|
"The call is in an unknown state!": "La voko estas en nekonata stato!",
|
||||||
|
@ -2630,7 +2606,6 @@
|
||||||
"Thread": "Fadeno",
|
"Thread": "Fadeno",
|
||||||
"Some encryption parameters have been changed.": "Ŝanĝiĝis iuj parametroj de ĉifrado.",
|
"Some encryption parameters have been changed.": "Ŝanĝiĝis iuj parametroj de ĉifrado.",
|
||||||
"Role in <RoomName/>": "Rolo en <RoomName/>",
|
"Role in <RoomName/>": "Rolo en <RoomName/>",
|
||||||
"Message": "Mesaĝo",
|
|
||||||
"Message didn't send. Click for info.": "Mesaĝo ne sendiĝis. Klaku por akiri informojn.",
|
"Message didn't send. Click for info.": "Mesaĝo ne sendiĝis. Klaku por akiri informojn.",
|
||||||
"Send a sticker": "Sendi glumarkon",
|
"Send a sticker": "Sendi glumarkon",
|
||||||
"Reply to thread…": "Respondi al fadeno…",
|
"Reply to thread…": "Respondi al fadeno…",
|
||||||
|
@ -2939,7 +2914,6 @@
|
||||||
"Yes, it was me": "Jes, estis mi",
|
"Yes, it was me": "Jes, estis mi",
|
||||||
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s estas eksperimenta en poŝtelefona retumilo. Por pli bona sperto kaj freŝaj funkcioj, uzu nian senpagan malfremdan aplikaĵon.",
|
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s estas eksperimenta en poŝtelefona retumilo. Por pli bona sperto kaj freŝaj funkcioj, uzu nian senpagan malfremdan aplikaĵon.",
|
||||||
"Notifications silenced": "Sciigoj silentigitaj",
|
"Notifications silenced": "Sciigoj silentigitaj",
|
||||||
"Video": "Video",
|
|
||||||
"Video call started": "Videovoko komenciĝis",
|
"Video call started": "Videovoko komenciĝis",
|
||||||
"Unknown room": "Nekonata ĉambro",
|
"Unknown room": "Nekonata ĉambro",
|
||||||
"Creating output…": "Kreante eligon…",
|
"Creating output…": "Kreante eligon…",
|
||||||
|
@ -2952,6 +2926,34 @@
|
||||||
"WARNING: session already verified, but keys do NOT MATCH!": "AVERTO: Salutaĵo jam estas kontrolita, sed la ŝlosiloj NE AKORDAS!",
|
"WARNING: session already verified, but keys do NOT MATCH!": "AVERTO: Salutaĵo jam estas kontrolita, sed la ŝlosiloj NE AKORDAS!",
|
||||||
"Your email address does not appear to be associated with a Matrix ID on this homeserver.": "Via retpoŝtareso ŝajne ne ligiĝas al Matrix-identigilo sur tiu ĉi hejmservilo.",
|
"Your email address does not appear to be associated with a Matrix ID on this homeserver.": "Via retpoŝtareso ŝajne ne ligiĝas al Matrix-identigilo sur tiu ĉi hejmservilo.",
|
||||||
"%(senderName)s started a voice broadcast": "%(senderName)s komencis voĉan elsendon",
|
"%(senderName)s started a voice broadcast": "%(senderName)s komencis voĉan elsendon",
|
||||||
|
"common": {
|
||||||
|
"about": "Prio",
|
||||||
|
"analytics": "Analizo",
|
||||||
|
"encryption_enabled": "Ĉifrado estas ŝaltita",
|
||||||
|
"error": "Eraro",
|
||||||
|
"forward_message": "Plusendi mesaĝon",
|
||||||
|
"image": "Bildo",
|
||||||
|
"message": "Mesaĝo",
|
||||||
|
"message_layout": "Aranĝo de mesaĝoj",
|
||||||
|
"modern": "Moderna",
|
||||||
|
"mute": "Silentigi",
|
||||||
|
"no_results": "Neniuj rezultoj",
|
||||||
|
"offline": "Eksterreta",
|
||||||
|
"password": "Pasvorto",
|
||||||
|
"people": "Personoj",
|
||||||
|
"reactions": "Reagoj",
|
||||||
|
"report_a_bug": "Raporti eraron",
|
||||||
|
"room_name": "Nomo de ĉambro",
|
||||||
|
"security": "Sekureco",
|
||||||
|
"settings": "Agordoj",
|
||||||
|
"sticker": "Glumarko",
|
||||||
|
"success": "Sukceso",
|
||||||
|
"suggestions": "Rekomendoj",
|
||||||
|
"unmute": "Malsilentigi",
|
||||||
|
"username": "Uzantonomo",
|
||||||
|
"verification_cancelled": "Kontrolo nuliĝis",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menuo de uzanto"
|
"user_menu": "Menuo de uzanto"
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,6 @@
|
||||||
"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",
|
"Emoji": "Emoji",
|
||||||
"Error": "Error",
|
|
||||||
"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ó",
|
||||||
|
@ -101,7 +100,6 @@
|
||||||
"Create new room": "Crear una nueva sala",
|
"Create new room": "Crear una nueva sala",
|
||||||
"Start chat": "Empezar una conversación",
|
"Start chat": "Empezar una conversación",
|
||||||
"New Password": "Contraseña nueva",
|
"New Password": "Contraseña nueva",
|
||||||
"Analytics": "Analítica de datos",
|
|
||||||
"Options": "Opciones",
|
"Options": "Opciones",
|
||||||
"Passphrases must match": "Las contraseñas deben coincidir",
|
"Passphrases must match": "Las contraseñas deben coincidir",
|
||||||
"Passphrase must not be empty": "La contraseña no puede estar en blanco",
|
"Passphrase must not be empty": "La contraseña no puede estar en blanco",
|
||||||
|
@ -128,14 +126,12 @@
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "El servidor podría estar saturado o desconectado, o has encontrado un fallo.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "El servidor podría estar saturado o desconectado, o has encontrado un fallo.",
|
||||||
"Server unavailable, overloaded, or something else went wrong.": "Servidor saturado, desconectado, o alguien ha roto algo.",
|
"Server unavailable, overloaded, or something else went wrong.": "Servidor saturado, desconectado, o alguien ha roto algo.",
|
||||||
"Session ID": "ID de Sesión",
|
"Session ID": "ID de Sesión",
|
||||||
"Settings": "Ajustes",
|
|
||||||
"Signed Out": "Desconectado",
|
"Signed Out": "Desconectado",
|
||||||
"Sign in": "Iniciar sesión",
|
"Sign in": "Iniciar sesión",
|
||||||
"Sign out": "Cerrar sesión",
|
"Sign out": "Cerrar sesión",
|
||||||
"Someone": "Alguien",
|
"Someone": "Alguien",
|
||||||
"Start authentication": "Iniciar autenticación",
|
"Start authentication": "Iniciar autenticación",
|
||||||
"Submit": "Enviar",
|
"Submit": "Enviar",
|
||||||
"Success": "Éxito",
|
|
||||||
"No media permissions": "Sin permisos para el medio",
|
"No media permissions": "Sin permisos para el medio",
|
||||||
"You may need to manually permit %(brand)s to access your microphone/webcam": "Probablemente necesites dar permisos manualmente a %(brand)s para tu micrófono/cámara",
|
"You may need to manually permit %(brand)s to access your microphone/webcam": "Probablemente necesites dar permisos manualmente a %(brand)s para tu micrófono/cámara",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "¿Salir de la sala «%(roomName)s»?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "¿Salir de la sala «%(roomName)s»?",
|
||||||
|
@ -144,7 +140,6 @@
|
||||||
"Missing room_id in request": "Falta el room_id en la solicitud",
|
"Missing room_id in request": "Falta el room_id en la solicitud",
|
||||||
"Missing user_id in request": "Falta el user_id en la solicitud",
|
"Missing user_id in request": "Falta el user_id en la solicitud",
|
||||||
"Moderator": "Moderador",
|
"Moderator": "Moderador",
|
||||||
"Mute": "Silenciar",
|
|
||||||
"Name": "Nombre",
|
"Name": "Nombre",
|
||||||
"New passwords don't match": "Las contraseñas nuevas no coinciden",
|
"New passwords don't match": "Las contraseñas nuevas no coinciden",
|
||||||
"New passwords must match each other.": "Las contraseñas nuevas deben coincidir.",
|
"New passwords must match each other.": "Las contraseñas nuevas deben coincidir.",
|
||||||
|
@ -153,11 +148,9 @@
|
||||||
"<not supported>": "<no soportado>",
|
"<not supported>": "<no soportado>",
|
||||||
"No display name": "Sin nombre público",
|
"No display name": "Sin nombre público",
|
||||||
"No more results": "No hay más resultados",
|
"No more results": "No hay más resultados",
|
||||||
"No results": "No hay resultados",
|
|
||||||
"No users have specific privileges in this room": "Ningún usuario tiene permisos específicos en esta sala",
|
"No users have specific privileges in this room": "Ningún usuario tiene permisos específicos en esta sala",
|
||||||
"OK": "Vale",
|
"OK": "Vale",
|
||||||
"Operation failed": "Falló la operación",
|
"Operation failed": "Falló la operación",
|
||||||
"Password": "Contraseña",
|
|
||||||
"Passwords can't be empty": "Las contraseñas no pueden estar en blanco",
|
"Passwords can't be empty": "Las contraseñas no pueden estar en blanco",
|
||||||
"Permissions": "Permisos",
|
"Permissions": "Permisos",
|
||||||
"Phone": "Teléfono",
|
"Phone": "Teléfono",
|
||||||
|
@ -225,7 +218,6 @@
|
||||||
"Publish this room to the public in %(domain)s's room directory?": "¿Quieres incluir esta sala en la lista pública de salas de %(domain)s?",
|
"Publish this room to the public in %(domain)s's room directory?": "¿Quieres incluir esta sala en la lista pública de salas de %(domain)s?",
|
||||||
"AM": "AM",
|
"AM": "AM",
|
||||||
"PM": "PM",
|
"PM": "PM",
|
||||||
"Unmute": "Dejar de silenciar",
|
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nivel de permisos %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nivel de permisos %(powerLevelNumber)s)",
|
||||||
"You do not have permission to post to this room": "No tienes permiso para publicar en esta sala",
|
"You do not have permission to post to this room": "No tienes permiso para publicar en esta sala",
|
||||||
"You have <a>disabled</a> URL previews by default.": "Has <a>desactivado</a> la vista previa de URLs por defecto.",
|
"You have <a>disabled</a> URL previews by default.": "Has <a>desactivado</a> la vista previa de URLs por defecto.",
|
||||||
|
@ -371,7 +363,6 @@
|
||||||
"Offline for %(duration)s": "Desconectado durante %(duration)s",
|
"Offline for %(duration)s": "Desconectado durante %(duration)s",
|
||||||
"Unknown for %(duration)s": "Desconocido durante %(duration)s",
|
"Unknown for %(duration)s": "Desconocido durante %(duration)s",
|
||||||
"Idle": "En reposo",
|
"Idle": "En reposo",
|
||||||
"Offline": "Desconectado",
|
|
||||||
"Unknown": "Desconocido",
|
"Unknown": "Desconocido",
|
||||||
"Replying": "Respondiendo",
|
"Replying": "Respondiendo",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -873,7 +864,6 @@
|
||||||
"Failed to find the following users": "No se encontró a los siguientes usuarios",
|
"Failed to find the following users": "No se encontró a los siguientes usuarios",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Puede que los siguientes usuarios no existan o sean inválidos, y no pueden ser invitados: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Puede que los siguientes usuarios no existan o sean inválidos, y no pueden ser invitados: %(csvNames)s",
|
||||||
"Recent Conversations": "Conversaciones recientes",
|
"Recent Conversations": "Conversaciones recientes",
|
||||||
"Suggestions": "Sugerencias",
|
|
||||||
"Recently Direct Messaged": "Mensajes directos recientes",
|
"Recently Direct Messaged": "Mensajes directos recientes",
|
||||||
"Go": "Ir",
|
"Go": "Ir",
|
||||||
"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.": "Has usado %(brand)s anteriormente en %(host)s con carga diferida de usuarios activada. En esta versión la carga diferida está desactivada. Como el caché local no es compatible entre estas dos configuraciones, %(brand)s tiene que resincronizar tu cuenta.",
|
"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.": "Has usado %(brand)s anteriormente en %(host)s con carga diferida de usuarios activada. En esta versión la carga diferida está desactivada. Como el caché local no es compatible entre estas dos configuraciones, %(brand)s tiene que resincronizar tu cuenta.",
|
||||||
|
@ -1317,7 +1307,6 @@
|
||||||
},
|
},
|
||||||
"Hide sessions": "Ocultar sesiones",
|
"Hide sessions": "Ocultar sesiones",
|
||||||
"This client does not support end-to-end encryption.": "Este cliente no es compatible con el cifrado de extremo a extremo.",
|
"This client does not support end-to-end encryption.": "Este cliente no es compatible con el cifrado de extremo a extremo.",
|
||||||
"Security": "Seguridad",
|
|
||||||
"Verify by scanning": "Verificar mediante escaneo",
|
"Verify by scanning": "Verificar mediante escaneo",
|
||||||
"Ask %(displayName)s to scan your code:": "Pídele a %(displayName)s que escanee tu código:",
|
"Ask %(displayName)s to scan your code:": "Pídele a %(displayName)s que escanee tu código:",
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Si no puedes escanear el código de arriba, verifica comparando emoji únicos.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Si no puedes escanear el código de arriba, verifica comparando emoji únicos.",
|
||||||
|
@ -1333,8 +1322,6 @@
|
||||||
"Verification timed out.": "El tiempo máximo para la verificación se ha agotado.",
|
"Verification timed out.": "El tiempo máximo para la verificación se ha agotado.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s canceló la verificación.",
|
"%(displayName)s cancelled verification.": "%(displayName)s canceló la verificación.",
|
||||||
"You cancelled verification.": "Has cancelado la verificación.",
|
"You cancelled verification.": "Has cancelado la verificación.",
|
||||||
"Verification cancelled": "Verificación cancelada",
|
|
||||||
"Encryption enabled": "El cifrado está activado",
|
|
||||||
"Encryption not enabled": "El cifrado no está activado",
|
"Encryption not enabled": "El cifrado no está activado",
|
||||||
"The encryption used by this room isn't supported.": "El cifrado usado por esta sala no es compatible.",
|
"The encryption used by this room isn't supported.": "El cifrado usado por esta sala no es compatible.",
|
||||||
"React": "Reaccionar",
|
"React": "Reaccionar",
|
||||||
|
@ -1353,7 +1340,6 @@
|
||||||
"%(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",
|
"Show all": "Ver todo",
|
||||||
"Reactions": "Reacciones",
|
|
||||||
"<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",
|
||||||
|
@ -1416,7 +1402,6 @@
|
||||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Falta la clave pública del captcha en la configuración del servidor base. Por favor, informa de esto al administrador de tu servidor base.",
|
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Falta la clave pública del captcha en la configuración del servidor base. Por favor, informa de esto al administrador de tu servidor base.",
|
||||||
"Please review and accept all of the homeserver's policies": "Por favor, revisa y acepta todas las políticas del servidor base",
|
"Please review and accept all of the homeserver's policies": "Por favor, revisa y acepta todas las políticas del servidor base",
|
||||||
"Please review and accept the policies of this homeserver:": "Por favor, revisa y acepta las políticas de este servidor base:",
|
"Please review and accept the policies of this homeserver:": "Por favor, revisa y acepta las políticas de este servidor base:",
|
||||||
"Username": "Nombre de usuario",
|
|
||||||
"Use an email address to recover your account": "Utilice una dirección de correo electrónico para recuperar su cuenta",
|
"Use an email address to recover your account": "Utilice una dirección de correo electrónico para recuperar su cuenta",
|
||||||
"Enter email address (required on this homeserver)": "Introduce una dirección de correo electrónico (obligatorio en este servidor)",
|
"Enter email address (required on this homeserver)": "Introduce una dirección de correo electrónico (obligatorio en este servidor)",
|
||||||
"Doesn't look like a valid email address": "No parece una dirección de correo electrónico válida",
|
"Doesn't look like a valid email address": "No parece una dirección de correo electrónico válida",
|
||||||
|
@ -1493,8 +1478,6 @@
|
||||||
"Size must be a number": "El tamaño debe ser un dígito",
|
"Size must be a number": "El tamaño debe ser un dígito",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "El tamaño de la fuente solo puede estar entre los valores %(min)s y %(max)s",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "El tamaño de la fuente solo puede estar entre los valores %(min)s y %(max)s",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Utiliza un valor entre %(min)s y %(max)s",
|
"Use between %(min)s pt and %(max)s pt": "Utiliza un valor entre %(min)s y %(max)s",
|
||||||
"Message layout": "Diseño del mensaje",
|
|
||||||
"Modern": "Moderno",
|
|
||||||
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Escribe el nombre de la fuente instalada en tu sistema y %(brand)s intentará usarla.",
|
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Escribe el nombre de la fuente instalada en tu sistema y %(brand)s intentará usarla.",
|
||||||
"Customise your appearance": "Personaliza la apariencia",
|
"Customise your appearance": "Personaliza la apariencia",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Cambiar las opciones de apariencia solo afecta a esta sesión de %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Cambiar las opciones de apariencia solo afecta a esta sesión de %(brand)s.",
|
||||||
|
@ -1503,7 +1486,6 @@
|
||||||
"To link to this room, please add an address.": "Para obtener un enlace a esta sala, añade una dirección.",
|
"To link to this room, please add an address.": "Para obtener un enlace a esta sala, añade una dirección.",
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "La autenticidad de este mensaje cifrado no puede ser garantizada en este dispositivo.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "La autenticidad de este mensaje cifrado no puede ser garantizada en este dispositivo.",
|
||||||
"No recently visited rooms": "No hay salas visitadas recientemente",
|
"No recently visited rooms": "No hay salas visitadas recientemente",
|
||||||
"People": "Gente",
|
|
||||||
"Explore public rooms": "Buscar salas públicas",
|
"Explore public rooms": "Buscar salas públicas",
|
||||||
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Antepone ( ͡° ͜ʖ ͡°) a un mensaje de texto",
|
"Prepends ( ͡° ͜ʖ ͡°) to a plain-text message": "Antepone ( ͡° ͜ʖ ͡°) a un mensaje de texto",
|
||||||
"Unknown App": "Aplicación desconocida",
|
"Unknown App": "Aplicación desconocida",
|
||||||
|
@ -1544,7 +1526,6 @@
|
||||||
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Se produjo un error al eliminar esa dirección. Puede que ya no exista o se haya producido un error temporal.",
|
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Se produjo un error al eliminar esa dirección. Puede que ya no exista o se haya producido un error temporal.",
|
||||||
"Error removing address": "Error al eliminar la dirección",
|
"Error removing address": "Error al eliminar la dirección",
|
||||||
"Not encrypted": "Sin cifrar",
|
"Not encrypted": "Sin cifrar",
|
||||||
"About": "Acerca de",
|
|
||||||
"Room settings": "Configuración de la sala",
|
"Room settings": "Configuración de la sala",
|
||||||
"You've successfully verified your device!": "¡Ha verificado correctamente su dispositivo!",
|
"You've successfully verified your device!": "¡Ha verificado correctamente su dispositivo!",
|
||||||
"Take a picture": "Toma una foto",
|
"Take a picture": "Toma una foto",
|
||||||
|
@ -1963,7 +1944,6 @@
|
||||||
"A call can only be transferred to a single user.": "Una llamada solo puede transferirse a un usuario.",
|
"A call can only be transferred to a single user.": "Una llamada solo puede transferirse a un usuario.",
|
||||||
"Invite by email": "Invitar a través de correo electrónico",
|
"Invite by email": "Invitar a través de correo electrónico",
|
||||||
"Send feedback": "Enviar comentarios",
|
"Send feedback": "Enviar comentarios",
|
||||||
"Report a bug": "Avísanos de un fallo",
|
|
||||||
"Comment": "Comentario",
|
"Comment": "Comentario",
|
||||||
"Feedback sent": "Comentarios enviados",
|
"Feedback sent": "Comentarios enviados",
|
||||||
"There was an error finding this widget.": "Ha ocurrido un error al buscar este accesorio.",
|
"There was an error finding this widget.": "Ha ocurrido un error al buscar este accesorio.",
|
||||||
|
@ -2217,7 +2197,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",
|
||||||
"Room name": "Nombre de la sala",
|
|
||||||
"Support": "Ayuda",
|
"Support": "Ayuda",
|
||||||
"Random": "Al azar",
|
"Random": "Al azar",
|
||||||
"%(count)s members": {
|
"%(count)s members": {
|
||||||
|
@ -2389,7 +2368,6 @@
|
||||||
"Some suggestions may be hidden for privacy.": "Puede que algunas sugerencias no se muestren por motivos de privacidad.",
|
"Some suggestions may be hidden for privacy.": "Puede que algunas sugerencias no se muestren por motivos de privacidad.",
|
||||||
"Search for rooms or people": "Busca salas o gente",
|
"Search for rooms or people": "Busca salas o gente",
|
||||||
"Message preview": "Vista previa del mensaje",
|
"Message preview": "Vista previa del mensaje",
|
||||||
"Forward message": "Reenviar mensaje",
|
|
||||||
"Sent": "Enviado",
|
"Sent": "Enviado",
|
||||||
"You don't have permission to do this": "No tienes permisos para hacer eso",
|
"You don't have permission to do this": "No tienes permisos para hacer eso",
|
||||||
"Error - Mixed content": "Error - Contenido mezclado",
|
"Error - Mixed content": "Error - Contenido mezclado",
|
||||||
|
@ -2506,8 +2484,6 @@
|
||||||
"Could not connect media": "No se ha podido conectar con los dispositivos multimedia",
|
"Could not connect media": "No se ha podido conectar con los dispositivos multimedia",
|
||||||
"Their device couldn't start the camera or microphone": "El dispositivo de la otra persona no ha podido iniciar la cámara o micrófono",
|
"Their device couldn't start the camera or microphone": "El dispositivo de la otra persona no ha podido iniciar la cámara o micrófono",
|
||||||
"Error downloading audio": "Error al descargar el audio",
|
"Error downloading audio": "Error al descargar el audio",
|
||||||
"Image": "Imagen",
|
|
||||||
"Sticker": "Pegatina",
|
|
||||||
"The call is in an unknown state!": "¡La llamada está en un estado desconocido!",
|
"The call is in an unknown state!": "¡La llamada está en un estado desconocido!",
|
||||||
"Call back": "Devolver llamada",
|
"Call back": "Devolver llamada",
|
||||||
"No answer": "Sin respuesta",
|
"No answer": "Sin respuesta",
|
||||||
|
@ -2635,7 +2611,6 @@
|
||||||
"Change space name": "Cambiar el nombre del espacio",
|
"Change space name": "Cambiar el nombre del espacio",
|
||||||
"Change main address for the space": "Cambiar la dirección principal del espacio",
|
"Change main address for the space": "Cambiar la dirección principal del espacio",
|
||||||
"Change description": "Cambiar la descripción",
|
"Change description": "Cambiar la descripción",
|
||||||
"Message": "Mensaje",
|
|
||||||
"Message didn't send. Click for info.": "Mensaje no enviado. Haz clic para más info.",
|
"Message didn't send. Click for info.": "Mensaje no enviado. Haz clic para más info.",
|
||||||
"To join a space you'll need an invite.": "Para unirte a un espacio, necesitas que te inviten a él.",
|
"To join a space you'll need an invite.": "Para unirte a un espacio, necesitas que te inviten a él.",
|
||||||
"Don't leave any rooms": "No salir de ninguna sala",
|
"Don't leave any rooms": "No salir de ninguna sala",
|
||||||
|
@ -3166,7 +3141,6 @@
|
||||||
"Verification explorer": "Explorador de verificación",
|
"Verification explorer": "Explorador de verificación",
|
||||||
"View servers in room": "Ver servidores en la sala",
|
"View servers in room": "Ver servidores en la sala",
|
||||||
"Developer tools": "Herramientas de desarrollo",
|
"Developer tools": "Herramientas de desarrollo",
|
||||||
"Video": "Vídeo",
|
|
||||||
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s en navegadores para móviles está en prueba. Para una mejor experiencia y para poder usar las últimas funcionalidades, usa nuestra aplicación nativa gratuita.",
|
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s en navegadores para móviles está en prueba. Para una mejor experiencia y para poder usar las últimas funcionalidades, usa nuestra aplicación nativa gratuita.",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Los registros de depuración contienen datos sobre cómo usas la aplicación, incluyendo tu nombre de usuario, identificadores o alias de las salas que hayas visitado, una lista de los últimos elementos de la interfaz con los que has interactuado, así como los nombres de usuarios de otras personas. No contienen mensajes.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Los registros de depuración contienen datos sobre cómo usas la aplicación, incluyendo tu nombre de usuario, identificadores o alias de las salas que hayas visitado, una lista de los últimos elementos de la interfaz con los que has interactuado, así como los nombres de usuarios de otras personas. No contienen mensajes.",
|
||||||
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Se le han denegado a %(brand)s los permisos para acceder a tu ubicación. Por favor, permite acceso a tu ubicación en los ajustes de tu navegador.",
|
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Se le han denegado a %(brand)s los permisos para acceder a tu ubicación. Por favor, permite acceso a tu ubicación en los ajustes de tu navegador.",
|
||||||
|
@ -3685,7 +3659,6 @@
|
||||||
"Search all rooms": "Buscar en todas las salas",
|
"Search all rooms": "Buscar en todas las salas",
|
||||||
"Search this room": "Buscar en esta sala",
|
"Search this room": "Buscar en esta sala",
|
||||||
"Rejecting invite…": "Rechazar invitación…",
|
"Rejecting invite…": "Rechazar invitación…",
|
||||||
"Loading…": "Cargando…",
|
|
||||||
"Joining room…": "Uniéndose a la sala…",
|
"Joining room…": "Uniéndose a la sala…",
|
||||||
"Joining space…": "Uniéndose al espacio…",
|
"Joining space…": "Uniéndose al espacio…",
|
||||||
"Formatting": "Formato",
|
"Formatting": "Formato",
|
||||||
|
@ -3775,6 +3748,35 @@
|
||||||
"Requires your server to support MSC3030": "Requiere que tu servidor sea compatible con MSC3030",
|
"Requires your server to support MSC3030": "Requiere que tu servidor sea compatible con MSC3030",
|
||||||
"Enable MSC3946 (to support late-arriving room archives)": "",
|
"Enable MSC3946 (to support late-arriving room archives)": "",
|
||||||
"Try using %(server)s": "Probar a usar %(server)s",
|
"Try using %(server)s": "Probar a usar %(server)s",
|
||||||
|
"common": {
|
||||||
|
"about": "Acerca de",
|
||||||
|
"analytics": "Analítica de datos",
|
||||||
|
"encryption_enabled": "El cifrado está activado",
|
||||||
|
"error": "Error",
|
||||||
|
"forward_message": "Reenviar mensaje",
|
||||||
|
"image": "Imagen",
|
||||||
|
"loading": "Cargando…",
|
||||||
|
"message": "Mensaje",
|
||||||
|
"message_layout": "Diseño del mensaje",
|
||||||
|
"modern": "Moderno",
|
||||||
|
"mute": "Silenciar",
|
||||||
|
"no_results": "No hay resultados",
|
||||||
|
"offline": "Desconectado",
|
||||||
|
"password": "Contraseña",
|
||||||
|
"people": "Gente",
|
||||||
|
"reactions": "Reacciones",
|
||||||
|
"report_a_bug": "Avísanos de un fallo",
|
||||||
|
"room_name": "Nombre de la sala",
|
||||||
|
"security": "Seguridad",
|
||||||
|
"settings": "Ajustes",
|
||||||
|
"sticker": "Pegatina",
|
||||||
|
"success": "Éxito",
|
||||||
|
"suggestions": "Sugerencias",
|
||||||
|
"unmute": "Dejar de silenciar",
|
||||||
|
"username": "Nombre de usuario",
|
||||||
|
"verification_cancelled": "Verificación cancelada",
|
||||||
|
"video": "Vídeo"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menú del Usuario"
|
"user_menu": "Menú del Usuario"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
"Confirm": "Kinnita",
|
"Confirm": "Kinnita",
|
||||||
"Add Email Address": "Lisa e-posti aadress",
|
"Add Email Address": "Lisa e-posti aadress",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "E-posti aadressi kontrollimine ei õnnestunud: palun vaata, et sa kindlasti klõpsisid saabunud kirjas olnud viidet",
|
"Failed to verify email address: make sure you clicked the link in the email": "E-posti aadressi kontrollimine ei õnnestunud: palun vaata, et sa kindlasti klõpsisid saabunud kirjas olnud viidet",
|
||||||
"Analytics": "Analüütika",
|
|
||||||
"Error": "Viga",
|
|
||||||
"Unable to load! Check your network connectivity and try again.": "Laadimine ei õnnestunud! Kontrolli oma võrguühendust ja proovi uuesti.",
|
"Unable to load! Check your network connectivity and try again.": "Laadimine ei õnnestunud! Kontrolli oma võrguühendust ja proovi uuesti.",
|
||||||
"Dismiss": "Loobu",
|
"Dismiss": "Loobu",
|
||||||
"Call Failed": "Kõne ebaõnnestus",
|
"Call Failed": "Kõne ebaõnnestus",
|
||||||
|
@ -56,7 +54,6 @@
|
||||||
"Verification timed out.": "Verifitseerimine aegus.",
|
"Verification timed out.": "Verifitseerimine aegus.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s tühistas verifitseerimise.",
|
"%(displayName)s cancelled verification.": "%(displayName)s tühistas verifitseerimise.",
|
||||||
"You cancelled verification.": "Sina tühistasid verifitseerimise.",
|
"You cancelled verification.": "Sina tühistasid verifitseerimise.",
|
||||||
"Verification cancelled": "Verifitseerimine tühistatud",
|
|
||||||
"Sunday": "Pühapäev",
|
"Sunday": "Pühapäev",
|
||||||
"Monday": "Esmaspäev",
|
"Monday": "Esmaspäev",
|
||||||
"Tuesday": "Teisipäev",
|
"Tuesday": "Teisipäev",
|
||||||
|
@ -67,10 +64,8 @@
|
||||||
"Today": "Täna",
|
"Today": "Täna",
|
||||||
"Yesterday": "Eile",
|
"Yesterday": "Eile",
|
||||||
"View Source": "Vaata lähtekoodi",
|
"View Source": "Vaata lähtekoodi",
|
||||||
"Encryption enabled": "Krüptimine on kasutusel",
|
|
||||||
"Create new room": "Loo uus jututuba",
|
"Create new room": "Loo uus jututuba",
|
||||||
"Join": "Liitu",
|
"Join": "Liitu",
|
||||||
"No results": "Tulemusi pole",
|
|
||||||
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "Selle vea uurimiseks palun <newIssueLink>loo uus veateade</newIssueLink> meie GitHub'is.",
|
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "Selle vea uurimiseks palun <newIssueLink>loo uus veateade</newIssueLink> meie GitHub'is.",
|
||||||
"collapse": "ahenda",
|
"collapse": "ahenda",
|
||||||
"expand": "laienda",
|
"expand": "laienda",
|
||||||
|
@ -179,8 +174,6 @@
|
||||||
"powered by Matrix": "põhineb Matrix'il",
|
"powered by Matrix": "põhineb Matrix'il",
|
||||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Robotilõksu avalik võti on puudu koduserveri seadistustes. Palun teata sellest oma koduserveri haldurile.",
|
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Robotilõksu avalik võti on puudu koduserveri seadistustes. Palun teata sellest oma koduserveri haldurile.",
|
||||||
"Copy": "Kopeeri",
|
"Copy": "Kopeeri",
|
||||||
"Mute": "Summuta",
|
|
||||||
"Settings": "Seadistused",
|
|
||||||
"Never send encrypted messages to unverified sessions from this session": "Ära iialgi saada sellest sessioonist krüptitud sõnumeid verifitseerimata sessioonidesse",
|
"Never send encrypted messages to unverified sessions from this session": "Ära iialgi saada sellest sessioonist krüptitud sõnumeid verifitseerimata sessioonidesse",
|
||||||
"Never send encrypted messages to unverified sessions in this room from this session": "Ära iialgi saada sellest sessioonist krüptitud sõnumeid verifitseerimata sessioonidesse selles jututoas",
|
"Never send encrypted messages to unverified sessions in this room from this session": "Ära iialgi saada sellest sessioonist krüptitud sõnumeid verifitseerimata sessioonidesse selles jututoas",
|
||||||
"Sign In or Create Account": "Logi sisse või loo uus konto",
|
"Sign In or Create Account": "Logi sisse või loo uus konto",
|
||||||
|
@ -218,7 +211,6 @@
|
||||||
"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",
|
"Show all": "Näita kõiki",
|
||||||
"Reactions": "Reageerimised",
|
|
||||||
"<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.",
|
||||||
|
@ -251,7 +243,6 @@
|
||||||
"Offline for %(duration)s": "Võrgust väljas %(duration)s",
|
"Offline for %(duration)s": "Võrgust väljas %(duration)s",
|
||||||
"Unknown for %(duration)s": "Teadmata olek viimased %(duration)s",
|
"Unknown for %(duration)s": "Teadmata olek viimased %(duration)s",
|
||||||
"Idle": "Jõude",
|
"Idle": "Jõude",
|
||||||
"Offline": "Võrgust väljas",
|
|
||||||
"Unknown": "Teadmata olek",
|
"Unknown": "Teadmata olek",
|
||||||
"Replying": "Vastan",
|
"Replying": "Vastan",
|
||||||
"Room %(name)s": "Jututuba %(name)s",
|
"Room %(name)s": "Jututuba %(name)s",
|
||||||
|
@ -323,7 +314,6 @@
|
||||||
"Are you sure?": "Kas sa oled kindel?",
|
"Are you sure?": "Kas sa oled kindel?",
|
||||||
"Jump to read receipt": "Hüppa lugemisteatise juurde",
|
"Jump to read receipt": "Hüppa lugemisteatise juurde",
|
||||||
"Invite": "Kutsu",
|
"Invite": "Kutsu",
|
||||||
"Unmute": "Eemalda summutamine",
|
|
||||||
"Create a public room": "Loo avalik jututuba",
|
"Create a public room": "Loo avalik jututuba",
|
||||||
"Create a private room": "Loo omavaheline jututuba",
|
"Create a private room": "Loo omavaheline jututuba",
|
||||||
"Name": "Nimi",
|
"Name": "Nimi",
|
||||||
|
@ -332,7 +322,6 @@
|
||||||
"Show advanced": "Näita lisaseadistusi",
|
"Show advanced": "Näita lisaseadistusi",
|
||||||
"Server did not require any authentication": "Server ei nõudnud mitte mingisugust autentimist",
|
"Server did not require any authentication": "Server ei nõudnud mitte mingisugust autentimist",
|
||||||
"Recent Conversations": "Hiljutised vestlused",
|
"Recent Conversations": "Hiljutised vestlused",
|
||||||
"Suggestions": "Soovitused",
|
|
||||||
"Go": "Mine",
|
"Go": "Mine",
|
||||||
"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.": "Sinu sõnumit ei saadetud, kuna see koduserver on saavutanud igakuise aktiivsete kasutajate piiri. Teenuse kasutamiseks palun <a>võta ühendust serveri haldajaga</a>.",
|
"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.": "Sinu sõnumit ei saadetud, kuna see koduserver on saavutanud igakuise aktiivsete kasutajate piiri. Teenuse kasutamiseks palun <a>võta ühendust serveri haldajaga</a>.",
|
||||||
"Add room": "Lisa jututuba",
|
"Add room": "Lisa jututuba",
|
||||||
|
@ -485,7 +474,6 @@
|
||||||
"New passwords don't match": "Uued salasõnad ei klapi",
|
"New passwords don't match": "Uued salasõnad ei klapi",
|
||||||
"Passwords can't be empty": "Salasõna ei saa olla tühi",
|
"Passwords can't be empty": "Salasõna ei saa olla tühi",
|
||||||
"Current password": "Praegune salasõna",
|
"Current password": "Praegune salasõna",
|
||||||
"Password": "Salasõna",
|
|
||||||
"New Password": "Uus salasõna",
|
"New Password": "Uus salasõna",
|
||||||
"Confirm password": "Korda uut salasõna",
|
"Confirm password": "Korda uut salasõna",
|
||||||
"Change Password": "Muuda salasõna",
|
"Change Password": "Muuda salasõna",
|
||||||
|
@ -859,7 +847,6 @@
|
||||||
"Nice, strong password!": "Vahva, see on korralik salasõna!",
|
"Nice, strong password!": "Vahva, see on korralik salasõna!",
|
||||||
"Password is allowed, but unsafe": "Selline salasõna on küll lubatud, kuid üsna ebaturvaline",
|
"Password is allowed, but unsafe": "Selline salasõna on küll lubatud, kuid üsna ebaturvaline",
|
||||||
"Email": "E-posti aadress",
|
"Email": "E-posti aadress",
|
||||||
"Username": "Kasutajanimi",
|
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
"Sign in with": "Logi sisse oma kasutajaga",
|
"Sign in with": "Logi sisse oma kasutajaga",
|
||||||
"Use an email address to recover your account": "Kasuta e-posti aadressi ligipääsu taastamiseks oma kontole",
|
"Use an email address to recover your account": "Kasuta e-posti aadressi ligipääsu taastamiseks oma kontole",
|
||||||
|
@ -1177,7 +1164,6 @@
|
||||||
"Deactivate user": "Deaktiveeri kasutaja",
|
"Deactivate user": "Deaktiveeri kasutaja",
|
||||||
"Failed to deactivate user": "Kasutaja deaktiveerimine ei õnnestunud",
|
"Failed to deactivate user": "Kasutaja deaktiveerimine ei õnnestunud",
|
||||||
"This client does not support end-to-end encryption.": "See klient ei toeta läbivat krüptimist.",
|
"This client does not support end-to-end encryption.": "See klient ei toeta läbivat krüptimist.",
|
||||||
"Security": "Turvalisus",
|
|
||||||
"Using this widget may share data <helpIcon /> with %(widgetDomain)s.": "Selle vidina kasutamisel võidakse jagada andmeid <helpIcon /> saitidega %(widgetDomain)s.",
|
"Using this widget may share data <helpIcon /> with %(widgetDomain)s.": "Selle vidina kasutamisel võidakse jagada andmeid <helpIcon /> saitidega %(widgetDomain)s.",
|
||||||
"Widgets do not use message encryption.": "Erinevalt sõnumitest vidinad ei kasuta krüptimist.",
|
"Widgets do not use message encryption.": "Erinevalt sõnumitest vidinad ei kasuta krüptimist.",
|
||||||
"Widget added by": "Vidina lisaja",
|
"Widget added by": "Vidina lisaja",
|
||||||
|
@ -1278,8 +1264,6 @@
|
||||||
"Size must be a number": "Suurus peab olema number",
|
"Size must be a number": "Suurus peab olema number",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Kohandatud fondisuurus peab olema vahemikus %(min)s pt ja %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Kohandatud fondisuurus peab olema vahemikus %(min)s pt ja %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Kasuta suurust vahemikus %(min)s pt ja %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Kasuta suurust vahemikus %(min)s pt ja %(max)s pt",
|
||||||
"Message layout": "Sõnumite paigutus",
|
|
||||||
"Modern": "Moodne",
|
|
||||||
"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.",
|
||||||
|
@ -1335,7 +1319,6 @@
|
||||||
"Invited": "Kutsutud",
|
"Invited": "Kutsutud",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (õigused %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (õigused %(powerLevelNumber)s)",
|
||||||
"No recently visited rooms": "Hiljuti külastatud jututubasid ei leidu",
|
"No recently visited rooms": "Hiljuti külastatud jututubasid ei leidu",
|
||||||
"People": "Osalejad",
|
|
||||||
"Error creating address": "Viga aadressi loomisel",
|
"Error creating address": "Viga aadressi loomisel",
|
||||||
"There was an error creating that address. It may not be allowed by the server or a temporary failure occurred.": "Aadressi loomisel tekkis viga. See kas on serveri poolt keelatud või tekkis ajutine tõrge.",
|
"There was an error creating that address. It may not be allowed by the server or a temporary failure occurred.": "Aadressi loomisel tekkis viga. See kas on serveri poolt keelatud või tekkis ajutine tõrge.",
|
||||||
"You don't have permission to delete the address.": "Sinul pole õigusi selle aadressi kustutamiseks.",
|
"You don't have permission to delete the address.": "Sinul pole õigusi selle aadressi kustutamiseks.",
|
||||||
|
@ -1544,7 +1527,6 @@
|
||||||
"Unable to load key backup status": "Võtmete varunduse oleku laadimine ei õnnestunud",
|
"Unable to load key backup status": "Võtmete varunduse oleku laadimine ei õnnestunud",
|
||||||
"Restore from Backup": "Taasta varukoopiast",
|
"Restore from Backup": "Taasta varukoopiast",
|
||||||
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "See sessioon <b>ei varunda sinu krüptovõtmeid</b>, aga sul on olemas varundus, millest saad taastada ning millele saad võtmeid lisada.",
|
"This session is <b>not backing up your keys</b>, but you do have an existing backup you can restore from and add to going forward.": "See sessioon <b>ei varunda sinu krüptovõtmeid</b>, aga sul on olemas varundus, millest saad taastada ning millele saad võtmeid lisada.",
|
||||||
"Success": "Õnnestus",
|
|
||||||
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Selleks, et sind võiks leida e-posti aadressi või telefoninumbri alusel, nõustu isikutuvastusserveri (%(serverName)s) kasutustingimustega.",
|
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Selleks, et sind võiks leida e-posti aadressi või telefoninumbri alusel, nõustu isikutuvastusserveri (%(serverName)s) kasutustingimustega.",
|
||||||
"Account management": "Kontohaldus",
|
"Account management": "Kontohaldus",
|
||||||
"Deactivate Account": "Deaktiveeri konto",
|
"Deactivate Account": "Deaktiveeri konto",
|
||||||
|
@ -1681,7 +1663,6 @@
|
||||||
"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",
|
||||||
"About": "Rakenduse teave",
|
|
||||||
"Room settings": "Jututoa seadistused",
|
"Room settings": "Jututoa seadistused",
|
||||||
"Take a picture": "Tee foto",
|
"Take a picture": "Tee foto",
|
||||||
"Unpin": "Eemalda klammerdus",
|
"Unpin": "Eemalda klammerdus",
|
||||||
|
@ -1737,7 +1718,6 @@
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "SOOVITUS: Kui sa koostad uut veateadet, siis meil on lihtsam vea põhjuseni leida, kui sa lisad juurde ka <debugLogsLink>silumislogid</debugLogsLink>.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "SOOVITUS: Kui sa koostad uut veateadet, siis meil on lihtsam vea põhjuseni leida, kui sa lisad juurde ka <debugLogsLink>silumislogid</debugLogsLink>.",
|
||||||
"Send feedback": "Saada tagasiside",
|
"Send feedback": "Saada tagasiside",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Palun esmalt vaata, kas <existingIssuesLink>Githubis on selline viga juba kirjeldatud</existingIssuesLink>. Sa ei leidnud midagi? <newIssueLink>Siis saada uus veateade</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Palun esmalt vaata, kas <existingIssuesLink>Githubis on selline viga juba kirjeldatud</existingIssuesLink>. Sa ei leidnud midagi? <newIssueLink>Siis saada uus veateade</newIssueLink>.",
|
||||||
"Report a bug": "Teata veast",
|
|
||||||
"Comment": "Kommentaar",
|
"Comment": "Kommentaar",
|
||||||
"Feedback sent": "Tagasiside on saadetud",
|
"Feedback sent": "Tagasiside on saadetud",
|
||||||
"%(senderName)s ended the call": "%(senderName)s lõpetas kõne",
|
"%(senderName)s ended the call": "%(senderName)s lõpetas kõne",
|
||||||
|
@ -2269,7 +2249,6 @@
|
||||||
"Welcome to <name/>": "Tete tulemast <name/> liikmeks",
|
"Welcome to <name/>": "Tete tulemast <name/> liikmeks",
|
||||||
"Random": "Juhuslik",
|
"Random": "Juhuslik",
|
||||||
"Support": "Toeta",
|
"Support": "Toeta",
|
||||||
"Room name": "Jututoa nimi",
|
|
||||||
"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?",
|
||||||
|
@ -2390,7 +2369,6 @@
|
||||||
"End-to-end encryption isn't enabled": "Läbiv krüptimine pole kasutusel",
|
"End-to-end encryption isn't enabled": "Läbiv krüptimine pole kasutusel",
|
||||||
"Some suggestions may be hidden for privacy.": "Mõned soovitused võivad privaatsusseadistuste tõttu olla peidetud.",
|
"Some suggestions may be hidden for privacy.": "Mõned soovitused võivad privaatsusseadistuste tõttu olla peidetud.",
|
||||||
"Search for rooms or people": "Otsi jututubasid või inimesi",
|
"Search for rooms or people": "Otsi jututubasid või inimesi",
|
||||||
"Forward message": "Edasta sõnum",
|
|
||||||
"Sent": "Saadetud",
|
"Sent": "Saadetud",
|
||||||
"You don't have permission to do this": "Sul puuduvad selleks toiminguks õigused",
|
"You don't have permission to do this": "Sul puuduvad selleks toiminguks õigused",
|
||||||
"Error - Mixed content": "Viga - erinev sisu",
|
"Error - Mixed content": "Viga - erinev sisu",
|
||||||
|
@ -2589,8 +2567,6 @@
|
||||||
"one": "ja veel %(count)s"
|
"one": "ja veel %(count)s"
|
||||||
},
|
},
|
||||||
"Add existing space": "Lisa olemasolev kogukonnakeskus",
|
"Add existing space": "Lisa olemasolev kogukonnakeskus",
|
||||||
"Image": "Pilt",
|
|
||||||
"Sticker": "Kleeps",
|
|
||||||
"An unknown error occurred": "Tekkis teadmata viga",
|
"An unknown error occurred": "Tekkis teadmata viga",
|
||||||
"Their device couldn't start the camera or microphone": "Teise osapoole seadmes ei õnnestunud sisse lülitada kaamerat või mikrofoni",
|
"Their device couldn't start the camera or microphone": "Teise osapoole seadmes ei õnnestunud sisse lülitada kaamerat või mikrofoni",
|
||||||
"Connection failed": "Ühendus ebaõnnestus",
|
"Connection failed": "Ühendus ebaõnnestus",
|
||||||
|
@ -2637,7 +2613,6 @@
|
||||||
"Displaying time": "Aegade kuvamine",
|
"Displaying time": "Aegade kuvamine",
|
||||||
"Message didn't send. Click for info.": "Sõnum jäi saatmata. Lisateabe saamiseks klõpsi.",
|
"Message didn't send. Click for info.": "Sõnum jäi saatmata. Lisateabe saamiseks klõpsi.",
|
||||||
"[number]": "[number]",
|
"[number]": "[number]",
|
||||||
"Message": "Sõnum",
|
|
||||||
"To join a space you'll need an invite.": "Kogukonnakeskusega liitumiseks vajad kutset.",
|
"To join a space you'll need an invite.": "Kogukonnakeskusega liitumiseks vajad kutset.",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s kasutajat reageeris järgnevalt: %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s kasutajat reageeris järgnevalt: %(content)s",
|
||||||
"Would you like to leave the rooms in this space?": "Kas sa soovid lahkuda ka selle kogukonna jututubadest?",
|
"Would you like to leave the rooms in this space?": "Kas sa soovid lahkuda ka selle kogukonna jututubadest?",
|
||||||
|
@ -3128,7 +3103,6 @@
|
||||||
"%(value)sd": "%(value)s p",
|
"%(value)sd": "%(value)s p",
|
||||||
"%(timeRemaining)s left": "jäänud %(timeRemaining)s",
|
"%(timeRemaining)s left": "jäänud %(timeRemaining)s",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Vigadega seotud logid sisaldavad rakenduse teavet, sealhulgas sinu kasutajanime, külastatud jututubade tunnuseid või nimesid, viimatikasutatud liidese funktsionaalsusi ning teiste kasutajate kasutajanimesid. Logides ei ole saadetud sõnumite sisu.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Vigadega seotud logid sisaldavad rakenduse teavet, sealhulgas sinu kasutajanime, külastatud jututubade tunnuseid või nimesid, viimatikasutatud liidese funktsionaalsusi ning teiste kasutajate kasutajanimesid. Logides ei ole saadetud sõnumite sisu.",
|
||||||
"Video": "Video",
|
|
||||||
"Next recently visited room or space": "Järgmine viimati külastatud jututuba või kogukond",
|
"Next recently visited room or space": "Järgmine viimati külastatud jututuba või kogukond",
|
||||||
"Previous recently visited room or space": "Eelmine viimati külastatud jututuba või kogukond",
|
"Previous recently visited room or space": "Eelmine viimati külastatud jututuba või kogukond",
|
||||||
"Event ID: %(eventId)s": "Sündmuse tunnus: %(eventId)s",
|
"Event ID: %(eventId)s": "Sündmuse tunnus: %(eventId)s",
|
||||||
|
@ -3758,7 +3732,6 @@
|
||||||
"Adding…": "Lisan…",
|
"Adding…": "Lisan…",
|
||||||
"Write something…": "Kirjuta midagi…",
|
"Write something…": "Kirjuta midagi…",
|
||||||
"Rejecting invite…": "Hülgan kutset…",
|
"Rejecting invite…": "Hülgan kutset…",
|
||||||
"Loading…": "Laadime…",
|
|
||||||
"Joining room…": "Liitun jututoaga…",
|
"Joining room…": "Liitun jututoaga…",
|
||||||
"Joining space…": "Liitun kogukonnaga…",
|
"Joining space…": "Liitun kogukonnaga…",
|
||||||
"Encrypting your message…": "Krüptin sinu sõnumit…",
|
"Encrypting your message…": "Krüptin sinu sõnumit…",
|
||||||
|
@ -3969,6 +3942,35 @@
|
||||||
"This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "See server kasutab Matrixi vanemat versiooni. Selleks, et %(brand)s'i kasutamisel vigu ei tekiks palun uuenda serverit nii, et kasutusel oleks Matrixi %(version)s.",
|
"This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "See server kasutab Matrixi vanemat versiooni. Selleks, et %(brand)s'i kasutamisel vigu ei tekiks palun uuenda serverit nii, et kasutusel oleks Matrixi %(version)s.",
|
||||||
"Your server is unsupported": "Sinu server ei ole toetatud",
|
"Your server is unsupported": "Sinu server ei ole toetatud",
|
||||||
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Sinu koduserver on liiga vana ega toeta vähimat nõutavat API versiooni. Lisateavet saad oma serveri haldajalt või kui ise oled haldaja, siis palun uuenda serverit.",
|
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Sinu koduserver on liiga vana ega toeta vähimat nõutavat API versiooni. Lisateavet saad oma serveri haldajalt või kui ise oled haldaja, siis palun uuenda serverit.",
|
||||||
|
"common": {
|
||||||
|
"about": "Rakenduse teave",
|
||||||
|
"analytics": "Analüütika",
|
||||||
|
"encryption_enabled": "Krüptimine on kasutusel",
|
||||||
|
"error": "Viga",
|
||||||
|
"forward_message": "Edasta sõnum",
|
||||||
|
"image": "Pilt",
|
||||||
|
"loading": "Laadime…",
|
||||||
|
"message": "Sõnum",
|
||||||
|
"message_layout": "Sõnumite paigutus",
|
||||||
|
"modern": "Moodne",
|
||||||
|
"mute": "Summuta",
|
||||||
|
"no_results": "Tulemusi pole",
|
||||||
|
"offline": "Võrgust väljas",
|
||||||
|
"password": "Salasõna",
|
||||||
|
"people": "Osalejad",
|
||||||
|
"reactions": "Reageerimised",
|
||||||
|
"report_a_bug": "Teata veast",
|
||||||
|
"room_name": "Jututoa nimi",
|
||||||
|
"security": "Turvalisus",
|
||||||
|
"settings": "Seadistused",
|
||||||
|
"sticker": "Kleeps",
|
||||||
|
"success": "Õnnestus",
|
||||||
|
"suggestions": "Soovitused",
|
||||||
|
"unmute": "Eemalda summutamine",
|
||||||
|
"username": "Kasutajanimi",
|
||||||
|
"verification_cancelled": "Verifitseerimine tühistatud",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Kasutajamenüü"
|
"user_menu": "Kasutajamenüü"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,17 +3,14 @@
|
||||||
"Close": "Itxi",
|
"Close": "Itxi",
|
||||||
"Create new room": "Sortu gela berria",
|
"Create new room": "Sortu gela berria",
|
||||||
"Continue": "Jarraitu",
|
"Continue": "Jarraitu",
|
||||||
"Error": "Errorea",
|
|
||||||
"Failed to change password. Is your password correct?": "Pasahitza aldatzean huts egin du. Zuzena da pasahitza?",
|
"Failed to change password. Is your password correct?": "Pasahitza aldatzean huts egin du. Zuzena da pasahitza?",
|
||||||
"Failed to forget room %(errCode)s": "Huts egin du %(errCode)s gela ahaztean",
|
"Failed to forget room %(errCode)s": "Huts egin du %(errCode)s gela ahaztean",
|
||||||
"Favourite": "Gogokoa",
|
"Favourite": "Gogokoa",
|
||||||
"Mute": "Mututu",
|
|
||||||
"Notifications": "Jakinarazpenak",
|
"Notifications": "Jakinarazpenak",
|
||||||
"OK": "Ados",
|
"OK": "Ados",
|
||||||
"Operation failed": "Eragiketak huts egin du",
|
"Operation failed": "Eragiketak huts egin du",
|
||||||
"Remove": "Kendu",
|
"Remove": "Kendu",
|
||||||
"Search": "Bilatu",
|
"Search": "Bilatu",
|
||||||
"Settings": "Ezarpenak",
|
|
||||||
"unknown error code": "errore kode ezezaguna",
|
"unknown error code": "errore kode ezezaguna",
|
||||||
"Start chat": "Hasi txata",
|
"Start chat": "Hasi txata",
|
||||||
"Dismiss": "Baztertu",
|
"Dismiss": "Baztertu",
|
||||||
|
@ -27,13 +24,11 @@
|
||||||
"Rooms": "Gelak",
|
"Rooms": "Gelak",
|
||||||
"Invites": "Gonbidapenak",
|
"Invites": "Gonbidapenak",
|
||||||
"Low priority": "Lehentasun baxua",
|
"Low priority": "Lehentasun baxua",
|
||||||
"No results": "Emaitzarik ez",
|
|
||||||
"Join Room": "Elkartu gelara",
|
"Join Room": "Elkartu gelara",
|
||||||
"Register": "Eman izena",
|
"Register": "Eman izena",
|
||||||
"Submit": "Bidali",
|
"Submit": "Bidali",
|
||||||
"Skip": "Saltatu",
|
"Skip": "Saltatu",
|
||||||
"Return to login screen": "Itzuli saio hasierarako pantailara",
|
"Return to login screen": "Itzuli saio hasierarako pantailara",
|
||||||
"Password": "Pasahitza",
|
|
||||||
"Email address": "E-mail helbidea",
|
"Email address": "E-mail helbidea",
|
||||||
"The email address linked to your account must be entered.": "Zure kontura gehitutako e-mail helbidea sartu behar da.",
|
"The email address linked to your account must be entered.": "Zure kontura gehitutako e-mail helbidea sartu behar da.",
|
||||||
"A new password must be entered.": "Pasahitz berri bat sartu behar da.",
|
"A new password must be entered.": "Pasahitz berri bat sartu behar da.",
|
||||||
|
@ -42,7 +37,6 @@
|
||||||
"Warning!": "Abisua!",
|
"Warning!": "Abisua!",
|
||||||
"Leave room": "Atera gelatik",
|
"Leave room": "Atera gelatik",
|
||||||
"Online": "Konektatuta",
|
"Online": "Konektatuta",
|
||||||
"Offline": "Deskonektatuta",
|
|
||||||
"Idle": "Inaktibo",
|
"Idle": "Inaktibo",
|
||||||
"Unban": "Debekua kendu",
|
"Unban": "Debekua kendu",
|
||||||
"Connectivity to the server has been lost.": "Zerbitzariarekin konexioa galdu da.",
|
"Connectivity to the server has been lost.": "Zerbitzariarekin konexioa galdu da.",
|
||||||
|
@ -76,7 +70,6 @@
|
||||||
"Import": "Inportatu",
|
"Import": "Inportatu",
|
||||||
"Someone": "Norbait",
|
"Someone": "Norbait",
|
||||||
"Start authentication": "Hasi autentifikazioa",
|
"Start authentication": "Hasi autentifikazioa",
|
||||||
"Success": "Arrakasta",
|
|
||||||
"For security, this session has been signed out. Please sign in again.": "Segurtasunagatik saio hau amaitu da. Hasi saioa berriro.",
|
"For security, this session has been signed out. Please sign in again.": "Segurtasunagatik saio hau amaitu da. Hasi saioa berriro.",
|
||||||
"Hangup": "Eseki",
|
"Hangup": "Eseki",
|
||||||
"Moderator": "Moderatzailea",
|
"Moderator": "Moderatzailea",
|
||||||
|
@ -186,7 +179,6 @@
|
||||||
"Unable to remove contact information": "Ezin izan da kontaktuaren informazioa kendu",
|
"Unable to remove contact information": "Ezin izan da kontaktuaren informazioa kendu",
|
||||||
"Unable to verify email address.": "Ezin izan da e-mail helbidea egiaztatu.",
|
"Unable to verify email address.": "Ezin izan da e-mail helbidea egiaztatu.",
|
||||||
"Unable to enable Notifications": "Ezin izan dira jakinarazpenak gaitu",
|
"Unable to enable Notifications": "Ezin izan dira jakinarazpenak gaitu",
|
||||||
"Unmute": "Audioa aktibatu",
|
|
||||||
"Unnamed Room": "Izen gabeko gela",
|
"Unnamed Room": "Izen gabeko gela",
|
||||||
"Uploading %(filename)s": "%(filename)s igotzen",
|
"Uploading %(filename)s": "%(filename)s igotzen",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
|
@ -240,7 +232,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "Pasahitz berria",
|
"New Password": "Pasahitz berria",
|
||||||
"Start automatically after system login": "Hasi automatikoki sisteman saioa hasi eta gero",
|
"Start automatically after system login": "Hasi automatikoki sisteman saioa hasi eta gero",
|
||||||
"Analytics": "Estatistikak",
|
|
||||||
"Options": "Aukerak",
|
"Options": "Aukerak",
|
||||||
"Passphrases must match": "Pasaesaldiak bat etorri behar dira",
|
"Passphrases must match": "Pasaesaldiak bat etorri behar dira",
|
||||||
"Passphrase must not be empty": "Pasaesaldia ezin da hutsik egon",
|
"Passphrase must not be empty": "Pasaesaldia ezin da hutsik egon",
|
||||||
|
@ -710,7 +701,6 @@
|
||||||
"Room Topic": "Gelaren mintzagaia",
|
"Room Topic": "Gelaren mintzagaia",
|
||||||
"Go back": "Joan atzera",
|
"Go back": "Joan atzera",
|
||||||
"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.",
|
||||||
"Username": "Erabiltzaile-izena",
|
|
||||||
"Change": "Aldatu",
|
"Change": "Aldatu",
|
||||||
"Email (optional)": "E-mail (aukerakoa)",
|
"Email (optional)": "E-mail (aukerakoa)",
|
||||||
"Phone (optional)": "Telefonoa (aukerakoa)",
|
"Phone (optional)": "Telefonoa (aukerakoa)",
|
||||||
|
@ -1177,7 +1167,6 @@
|
||||||
"Trusted": "Konfiantzazkoa",
|
"Trusted": "Konfiantzazkoa",
|
||||||
"Not trusted": "Ez konfiantzazkoa",
|
"Not trusted": "Ez konfiantzazkoa",
|
||||||
"Messages in this room are end-to-end encrypted.": "Gela honetako mezuak muturretik muturrera zifratuta daude.",
|
"Messages in this room are end-to-end encrypted.": "Gela honetako mezuak muturretik muturrera zifratuta daude.",
|
||||||
"Security": "Segurtasuna",
|
|
||||||
"Verify": "Egiaztatu",
|
"Verify": "Egiaztatu",
|
||||||
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Erabiltzaile hau ezikusi duzu, beraz bere mezua ezkutatuta dago. <a>Erakutsi hala ere.</a>",
|
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>": "Erabiltzaile hau ezikusi duzu, beraz bere mezua ezkutatuta dago. <a>Erakutsi hala ere.</a>",
|
||||||
"Any of the following data may be shared:": "Datu hauetako edozein partekatu daiteke:",
|
"Any of the following data may be shared:": "Datu hauetako edozein partekatu daiteke:",
|
||||||
|
@ -1232,7 +1221,6 @@
|
||||||
"other": "%(count)s egiaztatutako saio",
|
"other": "%(count)s egiaztatutako saio",
|
||||||
"one": "Egiaztatutako saio 1"
|
"one": "Egiaztatutako saio 1"
|
||||||
},
|
},
|
||||||
"Reactions": "Erreakzioak",
|
|
||||||
"Upgrade private room": "Eguneratu gela pribatua",
|
"Upgrade private room": "Eguneratu gela pribatua",
|
||||||
"Upgrade public room": "Eguneratu gela publikoa",
|
"Upgrade public room": "Eguneratu gela publikoa",
|
||||||
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Gela eguneratzea ekintza aurreratu bat da eta akatsen, falta diren ezaugarrien, edo segurtasun arazoen erruz gela ezegonkorra denean aholkatzen da.",
|
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Gela eguneratzea ekintza aurreratu bat da eta akatsen, falta diren ezaugarrien, edo segurtasun arazoen erruz gela ezegonkorra denean aholkatzen da.",
|
||||||
|
@ -1247,7 +1235,6 @@
|
||||||
"Recent Conversations": "Azken elkarrizketak",
|
"Recent Conversations": "Azken elkarrizketak",
|
||||||
"Direct Messages": "Mezu zuzenak",
|
"Direct Messages": "Mezu zuzenak",
|
||||||
"Go": "Joan",
|
"Go": "Joan",
|
||||||
"Suggestions": "Proposamenak",
|
|
||||||
"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",
|
||||||
|
@ -1342,7 +1329,6 @@
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Ezin baduzu goiko kodea eskaneatu, egiaztatu emoji bakanak konparatuz.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Ezin baduzu goiko kodea eskaneatu, egiaztatu emoji bakanak konparatuz.",
|
||||||
"You've successfully verified %(displayName)s!": "Ongi egiaztatu duzu %(displayName)s!",
|
"You've successfully verified %(displayName)s!": "Ongi egiaztatu duzu %(displayName)s!",
|
||||||
"Got it": "Ulertuta",
|
"Got it": "Ulertuta",
|
||||||
"Encryption enabled": "Zifratzea gaituta",
|
|
||||||
"Encryption not enabled": "Zifratzea gaitu gabe",
|
"Encryption not enabled": "Zifratzea gaitu gabe",
|
||||||
"The encryption used by this room isn't supported.": "Gela honetan erabilitako zifratzea ez da onartzen.",
|
"The encryption used by this room isn't supported.": "Gela honetan erabilitako zifratzea ez da onartzen.",
|
||||||
"Clear all data in this session?": "Garbitu saio honetako datu guztiak?",
|
"Clear all data in this session?": "Garbitu saio honetako datu guztiak?",
|
||||||
|
@ -1485,7 +1471,6 @@
|
||||||
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Egiaztatu erabiltzaile baten saio bakoitza hau fidagarri gisa markatzeko, ez dira zeharka sinatutako gailuak fidagarritzat jotzen.",
|
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Egiaztatu erabiltzaile baten saio bakoitza hau fidagarri gisa markatzeko, ez dira zeharka sinatutako gailuak fidagarritzat jotzen.",
|
||||||
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Gela zifratuetan, zuon mezuak babestuta daude, zuk zeuk eta hartzaileak bakarrik duzue hauek deszifratzeko gako bakanak.",
|
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Gela zifratuetan, zuon mezuak babestuta daude, zuk zeuk eta hartzaileak bakarrik duzue hauek deszifratzeko gako bakanak.",
|
||||||
"Verify all users in a room to ensure it's secure.": "Egiaztatu gela bateko erabiltzaile guztiak segurua dela baieztatzeko.",
|
"Verify all users in a room to ensure it's secure.": "Egiaztatu gela bateko erabiltzaile guztiak segurua dela baieztatzeko.",
|
||||||
"Verification cancelled": "Egiaztaketa ezeztatuta",
|
|
||||||
"Sends a message as html, without interpreting it as markdown": "Bidali mezua html gisa, markdown balitz aztertu gabe",
|
"Sends a message as html, without interpreting it as markdown": "Bidali mezua html gisa, markdown balitz aztertu gabe",
|
||||||
"Sign in with SSO": "Hasi saioa SSO-rekin",
|
"Sign in with SSO": "Hasi saioa SSO-rekin",
|
||||||
"Cancel replying to a message": "Utzi mezua erantzuteari",
|
"Cancel replying to a message": "Utzi mezua erantzuteari",
|
||||||
|
@ -1566,7 +1551,6 @@
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Zure zerbitzariko administratzaileak muturretik muturrerako zifratzea desgaitu du lehenetsita gela probatuetan eta mezu zuzenetan.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Zure zerbitzariko administratzaileak muturretik muturrerako zifratzea desgaitu du lehenetsita gela probatuetan eta mezu zuzenetan.",
|
||||||
"To link to this room, please add an address.": "Gela hau estekatzeko, gehitu helbide bat.",
|
"To link to this room, please add an address.": "Gela hau estekatzeko, gehitu helbide bat.",
|
||||||
"No recently visited rooms": "Ez dago azkenaldian bisitatutako gelarik",
|
"No recently visited rooms": "Ez dago azkenaldian bisitatutako gelarik",
|
||||||
"People": "Jendea",
|
|
||||||
"Sort by": "Ordenatu honela",
|
"Sort by": "Ordenatu honela",
|
||||||
"Activity": "Jarduera",
|
"Activity": "Jarduera",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
|
@ -1606,8 +1590,6 @@
|
||||||
"System font name": "Sistemaren letra-tipoaren izena",
|
"System font name": "Sistemaren letra-tipoaren izena",
|
||||||
"Unknown caller": "Dei-egile ezezaguna",
|
"Unknown caller": "Dei-egile ezezaguna",
|
||||||
"Hey you. You're the best!": "Aupa txo. Onena zara!",
|
"Hey you. You're the best!": "Aupa txo. Onena zara!",
|
||||||
"Message layout": "Mezuen antolaketa",
|
|
||||||
"Modern": "Modernoa",
|
|
||||||
"Notification options": "Jakinarazpen ezarpenak",
|
"Notification options": "Jakinarazpen ezarpenak",
|
||||||
"Forget Room": "Ahaztu gela",
|
"Forget Room": "Ahaztu gela",
|
||||||
"This room is public": "Gela hau publikoa da",
|
"This room is public": "Gela hau publikoa da",
|
||||||
|
@ -1628,6 +1610,26 @@
|
||||||
"Could not connect to identity server": "Ezin izan da identitate-zerbitzarira konektatu",
|
"Could not connect to identity server": "Ezin izan da identitate-zerbitzarira konektatu",
|
||||||
"Not a valid identity server (status code %(code)s)": "Ez da identitate zerbitzari baliogarria (egoera-mezua %(code)s)",
|
"Not a valid identity server (status code %(code)s)": "Ez da identitate zerbitzari baliogarria (egoera-mezua %(code)s)",
|
||||||
"Identity server URL must be HTTPS": "Identitate zerbitzariaren URL-a HTTPS motakoa izan behar du",
|
"Identity server URL must be HTTPS": "Identitate zerbitzariaren URL-a HTTPS motakoa izan behar du",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Estatistikak",
|
||||||
|
"encryption_enabled": "Zifratzea gaituta",
|
||||||
|
"error": "Errorea",
|
||||||
|
"message_layout": "Mezuen antolaketa",
|
||||||
|
"modern": "Modernoa",
|
||||||
|
"mute": "Mututu",
|
||||||
|
"no_results": "Emaitzarik ez",
|
||||||
|
"offline": "Deskonektatuta",
|
||||||
|
"password": "Pasahitza",
|
||||||
|
"people": "Jendea",
|
||||||
|
"reactions": "Erreakzioak",
|
||||||
|
"security": "Segurtasuna",
|
||||||
|
"settings": "Ezarpenak",
|
||||||
|
"success": "Arrakasta",
|
||||||
|
"suggestions": "Proposamenak",
|
||||||
|
"unmute": "Audioa aktibatu",
|
||||||
|
"username": "Erabiltzaile-izena",
|
||||||
|
"verification_cancelled": "Egiaztaketa ezeztatuta"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Erabiltzailea-menua"
|
"user_menu": "Erabiltzailea-menua"
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
"Leave": "خروج",
|
"Leave": "خروج",
|
||||||
"OK": "باشه",
|
"OK": "باشه",
|
||||||
"Operation failed": "عملیات انجام نشد",
|
"Operation failed": "عملیات انجام نشد",
|
||||||
"Mute": "سکوت",
|
|
||||||
"Warning": "هشدار",
|
"Warning": "هشدار",
|
||||||
"This Room": "این گپ",
|
"This Room": "این گپ",
|
||||||
"Resend": "بازفرست",
|
"Resend": "بازفرست",
|
||||||
|
@ -40,7 +39,6 @@
|
||||||
"Wednesday": "چهارشنبه",
|
"Wednesday": "چهارشنبه",
|
||||||
"Quote": "نقل قول",
|
"Quote": "نقل قول",
|
||||||
"Send": "ارسال",
|
"Send": "ارسال",
|
||||||
"Error": "خطا",
|
|
||||||
"Send logs": "ارسال گزارشها",
|
"Send logs": "ارسال گزارشها",
|
||||||
"All messages": "همهی پیامها",
|
"All messages": "همهی پیامها",
|
||||||
"unknown error code": "کد خطای ناشناخته",
|
"unknown error code": "کد خطای ناشناخته",
|
||||||
|
@ -192,7 +190,6 @@
|
||||||
"The call could not be established": "امکان برقراری تماس وجود ندارد",
|
"The call could not be established": "امکان برقراری تماس وجود ندارد",
|
||||||
"Call Failed": "تماس موفقیتآمیز نبود",
|
"Call Failed": "تماس موفقیتآمیز نبود",
|
||||||
"Unable to load! Check your network connectivity and try again.": "امکان بارگیری محتوا وجود ندارد! لطفا وضعیت اتصال خود به اینترنت را بررسی کرده و مجددا اقدام نمائید.",
|
"Unable to load! Check your network connectivity and try again.": "امکان بارگیری محتوا وجود ندارد! لطفا وضعیت اتصال خود به اینترنت را بررسی کرده و مجددا اقدام نمائید.",
|
||||||
"Analytics": "تجزیه و تحلیل",
|
|
||||||
"Explore rooms": "جستجو در اتاق ها",
|
"Explore rooms": "جستجو در اتاق ها",
|
||||||
"Sign In": "ورود",
|
"Sign In": "ورود",
|
||||||
"Create Account": "ایجاد حساب کاربری",
|
"Create Account": "ایجاد حساب کاربری",
|
||||||
|
@ -776,7 +773,6 @@
|
||||||
"Share User": "به اشتراکگذاری کاربر",
|
"Share User": "به اشتراکگذاری کاربر",
|
||||||
"Share Room": "به اشتراکگذاری اتاق",
|
"Share Room": "به اشتراکگذاری اتاق",
|
||||||
"Send Logs": "ارسال گزارش ها",
|
"Send Logs": "ارسال گزارش ها",
|
||||||
"Suggestions": "پیشنهادات",
|
|
||||||
"Recent Conversations": "گفتگوهای اخیر",
|
"Recent Conversations": "گفتگوهای اخیر",
|
||||||
"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",
|
||||||
"Failed to find the following users": "این کاربران یافت نشدند",
|
"Failed to find the following users": "این کاربران یافت نشدند",
|
||||||
|
@ -798,7 +794,6 @@
|
||||||
"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.": "این کاربر را تأیید کنید تا به عنوان کاربر مورد اعتماد علامتگذاری شود. اعتماد به کاربران آرامش و اطمینان بیشتری به شما در استفاده از رمزنگاری سرتاسر میدهد.",
|
||||||
"Terms of Service": "شرایط استفاده از خدمات",
|
"Terms of Service": "شرایط استفاده از خدمات",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "لطفاً ابتدا اشکالات موجود را در <existingIssuesLink>گیتهاب برنامه</existingIssuesLink> را مشاهده کنید. با اشکال شما مطابقتی وجود ندارد؟<newIssueLink> مورد جدیدی را ثبت کنید</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "لطفاً ابتدا اشکالات موجود را در <existingIssuesLink>گیتهاب برنامه</existingIssuesLink> را مشاهده کنید. با اشکال شما مطابقتی وجود ندارد؟<newIssueLink> مورد جدیدی را ثبت کنید</newIssueLink>.",
|
||||||
"Report a bug": "گزارش اشکال",
|
|
||||||
"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> را ارسال کنید تا به ما در ردیابی و رفع آن کمک کند.",
|
||||||
"Comment": "نظر",
|
"Comment": "نظر",
|
||||||
"Feedback sent": "بازخورد ارسال شد",
|
"Feedback sent": "بازخورد ارسال شد",
|
||||||
|
@ -1095,8 +1090,6 @@
|
||||||
"The encryption used by this room isn't supported.": "رمزگذاری استفاده شده توسط این اتاق پشتیبانی نمی شود.",
|
"The encryption used by this room isn't supported.": "رمزگذاری استفاده شده توسط این اتاق پشتیبانی نمی شود.",
|
||||||
"Encryption not enabled": "رمزگذاری فعال نیست",
|
"Encryption not enabled": "رمزگذاری فعال نیست",
|
||||||
"Ignored attempt to disable encryption": "تلاش برای غیرفعال کردن رمزگذاری نادیده گرفته شد",
|
"Ignored attempt to disable encryption": "تلاش برای غیرفعال کردن رمزگذاری نادیده گرفته شد",
|
||||||
"Encryption enabled": "رمزگذاری فعال است",
|
|
||||||
"Verification cancelled": "تأیید هویت لغو شد",
|
|
||||||
"You cancelled verification.": "شما تأیید هویت را لغو کردید.",
|
"You cancelled verification.": "شما تأیید هویت را لغو کردید.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s تایید هویت را لغو کرد.",
|
"%(displayName)s cancelled verification.": "%(displayName)s تایید هویت را لغو کرد.",
|
||||||
"Verification timed out.": "مهلت تأیید تمام شد.",
|
"Verification timed out.": "مهلت تأیید تمام شد.",
|
||||||
|
@ -1113,7 +1106,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.": "اگر نمی توانید کد بالا را اسکن کنید ، با مقایسه شکلک منحصر به فرد، او را تأیید کنید.",
|
||||||
"Ask %(displayName)s to scan your code:": "از %(displayName)s بخواهید که کد شما را اسکن کند:",
|
"Ask %(displayName)s to scan your code:": "از %(displayName)s بخواهید که کد شما را اسکن کند:",
|
||||||
"Verify by scanning": "با اسکن تأیید کنید",
|
"Verify by scanning": "با اسکن تأیید کنید",
|
||||||
"Security": "امنیت",
|
|
||||||
"Edit devices": "ویرایش دستگاهها",
|
"Edit devices": "ویرایش دستگاهها",
|
||||||
"This client does not support end-to-end encryption.": "این کلاینت از رمزگذاری سرتاسر پشتیبانی نمی کند.",
|
"This client does not support end-to-end encryption.": "این کلاینت از رمزگذاری سرتاسر پشتیبانی نمی کند.",
|
||||||
"Failed to deactivate user": "غیرفعال کردن کاربر انجام نشد",
|
"Failed to deactivate user": "غیرفعال کردن کاربر انجام نشد",
|
||||||
|
@ -1122,7 +1114,6 @@
|
||||||
"Deactivate user?": "کاربر غیرفعال شود؟",
|
"Deactivate user?": "کاربر غیرفعال شود؟",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "شما نمی توانید این تغییر را باطل کنید زیرا در حال ارتقا سطح قدرت یک کاربر به سطح قدرت خود هستید.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "شما نمی توانید این تغییر را باطل کنید زیرا در حال ارتقا سطح قدرت یک کاربر به سطح قدرت خود هستید.",
|
||||||
"Failed to change power level": "تغییر سطح قدرت انجام نشد",
|
"Failed to change power level": "تغییر سطح قدرت انجام نشد",
|
||||||
"Unmute": "صدادار",
|
|
||||||
"Failed to mute user": "کاربر بی صدا نشد",
|
"Failed to mute user": "کاربر بی صدا نشد",
|
||||||
"Remove recent messages": "حذف پیامهای اخیر",
|
"Remove recent messages": "حذف پیامهای اخیر",
|
||||||
"Remove %(count)s messages": {
|
"Remove %(count)s messages": {
|
||||||
|
@ -1155,7 +1146,6 @@
|
||||||
"Trusted": "قابل اعتماد",
|
"Trusted": "قابل اعتماد",
|
||||||
"Room settings": "تنظیمات اتاق",
|
"Room settings": "تنظیمات اتاق",
|
||||||
"Share room": "به اشتراک گذاری اتاق",
|
"Share room": "به اشتراک گذاری اتاق",
|
||||||
"About": "درباره",
|
|
||||||
"Not encrypted": "رمزگذاری نشده",
|
"Not encrypted": "رمزگذاری نشده",
|
||||||
"Add widgets, bridges & bots": "افزودن ابزارکها، پلها و رباتها",
|
"Add widgets, bridges & bots": "افزودن ابزارکها، پلها و رباتها",
|
||||||
"Edit widgets, bridges & bots": "ویرایش ابزارک ها ، پل ها و ربات ها",
|
"Edit widgets, bridges & bots": "ویرایش ابزارک ها ، پل ها و ربات ها",
|
||||||
|
@ -1239,7 +1229,6 @@
|
||||||
"Add room": "افزودن اتاق",
|
"Add room": "افزودن اتاق",
|
||||||
"Rooms": "اتاقها",
|
"Rooms": "اتاقها",
|
||||||
"Start chat": "شروع چت",
|
"Start chat": "شروع چت",
|
||||||
"People": "افراد",
|
|
||||||
"Favourites": "موردعلاقهها",
|
"Favourites": "موردعلاقهها",
|
||||||
"Invites": "دعوتها",
|
"Invites": "دعوتها",
|
||||||
"Open dial pad": "باز کردن صفحه شمارهگیری",
|
"Open dial pad": "باز کردن صفحه شمارهگیری",
|
||||||
|
@ -1257,7 +1246,6 @@
|
||||||
"Room %(name)s": "اتاق %(name)s",
|
"Room %(name)s": "اتاق %(name)s",
|
||||||
"Replying": "پاسخ دادن",
|
"Replying": "پاسخ دادن",
|
||||||
"Unknown": "ناشناخته",
|
"Unknown": "ناشناخته",
|
||||||
"Offline": "آفلاین",
|
|
||||||
"Idle": "بلااستفاده",
|
"Idle": "بلااستفاده",
|
||||||
"Online": "آنلاین",
|
"Online": "آنلاین",
|
||||||
"Unknown for %(duration)s": "ناشناخته به مدت %(duration)s",
|
"Unknown for %(duration)s": "ناشناخته به مدت %(duration)s",
|
||||||
|
@ -1329,7 +1317,6 @@
|
||||||
"expand": "گشودن",
|
"expand": "گشودن",
|
||||||
"collapse": "بستن",
|
"collapse": "بستن",
|
||||||
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "لطفا در GitHub <newIssueLink>یک مسئله جدید ایجاد کنید</newIssueLink> تا بتوانیم این اشکال را بررسی کنیم.",
|
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "لطفا در GitHub <newIssueLink>یک مسئله جدید ایجاد کنید</newIssueLink> تا بتوانیم این اشکال را بررسی کنیم.",
|
||||||
"No results": "بدون نتیجه",
|
|
||||||
"Join": "پیوستن",
|
"Join": "پیوستن",
|
||||||
"Enter passphrase": "عبارت امنیتی را وارد کنید",
|
"Enter passphrase": "عبارت امنیتی را وارد کنید",
|
||||||
"Confirm passphrase": "عبارت امنیتی را تائید کنید",
|
"Confirm passphrase": "عبارت امنیتی را تائید کنید",
|
||||||
|
@ -1407,7 +1394,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>",
|
||||||
"Reactions": "واکنش ها",
|
|
||||||
"Show all": "نمایش همه",
|
"Show all": "نمایش همه",
|
||||||
"Add reaction": "افزودن واکنش",
|
"Add reaction": "افزودن واکنش",
|
||||||
"Error processing voice message": "خطا در پردازش پیام صوتی",
|
"Error processing voice message": "خطا در پردازش پیام صوتی",
|
||||||
|
@ -1974,7 +1960,6 @@
|
||||||
"Switch to light mode": "انتخاب حالت روشن",
|
"Switch to light mode": "انتخاب حالت روشن",
|
||||||
"All settings": "همه تنظیمات",
|
"All settings": "همه تنظیمات",
|
||||||
"Skip for now": "فعلا بیخیال",
|
"Skip for now": "فعلا بیخیال",
|
||||||
"Room name": "نام اتاق",
|
|
||||||
"Support": "پشتیبانی",
|
"Support": "پشتیبانی",
|
||||||
"Random": "تصادفی",
|
"Random": "تصادفی",
|
||||||
"Welcome to <name/>": "به <name/> خوشآمدید",
|
"Welcome to <name/>": "به <name/> خوشآمدید",
|
||||||
|
@ -2037,7 +2022,6 @@
|
||||||
"Create": "ایجادکردن",
|
"Create": "ایجادکردن",
|
||||||
"Create new room": "ایجاد اتاق جدید",
|
"Create new room": "ایجاد اتاق جدید",
|
||||||
"Leave space": "ترک محیط",
|
"Leave space": "ترک محیط",
|
||||||
"Settings": "تنظیمات",
|
|
||||||
"Invite with email or username": "دعوت با ایمیل یا نامکاربری",
|
"Invite with email or username": "دعوت با ایمیل یا نامکاربری",
|
||||||
"Invite people": "دعوت کاربران",
|
"Invite people": "دعوت کاربران",
|
||||||
"Share invite link": "به اشتراکگذاری لینک دعوت",
|
"Share invite link": "به اشتراکگذاری لینک دعوت",
|
||||||
|
@ -2061,7 +2045,6 @@
|
||||||
"Sign in with": "نحوه ورود",
|
"Sign in with": "نحوه ورود",
|
||||||
"Forgot password?": "فراموشی گذرواژه",
|
"Forgot password?": "فراموشی گذرواژه",
|
||||||
"Phone": "شماره تلفن",
|
"Phone": "شماره تلفن",
|
||||||
"Username": "نام کاربری",
|
|
||||||
"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": "به نظر شماره تلفن صحیح نمیباشد، لطفا بررسی کرده و مجددا تلاش فرمائید",
|
||||||
"Enter phone number": "شماره تلفن را وارد کنید",
|
"Enter phone number": "شماره تلفن را وارد کنید",
|
||||||
"Enter email address": "آدرس ایمیل را وارد کنید",
|
"Enter email address": "آدرس ایمیل را وارد کنید",
|
||||||
|
@ -2072,7 +2055,6 @@
|
||||||
"Something went wrong in confirming your identity. Cancel and try again.": "تائید هویت شما با مشکل مواجه شد. لطفا فرآیند را لغو کرده و مجددا اقدام نمائید.",
|
"Something went wrong in confirming your identity. Cancel and try again.": "تائید هویت شما با مشکل مواجه شد. لطفا فرآیند را لغو کرده و مجددا اقدام نمائید.",
|
||||||
"Submit": "ارسال",
|
"Submit": "ارسال",
|
||||||
"Code": "کد",
|
"Code": "کد",
|
||||||
"Password": "گذرواژه",
|
|
||||||
"This room is public": "این اتاق عمومی است",
|
"This room is public": "این اتاق عمومی است",
|
||||||
"Avatar": "نمایه",
|
"Avatar": "نمایه",
|
||||||
"Join the beta": "اضافهشدن به نسخهی بتا",
|
"Join the beta": "اضافهشدن به نسخهی بتا",
|
||||||
|
@ -2253,7 +2235,6 @@
|
||||||
"Language and region": "زبان و جغرافیا",
|
"Language and region": "زبان و جغرافیا",
|
||||||
"Phone numbers": "شماره تلفن",
|
"Phone numbers": "شماره تلفن",
|
||||||
"Email addresses": "آدرس ایمیل",
|
"Email addresses": "آدرس ایمیل",
|
||||||
"Success": "موفقیت",
|
|
||||||
"Customise your appearance": "ظاهر پیامرسان خود را سفارشیسازی کنید",
|
"Customise your appearance": "ظاهر پیامرسان خود را سفارشیسازی کنید",
|
||||||
"Show advanced": "نمایش بخش پیشرفته",
|
"Show advanced": "نمایش بخش پیشرفته",
|
||||||
"Hide advanced": "پنهانکردن بخش پیشرفته",
|
"Hide advanced": "پنهانکردن بخش پیشرفته",
|
||||||
|
@ -2463,7 +2444,6 @@
|
||||||
"Scroll up in the timeline": "بالا رفتن در تایم لاین",
|
"Scroll up in the timeline": "بالا رفتن در تایم لاین",
|
||||||
"Scroll down in the timeline": "پایین آمدن در تایم لاین",
|
"Scroll down in the timeline": "پایین آمدن در تایم لاین",
|
||||||
"Toggle webcam on/off": "روشن/خاموش کردن دوربین",
|
"Toggle webcam on/off": "روشن/خاموش کردن دوربین",
|
||||||
"Sticker": "استیکر",
|
|
||||||
"Hide stickers": "پنهان سازی استیکرها",
|
"Hide stickers": "پنهان سازی استیکرها",
|
||||||
"Send a sticker": "ارسال یک استیکر",
|
"Send a sticker": "ارسال یک استیکر",
|
||||||
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s یک برچسب فرستاد.",
|
"%(senderDisplayName)s sent a sticker.": "%(senderDisplayName)s یک برچسب فرستاد.",
|
||||||
|
@ -2523,7 +2503,6 @@
|
||||||
"Notifications silenced": "هشدار بیصدا",
|
"Notifications silenced": "هشدار بیصدا",
|
||||||
"Silence call": "تماس بیصدا",
|
"Silence call": "تماس بیصدا",
|
||||||
"Sound on": "صدا",
|
"Sound on": "صدا",
|
||||||
"Video": "ویدئو",
|
|
||||||
"Video call started": "تماس تصویری شروع شد",
|
"Video call started": "تماس تصویری شروع شد",
|
||||||
"Unknown room": "اتاق ناشناس",
|
"Unknown room": "اتاق ناشناس",
|
||||||
"Help improve %(analyticsOwner)s": "بهتر کردن راهنمای کاربری %(analyticsOwner)s",
|
"Help improve %(analyticsOwner)s": "بهتر کردن راهنمای کاربری %(analyticsOwner)s",
|
||||||
|
@ -2623,6 +2602,29 @@
|
||||||
"Try using %(server)s": "سعی کنید از %(server)s استفاده کنید",
|
"Try using %(server)s": "سعی کنید از %(server)s استفاده کنید",
|
||||||
"Keyboard shortcuts": "میانبرهای صفحه کلید",
|
"Keyboard shortcuts": "میانبرهای صفحه کلید",
|
||||||
"Poll type": "نوع نظرسنجی",
|
"Poll type": "نوع نظرسنجی",
|
||||||
|
"common": {
|
||||||
|
"about": "درباره",
|
||||||
|
"analytics": "تجزیه و تحلیل",
|
||||||
|
"encryption_enabled": "رمزگذاری فعال است",
|
||||||
|
"error": "خطا",
|
||||||
|
"mute": "سکوت",
|
||||||
|
"no_results": "بدون نتیجه",
|
||||||
|
"offline": "آفلاین",
|
||||||
|
"password": "گذرواژه",
|
||||||
|
"people": "افراد",
|
||||||
|
"reactions": "واکنش ها",
|
||||||
|
"report_a_bug": "گزارش اشکال",
|
||||||
|
"room_name": "نام اتاق",
|
||||||
|
"security": "امنیت",
|
||||||
|
"settings": "تنظیمات",
|
||||||
|
"sticker": "استیکر",
|
||||||
|
"success": "موفقیت",
|
||||||
|
"suggestions": "پیشنهادات",
|
||||||
|
"unmute": "صدادار",
|
||||||
|
"username": "نام کاربری",
|
||||||
|
"verification_cancelled": "تأیید هویت لغو شد",
|
||||||
|
"video": "ویدئو"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "منوی کاربر"
|
"user_menu": "منوی کاربر"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,15 +4,12 @@
|
||||||
"Close": "Sulje",
|
"Close": "Sulje",
|
||||||
"Create new room": "Luo uusi huone",
|
"Create new room": "Luo uusi huone",
|
||||||
"Dismiss": "Hylkää",
|
"Dismiss": "Hylkää",
|
||||||
"Error": "Virhe",
|
|
||||||
"Failed to forget room %(errCode)s": "Huoneen unohtaminen epäonnistui %(errCode)s",
|
"Failed to forget room %(errCode)s": "Huoneen unohtaminen epäonnistui %(errCode)s",
|
||||||
"Favourite": "Suosikki",
|
"Favourite": "Suosikki",
|
||||||
"Mute": "Mykistä",
|
|
||||||
"Notifications": "Ilmoitukset",
|
"Notifications": "Ilmoitukset",
|
||||||
"Operation failed": "Toiminto epäonnistui",
|
"Operation failed": "Toiminto epäonnistui",
|
||||||
"Remove": "Poista",
|
"Remove": "Poista",
|
||||||
"Search": "Haku",
|
"Search": "Haku",
|
||||||
"Settings": "Asetukset",
|
|
||||||
"Start chat": "Aloita keskustelu",
|
"Start chat": "Aloita keskustelu",
|
||||||
"unknown error code": "tuntematon virhekoodi",
|
"unknown error code": "tuntematon virhekoodi",
|
||||||
"Failed to change password. Is your password correct?": "Salasanan vaihtaminen epäonnistui. Onko salasanasi oikein?",
|
"Failed to change password. Is your password correct?": "Salasanan vaihtaminen epäonnistui. Onko salasanasi oikein?",
|
||||||
|
@ -106,9 +103,7 @@
|
||||||
"PM": "ip.",
|
"PM": "ip.",
|
||||||
"No display name": "Ei näyttönimeä",
|
"No display name": "Ei näyttönimeä",
|
||||||
"No more results": "Ei enempää tuloksia",
|
"No more results": "Ei enempää tuloksia",
|
||||||
"No results": "Ei tuloksia",
|
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Password": "Salasana",
|
|
||||||
"Passwords can't be empty": "Salasanat eivät voi olla tyhjiä",
|
"Passwords can't be empty": "Salasanat eivät voi olla tyhjiä",
|
||||||
"Permissions": "Oikeudet",
|
"Permissions": "Oikeudet",
|
||||||
"Phone": "Puhelin",
|
"Phone": "Puhelin",
|
||||||
|
@ -132,7 +127,6 @@
|
||||||
"This room has no local addresses": "Tällä huoneella ei ole paikallista osoitetta",
|
"This room has no local addresses": "Tällä huoneella ei ole paikallista osoitetta",
|
||||||
"This room is not accessible by remote Matrix servers": "Tähän huoneeseen ei pääse ulkopuolisilta Matrix-palvelimilta",
|
"This room is not accessible by remote Matrix servers": "Tähän huoneeseen ei pääse ulkopuolisilta Matrix-palvelimilta",
|
||||||
"Unban": "Poista porttikielto",
|
"Unban": "Poista porttikielto",
|
||||||
"Unmute": "Poista mykistys",
|
|
||||||
"Unnamed Room": "Nimeämätön huone",
|
"Unnamed Room": "Nimeämätön huone",
|
||||||
"Uploading %(filename)s": "Lähetetään %(filename)s",
|
"Uploading %(filename)s": "Lähetetään %(filename)s",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
|
@ -183,7 +177,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "Uusi salasana",
|
"New Password": "Uusi salasana",
|
||||||
"Start automatically after system login": "Käynnistä automaattisesti käyttöjärjestelmään kirjautumisen jälkeen",
|
"Start automatically after system login": "Käynnistä automaattisesti käyttöjärjestelmään kirjautumisen jälkeen",
|
||||||
"Analytics": "Analytiikka",
|
|
||||||
"Options": "Valinnat",
|
"Options": "Valinnat",
|
||||||
"Passphrases must match": "Salasanojen on täsmättävä",
|
"Passphrases must match": "Salasanojen on täsmättävä",
|
||||||
"Passphrase must not be empty": "Salasana ei saa olla tyhjä",
|
"Passphrase must not be empty": "Salasana ei saa olla tyhjä",
|
||||||
|
@ -214,7 +207,6 @@
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Näytä aikaleimat 12 tunnin muodossa (esim. 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Näytä aikaleimat 12 tunnin muodossa (esim. 2:30pm)",
|
||||||
"Signed Out": "Uloskirjautunut",
|
"Signed Out": "Uloskirjautunut",
|
||||||
"Start authentication": "Aloita tunnistus",
|
"Start authentication": "Aloita tunnistus",
|
||||||
"Success": "Onnistui",
|
|
||||||
"Unable to add email address": "Sähköpostiosoitteen lisääminen epäonnistui",
|
"Unable to add email address": "Sähköpostiosoitteen lisääminen epäonnistui",
|
||||||
"Unable to remove contact information": "Yhteystietojen poistaminen epäonnistui",
|
"Unable to remove contact information": "Yhteystietojen poistaminen epäonnistui",
|
||||||
"Unable to verify email address.": "Sähköpostin vahvistaminen epäonnistui.",
|
"Unable to verify email address.": "Sähköpostin vahvistaminen epäonnistui.",
|
||||||
|
@ -339,7 +331,6 @@
|
||||||
"Unknown for %(duration)s": "Tuntematon tila viimeiset %(duration)s",
|
"Unknown for %(duration)s": "Tuntematon tila viimeiset %(duration)s",
|
||||||
"Online": "Paikalla",
|
"Online": "Paikalla",
|
||||||
"Idle": "Toimeton",
|
"Idle": "Toimeton",
|
||||||
"Offline": "Poissa verkosta",
|
|
||||||
"Unknown": "Tuntematon",
|
"Unknown": "Tuntematon",
|
||||||
"URL previews are enabled by default for participants in this room.": "URL-esikatselut on päällä oletusarvoisesti tämän huoneen jäsenillä.",
|
"URL previews are enabled by default for participants in this room.": "URL-esikatselut on päällä oletusarvoisesti tämän huoneen jäsenillä.",
|
||||||
"URL previews are disabled by default for participants in this room.": "URL-esikatselut ovat oletuksena pois päältä tämän huoneen jäsenillä.",
|
"URL previews are disabled by default for participants in this room.": "URL-esikatselut ovat oletuksena pois päältä tämän huoneen jäsenillä.",
|
||||||
|
@ -805,7 +796,6 @@
|
||||||
"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:",
|
||||||
"Code": "Koodi",
|
"Code": "Koodi",
|
||||||
"Username": "Käyttäjätunnus",
|
|
||||||
"Change": "Muuta",
|
"Change": "Muuta",
|
||||||
"Confirm": "Varmista",
|
"Confirm": "Varmista",
|
||||||
"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",
|
||||||
|
@ -1121,7 +1111,6 @@
|
||||||
"Unsubscribe": "Lopeta tilaus",
|
"Unsubscribe": "Lopeta tilaus",
|
||||||
"View rules": "Näytä säännöt",
|
"View rules": "Näytä säännöt",
|
||||||
"Subscribe": "Tilaa",
|
"Subscribe": "Tilaa",
|
||||||
"Security": "Tietoturva",
|
|
||||||
"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",
|
||||||
|
@ -1233,7 +1222,6 @@
|
||||||
"other": "%(count)s varmennettua istuntoa",
|
"other": "%(count)s varmennettua istuntoa",
|
||||||
"one": "1 varmennettu istunto"
|
"one": "1 varmennettu istunto"
|
||||||
},
|
},
|
||||||
"Reactions": "Reaktiot",
|
|
||||||
"Language Dropdown": "Kielipudotusvalikko",
|
"Language Dropdown": "Kielipudotusvalikko",
|
||||||
"Upgrade private room": "Päivitä yksityinen huone",
|
"Upgrade private room": "Päivitä yksityinen huone",
|
||||||
"Upgrade public room": "Päivitä julkinen huone",
|
"Upgrade public room": "Päivitä julkinen huone",
|
||||||
|
@ -1295,14 +1283,12 @@
|
||||||
"Accepting…": "Hyväksytään…",
|
"Accepting…": "Hyväksytään…",
|
||||||
"One of the following may be compromised:": "Jokin seuraavista saattaa olla vaarantunut:",
|
"One of the following may be compromised:": "Jokin seuraavista saattaa olla vaarantunut:",
|
||||||
"Your homeserver": "Kotipalvelimesi",
|
"Your homeserver": "Kotipalvelimesi",
|
||||||
"Encryption enabled": "Salaus käytössä",
|
|
||||||
"Encryption not enabled": "Salaus pois käytöstä",
|
"Encryption not enabled": "Salaus pois käytöstä",
|
||||||
"The encryption used by this room isn't supported.": "Tämän huoneen käyttämää salausta ei tueta.",
|
"The encryption used by this room isn't supported.": "Tämän huoneen käyttämää salausta ei tueta.",
|
||||||
"You declined": "Kieltäydyit",
|
"You declined": "Kieltäydyit",
|
||||||
"%(name)s declined": "%(name)s kieltäytyi",
|
"%(name)s declined": "%(name)s kieltäytyi",
|
||||||
"Something went wrong trying to invite the users.": "Käyttäjien kutsumisessa meni jotain pieleen.",
|
"Something went wrong trying to invite the users.": "Käyttäjien kutsumisessa meni jotain pieleen.",
|
||||||
"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.",
|
||||||
"Suggestions": "Ehdotukset",
|
|
||||||
"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",
|
"Restore": "Palauta",
|
||||||
|
@ -1498,7 +1484,6 @@
|
||||||
"Verification timed out.": "Varmennuksessa kesti liikaa.",
|
"Verification timed out.": "Varmennuksessa kesti liikaa.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s peruutti varmennuksen.",
|
"%(displayName)s cancelled verification.": "%(displayName)s peruutti varmennuksen.",
|
||||||
"You cancelled verification.": "Peruutit varmennuksen.",
|
"You cancelled verification.": "Peruutit varmennuksen.",
|
||||||
"Verification cancelled": "Varmennus peruutettu",
|
|
||||||
"Enter the name of a new server you want to explore.": "Syötä sen uuden palvelimen nimi, jota haluat selata.",
|
"Enter the name of a new server you want to explore.": "Syötä sen uuden palvelimen nimi, jota haluat selata.",
|
||||||
"Destroy cross-signing keys?": "Tuhoa ristiinvarmennuksen avaimet?",
|
"Destroy cross-signing keys?": "Tuhoa ristiinvarmennuksen avaimet?",
|
||||||
"Deleting cross-signing keys is permanent. Anyone you have verified with will see security alerts. You almost certainly don't want to do this, unless you've lost every device you can cross-sign from.": "Ristiinvarmennuksen avainten tuhoamista ei voi kumota. Jokainen, jonka olet varmentanut, tulee näkemään turvallisuushälytyksiä. Et todennäköisesti halua tehdä tätä, ellet ole hukannut kaikkia laitteitasi, joista pystyit ristiinvarmentamaan.",
|
"Deleting cross-signing keys is permanent. Anyone you have verified with will see security alerts. You almost certainly don't want to do this, unless you've lost every device you can cross-sign from.": "Ristiinvarmennuksen avainten tuhoamista ei voi kumota. Jokainen, jonka olet varmentanut, tulee näkemään turvallisuushälytyksiä. Et todennäköisesti halua tehdä tätä, ellet ole hukannut kaikkia laitteitasi, joista pystyit ristiinvarmentamaan.",
|
||||||
|
@ -1536,7 +1521,6 @@
|
||||||
"Light": "Vaalea",
|
"Light": "Vaalea",
|
||||||
"Dark": "Tumma",
|
"Dark": "Tumma",
|
||||||
"No recently visited rooms": "Ei hiljattain vierailtuja huoneita",
|
"No recently visited rooms": "Ei hiljattain vierailtuja huoneita",
|
||||||
"People": "Ihmiset",
|
|
||||||
"Sort by": "Lajittelutapa",
|
"Sort by": "Lajittelutapa",
|
||||||
"Switch to light mode": "Vaihda vaaleaan teemaan",
|
"Switch to light mode": "Vaihda vaaleaan teemaan",
|
||||||
"Switch to dark mode": "Vaihda tummaan teemaan",
|
"Switch to dark mode": "Vaihda tummaan teemaan",
|
||||||
|
@ -1558,8 +1542,6 @@
|
||||||
"Use custom size": "Käytä mukautettua kokoa",
|
"Use custom size": "Käytä mukautettua kokoa",
|
||||||
"Use a system font": "Käytä järjestelmän fonttia",
|
"Use a system font": "Käytä järjestelmän fonttia",
|
||||||
"System font name": "Järjestelmän fontin nimi",
|
"System font name": "Järjestelmän fontin nimi",
|
||||||
"Message layout": "Viestien asettelu",
|
|
||||||
"Modern": "Moderni",
|
|
||||||
"Notification options": "Ilmoitusasetukset",
|
"Notification options": "Ilmoitusasetukset",
|
||||||
"Room options": "Huoneen asetukset",
|
"Room options": "Huoneen asetukset",
|
||||||
"This room is public": "Tämä huone on julkinen",
|
"This room is public": "Tämä huone on julkinen",
|
||||||
|
@ -1642,7 +1624,6 @@
|
||||||
"Feedback sent": "Palaute lähetetty",
|
"Feedback sent": "Palaute lähetetty",
|
||||||
"Download logs": "Lataa lokit",
|
"Download logs": "Lataa lokit",
|
||||||
"Preparing to download logs": "Valmistellaan lokien lataamista",
|
"Preparing to download logs": "Valmistellaan lokien lataamista",
|
||||||
"About": "Tietoa",
|
|
||||||
"Unpin": "Poista kiinnitys",
|
"Unpin": "Poista kiinnitys",
|
||||||
"Customise your appearance": "Mukauta ulkoasua",
|
"Customise your appearance": "Mukauta ulkoasua",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Ulkoasuasetukset vaikuttavat vain tähän %(brand)s-istuntoon.",
|
"Appearance Settings only affect this %(brand)s session.": "Ulkoasuasetukset vaikuttavat vain tähän %(brand)s-istuntoon.",
|
||||||
|
@ -2009,7 +1990,6 @@
|
||||||
"New? <a>Create account</a>": "Uusi? <a>Luo tili</a>",
|
"New? <a>Create account</a>": "Uusi? <a>Luo tili</a>",
|
||||||
"Continuing without email": "Jatka ilman sähköpostia",
|
"Continuing without email": "Jatka ilman sähköpostia",
|
||||||
"Invite by email": "Kutsu sähköpostilla",
|
"Invite by email": "Kutsu sähköpostilla",
|
||||||
"Report a bug": "Raportoi virheestä",
|
|
||||||
"Confirm Security Phrase": "Vahvista turvalause",
|
"Confirm Security Phrase": "Vahvista turvalause",
|
||||||
"Upload a file": "Lähetä tiedosto",
|
"Upload a file": "Lähetä tiedosto",
|
||||||
"Confirm encryption setup": "Vahvista salauksen asetukset",
|
"Confirm encryption setup": "Vahvista salauksen asetukset",
|
||||||
|
@ -2090,7 +2070,6 @@
|
||||||
"Channel: <channelLink/>": "Kanava: <channelLink/>",
|
"Channel: <channelLink/>": "Kanava: <channelLink/>",
|
||||||
"Share %(name)s": "Jaa %(name)s",
|
"Share %(name)s": "Jaa %(name)s",
|
||||||
"Skip for now": "Ohita tältä erää",
|
"Skip for now": "Ohita tältä erää",
|
||||||
"Room name": "Huoneen nimi",
|
|
||||||
"<inviter/> invites you": "<inviter/> kutsuu sinut",
|
"<inviter/> invites you": "<inviter/> kutsuu sinut",
|
||||||
"You may want to try a different search or check for typos.": "Kokeile eri hakua tai tarkista haku kirjoitusvirheiden varalta.",
|
"You may want to try a different search or check for typos.": "Kokeile eri hakua tai tarkista haku kirjoitusvirheiden varalta.",
|
||||||
"No results found": "Tuloksia ei löytynyt",
|
"No results found": "Tuloksia ei löytynyt",
|
||||||
|
@ -2225,7 +2204,6 @@
|
||||||
"You may contact me if you have any follow up questions": "Voitte olla yhteydessä minuun, jos teillä on lisäkysymyksiä",
|
"You may contact me if you have any follow up questions": "Voitte olla yhteydessä minuun, jos teillä on lisäkysymyksiä",
|
||||||
"Search for rooms or people": "Etsi huoneita tai ihmisiä",
|
"Search for rooms or people": "Etsi huoneita tai ihmisiä",
|
||||||
"Message preview": "Viestin esikatselu",
|
"Message preview": "Viestin esikatselu",
|
||||||
"Forward message": "Välitä viesti",
|
|
||||||
"Sent": "Lähetetty",
|
"Sent": "Lähetetty",
|
||||||
"Include Attachments": "Sisällytä liitteet",
|
"Include Attachments": "Sisällytä liitteet",
|
||||||
"Stop": "Pysäytä",
|
"Stop": "Pysäytä",
|
||||||
|
@ -2247,8 +2225,6 @@
|
||||||
"Share content": "Jaa sisältö",
|
"Share content": "Jaa sisältö",
|
||||||
"Application window": "Sovelluksen ikkuna",
|
"Application window": "Sovelluksen ikkuna",
|
||||||
"Share entire screen": "Jaa koko näyttö",
|
"Share entire screen": "Jaa koko näyttö",
|
||||||
"Image": "Kuva",
|
|
||||||
"Sticker": "Tarra",
|
|
||||||
"Error processing audio message": "Virhe ääniviestiä käsiteltäessä",
|
"Error processing audio message": "Virhe ääniviestiä käsiteltäessä",
|
||||||
"Decrypting": "Puretaan salausta",
|
"Decrypting": "Puretaan salausta",
|
||||||
"The call is in an unknown state!": "Puhelu on tuntemattomassa tilassa!",
|
"The call is in an unknown state!": "Puhelu on tuntemattomassa tilassa!",
|
||||||
|
@ -2258,7 +2234,6 @@
|
||||||
"Their device couldn't start the camera or microphone": "Laite ei voinut käyynnistää kameraa tai mikrofonia",
|
"Their device couldn't start the camera or microphone": "Laite ei voinut käyynnistää kameraa tai mikrofonia",
|
||||||
"Connection failed": "Yhteys epäonnistui",
|
"Connection failed": "Yhteys epäonnistui",
|
||||||
"No answer": "Ei vastausta",
|
"No answer": "Ei vastausta",
|
||||||
"Message": "Viesti",
|
|
||||||
"Pinned messages": "Kiinnitetyt viestit",
|
"Pinned messages": "Kiinnitetyt viestit",
|
||||||
"Nothing pinned, yet": "Ei mitään kiinnitetty, ei vielä",
|
"Nothing pinned, yet": "Ei mitään kiinnitetty, ei vielä",
|
||||||
"Stop recording": "Pysäytä nauhoittaminen",
|
"Stop recording": "Pysäytä nauhoittaminen",
|
||||||
|
@ -2792,7 +2767,6 @@
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "Tämän salatun viestin aitoutta ei voida taata tällä laitteella.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "Tämän salatun viestin aitoutta ei voida taata tällä laitteella.",
|
||||||
"Developer tools": "Kehittäjätyökalut",
|
"Developer tools": "Kehittäjätyökalut",
|
||||||
"Confirm the emoji below are displayed on both devices, in the same order:": "Varmista, että alla olevat emojit näkyvät molemmilla laitteilla samassa järjestyksessä:",
|
"Confirm the emoji below are displayed on both devices, in the same order:": "Varmista, että alla olevat emojit näkyvät molemmilla laitteilla samassa järjestyksessä:",
|
||||||
"Video": "Video",
|
|
||||||
"Show polls button": "Näytä kyselypainike",
|
"Show polls button": "Näytä kyselypainike",
|
||||||
"Failed to join": "Liittyminen epäonnistui",
|
"Failed to join": "Liittyminen epäonnistui",
|
||||||
"The person who invited you has already left.": "Henkilö, joka kutsui sinut on jo poistunut.",
|
"The person who invited you has already left.": "Henkilö, joka kutsui sinut on jo poistunut.",
|
||||||
|
@ -3526,7 +3500,6 @@
|
||||||
"Indent decrease": "Sisennyksen vähennys",
|
"Indent decrease": "Sisennyksen vähennys",
|
||||||
"Indent increase": "Sisennyksen lisäys",
|
"Indent increase": "Sisennyksen lisäys",
|
||||||
"Rejecting invite…": "Hylätään kutsua…",
|
"Rejecting invite…": "Hylätään kutsua…",
|
||||||
"Loading…": "Ladataan…",
|
|
||||||
"Joining room…": "Liitytään huoneeseen…",
|
"Joining room…": "Liitytään huoneeseen…",
|
||||||
"Once everyone has joined, you’ll be able to chat": "Voitte keskustella, kun kaikki ovat liittyneet",
|
"Once everyone has joined, you’ll be able to chat": "Voitte keskustella, kun kaikki ovat liittyneet",
|
||||||
"Send your first message to invite <displayName/> to chat": "Kutsu <displayName/> keskusteluun kirjoittamalla ensimmäinen viesti",
|
"Send your first message to invite <displayName/> to chat": "Kutsu <displayName/> keskusteluun kirjoittamalla ensimmäinen viesti",
|
||||||
|
@ -3568,6 +3541,35 @@
|
||||||
"Joining space…": "Liitytään avaruuteen…",
|
"Joining space…": "Liitytään avaruuteen…",
|
||||||
"Sending your message…": "Lähetetään viestiäsi…",
|
"Sending your message…": "Lähetetään viestiäsi…",
|
||||||
"Error details": "Virheen tiedot",
|
"Error details": "Virheen tiedot",
|
||||||
|
"common": {
|
||||||
|
"about": "Tietoa",
|
||||||
|
"analytics": "Analytiikka",
|
||||||
|
"encryption_enabled": "Salaus käytössä",
|
||||||
|
"error": "Virhe",
|
||||||
|
"forward_message": "Välitä viesti",
|
||||||
|
"image": "Kuva",
|
||||||
|
"loading": "Ladataan…",
|
||||||
|
"message": "Viesti",
|
||||||
|
"message_layout": "Viestien asettelu",
|
||||||
|
"modern": "Moderni",
|
||||||
|
"mute": "Mykistä",
|
||||||
|
"no_results": "Ei tuloksia",
|
||||||
|
"offline": "Poissa verkosta",
|
||||||
|
"password": "Salasana",
|
||||||
|
"people": "Ihmiset",
|
||||||
|
"reactions": "Reaktiot",
|
||||||
|
"report_a_bug": "Raportoi virheestä",
|
||||||
|
"room_name": "Huoneen nimi",
|
||||||
|
"security": "Tietoturva",
|
||||||
|
"settings": "Asetukset",
|
||||||
|
"sticker": "Tarra",
|
||||||
|
"success": "Onnistui",
|
||||||
|
"suggestions": "Ehdotukset",
|
||||||
|
"unmute": "Poista mykistys",
|
||||||
|
"username": "Käyttäjätunnus",
|
||||||
|
"verification_cancelled": "Varmennus peruutettu",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Käyttäjän valikko"
|
"user_menu": "Käyttäjän valikko"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"Displays action": "Affiche l’action",
|
"Displays action": "Affiche l’action",
|
||||||
"Download %(text)s": "Télécharger %(text)s",
|
"Download %(text)s": "Télécharger %(text)s",
|
||||||
"Emoji": "Émojis",
|
"Emoji": "Émojis",
|
||||||
"Error": "Erreur",
|
|
||||||
"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 l’utilisateur",
|
"Failed to ban user": "Échec du bannissement de l’utilisateur",
|
||||||
"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 ?",
|
||||||
|
@ -11,7 +10,6 @@
|
||||||
"Remove": "Supprimer",
|
"Remove": "Supprimer",
|
||||||
"Favourite": "Favoris",
|
"Favourite": "Favoris",
|
||||||
"Notifications": "Notifications",
|
"Notifications": "Notifications",
|
||||||
"Settings": "Paramètres",
|
|
||||||
"Account": "Compte",
|
"Account": "Compte",
|
||||||
"Admin": "Administrateur",
|
"Admin": "Administrateur",
|
||||||
"Advanced": "Avancé",
|
"Advanced": "Avancé",
|
||||||
|
@ -87,10 +85,8 @@
|
||||||
"not specified": "non spécifié",
|
"not specified": "non spécifié",
|
||||||
"<not supported>": "<non pris en charge>",
|
"<not supported>": "<non pris en charge>",
|
||||||
"No more results": "Fin des résultats",
|
"No more results": "Fin des résultats",
|
||||||
"No results": "Pas de résultat",
|
|
||||||
"unknown error code": "code d’erreur inconnu",
|
"unknown error code": "code d’erreur inconnu",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Password": "Mot de passe",
|
|
||||||
"Passwords can't be empty": "Le mot de passe ne peut pas être vide",
|
"Passwords can't be empty": "Le mot de passe ne peut pas être vide",
|
||||||
"Permissions": "Permissions",
|
"Permissions": "Permissions",
|
||||||
"Phone": "Numéro de téléphone",
|
"Phone": "Numéro de téléphone",
|
||||||
|
@ -99,7 +95,6 @@
|
||||||
"Email address": "Adresse e-mail",
|
"Email address": "Adresse e-mail",
|
||||||
"Error decrypting attachment": "Erreur lors du déchiffrement de la pièce jointe",
|
"Error decrypting attachment": "Erreur lors du déchiffrement de la pièce jointe",
|
||||||
"Invalid file%(extra)s": "Fichier %(extra)s non valide",
|
"Invalid file%(extra)s": "Fichier %(extra)s non valide",
|
||||||
"Mute": "Mettre en sourdine",
|
|
||||||
"No users have specific privileges in this room": "Aucun utilisateur n’a de privilège spécifique dans ce salon",
|
"No users have specific privileges in this room": "Aucun utilisateur n’a de privilège spécifique dans ce salon",
|
||||||
"Please check your email and click on the link it contains. Once this is done, click continue.": "Veuillez consulter vos e-mails et cliquer sur le lien que vous avez reçu. Puis cliquez sur continuer.",
|
"Please check your email and click on the link it contains. Once this is done, click continue.": "Veuillez consulter vos e-mails et cliquer sur le lien que vous avez reçu. Puis cliquez sur continuer.",
|
||||||
"Power level must be positive integer.": "Le rang doit être un entier positif.",
|
"Power level must be positive integer.": "Le rang doit être un entier positif.",
|
||||||
|
@ -128,7 +123,6 @@
|
||||||
"Sign out": "Se déconnecter",
|
"Sign out": "Se déconnecter",
|
||||||
"Someone": "Quelqu’un",
|
"Someone": "Quelqu’un",
|
||||||
"Submit": "Soumettre",
|
"Submit": "Soumettre",
|
||||||
"Success": "Succès",
|
|
||||||
"This email address is already in use": "Cette adresse e-mail est déjà utilisée",
|
"This email address is already in use": "Cette adresse e-mail est déjà utilisée",
|
||||||
"This email address was not found": "Cette adresse e-mail n’a pas été trouvée",
|
"This email address was not found": "Cette adresse e-mail n’a pas été trouvée",
|
||||||
"The email address linked to your account must be entered.": "L’adresse e-mail liée à votre compte doit être renseignée.",
|
"The email address linked to your account must be entered.": "L’adresse e-mail liée à votre compte doit être renseignée.",
|
||||||
|
@ -144,7 +138,6 @@
|
||||||
"Unable to verify email address.": "Impossible de vérifier l’adresse e-mail.",
|
"Unable to verify email address.": "Impossible de vérifier l’adresse e-mail.",
|
||||||
"Unban": "Révoquer le bannissement",
|
"Unban": "Révoquer le bannissement",
|
||||||
"Unable to enable Notifications": "Impossible d’activer les notifications",
|
"Unable to enable Notifications": "Impossible d’activer les notifications",
|
||||||
"Unmute": "Activer le son",
|
|
||||||
"Upload avatar": "Envoyer un avatar",
|
"Upload avatar": "Envoyer un avatar",
|
||||||
"Upload Failed": "Échec de l’envoi",
|
"Upload Failed": "Échec de l’envoi",
|
||||||
"Usage": "Utilisation",
|
"Usage": "Utilisation",
|
||||||
|
@ -189,7 +182,6 @@
|
||||||
"Sent messages will be stored until your connection has returned.": "Les messages envoyés seront stockés jusqu’à ce que votre connexion revienne.",
|
"Sent messages will be stored until your connection has returned.": "Les messages envoyés seront stockés jusqu’à ce que votre connexion revienne.",
|
||||||
"Cancel": "Annuler",
|
"Cancel": "Annuler",
|
||||||
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s a supprimé le nom du salon.",
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s a supprimé le nom du salon.",
|
||||||
"Analytics": "Collecte de données",
|
|
||||||
"Passphrases must match": "Les phrases secrètes doivent être identiques",
|
"Passphrases must match": "Les phrases secrètes doivent être identiques",
|
||||||
"Passphrase must not be empty": "Le mot de passe ne peut pas être vide",
|
"Passphrase must not be empty": "Le mot de passe ne peut pas être vide",
|
||||||
"Export room keys": "Exporter les clés de salon",
|
"Export room keys": "Exporter les clés de salon",
|
||||||
|
@ -218,7 +210,6 @@
|
||||||
"URL Previews": "Aperçus des liens",
|
"URL Previews": "Aperçus des liens",
|
||||||
"Drop file here to upload": "Glisser le fichier ici pour l’envoyer",
|
"Drop file here to upload": "Glisser le fichier ici pour l’envoyer",
|
||||||
"Online": "En ligne",
|
"Online": "En ligne",
|
||||||
"Offline": "Hors ligne",
|
|
||||||
"Start automatically after system login": "Démarrer automatiquement après la phase d'authentification du système",
|
"Start automatically after system login": "Démarrer automatiquement après la phase d'authentification du système",
|
||||||
"Idle": "Inactif",
|
"Idle": "Inactif",
|
||||||
"Jump to first unread message.": "Aller au premier message non lu.",
|
"Jump to first unread message.": "Aller au premier message non lu.",
|
||||||
|
@ -709,7 +700,6 @@
|
||||||
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Vérifier cet utilisateur pour le marquer comme fiable. Faire confiance aux utilisateurs vous permet d’être tranquille lorsque vous utilisez des messages chiffrés de bout en bout.",
|
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Vérifier cet utilisateur pour le marquer comme fiable. Faire confiance aux utilisateurs vous permet d’être tranquille lorsque vous utilisez des messages chiffrés de bout en bout.",
|
||||||
"Incoming Verification Request": "Demande de vérification entrante",
|
"Incoming Verification Request": "Demande de vérification entrante",
|
||||||
"Go back": "Revenir en arrière",
|
"Go back": "Revenir en arrière",
|
||||||
"Username": "Nom d’utilisateur",
|
|
||||||
"Email (optional)": "E-mail (facultatif)",
|
"Email (optional)": "E-mail (facultatif)",
|
||||||
"Phone (optional)": "Téléphone (facultatif)",
|
"Phone (optional)": "Téléphone (facultatif)",
|
||||||
"Confirm": "Confirmer",
|
"Confirm": "Confirmer",
|
||||||
|
@ -1171,7 +1161,6 @@
|
||||||
"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.",
|
||||||
"Security": "Sécurité",
|
|
||||||
"Verify": "Vérifier",
|
"Verify": "Vérifier",
|
||||||
"Any of the following data may be shared:": "Les données suivants peuvent être partagées :",
|
"Any of the following data may be shared:": "Les données suivants peuvent être partagées :",
|
||||||
"Your display name": "Votre nom d’affichage",
|
"Your display name": "Votre nom d’affichage",
|
||||||
|
@ -1207,7 +1196,6 @@
|
||||||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Cela n’affecte généralement que la façon dont le salon est traité sur le serveur. Si vous avez des problèmes avec votre %(brand)s, <a>signalez une anomalie</a>.",
|
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Cela n’affecte généralement que la façon dont le salon est traité sur le serveur. Si vous avez des problèmes avec votre %(brand)s, <a>signalez une anomalie</a>.",
|
||||||
"You'll upgrade this room from <oldVersion /> to <newVersion />.": "Vous allez mettre à niveau ce salon de <oldVersion /> vers <newVersion />.",
|
"You'll upgrade this room from <oldVersion /> to <newVersion />.": "Vous allez mettre à niveau ce salon de <oldVersion /> vers <newVersion />.",
|
||||||
"Upgrade": "Mettre à niveau",
|
"Upgrade": "Mettre à niveau",
|
||||||
"Reactions": "Réactions",
|
|
||||||
"<userName/> wants to chat": "<userName/> veut discuter",
|
"<userName/> wants to chat": "<userName/> veut discuter",
|
||||||
"Start chatting": "Commencer à discuter",
|
"Start chatting": "Commencer à discuter",
|
||||||
"Cross-signing public keys:": "Clés publiques de signature croisée :",
|
"Cross-signing public keys:": "Clés publiques de signature croisée :",
|
||||||
|
@ -1250,7 +1238,6 @@
|
||||||
"Go": "C’est parti",
|
"Go": "C’est parti",
|
||||||
"Show info about bridges in room settings": "Afficher des informations à propos des passerelles dans les paramètres du salon",
|
"Show info about bridges in room settings": "Afficher des informations à propos des passerelles dans les paramètres du salon",
|
||||||
"This bridge is managed by <user />.": "Cette passerelle est gérée par <user />.",
|
"This bridge is managed by <user />.": "Cette passerelle est gérée par <user />.",
|
||||||
"Suggestions": "Suggestions",
|
|
||||||
"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 n’existent 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 n’existent peut-être pas ou ne sont pas valides, et ne peuvent pas être invités : %(csvNames)s",
|
||||||
"Lock": "Cadenas",
|
"Lock": "Cadenas",
|
||||||
|
@ -1355,7 +1342,6 @@
|
||||||
"one": "%(count)s session"
|
"one": "%(count)s session"
|
||||||
},
|
},
|
||||||
"Hide sessions": "Masquer les sessions",
|
"Hide sessions": "Masquer les sessions",
|
||||||
"Encryption enabled": "Chiffrement activé",
|
|
||||||
"Encryption not enabled": "Chiffrement non activé",
|
"Encryption not enabled": "Chiffrement non activé",
|
||||||
"The encryption used by this room isn't supported.": "Le chiffrement utilisé par ce salon n’est pas pris en charge.",
|
"The encryption used by this room isn't supported.": "Le chiffrement utilisé par ce salon n’est pas pris en charge.",
|
||||||
"Clear all data in this session?": "Supprimer toutes les données de cette session ?",
|
"Clear all data in this session?": "Supprimer toutes les données de cette session ?",
|
||||||
|
@ -1488,7 +1474,6 @@
|
||||||
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Vérifiez individuellement chaque session utilisée par un utilisateur pour la marquer comme fiable, sans faire confiance aux appareils signés avec la signature croisée.",
|
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Vérifiez individuellement chaque session utilisée par un utilisateur pour la marquer comme fiable, sans faire confiance aux appareils signés avec la signature croisée.",
|
||||||
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Dans les salons chiffrés, vos messages sont sécurisés et seuls vous et le destinataire avez les clés uniques pour les déchiffrer.",
|
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Dans les salons chiffrés, vos messages sont sécurisés et seuls vous et le destinataire avez les clés uniques pour les déchiffrer.",
|
||||||
"Verify all users in a room to ensure it's secure.": "Vérifiez tous les utilisateurs d’un salon pour vous assurer qu’il est sécurisé.",
|
"Verify all users in a room to ensure it's secure.": "Vérifiez tous les utilisateurs d’un salon pour vous assurer qu’il est sécurisé.",
|
||||||
"Verification cancelled": "Vérification annulée",
|
|
||||||
"Sends a message as html, without interpreting it as markdown": "Envoie un message en HTML, sans l’interpréter comme du Markdown",
|
"Sends a message as html, without interpreting it as markdown": "Envoie un message en HTML, sans l’interpréter comme du Markdown",
|
||||||
"Sign in with SSO": "Se connecter avec l’authentification unique",
|
"Sign in with SSO": "Se connecter avec l’authentification unique",
|
||||||
"Cancel replying to a message": "Annuler la réponse à un message",
|
"Cancel replying to a message": "Annuler la réponse à un message",
|
||||||
|
@ -1579,7 +1564,6 @@
|
||||||
"Ok": "OK",
|
"Ok": "OK",
|
||||||
"New version available. <a>Update now.</a>": "Nouvelle version disponible. <a>Faire la mise à niveau maintenant.</a>",
|
"New version available. <a>Update now.</a>": "Nouvelle version disponible. <a>Faire la mise à niveau maintenant.</a>",
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "L’administrateur de votre serveur a désactivé le chiffrement de bout en bout par défaut dans les salons privés et les conversations privées.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "L’administrateur de votre serveur a désactivé le chiffrement de bout en bout par défaut dans les salons privés et les conversations privées.",
|
||||||
"People": "Personnes",
|
|
||||||
"Switch to light mode": "Passer au mode clair",
|
"Switch to light mode": "Passer au mode clair",
|
||||||
"Switch to dark mode": "Passer au mode sombre",
|
"Switch to dark mode": "Passer au mode sombre",
|
||||||
"Switch theme": "Changer le thème",
|
"Switch theme": "Changer le thème",
|
||||||
|
@ -1603,8 +1587,6 @@
|
||||||
"Looks good!": "Ça a l’air correct !",
|
"Looks good!": "Ça a l’air correct !",
|
||||||
"Use custom size": "Utiliser une taille personnalisée",
|
"Use custom size": "Utiliser une taille personnalisée",
|
||||||
"Hey you. You're the best!": "Hé vous. Vous êtes le meilleur !",
|
"Hey you. You're the best!": "Hé vous. Vous êtes le meilleur !",
|
||||||
"Message layout": "Mise en page des messages",
|
|
||||||
"Modern": "Moderne",
|
|
||||||
"Use a system font": "Utiliser une police du système",
|
"Use a system font": "Utiliser une police du système",
|
||||||
"System font name": "Nom de la police du système",
|
"System font name": "Nom de la police du système",
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "L’authenticité de ce message chiffré ne peut pas être garantie sur cet appareil.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "L’authenticité de ce message chiffré ne peut pas être garantie sur cet appareil.",
|
||||||
|
@ -1689,7 +1671,6 @@
|
||||||
"Video conference updated by %(senderName)s": "vidéoconférence mise à jour par %(senderName)s",
|
"Video conference updated by %(senderName)s": "vidéoconférence mise à jour par %(senderName)s",
|
||||||
"Video conference ended by %(senderName)s": "vidéoconférence terminée par %(senderName)s",
|
"Video conference ended by %(senderName)s": "vidéoconférence terminée par %(senderName)s",
|
||||||
"Room settings": "Paramètres du salon",
|
"Room settings": "Paramètres du salon",
|
||||||
"About": "À propos",
|
|
||||||
"Not encrypted": "Non-chiffré",
|
"Not encrypted": "Non-chiffré",
|
||||||
"Add widgets, bridges & bots": "Ajouter des widgets, passerelles et robots",
|
"Add widgets, bridges & bots": "Ajouter des widgets, passerelles et robots",
|
||||||
"Edit widgets, bridges & bots": "Modifier les widgets, passerelles et robots",
|
"Edit widgets, bridges & bots": "Modifier les widgets, passerelles et robots",
|
||||||
|
@ -1733,7 +1714,6 @@
|
||||||
"Send feedback": "Envoyer un commentaire",
|
"Send feedback": "Envoyer un commentaire",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "CONSEIL : si vous rapportez un bug, merci d’envoyer <debugLogsLink>les journaux de débogage</debugLogsLink> pour nous aider à identifier le problème.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "CONSEIL : si vous rapportez un bug, merci d’envoyer <debugLogsLink>les journaux de débogage</debugLogsLink> pour nous aider à identifier le problème.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Merci de regarder d’abord les <existingIssuesLink>bugs déjà répertoriés sur Github</existingIssuesLink>. Pas de résultat ? <newIssueLink>Rapportez un nouveau bug</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Merci de regarder d’abord les <existingIssuesLink>bugs déjà répertoriés sur Github</existingIssuesLink>. Pas de résultat ? <newIssueLink>Rapportez un nouveau bug</newIssueLink>.",
|
||||||
"Report a bug": "Signaler un bug",
|
|
||||||
"Comment": "Commentaire",
|
"Comment": "Commentaire",
|
||||||
"Feedback sent": "Commentaire envoyé",
|
"Feedback sent": "Commentaire envoyé",
|
||||||
"Block anyone not part of %(serverName)s from ever joining this room.": "Empêche n’importe qui n’étant pas membre de %(serverName)s de rejoindre ce salon.",
|
"Block anyone not part of %(serverName)s from ever joining this room.": "Empêche n’importe qui n’étant pas membre de %(serverName)s de rejoindre ce salon.",
|
||||||
|
@ -2217,7 +2197,6 @@
|
||||||
"Who are you working with?": "Avec qui travaillez-vous ?",
|
"Who are you working with?": "Avec qui travaillez-vous ?",
|
||||||
"Skip for now": "Passer pour l’instant",
|
"Skip for now": "Passer pour l’instant",
|
||||||
"Failed to create initial space rooms": "Échec de la création des salons initiaux de l’espace",
|
"Failed to create initial space rooms": "Échec de la création des salons initiaux de l’espace",
|
||||||
"Room name": "Nom du salon",
|
|
||||||
"Support": "Prise en charge",
|
"Support": "Prise en charge",
|
||||||
"Random": "Aléatoire",
|
"Random": "Aléatoire",
|
||||||
"Welcome to <name/>": "Bienvenue dans <name/>",
|
"Welcome to <name/>": "Bienvenue dans <name/>",
|
||||||
|
@ -2389,7 +2368,6 @@
|
||||||
"Or send invite link": "Ou envoyer le lien d’invitation",
|
"Or send invite link": "Ou envoyer le lien d’invitation",
|
||||||
"Some suggestions may be hidden for privacy.": "Certaines suggestions pourraient être masquées pour votre confidentialité.",
|
"Some suggestions may be hidden for privacy.": "Certaines suggestions pourraient être masquées pour votre confidentialité.",
|
||||||
"Search for rooms or people": "Rechercher des salons ou des gens",
|
"Search for rooms or people": "Rechercher des salons ou des gens",
|
||||||
"Forward message": "Transférer le message",
|
|
||||||
"Sent": "Envoyé",
|
"Sent": "Envoyé",
|
||||||
"You don't have permission to do this": "Vous n’avez pas les permissions nécessaires pour effectuer cette action",
|
"You don't have permission to do this": "Vous n’avez pas les permissions nécessaires pour effectuer cette action",
|
||||||
"Error - Mixed content": "Erreur - Contenu mixte",
|
"Error - Mixed content": "Erreur - Contenu mixte",
|
||||||
|
@ -2538,8 +2516,6 @@
|
||||||
"Share content": "Partager le contenu",
|
"Share content": "Partager le contenu",
|
||||||
"Application window": "Fenêtre d’application",
|
"Application window": "Fenêtre d’application",
|
||||||
"Share entire screen": "Partager l’écran entier",
|
"Share entire screen": "Partager l’écran entier",
|
||||||
"Image": "Image",
|
|
||||||
"Sticker": "Autocollant",
|
|
||||||
"Decrypting": "Déchiffrement",
|
"Decrypting": "Déchiffrement",
|
||||||
"The call is in an unknown state!": "Cet appel est dans un état inconnu !",
|
"The call is in an unknown state!": "Cet appel est dans un état inconnu !",
|
||||||
"An unknown error occurred": "Une erreur inconnue s’est produite",
|
"An unknown error occurred": "Une erreur inconnue s’est produite",
|
||||||
|
@ -2630,7 +2606,6 @@
|
||||||
"Reply to thread…": "Répondre au fil de discussion…",
|
"Reply to thread…": "Répondre au fil de discussion…",
|
||||||
"Reply to encrypted thread…": "Répondre au fil de discussion chiffré…",
|
"Reply to encrypted thread…": "Répondre au fil de discussion chiffré…",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s ont réagi avec %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s ont réagi avec %(content)s",
|
||||||
"Message": "Message",
|
|
||||||
"Message didn't send. Click for info.": "Le message n’a pas été envoyé. Cliquer pour plus d’info.",
|
"Message didn't send. Click for info.": "Le message n’a pas été envoyé. Cliquer pour plus d’info.",
|
||||||
"Unknown failure": "Erreur inconnue",
|
"Unknown failure": "Erreur inconnue",
|
||||||
"Failed to update the join rules": "Échec de mise-à-jour des règles pour rejoindre le salon",
|
"Failed to update the join rules": "Échec de mise-à-jour des règles pour rejoindre le salon",
|
||||||
|
@ -3168,7 +3143,6 @@
|
||||||
},
|
},
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Les journaux de débogage contiennent les données d’utilisation de l’application incluant votre nom d’utilisateur, les identifiants ou les alias des salons que vous avez visités, les derniers élément de l’interface avec lesquels vous avez interagis, et les noms d’utilisateurs des autres utilisateurs. Ils ne contiennent pas de messages.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Les journaux de débogage contiennent les données d’utilisation de l’application incluant votre nom d’utilisateur, les identifiants ou les alias des salons que vous avez visités, les derniers élément de l’interface avec lesquels vous avez interagis, et les noms d’utilisateurs des autres utilisateurs. Ils ne contiennent pas de messages.",
|
||||||
"Developer tools": "Outils de développement",
|
"Developer tools": "Outils de développement",
|
||||||
"Video": "Vidéo",
|
|
||||||
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s est expérimental sur un navigateur mobile. Pour une meilleure expérience et bénéficier des dernières fonctionnalités, utilisez notre application native gratuite.",
|
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s est expérimental sur un navigateur mobile. Pour une meilleure expérience et bénéficier des dernières fonctionnalités, utilisez notre application native gratuite.",
|
||||||
"%(value)ss": "%(value)ss",
|
"%(value)ss": "%(value)ss",
|
||||||
"%(value)sm": "%(value)sm",
|
"%(value)sm": "%(value)sm",
|
||||||
|
@ -3758,7 +3732,6 @@
|
||||||
"Adding…": "Ajout…",
|
"Adding…": "Ajout…",
|
||||||
"Write something…": "Écrivez quelque chose…",
|
"Write something…": "Écrivez quelque chose…",
|
||||||
"Rejecting invite…": "Rejet de l’invitation…",
|
"Rejecting invite…": "Rejet de l’invitation…",
|
||||||
"Loading…": "Chargement…",
|
|
||||||
"Joining room…": "Entrée dans le salon…",
|
"Joining room…": "Entrée dans le salon…",
|
||||||
"Joining space…": "Entrée dans l’espace…",
|
"Joining space…": "Entrée dans l’espace…",
|
||||||
"Encrypting your message…": "Chiffrement de votre message…",
|
"Encrypting your message…": "Chiffrement de votre message…",
|
||||||
|
@ -3969,6 +3942,35 @@
|
||||||
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Votre serveur d’accueil est trop ancien et ne prend pas en charge la version minimale requise de l’API. Veuillez contacter le propriétaire du serveur, ou bien mettez à jour votre serveur.",
|
"Your homeserver is too old and does not support the minimum API version required. Please contact your server owner, or upgrade your server.": "Votre serveur d’accueil est trop ancien et ne prend pas en charge la version minimale requise de l’API. Veuillez contacter le propriétaire du serveur, ou bien mettez à jour votre serveur.",
|
||||||
"Your server is unsupported": "Votre serveur n’est pas pris en charge",
|
"Your server is unsupported": "Votre serveur n’est pas pris en charge",
|
||||||
"This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "Ce serveur utilise une ancienne version de Matrix. Mettez-le à jour vers Matrix %(version)s pour utiliser %(brand)s sans erreurs.",
|
"This server is using an older version of Matrix. Upgrade to Matrix %(version)s to use %(brand)s without errors.": "Ce serveur utilise une ancienne version de Matrix. Mettez-le à jour vers Matrix %(version)s pour utiliser %(brand)s sans erreurs.",
|
||||||
|
"common": {
|
||||||
|
"about": "À propos",
|
||||||
|
"analytics": "Collecte de données",
|
||||||
|
"encryption_enabled": "Chiffrement activé",
|
||||||
|
"error": "Erreur",
|
||||||
|
"forward_message": "Transférer le message",
|
||||||
|
"image": "Image",
|
||||||
|
"loading": "Chargement…",
|
||||||
|
"message": "Message",
|
||||||
|
"message_layout": "Mise en page des messages",
|
||||||
|
"modern": "Moderne",
|
||||||
|
"mute": "Mettre en sourdine",
|
||||||
|
"no_results": "Pas de résultat",
|
||||||
|
"offline": "Hors ligne",
|
||||||
|
"password": "Mot de passe",
|
||||||
|
"people": "Personnes",
|
||||||
|
"reactions": "Réactions",
|
||||||
|
"report_a_bug": "Signaler un bug",
|
||||||
|
"room_name": "Nom du salon",
|
||||||
|
"security": "Sécurité",
|
||||||
|
"settings": "Paramètres",
|
||||||
|
"sticker": "Autocollant",
|
||||||
|
"success": "Succès",
|
||||||
|
"suggestions": "Suggestions",
|
||||||
|
"unmute": "Activer le son",
|
||||||
|
"username": "Nom d’utilisateur",
|
||||||
|
"verification_cancelled": "Vérification annulée",
|
||||||
|
"video": "Vidéo"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu utilisateur"
|
"user_menu": "Menu utilisateur"
|
||||||
}
|
}
|
||||||
|
|
|
@ -270,7 +270,6 @@
|
||||||
"ready": "réidh",
|
"ready": "réidh",
|
||||||
"Algorithm:": "Algartam:",
|
"Algorithm:": "Algartam:",
|
||||||
"Unpin": "Neamhceangail",
|
"Unpin": "Neamhceangail",
|
||||||
"About": "Faoi",
|
|
||||||
"Privacy": "Príobháideachas",
|
"Privacy": "Príobháideachas",
|
||||||
"Information": "Eolas",
|
"Information": "Eolas",
|
||||||
"Away": "Imithe",
|
"Away": "Imithe",
|
||||||
|
@ -281,7 +280,6 @@
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Activity": "Gníomhaíocht",
|
"Activity": "Gníomhaíocht",
|
||||||
"Feedback": "Aiseolas",
|
"Feedback": "Aiseolas",
|
||||||
"People": "Daoine",
|
|
||||||
"Ok": "Togha",
|
"Ok": "Togha",
|
||||||
"Categories": "Catagóire",
|
"Categories": "Catagóire",
|
||||||
"Appearance": "Cuma",
|
"Appearance": "Cuma",
|
||||||
|
@ -310,14 +308,11 @@
|
||||||
"Done": "Críochnaithe",
|
"Done": "Críochnaithe",
|
||||||
"Start": "Tosaigh",
|
"Start": "Tosaigh",
|
||||||
"Lock": "Glasáil",
|
"Lock": "Glasáil",
|
||||||
"Suggestions": "Moltaí",
|
|
||||||
"Go": "Téigh",
|
"Go": "Téigh",
|
||||||
"Cross-signing": "Cros-síniú",
|
"Cross-signing": "Cros-síniú",
|
||||||
"Reactions": "Freagartha",
|
|
||||||
"Unencrypted": "Gan chriptiú",
|
"Unencrypted": "Gan chriptiú",
|
||||||
"Upgrade": "Uasghrádaigh",
|
"Upgrade": "Uasghrádaigh",
|
||||||
"Verify": "Cinntigh",
|
"Verify": "Cinntigh",
|
||||||
"Security": "Slándáil",
|
|
||||||
"Trusted": "Dílis",
|
"Trusted": "Dílis",
|
||||||
"Subscribe": "Liostáil",
|
"Subscribe": "Liostáil",
|
||||||
"Unsubscribe": "Díliostáil",
|
"Unsubscribe": "Díliostáil",
|
||||||
|
@ -356,7 +351,6 @@
|
||||||
"Other": "Eile",
|
"Other": "Eile",
|
||||||
"Change": "Athraigh",
|
"Change": "Athraigh",
|
||||||
"Phone": "Guthán",
|
"Phone": "Guthán",
|
||||||
"Username": "Ainm úsáideora",
|
|
||||||
"Email": "Ríomhphost",
|
"Email": "Ríomhphost",
|
||||||
"Submit": "Cuir isteach",
|
"Submit": "Cuir isteach",
|
||||||
"Code": "Cód",
|
"Code": "Cód",
|
||||||
|
@ -419,10 +413,8 @@
|
||||||
"Favourites": "Ceanáin",
|
"Favourites": "Ceanáin",
|
||||||
"Invites": "Cuirí",
|
"Invites": "Cuirí",
|
||||||
"Search": "Cuardaigh",
|
"Search": "Cuardaigh",
|
||||||
"Settings": "Socruithe",
|
|
||||||
"Replying": "Ag freagairt",
|
"Replying": "Ag freagairt",
|
||||||
"Unknown": "Anaithnid",
|
"Unknown": "Anaithnid",
|
||||||
"Offline": "As líne",
|
|
||||||
"Idle": "Díomhaoin",
|
"Idle": "Díomhaoin",
|
||||||
"Online": "Ar Líne",
|
"Online": "Ar Líne",
|
||||||
"%(duration)sd": "%(duration)sl",
|
"%(duration)sd": "%(duration)sl",
|
||||||
|
@ -442,8 +434,6 @@
|
||||||
"Collecting logs": "ag Bailiú logaí",
|
"Collecting logs": "ag Bailiú logaí",
|
||||||
"Invited": "Le cuireadh",
|
"Invited": "Le cuireadh",
|
||||||
"Close": "Dún",
|
"Close": "Dún",
|
||||||
"Mute": "Ciúinaigh",
|
|
||||||
"Unmute": "Stop ag ciúnú",
|
|
||||||
"Invite": "Tabhair cuireadh",
|
"Invite": "Tabhair cuireadh",
|
||||||
"Mention": "Luaigh",
|
"Mention": "Luaigh",
|
||||||
"Demote": "Bain ceadanna",
|
"Demote": "Bain ceadanna",
|
||||||
|
@ -471,7 +461,6 @@
|
||||||
"Theme": "Téama",
|
"Theme": "Téama",
|
||||||
"Account": "Cuntas",
|
"Account": "Cuntas",
|
||||||
"Profile": "Próifíl",
|
"Profile": "Próifíl",
|
||||||
"Success": "Rath",
|
|
||||||
"Save": "Sábháil",
|
"Save": "Sábháil",
|
||||||
"Noisy": "Callánach",
|
"Noisy": "Callánach",
|
||||||
"On": "Ar siúl",
|
"On": "Ar siúl",
|
||||||
|
@ -482,7 +471,6 @@
|
||||||
"No": "Níl",
|
"No": "Níl",
|
||||||
"Yes": "Tá",
|
"Yes": "Tá",
|
||||||
"Authentication": "Fíordheimhniú",
|
"Authentication": "Fíordheimhniú",
|
||||||
"Password": "Pasfhocal",
|
|
||||||
"Warning!": "Aire!",
|
"Warning!": "Aire!",
|
||||||
"Folder": "Fillteán",
|
"Folder": "Fillteán",
|
||||||
"Headphones": "Cluasáin",
|
"Headphones": "Cluasáin",
|
||||||
|
@ -557,7 +545,6 @@
|
||||||
"Restricted": "Teoranta",
|
"Restricted": "Teoranta",
|
||||||
"Default": "Réamhshocrú",
|
"Default": "Réamhshocrú",
|
||||||
"Register": "Cláraigh",
|
"Register": "Cláraigh",
|
||||||
"Error": "Earráid",
|
|
||||||
"AM": "RN",
|
"AM": "RN",
|
||||||
"PM": "IN",
|
"PM": "IN",
|
||||||
"Dec": "Nol",
|
"Dec": "Nol",
|
||||||
|
@ -581,7 +568,6 @@
|
||||||
"Sun": "Doṁ",
|
"Sun": "Doṁ",
|
||||||
"Send": "Seol",
|
"Send": "Seol",
|
||||||
"Continue": "Lean ar aghaidh",
|
"Continue": "Lean ar aghaidh",
|
||||||
"Analytics": "Anailísiú sonraí",
|
|
||||||
"Add Phone Number": "Cuir uimhir ghutháin",
|
"Add Phone Number": "Cuir uimhir ghutháin",
|
||||||
"Click the button below to confirm adding this phone number.": "Cliceáil an cnaipe thíos chun an uimhir ghutháin nua a dheimhniú.",
|
"Click the button below to confirm adding this phone number.": "Cliceáil an cnaipe thíos chun an uimhir ghutháin nua a dheimhniú.",
|
||||||
"Confirm adding phone number": "Deimhnigh an uimhir ghutháin nua",
|
"Confirm adding phone number": "Deimhnigh an uimhir ghutháin nua",
|
||||||
|
@ -623,9 +609,6 @@
|
||||||
"More": "Níos mó",
|
"More": "Níos mó",
|
||||||
"Decrypting": "Ag Díchriptiú",
|
"Decrypting": "Ag Díchriptiú",
|
||||||
"Access": "Rochtain",
|
"Access": "Rochtain",
|
||||||
"Image": "Íomhá",
|
|
||||||
"Sticker": "Greamán",
|
|
||||||
"Modern": "Comhaimseartha",
|
|
||||||
"Global": "Uilíoch",
|
"Global": "Uilíoch",
|
||||||
"Keyword": "Eochairfhocal",
|
"Keyword": "Eochairfhocal",
|
||||||
"[number]": "[uimhir]",
|
"[number]": "[uimhir]",
|
||||||
|
@ -730,5 +713,24 @@
|
||||||
"%(senderDisplayName)s changed the room name to %(roomName)s.": "D'athraigh %(senderDisplayName)s ainm an tseomra go %(roomName)s.",
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "D'athraigh %(senderDisplayName)s ainm an tseomra go %(roomName)s.",
|
||||||
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "D'athraigh %(senderName)s an leibhéal cumhachta %(powerLevelDiffText)s.",
|
"%(senderName)s changed the power level of %(powerLevelDiffText)s.": "D'athraigh %(senderName)s an leibhéal cumhachta %(powerLevelDiffText)s.",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Ní féidir ceangal leis an bhfreastalaí baile trí HTTP nuair a bhíonn URL HTTPS i mbarra do bhrabhsálaí. Bain úsáid as HTTPS nó <a> scripteanna neamhshábháilte a chumasú </a>.",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Ní féidir ceangal leis an bhfreastalaí baile trí HTTP nuair a bhíonn URL HTTPS i mbarra do bhrabhsálaí. Bain úsáid as HTTPS nó <a> scripteanna neamhshábháilte a chumasú </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.": "Ní féidir ceangal leis an bhfreastalaí baile - seiceáil do nascacht le do thoil, déan cinnte go bhfuil muinín i dteastas <a>SSL do fhreastalaí baile</a>, agus nach bhfuil síneadh brabhsálaí ag cur bac ar iarratais."
|
"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.": "Ní féidir ceangal leis an bhfreastalaí baile - seiceáil do nascacht le do thoil, déan cinnte go bhfuil muinín i dteastas <a>SSL do fhreastalaí baile</a>, agus nach bhfuil síneadh brabhsálaí ag cur bac ar iarratais.",
|
||||||
|
"common": {
|
||||||
|
"about": "Faoi",
|
||||||
|
"analytics": "Anailísiú sonraí",
|
||||||
|
"error": "Earráid",
|
||||||
|
"image": "Íomhá",
|
||||||
|
"modern": "Comhaimseartha",
|
||||||
|
"mute": "Ciúinaigh",
|
||||||
|
"offline": "As líne",
|
||||||
|
"password": "Pasfhocal",
|
||||||
|
"people": "Daoine",
|
||||||
|
"reactions": "Freagartha",
|
||||||
|
"security": "Slándáil",
|
||||||
|
"settings": "Socruithe",
|
||||||
|
"sticker": "Greamán",
|
||||||
|
"success": "Rath",
|
||||||
|
"suggestions": "Moltaí",
|
||||||
|
"unmute": "Stop ag ciúnú",
|
||||||
|
"username": "Ainm úsáideora"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,6 @@
|
||||||
"Enable URL previews by default for participants in this room": "Activar a vista previa de URL por defecto para as participantes nesta sala",
|
"Enable URL previews by default for participants in this room": "Activar a vista previa de URL por defecto para as participantes nesta sala",
|
||||||
"Decline": "Rexeitar",
|
"Decline": "Rexeitar",
|
||||||
"Accept": "Aceptar",
|
"Accept": "Aceptar",
|
||||||
"Error": "Fallo",
|
|
||||||
"Incorrect verification code": "Código de verificación incorrecto",
|
"Incorrect verification code": "Código de verificación incorrecto",
|
||||||
"Submit": "Enviar",
|
"Submit": "Enviar",
|
||||||
"Phone": "Teléfono",
|
"Phone": "Teléfono",
|
||||||
|
@ -104,7 +103,6 @@
|
||||||
"Export E2E room keys": "Exportar chaves E2E da sala",
|
"Export E2E room keys": "Exportar chaves E2E da sala",
|
||||||
"Do you want to set an email address?": "Quere establecer un enderezo de correo electrónico?",
|
"Do you want to set an email address?": "Quere establecer un enderezo de correo electrónico?",
|
||||||
"Current password": "Contrasinal actual",
|
"Current password": "Contrasinal actual",
|
||||||
"Password": "Contrasinal",
|
|
||||||
"New Password": "Novo contrasinal",
|
"New Password": "Novo contrasinal",
|
||||||
"Confirm password": "Confirma o contrasinal",
|
"Confirm password": "Confirma o contrasinal",
|
||||||
"Change Password": "Cambiar contrasinal",
|
"Change Password": "Cambiar contrasinal",
|
||||||
|
@ -125,8 +123,6 @@
|
||||||
"Jump to read receipt": "Ir ao resgardo de lectura",
|
"Jump to read receipt": "Ir ao resgardo de lectura",
|
||||||
"Mention": "Mención",
|
"Mention": "Mención",
|
||||||
"Invite": "Convidar",
|
"Invite": "Convidar",
|
||||||
"Unmute": "Non acalar",
|
|
||||||
"Mute": "Acalar",
|
|
||||||
"Admin Tools": "Ferramentas de administración",
|
"Admin Tools": "Ferramentas de administración",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "e %(count)s outras...",
|
"other": "e %(count)s outras...",
|
||||||
|
@ -155,7 +151,6 @@
|
||||||
"Unknown for %(duration)s": "Descoñecido desde %(duration)s",
|
"Unknown for %(duration)s": "Descoñecido desde %(duration)s",
|
||||||
"Online": "En liña",
|
"Online": "En liña",
|
||||||
"Idle": "En pausa",
|
"Idle": "En pausa",
|
||||||
"Offline": "Sen conexión",
|
|
||||||
"Unknown": "Descoñecido",
|
"Unknown": "Descoñecido",
|
||||||
"Replying": "Respondendo",
|
"Replying": "Respondendo",
|
||||||
"Unnamed room": "Sala sen nome",
|
"Unnamed room": "Sala sen nome",
|
||||||
|
@ -166,7 +161,6 @@
|
||||||
},
|
},
|
||||||
"Join Room": "Unirse a sala",
|
"Join Room": "Unirse a sala",
|
||||||
"Upload avatar": "Subir avatar",
|
"Upload avatar": "Subir avatar",
|
||||||
"Settings": "Axustes",
|
|
||||||
"Forget room": "Esquecer sala",
|
"Forget room": "Esquecer sala",
|
||||||
"Search": "Busca",
|
"Search": "Busca",
|
||||||
"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.": "Non poderá desfacer este cambio xa que está a diminuír a súa autoridade, se é a única persoa con autorización na sala será imposible volver a obter privilexios.",
|
"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.": "Non poderá desfacer este cambio xa que está a diminuír a súa autoridade, se é a única persoa con autorización na sala será imposible volver a obter privilexios.",
|
||||||
|
@ -235,7 +229,6 @@
|
||||||
"Delete widget": "Eliminar widget",
|
"Delete widget": "Eliminar widget",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Create new room": "Crear unha nova sala",
|
"Create new room": "Crear unha nova sala",
|
||||||
"No results": "Sen resultados",
|
|
||||||
"Home": "Inicio",
|
"Home": "Inicio",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -380,12 +373,10 @@
|
||||||
"Uploading %(filename)s": "Subindo %(filename)s",
|
"Uploading %(filename)s": "Subindo %(filename)s",
|
||||||
"Sign out": "Saír",
|
"Sign out": "Saír",
|
||||||
"Failed to change password. Is your password correct?": "Fallo ao cambiar o contrasinal. É correcto o contrasinal?",
|
"Failed to change password. Is your password correct?": "Fallo ao cambiar o contrasinal. É correcto o contrasinal?",
|
||||||
"Success": "Parabéns",
|
|
||||||
"Unable to remove contact information": "Non se puido eliminar a información do contacto",
|
"Unable to remove contact information": "Non se puido eliminar a información do contacto",
|
||||||
"<not supported>": "<non soportado>",
|
"<not supported>": "<non soportado>",
|
||||||
"Import E2E room keys": "Importar chaves E2E da sala",
|
"Import E2E room keys": "Importar chaves E2E da sala",
|
||||||
"Cryptography": "Criptografía",
|
"Cryptography": "Criptografía",
|
||||||
"Analytics": "Análise",
|
|
||||||
"Labs": "Labs",
|
"Labs": "Labs",
|
||||||
"Check for update": "Comprobar actualización",
|
"Check for update": "Comprobar actualización",
|
||||||
"Reject all %(invitedRooms)s invites": "Rexeitar todos os %(invitedRooms)s convites",
|
"Reject all %(invitedRooms)s invites": "Rexeitar todos os %(invitedRooms)s convites",
|
||||||
|
@ -1128,7 +1119,6 @@
|
||||||
"Italics": "Cursiva",
|
"Italics": "Cursiva",
|
||||||
"Code block": "Bloque de código",
|
"Code block": "Bloque de código",
|
||||||
"No recently visited rooms": "Sen salas recentes visitadas",
|
"No recently visited rooms": "Sen salas recentes visitadas",
|
||||||
"People": "Persoas",
|
|
||||||
"Reason: %(reason)s": "Razón: %(reason)s",
|
"Reason: %(reason)s": "Razón: %(reason)s",
|
||||||
"Forget this room": "Esquecer sala",
|
"Forget this room": "Esquecer sala",
|
||||||
"You were banned from %(roomName)s by %(memberName)s": "Foches bloqueada en %(roomName)s por %(memberName)s",
|
"You were banned from %(roomName)s by %(memberName)s": "Foches bloqueada en %(roomName)s por %(memberName)s",
|
||||||
|
@ -1231,7 +1221,6 @@
|
||||||
"Deactivate user": "Desactivar usuaria",
|
"Deactivate user": "Desactivar usuaria",
|
||||||
"Failed to deactivate user": "Fallo ao desactivar a usuaria",
|
"Failed to deactivate user": "Fallo ao desactivar a usuaria",
|
||||||
"This client does not support end-to-end encryption.": "Este cliente non soporta o cifrado extremo-a-extremo.",
|
"This client does not support end-to-end encryption.": "Este cliente non soporta o cifrado extremo-a-extremo.",
|
||||||
"Security": "Seguridade",
|
|
||||||
"Verify by scanning": "Verificar escaneando",
|
"Verify by scanning": "Verificar escaneando",
|
||||||
"Ask %(displayName)s to scan your code:": "Pídelle a %(displayName)s que escanee o teu código:",
|
"Ask %(displayName)s to scan your code:": "Pídelle a %(displayName)s que escanee o teu código:",
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Se non podes escanear o código superior, verifica comparando as emoticonas.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Se non podes escanear o código superior, verifica comparando as emoticonas.",
|
||||||
|
@ -1250,8 +1239,6 @@
|
||||||
"Verification timed out.": "Verificación caducada.",
|
"Verification timed out.": "Verificación caducada.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s cancelou a verificación.",
|
"%(displayName)s cancelled verification.": "%(displayName)s cancelou a verificación.",
|
||||||
"You cancelled verification.": "Cancelaches a verificación.",
|
"You cancelled verification.": "Cancelaches a verificación.",
|
||||||
"Verification cancelled": "Verificación cancelada",
|
|
||||||
"Encryption enabled": "Cifrado activado",
|
|
||||||
"Encryption not enabled": "Cifrado desactivado",
|
"Encryption not enabled": "Cifrado desactivado",
|
||||||
"The encryption used by this room isn't supported.": "O cifrado desta sala non está soportado.",
|
"The encryption used by this room isn't supported.": "O cifrado desta sala non está soportado.",
|
||||||
"React": "Reacciona",
|
"React": "Reacciona",
|
||||||
|
@ -1270,7 +1257,6 @@
|
||||||
"%(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",
|
"Show all": "Mostrar todo",
|
||||||
"Reactions": "Reaccións",
|
|
||||||
"<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",
|
||||||
|
@ -1370,8 +1356,6 @@
|
||||||
"Use a system font": "Usar tipo de letra do sistema",
|
"Use a system font": "Usar tipo de letra do sistema",
|
||||||
"System font name": "Nome da letra do sistema",
|
"System font name": "Nome da letra do sistema",
|
||||||
"Hey you. You're the best!": "Ei ti. Es grande!",
|
"Hey you. You're the best!": "Ei ti. Es grande!",
|
||||||
"Message layout": "Disposición da mensaxe",
|
|
||||||
"Modern": "Moderna",
|
|
||||||
"Power level": "Nivel responsabilidade",
|
"Power level": "Nivel responsabilidade",
|
||||||
"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.": "Verifica este dispositivo para marcalo como confiable. Confiando neste dispositivo permite que ti e outras usuarias estedes máis tranquilas ao utilizar mensaxes cifradas.",
|
"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.": "Verifica este dispositivo para marcalo como confiable. Confiando neste dispositivo permite que ti e outras usuarias estedes máis tranquilas ao utilizar mensaxes cifradas.",
|
||||||
"Verifying this device will mark it as trusted, and users who have verified with you will trust this device.": "Ao verificar este dispositivo marcaralo como confiable, e as usuarias que confiaron en ti tamén confiarán nel.",
|
"Verifying this device will mark it as trusted, and users who have verified with you will trust this device.": "Ao verificar este dispositivo marcaralo como confiable, e as usuarias que confiaron en ti tamén confiarán nel.",
|
||||||
|
@ -1385,7 +1369,6 @@
|
||||||
"Failed to find the following users": "Non atopamos as seguintes usuarias",
|
"Failed to find the following users": "Non atopamos as seguintes usuarias",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "As seguintes usuarias poderían non existir ou non son válidas, e non se poden convidar: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "As seguintes usuarias poderían non existir ou non son válidas, e non se poden convidar: %(csvNames)s",
|
||||||
"Recent Conversations": "Conversas recentes",
|
"Recent Conversations": "Conversas recentes",
|
||||||
"Suggestions": "Suxestións",
|
|
||||||
"Recently Direct Messaged": "Mensaxes Directas recentes",
|
"Recently Direct Messaged": "Mensaxes Directas recentes",
|
||||||
"Go": "Ir",
|
"Go": "Ir",
|
||||||
"a new master key signature": "unha nova firma con chave mestra",
|
"a new master key signature": "unha nova firma con chave mestra",
|
||||||
|
@ -1481,7 +1464,6 @@
|
||||||
"Enter password": "Escribe contrasinal",
|
"Enter password": "Escribe contrasinal",
|
||||||
"Nice, strong password!": "Ben, bo contrasinal!",
|
"Nice, strong password!": "Ben, bo contrasinal!",
|
||||||
"Password is allowed, but unsafe": "O contrasinal é admisible, pero inseguro",
|
"Password is allowed, but unsafe": "O contrasinal é admisible, pero inseguro",
|
||||||
"Username": "Nome de usuaria",
|
|
||||||
"Use an email address to recover your account": "Usa un enderezo de email para recuperar a túa conta",
|
"Use an email address to recover your account": "Usa un enderezo de email para recuperar a túa conta",
|
||||||
"Enter email address (required on this homeserver)": "Escribe o enderzo de email (requerido neste servidor)",
|
"Enter email address (required on this homeserver)": "Escribe o enderzo de email (requerido neste servidor)",
|
||||||
"Doesn't look like a valid email address": "Non semella un enderezo válido",
|
"Doesn't look like a valid email address": "Non semella un enderezo válido",
|
||||||
|
@ -1681,7 +1663,6 @@
|
||||||
"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",
|
||||||
"About": "Acerca de",
|
|
||||||
"Room settings": "Axustes da sala",
|
"Room settings": "Axustes da sala",
|
||||||
"Take a picture": "Tomar unha foto",
|
"Take a picture": "Tomar unha foto",
|
||||||
"Unpin": "Desafixar",
|
"Unpin": "Desafixar",
|
||||||
|
@ -1737,7 +1718,6 @@
|
||||||
"Send feedback": "Enviar comentario",
|
"Send feedback": "Enviar comentario",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: se inicias un novo informe, envía <debugLogsLink>rexistros de depuración</debugLogsLink> para axudarnos a investigar o problema.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: se inicias un novo informe, envía <debugLogsLink>rexistros de depuración</debugLogsLink> para axudarnos a investigar o problema.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Primeiro revisa <existingIssuesLink>a lista existente de fallo en Github</existingIssuesLink>. Non hai nada? <newIssueLink>Abre un novo</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Primeiro revisa <existingIssuesLink>a lista existente de fallo en Github</existingIssuesLink>. Non hai nada? <newIssueLink>Abre un novo</newIssueLink>.",
|
||||||
"Report a bug": "Informar dun fallo",
|
|
||||||
"Comment": "Comentar",
|
"Comment": "Comentar",
|
||||||
"%(senderName)s ended the call": "%(senderName)s finalizou a chamada",
|
"%(senderName)s ended the call": "%(senderName)s finalizou a chamada",
|
||||||
"You ended the call": "Finalizaches a chamada",
|
"You ended the call": "Finalizaches a chamada",
|
||||||
|
@ -2215,7 +2195,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",
|
||||||
"Room name": "Nome da sala",
|
|
||||||
"Support": "Axuda",
|
"Support": "Axuda",
|
||||||
"Random": "Ao chou",
|
"Random": "Ao chou",
|
||||||
"Welcome to <name/>": "Benvida a <name/>",
|
"Welcome to <name/>": "Benvida a <name/>",
|
||||||
|
@ -2389,7 +2368,6 @@
|
||||||
"Or send invite link": "Ou envía ligazón de convite",
|
"Or send invite link": "Ou envía ligazón de convite",
|
||||||
"Some suggestions may be hidden for privacy.": "Algunhas suxestións poderían estar agochadas por privacidade.",
|
"Some suggestions may be hidden for privacy.": "Algunhas suxestións poderían estar agochadas por privacidade.",
|
||||||
"Search for rooms or people": "Busca salas ou persoas",
|
"Search for rooms or people": "Busca salas ou persoas",
|
||||||
"Forward message": "Reenviar mensaxe",
|
|
||||||
"Sent": "Enviado",
|
"Sent": "Enviado",
|
||||||
"You don't have permission to do this": "Non tes permiso para facer isto",
|
"You don't have permission to do this": "Non tes permiso para facer isto",
|
||||||
"Error - Mixed content": "Erro - Contido variado",
|
"Error - Mixed content": "Erro - Contido variado",
|
||||||
|
@ -2516,8 +2494,6 @@
|
||||||
"Connection failed": "Fallou a conexión",
|
"Connection failed": "Fallou a conexión",
|
||||||
"Could not connect media": "Non se puido conectar o multimedia",
|
"Could not connect media": "Non se puido conectar o multimedia",
|
||||||
"Message bubbles": "Burbullas con mensaxes",
|
"Message bubbles": "Burbullas con mensaxes",
|
||||||
"Image": "Imaxe",
|
|
||||||
"Sticker": "Adhesivo",
|
|
||||||
"Error downloading audio": "Erro ao descargar o audio",
|
"Error downloading audio": "Erro ao descargar o audio",
|
||||||
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>Ten en conta que a actualización creará unha nova versión da sala</b>. Tódalas mensaxes actuais permanecerán nesta sala arquivada.",
|
"<b>Please note upgrading will make a new version of the room</b>. All current messages will stay in this archived room.": "<b>Ten en conta que a actualización creará unha nova versión da sala</b>. Tódalas mensaxes actuais permanecerán nesta sala arquivada.",
|
||||||
"Automatically invite members from this room to the new one": "Convidar automáticamente membros desta sala á nova sala",
|
"Automatically invite members from this room to the new one": "Convidar automáticamente membros desta sala á nova sala",
|
||||||
|
@ -2638,7 +2614,6 @@
|
||||||
"Change space avatar": "Cambiar o avatar do espazo",
|
"Change space avatar": "Cambiar o avatar do espazo",
|
||||||
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Calquera en <spaceName/> pode atopar e unirse. Tamén podes elexir outros espazos.",
|
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Calquera en <spaceName/> pode atopar e unirse. Tamén podes elexir outros espazos.",
|
||||||
"Message didn't send. Click for info.": "Non se enviou a mensaxe. Click para info.",
|
"Message didn't send. Click for info.": "Non se enviou a mensaxe. Click para info.",
|
||||||
"Message": "Mensaxe",
|
|
||||||
"To join a space you'll need an invite.": "Para unirte a un espazo precisas un convite.",
|
"To join a space you'll need an invite.": "Para unirte a un espazo precisas un convite.",
|
||||||
"Would you like to leave the rooms in this space?": "Queres saír destas salas neste espazo?",
|
"Would you like to leave the rooms in this space?": "Queres saír destas salas neste espazo?",
|
||||||
"You are about to leave <spaceName/>.": "Vas saír de <spaceName/>.",
|
"You are about to leave <spaceName/>.": "Vas saír de <spaceName/>.",
|
||||||
|
@ -3172,7 +3147,6 @@
|
||||||
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s non ten permiso para obter a túa localización. Concede acceso á localización nos axustes do navegador.",
|
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s non ten permiso para obter a túa localización. Concede acceso á localización nos axustes do navegador.",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Os rexistros de depuración conteñen datos de uso da aplicación incluíndo o teu nome de usuaria, os IDs ou alias das salas que visitaches, os elementos da IU cos que interactuaches así como os identificadores de outras usuarias.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Os rexistros de depuración conteñen datos de uso da aplicación incluíndo o teu nome de usuaria, os IDs ou alias das salas que visitaches, os elementos da IU cos que interactuaches así como os identificadores de outras usuarias.",
|
||||||
"Developer tools": "Ferramentas desenvolvemento",
|
"Developer tools": "Ferramentas desenvolvemento",
|
||||||
"Video": "Vídeo",
|
|
||||||
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s é experimental no navegador web móbil. Para ter unha mellor experiencia e as últimas características usa a nosa app nativa.",
|
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s é experimental no navegador web móbil. Para ter unha mellor experiencia e as últimas características usa a nosa app nativa.",
|
||||||
"User may or may not exist": "A usuaria podería non existir",
|
"User may or may not exist": "A usuaria podería non existir",
|
||||||
"User does not exist": "A usuaria non existe",
|
"User does not exist": "A usuaria non existe",
|
||||||
|
@ -3494,6 +3468,34 @@
|
||||||
"%(days)sd %(hours)sh %(minutes)sm %(seconds)ss": "%(days)sd %(hours)sh %(minutes)sm %(seconds)ss",
|
"%(days)sd %(hours)sh %(minutes)sm %(seconds)ss": "%(days)sd %(hours)sh %(minutes)sm %(seconds)ss",
|
||||||
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss restantes",
|
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss restantes",
|
||||||
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sh %(minutes)sm %(seconds)ss restantes",
|
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sh %(minutes)sm %(seconds)ss restantes",
|
||||||
|
"common": {
|
||||||
|
"about": "Acerca de",
|
||||||
|
"analytics": "Análise",
|
||||||
|
"encryption_enabled": "Cifrado activado",
|
||||||
|
"error": "Fallo",
|
||||||
|
"forward_message": "Reenviar mensaxe",
|
||||||
|
"image": "Imaxe",
|
||||||
|
"message": "Mensaxe",
|
||||||
|
"message_layout": "Disposición da mensaxe",
|
||||||
|
"modern": "Moderna",
|
||||||
|
"mute": "Acalar",
|
||||||
|
"no_results": "Sen resultados",
|
||||||
|
"offline": "Sen conexión",
|
||||||
|
"password": "Contrasinal",
|
||||||
|
"people": "Persoas",
|
||||||
|
"reactions": "Reaccións",
|
||||||
|
"report_a_bug": "Informar dun fallo",
|
||||||
|
"room_name": "Nome da sala",
|
||||||
|
"security": "Seguridade",
|
||||||
|
"settings": "Axustes",
|
||||||
|
"sticker": "Adhesivo",
|
||||||
|
"success": "Parabéns",
|
||||||
|
"suggestions": "Suxestións",
|
||||||
|
"unmute": "Non acalar",
|
||||||
|
"username": "Nome de usuaria",
|
||||||
|
"verification_cancelled": "Verificación cancelada",
|
||||||
|
"video": "Vídeo"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menú de usuaria"
|
"user_menu": "Menú de usuaria"
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
"Search": "חפש",
|
"Search": "חפש",
|
||||||
"Dismiss": "התעלם",
|
"Dismiss": "התעלם",
|
||||||
"powered by Matrix": "מופעל ע\"י Matrix",
|
"powered by Matrix": "מופעל ע\"י Matrix",
|
||||||
"Error": "שגיאה",
|
|
||||||
"Remove": "הסר",
|
"Remove": "הסר",
|
||||||
"Close": "סגור",
|
"Close": "סגור",
|
||||||
"Cancel": "ביטול",
|
"Cancel": "ביטול",
|
||||||
|
@ -47,7 +46,6 @@
|
||||||
"Failed to change password. Is your password correct?": "שינוי הסיסמה נכשל. האם הסיסמה שלך נכונה?",
|
"Failed to change password. Is your password correct?": "שינוי הסיסמה נכשל. האם הסיסמה שלך נכונה?",
|
||||||
"unknown error code": "קוד שגיאה לא מוכר",
|
"unknown error code": "קוד שגיאה לא מוכר",
|
||||||
"Failed to forget room %(errCode)s": "נכשל בעת בקשה לשכוח חדר %(errCode)s",
|
"Failed to forget room %(errCode)s": "נכשל בעת בקשה לשכוח חדר %(errCode)s",
|
||||||
"Mute": "השתק",
|
|
||||||
"Leave": "לעזוב",
|
"Leave": "לעזוב",
|
||||||
"Favourite": "מועדף",
|
"Favourite": "מועדף",
|
||||||
"Notifications": "התראות",
|
"Notifications": "התראות",
|
||||||
|
@ -223,7 +221,6 @@
|
||||||
"The call was answered on another device.": "השיחה נענתה במכשיר אחר.",
|
"The call was answered on another device.": "השיחה נענתה במכשיר אחר.",
|
||||||
"Answered Elsewhere": "נענה במקום אחר",
|
"Answered Elsewhere": "נענה במקום אחר",
|
||||||
"The call could not be established": "לא ניתן להתקשר",
|
"The call could not be established": "לא ניתן להתקשר",
|
||||||
"Analytics": "אנליטיקה",
|
|
||||||
"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 /> לאשר מייל או טלפון, אבל לשרת אין כללי שרות.",
|
||||||
"Identity server has no terms of service": "לשרת הזיהוי אין כללי שרות",
|
"Identity server has no terms of service": "לשרת הזיהוי אין כללי שרות",
|
||||||
"Unnamed Room": "חדר ללא שם",
|
"Unnamed Room": "חדר ללא שם",
|
||||||
|
@ -1121,7 +1118,6 @@
|
||||||
"collapse": "אחד",
|
"collapse": "אחד",
|
||||||
"expand": "הרחב",
|
"expand": "הרחב",
|
||||||
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "אנא <newIssueLink> צור בעיה חדשה </newIssueLink> ב- GitHub כדי שנוכל לחקור את הבאג הזה.",
|
"Please <newIssueLink>create a new issue</newIssueLink> on GitHub so that we can investigate this bug.": "אנא <newIssueLink> צור בעיה חדשה </newIssueLink> ב- GitHub כדי שנוכל לחקור את הבאג הזה.",
|
||||||
"No results": "אין תוצאות",
|
|
||||||
"Join": "הצטרפות",
|
"Join": "הצטרפות",
|
||||||
"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 אינה תומכת בצפייה בקבצים מוצפנים מסוימים",
|
||||||
|
@ -1130,7 +1126,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>",
|
||||||
"Reactions": "תגובות",
|
|
||||||
"Show all": "הצג הכל",
|
"Show all": "הצג הכל",
|
||||||
"Error decrypting video": "שגיאה בפענוח וידאו",
|
"Error decrypting video": "שגיאה בפענוח וידאו",
|
||||||
"You sent a verification request": "שלחתם בקשה לקוד אימות",
|
"You sent a verification request": "שלחתם בקשה לקוד אימות",
|
||||||
|
@ -1162,8 +1157,6 @@
|
||||||
"The encryption used by this room isn't supported.": "ההצפנה בה משתמשים בחדר זה אינה נתמכת.",
|
"The encryption used by this room isn't supported.": "ההצפנה בה משתמשים בחדר זה אינה נתמכת.",
|
||||||
"Encryption not enabled": "ההצפנה לא מופעלת",
|
"Encryption not enabled": "ההצפנה לא מופעלת",
|
||||||
"Ignored attempt to disable encryption": "התעלם מהניסיון להשבית את ההצפנה",
|
"Ignored attempt to disable encryption": "התעלם מהניסיון להשבית את ההצפנה",
|
||||||
"Encryption enabled": "הצפנה הופעלה",
|
|
||||||
"Verification cancelled": "אימות בוטל",
|
|
||||||
"You cancelled verification.": "בטלתם את האימות.",
|
"You cancelled verification.": "בטלתם את האימות.",
|
||||||
"%(displayName)s cancelled verification.": "הצג אימותים מבוטלים %(displayName)s.",
|
"%(displayName)s cancelled verification.": "הצג אימותים מבוטלים %(displayName)s.",
|
||||||
"Verification timed out.": "תם הזמן הקצוב לאימות.",
|
"Verification timed out.": "תם הזמן הקצוב לאימות.",
|
||||||
|
@ -1180,7 +1173,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.": "אם אינך יכול לסרוק את הקוד לעיל, ודא על ידי השוואת אמוג'י ייחודי.",
|
||||||
"Ask %(displayName)s to scan your code:": "בקש מ- %(displayName)s לסרוק את הקוד שלכם:",
|
"Ask %(displayName)s to scan your code:": "בקש מ- %(displayName)s לסרוק את הקוד שלכם:",
|
||||||
"Verify by scanning": "אמת על ידי סריקה",
|
"Verify by scanning": "אמת על ידי סריקה",
|
||||||
"Security": "אבטחה",
|
|
||||||
"This client does not support end-to-end encryption.": "לקוח זה אינו תומך בהצפנה מקצה לקצה.",
|
"This client does not support end-to-end encryption.": "לקוח זה אינו תומך בהצפנה מקצה לקצה.",
|
||||||
"Failed to deactivate user": "השבתת משתמש נכשלה",
|
"Failed to deactivate user": "השבתת משתמש נכשלה",
|
||||||
"Deactivate user?": "השבת משתמש?",
|
"Deactivate user?": "השבת משתמש?",
|
||||||
|
@ -1189,7 +1181,6 @@
|
||||||
"Are you sure?": "האם אתם בטוחים?",
|
"Are you sure?": "האם אתם בטוחים?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "לא תוכל לבטל את השינוי הזה מכיוון שאתה מקדם את המשתמש לאותה רמת ניהול כמוך.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "לא תוכל לבטל את השינוי הזה מכיוון שאתה מקדם את המשתמש לאותה רמת ניהול כמוך.",
|
||||||
"Failed to change power level": "שינוי דרגת מנהל נכשל",
|
"Failed to change power level": "שינוי דרגת מנהל נכשל",
|
||||||
"Unmute": "בטל השתקה",
|
|
||||||
"Failed to mute user": "כשלון בהשתקת משתמש",
|
"Failed to mute user": "כשלון בהשתקת משתמש",
|
||||||
"Failed to ban user": "כשלון בחסימת משתמש",
|
"Failed to ban user": "כשלון בחסימת משתמש",
|
||||||
"Remove recent messages": "הסר הודעות אחרונות",
|
"Remove recent messages": "הסר הודעות אחרונות",
|
||||||
|
@ -1222,7 +1213,6 @@
|
||||||
"Trusted": "אמין",
|
"Trusted": "אמין",
|
||||||
"Room settings": "הגדרות חדר",
|
"Room settings": "הגדרות חדר",
|
||||||
"Share room": "שתף חדר",
|
"Share room": "שתף חדר",
|
||||||
"About": "אודות",
|
|
||||||
"Not encrypted": "לא מוצפן",
|
"Not encrypted": "לא מוצפן",
|
||||||
"Add widgets, bridges & bots": "הוסף יישומונים, גשרים ובוטים",
|
"Add widgets, bridges & bots": "הוסף יישומונים, גשרים ובוטים",
|
||||||
"Edit widgets, bridges & bots": "ערוך ישומונים, גשרים ובוטים",
|
"Edit widgets, bridges & bots": "ערוך ישומונים, גשרים ובוטים",
|
||||||
|
@ -1313,7 +1303,6 @@
|
||||||
"Create new room": "צור חדר חדש",
|
"Create new room": "צור חדר חדש",
|
||||||
"Add room": "הוסף חדר",
|
"Add room": "הוסף חדר",
|
||||||
"Start chat": "התחל שיחה",
|
"Start chat": "התחל שיחה",
|
||||||
"People": "אנשים",
|
|
||||||
"Favourites": "מועדפים",
|
"Favourites": "מועדפים",
|
||||||
"Invites": "הזמנות",
|
"Invites": "הזמנות",
|
||||||
"Show Widgets": "הצג ישומונים",
|
"Show Widgets": "הצג ישומונים",
|
||||||
|
@ -1328,7 +1317,6 @@
|
||||||
"Room %(name)s": "חדר %(name)s",
|
"Room %(name)s": "חדר %(name)s",
|
||||||
"Replying": "משיבים",
|
"Replying": "משיבים",
|
||||||
"Unknown": "לא ידוע",
|
"Unknown": "לא ידוע",
|
||||||
"Offline": "לא מחובר",
|
|
||||||
"Idle": "לא פעיל",
|
"Idle": "לא פעיל",
|
||||||
"Unknown for %(duration)s": "זמן לא ידוע %(duration)s",
|
"Unknown for %(duration)s": "זמן לא ידוע %(duration)s",
|
||||||
"Offline for %(duration)s": "לא מחובר %(duration)s",
|
"Offline for %(duration)s": "לא מחובר %(duration)s",
|
||||||
|
@ -1600,14 +1588,11 @@
|
||||||
"Account": "חשבון",
|
"Account": "חשבון",
|
||||||
"Phone numbers": "מספרי טלפון",
|
"Phone numbers": "מספרי טלפון",
|
||||||
"Email addresses": "כתובות דוא\"ל",
|
"Email addresses": "כתובות דוא\"ל",
|
||||||
"Success": "הצלחה",
|
|
||||||
"Appearance Settings only affect this %(brand)s session.": "התאמת תצוגה משפיעה רק על התחברות זו %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "התאמת תצוגה משפיעה רק על התחברות זו %(brand)s.",
|
||||||
"Customise your appearance": "התאם את התצוגה שלך",
|
"Customise your appearance": "התאם את התצוגה שלך",
|
||||||
"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 ים ינסו להשתמש בו.",
|
||||||
"Show advanced": "הצג מתקדם",
|
"Show advanced": "הצג מתקדם",
|
||||||
"Hide advanced": "הסתר מתקדם",
|
"Hide advanced": "הסתר מתקדם",
|
||||||
"Modern": "מודרני",
|
|
||||||
"Message layout": "תבנית הודעה",
|
|
||||||
"Theme": "ערכת נושא",
|
"Theme": "ערכת נושא",
|
||||||
"Add theme": "הוסף ערכת נושא חדשה",
|
"Add theme": "הוסף ערכת נושא חדשה",
|
||||||
"Custom theme URL": "כתובת ערכת נושא מותאמת אישית",
|
"Custom theme URL": "כתובת ערכת נושא מותאמת אישית",
|
||||||
|
@ -1657,7 +1642,6 @@
|
||||||
"unexpected type": "סוג בלתי צפוי",
|
"unexpected type": "סוג בלתי צפוי",
|
||||||
"well formed": "מעוצב היטב",
|
"well formed": "מעוצב היטב",
|
||||||
"Back up your keys before signing out to avoid losing them.": "גבה את המפתחות שלך לפני היציאה כדי להימנע מלאבד אותם.",
|
"Back up your keys before signing out to avoid losing them.": "גבה את המפתחות שלך לפני היציאה כדי להימנע מלאבד אותם.",
|
||||||
"Settings": "הגדרות",
|
|
||||||
"Favourited": "מועדפים",
|
"Favourited": "מועדפים",
|
||||||
"Forget Room": "שכח חדר",
|
"Forget Room": "שכח חדר",
|
||||||
"Notification options": "אפשרויות התרעות",
|
"Notification options": "אפשרויות התרעות",
|
||||||
|
@ -1730,7 +1714,6 @@
|
||||||
"Sign in with": "כניסה עם",
|
"Sign in with": "כניסה עם",
|
||||||
"Forgot password?": "שכחת את הסיסמה?",
|
"Forgot password?": "שכחת את הסיסמה?",
|
||||||
"Phone": "טלפון",
|
"Phone": "טלפון",
|
||||||
"Username": "שם משתמש",
|
|
||||||
"Email": "דוא\"ל",
|
"Email": "דוא\"ל",
|
||||||
"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": "מספר הטלפון הזה לא נראה בסדר, אנא בדוק ונסה שוב",
|
||||||
"Enter phone number": "הזן טלפון",
|
"Enter phone number": "הזן טלפון",
|
||||||
|
@ -1748,7 +1731,6 @@
|
||||||
"Please review and accept the policies of this homeserver:": "אנא עיין וקבל את המדיניות של שרת בית זה:",
|
"Please review and accept the policies of this homeserver:": "אנא עיין וקבל את המדיניות של שרת בית זה:",
|
||||||
"Please review and accept all of the homeserver's policies": "אנא עיין וקבל את כל המדיניות של שרת הבית",
|
"Please review and accept all of the homeserver's policies": "אנא עיין וקבל את כל המדיניות של שרת הבית",
|
||||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "חסר מפתח ציבורי של captcha בתצורת שרת הבית. אנא דווח על כך למנהל שרת הבית שלך.",
|
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "חסר מפתח ציבורי של captcha בתצורת שרת הבית. אנא דווח על כך למנהל שרת הבית שלך.",
|
||||||
"Password": "סיסמה",
|
|
||||||
"Confirm your identity by entering your account password below.": "אשר את זהותך על ידי הזנת סיסמת החשבון שלך למטה.",
|
"Confirm your identity by entering your account password below.": "אשר את זהותך על ידי הזנת סיסמת החשבון שלך למטה.",
|
||||||
"Country Dropdown": "נפתח במדינה",
|
"Country Dropdown": "נפתח במדינה",
|
||||||
"This homeserver would like to make sure you are not a robot.": "שרת בית זה רוצה לוודא שאתה לא רובוט.",
|
"This homeserver would like to make sure you are not a robot.": "שרת בית זה רוצה לוודא שאתה לא רובוט.",
|
||||||
|
@ -1921,7 +1903,6 @@
|
||||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "התחל שיחה עם מישהו המשתמש בשמו, כתובת הדוא\"ל או שם המשתמש שלו (כמו <userId/>).",
|
"Start a conversation with someone using their name, email address or username (like <userId/>).": "התחל שיחה עם מישהו המשתמש בשמו, כתובת הדוא\"ל או שם המשתמש שלו (כמו <userId/>).",
|
||||||
"Direct Messages": "הודעות ישירות",
|
"Direct Messages": "הודעות ישירות",
|
||||||
"Recently Direct Messaged": "הודעות ישירות לאחרונה",
|
"Recently Direct Messaged": "הודעות ישירות לאחרונה",
|
||||||
"Suggestions": "הצעות",
|
|
||||||
"Recent Conversations": "שיחות אחרונות",
|
"Recent Conversations": "שיחות אחרונות",
|
||||||
"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",
|
||||||
"Failed to find the following users": "מציאת המשתמשים הבאים נכשלה",
|
"Failed to find the following users": "מציאת המשתמשים הבאים נכשלה",
|
||||||
|
@ -1941,7 +1922,6 @@
|
||||||
"Send feedback": "שלח משוב",
|
"Send feedback": "שלח משוב",
|
||||||
"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> כדי לעזור לנו לאתר את הבעיה.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "אנא צפה תחילה ב <existingIssuesLink> באגים קיימים ב- Github </existingIssuesLink>. אין התאמה? <newIssueLink> התחל חדש </newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "אנא צפה תחילה ב <existingIssuesLink> באגים קיימים ב- Github </existingIssuesLink>. אין התאמה? <newIssueLink> התחל חדש </newIssueLink>.",
|
||||||
"Report a bug": "דיווח על תקלה",
|
|
||||||
"Feedback": "משוב",
|
"Feedback": "משוב",
|
||||||
"Comment": "תגובה",
|
"Comment": "תגובה",
|
||||||
"Feedback sent": "משוב נשלח",
|
"Feedback sent": "משוב נשלח",
|
||||||
|
@ -2249,7 +2229,6 @@
|
||||||
"Error fetching file": "שגיאה באחזור הקובץ",
|
"Error fetching file": "שגיאה באחזור הקובץ",
|
||||||
"Current Timeline": "ציר הזמן הנוכחי",
|
"Current Timeline": "ציר הזמן הנוכחי",
|
||||||
"Voice Message": "הודעה קולית",
|
"Voice Message": "הודעה קולית",
|
||||||
"Sticker": "מַדבֵּקָה",
|
|
||||||
"Send voice message": "שלח הודעה קולית",
|
"Send voice message": "שלח הודעה קולית",
|
||||||
"Reply to thread…": "תשובה לשרשור…",
|
"Reply to thread…": "תשובה לשרשור…",
|
||||||
"Send message": "לשלוח הודעה",
|
"Send message": "לשלוח הודעה",
|
||||||
|
@ -2314,7 +2293,6 @@
|
||||||
"sends rainfall": "שלח גשם נופל",
|
"sends rainfall": "שלח גשם נופל",
|
||||||
"Waiting for you to verify on your other device…": "ממתין לאישור שלך במכשיר השני…",
|
"Waiting for you to verify on your other device…": "ממתין לאישור שלך במכשיר השני…",
|
||||||
"Confirm the emoji below are displayed on both devices, in the same order:": "ודא ואשר שהסמלים הבאים מופיעים בשני המכשירים ובאותו הסדר:",
|
"Confirm the emoji below are displayed on both devices, in the same order:": "ודא ואשר שהסמלים הבאים מופיעים בשני המכשירים ובאותו הסדר:",
|
||||||
"Video": "וידאו",
|
|
||||||
"Show chat effects (animations when receiving e.g. confetti)": "הצג אפקטים בצ'אט (אנימציות, למשל קונפטי)",
|
"Show chat effects (animations when receiving e.g. confetti)": "הצג אפקטים בצ'אט (אנימציות, למשל קונפטי)",
|
||||||
"Use Ctrl + F to search timeline": "השתמש ב Ctrl + F כדי לחפש הודעות",
|
"Use Ctrl + F to search timeline": "השתמש ב Ctrl + 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": "קפוץ לתחתית השיחה בעת שליחת הודעה",
|
||||||
|
@ -2503,7 +2481,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": "יצירת חדר חלל עבודה ראשוני נכשלה",
|
||||||
"Room name": "שם חדר",
|
|
||||||
"Support": "תמיכה",
|
"Support": "תמיכה",
|
||||||
"Random": "אקראי",
|
"Random": "אקראי",
|
||||||
"Verify this device": "אמתו את מכשיר זה",
|
"Verify this device": "אמתו את מכשיר זה",
|
||||||
|
@ -2549,7 +2526,6 @@
|
||||||
"Feedback sent! Thanks, we appreciate it!": "משוב נשלח! תודה, אנחנו מודים לכם",
|
"Feedback sent! Thanks, we appreciate it!": "משוב נשלח! תודה, אנחנו מודים לכם",
|
||||||
"Search for rooms or people": "חפשו אנשים או חדרים",
|
"Search for rooms or people": "חפשו אנשים או חדרים",
|
||||||
"Message preview": "צפו בהודעה",
|
"Message preview": "צפו בהודעה",
|
||||||
"Forward message": "העבירו את ההודעה",
|
|
||||||
"Published addresses can be used by anyone on any server to join your room.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף לחלל העבודה שלכם.",
|
"Published addresses can be used by anyone on any server to join your room.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף לחלל העבודה שלכם.",
|
||||||
"Published addresses can be used by anyone on any server to join your space.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף למרחב העבודה שלכם.",
|
"Published addresses can be used by anyone on any server to join your space.": "כל אחד בכל שרת יכול להשתמש בכתובות שפורסמו כדי להצטרף למרחב העבודה שלכם.",
|
||||||
"Include Attachments": "כלול קבצים מצורפים",
|
"Include Attachments": "כלול קבצים מצורפים",
|
||||||
|
@ -2768,6 +2744,32 @@
|
||||||
"Room directory": "רשימת חדרים",
|
"Room directory": "רשימת חדרים",
|
||||||
"Enable Markdown": "אפשר Markdown",
|
"Enable Markdown": "אפשר Markdown",
|
||||||
"New room": "חדר חדש",
|
"New room": "חדר חדש",
|
||||||
|
"common": {
|
||||||
|
"about": "אודות",
|
||||||
|
"analytics": "אנליטיקה",
|
||||||
|
"encryption_enabled": "הצפנה הופעלה",
|
||||||
|
"error": "שגיאה",
|
||||||
|
"forward_message": "העבירו את ההודעה",
|
||||||
|
"message_layout": "תבנית הודעה",
|
||||||
|
"modern": "מודרני",
|
||||||
|
"mute": "השתק",
|
||||||
|
"no_results": "אין תוצאות",
|
||||||
|
"offline": "לא מחובר",
|
||||||
|
"password": "סיסמה",
|
||||||
|
"people": "אנשים",
|
||||||
|
"reactions": "תגובות",
|
||||||
|
"report_a_bug": "דיווח על תקלה",
|
||||||
|
"room_name": "שם חדר",
|
||||||
|
"security": "אבטחה",
|
||||||
|
"settings": "הגדרות",
|
||||||
|
"sticker": "מַדבֵּקָה",
|
||||||
|
"success": "הצלחה",
|
||||||
|
"suggestions": "הצעות",
|
||||||
|
"unmute": "בטל השתקה",
|
||||||
|
"username": "שם משתמש",
|
||||||
|
"verification_cancelled": "אימות בוטל",
|
||||||
|
"video": "וידאו"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "תפריט משתמש"
|
"user_menu": "תפריט משתמש"
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "ईमेल आईडी सत्यापित नही हो पाया: कृपया सुनिश्चित कर लें कि आपने ईमेल में मौजूद लिंक पर क्लिक किया है",
|
"Failed to verify email address: make sure you clicked the link in the email": "ईमेल आईडी सत्यापित नही हो पाया: कृपया सुनिश्चित कर लें कि आपने ईमेल में मौजूद लिंक पर क्लिक किया है",
|
||||||
"Dismiss": "खारिज",
|
"Dismiss": "खारिज",
|
||||||
"powered by Matrix": "मैट्रिक्स द्वारा संचालित",
|
"powered by Matrix": "मैट्रिक्स द्वारा संचालित",
|
||||||
"Analytics": "एनालिटिक्स",
|
|
||||||
"Call Failed": "कॉल विफल",
|
"Call Failed": "कॉल विफल",
|
||||||
"You cannot place a call with yourself.": "आप अपने साथ कॉल नहीं कर सकते हैं।",
|
"You cannot place a call with yourself.": "आप अपने साथ कॉल नहीं कर सकते हैं।",
|
||||||
"Permission Required": "अनुमति आवश्यक है",
|
"Permission Required": "अनुमति आवश्यक है",
|
||||||
|
@ -128,7 +127,6 @@
|
||||||
"Messages sent by bot": "रोबॉट द्वारा भेजे गए संदेश",
|
"Messages sent by bot": "रोबॉट द्वारा भेजे गए संदेश",
|
||||||
"Decline": "पतन",
|
"Decline": "पतन",
|
||||||
"Accept": "स्वीकार",
|
"Accept": "स्वीकार",
|
||||||
"Error": "त्रुटि",
|
|
||||||
"Incorrect verification code": "गलत सत्यापन कोड",
|
"Incorrect verification code": "गलत सत्यापन कोड",
|
||||||
"Submit": "जमा करें",
|
"Submit": "जमा करें",
|
||||||
"Phone": "फ़ोन",
|
"Phone": "फ़ोन",
|
||||||
|
@ -140,7 +138,6 @@
|
||||||
"Export E2E room keys": "E2E रूम कुंजी निर्यात करें",
|
"Export E2E room keys": "E2E रूम कुंजी निर्यात करें",
|
||||||
"Do you want to set an email address?": "क्या आप एक ईमेल पता सेट करना चाहते हैं?",
|
"Do you want to set an email address?": "क्या आप एक ईमेल पता सेट करना चाहते हैं?",
|
||||||
"Current password": "वर्तमान पासवर्ड",
|
"Current password": "वर्तमान पासवर्ड",
|
||||||
"Password": "पासवर्ड",
|
|
||||||
"New Password": "नया पासवर्ड",
|
"New Password": "नया पासवर्ड",
|
||||||
"Confirm password": "पासवर्ड की पुष्टि कीजिये",
|
"Confirm password": "पासवर्ड की पुष्टि कीजिये",
|
||||||
"Change Password": "पासवर्ड बदलें",
|
"Change Password": "पासवर्ड बदलें",
|
||||||
|
@ -202,8 +199,6 @@
|
||||||
"Mention": "उल्लेख",
|
"Mention": "उल्लेख",
|
||||||
"Invite": "आमंत्रण",
|
"Invite": "आमंत्रण",
|
||||||
"Share Link to User": "उपयोगकर्ता को लिंक साझा करें",
|
"Share Link to User": "उपयोगकर्ता को लिंक साझा करें",
|
||||||
"Unmute": "अनम्यूट",
|
|
||||||
"Mute": "म्यूट",
|
|
||||||
"Admin Tools": "व्यवस्थापक उपकरण",
|
"Admin Tools": "व्यवस्थापक उपकरण",
|
||||||
"Close": "बंद",
|
"Close": "बंद",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
|
@ -235,7 +230,6 @@
|
||||||
"Unknown for %(duration)s": "%(duration)s के लिए अज्ञात",
|
"Unknown for %(duration)s": "%(duration)s के लिए अज्ञात",
|
||||||
"Online": "ऑनलाइन",
|
"Online": "ऑनलाइन",
|
||||||
"Idle": "निष्क्रिय",
|
"Idle": "निष्क्रिय",
|
||||||
"Offline": "ऑफलाइन",
|
|
||||||
"Unknown": "अज्ञात",
|
"Unknown": "अज्ञात",
|
||||||
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "फ़ाइल '%(fileName)s' अपलोड के लिए इस होमस्वर के आकार की सीमा से अधिक है",
|
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "फ़ाइल '%(fileName)s' अपलोड के लिए इस होमस्वर के आकार की सीमा से अधिक है",
|
||||||
"Upgrades a room to a new version": "एक रूम को एक नए संस्करण में अपग्रेड करता है",
|
"Upgrades a room to a new version": "एक रूम को एक नए संस्करण में अपग्रेड करता है",
|
||||||
|
@ -369,7 +363,6 @@
|
||||||
"Publish this room to the public in %(domain)s's room directory?": "इस कमरे को %(domain)s के कमरे की निर्देशिका में जनता के लिए प्रकाशित करें?",
|
"Publish this room to the public in %(domain)s's room directory?": "इस कमरे को %(domain)s के कमरे की निर्देशिका में जनता के लिए प्रकाशित करें?",
|
||||||
"URL Previews": "URL पूर्वावलोकन",
|
"URL Previews": "URL पूर्वावलोकन",
|
||||||
"Failed to change password. Is your password correct?": "पासवर्ड बदलने में विफल। क्या आपका पासवर्ड सही है?",
|
"Failed to change password. Is your password correct?": "पासवर्ड बदलने में विफल। क्या आपका पासवर्ड सही है?",
|
||||||
"Success": "सफल",
|
|
||||||
"Profile": "प्रोफाइल",
|
"Profile": "प्रोफाइल",
|
||||||
"Account": "अकाउंट",
|
"Account": "अकाउंट",
|
||||||
"Email addresses": "ईमेल पता",
|
"Email addresses": "ईमेल पता",
|
||||||
|
@ -629,5 +622,14 @@
|
||||||
"Confirm adding email": "ईमेल जोड़ने की पुष्टि करें",
|
"Confirm adding email": "ईमेल जोड़ने की पुष्टि करें",
|
||||||
"Single Sign On": "केवल हस्ताक्षर के ऊपर",
|
"Single Sign On": "केवल हस्ताक्षर के ऊपर",
|
||||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "अपनी पहचान साबित करने के लिए सिंगल साइन ऑन का उपयोग करके इस ईमेल पते को जोड़ने की पुष्टि करें।",
|
"Confirm adding this email address by using Single Sign On to prove your identity.": "अपनी पहचान साबित करने के लिए सिंगल साइन ऑन का उपयोग करके इस ईमेल पते को जोड़ने की पुष्टि करें।",
|
||||||
"Use Single Sign On to continue": "जारी रखने के लिए सिंगल साइन ऑन का उपयोग करें"
|
"Use Single Sign On to continue": "जारी रखने के लिए सिंगल साइन ऑन का उपयोग करें",
|
||||||
|
"common": {
|
||||||
|
"analytics": "एनालिटिक्स",
|
||||||
|
"error": "त्रुटि",
|
||||||
|
"mute": "म्यूट",
|
||||||
|
"offline": "ऑफलाइन",
|
||||||
|
"password": "पासवर्ड",
|
||||||
|
"success": "सफल",
|
||||||
|
"unmute": "अनम्यूट"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -151,8 +151,6 @@
|
||||||
"User Busy": "Korisnik zauzet",
|
"User Busy": "Korisnik zauzet",
|
||||||
"Call Failed": "Poziv neuspješan",
|
"Call Failed": "Poziv neuspješan",
|
||||||
"Unable to load! Check your network connectivity and try again.": "Učitavanje nije moguće! Provjerite mrežnu povezanost i pokušajte ponovo.",
|
"Unable to load! Check your network connectivity and try again.": "Učitavanje nije moguće! Provjerite mrežnu povezanost i pokušajte ponovo.",
|
||||||
"Error": "Geška",
|
|
||||||
"Analytics": "Analitika",
|
|
||||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrdite dodavanje ovog telefonskog broja koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potvrdite dodavanje ovog telefonskog broja koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrdite dodavanje ove email adrese koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potvrdite dodavanje ove email adrese koristeći jedinstvenu prijavu (SSO) da biste dokazali Vaš identitet.",
|
||||||
"Single Sign On": "Jedinstvena prijava (SSO)",
|
"Single Sign On": "Jedinstvena prijava (SSO)",
|
||||||
|
@ -166,5 +164,9 @@
|
||||||
"Confirm adding email": "Potvrdite dodavanje email adrese",
|
"Confirm adding email": "Potvrdite dodavanje email adrese",
|
||||||
"Integration manager": "Upravitelj integracijama",
|
"Integration manager": "Upravitelj integracijama",
|
||||||
"Identity server": "Poslužitelj identiteta",
|
"Identity server": "Poslužitelj identiteta",
|
||||||
"Could not connect to identity server": "Nije moguće spojiti se na poslužitelja identiteta"
|
"Could not connect to identity server": "Nije moguće spojiti se na poslužitelja identiteta",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Analitika",
|
||||||
|
"error": "Geška"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,15 +3,12 @@
|
||||||
"Search": "Keresés",
|
"Search": "Keresés",
|
||||||
"OK": "Rendben",
|
"OK": "Rendben",
|
||||||
"Dismiss": "Eltüntetés",
|
"Dismiss": "Eltüntetés",
|
||||||
"Error": "Hiba",
|
|
||||||
"Failed to forget room %(errCode)s": "A szobát nem sikerült elfelejtetni: %(errCode)s",
|
"Failed to forget room %(errCode)s": "A szobát nem sikerült elfelejtetni: %(errCode)s",
|
||||||
"Favourite": "Kedvencnek jelölés",
|
"Favourite": "Kedvencnek jelölés",
|
||||||
"Mute": "Elnémít",
|
|
||||||
"Notifications": "Értesítések",
|
"Notifications": "Értesítések",
|
||||||
"Operation failed": "Sikertelen művelet",
|
"Operation failed": "Sikertelen művelet",
|
||||||
"powered by Matrix": "a gépházban: Matrix",
|
"powered by Matrix": "a gépházban: Matrix",
|
||||||
"Remove": "Eltávolítás",
|
"Remove": "Eltávolítás",
|
||||||
"Settings": "Beállítások",
|
|
||||||
"unknown error code": "ismeretlen hibakód",
|
"unknown error code": "ismeretlen hibakód",
|
||||||
"Accept": "Elfogadás",
|
"Accept": "Elfogadás",
|
||||||
"Account": "Fiók",
|
"Account": "Fiók",
|
||||||
|
@ -124,9 +121,7 @@
|
||||||
"<not supported>": "<nem támogatott>",
|
"<not supported>": "<nem támogatott>",
|
||||||
"No display name": "Nincs megjelenítendő név",
|
"No display name": "Nincs megjelenítendő név",
|
||||||
"No more results": "Nincs több találat",
|
"No more results": "Nincs több találat",
|
||||||
"No results": "Nincs találat",
|
|
||||||
"No users have specific privileges in this room": "Egy felhasználónak sincsenek specifikus jogosultságai ebben a szobában",
|
"No users have specific privileges in this room": "Egy felhasználónak sincsenek specifikus jogosultságai ebben a szobában",
|
||||||
"Password": "Jelszó",
|
|
||||||
"Passwords can't be empty": "A jelszó nem lehet üres",
|
"Passwords can't be empty": "A jelszó nem lehet üres",
|
||||||
"Permissions": "Jogosultságok",
|
"Permissions": "Jogosultságok",
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
|
@ -161,7 +156,6 @@
|
||||||
"Someone": "Valaki",
|
"Someone": "Valaki",
|
||||||
"Start authentication": "Hitelesítés indítása",
|
"Start authentication": "Hitelesítés indítása",
|
||||||
"Submit": "Elküldés",
|
"Submit": "Elküldés",
|
||||||
"Success": "Sikeres",
|
|
||||||
"This email address is already in use": "Ez az e-mail-cím már használatban van",
|
"This email address is already in use": "Ez az e-mail-cím már használatban van",
|
||||||
"This email address was not found": "Az e-mail-cím nem található",
|
"This email address was not found": "Az e-mail-cím nem található",
|
||||||
"The email address linked to your account must be entered.": "A fiókodhoz kötött e-mail címet add meg.",
|
"The email address linked to your account must be entered.": "A fiókodhoz kötött e-mail címet add meg.",
|
||||||
|
@ -177,7 +171,6 @@
|
||||||
"Unable to verify email address.": "Az e-mail cím ellenőrzése sikertelen.",
|
"Unable to verify email address.": "Az e-mail cím ellenőrzése sikertelen.",
|
||||||
"Unban": "Kitiltás visszavonása",
|
"Unban": "Kitiltás visszavonása",
|
||||||
"Unable to enable Notifications": "Az értesítések engedélyezése sikertelen",
|
"Unable to enable Notifications": "Az értesítések engedélyezése sikertelen",
|
||||||
"Unmute": "Némítás visszavonása",
|
|
||||||
"Unnamed Room": "Névtelen szoba",
|
"Unnamed Room": "Névtelen szoba",
|
||||||
"Uploading %(filename)s": "%(filename)s feltöltése",
|
"Uploading %(filename)s": "%(filename)s feltöltése",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
|
@ -237,7 +230,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "Új jelszó",
|
"New Password": "Új jelszó",
|
||||||
"Start automatically after system login": "Automatikus indítás rendszerindítás után",
|
"Start automatically after system login": "Automatikus indítás rendszerindítás után",
|
||||||
"Analytics": "Analitika",
|
|
||||||
"Options": "Lehetőségek",
|
"Options": "Lehetőségek",
|
||||||
"Passphrases must match": "A jelmondatoknak meg kell egyezniük",
|
"Passphrases must match": "A jelmondatoknak meg kell egyezniük",
|
||||||
"Passphrase must not be empty": "A jelmondat nem lehet üres",
|
"Passphrase must not be empty": "A jelmondat nem lehet üres",
|
||||||
|
@ -262,7 +254,6 @@
|
||||||
"Drop file here to upload": "Feltöltéshez húzz ide egy fájlt",
|
"Drop file here to upload": "Feltöltéshez húzz ide egy fájlt",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Idle": "Várakozik",
|
"Idle": "Várakozik",
|
||||||
"Offline": "Nem érhető el",
|
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s megváltoztatta a szoba profilképét: <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s megváltoztatta a szoba profilképét: <img/>",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s törölte a szoba profilképét.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s törölte a szoba profilképét.",
|
||||||
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s megváltoztatta %(roomName)s szoba profilképét",
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s megváltoztatta %(roomName)s szoba profilképét",
|
||||||
|
@ -708,7 +699,6 @@
|
||||||
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Ellenőrizd ezt a felhasználót, hogy megbízhatónak lehessen tekinteni. Megbízható felhasználók további nyugalmat jelenthetnek ha végpontól végpontig titkosítást használsz.",
|
"Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Ellenőrizd ezt a felhasználót, hogy megbízhatónak lehessen tekinteni. Megbízható felhasználók további nyugalmat jelenthetnek ha végpontól végpontig titkosítást használsz.",
|
||||||
"Incoming Verification Request": "Bejövő Hitelesítési Kérés",
|
"Incoming Verification Request": "Bejövő Hitelesítési Kérés",
|
||||||
"Go back": "Vissza",
|
"Go back": "Vissza",
|
||||||
"Username": "Felhasználói név",
|
|
||||||
"Email (optional)": "E-mail (nem kötelező)",
|
"Email (optional)": "E-mail (nem kötelező)",
|
||||||
"Phone (optional)": "Telefonszám (nem kötelező)",
|
"Phone (optional)": "Telefonszám (nem kötelező)",
|
||||||
"Confirm": "Megerősítés",
|
"Confirm": "Megerősítés",
|
||||||
|
@ -1171,7 +1161,6 @@
|
||||||
"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.",
|
||||||
"Security": "Biztonság",
|
|
||||||
"Verify": "Ellenőrzés",
|
"Verify": "Ellenőrzés",
|
||||||
"Any of the following data may be shared:": "Az alábbi adatok közül bármelyik megosztásra kerülhet:",
|
"Any of the following data may be shared:": "Az alábbi adatok közül bármelyik megosztásra kerülhet:",
|
||||||
"Your display name": "Saját megjelenítendő neve",
|
"Your display name": "Saját megjelenítendő neve",
|
||||||
|
@ -1207,7 +1196,6 @@
|
||||||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Ez általában a szoba kiszolgálóoldali kezelésében jelent változást. Ha a(z) %(brand)s kliensben tapasztal problémát, akkor <a>küldjön egy hibajelentést</a>.",
|
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Ez általában a szoba kiszolgálóoldali kezelésében jelent változást. Ha a(z) %(brand)s kliensben tapasztal problémát, akkor <a>küldjön egy hibajelentést</a>.",
|
||||||
"You'll upgrade this room from <oldVersion /> to <newVersion />.": "<oldVersion /> verzióról <newVersion /> verzióra fogja fejleszteni a szobát.",
|
"You'll upgrade this room from <oldVersion /> to <newVersion />.": "<oldVersion /> verzióról <newVersion /> verzióra fogja fejleszteni a szobát.",
|
||||||
"Upgrade": "Fejlesztés",
|
"Upgrade": "Fejlesztés",
|
||||||
"Reactions": "Reakciók",
|
|
||||||
"<userName/> wants to chat": "<userName/> csevegni szeretne",
|
"<userName/> wants to chat": "<userName/> csevegni szeretne",
|
||||||
"Start chatting": "Beszélgetés elkezdése",
|
"Start chatting": "Beszélgetés elkezdése",
|
||||||
"Cross-signing public keys:": "Az eszközök közti hitelesítés nyilvános kulcsai:",
|
"Cross-signing public keys:": "Az eszközök közti hitelesítés nyilvános kulcsai:",
|
||||||
|
@ -1250,7 +1238,6 @@
|
||||||
"Go": "Meghívás",
|
"Go": "Meghívás",
|
||||||
"Show info about bridges in room settings": "Híd információk megjelenítése a szobabeállításokban",
|
"Show info about bridges in room settings": "Híd információk megjelenítése a szobabeállításokban",
|
||||||
"This bridge is managed by <user />.": "Ezt a hidat a következő kezeli: <user />.",
|
"This bridge is managed by <user />.": "Ezt a hidat a következő kezeli: <user />.",
|
||||||
"Suggestions": "Javaslatok",
|
|
||||||
"Failed to find the following users": "Az alábbi felhasználók nem találhatók",
|
"Failed to find the following users": "Az alábbi felhasználók nem találhatók",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Az alábbi felhasználók nem léteznek vagy hibásan vannak megadva, és nem lehet őket meghívni: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Az alábbi felhasználók nem léteznek vagy hibásan vannak megadva, és nem lehet őket meghívni: %(csvNames)s",
|
||||||
"Lock": "Lakat",
|
"Lock": "Lakat",
|
||||||
|
@ -1358,7 +1345,6 @@
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Ha nem tudod beolvasni az alábbi kódot, ellenőrizd az egyedi emodzsik összehasonlításával.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Ha nem tudod beolvasni az alábbi kódot, ellenőrizd az egyedi emodzsik összehasonlításával.",
|
||||||
"You've successfully verified %(displayName)s!": "Sikeresen ellenőrizted a felhasználót: %(displayName)s!",
|
"You've successfully verified %(displayName)s!": "Sikeresen ellenőrizted a felhasználót: %(displayName)s!",
|
||||||
"Got it": "Értem",
|
"Got it": "Értem",
|
||||||
"Encryption enabled": "Titkosítás bekapcsolva",
|
|
||||||
"Encryption not enabled": "Titkosítás nincs engedélyezve",
|
"Encryption not enabled": "Titkosítás nincs engedélyezve",
|
||||||
"The encryption used by this room isn't supported.": "A szobában használt titkosítás nem támogatott.",
|
"The encryption used by this room isn't supported.": "A szobában használt titkosítás nem támogatott.",
|
||||||
"Clear all data in this session?": "Minden adat törlése ebben a munkamenetben?",
|
"Clear all data in this session?": "Minden adat törlése ebben a munkamenetben?",
|
||||||
|
@ -1447,7 +1433,6 @@
|
||||||
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Állíts be címet ehhez a szobához, hogy a felhasználók a matrix szervereden megtalálhassák (%(localDomain)s)",
|
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Állíts be címet ehhez a szobához, hogy a felhasználók a matrix szervereden megtalálhassák (%(localDomain)s)",
|
||||||
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "A titkosított szobákban az üzenete biztonságban van, és csak Ön és a címzettek rendelkeznek a visszafejtéshez szükséges egyedi kulcsokkal.",
|
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "A titkosított szobákban az üzenete biztonságban van, és csak Ön és a címzettek rendelkeznek a visszafejtéshez szükséges egyedi kulcsokkal.",
|
||||||
"Verify all users in a room to ensure it's secure.": "Ellenőrizze a szoba összes tagját, hogy meggyőződjön a biztonságáról.",
|
"Verify all users in a room to ensure it's secure.": "Ellenőrizze a szoba összes tagját, hogy meggyőződjön a biztonságáról.",
|
||||||
"Verification cancelled": "Ellenőrzés megszakítva",
|
|
||||||
"Enter the name of a new server you want to explore.": "Add meg a felfedezni kívánt új szerver nevét.",
|
"Enter the name of a new server you want to explore.": "Add meg a felfedezni kívánt új szerver nevét.",
|
||||||
"Server name": "Szerver neve",
|
"Server name": "Szerver neve",
|
||||||
"a new master key signature": "az új mester kulcs aláírás",
|
"a new master key signature": "az új mester kulcs aláírás",
|
||||||
|
@ -1580,7 +1565,6 @@
|
||||||
"Use a different passphrase?": "Másik jelmondat használata?",
|
"Use a different passphrase?": "Másik jelmondat használata?",
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "A kiszolgáló rendszergazdája alapértelmezetten kikapcsolta a végpontok közötti titkosítást a privát szobákban és a közvetlen beszélgetésekben.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "A kiszolgáló rendszergazdája alapértelmezetten kikapcsolta a végpontok közötti titkosítást a privát szobákban és a közvetlen beszélgetésekben.",
|
||||||
"No recently visited rooms": "Nincsenek nemrégiben meglátogatott szobák",
|
"No recently visited rooms": "Nincsenek nemrégiben meglátogatott szobák",
|
||||||
"People": "Emberek",
|
|
||||||
"Sort by": "Rendezés",
|
"Sort by": "Rendezés",
|
||||||
"Message preview": "Üzenet előnézet",
|
"Message preview": "Üzenet előnézet",
|
||||||
"List options": "Lista beállításai",
|
"List options": "Lista beállításai",
|
||||||
|
@ -1604,8 +1588,6 @@
|
||||||
"Use a system font": "Rendszer betűkészletének használata",
|
"Use a system font": "Rendszer betűkészletének használata",
|
||||||
"System font name": "Rendszer betűkészletének neve",
|
"System font name": "Rendszer betűkészletének neve",
|
||||||
"Hey you. You're the best!": "Szia! Te vagy a legjobb!",
|
"Hey you. You're the best!": "Szia! Te vagy a legjobb!",
|
||||||
"Message layout": "Üzenet elrendezése",
|
|
||||||
"Modern": "Modern",
|
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "A titkosított üzenetek valódiságát ezen az eszközön nem lehet garantálni.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "A titkosított üzenetek valódiságát ezen az eszközön nem lehet garantálni.",
|
||||||
"You joined the call": "Csatlakozott a hívásba",
|
"You joined the call": "Csatlakozott a hívásba",
|
||||||
"%(senderName)s joined the call": "%(senderName)s csatlakozott a hívásba",
|
"%(senderName)s joined the call": "%(senderName)s csatlakozott a hívásba",
|
||||||
|
@ -1681,7 +1663,6 @@
|
||||||
"Unknown App": "Ismeretlen alkalmazás",
|
"Unknown App": "Ismeretlen alkalmazás",
|
||||||
"Privacy": "Adatvédelem",
|
"Privacy": "Adatvédelem",
|
||||||
"Not encrypted": "Nem titkosított",
|
"Not encrypted": "Nem titkosított",
|
||||||
"About": "Névjegy",
|
|
||||||
"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",
|
||||||
"Unpin": "Leszedés",
|
"Unpin": "Leszedés",
|
||||||
|
@ -1751,7 +1732,6 @@
|
||||||
"Send feedback": "Visszajelzés küldése",
|
"Send feedback": "Visszajelzés küldése",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "Tipp: Ha hibajegyet készítesz, légyszíves segíts a probléma feltárásában azzal, hogy elküldöd a <debugLogsLink>részletes naplót</debugLogsLink>.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "Tipp: Ha hibajegyet készítesz, légyszíves segíts a probléma feltárásában azzal, hogy elküldöd a <debugLogsLink>részletes naplót</debugLogsLink>.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Először nézd meg, hogy <existingIssuesLink>van-e már jegy róla a Github-on</existingIssuesLink>. Nincs? <newIssueLink>Adj fel egy új jegyet</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Először nézd meg, hogy <existingIssuesLink>van-e már jegy róla a Github-on</existingIssuesLink>. Nincs? <newIssueLink>Adj fel egy új jegyet</newIssueLink>.",
|
||||||
"Report a bug": "Hibajegy feladása",
|
|
||||||
"Comment": "Megjegyzés",
|
"Comment": "Megjegyzés",
|
||||||
"Bermuda": "Bermuda",
|
"Bermuda": "Bermuda",
|
||||||
"Benin": "Benin",
|
"Benin": "Benin",
|
||||||
|
@ -2215,7 +2195,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",
|
||||||
"Room name": "Szoba neve",
|
|
||||||
"Support": "Támogatás",
|
"Support": "Támogatás",
|
||||||
"Random": "Véletlen",
|
"Random": "Véletlen",
|
||||||
"Welcome to <name/>": "Üdvözöl a(z) <name/>",
|
"Welcome to <name/>": "Üdvözöl a(z) <name/>",
|
||||||
|
@ -2390,7 +2369,6 @@
|
||||||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Ha van hozzá jogosultsága, nyissa meg a menüt bármelyik üzenetben és válassza a <b>Kitűzés</b> menüpontot a kitűzéshez.",
|
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Ha van hozzá jogosultsága, nyissa meg a menüt bármelyik üzenetben és válassza a <b>Kitűzés</b> menüpontot a kitűzéshez.",
|
||||||
"Or send invite link": "Vagy meghívó link küldése",
|
"Or send invite link": "Vagy meghívó link küldése",
|
||||||
"Search for rooms or people": "Szobák vagy emberek keresése",
|
"Search for rooms or people": "Szobák vagy emberek keresése",
|
||||||
"Forward message": "Üzenet továbbítása",
|
|
||||||
"Sent": "Elküldve",
|
"Sent": "Elküldve",
|
||||||
"You don't have permission to do this": "Nincs jogosultsága ehhez",
|
"You don't have permission to do this": "Nincs jogosultsága ehhez",
|
||||||
"Error - Mixed content": "Hiba – Vegyes tartalom",
|
"Error - Mixed content": "Hiba – Vegyes tartalom",
|
||||||
|
@ -2518,8 +2496,6 @@
|
||||||
"Share content": "Tartalom megosztása",
|
"Share content": "Tartalom megosztása",
|
||||||
"Application window": "Alkalmazásablak",
|
"Application window": "Alkalmazásablak",
|
||||||
"Share entire screen": "A teljes képernyő megosztása",
|
"Share entire screen": "A teljes képernyő megosztása",
|
||||||
"Image": "Kép",
|
|
||||||
"Sticker": "Matrica",
|
|
||||||
"The call is in an unknown state!": "A hívás ismeretlen állapotban van!",
|
"The call is in an unknown state!": "A hívás ismeretlen állapotban van!",
|
||||||
"An unknown error occurred": "Ismeretlen hiba történt",
|
"An unknown error occurred": "Ismeretlen hiba történt",
|
||||||
"Their device couldn't start the camera or microphone": "A másik fél eszköze nem képes használni a kamerát vagy a mikrofont",
|
"Their device couldn't start the camera or microphone": "A másik fél eszköze nem képes használni a kamerát vagy a mikrofont",
|
||||||
|
@ -2638,7 +2614,6 @@
|
||||||
"Change space avatar": "Tér profilképének megváltoztatása",
|
"Change space avatar": "Tér profilképének megváltoztatása",
|
||||||
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "A(z) <spaceName/> téren bárki megtalálhatja és beléphet. Kiválaszthat más tereket is.",
|
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "A(z) <spaceName/> téren bárki megtalálhatja és beléphet. Kiválaszthat más tereket is.",
|
||||||
"Message didn't send. Click for info.": "Az üzenet nincs elküldve. Kattintson az információkért.",
|
"Message didn't send. Click for info.": "Az üzenet nincs elküldve. Kattintson az információkért.",
|
||||||
"Message": "Üzenet",
|
|
||||||
"To join a space you'll need an invite.": "A térre való belépéshez meghívóra van szükség.",
|
"To join a space you'll need an invite.": "A térre való belépéshez meghívóra van szükség.",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s reagált: %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s reagált: %(content)s",
|
||||||
"Would you like to leave the rooms in this space?": "Ki szeretne lépni ennek a térnek minden szobájából?",
|
"Would you like to leave the rooms in this space?": "Ki szeretne lépni ennek a térnek minden szobájából?",
|
||||||
|
@ -3168,7 +3143,6 @@
|
||||||
"Share for %(duration)s": "Megosztás eddig: %(duration)s",
|
"Share for %(duration)s": "Megosztás eddig: %(duration)s",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "A hibakeresési napló alkalmazáshasználati adatokat tartalmaz, amely tartalmazza a felhasználónevét, a felkeresett szobák azonosítóit vagy álneveit, az utolsó felhasználói felület elemét, amelyet használt, valamint a többi felhasználó neveit. A csevegési üzenetek szövegét nem tartalmazza.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "A hibakeresési napló alkalmazáshasználati adatokat tartalmaz, amely tartalmazza a felhasználónevét, a felkeresett szobák azonosítóit vagy álneveit, az utolsó felhasználói felület elemét, amelyet használt, valamint a többi felhasználó neveit. A csevegési üzenetek szövegét nem tartalmazza.",
|
||||||
"Developer tools": "Fejlesztői eszközök",
|
"Developer tools": "Fejlesztői eszközök",
|
||||||
"Video": "Videó",
|
|
||||||
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "A(z) %(brand)s kísérleti állapotban van a mobilos webböngészőkben. A jobb élmény és a legújabb funkciók használatához használja az ingyenes natív alkalmazásunkat.",
|
"%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "A(z) %(brand)s kísérleti állapotban van a mobilos webböngészőkben. A jobb élmény és a legújabb funkciók használatához használja az ingyenes natív alkalmazásunkat.",
|
||||||
"%(value)ss": "%(value)s mp",
|
"%(value)ss": "%(value)s mp",
|
||||||
"%(value)sm": "%(value)s p",
|
"%(value)sm": "%(value)s p",
|
||||||
|
@ -3758,7 +3732,6 @@
|
||||||
"Adding…": "Hozzáadás…",
|
"Adding…": "Hozzáadás…",
|
||||||
"Declining…": "Elutasítás…",
|
"Declining…": "Elutasítás…",
|
||||||
"Rejecting invite…": "Meghívó elutasítása…",
|
"Rejecting invite…": "Meghívó elutasítása…",
|
||||||
"Loading…": "Betöltés…",
|
|
||||||
"Joining room…": "Belépés a szobába…",
|
"Joining room…": "Belépés a szobába…",
|
||||||
"Joining space…": "Belépés a térbe…",
|
"Joining space…": "Belépés a térbe…",
|
||||||
"Encrypting your message…": "Üzenet titkosítása…",
|
"Encrypting your message…": "Üzenet titkosítása…",
|
||||||
|
@ -3873,6 +3846,35 @@
|
||||||
"%(oldDisplayName)s changed their display name and profile picture": "%(oldDisplayName)s megváltoztatta a megjelenítendő nevét és profilképét",
|
"%(oldDisplayName)s changed their display name and profile picture": "%(oldDisplayName)s megváltoztatta a megjelenítendő nevét és profilképét",
|
||||||
"Failed to download source media, no source url was found": "A forrásmédia letöltése sikertelen, nem található forráswebcím",
|
"Failed to download source media, no source url was found": "A forrásmédia letöltése sikertelen, nem található forráswebcím",
|
||||||
"Unable to create room with moderation bot": "Nem hozható létre szoba moderációs bottal",
|
"Unable to create room with moderation bot": "Nem hozható létre szoba moderációs bottal",
|
||||||
|
"common": {
|
||||||
|
"about": "Névjegy",
|
||||||
|
"analytics": "Analitika",
|
||||||
|
"encryption_enabled": "Titkosítás bekapcsolva",
|
||||||
|
"error": "Hiba",
|
||||||
|
"forward_message": "Üzenet továbbítása",
|
||||||
|
"image": "Kép",
|
||||||
|
"loading": "Betöltés…",
|
||||||
|
"message": "Üzenet",
|
||||||
|
"message_layout": "Üzenet elrendezése",
|
||||||
|
"modern": "Modern",
|
||||||
|
"mute": "Elnémít",
|
||||||
|
"no_results": "Nincs találat",
|
||||||
|
"offline": "Nem érhető el",
|
||||||
|
"password": "Jelszó",
|
||||||
|
"people": "Emberek",
|
||||||
|
"reactions": "Reakciók",
|
||||||
|
"report_a_bug": "Hibajegy feladása",
|
||||||
|
"room_name": "Szoba neve",
|
||||||
|
"security": "Biztonság",
|
||||||
|
"settings": "Beállítások",
|
||||||
|
"sticker": "Matrica",
|
||||||
|
"success": "Sikeres",
|
||||||
|
"suggestions": "Javaslatok",
|
||||||
|
"unmute": "Némítás visszavonása",
|
||||||
|
"username": "Felhasználói név",
|
||||||
|
"verification_cancelled": "Ellenőrzés megszakítva",
|
||||||
|
"video": "Videó"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Felhasználói menü"
|
"user_menu": "Felhasználói menü"
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,11 +35,9 @@
|
||||||
"Leave room": "Tinggalkan ruangan",
|
"Leave room": "Tinggalkan ruangan",
|
||||||
"Logout": "Keluar",
|
"Logout": "Keluar",
|
||||||
"Low priority": "Prioritas rendah",
|
"Low priority": "Prioritas rendah",
|
||||||
"Mute": "Bisukan",
|
|
||||||
"Name": "Nama",
|
"Name": "Nama",
|
||||||
"New passwords don't match": "Kata sandi baru tidak cocok",
|
"New passwords don't match": "Kata sandi baru tidak cocok",
|
||||||
"<not supported>": "<tidak didukung>",
|
"<not supported>": "<tidak didukung>",
|
||||||
"No results": "Tidak ada hasil",
|
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Operation failed": "Operasi gagal",
|
"Operation failed": "Operasi gagal",
|
||||||
"Passwords can't be empty": "Kata sandi tidak boleh kosong",
|
"Passwords can't be empty": "Kata sandi tidak boleh kosong",
|
||||||
|
@ -55,12 +53,10 @@
|
||||||
"Search failed": "Pencarian gagal",
|
"Search failed": "Pencarian gagal",
|
||||||
"Server error": "Kesalahan server",
|
"Server error": "Kesalahan server",
|
||||||
"Session ID": "ID Sesi",
|
"Session ID": "ID Sesi",
|
||||||
"Settings": "Pengaturan",
|
|
||||||
"Sign in": "Masuk",
|
"Sign in": "Masuk",
|
||||||
"Sign out": "Keluar",
|
"Sign out": "Keluar",
|
||||||
"Someone": "Seseorang",
|
"Someone": "Seseorang",
|
||||||
"Submit": "Kirim",
|
"Submit": "Kirim",
|
||||||
"Success": "Berhasil",
|
|
||||||
"This email address was not found": "Alamat email ini tidak ditemukan",
|
"This email address was not found": "Alamat email ini tidak ditemukan",
|
||||||
"Unable to add email address": "Tidak dapat menambahkan alamat email",
|
"Unable to add email address": "Tidak dapat menambahkan alamat email",
|
||||||
"Unable to verify email address.": "Tidak dapat memverifikasi alamat email.",
|
"Unable to verify email address.": "Tidak dapat memverifikasi alamat email.",
|
||||||
|
@ -149,7 +145,6 @@
|
||||||
"You cannot delete this message. (%(code)s)": "Anda tidak dapat menghapus pesan ini. (%(code)s)",
|
"You cannot delete this message. (%(code)s)": "Anda tidak dapat menghapus pesan ini. (%(code)s)",
|
||||||
"Quote": "Kutip",
|
"Quote": "Kutip",
|
||||||
"Send": "Kirim",
|
"Send": "Kirim",
|
||||||
"Error": "Kesalahan",
|
|
||||||
"Send logs": "Kirim catatan",
|
"Send logs": "Kirim catatan",
|
||||||
"All messages": "Semua pesan",
|
"All messages": "Semua pesan",
|
||||||
"Call invitation": "Undangan panggilan",
|
"Call invitation": "Undangan panggilan",
|
||||||
|
@ -173,7 +168,6 @@
|
||||||
"This email address is already in use": "Alamat email ini telah dipakai",
|
"This email address is already in use": "Alamat email ini telah dipakai",
|
||||||
"This phone number is already in use": "Nomor telepon ini telah dipakai",
|
"This phone number is already in use": "Nomor telepon ini telah dipakai",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Gagal memverifikasi alamat email: pastikan Anda telah menekan link di dalam email",
|
"Failed to verify email address: make sure you clicked the link in the email": "Gagal memverifikasi alamat email: pastikan Anda telah menekan link di dalam email",
|
||||||
"Analytics": "Analitik",
|
|
||||||
"Call Failed": "Panggilan Gagal",
|
"Call Failed": "Panggilan Gagal",
|
||||||
"Permission Required": "Izin Dibutuhkan",
|
"Permission Required": "Izin Dibutuhkan",
|
||||||
"You do not have permission to start a conference call in this room": "Anda tidak memiliki permisi untuk memulai panggilan konferensi di ruang ini",
|
"You do not have permission to start a conference call in this room": "Anda tidak memiliki permisi untuk memulai panggilan konferensi di ruang ini",
|
||||||
|
@ -596,7 +590,6 @@
|
||||||
"expand": "buka",
|
"expand": "buka",
|
||||||
"collapse": "tutup",
|
"collapse": "tutup",
|
||||||
"Join": "Bergabung",
|
"Join": "Bergabung",
|
||||||
"Username": "Nama Pengguna",
|
|
||||||
"Code": "Kode",
|
"Code": "Kode",
|
||||||
"Next": "Lanjut",
|
"Next": "Lanjut",
|
||||||
"Refresh": "Muat Ulang",
|
"Refresh": "Muat Ulang",
|
||||||
|
@ -632,13 +625,10 @@
|
||||||
"Emoji": "Emoji",
|
"Emoji": "Emoji",
|
||||||
"Room": "Ruangan",
|
"Room": "Ruangan",
|
||||||
"Phone": "Ponsel",
|
"Phone": "Ponsel",
|
||||||
"Password": "Kata Sandi",
|
|
||||||
"Skip": "Lewat",
|
"Skip": "Lewat",
|
||||||
"Edit": "Edit",
|
"Edit": "Edit",
|
||||||
"Unmute": "Suarakan",
|
|
||||||
"Historical": "Riwayat",
|
"Historical": "Riwayat",
|
||||||
"Invites": "Undangan",
|
"Invites": "Undangan",
|
||||||
"Offline": "Luring",
|
|
||||||
"Idle": "Idle",
|
"Idle": "Idle",
|
||||||
"Online": "Daring",
|
"Online": "Daring",
|
||||||
"Anyone": "Siapa Saja",
|
"Anyone": "Siapa Saja",
|
||||||
|
@ -657,7 +647,6 @@
|
||||||
"Comment": "Komentar",
|
"Comment": "Komentar",
|
||||||
"Homeserver": "Homeserver",
|
"Homeserver": "Homeserver",
|
||||||
"Information": "Informasi",
|
"Information": "Informasi",
|
||||||
"About": "Tentang",
|
|
||||||
"Widgets": "Widget",
|
"Widgets": "Widget",
|
||||||
"Favourited": "Difavorit",
|
"Favourited": "Difavorit",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
|
@ -682,7 +671,6 @@
|
||||||
"Matrix": "Matrix",
|
"Matrix": "Matrix",
|
||||||
"Categories": "Categori",
|
"Categories": "Categori",
|
||||||
"Go": "Mulai",
|
"Go": "Mulai",
|
||||||
"Suggestions": "Saran",
|
|
||||||
"Done": "Selesai",
|
"Done": "Selesai",
|
||||||
"Unencrypted": "Tidak Dienkripsi",
|
"Unencrypted": "Tidak Dienkripsi",
|
||||||
"Mod": "Mod",
|
"Mod": "Mod",
|
||||||
|
@ -701,13 +689,10 @@
|
||||||
"Objects": "Obyek",
|
"Objects": "Obyek",
|
||||||
"Activities": "Aktivitas",
|
"Activities": "Aktivitas",
|
||||||
"React": "Bereaksi",
|
"React": "Bereaksi",
|
||||||
"Reactions": "Reaksi",
|
|
||||||
"Start": "Mulai",
|
"Start": "Mulai",
|
||||||
"Security": "Keamanan",
|
|
||||||
"Trusted": "Dipercayai",
|
"Trusted": "Dipercayai",
|
||||||
"Accepting…": "Menerima…",
|
"Accepting…": "Menerima…",
|
||||||
"Appearance": "Tampilan",
|
"Appearance": "Tampilan",
|
||||||
"People": "Orang",
|
|
||||||
"Strikethrough": "Coret",
|
"Strikethrough": "Coret",
|
||||||
"Italics": "Miring",
|
"Italics": "Miring",
|
||||||
"Bold": "Tebal",
|
"Bold": "Tebal",
|
||||||
|
@ -973,18 +958,14 @@
|
||||||
"Stop": "Berhenti",
|
"Stop": "Berhenti",
|
||||||
"MB": "MB",
|
"MB": "MB",
|
||||||
"Custom level": "Tingkat kustom",
|
"Custom level": "Tingkat kustom",
|
||||||
"Image": "Gambar",
|
|
||||||
"Sticker": "Stiker",
|
|
||||||
"Decrypting": "Mendekripsi",
|
"Decrypting": "Mendekripsi",
|
||||||
"Downloading": "Mengunduh",
|
"Downloading": "Mengunduh",
|
||||||
"Message": "Pesan",
|
|
||||||
"Threads": "Utasan",
|
"Threads": "Utasan",
|
||||||
"Forget room": "Lupakan ruangan",
|
"Forget room": "Lupakan ruangan",
|
||||||
"Thread": "Utasan",
|
"Thread": "Utasan",
|
||||||
"Access": "Akses",
|
"Access": "Akses",
|
||||||
"Global": "Global",
|
"Global": "Global",
|
||||||
"Keyword": "Kata kunci",
|
"Keyword": "Kata kunci",
|
||||||
"Modern": "Modern",
|
|
||||||
"Rename": "Ubah Nama",
|
"Rename": "Ubah Nama",
|
||||||
"Collapse": "Tutup",
|
"Collapse": "Tutup",
|
||||||
"Expand": "Buka",
|
"Expand": "Buka",
|
||||||
|
@ -1260,7 +1241,6 @@
|
||||||
"Error saving notification preferences": "Gagal menyimpan preferensi notifikasi",
|
"Error saving notification preferences": "Gagal menyimpan preferensi notifikasi",
|
||||||
"Messages containing keywords": "Pesan berisi kata kunci",
|
"Messages containing keywords": "Pesan berisi kata kunci",
|
||||||
"Message bubbles": "Gelembung pesan",
|
"Message bubbles": "Gelembung pesan",
|
||||||
"Message layout": "Tata letak pesan",
|
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Memperbarui space...",
|
"one": "Memperbarui space...",
|
||||||
"other": "Memperbarui space... (%(progress)s dari %(count)s)"
|
"other": "Memperbarui space... (%(progress)s dari %(count)s)"
|
||||||
|
@ -1949,7 +1929,6 @@
|
||||||
"The encryption used by this room isn't supported.": "Enkripsi yang digunakan di ruangan ini tidak didukung.",
|
"The encryption used by this room isn't supported.": "Enkripsi yang digunakan di ruangan ini tidak didukung.",
|
||||||
"Encryption not enabled": "Enkripsi tidak diaktifkan",
|
"Encryption not enabled": "Enkripsi tidak diaktifkan",
|
||||||
"Ignored attempt to disable encryption": "Mengabaikan percobaan untuk menonaktifkan enkripsi",
|
"Ignored attempt to disable encryption": "Mengabaikan percobaan untuk menonaktifkan enkripsi",
|
||||||
"Encryption enabled": "Enkripsi diaktifkan",
|
|
||||||
"Some encryption parameters have been changed.": "Beberapa parameter enkripsi telah diubah.",
|
"Some encryption parameters have been changed.": "Beberapa parameter enkripsi telah diubah.",
|
||||||
"The call is in an unknown state!": "Panggilan ini berada di status yang tidak diketahui!",
|
"The call is in an unknown state!": "Panggilan ini berada di status yang tidak diketahui!",
|
||||||
"Missed call": "Panggilan terlewat",
|
"Missed call": "Panggilan terlewat",
|
||||||
|
@ -1961,7 +1940,6 @@
|
||||||
"No answer": "Tidak ada jawaban",
|
"No answer": "Tidak ada jawaban",
|
||||||
"Call back": "Panggil ulang",
|
"Call back": "Panggil ulang",
|
||||||
"Call declined": "Panggilan ditolak",
|
"Call declined": "Panggilan ditolak",
|
||||||
"Verification cancelled": "Verifikasi dibatalkan",
|
|
||||||
"You cancelled verification.": "Anda membatalkan verifikasi.",
|
"You cancelled verification.": "Anda membatalkan verifikasi.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s membatalkan verifikasi.",
|
"%(displayName)s cancelled verification.": "%(displayName)s membatalkan verifikasi.",
|
||||||
"Verification timed out.": "Waktu habis untuk memverifikasi.",
|
"Verification timed out.": "Waktu habis untuk memverifikasi.",
|
||||||
|
@ -2305,11 +2283,9 @@
|
||||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Platform dan nama pengguna Anda akan dicatat untuk membantu kami menggunakan masukan Anda sebanyak yang kita bisa.",
|
"Your platform and username will be noted to help us use your feedback as much as we can.": "Platform dan nama pengguna Anda akan dicatat untuk membantu kami menggunakan masukan Anda sebanyak yang kita bisa.",
|
||||||
"Search for rooms or people": "Cari ruangan atau orang",
|
"Search for rooms or people": "Cari ruangan atau orang",
|
||||||
"Message preview": "Tampilan pesan",
|
"Message preview": "Tampilan pesan",
|
||||||
"Forward message": "Teruskan pesan",
|
|
||||||
"You don't have permission to do this": "Anda tidak memiliki izin untuk melakukannya",
|
"You don't have permission to do this": "Anda tidak memiliki izin untuk melakukannya",
|
||||||
"Send feedback": "Kirimkan masukan",
|
"Send feedback": "Kirimkan masukan",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Mohon lihat <existingIssuesLink>bug yang sudah ada di GitHub</existingIssuesLink> dahulu. Tidak ada? <newIssueLink>Buat yang baru</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Mohon lihat <existingIssuesLink>bug yang sudah ada di GitHub</existingIssuesLink> dahulu. Tidak ada? <newIssueLink>Buat yang baru</newIssueLink>.",
|
||||||
"Report a bug": "Laporkan sebuah bug",
|
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "Jika Anda membuat issue, silakan kirimkan <debugLogsLink>log pengawakutu</debugLogsLink> untuk membantu kami menemukan masalahnya.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "Jika Anda membuat issue, silakan kirimkan <debugLogsLink>log pengawakutu</debugLogsLink> untuk membantu kami menemukan masalahnya.",
|
||||||
"Feedback sent": "Masukan terkirim",
|
"Feedback sent": "Masukan terkirim",
|
||||||
"Include Attachments": "Tambahkan Lampiran",
|
"Include Attachments": "Tambahkan Lampiran",
|
||||||
|
@ -2400,7 +2376,6 @@
|
||||||
"What do you want to organise?": "Apa saja yang Anda ingin organisirkan?",
|
"What do you want to organise?": "Apa saja yang Anda ingin organisirkan?",
|
||||||
"Skip for now": "Lewat untuk sementara",
|
"Skip for now": "Lewat untuk sementara",
|
||||||
"Failed to create initial space rooms": "Gagal membuat ruangan space awal",
|
"Failed to create initial space rooms": "Gagal membuat ruangan space awal",
|
||||||
"Room name": "Nama ruangan",
|
|
||||||
"Welcome to <name/>": "Selamat datang di <name/>",
|
"Welcome to <name/>": "Selamat datang di <name/>",
|
||||||
"<inviter/> invites you": "<inviter/> mengundang Anda",
|
"<inviter/> invites you": "<inviter/> mengundang Anda",
|
||||||
"Private space": "Space pribadi",
|
"Private space": "Space pribadi",
|
||||||
|
@ -3133,7 +3108,6 @@
|
||||||
"Next recently visited room or space": "Ruangan atau space berikut yang dikunjungi",
|
"Next recently visited room or space": "Ruangan atau space berikut yang dikunjungi",
|
||||||
"Previous recently visited room or space": "Ruangan atau space yang dikunjungi sebelumnya",
|
"Previous recently visited room or space": "Ruangan atau space yang dikunjungi sebelumnya",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Catatan pengawakutu berisi data penggunaan aplikasi termasuk nama pengguna Anda, ID atau alias ruangan yang telah Anda kunjungi, elemen UI apa saja yang Anda terakhir berinteraksi, dan nama pengguna lain. Mereka tidak berisi pesan.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "Catatan pengawakutu berisi data penggunaan aplikasi termasuk nama pengguna Anda, ID atau alias ruangan yang telah Anda kunjungi, elemen UI apa saja yang Anda terakhir berinteraksi, dan nama pengguna lain. Mereka tidak berisi pesan.",
|
||||||
"Video": "Video",
|
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Anda dapat menggunakan opsi server khusus untuk masuk ke server Matrix lain dengan menentukan URL homeserver yang berbeda. Ini memungkinkan Anda untuk menggunakan %(brand)s dengan akun Matrix yang ada di homeserver yang berbeda.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Anda dapat menggunakan opsi server khusus untuk masuk ke server Matrix lain dengan menentukan URL homeserver yang berbeda. Ini memungkinkan Anda untuk menggunakan %(brand)s dengan akun Matrix yang ada di homeserver yang berbeda.",
|
||||||
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Izin %(brand)s ditolak untuk mengakses lokasi Anda. Mohon izinkan akses lokasi di pengaturan peramban Anda.",
|
"%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Izin %(brand)s ditolak untuk mengakses lokasi Anda. Mohon izinkan akses lokasi di pengaturan peramban Anda.",
|
||||||
"Developer tools": "Alat pengembang",
|
"Developer tools": "Alat pengembang",
|
||||||
|
@ -3759,7 +3733,6 @@
|
||||||
"Adding…": "Menambahkan…",
|
"Adding…": "Menambahkan…",
|
||||||
"Write something…": "Tulis sesuatu…",
|
"Write something…": "Tulis sesuatu…",
|
||||||
"Rejecting invite…": "Menolak undangan…",
|
"Rejecting invite…": "Menolak undangan…",
|
||||||
"Loading…": "Memuat…",
|
|
||||||
"Joining room…": "Bergabung dengan ruangan…",
|
"Joining room…": "Bergabung dengan ruangan…",
|
||||||
"Joining space…": "Bergabung dengan space…",
|
"Joining space…": "Bergabung dengan space…",
|
||||||
"Encrypting your message…": "Mengenkripsi pesan Anda…",
|
"Encrypting your message…": "Mengenkripsi pesan Anda…",
|
||||||
|
@ -3974,6 +3947,35 @@
|
||||||
"Deny": "Tolak",
|
"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": {
|
||||||
|
"about": "Tentang",
|
||||||
|
"analytics": "Analitik",
|
||||||
|
"encryption_enabled": "Enkripsi diaktifkan",
|
||||||
|
"error": "Kesalahan",
|
||||||
|
"forward_message": "Teruskan pesan",
|
||||||
|
"image": "Gambar",
|
||||||
|
"loading": "Memuat…",
|
||||||
|
"message": "Pesan",
|
||||||
|
"message_layout": "Tata letak pesan",
|
||||||
|
"modern": "Modern",
|
||||||
|
"mute": "Bisukan",
|
||||||
|
"no_results": "Tidak ada hasil",
|
||||||
|
"offline": "Luring",
|
||||||
|
"password": "Kata Sandi",
|
||||||
|
"people": "Orang",
|
||||||
|
"reactions": "Reaksi",
|
||||||
|
"report_a_bug": "Laporkan sebuah bug",
|
||||||
|
"room_name": "Nama ruangan",
|
||||||
|
"security": "Keamanan",
|
||||||
|
"settings": "Pengaturan",
|
||||||
|
"sticker": "Stiker",
|
||||||
|
"success": "Berhasil",
|
||||||
|
"suggestions": "Saran",
|
||||||
|
"unmute": "Suarakan",
|
||||||
|
"username": "Nama Pengguna",
|
||||||
|
"verification_cancelled": "Verifikasi dibatalkan",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu pengguna"
|
"user_menu": "Menu pengguna"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"This email address is already in use": "Þetta tölvupóstfang er nú þegar í notkun",
|
"This email address is already in use": "Þetta tölvupóstfang er nú þegar í notkun",
|
||||||
"This phone number is already in use": "Þetta símanúmer er nú þegar í notkun",
|
"This phone number is already in use": "Þetta símanúmer er nú þegar í notkun",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Gat ekki sannprófað tölvupóstfang: gakktu úr skugga um að þú hafir smellt á tengilinn í tölvupóstinum",
|
"Failed to verify email address: make sure you clicked the link in the email": "Gat ekki sannprófað tölvupóstfang: gakktu úr skugga um að þú hafir smellt á tengilinn í tölvupóstinum",
|
||||||
"Analytics": "Greiningar",
|
|
||||||
"Warning!": "Aðvörun!",
|
"Warning!": "Aðvörun!",
|
||||||
"Upload Failed": "Innsending mistókst",
|
"Upload Failed": "Innsending mistókst",
|
||||||
"Sun": "sun",
|
"Sun": "sun",
|
||||||
|
@ -64,14 +63,12 @@
|
||||||
"Messages sent by bot": "Skilaboð send af vélmennum",
|
"Messages sent by bot": "Skilaboð send af vélmennum",
|
||||||
"Decline": "Hafna",
|
"Decline": "Hafna",
|
||||||
"Accept": "Samþykkja",
|
"Accept": "Samþykkja",
|
||||||
"Error": "Villa",
|
|
||||||
"Submit": "Senda inn",
|
"Submit": "Senda inn",
|
||||||
"Phone": "Sími",
|
"Phone": "Sími",
|
||||||
"Add": "Bæta við",
|
"Add": "Bæta við",
|
||||||
"Continue": "Halda áfram",
|
"Continue": "Halda áfram",
|
||||||
"Export E2E room keys": "Flytja út E2E dulritunarlykla spjallrásar",
|
"Export E2E room keys": "Flytja út E2E dulritunarlykla spjallrásar",
|
||||||
"Current password": "Núverandi lykilorð",
|
"Current password": "Núverandi lykilorð",
|
||||||
"Password": "Lykilorð",
|
|
||||||
"New Password": "Nýtt lykilorð",
|
"New Password": "Nýtt lykilorð",
|
||||||
"Confirm password": "Staðfestu lykilorðið",
|
"Confirm password": "Staðfestu lykilorðið",
|
||||||
"Change Password": "Breyta lykilorði",
|
"Change Password": "Breyta lykilorði",
|
||||||
|
@ -90,8 +87,6 @@
|
||||||
"Ignore": "Hunsa",
|
"Ignore": "Hunsa",
|
||||||
"Mention": "Minnst á",
|
"Mention": "Minnst á",
|
||||||
"Invite": "Bjóða",
|
"Invite": "Bjóða",
|
||||||
"Unmute": "Ekki þagga",
|
|
||||||
"Mute": "Þagga niður",
|
|
||||||
"Admin Tools": "Kerfisstjóratól",
|
"Admin Tools": "Kerfisstjóratól",
|
||||||
"Invited": "Boðið",
|
"Invited": "Boðið",
|
||||||
"Filter room members": "Sía meðlimi spjallrásar",
|
"Filter room members": "Sía meðlimi spjallrásar",
|
||||||
|
@ -105,12 +100,10 @@
|
||||||
"Command error": "Skipanavilla",
|
"Command error": "Skipanavilla",
|
||||||
"Online": "Nettengt",
|
"Online": "Nettengt",
|
||||||
"Idle": "Iðjulaust",
|
"Idle": "Iðjulaust",
|
||||||
"Offline": "Ónettengt",
|
|
||||||
"Unknown": "Óþekkt",
|
"Unknown": "Óþekkt",
|
||||||
"Unnamed room": "Nafnlaus spjallrás",
|
"Unnamed room": "Nafnlaus spjallrás",
|
||||||
"Save": "Vista",
|
"Save": "Vista",
|
||||||
"Join Room": "Taka þátt í spjallrás",
|
"Join Room": "Taka þátt í spjallrás",
|
||||||
"Settings": "Stillingar",
|
|
||||||
"Forget room": "Gleyma spjallrás",
|
"Forget room": "Gleyma spjallrás",
|
||||||
"Search": "Leita",
|
"Search": "Leita",
|
||||||
"Invites": "Boðsgestir",
|
"Invites": "Boðsgestir",
|
||||||
|
@ -163,7 +156,6 @@
|
||||||
"No update available.": "Engin uppfærsla tiltæk.",
|
"No update available.": "Engin uppfærsla tiltæk.",
|
||||||
"Warning": "Aðvörun",
|
"Warning": "Aðvörun",
|
||||||
"Edit": "Breyta",
|
"Edit": "Breyta",
|
||||||
"No results": "Engar niðurstöður",
|
|
||||||
"Home": "Forsíða",
|
"Home": "Forsíða",
|
||||||
"collapse": "fella saman",
|
"collapse": "fella saman",
|
||||||
"expand": "fletta út",
|
"expand": "fletta út",
|
||||||
|
@ -215,7 +207,6 @@
|
||||||
"Connectivity to the server has been lost.": "Tenging við vefþjón hefur rofnað.",
|
"Connectivity to the server has been lost.": "Tenging við vefþjón hefur rofnað.",
|
||||||
"Search failed": "Leit mistókst",
|
"Search failed": "Leit mistókst",
|
||||||
"Room": "Spjallrás",
|
"Room": "Spjallrás",
|
||||||
"Success": "Tókst",
|
|
||||||
"Import E2E room keys": "Flytja inn E2E dulritunarlykla spjallrásar",
|
"Import E2E room keys": "Flytja inn E2E dulritunarlykla spjallrásar",
|
||||||
"Cryptography": "Dulritun",
|
"Cryptography": "Dulritun",
|
||||||
"Labs": "Tilraunir",
|
"Labs": "Tilraunir",
|
||||||
|
@ -308,7 +299,6 @@
|
||||||
"Room information": "Upplýsingar um spjallrás",
|
"Room information": "Upplýsingar um spjallrás",
|
||||||
"Room options": "Valkostir spjallrásar",
|
"Room options": "Valkostir spjallrásar",
|
||||||
"Invite people": "Bjóða fólki",
|
"Invite people": "Bjóða fólki",
|
||||||
"People": "Fólk",
|
|
||||||
"Finland": "Finnland",
|
"Finland": "Finnland",
|
||||||
"Norway": "Noreg",
|
"Norway": "Noreg",
|
||||||
"Denmark": "Danmörk",
|
"Denmark": "Danmörk",
|
||||||
|
@ -434,7 +424,6 @@
|
||||||
"Confirm adding email": "Staðfestu að bæta við tölvupósti",
|
"Confirm adding email": "Staðfestu að bæta við tölvupósti",
|
||||||
"Upgrade": "Uppfæra",
|
"Upgrade": "Uppfæra",
|
||||||
"Verify": "Sannreyna",
|
"Verify": "Sannreyna",
|
||||||
"Security": "Öryggi",
|
|
||||||
"Trusted": "Treyst",
|
"Trusted": "Treyst",
|
||||||
"Subscribe": "Skrá",
|
"Subscribe": "Skrá",
|
||||||
"Unsubscribe": "Afskrá",
|
"Unsubscribe": "Afskrá",
|
||||||
|
@ -492,7 +481,6 @@
|
||||||
"Guest": "Gestur",
|
"Guest": "Gestur",
|
||||||
"Other": "Annað",
|
"Other": "Annað",
|
||||||
"Confirm": "Staðfesta",
|
"Confirm": "Staðfesta",
|
||||||
"Username": "Notandanafn",
|
|
||||||
"Join": "Taka þátt",
|
"Join": "Taka þátt",
|
||||||
"Encrypted": "Dulritað",
|
"Encrypted": "Dulritað",
|
||||||
"Encryption": "Dulritun",
|
"Encryption": "Dulritun",
|
||||||
|
@ -995,13 +983,10 @@
|
||||||
"User Directory": "Mappa notanda",
|
"User Directory": "Mappa notanda",
|
||||||
"Transfer": "Flutningur",
|
"Transfer": "Flutningur",
|
||||||
"Unnamed Space": "Nafnlaust svæði",
|
"Unnamed Space": "Nafnlaust svæði",
|
||||||
"Suggestions": "Tillögur",
|
|
||||||
"Terms of Service": "Þjónustuskilmálar",
|
"Terms of Service": "Þjónustuskilmálar",
|
||||||
"Message preview": "Forskoðun skilaboða",
|
"Message preview": "Forskoðun skilaboða",
|
||||||
"Forward message": "Áframsenda skilaboð",
|
|
||||||
"Sent": "Sent",
|
"Sent": "Sent",
|
||||||
"Sending": "Sendi",
|
"Sending": "Sendi",
|
||||||
"Report a bug": "Tilkynna um villu",
|
|
||||||
"Comment": "Athugasemd",
|
"Comment": "Athugasemd",
|
||||||
"Format": "Snið",
|
"Format": "Snið",
|
||||||
"Export Successful": "Útflutningur tókst",
|
"Export Successful": "Útflutningur tókst",
|
||||||
|
@ -1050,10 +1035,8 @@
|
||||||
},
|
},
|
||||||
"Zoom out": "Renna frá",
|
"Zoom out": "Renna frá",
|
||||||
"Zoom in": "Renna að",
|
"Zoom in": "Renna að",
|
||||||
"Image": "Mynd",
|
|
||||||
"Show image": "Birta mynd",
|
"Show image": "Birta mynd",
|
||||||
"Go": "Fara",
|
"Go": "Fara",
|
||||||
"Encryption enabled": "Dulritun virk",
|
|
||||||
"Decrypting": "Afkóðun",
|
"Decrypting": "Afkóðun",
|
||||||
"Downloading": "Sæki",
|
"Downloading": "Sæki",
|
||||||
"Last month": "Í síðasta mánuði",
|
"Last month": "Í síðasta mánuði",
|
||||||
|
@ -1067,10 +1050,8 @@
|
||||||
"Ban from %(roomName)s": "Banna í %(roomName)s",
|
"Ban from %(roomName)s": "Banna í %(roomName)s",
|
||||||
"Unban from %(roomName)s": "Afbanna í %(roomName)s",
|
"Unban from %(roomName)s": "Afbanna í %(roomName)s",
|
||||||
"Remove from room": "Fjarlægja úr spjallrás",
|
"Remove from room": "Fjarlægja úr spjallrás",
|
||||||
"Message": "Skilaboð",
|
|
||||||
"Share room": "Deila spjallrás",
|
"Share room": "Deila spjallrás",
|
||||||
"Files": "Skrár",
|
"Files": "Skrár",
|
||||||
"About": "Um hugbúnaðinn",
|
|
||||||
"Chat": "Spjall",
|
"Chat": "Spjall",
|
||||||
"Show more": "Sýna meira",
|
"Show more": "Sýna meira",
|
||||||
"Local Addresses": "Staðvær vistföng",
|
"Local Addresses": "Staðvær vistföng",
|
||||||
|
@ -1102,7 +1083,6 @@
|
||||||
"Code block": "Kóðablokk",
|
"Code block": "Kóðablokk",
|
||||||
"Poll": "Könnun",
|
"Poll": "Könnun",
|
||||||
"Voice Message": "Talskilaboð",
|
"Voice Message": "Talskilaboð",
|
||||||
"Sticker": "Límmerki",
|
|
||||||
"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",
|
||||||
|
@ -1141,7 +1121,6 @@
|
||||||
"Mentions & keywords": "Tilvísanir og stikkorð",
|
"Mentions & keywords": "Tilvísanir og stikkorð",
|
||||||
"Global": "Víðvært",
|
"Global": "Víðvært",
|
||||||
"Keyword": "Stikkorð",
|
"Keyword": "Stikkorð",
|
||||||
"Modern": "Nútímalegt",
|
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Uppfæri svæði...",
|
"one": "Uppfæri svæði...",
|
||||||
"other": "Uppfæri svæði... (%(progress)s af %(count)s)"
|
"other": "Uppfæri svæði... (%(progress)s af %(count)s)"
|
||||||
|
@ -1449,7 +1428,6 @@
|
||||||
"Cannot reach identity server": "Næ ekki sambandi við auðkennisþjón",
|
"Cannot reach identity server": "Næ ekki sambandi við auðkennisþjón",
|
||||||
"Send a sticker": "Senda límmerki",
|
"Send a sticker": "Senda límmerki",
|
||||||
"Just me": "Bara ég",
|
"Just me": "Bara ég",
|
||||||
"Room name": "Heiti spjallrásar",
|
|
||||||
"Private space": "Einkasvæði",
|
"Private space": "Einkasvæði",
|
||||||
"Doesn't look like a valid email address": "Þetta lítur ekki út eins og gilt tölvupóstfang",
|
"Doesn't look like a valid email address": "Þetta lítur ekki út eins og gilt tölvupóstfang",
|
||||||
"Mentions only": "Aðeins minnst á",
|
"Mentions only": "Aðeins minnst á",
|
||||||
|
@ -1488,7 +1466,6 @@
|
||||||
"Your theme": "Þemað þitt",
|
"Your theme": "Þemað þitt",
|
||||||
"Your user ID": "Notandaauðkennið þitt",
|
"Your user ID": "Notandaauðkennið þitt",
|
||||||
"Your display name": "Birtingarnafnið þitt",
|
"Your display name": "Birtingarnafnið þitt",
|
||||||
"Reactions": "Viðbrögð",
|
|
||||||
"No answer": "Ekkert svar",
|
"No answer": "Ekkert svar",
|
||||||
"Call back": "Hringja til baka",
|
"Call back": "Hringja til baka",
|
||||||
"Demote yourself?": "Lækka þig sjálfa/n í tign?",
|
"Demote yourself?": "Lækka þig sjálfa/n í tign?",
|
||||||
|
@ -1642,7 +1619,6 @@
|
||||||
"Delete Backup": "Eyða öryggisafriti",
|
"Delete Backup": "Eyða öryggisafriti",
|
||||||
"Message bubbles": "Skilaboðablöðrur",
|
"Message bubbles": "Skilaboðablöðrur",
|
||||||
"IRC (Experimental)": "IRC (á tilraunastigi)",
|
"IRC (Experimental)": "IRC (á tilraunastigi)",
|
||||||
"Message layout": "Framsetning skilaboða",
|
|
||||||
"Sending invites... (%(progress)s out of %(count)s)": {
|
"Sending invites... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Sendi boð...",
|
"one": "Sendi boð...",
|
||||||
"other": "Sendi boð... (%(progress)s af %(count)s)"
|
"other": "Sendi boð... (%(progress)s af %(count)s)"
|
||||||
|
@ -2365,7 +2341,6 @@
|
||||||
"Change which room you're viewing": "Breyttu hvaða spjallrás þú ert að skoða",
|
"Change which room you're viewing": "Breyttu hvaða spjallrás þú ert að skoða",
|
||||||
"%(senderDisplayName)s changed the server ACLs for this room.": "%(senderDisplayName)s breytti ACL á netþjóni fyrir þessa spjallrás.",
|
"%(senderDisplayName)s changed the server ACLs for this room.": "%(senderDisplayName)s breytti ACL á netþjóni fyrir þessa spjallrás.",
|
||||||
"%(senderDisplayName)s changed the join rule to %(rule)s": "%(senderDisplayName)s breytti þátttökureglu í %(rule)s",
|
"%(senderDisplayName)s changed the join rule to %(rule)s": "%(senderDisplayName)s breytti þátttökureglu í %(rule)s",
|
||||||
"Video": "Myndskeið",
|
|
||||||
"Verification Request": "Beiðni um sannvottun",
|
"Verification Request": "Beiðni um sannvottun",
|
||||||
"Save your Security Key": "Vista öryggislykilinn þinn",
|
"Save your Security Key": "Vista öryggislykilinn þinn",
|
||||||
"Set a Security Phrase": "Setja öryggisfrasa",
|
"Set a Security Phrase": "Setja öryggisfrasa",
|
||||||
|
@ -2472,7 +2447,6 @@
|
||||||
"You declined": "Þú hafnaðir",
|
"You declined": "Þú hafnaðir",
|
||||||
"You cancelled verifying %(name)s": "Þú hættir við sannvottun á %(name)s",
|
"You cancelled verifying %(name)s": "Þú hættir við sannvottun á %(name)s",
|
||||||
"You verified %(name)s": "Þú sannreyndir %(name)s",
|
"You verified %(name)s": "Þú sannreyndir %(name)s",
|
||||||
"Verification cancelled": "Hætt við sannprófun",
|
|
||||||
"You cancelled verification.": "Þú hættir við sannvottun.",
|
"You cancelled verification.": "Þú hættir við sannvottun.",
|
||||||
"Verification timed out.": "Sannvottun rann út á tíma.",
|
"Verification timed out.": "Sannvottun rann út á tíma.",
|
||||||
"Verify User": "Sannreyna notanda",
|
"Verify User": "Sannreyna notanda",
|
||||||
|
@ -3361,6 +3335,34 @@
|
||||||
"Get stuff done by finding your teammates": "Komdu hlutum í verk með því að finna félaga í teyminu þínu",
|
"Get stuff done by finding your teammates": "Komdu hlutum í verk með því að finna félaga í teyminu þínu",
|
||||||
"It’s what you’re here for, so lets get to it": "Það er nú einusinni það sem þú komst hingað til að gera, þannug að við skulum skella okkur í málið",
|
"It’s what you’re here for, so lets get to it": "Það er nú einusinni það sem þú komst hingað til að gera, þannug að við skulum skella okkur í málið",
|
||||||
"Sorry — this call is currently full": "Því miður - þetta símtal er fullt í augnablikinu",
|
"Sorry — this call is currently full": "Því miður - þetta símtal er fullt í augnablikinu",
|
||||||
|
"common": {
|
||||||
|
"about": "Um hugbúnaðinn",
|
||||||
|
"analytics": "Greiningar",
|
||||||
|
"encryption_enabled": "Dulritun virk",
|
||||||
|
"error": "Villa",
|
||||||
|
"forward_message": "Áframsenda skilaboð",
|
||||||
|
"image": "Mynd",
|
||||||
|
"message": "Skilaboð",
|
||||||
|
"message_layout": "Framsetning skilaboða",
|
||||||
|
"modern": "Nútímalegt",
|
||||||
|
"mute": "Þagga niður",
|
||||||
|
"no_results": "Engar niðurstöður",
|
||||||
|
"offline": "Ónettengt",
|
||||||
|
"password": "Lykilorð",
|
||||||
|
"people": "Fólk",
|
||||||
|
"reactions": "Viðbrögð",
|
||||||
|
"report_a_bug": "Tilkynna um villu",
|
||||||
|
"room_name": "Heiti spjallrásar",
|
||||||
|
"security": "Öryggi",
|
||||||
|
"settings": "Stillingar",
|
||||||
|
"sticker": "Límmerki",
|
||||||
|
"success": "Tókst",
|
||||||
|
"suggestions": "Tillögur",
|
||||||
|
"unmute": "Ekki þagga",
|
||||||
|
"username": "Notandanafn",
|
||||||
|
"verification_cancelled": "Hætt við sannprófun",
|
||||||
|
"video": "Myndskeið"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Valmynd notandans"
|
"user_menu": "Valmynd notandans"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,16 @@
|
||||||
{
|
{
|
||||||
"Failed to forget room %(errCode)s": "Impossibile dimenticare la stanza %(errCode)s",
|
"Failed to forget room %(errCode)s": "Impossibile dimenticare la stanza %(errCode)s",
|
||||||
"Mute": "Silenzia",
|
|
||||||
"Notifications": "Notifiche",
|
"Notifications": "Notifiche",
|
||||||
"Operation failed": "Operazione fallita",
|
"Operation failed": "Operazione fallita",
|
||||||
"powered by Matrix": "offerto da Matrix",
|
"powered by Matrix": "offerto da Matrix",
|
||||||
"Remove": "Rimuovi",
|
"Remove": "Rimuovi",
|
||||||
"Search": "Cerca",
|
"Search": "Cerca",
|
||||||
"Settings": "Impostazioni",
|
|
||||||
"Start chat": "Inizia una chat",
|
"Start chat": "Inizia una chat",
|
||||||
"unknown error code": "codice errore sconosciuto",
|
"unknown error code": "codice errore sconosciuto",
|
||||||
"Cancel": "Annulla",
|
"Cancel": "Annulla",
|
||||||
"Close": "Chiudi",
|
"Close": "Chiudi",
|
||||||
"Create new room": "Crea una nuova stanza",
|
"Create new room": "Crea una nuova stanza",
|
||||||
"Dismiss": "Chiudi",
|
"Dismiss": "Chiudi",
|
||||||
"Error": "Errore",
|
|
||||||
"Favourite": "Preferito",
|
"Favourite": "Preferito",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"Failed to change password. Is your password correct?": "Modifica password fallita. La tua password è corretta?",
|
"Failed to change password. Is your password correct?": "Modifica password fallita. La tua password è corretta?",
|
||||||
|
@ -66,7 +63,6 @@
|
||||||
"Warning": "Attenzione",
|
"Warning": "Attenzione",
|
||||||
"Unnamed room": "Stanza senza nome",
|
"Unnamed room": "Stanza senza nome",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Analytics": "Statistiche",
|
|
||||||
"Call Failed": "Chiamata fallita",
|
"Call Failed": "Chiamata fallita",
|
||||||
"Upload Failed": "Invio fallito",
|
"Upload Failed": "Invio fallito",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s",
|
||||||
|
@ -135,7 +131,6 @@
|
||||||
"Export E2E room keys": "Esporta chiavi E2E della stanza",
|
"Export E2E room keys": "Esporta chiavi E2E della stanza",
|
||||||
"Do you want to set an email address?": "Vuoi impostare un indirizzo email?",
|
"Do you want to set an email address?": "Vuoi impostare un indirizzo email?",
|
||||||
"Current password": "Password attuale",
|
"Current password": "Password attuale",
|
||||||
"Password": "Password",
|
|
||||||
"New Password": "Nuova password",
|
"New Password": "Nuova password",
|
||||||
"Confirm password": "Conferma password",
|
"Confirm password": "Conferma password",
|
||||||
"Change Password": "Modifica password",
|
"Change Password": "Modifica password",
|
||||||
|
@ -153,7 +148,6 @@
|
||||||
"Ignore": "Ignora",
|
"Ignore": "Ignora",
|
||||||
"Mention": "Cita",
|
"Mention": "Cita",
|
||||||
"Invite": "Invita",
|
"Invite": "Invita",
|
||||||
"Unmute": "Togli silenzio",
|
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "e altri %(count)s ...",
|
"other": "e altri %(count)s ...",
|
||||||
"one": "e un altro..."
|
"one": "e un altro..."
|
||||||
|
@ -180,7 +174,6 @@
|
||||||
"Offline for %(duration)s": "Offline per %(duration)s",
|
"Offline for %(duration)s": "Offline per %(duration)s",
|
||||||
"Unknown for %(duration)s": "Sconosciuto per %(duration)s",
|
"Unknown for %(duration)s": "Sconosciuto per %(duration)s",
|
||||||
"Idle": "Inattivo",
|
"Idle": "Inattivo",
|
||||||
"Offline": "Offline",
|
|
||||||
"Unknown": "Sconosciuto",
|
"Unknown": "Sconosciuto",
|
||||||
"Save": "Salva",
|
"Save": "Salva",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -246,7 +239,6 @@
|
||||||
"Delete Widget": "Elimina widget",
|
"Delete Widget": "Elimina widget",
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "L'eliminazione di un widget lo rimuove per tutti gli utenti della stanza. Sei sicuro di eliminare il widget?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "L'eliminazione di un widget lo rimuove per tutti gli utenti della stanza. Sei sicuro di eliminare il widget?",
|
||||||
"Delete widget": "Elimina widget",
|
"Delete widget": "Elimina widget",
|
||||||
"No results": "Nessun risultato",
|
|
||||||
"Home": "Pagina iniziale",
|
"Home": "Pagina iniziale",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -390,7 +382,6 @@
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "Invio di %(filename)s",
|
"Uploading %(filename)s": "Invio di %(filename)s",
|
||||||
"Sign out": "Disconnetti",
|
"Sign out": "Disconnetti",
|
||||||
"Success": "Successo",
|
|
||||||
"Unable to remove contact information": "Impossibile rimuovere le informazioni di contatto",
|
"Unable to remove contact information": "Impossibile rimuovere le informazioni di contatto",
|
||||||
"<not supported>": "<non supportato>",
|
"<not supported>": "<non supportato>",
|
||||||
"Import E2E room keys": "Importa chiavi E2E stanza",
|
"Import E2E room keys": "Importa chiavi E2E stanza",
|
||||||
|
@ -821,7 +812,6 @@
|
||||||
"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.",
|
||||||
"Username": "Nome utente",
|
|
||||||
"Change": "Cambia",
|
"Change": "Cambia",
|
||||||
"Email (optional)": "Email (facoltativa)",
|
"Email (optional)": "Email (facoltativa)",
|
||||||
"Phone (optional)": "Telefono (facoltativo)",
|
"Phone (optional)": "Telefono (facoltativo)",
|
||||||
|
@ -1170,7 +1160,6 @@
|
||||||
"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.",
|
||||||
"Security": "Sicurezza",
|
|
||||||
"Verify": "Verifica",
|
"Verify": "Verifica",
|
||||||
"Any of the following data may be shared:": "Possono essere condivisi tutti i seguenti dati:",
|
"Any of the following data may be shared:": "Possono essere condivisi tutti i seguenti dati:",
|
||||||
"Your display name": "Il tuo nome visualizzato",
|
"Your display name": "Il tuo nome visualizzato",
|
||||||
|
@ -1202,7 +1191,6 @@
|
||||||
"Error upgrading room": "Errore di aggiornamento stanza",
|
"Error upgrading room": "Errore di aggiornamento stanza",
|
||||||
"Double check that your server supports the room version chosen and try again.": "Controlla che il tuo server supporti la versione di stanza scelta e riprova.",
|
"Double check that your server supports the room version chosen and try again.": "Controlla che il tuo server supporti la versione di stanza scelta e riprova.",
|
||||||
"Unencrypted": "Non criptato",
|
"Unencrypted": "Non criptato",
|
||||||
"Reactions": "Reazioni",
|
|
||||||
"Upgrade private room": "Aggiorna stanza privata",
|
"Upgrade private room": "Aggiorna stanza privata",
|
||||||
"Upgrade public room": "Aggiorna stanza pubblica",
|
"Upgrade public room": "Aggiorna stanza pubblica",
|
||||||
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Aggiornare una stanza è un'azione avanzata ed è consigliabile quando una stanza non è stabile a causa di errori, funzioni mancanti o vulnerabilità di sicurezza.",
|
"Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Aggiornare una stanza è un'azione avanzata ed è consigliabile quando una stanza non è stabile a causa di errori, funzioni mancanti o vulnerabilità di sicurezza.",
|
||||||
|
@ -1248,7 +1236,6 @@
|
||||||
"Show info about bridges in room settings": "Mostra info sui bridge nelle impostazioni stanza",
|
"Show info about bridges in room settings": "Mostra info sui bridge nelle impostazioni stanza",
|
||||||
"This bridge is managed by <user />.": "Questo bridge è gestito da <user />.",
|
"This bridge is managed by <user />.": "Questo bridge è gestito da <user />.",
|
||||||
"Recent Conversations": "Conversazioni recenti",
|
"Recent Conversations": "Conversazioni recenti",
|
||||||
"Suggestions": "Suggerimenti",
|
|
||||||
"Show more": "Mostra altro",
|
"Show more": "Mostra altro",
|
||||||
"Direct Messages": "Messaggi diretti",
|
"Direct Messages": "Messaggi diretti",
|
||||||
"Go": "Vai",
|
"Go": "Vai",
|
||||||
|
@ -1354,7 +1341,6 @@
|
||||||
"If you can't scan the code above, verify by comparing unique emoji.": "Se non riesci a scansionare il codice sopra, verifica confrontando emoji specifiche.",
|
"If you can't scan the code above, verify by comparing unique emoji.": "Se non riesci a scansionare il codice sopra, verifica confrontando emoji specifiche.",
|
||||||
"You've successfully verified %(displayName)s!": "Hai verificato correttamente %(displayName)s!",
|
"You've successfully verified %(displayName)s!": "Hai verificato correttamente %(displayName)s!",
|
||||||
"Got it": "Capito",
|
"Got it": "Capito",
|
||||||
"Encryption enabled": "Crittografia attivata",
|
|
||||||
"Encryption not enabled": "Crittografia non attivata",
|
"Encryption not enabled": "Crittografia non attivata",
|
||||||
"The encryption used by this room isn't supported.": "La crittografia usata da questa stanza non è supportata.",
|
"The encryption used by this room isn't supported.": "La crittografia usata da questa stanza non è supportata.",
|
||||||
"Clear all data in this session?": "Svuotare tutti i dati in questa sessione?",
|
"Clear all data in this session?": "Svuotare tutti i dati in questa sessione?",
|
||||||
|
@ -1489,7 +1475,6 @@
|
||||||
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Verifica individualmente ogni sessione usata da un utente per segnarla come fidata, senza fidarsi dei dispositivi a firma incrociata.",
|
"Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Verifica individualmente ogni sessione usata da un utente per segnarla come fidata, senza fidarsi dei dispositivi a firma incrociata.",
|
||||||
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Nelle stanze cifrate, i tuoi messaggi sono protetti e solo tu ed il destinatario avete le chiavi univoche per sbloccarli.",
|
"In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Nelle stanze cifrate, i tuoi messaggi sono protetti e solo tu ed il destinatario avete le chiavi univoche per sbloccarli.",
|
||||||
"Verify all users in a room to ensure it's secure.": "Verifica tutti gli utenti in una stanza per confermare che sia sicura.",
|
"Verify all users in a room to ensure it's secure.": "Verifica tutti gli utenti in una stanza per confermare che sia sicura.",
|
||||||
"Verification cancelled": "Verifica annullata",
|
|
||||||
"Cancel replying to a message": "Annulla la risposta a un messaggio",
|
"Cancel replying to a message": "Annulla la risposta a un messaggio",
|
||||||
"Sends a message as html, without interpreting it as markdown": "Invia un messaggio come html, senza interpretarlo come markdown",
|
"Sends a message as html, without interpreting it as markdown": "Invia un messaggio come html, senza interpretarlo come markdown",
|
||||||
"Sign in with SSO": "Accedi con SSO",
|
"Sign in with SSO": "Accedi con SSO",
|
||||||
|
@ -1580,7 +1565,6 @@
|
||||||
"Ok": "Ok",
|
"Ok": "Ok",
|
||||||
"New version available. <a>Update now.</a>": "Nuova versione disponibile. <a>Aggiorna ora.</a>",
|
"New version available. <a>Update now.</a>": "Nuova versione disponibile. <a>Aggiorna ora.</a>",
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "L'amministratore del server ha disattivato la crittografia end-to-end in modo predefinito nelle stanze private e nei messaggi diretti.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "L'amministratore del server ha disattivato la crittografia end-to-end in modo predefinito nelle stanze private e nei messaggi diretti.",
|
||||||
"People": "Persone",
|
|
||||||
"Switch to light mode": "Passa alla modalità chiara",
|
"Switch to light mode": "Passa alla modalità chiara",
|
||||||
"Switch to dark mode": "Passa alla modalità scura",
|
"Switch to dark mode": "Passa alla modalità scura",
|
||||||
"Switch theme": "Cambia tema",
|
"Switch theme": "Cambia tema",
|
||||||
|
@ -1604,8 +1588,6 @@
|
||||||
"Looks good!": "Sembra giusta!",
|
"Looks good!": "Sembra giusta!",
|
||||||
"Use custom size": "Usa dimensione personalizzata",
|
"Use custom size": "Usa dimensione personalizzata",
|
||||||
"Hey you. You're the best!": "Ehi tu. Sei il migliore!",
|
"Hey you. You're the best!": "Ehi tu. Sei il migliore!",
|
||||||
"Message layout": "Disposizione del messaggio",
|
|
||||||
"Modern": "Moderno",
|
|
||||||
"Use a system font": "Usa un carattere di sistema",
|
"Use a system font": "Usa un carattere di sistema",
|
||||||
"System font name": "Nome carattere di sistema",
|
"System font name": "Nome carattere di sistema",
|
||||||
"The authenticity of this encrypted message can't be guaranteed on this device.": "L'autenticità di questo messaggio cifrato non può essere garantita su questo dispositivo.",
|
"The authenticity of this encrypted message can't be guaranteed on this device.": "L'autenticità di questo messaggio cifrato non può essere garantita su questo dispositivo.",
|
||||||
|
@ -1691,7 +1673,6 @@
|
||||||
"Secure Backup": "Backup Sicuro",
|
"Secure Backup": "Backup Sicuro",
|
||||||
"Privacy": "Privacy",
|
"Privacy": "Privacy",
|
||||||
"Not encrypted": "Non cifrato",
|
"Not encrypted": "Non cifrato",
|
||||||
"About": "Al riguardo",
|
|
||||||
"Room settings": "Impostazioni stanza",
|
"Room settings": "Impostazioni stanza",
|
||||||
"Take a picture": "Scatta una foto",
|
"Take a picture": "Scatta una foto",
|
||||||
"Unpin": "Sblocca",
|
"Unpin": "Sblocca",
|
||||||
|
@ -1736,7 +1717,6 @@
|
||||||
"Send feedback": "Invia feedback",
|
"Send feedback": "Invia feedback",
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "CONSIGLIO: se segnali un errore, invia <debugLogsLink>i log di debug</debugLogsLink> per aiutarci ad individuare il problema.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "CONSIGLIO: se segnali un errore, invia <debugLogsLink>i log di debug</debugLogsLink> per aiutarci ad individuare il problema.",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Prima controlla <existingIssuesLink>gli errori esistenti su Github</existingIssuesLink>. Non l'hai trovato? <newIssueLink>Apri una segnalazione</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Prima controlla <existingIssuesLink>gli errori esistenti su Github</existingIssuesLink>. Non l'hai trovato? <newIssueLink>Apri una segnalazione</newIssueLink>.",
|
||||||
"Report a bug": "Segnala un errore",
|
|
||||||
"Comment": "Commento",
|
"Comment": "Commento",
|
||||||
"Feedback sent": "Feedback inviato",
|
"Feedback sent": "Feedback inviato",
|
||||||
"%(senderName)s ended the call": "%(senderName)s ha terminato la chiamata",
|
"%(senderName)s ended the call": "%(senderName)s ha terminato la chiamata",
|
||||||
|
@ -2215,7 +2195,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",
|
||||||
"Room name": "Nome stanza",
|
|
||||||
"Support": "Supporto",
|
"Support": "Supporto",
|
||||||
"Random": "Casuale",
|
"Random": "Casuale",
|
||||||
"Welcome to <name/>": "Ti diamo il benvenuto in <name/>",
|
"Welcome to <name/>": "Ti diamo il benvenuto in <name/>",
|
||||||
|
@ -2389,7 +2368,6 @@
|
||||||
"Or send invite link": "O manda un collegamento di invito",
|
"Or send invite link": "O manda un collegamento di invito",
|
||||||
"Some suggestions may be hidden for privacy.": "Alcuni suggerimenti potrebbero essere nascosti per privacy.",
|
"Some suggestions may be hidden for privacy.": "Alcuni suggerimenti potrebbero essere nascosti per privacy.",
|
||||||
"Search for rooms or people": "Cerca stanze o persone",
|
"Search for rooms or people": "Cerca stanze o persone",
|
||||||
"Forward message": "Inoltra messaggio",
|
|
||||||
"Sent": "Inviato",
|
"Sent": "Inviato",
|
||||||
"You don't have permission to do this": "Non hai il permesso per farlo",
|
"You don't have permission to do this": "Non hai il permesso per farlo",
|
||||||
"Error - Mixed content": "Errore - Contenuto misto",
|
"Error - Mixed content": "Errore - Contenuto misto",
|
||||||
|
@ -2526,8 +2504,6 @@
|
||||||
"Anyone will be able to find and join this room, not just members of <SpaceName/>.": "Chiunque potrà trovare ed entrare in questa stanza, non solo i membri di <SpaceName/>.",
|
"Anyone will be able to find and join this room, not just members of <SpaceName/>.": "Chiunque potrà trovare ed entrare in questa stanza, non solo i membri di <SpaceName/>.",
|
||||||
"You can change this at any time from room settings.": "Puoi cambiarlo in qualsiasi momento dalle impostazioni della stanza.",
|
"You can change this at any time from room settings.": "Puoi cambiarlo in qualsiasi momento dalle impostazioni della stanza.",
|
||||||
"Everyone in <SpaceName/> will be able to find and join this room.": "Chiunque in <SpaceName/> potrà trovare ed entrare in questa stanza.",
|
"Everyone in <SpaceName/> will be able to find and join this room.": "Chiunque in <SpaceName/> potrà trovare ed entrare in questa stanza.",
|
||||||
"Image": "Immagine",
|
|
||||||
"Sticker": "Sticker",
|
|
||||||
"The call is in an unknown state!": "La chiamata è in uno stato sconosciuto!",
|
"The call is in an unknown state!": "La chiamata è in uno stato sconosciuto!",
|
||||||
"Call back": "Richiama",
|
"Call back": "Richiama",
|
||||||
"No answer": "Nessuna risposta",
|
"No answer": "Nessuna risposta",
|
||||||
|
@ -2637,7 +2613,6 @@
|
||||||
"Change space name": "Cambia nome dello spazio",
|
"Change space name": "Cambia nome dello spazio",
|
||||||
"Change space avatar": "Cambia avatar dello spazio",
|
"Change space avatar": "Cambia avatar dello spazio",
|
||||||
"Message didn't send. Click for info.": "Il messaggio non è stato inviato. Clicca per informazioni.",
|
"Message didn't send. Click for info.": "Il messaggio non è stato inviato. Clicca per informazioni.",
|
||||||
"Message": "Messaggio",
|
|
||||||
"To join a space you'll need an invite.": "Per entrare in uno spazio ti serve un invito.",
|
"To join a space you'll need an invite.": "Per entrare in uno spazio ti serve un invito.",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s ha reagito con %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s ha reagito con %(content)s",
|
||||||
"Would you like to leave the rooms in this space?": "Vuoi uscire dalle stanze di questo spazio?",
|
"Would you like to leave the rooms in this space?": "Vuoi uscire dalle stanze di questo spazio?",
|
||||||
|
@ -3133,7 +3108,6 @@
|
||||||
"Next recently visited room or space": "Successiva stanza o spazio visitati di recente",
|
"Next recently visited room or space": "Successiva stanza o spazio visitati di recente",
|
||||||
"Previous recently visited room or space": "Precedente stanza o spazio visitati di recente",
|
"Previous recently visited room or space": "Precedente stanza o spazio visitati di recente",
|
||||||
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "I log di debug contengono dati di utilizzo dell'applicazione inclusi il nome utente, gli ID o alias delle stanze o gruppi visitati, gli ultimi elementi dell'interfaccia con cui hai interagito e i nomi degli altri utenti. Non contengono messaggi.",
|
"Debug logs contain application usage data including your username, the IDs or aliases of the rooms you have visited, which UI elements you last interacted with, and the usernames of other users. They do not contain messages.": "I log di debug contengono dati di utilizzo dell'applicazione inclusi il nome utente, gli ID o alias delle stanze o gruppi visitati, gli ultimi elementi dell'interfaccia con cui hai interagito e i nomi degli altri utenti. Non contengono messaggi.",
|
||||||
"Video": "Video",
|
|
||||||
"Event ID: %(eventId)s": "ID evento: %(eventId)s",
|
"Event ID: %(eventId)s": "ID evento: %(eventId)s",
|
||||||
"No verification requests found": "Nessuna richiesta di verifica trovata",
|
"No verification requests found": "Nessuna richiesta di verifica trovata",
|
||||||
"Observe only": "Osserva solo",
|
"Observe only": "Osserva solo",
|
||||||
|
@ -3757,7 +3731,6 @@
|
||||||
"Adding…": "Aggiunta…",
|
"Adding…": "Aggiunta…",
|
||||||
"Write something…": "Scrivi qualcosa…",
|
"Write something…": "Scrivi qualcosa…",
|
||||||
"Rejecting invite…": "Rifiuto dell'invito…",
|
"Rejecting invite…": "Rifiuto dell'invito…",
|
||||||
"Loading…": "Caricamento…",
|
|
||||||
"Joining room…": "Ingresso nella stanza…",
|
"Joining room…": "Ingresso nella stanza…",
|
||||||
"Joining space…": "Ingresso nello spazio…",
|
"Joining space…": "Ingresso nello spazio…",
|
||||||
"Encrypting your message…": "Crittazione del tuo messaggio…",
|
"Encrypting your message…": "Crittazione del tuo messaggio…",
|
||||||
|
@ -3974,6 +3947,35 @@
|
||||||
"No requests": "Nessuna richiesta",
|
"No requests": "Nessuna richiesta",
|
||||||
"Deny": "Nega",
|
"Deny": "Nega",
|
||||||
"Asking to join": "Richiesta di entrare",
|
"Asking to join": "Richiesta di entrare",
|
||||||
|
"common": {
|
||||||
|
"about": "Al riguardo",
|
||||||
|
"analytics": "Statistiche",
|
||||||
|
"encryption_enabled": "Crittografia attivata",
|
||||||
|
"error": "Errore",
|
||||||
|
"forward_message": "Inoltra messaggio",
|
||||||
|
"image": "Immagine",
|
||||||
|
"loading": "Caricamento…",
|
||||||
|
"message": "Messaggio",
|
||||||
|
"message_layout": "Disposizione del messaggio",
|
||||||
|
"modern": "Moderno",
|
||||||
|
"mute": "Silenzia",
|
||||||
|
"no_results": "Nessun risultato",
|
||||||
|
"offline": "Offline",
|
||||||
|
"password": "Password",
|
||||||
|
"people": "Persone",
|
||||||
|
"reactions": "Reazioni",
|
||||||
|
"report_a_bug": "Segnala un errore",
|
||||||
|
"room_name": "Nome stanza",
|
||||||
|
"security": "Sicurezza",
|
||||||
|
"settings": "Impostazioni",
|
||||||
|
"sticker": "Sticker",
|
||||||
|
"success": "Successo",
|
||||||
|
"suggestions": "Suggerimenti",
|
||||||
|
"unmute": "Togli silenzio",
|
||||||
|
"username": "Nome utente",
|
||||||
|
"verification_cancelled": "Verifica annullata",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu utente"
|
"user_menu": "Menu utente"
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,12 +7,10 @@
|
||||||
"Favourites": "お気に入り",
|
"Favourites": "お気に入り",
|
||||||
"Invited": "招待済",
|
"Invited": "招待済",
|
||||||
"Low priority": "低優先度",
|
"Low priority": "低優先度",
|
||||||
"Mute": "ミュート",
|
|
||||||
"Notifications": "通知",
|
"Notifications": "通知",
|
||||||
"Cancel": "キャンセル",
|
"Cancel": "キャンセル",
|
||||||
"Create new room": "新しいルームを作成",
|
"Create new room": "新しいルームを作成",
|
||||||
"Search": "検索",
|
"Search": "検索",
|
||||||
"Settings": "設定",
|
|
||||||
"Start chat": "チャットを開始",
|
"Start chat": "チャットを開始",
|
||||||
"New Password": "新しいパスワード",
|
"New Password": "新しいパスワード",
|
||||||
"Failed to change password. Is your password correct?": "パスワードの変更に失敗しました。パスワードは正しいですか?",
|
"Failed to change password. Is your password correct?": "パスワードの変更に失敗しました。パスワードは正しいですか?",
|
||||||
|
@ -30,7 +28,6 @@
|
||||||
"Operation failed": "操作に失敗しました",
|
"Operation failed": "操作に失敗しました",
|
||||||
"Dismiss": "閉じる",
|
"Dismiss": "閉じる",
|
||||||
"powered by Matrix": "powered by Matrix",
|
"powered by Matrix": "powered by Matrix",
|
||||||
"Error": "エラー",
|
|
||||||
"Remove": "削除",
|
"Remove": "削除",
|
||||||
"Submit debug logs": "デバッグログを送信",
|
"Submit debug logs": "デバッグログを送信",
|
||||||
"Edit": "編集",
|
"Edit": "編集",
|
||||||
|
@ -44,7 +41,6 @@
|
||||||
"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": "この電話番号は既に使用されています",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "メールアドレスの認証に失敗しました。電子メール内のリンクをクリックしたことを確認してください",
|
"Failed to verify email address: make sure you clicked the link in the email": "メールアドレスの認証に失敗しました。電子メール内のリンクをクリックしたことを確認してください",
|
||||||
"Analytics": "分析",
|
|
||||||
"Thursday": "木曜日",
|
"Thursday": "木曜日",
|
||||||
"Messages in one-to-one chats": "1対1のチャットでのメッセージ",
|
"Messages in one-to-one chats": "1対1のチャットでのメッセージ",
|
||||||
"All Rooms": "全てのルーム",
|
"All Rooms": "全てのルーム",
|
||||||
|
@ -217,7 +213,6 @@
|
||||||
"Warning!": "警告!",
|
"Warning!": "警告!",
|
||||||
"Export E2E room keys": "ルームのエンドツーエンド暗号鍵をエクスポート",
|
"Export E2E room keys": "ルームのエンドツーエンド暗号鍵をエクスポート",
|
||||||
"Do you want to set an email address?": "メールアドレスを設定しますか?",
|
"Do you want to set an email address?": "メールアドレスを設定しますか?",
|
||||||
"Password": "パスワード",
|
|
||||||
"Confirm password": "パスワードを確認",
|
"Confirm password": "パスワードを確認",
|
||||||
"Authentication": "認証",
|
"Authentication": "認証",
|
||||||
"Failed to set display name": "表示名の設定に失敗しました",
|
"Failed to set display name": "表示名の設定に失敗しました",
|
||||||
|
@ -238,7 +233,6 @@
|
||||||
"Jump to read receipt": "既読通知へ移動",
|
"Jump to read receipt": "既読通知へ移動",
|
||||||
"Invite": "招待",
|
"Invite": "招待",
|
||||||
"Share Link to User": "ユーザーへのリンクを共有",
|
"Share Link to User": "ユーザーへのリンクを共有",
|
||||||
"Unmute": "ミュート解除",
|
|
||||||
"Admin Tools": "管理者ツール",
|
"Admin Tools": "管理者ツール",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "他%(count)s人…",
|
"other": "他%(count)s人…",
|
||||||
|
@ -266,7 +260,6 @@
|
||||||
"Offline for %(duration)s": "オフライン時間 %(duration)s",
|
"Offline for %(duration)s": "オフライン時間 %(duration)s",
|
||||||
"Unknown for %(duration)s": "不明な時間 %(duration)s",
|
"Unknown for %(duration)s": "不明な時間 %(duration)s",
|
||||||
"Idle": "待機中",
|
"Idle": "待機中",
|
||||||
"Offline": "オフライン",
|
|
||||||
"Unknown": "不明",
|
"Unknown": "不明",
|
||||||
"Replying": "以下に返信",
|
"Replying": "以下に返信",
|
||||||
"Save": "保存",
|
"Save": "保存",
|
||||||
|
@ -341,7 +334,6 @@
|
||||||
"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?": "ウィジェットを削除すると、このルームの全てのユーザーから削除されます。削除してよろしいですか?",
|
||||||
"Delete widget": "ウィジェットを削除",
|
"Delete widget": "ウィジェットを削除",
|
||||||
"Popout widget": "ウィジェットをポップアウト",
|
"Popout widget": "ウィジェットをポップアウト",
|
||||||
"No results": "結果がありません",
|
|
||||||
"Home": "ホーム",
|
"Home": "ホーム",
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s%(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s%(transitionList)s",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
|
@ -519,7 +511,6 @@
|
||||||
"one": "%(filename)sと他%(count)s件をアップロードしています"
|
"one": "%(filename)sと他%(count)s件をアップロードしています"
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "%(filename)sをアップロードしています",
|
"Uploading %(filename)s": "%(filename)sをアップロードしています",
|
||||||
"Success": "成功",
|
|
||||||
"Unable to remove contact information": "連絡先の情報を削除できません",
|
"Unable to remove contact information": "連絡先の情報を削除できません",
|
||||||
"<not supported>": "<サポート対象外>",
|
"<not supported>": "<サポート対象外>",
|
||||||
"Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート",
|
"Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート",
|
||||||
|
@ -700,7 +691,6 @@
|
||||||
"Room Topic": "ルームのトピック",
|
"Room Topic": "ルームのトピック",
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>%(shortName)sでリアクションしました</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>%(shortName)sでリアクションしました</reactedWith>",
|
||||||
"Next": "次へ",
|
"Next": "次へ",
|
||||||
"Username": "ユーザー名",
|
|
||||||
"Create account": "アカウントを作成",
|
"Create account": "アカウントを作成",
|
||||||
"Error upgrading room": "ルームをアップグレードする際にエラーが発生しました",
|
"Error upgrading room": "ルームをアップグレードする際にエラーが発生しました",
|
||||||
"%(senderName)s placed a voice call.": "%(senderName)sが音声通話を行いました。",
|
"%(senderName)s placed a voice call.": "%(senderName)sが音声通話を行いました。",
|
||||||
|
@ -736,7 +726,6 @@
|
||||||
"Download": "ダウンロード",
|
"Download": "ダウンロード",
|
||||||
"Display Name": "表示名",
|
"Display Name": "表示名",
|
||||||
"Profile picture": "プロフィール画像",
|
"Profile picture": "プロフィール画像",
|
||||||
"Encryption enabled": "暗号化が有効です",
|
|
||||||
"Encryption not enabled": "暗号化が有効になっていません",
|
"Encryption not enabled": "暗号化が有効になっていません",
|
||||||
"The encryption used by this room isn't supported.": "このルームで使用されている暗号化はサポートされていません。",
|
"The encryption used by this room isn't supported.": "このルームで使用されている暗号化はサポートされていません。",
|
||||||
"Cross-signing public keys:": "クロス署名の公開鍵:",
|
"Cross-signing public keys:": "クロス署名の公開鍵:",
|
||||||
|
@ -815,7 +804,6 @@
|
||||||
"one": "%(count)s個のセッション"
|
"one": "%(count)s個のセッション"
|
||||||
},
|
},
|
||||||
"Hide sessions": "セッションを隠す",
|
"Hide sessions": "セッションを隠す",
|
||||||
"Security": "セキュリティー",
|
|
||||||
"Welcome to %(appName)s": "%(appName)sにようこそ",
|
"Welcome to %(appName)s": "%(appName)sにようこそ",
|
||||||
"Send a Direct Message": "ダイレクトメッセージを送信",
|
"Send a Direct Message": "ダイレクトメッセージを送信",
|
||||||
"Explore Public Rooms": "公開ルームを探す",
|
"Explore Public Rooms": "公開ルームを探す",
|
||||||
|
@ -826,7 +814,6 @@
|
||||||
"You signed in to a new session without verifying it:": "あなたのこのセッションはまだ認証されていません:",
|
"You signed in to a new session without verifying it:": "あなたのこのセッションはまだ認証されていません:",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s(%(userId)s)は未認証のセッションにサインインしました:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s(%(userId)s)は未認証のセッションにサインインしました:",
|
||||||
"Recent Conversations": "最近会話したユーザー",
|
"Recent Conversations": "最近会話したユーザー",
|
||||||
"Suggestions": "提案",
|
|
||||||
"Go": "続行",
|
"Go": "続行",
|
||||||
"Session already verified!": "このセッションは認証済です!",
|
"Session already verified!": "このセッションは認証済です!",
|
||||||
"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!": "警告:鍵の認証に失敗しました!提供された鍵「%(fingerprint)s」は、%(userId)sおよびセッション %(deviceId)s の署名鍵「%(fprint)s」と一致しません。通信が傍受されているおそれがあります!",
|
"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!": "警告:鍵の認証に失敗しました!提供された鍵「%(fingerprint)s」は、%(userId)sおよびセッション %(deviceId)s の署名鍵「%(fprint)s」と一致しません。通信が傍受されているおそれがあります!",
|
||||||
|
@ -917,13 +904,11 @@
|
||||||
"Hey you. You're the best!": "こんにちは、よろしくね!",
|
"Hey you. You're the best!": "こんにちは、よろしくね!",
|
||||||
"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のセッションにのみ適用されます。",
|
||||||
"People": "連絡先",
|
|
||||||
"Notification options": "通知設定",
|
"Notification options": "通知設定",
|
||||||
"Verify User": "ユーザーの認証",
|
"Verify User": "ユーザーの認証",
|
||||||
"Your homeserver": "あなたのホームサーバー",
|
"Your homeserver": "あなたのホームサーバー",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)sが認証をキャンセルしました。",
|
"%(displayName)s cancelled verification.": "%(displayName)sが認証をキャンセルしました。",
|
||||||
"You cancelled verification.": "認証をキャンセルしました。",
|
"You cancelled verification.": "認証をキャンセルしました。",
|
||||||
"Verification cancelled": "認証のキャンセル",
|
|
||||||
"Switch to light mode": "ライトテーマに切り替える",
|
"Switch to light mode": "ライトテーマに切り替える",
|
||||||
"Switch to dark mode": "ダークテーマに切り替える",
|
"Switch to dark mode": "ダークテーマに切り替える",
|
||||||
"Switch theme": "テーマを切り替える",
|
"Switch theme": "テーマを切り替える",
|
||||||
|
@ -972,7 +957,6 @@
|
||||||
"%(num)s days from now": "今から%(num)s日前",
|
"%(num)s days from now": "今から%(num)s日前",
|
||||||
"%(name)s (%(userId)s)": "%(name)s(%(userId)s)",
|
"%(name)s (%(userId)s)": "%(name)s(%(userId)s)",
|
||||||
"Unknown App": "不明なアプリ",
|
"Unknown App": "不明なアプリ",
|
||||||
"About": "概要",
|
|
||||||
"Room settings": "ルームの設定",
|
"Room settings": "ルームの設定",
|
||||||
"Show image": "画像を表示",
|
"Show image": "画像を表示",
|
||||||
"Upload files (%(current)s of %(total)s)": "ファイルのアップロード(%(current)s/%(total)s)",
|
"Upload files (%(current)s of %(total)s)": "ファイルのアップロード(%(current)s/%(total)s)",
|
||||||
|
@ -1064,7 +1048,6 @@
|
||||||
"Create Account": "アカウントを作成",
|
"Create Account": "アカウントを作成",
|
||||||
"Explore rooms": "ルームを探す",
|
"Explore rooms": "ルームを探す",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "まず、<existingIssuesLink>Githubで既知の不具合</existingIssuesLink>を確認してください。また掲載されていない新しい不具合を発見した場合は<newIssueLink>報告してください</newIssueLink>。",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "まず、<existingIssuesLink>Githubで既知の不具合</existingIssuesLink>を確認してください。また掲載されていない新しい不具合を発見した場合は<newIssueLink>報告してください</newIssueLink>。",
|
||||||
"Report a bug": "不具合の報告",
|
|
||||||
"Update %(brand)s": "%(brand)sの更新",
|
"Update %(brand)s": "%(brand)sの更新",
|
||||||
"New version of %(brand)s is available": "%(brand)sの新しいバージョンが利用可能です",
|
"New version of %(brand)s is available": "%(brand)sの新しいバージョンが利用可能です",
|
||||||
"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以外からの参加をブロック。",
|
||||||
|
@ -1786,7 +1769,6 @@
|
||||||
"Confirm adding phone number": "電話番号の追加を承認",
|
"Confirm adding phone number": "電話番号の追加を承認",
|
||||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "シングルサインオンを使用して本人確認を行い、電話番号の追加を承認してください。",
|
"Confirm adding this phone number 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.": "下のボタンをクリックすると、このメールアドレスを追加します。",
|
||||||
"Reactions": "リアクション",
|
|
||||||
"%(name)s accepted": "%(name)sは受け付けました",
|
"%(name)s accepted": "%(name)sは受け付けました",
|
||||||
"You accepted": "受け付けました",
|
"You accepted": "受け付けました",
|
||||||
"%(name)s cancelled": "%(name)sは中止しました",
|
"%(name)s cancelled": "%(name)sは中止しました",
|
||||||
|
@ -1965,7 +1947,6 @@
|
||||||
"QR Code": "QRコード",
|
"QR Code": "QRコード",
|
||||||
"Home options": "ホームのオプション",
|
"Home options": "ホームのオプション",
|
||||||
"Report": "報告",
|
"Report": "報告",
|
||||||
"Forward message": "メッセージを転送",
|
|
||||||
"Forward": "転送",
|
"Forward": "転送",
|
||||||
"Files": "ファイル",
|
"Files": "ファイル",
|
||||||
"Number of messages": "メッセージ数",
|
"Number of messages": "メッセージ数",
|
||||||
|
@ -2002,7 +1983,6 @@
|
||||||
"Send voice message": "音声メッセージを送信",
|
"Send voice message": "音声メッセージを送信",
|
||||||
"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": "音声メッセージ",
|
||||||
"Sticker": "ステッカー",
|
|
||||||
"Poll": "アンケート",
|
"Poll": "アンケート",
|
||||||
"Insert link": "リンクを挿入",
|
"Insert link": "リンクを挿入",
|
||||||
"Calls are unsupported": "通話はサポートされていません",
|
"Calls are unsupported": "通話はサポートされていません",
|
||||||
|
@ -2097,7 +2077,6 @@
|
||||||
"one": "%(count)s個の投票",
|
"one": "%(count)s個の投票",
|
||||||
"other": "%(count)s個の投票"
|
"other": "%(count)s個の投票"
|
||||||
},
|
},
|
||||||
"Image": "画像",
|
|
||||||
"Reply in thread": "スレッドで返信",
|
"Reply in thread": "スレッドで返信",
|
||||||
"Decrypting": "復号化しています",
|
"Decrypting": "復号化しています",
|
||||||
"Downloading": "ダウンロードしています",
|
"Downloading": "ダウンロードしています",
|
||||||
|
@ -2156,8 +2135,6 @@
|
||||||
"Image size in the timeline": "タイムライン上での画像のサイズ",
|
"Image size in the timeline": "タイムライン上での画像のサイズ",
|
||||||
"Enable email notifications for %(email)s": "%(email)sへの電子メール通知を有効にする",
|
"Enable email notifications for %(email)s": "%(email)sへの電子メール通知を有効にする",
|
||||||
"Message bubbles": "吹き出し",
|
"Message bubbles": "吹き出し",
|
||||||
"Modern": "モダン",
|
|
||||||
"Message layout": "メッセージのレイアウト",
|
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "スペースを更新しています…",
|
"one": "スペースを更新しています…",
|
||||||
"other": "スペースを更新しています…(計%(count)s個のうち%(progress)s個)"
|
"other": "スペースを更新しています…(計%(count)s個のうち%(progress)s個)"
|
||||||
|
@ -2172,7 +2149,6 @@
|
||||||
"Use high contrast": "高コントラストを使用",
|
"Use high contrast": "高コントラストを使用",
|
||||||
"Developer mode": "開発者モード",
|
"Developer mode": "開発者モード",
|
||||||
"Address": "アドレス",
|
"Address": "アドレス",
|
||||||
"Message": "メッセージ",
|
|
||||||
"Shows all threads from current room": "現在のルームのスレッドを全て表示",
|
"Shows all threads from current room": "現在のルームのスレッドを全て表示",
|
||||||
"All threads": "全てのスレッド",
|
"All threads": "全てのスレッド",
|
||||||
"Keep discussions organised with threads": "スレッド機能を使って、会話をまとめましょう",
|
"Keep discussions organised with threads": "スレッド機能を使って、会話をまとめましょう",
|
||||||
|
@ -2475,7 +2451,6 @@
|
||||||
"Delete all": "全て削除",
|
"Delete all": "全て削除",
|
||||||
"You don't have permission": "権限がありません",
|
"You don't have permission": "権限がありません",
|
||||||
"Results": "結果",
|
"Results": "結果",
|
||||||
"Room name": "ルーム名",
|
|
||||||
"Random": "ランダム",
|
"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": "ユーザー名で招待",
|
||||||
|
@ -3178,7 +3153,6 @@
|
||||||
"Video rooms": "ビデオ通話ルーム",
|
"Video rooms": "ビデオ通話ルーム",
|
||||||
"You were disconnected from the call. (Error: %(message)s)": "通話から切断されました。(エラー:%(message)s)",
|
"You were disconnected from the call. (Error: %(message)s)": "通話から切断されました。(エラー:%(message)s)",
|
||||||
"Connection lost": "接続が切断されました",
|
"Connection lost": "接続が切断されました",
|
||||||
"Video": "動画",
|
|
||||||
"Room info": "ルームの情報",
|
"Room info": "ルームの情報",
|
||||||
"Receive push notifications on this session.": "このセッションでプッシュ通知を受信。",
|
"Receive push notifications on this session.": "このセッションでプッシュ通知を受信。",
|
||||||
"Push notifications": "プッシュ通知",
|
"Push notifications": "プッシュ通知",
|
||||||
|
@ -3750,7 +3724,6 @@
|
||||||
"Adding…": "追加しています…",
|
"Adding…": "追加しています…",
|
||||||
"Write something…": "記入してください…",
|
"Write something…": "記入してください…",
|
||||||
"Rejecting invite…": "招待を拒否しています…",
|
"Rejecting invite…": "招待を拒否しています…",
|
||||||
"Loading…": "読み込んでいます…",
|
|
||||||
"Joining room…": "ルームに参加しています…",
|
"Joining room…": "ルームに参加しています…",
|
||||||
"Joining space…": "スペースに参加しています…",
|
"Joining space…": "スペースに参加しています…",
|
||||||
"Encrypting your message…": "メッセージを暗号化しています…",
|
"Encrypting your message…": "メッセージを暗号化しています…",
|
||||||
|
@ -3771,6 +3744,35 @@
|
||||||
"Secure Backup successful": "セキュアバックアップに成功しました",
|
"Secure Backup successful": "セキュアバックアップに成功しました",
|
||||||
"Your keys are now being backed up from this device.": "鍵はこの端末からバックアップされています。",
|
"Your keys are now being backed up from this device.": "鍵はこの端末からバックアップされています。",
|
||||||
"Show avatars in user, room and event mentions": "アバターをユーザー、ルーム、イベントのメンションに表示",
|
"Show avatars in user, room and event mentions": "アバターをユーザー、ルーム、イベントのメンションに表示",
|
||||||
|
"common": {
|
||||||
|
"about": "概要",
|
||||||
|
"analytics": "分析",
|
||||||
|
"encryption_enabled": "暗号化が有効です",
|
||||||
|
"error": "エラー",
|
||||||
|
"forward_message": "メッセージを転送",
|
||||||
|
"image": "画像",
|
||||||
|
"loading": "読み込んでいます…",
|
||||||
|
"message": "メッセージ",
|
||||||
|
"message_layout": "メッセージのレイアウト",
|
||||||
|
"modern": "モダン",
|
||||||
|
"mute": "ミュート",
|
||||||
|
"no_results": "結果がありません",
|
||||||
|
"offline": "オフライン",
|
||||||
|
"password": "パスワード",
|
||||||
|
"people": "連絡先",
|
||||||
|
"reactions": "リアクション",
|
||||||
|
"report_a_bug": "不具合の報告",
|
||||||
|
"room_name": "ルーム名",
|
||||||
|
"security": "セキュリティー",
|
||||||
|
"settings": "設定",
|
||||||
|
"sticker": "ステッカー",
|
||||||
|
"success": "成功",
|
||||||
|
"suggestions": "提案",
|
||||||
|
"unmute": "ミュート解除",
|
||||||
|
"username": "ユーザー名",
|
||||||
|
"verification_cancelled": "認証のキャンセル",
|
||||||
|
"video": "動画"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "ユーザーメニュー"
|
"user_menu": "ユーザーメニュー"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"This email address is already in use": ".i xa'o pilno fa da le samymri judri",
|
"This email address is already in use": ".i xa'o pilno fa da le samymri judri",
|
||||||
"This phone number is already in use": ".i xa'o pilno fa da le fonxa judri",
|
"This phone number is already in use": ".i xa'o pilno fa da le fonxa judri",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": ".i da nabmi fi lo nu facki le du'u do ponse le te samymri .i ko birti le du'u do samcu'a le judrysni pe le se samymri",
|
"Failed to verify email address: make sure you clicked the link in the email": ".i da nabmi fi lo nu facki le du'u do ponse le te samymri .i ko birti le du'u do samcu'a le judrysni pe le se samymri",
|
||||||
"Analytics": "lanli datni",
|
|
||||||
"Call Failed": ".i da nabmi fi lo nu co'a fonjo'e",
|
"Call Failed": ".i da nabmi fi lo nu co'a fonjo'e",
|
||||||
"You cannot place a call with yourself.": ".i do na ka'e fonjo'e do",
|
"You cannot place a call with yourself.": ".i do na ka'e fonjo'e do",
|
||||||
"Permission Required": ".i lo nu curmi cu sarcu",
|
"Permission Required": ".i lo nu curmi cu sarcu",
|
||||||
|
@ -123,7 +122,6 @@
|
||||||
"Messages sent by bot": "nu da zilbe'i fi pa sampre",
|
"Messages sent by bot": "nu da zilbe'i fi pa sampre",
|
||||||
"Decline": "nu na fonjo'e",
|
"Decline": "nu na fonjo'e",
|
||||||
"Accept": "nu fonjo'e",
|
"Accept": "nu fonjo'e",
|
||||||
"Error": "nabmi",
|
|
||||||
"Incorrect verification code": ".i na'e drani ke lacri lerpoi",
|
"Incorrect verification code": ".i na'e drani ke lacri lerpoi",
|
||||||
"Submit": "nu zilbe'i",
|
"Submit": "nu zilbe'i",
|
||||||
"Phone": "fonxa",
|
"Phone": "fonxa",
|
||||||
|
@ -136,7 +134,6 @@
|
||||||
"Continue": "",
|
"Continue": "",
|
||||||
"Do you want to set an email address?": ".i .au pei do jmina lo te samymri",
|
"Do you want to set an email address?": ".i .au pei do jmina lo te samymri",
|
||||||
"Current password": "lo ca japyvla",
|
"Current password": "lo ca japyvla",
|
||||||
"Password": "lerpoijaspu",
|
|
||||||
"New Password": "lerpoijaspu vau je cnino",
|
"New Password": "lerpoijaspu vau je cnino",
|
||||||
"Confirm password": "lo za'u re'u japyvla poi cnino",
|
"Confirm password": "lo za'u re'u japyvla poi cnino",
|
||||||
"Change Password": "nu basti fi le ka lerpoijaspu",
|
"Change Password": "nu basti fi le ka lerpoijaspu",
|
||||||
|
@ -241,7 +238,6 @@
|
||||||
"Send an encrypted message…": "nu pa mifra be pa notci cu zilbe'i",
|
"Send an encrypted message…": "nu pa mifra be pa notci cu zilbe'i",
|
||||||
"Send a message…": "nu pa notci cu zilbe'i",
|
"Send a message…": "nu pa notci cu zilbe'i",
|
||||||
"Search": "nu sisku",
|
"Search": "nu sisku",
|
||||||
"People": "prenu",
|
|
||||||
"Rooms": "ve zilbe'i",
|
"Rooms": "ve zilbe'i",
|
||||||
"Show %(count)s more": {
|
"Show %(count)s more": {
|
||||||
"other": "nu viska %(count)s na du",
|
"other": "nu viska %(count)s na du",
|
||||||
|
@ -328,7 +324,6 @@
|
||||||
"Sign Up": "nu co'a na'o jaspu",
|
"Sign Up": "nu co'a na'o jaspu",
|
||||||
"<userName/> wants to chat": ".i la'o zoi. <userName/> .zoi kaidji le ka tavla do",
|
"<userName/> wants to chat": ".i la'o zoi. <userName/> .zoi kaidji le ka tavla do",
|
||||||
"<userName/> invited you": ".i la'o zoi. <userName/> .zoi friti le ka ziljmina kei do",
|
"<userName/> invited you": ".i la'o zoi. <userName/> .zoi friti le ka ziljmina kei do",
|
||||||
"Username": "judri cmene",
|
|
||||||
"Enter username": ".i ko cuxna fo le ka judri cmene",
|
"Enter username": ".i ko cuxna fo le ka judri cmene",
|
||||||
"Messages in this room are end-to-end encrypted.": ".i ro zilbe'i be fo le cei'i cu mifra",
|
"Messages in this room are end-to-end encrypted.": ".i ro zilbe'i be fo le cei'i cu mifra",
|
||||||
"Messages in this room are not end-to-end encrypted.": ".i na pa zilbe'i be fo le cei'i cu mifra",
|
"Messages in this room are not end-to-end encrypted.": ".i na pa zilbe'i be fo le cei'i cu mifra",
|
||||||
|
@ -392,5 +387,12 @@
|
||||||
"Download %(text)s": "nu kibycpa la'o zoi. %(text)s .zoi",
|
"Download %(text)s": "nu kibycpa la'o zoi. %(text)s .zoi",
|
||||||
"Explore rooms": "nu facki le du'u ve zilbe'i",
|
"Explore rooms": "nu facki le du'u ve zilbe'i",
|
||||||
"Create Account": "nu pa re'u co'a jaspu",
|
"Create Account": "nu pa re'u co'a jaspu",
|
||||||
"Dismiss": "nu mipri"
|
"Dismiss": "nu mipri",
|
||||||
|
"common": {
|
||||||
|
"analytics": "lanli datni",
|
||||||
|
"error": "nabmi",
|
||||||
|
"password": "lerpoijaspu",
|
||||||
|
"people": "prenu",
|
||||||
|
"username": "judri cmene"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,9 +50,11 @@
|
||||||
"Failure to create room": "ოთახის შექმნის შეცდომა",
|
"Failure to create room": "ოთახის შექმნის შეცდომა",
|
||||||
"Upload Failed": "ატვირთვა ვერ მოხერხდა",
|
"Upload Failed": "ატვირთვა ვერ მოხერხდა",
|
||||||
"Unable to load! Check your network connectivity and try again.": "ვერ იტვირთება! შეამოწმეთ თქვენი ინტერნეტ-კავშირი და სცადეთ ისევ.",
|
"Unable to load! Check your network connectivity and try again.": "ვერ იტვირთება! შეამოწმეთ თქვენი ინტერნეტ-კავშირი და სცადეთ ისევ.",
|
||||||
"Error": "შეცდომა",
|
|
||||||
"Add Phone Number": "მობილურის ნომრის დამატება",
|
"Add Phone Number": "მობილურის ნომრის დამატება",
|
||||||
"Confirm adding phone number": "დაადასტურეთ მობილურის ნომრის დამატება",
|
"Confirm adding phone number": "დაადასტურეთ მობილურის ნომრის დამატება",
|
||||||
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sს %(minutes)sწთ %(seconds)sწმ დარჩა",
|
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)sს %(minutes)sწთ %(seconds)sწმ დარჩა",
|
||||||
"Feb": "თებ"
|
"Feb": "თებ",
|
||||||
|
"common": {
|
||||||
|
"error": "შეცდომა"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{
|
||||||
"Confirm": "Sentem",
|
"Confirm": "Sentem",
|
||||||
"Analytics": "Tiselḍin",
|
|
||||||
"Error": "Tuccḍa",
|
|
||||||
"Dismiss": "Agwi",
|
"Dismiss": "Agwi",
|
||||||
"OK": "IH",
|
"OK": "IH",
|
||||||
"Permission Required": "Tasiregt tlaq",
|
"Permission Required": "Tasiregt tlaq",
|
||||||
|
@ -84,7 +82,6 @@
|
||||||
"Show more": "Sken-d ugar",
|
"Show more": "Sken-d ugar",
|
||||||
"Warning!": "Ɣur-k·m!",
|
"Warning!": "Ɣur-k·m!",
|
||||||
"Current password": "Awal uffir amiran",
|
"Current password": "Awal uffir amiran",
|
||||||
"Password": "Awal uffir",
|
|
||||||
"New Password": "Awal uffir amaynut",
|
"New Password": "Awal uffir amaynut",
|
||||||
"Confirm password": "Sentem awal uffir",
|
"Confirm password": "Sentem awal uffir",
|
||||||
"Change Password": "Snifel Awal Uffir",
|
"Change Password": "Snifel Awal Uffir",
|
||||||
|
@ -99,7 +96,6 @@
|
||||||
"Go back": "Uɣal ɣer deffir",
|
"Go back": "Uɣal ɣer deffir",
|
||||||
"Change": "Beddel",
|
"Change": "Beddel",
|
||||||
"Theme": "Asentel",
|
"Theme": "Asentel",
|
||||||
"Success": "Yedda",
|
|
||||||
"Profile": "Amaɣnu",
|
"Profile": "Amaɣnu",
|
||||||
"Account": "Amiḍan",
|
"Account": "Amiḍan",
|
||||||
"General": "Amatu",
|
"General": "Amatu",
|
||||||
|
@ -135,10 +131,8 @@
|
||||||
"Quote": "Tanebdurt",
|
"Quote": "Tanebdurt",
|
||||||
"Idle": "Arurmid",
|
"Idle": "Arurmid",
|
||||||
"Unknown": "Arussin",
|
"Unknown": "Arussin",
|
||||||
"Settings": "Iɣewwaren",
|
|
||||||
"Search": "Nadi",
|
"Search": "Nadi",
|
||||||
"Favourites": "Ismenyifen",
|
"Favourites": "Ismenyifen",
|
||||||
"People": "Imdanen",
|
|
||||||
"Sign Up": "Jerred",
|
"Sign Up": "Jerred",
|
||||||
"Reject": "Agi",
|
"Reject": "Agi",
|
||||||
"Sort by": "Semyizwer s",
|
"Sort by": "Semyizwer s",
|
||||||
|
@ -148,10 +142,7 @@
|
||||||
"Server error": "Tuccḍa n uqeddac",
|
"Server error": "Tuccḍa n uqeddac",
|
||||||
"Trusted": "Yettwattkal",
|
"Trusted": "Yettwattkal",
|
||||||
"Invite": "Nced",
|
"Invite": "Nced",
|
||||||
"Unmute": "Rmed imesli",
|
|
||||||
"Mute": "Sens imesli",
|
|
||||||
"Are you sure?": "Tebɣiḍ s tidet?",
|
"Are you sure?": "Tebɣiḍ s tidet?",
|
||||||
"Security": "Taɣellist",
|
|
||||||
"Yes": "Ih",
|
"Yes": "Ih",
|
||||||
"Got it": "Awi-t",
|
"Got it": "Awi-t",
|
||||||
"Sunday": "Acer",
|
"Sunday": "Acer",
|
||||||
|
@ -179,7 +170,6 @@
|
||||||
"Categories": "Taggayin",
|
"Categories": "Taggayin",
|
||||||
"More options": "Ugar n textiṛiyin",
|
"More options": "Ugar n textiṛiyin",
|
||||||
"Join": "Rnu",
|
"Join": "Rnu",
|
||||||
"No results": "Ulac igmad",
|
|
||||||
"collapse": "fneẓ",
|
"collapse": "fneẓ",
|
||||||
"Server name": "Isem n uqeddac",
|
"Server name": "Isem n uqeddac",
|
||||||
"Close dialog": "Mdel adiwenni",
|
"Close dialog": "Mdel adiwenni",
|
||||||
|
@ -193,7 +183,6 @@
|
||||||
"Sign out": "Ffeɣ seg tuqqna",
|
"Sign out": "Ffeɣ seg tuqqna",
|
||||||
"Back": "Uɣal ɣer deffir",
|
"Back": "Uɣal ɣer deffir",
|
||||||
"Send": "Azen",
|
"Send": "Azen",
|
||||||
"Suggestions": "Isumar",
|
|
||||||
"Go": "Ddu",
|
"Go": "Ddu",
|
||||||
"Session name": "Isem n tɣimit",
|
"Session name": "Isem n tɣimit",
|
||||||
"Send report": "Azen aneqqis",
|
"Send report": "Azen aneqqis",
|
||||||
|
@ -215,7 +204,6 @@
|
||||||
"Code": "Tangalt",
|
"Code": "Tangalt",
|
||||||
"Submit": "Azen",
|
"Submit": "Azen",
|
||||||
"Email": "Imayl",
|
"Email": "Imayl",
|
||||||
"Username": "Isem n useqdac",
|
|
||||||
"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)",
|
||||||
|
@ -349,7 +337,6 @@
|
||||||
"Restricted": "Yesεa tilas",
|
"Restricted": "Yesεa tilas",
|
||||||
"Set up": "Sbadu",
|
"Set up": "Sbadu",
|
||||||
"Pencil": "Akeryun",
|
"Pencil": "Akeryun",
|
||||||
"Modern": "Atrar",
|
|
||||||
"Online": "Srid",
|
"Online": "Srid",
|
||||||
"Mention": "Abdar",
|
"Mention": "Abdar",
|
||||||
"Verify session": "Asenqed n tɣimit",
|
"Verify session": "Asenqed n tɣimit",
|
||||||
|
@ -742,8 +729,6 @@
|
||||||
"Verification timed out.": "Yemmed wakud n usenqed.",
|
"Verification timed out.": "Yemmed wakud n usenqed.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s isefsex asenqed.",
|
"%(displayName)s cancelled verification.": "%(displayName)s isefsex asenqed.",
|
||||||
"You cancelled verification.": "Tesfesxeḍ asenqed.",
|
"You cancelled verification.": "Tesfesxeḍ asenqed.",
|
||||||
"Verification cancelled": "Yefsex usenqed",
|
|
||||||
"Encryption enabled": "Awgelhen ur yeddi ara",
|
|
||||||
"Decrypt %(text)s": "Wgelhen %(text)s",
|
"Decrypt %(text)s": "Wgelhen %(text)s",
|
||||||
"Download %(text)s": "Sader %(text)s",
|
"Download %(text)s": "Sader %(text)s",
|
||||||
"You verified %(name)s": "Tezsneqdeḍ %(name)s",
|
"You verified %(name)s": "Tezsneqdeḍ %(name)s",
|
||||||
|
@ -1167,7 +1152,6 @@
|
||||||
"Automatically replace plain text Emoji": "Semselsi iujit n uḍris aččuran s wudem awurman",
|
"Automatically replace plain text Emoji": "Semselsi iujit n uḍris aččuran s wudem awurman",
|
||||||
"Use a system font": "Seqdec tasefsit n unagraw",
|
"Use a system font": "Seqdec tasefsit n unagraw",
|
||||||
"Size must be a number": "Teɣzi ilaq ad tili d uṭṭun",
|
"Size must be a number": "Teɣzi ilaq ad tili d uṭṭun",
|
||||||
"Message layout": "Talɣa n yizen",
|
|
||||||
"Discovery": "Tagrut",
|
"Discovery": "Tagrut",
|
||||||
"Help & About": "Tallalt & Ɣef",
|
"Help & About": "Tallalt & Ɣef",
|
||||||
"Labs": "Tinarimin",
|
"Labs": "Tinarimin",
|
||||||
|
@ -1260,7 +1244,6 @@
|
||||||
"%(duration)sh": "%(duration)sh",
|
"%(duration)sh": "%(duration)sh",
|
||||||
"%(duration)sd": "%(duration)sd",
|
"%(duration)sd": "%(duration)sd",
|
||||||
"Unknown for %(duration)s": "D arussin azal n %(duration)s",
|
"Unknown for %(duration)s": "D arussin azal n %(duration)s",
|
||||||
"Offline": "Beṛṛa n tuqqna",
|
|
||||||
"Room %(name)s": "Taxxamt %(name)s",
|
"Room %(name)s": "Taxxamt %(name)s",
|
||||||
"No recently visited rooms": "Ulac taxxamt yemmeẓren melmi kan",
|
"No recently visited rooms": "Ulac taxxamt yemmeẓren melmi kan",
|
||||||
"Unnamed room": "Taxxamt war isem",
|
"Unnamed room": "Taxxamt war isem",
|
||||||
|
@ -1452,7 +1435,6 @@
|
||||||
"You cancelled verifying %(name)s": "Tesfesxeḍ asenqed n %(name)s",
|
"You cancelled verifying %(name)s": "Tesfesxeḍ asenqed n %(name)s",
|
||||||
"You sent a verification request": "Tuzneḍ asuter n usenqed",
|
"You sent a verification request": "Tuzneḍ asuter n usenqed",
|
||||||
"Error decrypting video": "Tuccḍa deg uwgelhen n tvidyut",
|
"Error decrypting video": "Tuccḍa deg uwgelhen n tvidyut",
|
||||||
"Reactions": "Tisedmirin",
|
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>issedmer s %(shortName)s</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>issedmer s %(shortName)s</reactedWith>",
|
||||||
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s ibeddel avaṭar i %(roomName)s",
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s ibeddel avaṭar i %(roomName)s",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s yekkes avaṭar n texxamt.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s yekkes avaṭar n texxamt.",
|
||||||
|
@ -1688,7 +1670,6 @@
|
||||||
"Secure Backup": "Aklas aɣellsan",
|
"Secure Backup": "Aklas aɣellsan",
|
||||||
"Privacy": "Tabaḍnit",
|
"Privacy": "Tabaḍnit",
|
||||||
"Not encrypted": "Ur yettwawgelhen ara",
|
"Not encrypted": "Ur yettwawgelhen ara",
|
||||||
"About": "Ɣef",
|
|
||||||
"Room settings": "Iɣewwaṛen n texxamt",
|
"Room settings": "Iɣewwaṛen n texxamt",
|
||||||
"Take a picture": "Ṭṭef tawlaft",
|
"Take a picture": "Ṭṭef tawlaft",
|
||||||
"not found in storage": "Ulac-it deg uklas",
|
"not found in storage": "Ulac-it deg uklas",
|
||||||
|
@ -2000,6 +1981,27 @@
|
||||||
"Could not connect to identity server": "Ur izmir ara ad yeqqen ɣer uqeddac n timagit",
|
"Could not connect to identity server": "Ur izmir ara ad yeqqen ɣer uqeddac n timagit",
|
||||||
"Not a valid identity server (status code %(code)s)": "Aqeddac n timagit mačči d ameɣtu (status code %(code)s)",
|
"Not a valid identity server (status code %(code)s)": "Aqeddac n timagit mačči d ameɣtu (status code %(code)s)",
|
||||||
"Identity server URL must be HTTPS": "URL n uqeddac n timagit ilaq ad yili d HTTPS",
|
"Identity server URL must be HTTPS": "URL n uqeddac n timagit ilaq ad yili d HTTPS",
|
||||||
|
"common": {
|
||||||
|
"about": "Ɣef",
|
||||||
|
"analytics": "Tiselḍin",
|
||||||
|
"encryption_enabled": "Awgelhen ur yeddi ara",
|
||||||
|
"error": "Tuccḍa",
|
||||||
|
"message_layout": "Talɣa n yizen",
|
||||||
|
"modern": "Atrar",
|
||||||
|
"mute": "Sens imesli",
|
||||||
|
"no_results": "Ulac igmad",
|
||||||
|
"offline": "Beṛṛa n tuqqna",
|
||||||
|
"password": "Awal uffir",
|
||||||
|
"people": "Imdanen",
|
||||||
|
"reactions": "Tisedmirin",
|
||||||
|
"security": "Taɣellist",
|
||||||
|
"settings": "Iɣewwaren",
|
||||||
|
"success": "Yedda",
|
||||||
|
"suggestions": "Isumar",
|
||||||
|
"unmute": "Rmed imesli",
|
||||||
|
"username": "Isem n useqdac",
|
||||||
|
"verification_cancelled": "Yefsex usenqed"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Umuɣ n useqdac"
|
"user_menu": "Umuɣ n useqdac"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,13 +3,10 @@
|
||||||
"Close": "닫기",
|
"Close": "닫기",
|
||||||
"Create new room": "새 방 만들기",
|
"Create new room": "새 방 만들기",
|
||||||
"Dismiss": "버리기",
|
"Dismiss": "버리기",
|
||||||
"Error": "오류",
|
|
||||||
"Mute": "음소거",
|
|
||||||
"Notifications": "알림",
|
"Notifications": "알림",
|
||||||
"powered by Matrix": "Matrix의 지원을 받음",
|
"powered by Matrix": "Matrix의 지원을 받음",
|
||||||
"Remove": "제거",
|
"Remove": "제거",
|
||||||
"Search": "찾기",
|
"Search": "찾기",
|
||||||
"Settings": "설정",
|
|
||||||
"Start chat": "대화 시작",
|
"Start chat": "대화 시작",
|
||||||
"unknown error code": "알 수 없는 오류 코드",
|
"unknown error code": "알 수 없는 오류 코드",
|
||||||
"OK": "네",
|
"OK": "네",
|
||||||
|
@ -126,9 +123,7 @@
|
||||||
"<not supported>": "<지원하지 않음>",
|
"<not supported>": "<지원하지 않음>",
|
||||||
"No display name": "표시 이름 없음",
|
"No display name": "표시 이름 없음",
|
||||||
"No more results": "더 이상 결과 없음",
|
"No more results": "더 이상 결과 없음",
|
||||||
"No results": "결과 없음",
|
|
||||||
"No users have specific privileges in this room": "모든 사용자가 이 방에 대한 특정 권한이 없음",
|
"No users have specific privileges in this room": "모든 사용자가 이 방에 대한 특정 권한이 없음",
|
||||||
"Password": "비밀번호",
|
|
||||||
"Passwords can't be empty": "비밀번호를 입력해주세요",
|
"Passwords can't be empty": "비밀번호를 입력해주세요",
|
||||||
"Permissions": "권한",
|
"Permissions": "권한",
|
||||||
"Phone": "전화",
|
"Phone": "전화",
|
||||||
|
@ -165,7 +160,6 @@
|
||||||
"Someone": "다른 사람",
|
"Someone": "다른 사람",
|
||||||
"Start authentication": "인증 시작",
|
"Start authentication": "인증 시작",
|
||||||
"Submit": "제출",
|
"Submit": "제출",
|
||||||
"Success": "성공",
|
|
||||||
"This email address is already in use": "이 이메일 주소는 이미 사용 중입니다",
|
"This email address is already in use": "이 이메일 주소는 이미 사용 중입니다",
|
||||||
"This email address was not found": "이 이메일 주소를 찾을 수 없음",
|
"This email address was not found": "이 이메일 주소를 찾을 수 없음",
|
||||||
"The email address linked to your account must be entered.": "계정에 연결한 이메일 주소를 입력해야 합니다.",
|
"The email address linked to your account must be entered.": "계정에 연결한 이메일 주소를 입력해야 합니다.",
|
||||||
|
@ -181,7 +175,6 @@
|
||||||
"Unable to verify email address.": "이메일 주소를 인증할 수 없습니다.",
|
"Unable to verify email address.": "이메일 주소를 인증할 수 없습니다.",
|
||||||
"Unban": "출입 금지 풀기",
|
"Unban": "출입 금지 풀기",
|
||||||
"Unable to enable Notifications": "알림을 사용할 수 없음",
|
"Unable to enable Notifications": "알림을 사용할 수 없음",
|
||||||
"Unmute": "음소거 끄기",
|
|
||||||
"Unnamed Room": "이름 없는 방",
|
"Unnamed Room": "이름 없는 방",
|
||||||
"Uploading %(filename)s": "%(filename)s을(를) 올리는 중",
|
"Uploading %(filename)s": "%(filename)s을(를) 올리는 중",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
|
@ -239,7 +232,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "새 비밀번호",
|
"New Password": "새 비밀번호",
|
||||||
"Start automatically after system login": "컴퓨터를 시작할 때 자동으로 실행하기",
|
"Start automatically after system login": "컴퓨터를 시작할 때 자동으로 실행하기",
|
||||||
"Analytics": "정보 분석",
|
|
||||||
"Options": "옵션",
|
"Options": "옵션",
|
||||||
"Passphrases must match": "암호가 일치해야 함",
|
"Passphrases must match": "암호가 일치해야 함",
|
||||||
"Passphrase must not be empty": "암호를 입력해야 함",
|
"Passphrase must not be empty": "암호를 입력해야 함",
|
||||||
|
@ -267,7 +259,6 @@
|
||||||
"Drop file here to upload": "업로드할 파일을 여기에 놓으세요",
|
"Drop file here to upload": "업로드할 파일을 여기에 놓으세요",
|
||||||
"Online": "접속 중",
|
"Online": "접속 중",
|
||||||
"Idle": "대기 중",
|
"Idle": "대기 중",
|
||||||
"Offline": "접속 없음",
|
|
||||||
"Check for update": "업데이트 확인",
|
"Check for update": "업데이트 확인",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s님이 방 아바타를 <img/>(으)로 바꿈",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s님이 방 아바타를 <img/>(으)로 바꿈",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s님이 방 아바타를 제거했습니다.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s님이 방 아바타를 제거했습니다.",
|
||||||
|
@ -950,7 +941,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:": "이 홈서버의 정책을 검토하고 수락해주세요:",
|
||||||
"Username": "사용자 이름",
|
|
||||||
"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": "올바른 이메일 주소가 아닙니다",
|
||||||
|
@ -1170,7 +1160,6 @@
|
||||||
"Trusted": "신뢰함",
|
"Trusted": "신뢰함",
|
||||||
"Not trusted": "신뢰하지 않음",
|
"Not trusted": "신뢰하지 않음",
|
||||||
"Messages in this room are end-to-end encrypted.": "이 방의 메시지는 종단간 암호화되었습니다.",
|
"Messages in this room are end-to-end encrypted.": "이 방의 메시지는 종단간 암호화되었습니다.",
|
||||||
"Security": "보안",
|
|
||||||
"Verify": "확인",
|
"Verify": "확인",
|
||||||
"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>",
|
||||||
"Any of the following data may be shared:": "다음 데이터가 공유됩니다:",
|
"Any of the following data may be shared:": "다음 데이터가 공유됩니다:",
|
||||||
|
@ -1294,18 +1283,14 @@
|
||||||
"Poll": "투표",
|
"Poll": "투표",
|
||||||
"Send voice message": "음성 메세지 보내기",
|
"Send voice message": "음성 메세지 보내기",
|
||||||
"Voice Message": "음성 메세지",
|
"Voice Message": "음성 메세지",
|
||||||
"Sticker": "스티커",
|
|
||||||
"View source": "소스 보기",
|
"View source": "소스 보기",
|
||||||
"Report a bug": "버그 보고",
|
|
||||||
"Report": "보고",
|
"Report": "보고",
|
||||||
"Forward message": "전달 메세지",
|
|
||||||
"Forward": "전달",
|
"Forward": "전달",
|
||||||
"about a day ago": "약 1일 전",
|
"about a day ago": "약 1일 전",
|
||||||
"%(num)s days ago": "%(num)s일 전",
|
"%(num)s days ago": "%(num)s일 전",
|
||||||
"about an hour ago": "약 1 시간 전",
|
"about an hour ago": "약 1 시간 전",
|
||||||
"%(num)s minutes ago": "%(num)s분 전",
|
"%(num)s minutes ago": "%(num)s분 전",
|
||||||
"Or send invite link": "또는 초대 링크 보내기",
|
"Or send invite link": "또는 초대 링크 보내기",
|
||||||
"Suggestions": "추천 목록",
|
|
||||||
"Recent Conversations": "최근 대화 목록",
|
"Recent Conversations": "최근 대화 목록",
|
||||||
"Start a conversation with someone using their name or username (like <userId/>).": "이름이나 사용자명(<userId/> 형식)을 사용하는 사람들과 대화를 시작하세요.",
|
"Start a conversation with someone using their name or username (like <userId/>).": "이름이나 사용자명(<userId/> 형식)을 사용하는 사람들과 대화를 시작하세요.",
|
||||||
"Direct Messages": "다이렉트 메세지",
|
"Direct Messages": "다이렉트 메세지",
|
||||||
|
@ -1313,7 +1298,6 @@
|
||||||
"Show %(count)s more": {
|
"Show %(count)s more": {
|
||||||
"other": "%(count)s개 더 보기"
|
"other": "%(count)s개 더 보기"
|
||||||
},
|
},
|
||||||
"People": "사람들",
|
|
||||||
"If you can't see who you're looking for, send them your invite link below.": "찾으려는 사람이 보이지 않으면, 아래의 초대링크를 보내세요.",
|
"If you can't see who you're looking for, send them your invite link below.": "찾으려는 사람이 보이지 않으면, 아래의 초대링크를 보내세요.",
|
||||||
"Some suggestions may be hidden for privacy.": "일부 추천 목록은 개인 정보 보호를 위해 보이지 않을 수 있습니다.",
|
"Some suggestions may be hidden for privacy.": "일부 추천 목록은 개인 정보 보호를 위해 보이지 않을 수 있습니다.",
|
||||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "이름, 이메일, 사용자명(<userId/>) 으로 대화를 시작하세요.",
|
"Start a conversation with someone using their name, email address or username (like <userId/>).": "이름, 이메일, 사용자명(<userId/>) 으로 대화를 시작하세요.",
|
||||||
|
@ -1392,5 +1376,23 @@
|
||||||
"Sessions": "세션목록",
|
"Sessions": "세션목록",
|
||||||
"Unverified session": "검증되지 않은 세션",
|
"Unverified session": "검증되지 않은 세션",
|
||||||
"Favourited": "즐겨찾기 됨",
|
"Favourited": "즐겨찾기 됨",
|
||||||
"Other rooms": "다른 방 목록"
|
"Other rooms": "다른 방 목록",
|
||||||
|
"common": {
|
||||||
|
"analytics": "정보 분석",
|
||||||
|
"error": "오류",
|
||||||
|
"forward_message": "전달 메세지",
|
||||||
|
"mute": "음소거",
|
||||||
|
"no_results": "결과 없음",
|
||||||
|
"offline": "접속 없음",
|
||||||
|
"password": "비밀번호",
|
||||||
|
"people": "사람들",
|
||||||
|
"report_a_bug": "버그 보고",
|
||||||
|
"security": "보안",
|
||||||
|
"settings": "설정",
|
||||||
|
"sticker": "스티커",
|
||||||
|
"success": "성공",
|
||||||
|
"suggestions": "추천 목록",
|
||||||
|
"unmute": "음소거 끄기",
|
||||||
|
"username": "사용자 이름"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -261,8 +261,6 @@
|
||||||
"Call Failed": "ໂທບໍ່ສຳເລັດ",
|
"Call Failed": "ໂທບໍ່ສຳເລັດ",
|
||||||
"Dismiss": "ຍົກເລີກ",
|
"Dismiss": "ຍົກເລີກ",
|
||||||
"Unable to load! Check your network connectivity and try again.": "ບໍ່ສາມາດໂຫຼດໄດ້! ກະລຸນາກວດເບິ່ງການເຊື່ອມຕໍ່ເຄືອຂ່າຍຂອງທ່ານ ແລະ ລອງໃໝ່ອີກຄັ້ງ.",
|
"Unable to load! Check your network connectivity and try again.": "ບໍ່ສາມາດໂຫຼດໄດ້! ກະລຸນາກວດເບິ່ງການເຊື່ອມຕໍ່ເຄືອຂ່າຍຂອງທ່ານ ແລະ ລອງໃໝ່ອີກຄັ້ງ.",
|
||||||
"Error": "ມີບັນຫາ",
|
|
||||||
"Analytics": "ວິເຄາະ",
|
|
||||||
"Calls are unsupported": "ບໍ່ຮອງຮັບການໂທ",
|
"Calls are unsupported": "ບໍ່ຮອງຮັບການໂທ",
|
||||||
"Room %(roomId)s not visible": "ບໍ່ເຫັນຫ້ອງ %(roomId)s",
|
"Room %(roomId)s not visible": "ບໍ່ເຫັນຫ້ອງ %(roomId)s",
|
||||||
"Missing room_id in request": "ບໍ່ມີການຮ້ອງຂໍ room_id",
|
"Missing room_id in request": "ບໍ່ມີການຮ້ອງຂໍ room_id",
|
||||||
|
@ -651,7 +649,6 @@
|
||||||
"e.g. my-space": "ຕົວຢ່າງ: ພື້ນທີ່ຂອງຂ້ອຍ",
|
"e.g. my-space": "ຕົວຢ່າງ: ພື້ນທີ່ຂອງຂ້ອຍ",
|
||||||
"Please enter a name for the space": "ກະລຸນາໃສ່ຊື່ສໍາລັບຊ່ອງຫວ່າງ",
|
"Please enter a name for the space": "ກະລຸນາໃສ່ຊື່ສໍາລັບຊ່ອງຫວ່າງ",
|
||||||
"Search %(spaceName)s": "ຊອກຫາ %(spaceName)s",
|
"Search %(spaceName)s": "ຊອກຫາ %(spaceName)s",
|
||||||
"No results": "ບໍ່ເປັນຜົນ",
|
|
||||||
"Description": "ລາຍລະອຽດ",
|
"Description": "ລາຍລະອຽດ",
|
||||||
"Name": "ຊື່",
|
"Name": "ຊື່",
|
||||||
"Upload": "ອັບໂຫຼດ",
|
"Upload": "ອັບໂຫຼດ",
|
||||||
|
@ -661,7 +658,6 @@
|
||||||
"Space selection": "ການເລືອກພື້ນທີ່",
|
"Space selection": "ການເລືອກພື້ນທີ່",
|
||||||
"Theme": "ຫົວຂໍ້",
|
"Theme": "ຫົວຂໍ້",
|
||||||
"Match system": "ລະບົບການຈັບຄູ່",
|
"Match system": "ລະບົບການຈັບຄູ່",
|
||||||
"Settings": "ການຕັ້ງຄ່າ",
|
|
||||||
"More options": "ທາງເລືອກເພີ່ມເຕີມ",
|
"More options": "ທາງເລືອກເພີ່ມເຕີມ",
|
||||||
"Pin to sidebar": "ປັກໝຸດໃສ່ແຖບດ້ານຂ້າງ",
|
"Pin to sidebar": "ປັກໝຸດໃສ່ແຖບດ້ານຂ້າງ",
|
||||||
"Developer tools": "ເຄື່ອງມືພັດທະນາ",
|
"Developer tools": "ເຄື່ອງມືພັດທະນາ",
|
||||||
|
@ -858,7 +854,6 @@
|
||||||
"Export chat": "ສົ່ງການສົນທະນາອອກ",
|
"Export chat": "ສົ່ງການສົນທະນາອອກ",
|
||||||
"Pinned": "ໄດ້ປັກໝຸດ",
|
"Pinned": "ໄດ້ປັກໝຸດ",
|
||||||
"Files": "ໄຟລ໌",
|
"Files": "ໄຟລ໌",
|
||||||
"About": "ກ່ຽວກັບ",
|
|
||||||
"Not encrypted": "ບໍ່ໄດ້ເຂົ້າລະຫັດ",
|
"Not encrypted": "ບໍ່ໄດ້ເຂົ້າລະຫັດ",
|
||||||
"Add widgets, bridges & bots": "ເພີ່ມວິດເຈັດ, ຂົວ ແລະບັອດ",
|
"Add widgets, bridges & bots": "ເພີ່ມວິດເຈັດ, ຂົວ ແລະບັອດ",
|
||||||
"Edit widgets, bridges & bots": "ແກ້ໄຂວິດເຈັດ, ຂົວ ແລະບັອດ",
|
"Edit widgets, bridges & bots": "ແກ້ໄຂວິດເຈັດ, ຂົວ ແລະບັອດ",
|
||||||
|
@ -983,7 +978,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": "ການສ້າງພື້ນທີ່ຫ້ອງເບື້ອງຕົ້ນບໍ່ສຳເລັດ",
|
||||||
"Room name": "ຊື່ຫ້ອງ",
|
|
||||||
"Support": "ສະຫນັບສະຫນູນ",
|
"Support": "ສະຫນັບສະຫນູນ",
|
||||||
"Random": "ສຸ່ມ",
|
"Random": "ສຸ່ມ",
|
||||||
"Welcome to <name/>": "ຍິນດີຕ້ອນຮັບສູ່ <name/>",
|
"Welcome to <name/>": "ຍິນດີຕ້ອນຮັບສູ່ <name/>",
|
||||||
|
@ -1069,7 +1063,6 @@
|
||||||
"Share Link to User": "ແບ່ງປັນລິ້ງໄປຫາຜູ້ໃຊ້",
|
"Share Link to User": "ແບ່ງປັນລິ້ງໄປຫາຜູ້ໃຊ້",
|
||||||
"Mention": "ກ່າວເຖິງ",
|
"Mention": "ກ່າວເຖິງ",
|
||||||
"Jump to read receipt": "ຂ້າມເພື່ອອ່ານໃບຮັບເງິນ",
|
"Jump to read receipt": "ຂ້າມເພື່ອອ່ານໃບຮັບເງິນ",
|
||||||
"Message": "ຂໍ້ຄວາມ",
|
|
||||||
"Hide sessions": "ເຊື່ອງsessions",
|
"Hide sessions": "ເຊື່ອງsessions",
|
||||||
"%(count)s sessions": {
|
"%(count)s sessions": {
|
||||||
"one": "%(count)s ລະບົບ",
|
"one": "%(count)s ລະບົບ",
|
||||||
|
@ -1176,7 +1169,6 @@
|
||||||
"one": "ຜູ້ເຂົ້າຮ່ວມ 1ຄົນ",
|
"one": "ຜູ້ເຂົ້າຮ່ວມ 1ຄົນ",
|
||||||
"other": "ຜູ້ເຂົ້າຮ່ວມ %(count)s ຄົນ"
|
"other": "ຜູ້ເຂົ້າຮ່ວມ %(count)s ຄົນ"
|
||||||
},
|
},
|
||||||
"Video": "ວິດີໂອ",
|
|
||||||
"Leave": "ອອກຈາກ",
|
"Leave": "ອອກຈາກ",
|
||||||
"Copy room link": "ສຳເນົາລິ້ງຫ້ອງ",
|
"Copy room link": "ສຳເນົາລິ້ງຫ້ອງ",
|
||||||
"Low Priority": "ຄວາມສຳຄັນຕໍ່າ",
|
"Low Priority": "ຄວາມສຳຄັນຕໍ່າ",
|
||||||
|
@ -1601,9 +1593,7 @@
|
||||||
"Error saving notification preferences": "ເກີດຄວາມຜິດພາດໃນການບັນທຶກການຕັ້ງຄ່າການແຈ້ງເຕືອນ",
|
"Error saving notification preferences": "ເກີດຄວາມຜິດພາດໃນການບັນທຶກການຕັ້ງຄ່າການແຈ້ງເຕືອນ",
|
||||||
"Messages containing keywords": "ຂໍ້ຄວາມທີ່ມີຄໍາສໍາຄັນ",
|
"Messages containing keywords": "ຂໍ້ຄວາມທີ່ມີຄໍາສໍາຄັນ",
|
||||||
"Message bubbles": "ຟອງຂໍ້ຄວາມ",
|
"Message bubbles": "ຟອງຂໍ້ຄວາມ",
|
||||||
"Modern": "ທັນສະໄຫມ",
|
|
||||||
"IRC (Experimental)": "(ທົດລອງ)IRC",
|
"IRC (Experimental)": "(ທົດລອງ)IRC",
|
||||||
"Message layout": "ຮູບແບບຂໍ້ຄວາມ",
|
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "ກຳລັງປັບປຸງພື້ນທີ່..",
|
"one": "ກຳລັງປັບປຸງພື້ນທີ່..",
|
||||||
"other": "ກຳລັງຍົກລະດັບພື້ນທີ່... (%(progress)s ຈາກທັງໝົດ %(count)s)"
|
"other": "ກຳລັງຍົກລະດັບພື້ນທີ່... (%(progress)s ຈາກທັງໝົດ %(count)s)"
|
||||||
|
@ -1694,7 +1684,6 @@
|
||||||
"Sign in with": "ເຂົ້າສູ່ລະບົບດ້ວຍ",
|
"Sign in with": "ເຂົ້າສູ່ລະບົບດ້ວຍ",
|
||||||
"Forgot password?": "ລືມລະຫັດຜ່ານ?",
|
"Forgot password?": "ລືມລະຫັດຜ່ານ?",
|
||||||
"Phone": "ໂທລະສັບ",
|
"Phone": "ໂທລະສັບ",
|
||||||
"Username": "ຊື່ຜູ້ໃຊ້",
|
|
||||||
"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": "ເບີໂທລະສັບນັ້ນເບິ່ງຄືວ່າບໍ່ຖືກຕ້ອງ, ກະລຸນາກວດເບິ່ງແລ້ວລອງໃໝ່ອີກຄັ້ງ",
|
||||||
"Enter phone number": "ໃສ່ເບີໂທລະສັບ",
|
"Enter phone number": "ໃສ່ເບີໂທລະສັບ",
|
||||||
"Enter username": "ໃສ່ຊື່ຜູ້ໃຊ້",
|
"Enter username": "ໃສ່ຊື່ຜູ້ໃຊ້",
|
||||||
|
@ -1711,7 +1700,6 @@
|
||||||
"Please review and accept the policies of this homeserver:": "ກະລຸນາກວດເບິ່ງ ແລະ ຍອມຮັບນະໂຍບາຍຂອງ homeserver ນີ້:",
|
"Please review and accept the policies of this homeserver:": "ກະລຸນາກວດເບິ່ງ ແລະ ຍອມຮັບນະໂຍບາຍຂອງ homeserver ນີ້:",
|
||||||
"Please review and accept all of the homeserver's policies": "ກະລຸນາກວດເບິ່ງ ແລະ ຍອມຮັບນະໂຍບາຍທັງໝົດຂອງ homeserver",
|
"Please review and accept all of the homeserver's policies": "ກະລຸນາກວດເບິ່ງ ແລະ ຍອມຮັບນະໂຍບາຍທັງໝົດຂອງ homeserver",
|
||||||
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "ບໍ່ມີລະຫັດສາທາລະນະ captcha ໃນການຕັ້ງຄ່າ homeserver. ກະລຸນາລາຍງານນີ້ກັບຜູ້ຄຸູ້ມຄອງ homeserver ຂອງທ່ານ.",
|
"Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "ບໍ່ມີລະຫັດສາທາລະນະ captcha ໃນການຕັ້ງຄ່າ homeserver. ກະລຸນາລາຍງານນີ້ກັບຜູ້ຄຸູ້ມຄອງ homeserver ຂອງທ່ານ.",
|
||||||
"Password": "ລະຫັດຜ່ານ",
|
|
||||||
"Confirm your identity by entering your account password below.": "ຢືນຢັນຕົວຕົນຂອງທ່ານໂດຍການໃສ່ລະຫັດຜ່ານບັນຊີຂອງທ່ານຂ້າງລຸ່ມນີ້.",
|
"Confirm your identity by entering your account password below.": "ຢືນຢັນຕົວຕົນຂອງທ່ານໂດຍການໃສ່ລະຫັດຜ່ານບັນຊີຂອງທ່ານຂ້າງລຸ່ມນີ້.",
|
||||||
"Doesn't look like a valid email address": "ເບິ່ງຄືວ່າທີ່ຢູ່ອີເມວບໍ່ຖືກຕ້ອງ",
|
"Doesn't look like a valid email address": "ເບິ່ງຄືວ່າທີ່ຢູ່ອີເມວບໍ່ຖືກຕ້ອງ",
|
||||||
"Enter email address": "ໃສ່ທີ່ຢູ່ອີເມວ",
|
"Enter email address": "ໃສ່ທີ່ຢູ່ອີເມວ",
|
||||||
|
@ -1862,7 +1850,6 @@
|
||||||
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "ໃຊ້ເຊີບເວີທີ່ລະບຸຕົວຕົນເພື່ອເຊີນທາງອີເມວ. ຈັດການໃນ <settings>ການຕັ້ງຄ່າ</settings>.",
|
"Use an identity server to invite by email. Manage in <settings>Settings</settings>.": "ໃຊ້ເຊີບເວີທີ່ລະບຸຕົວຕົນເພື່ອເຊີນທາງອີເມວ. ຈັດການໃນ <settings>ການຕັ້ງຄ່າ</settings>.",
|
||||||
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "ໃຊ້ເຊີບເວີລະບຸຕົວຕົນເພື່ອເຊີນທາງອີເມວ. <default>ໃຊ້ຄ່າເລີ່ມຕົ້ນ (%(defaultIdentityServerName)s)</default> ຫຼືຈັດການໃນ <settings>Settings</settings>.",
|
"Use an identity server to invite by email. <default>Use the default (%(defaultIdentityServerName)s)</default> or manage in <settings>Settings</settings>.": "ໃຊ້ເຊີບເວີລະບຸຕົວຕົນເພື່ອເຊີນທາງອີເມວ. <default>ໃຊ້ຄ່າເລີ່ມຕົ້ນ (%(defaultIdentityServerName)s)</default> ຫຼືຈັດການໃນ <settings>Settings</settings>.",
|
||||||
"Recently Direct Messaged": "ຂໍ້ຄວາມໂດຍກົງເມື່ອບໍ່ດົນມານີ້",
|
"Recently Direct Messaged": "ຂໍ້ຄວາມໂດຍກົງເມື່ອບໍ່ດົນມານີ້",
|
||||||
"Suggestions": "ຄຳແນະນຳ",
|
|
||||||
"Recent Conversations": "ການສົນທະນາທີ່ຜ່ານມາ",
|
"Recent Conversations": "ການສົນທະນາທີ່ຜ່ານມາ",
|
||||||
"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",
|
||||||
"Failed to find the following users": "ການຊອກຫາຜູ້ໃຊ້ຕໍ່ໄປນີ້ບໍ່ສຳເລັດ",
|
"Failed to find the following users": "ການຊອກຫາຜູ້ໃຊ້ຕໍ່ໄປນີ້ບໍ່ສຳເລັດ",
|
||||||
|
@ -1887,14 +1874,12 @@
|
||||||
"Feedback sent! Thanks, we appreciate it!": "ສົ່ງຄຳຕິຊົມແລ້ວ! ຂອບໃຈ, ພວກເຮົາຂອບໃຈ!",
|
"Feedback sent! Thanks, we appreciate it!": "ສົ່ງຄຳຕິຊົມແລ້ວ! ຂອບໃຈ, ພວກເຮົາຂອບໃຈ!",
|
||||||
"Search for rooms or people": "ຊອກຫາຫ້ອງ ຫຼື ຄົນ",
|
"Search for rooms or people": "ຊອກຫາຫ້ອງ ຫຼື ຄົນ",
|
||||||
"Message preview": "ສະເເດງຕົວຢ່າງຂໍ້ຄວາມ",
|
"Message preview": "ສະເເດງຕົວຢ່າງຂໍ້ຄວາມ",
|
||||||
"Forward message": "ສົ່ງຂໍ້ຄວາມຕໍ່",
|
|
||||||
"Send": "ສົ່ງ",
|
"Send": "ສົ່ງ",
|
||||||
"Sent": "ສົ່ງແລ້ວ",
|
"Sent": "ສົ່ງແລ້ວ",
|
||||||
"Sending": "ກຳລັງສົ່ງ",
|
"Sending": "ກຳລັງສົ່ງ",
|
||||||
"You don't have permission to do this": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເຮັດສິ່ງນີ້",
|
"You don't have permission to do this": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເຮັດສິ່ງນີ້",
|
||||||
"Send feedback": "ສົ່ງຄໍາຄິດເຫັນ",
|
"Send feedback": "ສົ່ງຄໍາຄິດເຫັນ",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "ກະລຸນາເບິ່ງ <existingIssuesLink>ຂໍ້ບົກຜ່ອງທີ່ມີຢູ່ແລ້ວໃນ Github</existingIssuesLink> ກ່ອນ. ບໍ່ກົງກັນບໍ? <newIssueLink>ເລີ່ມອັນໃໝ່</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "ກະລຸນາເບິ່ງ <existingIssuesLink>ຂໍ້ບົກຜ່ອງທີ່ມີຢູ່ແລ້ວໃນ Github</existingIssuesLink> ກ່ອນ. ບໍ່ກົງກັນບໍ? <newIssueLink>ເລີ່ມອັນໃໝ່</newIssueLink>.",
|
||||||
"Report a bug": "ລາຍງານຂໍ້ຜິດພາດ",
|
|
||||||
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: ຖ້າທ່ານເລີ່ມມີຂໍ້ຜິດພາດ, ກະລຸນາສົ່ງ <debugLogsLink>ບັນທຶກການແກ້ບັນຫາ</debugLogsLink> ເພື່ອຊ່ວຍພວກເຮົາຕິດຕາມບັນຫາ.",
|
"PRO TIP: If you start a bug, please submit <debugLogsLink>debug logs</debugLogsLink> to help us track down the problem.": "PRO TIP: ຖ້າທ່ານເລີ່ມມີຂໍ້ຜິດພາດ, ກະລຸນາສົ່ງ <debugLogsLink>ບັນທຶກການແກ້ບັນຫາ</debugLogsLink> ເພື່ອຊ່ວຍພວກເຮົາຕິດຕາມບັນຫາ.",
|
||||||
"You may contact me if you want to follow up or to let me test out upcoming ideas": "ທ່ານສາມາດຕິດຕໍ່ຫາຂ້ອຍໄດ້ ຖ້າທ່ານຕ້ອງການຕິດຕາມ ຫຼືໃຫ້ຂ້ອຍທົດສອບແນວຄວາມຄິດທີ່ເກີດຂື້ນ",
|
"You may contact me if you want to follow up or to let me test out upcoming ideas": "ທ່ານສາມາດຕິດຕໍ່ຫາຂ້ອຍໄດ້ ຖ້າທ່ານຕ້ອງການຕິດຕາມ ຫຼືໃຫ້ຂ້ອຍທົດສອບແນວຄວາມຄິດທີ່ເກີດຂື້ນ",
|
||||||
"Feedback": "ຄໍາຕິຊົມ",
|
"Feedback": "ຄໍາຕິຊົມ",
|
||||||
|
@ -1912,7 +1897,6 @@
|
||||||
"Video conference ended by %(senderName)s": "ກອງປະຊຸມວິດີໂອໄດ້ສິ້ນສຸດລົງໂດຍ %(senderName)s",
|
"Video conference ended by %(senderName)s": "ກອງປະຊຸມວິດີໂອໄດ້ສິ້ນສຸດລົງໂດຍ %(senderName)s",
|
||||||
"Join the conference from the room information card on the right": "ເຂົ້າຮ່ວມກອງປະຊຸມຈາກບັດຂໍ້ມູນຫ້ອງຢູ່ເບື້ອງຂວາ",
|
"Join the conference from the room information card on the right": "ເຂົ້າຮ່ວມກອງປະຊຸມຈາກບັດຂໍ້ມູນຫ້ອງຢູ່ເບື້ອງຂວາ",
|
||||||
"Join the conference at the top of this room": "ເຂົ້າຮ່ວມກອງປະຊຸມຢູ່ເທິງສຸດຂອງຫ້ອງນີ້",
|
"Join the conference at the top of this room": "ເຂົ້າຮ່ວມກອງປະຊຸມຢູ່ເທິງສຸດຂອງຫ້ອງນີ້",
|
||||||
"Image": "ຮູບພາບ",
|
|
||||||
"Show image": "ສະແດງຮູບພາບ",
|
"Show image": "ສະແດງຮູບພາບ",
|
||||||
"Error decrypting image": "ການຖອດລະຫັດຮູບພາບຜິດພາດ",
|
"Error decrypting image": "ການຖອດລະຫັດຮູບພາບຜິດພາດ",
|
||||||
"Invalid file%(extra)s": "ໄຟລ໌ບໍ່ຖືກຕ້ອງ%(extra)s",
|
"Invalid file%(extra)s": "ໄຟລ໌ບໍ່ຖືກຕ້ອງ%(extra)s",
|
||||||
|
@ -2290,7 +2274,6 @@
|
||||||
"%(senderName)s joined the call": "%(senderName)s ເຂົ້າຮ່ວມການໂທ",
|
"%(senderName)s joined the call": "%(senderName)s ເຂົ້າຮ່ວມການໂທ",
|
||||||
"You joined the call": "ທ່ານເຂົ້າຮ່ວມການໂທ",
|
"You joined the call": "ທ່ານເຂົ້າຮ່ວມການໂທ",
|
||||||
"Other rooms": "ຫ້ອງອື່ນໆ",
|
"Other rooms": "ຫ້ອງອື່ນໆ",
|
||||||
"People": "ຄົນ",
|
|
||||||
"Favourites": "ລາຍການທີ່ມັກ",
|
"Favourites": "ລາຍການທີ່ມັກ",
|
||||||
"Replying": "ກຳລັງຕອບກັບ",
|
"Replying": "ກຳລັງຕອບກັບ",
|
||||||
"Recently viewed": "ເບິ່ງເມື່ອບໍ່ດົນມານີ້",
|
"Recently viewed": "ເບິ່ງເມື່ອບໍ່ດົນມານີ້",
|
||||||
|
@ -2301,7 +2284,6 @@
|
||||||
"Join": "ເຂົ້າຮ່ວມ",
|
"Join": "ເຂົ້າຮ່ວມ",
|
||||||
"View": "ເບິ່ງ",
|
"View": "ເບິ່ງ",
|
||||||
"Unknown": "ບໍ່ຮູ້ຈັກ",
|
"Unknown": "ບໍ່ຮູ້ຈັກ",
|
||||||
"Offline": "ອອບໄລນ໌",
|
|
||||||
"Idle": "ບໍ່ເຮັດວຽກ",
|
"Idle": "ບໍ່ເຮັດວຽກ",
|
||||||
"Online": "ອອນລາຍ",
|
"Online": "ອອນລາຍ",
|
||||||
"Unknown for %(duration)s": "ບໍ່ຮູ້ຈັກສໍາລັບ %(duration)s",
|
"Unknown for %(duration)s": "ບໍ່ຮູ້ຈັກສໍາລັບ %(duration)s",
|
||||||
|
@ -2363,7 +2345,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",
|
||||||
"Reactions": "ປະຕິກິລິຍາ",
|
|
||||||
"Show all": "ສະແດງທັງໝົດ",
|
"Show all": "ສະແດງທັງໝົດ",
|
||||||
"Add reaction": "ເພີ່ມການຕອບໂຕ້",
|
"Add reaction": "ເພີ່ມການຕອບໂຕ້",
|
||||||
"Error processing voice message": "ການປະມວນຜົນຂໍ້ຄວາມສຽງຜິດພາດ",
|
"Error processing voice message": "ການປະມວນຜົນຂໍ້ຄວາມສຽງຜິດພາດ",
|
||||||
|
@ -2663,7 +2644,6 @@
|
||||||
"No answer": "ບໍ່ມີຄໍາຕອບ",
|
"No answer": "ບໍ່ມີຄໍາຕອບ",
|
||||||
"Call back": "ໂທກັບ",
|
"Call back": "ໂທກັບ",
|
||||||
"Call declined": "ປະຕິເສດການໂທ",
|
"Call declined": "ປະຕິເສດການໂທ",
|
||||||
"Verification cancelled": "ຍົກເລີກການຢັ້ງຢືນແລ້ວ",
|
|
||||||
"You cancelled verification.": "ທ່ານໄດ້ຍົກເລີກການຢັ້ງຢືນແລ້ວ.",
|
"You cancelled verification.": "ທ່ານໄດ້ຍົກເລີກການຢັ້ງຢືນແລ້ວ.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s ຍົກເລີກການຢັ້ງຢືນ.",
|
"%(displayName)s cancelled verification.": "%(displayName)s ຍົກເລີກການຢັ້ງຢືນ.",
|
||||||
"You cancelled verification on your other device.": "ທ່ານໄດ້ຍົກເລີກການຢັ້ງຢືນໃນອຸປະກອນອື່ນຂອງທ່ານ.",
|
"You cancelled verification on your other device.": "ທ່ານໄດ້ຍົກເລີກການຢັ້ງຢືນໃນອຸປະກອນອື່ນຂອງທ່ານ.",
|
||||||
|
@ -2689,7 +2669,6 @@
|
||||||
"Compare unique emoji": "ປຽບທຽບ emoji ທີ່ເປັນເອກະລັກ",
|
"Compare unique emoji": "ປຽບທຽບ emoji ທີ່ເປັນເອກະລັກ",
|
||||||
"Scan this unique code": "ສະແກນລະຫັດສະເພາະນີ້",
|
"Scan this unique code": "ສະແກນລະຫັດສະເພາະນີ້",
|
||||||
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "ອຸປະກອນທີ່ທ່ານພະຍາຍາມກວດສອບບໍ່ຮອງຮັບການສະແກນລະຫັດ QR ຫຼື ການຢັ້ງຢືນ emoji, ຊຶ່ງເປັນສິ່ງທີ່%(brand)sສະຫນັບສະຫນູນ. ລອງໃຊ້ກັບລູກຄ້າອື່ນ.",
|
"The device you are trying to verify doesn't support scanning a QR code or emoji verification, which is what %(brand)s supports. Try with a different client.": "ອຸປະກອນທີ່ທ່ານພະຍາຍາມກວດສອບບໍ່ຮອງຮັບການສະແກນລະຫັດ QR ຫຼື ການຢັ້ງຢືນ emoji, ຊຶ່ງເປັນສິ່ງທີ່%(brand)sສະຫນັບສະຫນູນ. ລອງໃຊ້ກັບລູກຄ້າອື່ນ.",
|
||||||
"Security": "ຄວາມປອດໄພ",
|
|
||||||
"Edit devices": "ແກ້ໄຂອຸປະກອນ",
|
"Edit devices": "ແກ້ໄຂອຸປະກອນ",
|
||||||
"This client does not support end-to-end encryption.": "ລູກຄ້ານີ້ບໍ່ຮອງຮັບການເຂົ້າລະຫັດແບບຕົ້ນທາງເຖິງປາຍທາງ.",
|
"This client does not support end-to-end encryption.": "ລູກຄ້ານີ້ບໍ່ຮອງຮັບການເຂົ້າລະຫັດແບບຕົ້ນທາງເຖິງປາຍທາງ.",
|
||||||
"Role in <RoomName/>": "ບົດບາດໃນ <RoomName />",
|
"Role in <RoomName/>": "ບົດບາດໃນ <RoomName />",
|
||||||
|
@ -2700,8 +2679,6 @@
|
||||||
"Are you sure?": "ທ່ານແນ່ໃຈບໍ່?",
|
"Are you sure?": "ທ່ານແນ່ໃຈບໍ່?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "ທ່ານບໍ່ສາມາດຍົກເລີກການປ່ຽນແປງນີ້ໄດ້ເນື່ອງຈາກທ່ານກໍາລັງສົ່ງເສີມຜູ້ໃຊ້ໃຫ້ມີລະດັບພະລັງງານດຽວກັນກັບຕົວທ່ານເອງ.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "ທ່ານບໍ່ສາມາດຍົກເລີກການປ່ຽນແປງນີ້ໄດ້ເນື່ອງຈາກທ່ານກໍາລັງສົ່ງເສີມຜູ້ໃຊ້ໃຫ້ມີລະດັບພະລັງງານດຽວກັນກັບຕົວທ່ານເອງ.",
|
||||||
"Failed to change power level": "ການປ່ຽນແປງລະດັບພະລັງງານບໍ່ສຳເລັດ",
|
"Failed to change power level": "ການປ່ຽນແປງລະດັບພະລັງງານບໍ່ສຳເລັດ",
|
||||||
"Mute": "ປິດສຽງ",
|
|
||||||
"Unmute": "ຍົກເລີກປິດສຽງ",
|
|
||||||
"Failed to mute user": "ປິດສຽງຜູ້ໃຊ້ບໍ່ສຳເລັດ",
|
"Failed to mute user": "ປິດສຽງຜູ້ໃຊ້ບໍ່ສຳເລັດ",
|
||||||
"Remove them from specific things I'm able to": "ລຶບອອກບາງສິ່ງທີ່ທີ່ຂ້ອຍສາມາດເຮັດໄດ້",
|
"Remove them from specific things I'm able to": "ລຶບອອກບາງສິ່ງທີ່ທີ່ຂ້ອຍສາມາດເຮັດໄດ້",
|
||||||
"Remove them from everything I'm able to": "ລຶບອອກຈາກທຸກສິ່ງທີ່ຂ້ອຍສາມາດເຮັດໄດ້",
|
"Remove them from everything I'm able to": "ລຶບອອກຈາກທຸກສິ່ງທີ່ຂ້ອຍສາມາດເຮັດໄດ້",
|
||||||
|
@ -2839,7 +2816,6 @@
|
||||||
"Keyword": "ຄໍາສໍາຄັນ",
|
"Keyword": "ຄໍາສໍາຄັນ",
|
||||||
"Phone numbers": "ເບີໂທລະສັບ",
|
"Phone numbers": "ເບີໂທລະສັບ",
|
||||||
"Email addresses": "ທີ່ຢູ່ອີເມວ",
|
"Email addresses": "ທີ່ຢູ່ອີເມວ",
|
||||||
"Success": "ຄວາມສໍາເລັດ",
|
|
||||||
"Your password was successfully changed.": "ລະຫັດຜ່ານຂອງທ່ານຖືກປ່ຽນສຳເລັດແລ້ວ.",
|
"Your password was successfully changed.": "ລະຫັດຜ່ານຂອງທ່ານຖືກປ່ຽນສຳເລັດແລ້ວ.",
|
||||||
"Failed to change password. Is your password correct?": "ປ່ຽນລະຫັດຜ່ານບໍ່ສຳເລັດ. ລະຫັດຜ່ານຂອງທ່ານຖືກຕ້ອງບໍ?",
|
"Failed to change password. Is your password correct?": "ປ່ຽນລະຫັດຜ່ານບໍ່ສຳເລັດ. ລະຫັດຜ່ານຂອງທ່ານຖືກຕ້ອງບໍ?",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "ການຕັ້ງຄ່າຮູບລັກສະນະມີຜົນກະທົບພຽງແຕ່ %(brand)s ໃນລະບົບ ນີ້.",
|
"Appearance Settings only affect this %(brand)s session.": "ການຕັ້ງຄ່າຮູບລັກສະນະມີຜົນກະທົບພຽງແຕ່ %(brand)s ໃນລະບົບ ນີ້.",
|
||||||
|
@ -2987,7 +2963,6 @@
|
||||||
"The encryption used by this room isn't supported.": "ບໍ່ຮອງຮັບການເຂົ້າລະຫັດທີ່ໃຊ້ໂດຍຫ້ອງນີ້.",
|
"The encryption used by this room isn't supported.": "ບໍ່ຮອງຮັບການເຂົ້າລະຫັດທີ່ໃຊ້ໂດຍຫ້ອງນີ້.",
|
||||||
"Encryption not enabled": "ບໍ່ໄດ້ເປີດໃຊ້ການເຂົ້າລະຫັດ",
|
"Encryption not enabled": "ບໍ່ໄດ້ເປີດໃຊ້ການເຂົ້າລະຫັດ",
|
||||||
"Ignored attempt to disable encryption": "ປະຕິເສດຄວາມພະຍາຍາມປິດການເຂົ້າລະຫັດ",
|
"Ignored attempt to disable encryption": "ປະຕິເສດຄວາມພະຍາຍາມປິດການເຂົ້າລະຫັດ",
|
||||||
"Encryption enabled": "ເປີດໃຊ້ການເຂົ້າລະຫັດແລ້ວ",
|
|
||||||
"Some encryption parameters have been changed.": "ບາງຕົວກໍານົດການເຂົ້າລະຫັດໄດ້ຖືກປ່ຽນແປງ.",
|
"Some encryption parameters have been changed.": "ບາງຕົວກໍານົດການເຂົ້າລະຫັດໄດ້ຖືກປ່ຽນແປງ.",
|
||||||
"View Source": "ເບິ່ງແຫຼ່ງ",
|
"View Source": "ເບິ່ງແຫຼ່ງ",
|
||||||
"Download": "ດາວໂຫຼດ",
|
"Download": "ດາວໂຫຼດ",
|
||||||
|
@ -3251,7 +3226,6 @@
|
||||||
"Poll": "ການສໍາຫລວດ",
|
"Poll": "ການສໍາຫລວດ",
|
||||||
"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": "ຂໍ້ຄວາມສຽງ",
|
||||||
"Sticker": "ສະຕິກເກີ",
|
|
||||||
"Hide stickers": "ເຊື່ອງສະຕິກເກີ",
|
"Hide stickers": "ເຊື່ອງສະຕິກເກີ",
|
||||||
"Emoji": "ອີໂມຈິ",
|
"Emoji": "ອີໂມຈິ",
|
||||||
"Send voice message": "ສົ່ງຂໍ້ຄວາມສຽງ",
|
"Send voice message": "ສົ່ງຂໍ້ຄວາມສຽງ",
|
||||||
|
@ -3302,6 +3276,34 @@
|
||||||
"View related event": "ເບິ່ງເຫດການທີ່ກ່ຽວຂ້ອງ",
|
"View related event": "ເບິ່ງເຫດການທີ່ກ່ຽວຂ້ອງ",
|
||||||
"Read receipts": "ຢັ້ງຢືນອ່ານແລ້ວ",
|
"Read receipts": "ຢັ້ງຢືນອ່ານແລ້ວ",
|
||||||
"Enable hardware acceleration (restart %(appName)s to take effect)": "ເພີ່ມຂີດຄວາມສາມາດຂອງອຸປະກອນ (ບູສແອັບ %(appName)s ນີ້ໃໝ່ເພື່ອເຫັນຜົນ)",
|
"Enable hardware acceleration (restart %(appName)s to take effect)": "ເພີ່ມຂີດຄວາມສາມາດຂອງອຸປະກອນ (ບູສແອັບ %(appName)s ນີ້ໃໝ່ເພື່ອເຫັນຜົນ)",
|
||||||
|
"common": {
|
||||||
|
"about": "ກ່ຽວກັບ",
|
||||||
|
"analytics": "ວິເຄາະ",
|
||||||
|
"encryption_enabled": "ເປີດໃຊ້ການເຂົ້າລະຫັດແລ້ວ",
|
||||||
|
"error": "ມີບັນຫາ",
|
||||||
|
"forward_message": "ສົ່ງຂໍ້ຄວາມຕໍ່",
|
||||||
|
"image": "ຮູບພາບ",
|
||||||
|
"message": "ຂໍ້ຄວາມ",
|
||||||
|
"message_layout": "ຮູບແບບຂໍ້ຄວາມ",
|
||||||
|
"modern": "ທັນສະໄຫມ",
|
||||||
|
"mute": "ປິດສຽງ",
|
||||||
|
"no_results": "ບໍ່ເປັນຜົນ",
|
||||||
|
"offline": "ອອບໄລນ໌",
|
||||||
|
"password": "ລະຫັດຜ່ານ",
|
||||||
|
"people": "ຄົນ",
|
||||||
|
"reactions": "ປະຕິກິລິຍາ",
|
||||||
|
"report_a_bug": "ລາຍງານຂໍ້ຜິດພາດ",
|
||||||
|
"room_name": "ຊື່ຫ້ອງ",
|
||||||
|
"security": "ຄວາມປອດໄພ",
|
||||||
|
"settings": "ການຕັ້ງຄ່າ",
|
||||||
|
"sticker": "ສະຕິກເກີ",
|
||||||
|
"success": "ຄວາມສໍາເລັດ",
|
||||||
|
"suggestions": "ຄຳແນະນຳ",
|
||||||
|
"unmute": "ຍົກເລີກປິດສຽງ",
|
||||||
|
"username": "ຊື່ຜູ້ໃຊ້",
|
||||||
|
"verification_cancelled": "ຍົກເລີກການຢັ້ງຢືນແລ້ວ",
|
||||||
|
"video": "ວິດີໂອ"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "ເມນູຜູ້ໃຊ້"
|
"user_menu": "ເມນູຜູ້ໃຊ້"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"This email address is already in use": "Šis el. pašto adresas jau naudojamas",
|
"This email address is already in use": "Šis el. pašto adresas jau naudojamas",
|
||||||
"This phone number is already in use": "Šis telefono numeris jau naudojamas",
|
"This phone number is already in use": "Šis telefono numeris jau naudojamas",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Nepavyko patvirtinti el. pašto adreso: įsitikinkite, kad paspaudėte nuorodą el. laiške",
|
"Failed to verify email address: make sure you clicked the link in the email": "Nepavyko patvirtinti el. pašto adreso: įsitikinkite, kad paspaudėte nuorodą el. laiške",
|
||||||
"Analytics": "Analitika",
|
|
||||||
"Sunday": "Sekmadienis",
|
"Sunday": "Sekmadienis",
|
||||||
"Notification targets": "Pranešimo objektai",
|
"Notification targets": "Pranešimo objektai",
|
||||||
"Today": "Šiandien",
|
"Today": "Šiandien",
|
||||||
|
@ -15,7 +14,6 @@
|
||||||
"Failed to change password. Is your password correct?": "Nepavyko pakeisti slaptažodžio. Ar jūsų slaptažodis teisingas?",
|
"Failed to change password. Is your password correct?": "Nepavyko pakeisti slaptažodžio. Ar jūsų slaptažodis teisingas?",
|
||||||
"OK": "Gerai",
|
"OK": "Gerai",
|
||||||
"Operation failed": "Operacija nepavyko",
|
"Operation failed": "Operacija nepavyko",
|
||||||
"Mute": "Nutildyti",
|
|
||||||
"Warning": "Įspėjimas",
|
"Warning": "Įspėjimas",
|
||||||
"This Room": "Šis pokalbių kambarys",
|
"This Room": "Šis pokalbių kambarys",
|
||||||
"Resend": "Siųsti iš naujo",
|
"Resend": "Siųsti iš naujo",
|
||||||
|
@ -49,7 +47,6 @@
|
||||||
"What's New": "Kas naujo",
|
"What's New": "Kas naujo",
|
||||||
"Wednesday": "Trečiadienis",
|
"Wednesday": "Trečiadienis",
|
||||||
"Send": "Siųsti",
|
"Send": "Siųsti",
|
||||||
"Error": "Klaida",
|
|
||||||
"Send logs": "Siųsti žurnalus",
|
"Send logs": "Siųsti žurnalus",
|
||||||
"All messages": "Visos žinutės",
|
"All messages": "Visos žinutės",
|
||||||
"unknown error code": "nežinomas klaidos kodas",
|
"unknown error code": "nežinomas klaidos kodas",
|
||||||
|
@ -147,7 +144,6 @@
|
||||||
"Warning!": "Įspėjimas!",
|
"Warning!": "Įspėjimas!",
|
||||||
"Do you want to set an email address?": "Ar norite nustatyti el. pašto adresą?",
|
"Do you want to set an email address?": "Ar norite nustatyti el. pašto adresą?",
|
||||||
"Current password": "Dabartinis slaptažodis",
|
"Current password": "Dabartinis slaptažodis",
|
||||||
"Password": "Slaptažodis",
|
|
||||||
"New Password": "Naujas slaptažodis",
|
"New Password": "Naujas slaptažodis",
|
||||||
"Failed to set display name": "Nepavyko nustatyti rodomo vardo",
|
"Failed to set display name": "Nepavyko nustatyti rodomo vardo",
|
||||||
"Drop file here to upload": "Norėdami įkelti, vilkite failą čia",
|
"Drop file here to upload": "Norėdami įkelti, vilkite failą čia",
|
||||||
|
@ -171,7 +167,6 @@
|
||||||
"one": "(~%(count)s rezultatas)"
|
"one": "(~%(count)s rezultatas)"
|
||||||
},
|
},
|
||||||
"Upload avatar": "Įkelti pseudoportretą",
|
"Upload avatar": "Įkelti pseudoportretą",
|
||||||
"Settings": "Nustatymai",
|
|
||||||
"%(roomName)s does not exist.": "%(roomName)s neegzistuoja.",
|
"%(roomName)s does not exist.": "%(roomName)s neegzistuoja.",
|
||||||
"%(roomName)s is not accessible at this time.": "%(roomName)s šiuo metu nėra pasiekiamas.",
|
"%(roomName)s is not accessible at this time.": "%(roomName)s šiuo metu nėra pasiekiamas.",
|
||||||
"Muted Users": "Nutildyti naudotojai",
|
"Muted Users": "Nutildyti naudotojai",
|
||||||
|
@ -208,7 +203,6 @@
|
||||||
"one": "Įkeliamas %(filename)s ir dar %(count)s failas"
|
"one": "Įkeliamas %(filename)s ir dar %(count)s failas"
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "Įkeliamas %(filename)s",
|
"Uploading %(filename)s": "Įkeliamas %(filename)s",
|
||||||
"Success": "Pavyko",
|
|
||||||
"Unable to remove contact information": "Nepavyko pašalinti kontaktinės informacijos",
|
"Unable to remove contact information": "Nepavyko pašalinti kontaktinės informacijos",
|
||||||
"<not supported>": "<nepalaikoma>",
|
"<not supported>": "<nepalaikoma>",
|
||||||
"Check for update": "Tikrinti, ar yra atnaujinimų",
|
"Check for update": "Tikrinti, ar yra atnaujinimų",
|
||||||
|
@ -279,7 +273,6 @@
|
||||||
"Idle for %(duration)s": "Neveiklus %(duration)s",
|
"Idle for %(duration)s": "Neveiklus %(duration)s",
|
||||||
"Offline for %(duration)s": "Atsijungęs %(duration)s",
|
"Offline for %(duration)s": "Atsijungęs %(duration)s",
|
||||||
"Idle": "Neveiklus",
|
"Idle": "Neveiklus",
|
||||||
"Offline": "Atsijungęs",
|
|
||||||
"Forget room": "Pamiršti kambarį",
|
"Forget room": "Pamiršti kambarį",
|
||||||
"Share room": "Bendrinti kambarį",
|
"Share room": "Bendrinti kambarį",
|
||||||
"Usage": "Naudojimas",
|
"Usage": "Naudojimas",
|
||||||
|
@ -309,7 +302,6 @@
|
||||||
"Sign in with": "Prisijungti naudojant",
|
"Sign in with": "Prisijungti naudojant",
|
||||||
"Sign in": "Prisijungti",
|
"Sign in": "Prisijungti",
|
||||||
"Create new room": "Sukurti naują kambarį",
|
"Create new room": "Sukurti naują kambarį",
|
||||||
"No results": "Jokių rezultatų",
|
|
||||||
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
"%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s",
|
||||||
"%(oneUser)schanged their name %(count)s times": {
|
"%(oneUser)schanged their name %(count)s times": {
|
||||||
"one": "%(oneUser)s pasikeitė vardą",
|
"one": "%(oneUser)s pasikeitė vardą",
|
||||||
|
@ -554,7 +546,6 @@
|
||||||
"General failure": "Bendras triktis",
|
"General failure": "Bendras triktis",
|
||||||
"Messages containing my username": "Žinutės, kuriose yra mano vartotojo vardas",
|
"Messages containing my username": "Žinutės, kuriose yra mano vartotojo vardas",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (galia %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (galia %(powerLevelNumber)s)",
|
||||||
"Username": "Vartotojo vardas",
|
|
||||||
"Enter username": "Įveskite vartotojo vardą",
|
"Enter username": "Įveskite vartotojo vardą",
|
||||||
"Confirm": "Patvirtinti",
|
"Confirm": "Patvirtinti",
|
||||||
"Create account": "Sukurti paskyrą",
|
"Create account": "Sukurti paskyrą",
|
||||||
|
@ -777,13 +768,10 @@
|
||||||
"one": "%(count)s seansas"
|
"one": "%(count)s seansas"
|
||||||
},
|
},
|
||||||
"Hide sessions": "Slėpti seansus",
|
"Hide sessions": "Slėpti seansus",
|
||||||
"Security": "Saugumas",
|
|
||||||
"Verify by scanning": "Patvirtinti nuskaitant",
|
"Verify by scanning": "Patvirtinti nuskaitant",
|
||||||
"Verify all users in a room to ensure it's secure.": "Patvirtinkite visus vartotojus kambaryje, kad užtikrintumėte jo saugumą.",
|
"Verify all users in a room to ensure it's secure.": "Patvirtinkite visus vartotojus kambaryje, kad užtikrintumėte jo saugumą.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s atšaukė patvirtinimą.",
|
"%(displayName)s cancelled verification.": "%(displayName)s atšaukė patvirtinimą.",
|
||||||
"You cancelled verification.": "Jūs atšaukėte patvirtinimą.",
|
"You cancelled verification.": "Jūs atšaukėte patvirtinimą.",
|
||||||
"Verification cancelled": "Patvirtinimas atšauktas",
|
|
||||||
"Encryption enabled": "Šifravimas įjungtas",
|
|
||||||
"Encryption not enabled": "Šifravimas neįjungtas",
|
"Encryption not enabled": "Šifravimas neįjungtas",
|
||||||
"More options": "Daugiau parinkčių",
|
"More options": "Daugiau parinkčių",
|
||||||
"Enable end-to-end encryption": "Įjungti visapusį šifravimą",
|
"Enable end-to-end encryption": "Įjungti visapusį šifravimą",
|
||||||
|
@ -1193,7 +1181,6 @@
|
||||||
"Modify widgets": "Keisti valdiklius",
|
"Modify widgets": "Keisti valdiklius",
|
||||||
"%(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 dabar naudoja 3-5 kartus mažiau atminties, įkeliant vartotojų informaciją tik prireikus. Palaukite, kol mes iš naujo sinchronizuosime su serveriu!",
|
"%(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 dabar naudoja 3-5 kartus mažiau atminties, įkeliant vartotojų informaciją tik prireikus. Palaukite, kol mes iš naujo sinchronizuosime su serveriu!",
|
||||||
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Jūs būsite nukreipti į trečiosios šalies svetainę, kad galėtumėte patvirtinti savo paskyrą naudojimui su %(integrationsUrl)s. Ar norite tęsti?",
|
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Jūs būsite nukreipti į trečiosios šalies svetainę, kad galėtumėte patvirtinti savo paskyrą naudojimui su %(integrationsUrl)s. Ar norite tęsti?",
|
||||||
"About": "Apie",
|
|
||||||
"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>": "Įjungus kambario šifravimą jo išjungti negalima. Žinutės, siunčiamos šifruotame kambaryje, nėra matomos serverio. Jas gali matyti tik kambario dalyviai. Įjungus šifravimą, daugelis botų ir tiltų gali veikti netinkamai. <a>Sužinoti daugiau apie šifravimą.</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>": "Įjungus kambario šifravimą jo išjungti negalima. Žinutės, siunčiamos šifruotame kambaryje, nėra matomos serverio. Jas gali matyti tik kambario dalyviai. Įjungus šifravimą, daugelis botų ir tiltų gali veikti netinkamai. <a>Sužinoti daugiau apie šifravimą.</a>",
|
||||||
"about a day from now": "apie dieną nuo dabar",
|
"about a day from now": "apie dieną nuo dabar",
|
||||||
"about an hour from now": "apie valandą nuo dabar",
|
"about an hour from now": "apie valandą nuo dabar",
|
||||||
|
@ -1237,7 +1224,6 @@
|
||||||
"Please fill why you're reporting.": "Įrašykite kodėl pranešate.",
|
"Please fill why you're reporting.": "Įrašykite kodėl pranešate.",
|
||||||
"Put a link back to the old room at the start of the new room so people can see old messages": "Naujojo kambario pradžioje įdėkite nuorodą į senąjį kambarį, kad žmonės galėtų matyti senas žinutes",
|
"Put a link back to the old room at the start of the new room so people can see old messages": "Naujojo kambario pradžioje įdėkite nuorodą į senąjį kambarį, kad žmonės galėtų matyti senas žinutes",
|
||||||
"Smileys & People": "Šypsenėlės ir Žmonės",
|
"Smileys & People": "Šypsenėlės ir Žmonės",
|
||||||
"People": "Žmonė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.": "Žmonių ignoravimas atliekamas naudojant draudimų sąrašus, kuriuose yra taisyklės, nurodančios kas turi būti draudžiami. Užsiprenumeravus draudimų sąrašą, vartotojai/serveriai, užblokuoti šio sąrašo, bus nuo jūsų paslėpti.",
|
"Ignoring people is done through ban lists which contain rules for who to ban. Subscribing to a ban list means the users/servers blocked by that list will be hidden from you.": "Žmonių ignoravimas atliekamas naudojant draudimų sąrašus, kuriuose yra taisyklės, nurodančios kas turi būti draudžiami. Užsiprenumeravus draudimų sąrašą, vartotojai/serveriai, užblokuoti šio sąrašo, bus nuo jūsų paslėpti.",
|
||||||
"The call was answered on another device.": "Į skambutį buvo atsiliepta kitame įrenginyje.",
|
"The call was answered on another device.": "Į skambutį buvo atsiliepta kitame įrenginyje.",
|
||||||
"Answered Elsewhere": "Atsiliepta Kitur",
|
"Answered Elsewhere": "Atsiliepta Kitur",
|
||||||
|
@ -1336,8 +1322,6 @@
|
||||||
"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.",
|
||||||
"Modern": "Modernus",
|
|
||||||
"Message layout": "Žinutės išdėstymas",
|
|
||||||
"Use between %(min)s pt and %(max)s pt": "Naudokite dydį tarp %(min)s pt ir %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Naudokite dydį tarp %(min)s pt ir %(max)s pt",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Pasirinktinis šrifto dydis gali būti tik tarp %(min)s pt ir %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Pasirinktinis šrifto dydis gali būti tik tarp %(min)s pt ir %(max)s pt",
|
||||||
"Size must be a number": "Dydis turi būti skaičius",
|
"Size must be a number": "Dydis turi būti skaičius",
|
||||||
|
@ -1447,7 +1431,6 @@
|
||||||
"Please review and accept all of the homeserver's policies": "Peržiūrėkite ir sutikite su visa serverio politika",
|
"Please review and accept all of the homeserver's policies": "Peržiūrėkite ir sutikite su visa serverio politika",
|
||||||
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Pirmiausia peržiūrėkite <existingIssuesLink>Github'e esančius pranešimus apie klaidas</existingIssuesLink>. Jokio atitikmens? <newIssueLink>Pradėkite naują pranešimą</newIssueLink>.",
|
"Please view <existingIssuesLink>existing bugs on Github</existingIssuesLink> first. No match? <newIssueLink>Start a new one</newIssueLink>.": "Pirmiausia peržiūrėkite <existingIssuesLink>Github'e esančius pranešimus apie klaidas</existingIssuesLink>. Jokio atitikmens? <newIssueLink>Pradėkite naują pranešimą</newIssueLink>.",
|
||||||
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Paprastai tai turi įtakos tik kambario apdorojimui serveryje. Jei jūs turite problemų su savo %(brand)s, <a>praneškite apie klaidą</a>.",
|
"This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please <a>report a bug</a>.": "Paprastai tai turi įtakos tik kambario apdorojimui serveryje. Jei jūs turite problemų su savo %(brand)s, <a>praneškite apie klaidą</a>.",
|
||||||
"Report a bug": "Pranešti apie klaidą",
|
|
||||||
"Invite someone using their name, email address, username (like <userId/>) or <a>share this room</a>.": "Pakviesti ką nors, naudojant jų vardą, el. pašto adresą, vartotojo vardą (pvz.: <userId/>) arba <a>bendrinti šį kambarį</a>.",
|
"Invite someone using their name, email address, username (like <userId/>) or <a>share this room</a>.": "Pakviesti ką nors, naudojant jų vardą, el. pašto adresą, vartotojo vardą (pvz.: <userId/>) arba <a>bendrinti šį kambarį</a>.",
|
||||||
"Azerbaijan": "Azerbaidžanas",
|
"Azerbaijan": "Azerbaidžanas",
|
||||||
"Austria": "Austrija",
|
"Austria": "Austrija",
|
||||||
|
@ -1503,13 +1486,11 @@
|
||||||
"Add an Integration": "Pridėti Integraciją",
|
"Add an Integration": "Pridėti Integraciją",
|
||||||
"Message deleted on %(date)s": "Žinutė buvo ištrinta %(date)s",
|
"Message deleted on %(date)s": "Žinutė buvo ištrinta %(date)s",
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagavo su %(shortName)s</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reagavo su %(shortName)s</reactedWith>",
|
||||||
"Reactions": "Reakcijos",
|
|
||||||
"Add reaction": "Pridėti reakciją",
|
"Add reaction": "Pridėti reakciją",
|
||||||
"Error processing voice message": "Klaida apdorojant balso pranešimą",
|
"Error processing voice message": "Klaida apdorojant balso pranešimą",
|
||||||
"Ignored attempt to disable encryption": "Bandymas išjungti šifravimą buvo ignoruotas",
|
"Ignored attempt to disable encryption": "Bandymas išjungti šifravimą buvo ignoruotas",
|
||||||
"Verification timed out.": "Pasibaigė laikas patikrinimui.",
|
"Verification timed out.": "Pasibaigė laikas patikrinimui.",
|
||||||
"Ask %(displayName)s to scan your code:": "Paprašykite %(displayName)s nuskaityti jūsų kodą:",
|
"Ask %(displayName)s to scan your code:": "Paprašykite %(displayName)s nuskaityti jūsų kodą:",
|
||||||
"Unmute": "Atšaukti nutildymą",
|
|
||||||
"For a large amount of messages, this might take some time. Please don't refresh your client in the meantime.": "Dideliam žinučių kiekiui tai gali užtrukti kurį laiką. Prašome neperkrauti savo kliento.",
|
"For a large amount of messages, this might take some time. Please don't refresh your client in the meantime.": "Dideliam žinučių kiekiui tai gali užtrukti kurį laiką. Prašome neperkrauti savo kliento.",
|
||||||
"No recent messages by %(user)s found": "Nerasta jokių naujesnių %(user)s žinučių",
|
"No recent messages by %(user)s found": "Nerasta jokių naujesnių %(user)s žinučių",
|
||||||
"You cancelled": "Jūs atšaukėte",
|
"You cancelled": "Jūs atšaukėte",
|
||||||
|
@ -1688,7 +1669,6 @@
|
||||||
"Go": "Eiti",
|
"Go": "Eiti",
|
||||||
"Start a conversation with someone using their name or username (like <userId/>).": "Pradėkite pokalbį su asmeniu naudodami jo vardą arba vartotojo vardą (pvz., <userId/>).",
|
"Start a conversation with someone using their name or username (like <userId/>).": "Pradėkite pokalbį su asmeniu naudodami jo vardą arba vartotojo vardą (pvz., <userId/>).",
|
||||||
"Start a conversation with someone using their name, email address or username (like <userId/>).": "Pradėkite pokalbį su kažkuo naudodami jų vardą, el. pašto adresą arba vartotojo vardą (pvz., <userId/>).",
|
"Start a conversation with someone using their name, email address or username (like <userId/>).": "Pradėkite pokalbį su kažkuo naudodami jų vardą, el. pašto adresą arba vartotojo vardą (pvz., <userId/>).",
|
||||||
"Suggestions": "Pasiūlymai",
|
|
||||||
"Recent Conversations": "Pastarieji pokalbiai",
|
"Recent Conversations": "Pastarieji pokalbiai",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Toliau išvardyti vartotojai gali neegzistuoti arba būti negaliojantys, todėl jų negalima pakviesti: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Toliau išvardyti vartotojai gali neegzistuoti arba būti negaliojantys, todėl jų negalima pakviesti: %(csvNames)s",
|
||||||
"Failed to find the following users": "Nepavyko rasti šių vartotojų",
|
"Failed to find the following users": "Nepavyko rasti šių vartotojų",
|
||||||
|
@ -1704,7 +1684,6 @@
|
||||||
"Terms of Service": "Paslaugų Teikimo Sąlygos",
|
"Terms of Service": "Paslaugų Teikimo Sąlygos",
|
||||||
"Search for rooms or people": "Ieškoti kambarių ar žmonių",
|
"Search for rooms or people": "Ieškoti kambarių ar žmonių",
|
||||||
"Message preview": "Žinutės peržiūra",
|
"Message preview": "Žinutės peržiūra",
|
||||||
"Forward message": "Persiųsti žinutę",
|
|
||||||
"Sent": "Išsiųsta",
|
"Sent": "Išsiųsta",
|
||||||
"Sending": "Siunčiama",
|
"Sending": "Siunčiama",
|
||||||
"You don't have permission to do this": "Jūs neturite leidimo tai daryti",
|
"You don't have permission to do this": "Jūs neturite leidimo tai daryti",
|
||||||
|
@ -1925,7 +1904,6 @@
|
||||||
"Remove from space": "Pašalinti iš erdvės",
|
"Remove from space": "Pašalinti iš erdvės",
|
||||||
"Disinvite from space": "Atšaukti kvietimą iš erdvės",
|
"Disinvite from space": "Atšaukti kvietimą iš erdvės",
|
||||||
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Negalėsite atšaukti šio pakeitimo, nes pažeminsite save, o jei esate paskutinis privilegijuotas naudotojas erdvėje, bus neįmanoma susigrąžinti privilegijų.",
|
"You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Negalėsite atšaukti šio pakeitimo, nes pažeminsite save, o jei esate paskutinis privilegijuotas naudotojas erdvėje, bus neįmanoma susigrąžinti privilegijų.",
|
||||||
"Message": "Žinutė",
|
|
||||||
"Export chat": "Eksportuoti pokalbį",
|
"Export chat": "Eksportuoti pokalbį",
|
||||||
"Pinned": "Prisegta",
|
"Pinned": "Prisegta",
|
||||||
"Files": "Failai",
|
"Files": "Failai",
|
||||||
|
@ -1978,7 +1956,6 @@
|
||||||
},
|
},
|
||||||
"Joined": "Prisijungta",
|
"Joined": "Prisijungta",
|
||||||
"Joining…": "Prisijungiama…",
|
"Joining…": "Prisijungiama…",
|
||||||
"Video": "Vaizdo įrašas",
|
|
||||||
"Unread messages.": "Neperskaitytos žinutės.",
|
"Unread messages.": "Neperskaitytos žinutės.",
|
||||||
"%(count)s unread messages.": {
|
"%(count)s unread messages.": {
|
||||||
"one": "1 neperskaityta žinutė.",
|
"one": "1 neperskaityta žinutė.",
|
||||||
|
@ -2429,7 +2406,6 @@
|
||||||
"You do not have permission to start polls in this room.": "Jūs neturite leidimo pradėti apklausas šiame kambaryje.",
|
"You do not have permission to start polls in this room.": "Jūs neturite leidimo pradėti apklausas šiame kambaryje.",
|
||||||
"Voice Message": "Balso žinutė",
|
"Voice Message": "Balso žinutė",
|
||||||
"Voice broadcast": "Balso transliacija",
|
"Voice broadcast": "Balso transliacija",
|
||||||
"Sticker": "Lipdukas",
|
|
||||||
"Hide stickers": "Slėpti lipdukus",
|
"Hide stickers": "Slėpti lipdukus",
|
||||||
"Send voice message": "Siųsti balso žinutę",
|
"Send voice message": "Siųsti balso žinutę",
|
||||||
"%(seconds)ss left": "%(seconds)ss liko",
|
"%(seconds)ss left": "%(seconds)ss liko",
|
||||||
|
@ -2517,5 +2493,31 @@
|
||||||
"Stop live broadcasting?": "Sustabdyti transliaciją gyvai?",
|
"Stop live broadcasting?": "Sustabdyti transliaciją gyvai?",
|
||||||
"Yes, stop broadcast": "Taip, sustabdyti transliaciją",
|
"Yes, stop broadcast": "Taip, sustabdyti transliaciją",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
"HTML": "HTML"
|
"HTML": "HTML",
|
||||||
|
"common": {
|
||||||
|
"about": "Apie",
|
||||||
|
"analytics": "Analitika",
|
||||||
|
"encryption_enabled": "Šifravimas įjungtas",
|
||||||
|
"error": "Klaida",
|
||||||
|
"forward_message": "Persiųsti žinutę",
|
||||||
|
"message": "Žinutė",
|
||||||
|
"message_layout": "Žinutės išdėstymas",
|
||||||
|
"modern": "Modernus",
|
||||||
|
"mute": "Nutildyti",
|
||||||
|
"no_results": "Jokių rezultatų",
|
||||||
|
"offline": "Atsijungęs",
|
||||||
|
"password": "Slaptažodis",
|
||||||
|
"people": "Žmonės",
|
||||||
|
"reactions": "Reakcijos",
|
||||||
|
"report_a_bug": "Pranešti apie klaidą",
|
||||||
|
"security": "Saugumas",
|
||||||
|
"settings": "Nustatymai",
|
||||||
|
"sticker": "Lipdukas",
|
||||||
|
"success": "Pavyko",
|
||||||
|
"suggestions": "Pasiūlymai",
|
||||||
|
"unmute": "Atšaukti nutildymą",
|
||||||
|
"username": "Vartotojo vardas",
|
||||||
|
"verification_cancelled": "Patvirtinimas atšauktas",
|
||||||
|
"video": "Vaizdo įrašas"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,6 @@
|
||||||
"Email address": "Epasta adrese",
|
"Email address": "Epasta adrese",
|
||||||
"Emoji": "Emocijzīmes",
|
"Emoji": "Emocijzīmes",
|
||||||
"Enter passphrase": "Ievadiet frāzveida paroli",
|
"Enter passphrase": "Ievadiet frāzveida paroli",
|
||||||
"Error": "Kļūda",
|
|
||||||
"Error decrypting attachment": "Kļūda atšifrējot pielikumu",
|
"Error decrypting attachment": "Kļūda atšifrējot pielikumu",
|
||||||
"Export": "Eksportēt",
|
"Export": "Eksportēt",
|
||||||
"Export E2E room keys": "Eksportēt istabas šifrēšanas atslēgas",
|
"Export E2E room keys": "Eksportēt istabas šifrēšanas atslēgas",
|
||||||
|
@ -103,7 +102,6 @@
|
||||||
"Missing room_id in request": "Iztrūkstošs room_id pieprasījumā",
|
"Missing room_id in request": "Iztrūkstošs room_id pieprasījumā",
|
||||||
"Missing user_id in request": "Iztrūkstošs user_id pieprasījumā",
|
"Missing user_id in request": "Iztrūkstošs user_id pieprasījumā",
|
||||||
"Moderator": "Moderators",
|
"Moderator": "Moderators",
|
||||||
"Mute": "Apklusināt",
|
|
||||||
"Name": "Nosaukums",
|
"Name": "Nosaukums",
|
||||||
"New passwords don't match": "Jaunās paroles nesakrīt",
|
"New passwords don't match": "Jaunās paroles nesakrīt",
|
||||||
"New passwords must match each other.": "Jaunajām parolēm ir jāsakrīt vienai ar otru.",
|
"New passwords must match each other.": "Jaunajām parolēm ir jāsakrīt vienai ar otru.",
|
||||||
|
@ -112,11 +110,9 @@
|
||||||
"<not supported>": "<netiek atbalstīts>",
|
"<not supported>": "<netiek atbalstīts>",
|
||||||
"No display name": "Nav parādāmā vārda",
|
"No display name": "Nav parādāmā vārda",
|
||||||
"No more results": "Vairāk nekādu rezultātu nav",
|
"No more results": "Vairāk nekādu rezultātu nav",
|
||||||
"No results": "Nav rezultātu",
|
|
||||||
"No users have specific privileges in this room": "Šajā istabā nav lietotāju ar īpašām privilēģijām",
|
"No users have specific privileges in this room": "Šajā istabā nav lietotāju ar īpašām privilēģijām",
|
||||||
"OK": "Labi",
|
"OK": "Labi",
|
||||||
"Operation failed": "Darbība neizdevās",
|
"Operation failed": "Darbība neizdevās",
|
||||||
"Password": "Parole",
|
|
||||||
"Passwords can't be empty": "Paroles nevar būt tukšas",
|
"Passwords can't be empty": "Paroles nevar būt tukšas",
|
||||||
"Permissions": "Atļaujas",
|
"Permissions": "Atļaujas",
|
||||||
"Phone": "Telefons",
|
"Phone": "Telefons",
|
||||||
|
@ -164,7 +160,6 @@
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Serveris ir nesasniedzams, pārslogots, vai arī esat saskārties ar kļūdu programmā.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "Serveris ir nesasniedzams, pārslogots, vai arī esat saskārties ar kļūdu programmā.",
|
||||||
"Server unavailable, overloaded, or something else went wrong.": "Serveris ir nesasniedzams, pārslogots, vai arī esi uzdūries kļūdai.",
|
"Server unavailable, overloaded, or something else went wrong.": "Serveris ir nesasniedzams, pārslogots, vai arī esi uzdūries kļūdai.",
|
||||||
"Session ID": "Sesijas ID",
|
"Session ID": "Sesijas ID",
|
||||||
"Settings": "Iestatījumi",
|
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Rādīt laiku 12 stundu formātā (piemēram 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Rādīt laiku 12 stundu formātā (piemēram 2:30pm)",
|
||||||
"Signed Out": "Izrakstījās",
|
"Signed Out": "Izrakstījās",
|
||||||
"Sign in": "Pierakstīties",
|
"Sign in": "Pierakstīties",
|
||||||
|
@ -172,7 +167,6 @@
|
||||||
"Someone": "Kāds",
|
"Someone": "Kāds",
|
||||||
"Start authentication": "Sākt autentifikāciju",
|
"Start authentication": "Sākt autentifikāciju",
|
||||||
"Submit": "Iesniegt",
|
"Submit": "Iesniegt",
|
||||||
"Success": "Izdevās",
|
|
||||||
"This email address is already in use": "Šī epasta adrese jau tiek izmantota",
|
"This email address is already in use": "Šī epasta adrese jau tiek izmantota",
|
||||||
"This email address was not found": "Šāda epasta adrese nav atrasta",
|
"This email address was not found": "Šāda epasta adrese nav atrasta",
|
||||||
"The email address linked to your account must be entered.": "Ir jāievada jūsu kontam piesaistītā epasta adrese.",
|
"The email address linked to your account must be entered.": "Ir jāievada jūsu kontam piesaistītā epasta adrese.",
|
||||||
|
@ -188,7 +182,6 @@
|
||||||
"Unable to verify email address.": "Neizdevās apstiprināt epasta adresi.",
|
"Unable to verify email address.": "Neizdevās apstiprināt epasta adresi.",
|
||||||
"Unban": "Atcelt pieejas liegumu",
|
"Unban": "Atcelt pieejas liegumu",
|
||||||
"unknown error code": "nezināms kļūdas kods",
|
"unknown error code": "nezināms kļūdas kods",
|
||||||
"Unmute": "Pārtraukt apklusināšanu",
|
|
||||||
"Unnamed Room": "Istaba bez nosaukuma",
|
"Unnamed Room": "Istaba bez nosaukuma",
|
||||||
"Cancel": "Atcelt",
|
"Cancel": "Atcelt",
|
||||||
"Create new room": "Izveidot jaunu istabu",
|
"Create new room": "Izveidot jaunu istabu",
|
||||||
|
@ -239,7 +232,6 @@
|
||||||
"Start chat": "Uzsākt čatu",
|
"Start chat": "Uzsākt čatu",
|
||||||
"New Password": "Jaunā parole",
|
"New Password": "Jaunā parole",
|
||||||
"Start automatically after system login": "Startēt pie ierīces ielādes",
|
"Start automatically after system login": "Startēt pie ierīces ielādes",
|
||||||
"Analytics": "Analītika",
|
|
||||||
"Options": "Opcijas",
|
"Options": "Opcijas",
|
||||||
"Passphrases must match": "Frāzveida parolēm ir jāsakrīt",
|
"Passphrases must match": "Frāzveida parolēm ir jāsakrīt",
|
||||||
"Passphrase must not be empty": "Frāzveida parole nevar būt tukša",
|
"Passphrase must not be empty": "Frāzveida parole nevar būt tukša",
|
||||||
|
@ -267,7 +259,6 @@
|
||||||
"Drop file here to upload": "Ievelc šeit failu augšupielādei",
|
"Drop file here to upload": "Ievelc šeit failu augšupielādei",
|
||||||
"Online": "Tiešsaistē",
|
"Online": "Tiešsaistē",
|
||||||
"Idle": "Dīkstāvē",
|
"Idle": "Dīkstāvē",
|
||||||
"Offline": "Bezsaistē",
|
|
||||||
"Check for update": "Pārbaudīt atjauninājumus",
|
"Check for update": "Pārbaudīt atjauninājumus",
|
||||||
"Something went wrong!": "Kaut kas nogāja greizi!",
|
"Something went wrong!": "Kaut kas nogāja greizi!",
|
||||||
"Your browser does not support the required cryptography extensions": "Jūsu pārlūks neatbalsta vajadzīgos kriptogrāfijas paplašinājumus",
|
"Your browser does not support the required cryptography extensions": "Jūsu pārlūks neatbalsta vajadzīgos kriptogrāfijas paplašinājumus",
|
||||||
|
@ -531,7 +522,6 @@
|
||||||
"%(displayName)s is typing …": "%(displayName)s raksta…",
|
"%(displayName)s is typing …": "%(displayName)s raksta…",
|
||||||
"Got it": "Sapratu",
|
"Got it": "Sapratu",
|
||||||
"Got It": "Sapratu",
|
"Got It": "Sapratu",
|
||||||
"Verification cancelled": "Verificēšana atcelta",
|
|
||||||
"Waiting for %(displayName)s to accept…": "Gaida, kamēr %(displayName)s akceptēs…",
|
"Waiting for %(displayName)s to accept…": "Gaida, kamēr %(displayName)s akceptēs…",
|
||||||
"Waiting for answer": "Tiek gaidīta atbilde",
|
"Waiting for answer": "Tiek gaidīta atbilde",
|
||||||
"To be secure, do this in person or use a trusted way to communicate.": "Lai tas būtu droši, dariet to klātienē vai lietojiet kādu uzticamu saziņas veidu.",
|
"To be secure, do this in person or use a trusted way to communicate.": "Lai tas būtu droši, dariet to klātienē vai lietojiet kādu uzticamu saziņas veidu.",
|
||||||
|
@ -550,7 +540,6 @@
|
||||||
},
|
},
|
||||||
"Once enabled, encryption cannot be disabled.": "Šifrēšana nevar tikt atspējota, ja reiz tikusi iespējota.",
|
"Once enabled, encryption cannot be disabled.": "Šifrēšana nevar tikt atspējota, ja reiz tikusi iespējota.",
|
||||||
"Encryption not enabled": "Šifrēšana nav iespējota",
|
"Encryption not enabled": "Šifrēšana nav iespējota",
|
||||||
"Encryption enabled": "Šifrēšana iespējota",
|
|
||||||
"Only the two of you are in this conversation, unless either of you invites anyone to join.": "Tikai jūs abi esat šajā sarakstē, ja vien kāds no jums neuzaicina citus pievienoties.",
|
"Only the two of you are in this conversation, unless either of you invites anyone to join.": "Tikai jūs abi esat šajā sarakstē, ja vien kāds no jums neuzaicina citus pievienoties.",
|
||||||
"This is the beginning of your direct message history with <displayName/>.": "Šis ir sākums jūsu tiešās sarakstes vēsturei ar <displayName/>.",
|
"This is the beginning of your direct message history with <displayName/>.": "Šis ir sākums jūsu tiešās sarakstes vēsturei ar <displayName/>.",
|
||||||
"Use the <a>Desktop app</a> to search encrypted messages": "Izmantojiet <a>lietotni</a>, lai veiktu šifrētu ziņu meklēšanu",
|
"Use the <a>Desktop app</a> to search encrypted messages": "Izmantojiet <a>lietotni</a>, lai veiktu šifrētu ziņu meklēšanu",
|
||||||
|
@ -583,13 +572,11 @@
|
||||||
"Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Saziņa ar šo lietotāju ir nodrošināta ar pilnīgu šifrēšanu un nav nolasāma trešajām pusēm.",
|
"Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Saziņa ar šo lietotāju ir nodrošināta ar pilnīgu šifrēšanu un nav nolasāma trešajām pusēm.",
|
||||||
"Encrypted by a deleted session": "Šifrēts ar dzēstu sesiju",
|
"Encrypted by a deleted session": "Šifrēts ar dzēstu sesiju",
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reaģēja ar %(shortName)s</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>": "<reactors/><reactedWith>reaģēja ar %(shortName)s</reactedWith>",
|
||||||
"Reactions": "Reaģēšana",
|
|
||||||
"Quick Reactions": "Ātra reaģēšana",
|
"Quick Reactions": "Ātra reaģēšana",
|
||||||
"React": "Reaģēt",
|
"React": "Reaģēt",
|
||||||
"Messages in this room are not end-to-end encrypted.": "Ziņām šajā istabā netiek piemērota pilnīga šifrēšana.",
|
"Messages in this room are not end-to-end encrypted.": "Ziņām šajā istabā netiek piemērota pilnīga šifrēšana.",
|
||||||
"This room is end-to-end encrypted": "Šajā istabā tiek veikta pilnīga šifrēšana",
|
"This room is end-to-end encrypted": "Šajā istabā tiek veikta pilnīga šifrēšana",
|
||||||
"Room information": "Informācija par istabu",
|
"Room information": "Informācija par istabu",
|
||||||
"Security": "Drošība",
|
|
||||||
"The server is offline.": "Serveris bezsaistē.",
|
"The server is offline.": "Serveris bezsaistē.",
|
||||||
"If you've forgotten your Security Phrase you can <button1>use your Security Key</button1> or <button2>set up new recovery options</button2>": "Ja ir aizmirsta slepenā frāze, jūs varat <button1>izmantot drošības atslēgu</button1> vai<button2>iestatīt jaunus atkopšanas veidus</button2>",
|
"If you've forgotten your Security Phrase you can <button1>use your Security Key</button1> or <button2>set up new recovery options</button2>": "Ja ir aizmirsta slepenā frāze, jūs varat <button1>izmantot drošības atslēgu</button1> vai<button2>iestatīt jaunus atkopšanas veidus</button2>",
|
||||||
"If you've forgotten your Security Key you can <button>set up new recovery options</button>": "Ja ir aizmirsta drošības atslēga, jūs varat <button>iestatīt jaunus atkopšanas veidus</button>",
|
"If you've forgotten your Security Key you can <button>set up new recovery options</button>": "Ja ir aizmirsta drošības atslēga, jūs varat <button>iestatīt jaunus atkopšanas veidus</button>",
|
||||||
|
@ -663,11 +650,9 @@
|
||||||
"Join millions for free on the largest public server": "Pievienojieties bez maksas miljoniem lietotāju lielākajā publiskajā serverī",
|
"Join millions for free on the largest public server": "Pievienojieties bez maksas miljoniem lietotāju lielākajā publiskajā serverī",
|
||||||
"Server Options": "Servera parametri",
|
"Server Options": "Servera parametri",
|
||||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s vai %(usernamePassword)s",
|
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s vai %(usernamePassword)s",
|
||||||
"Username": "Lietotājvārds",
|
|
||||||
"<userName/> invited you": "<userName/> uzaicināja jūs",
|
"<userName/> invited you": "<userName/> uzaicināja jūs",
|
||||||
"<userName/> wants to chat": "<userName/> vēlas sarakstīties",
|
"<userName/> wants to chat": "<userName/> vēlas sarakstīties",
|
||||||
"Smileys & People": "Smaidiņi & cilvēki",
|
"Smileys & People": "Smaidiņi & cilvēki",
|
||||||
"People": "Cilvēki",
|
|
||||||
"Add a photo, so people can easily spot your room.": "Pievienojiet foto, lai padarītu istabu vieglāk pamanāmu citiem cilvēkiem.",
|
"Add a photo, so people can easily spot your room.": "Pievienojiet foto, lai padarītu istabu vieglāk pamanāmu citiem cilvēkiem.",
|
||||||
"<a>Add a topic</a> to help people know what it is about.": "<a>Pievienot tematu</a>, lai dotu cilvēkiem priekšstatu.",
|
"<a>Add a topic</a> to help people know what it is about.": "<a>Pievienot tematu</a>, lai dotu cilvēkiem priekšstatu.",
|
||||||
"You do not have permission to invite people to this room.": "Jums nav atļaujas uzaicināt cilvēkus šajā istabā.",
|
"You do not have permission to invite people to this room.": "Jums nav atļaujas uzaicināt cilvēkus šajā istabā.",
|
||||||
|
@ -818,7 +803,6 @@
|
||||||
"Share room": "Dalīties ar istabu",
|
"Share room": "Dalīties ar istabu",
|
||||||
"Help & About": "Palīdzība un par lietotni",
|
"Help & About": "Palīdzība un par lietotni",
|
||||||
"About homeservers": "Par bāzes serveriem",
|
"About homeservers": "Par bāzes serveriem",
|
||||||
"About": "Par",
|
|
||||||
"%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s uzsāka balss zvanu. (Netiek atbalstīts šajā pārlūkā)",
|
"%(senderName)s placed a voice call. (not supported by this browser)": "%(senderName)s uzsāka balss zvanu. (Netiek atbalstīts šajā pārlūkā)",
|
||||||
"%(senderName)s placed a voice call.": "%(senderName)s uzsāka balss zvanu.",
|
"%(senderName)s placed a voice call.": "%(senderName)s uzsāka balss zvanu.",
|
||||||
"Enable message search in encrypted rooms": "Iespējot ziņu meklēšanu šifrētās istabās",
|
"Enable message search in encrypted rooms": "Iespējot ziņu meklēšanu šifrētās istabās",
|
||||||
|
@ -1123,7 +1107,6 @@
|
||||||
},
|
},
|
||||||
"Save Changes": "Saglabāt izmaiņas",
|
"Save Changes": "Saglabāt izmaiņas",
|
||||||
"Welcome to <name/>": "Laipni lūdzam uz <name/>",
|
"Welcome to <name/>": "Laipni lūdzam uz <name/>",
|
||||||
"Room name": "Istabas nosaukums",
|
|
||||||
"Room List": "Istabu saraksts",
|
"Room List": "Istabu saraksts",
|
||||||
"Send as message": "Nosūtīt kā ziņu",
|
"Send as message": "Nosūtīt kā ziņu",
|
||||||
"%(brand)s URL": "%(brand)s URL",
|
"%(brand)s URL": "%(brand)s URL",
|
||||||
|
@ -1557,7 +1540,6 @@
|
||||||
"Some suggestions may be hidden for privacy.": "Daži ieteikumi var būt slēpti dēļ privātuma.",
|
"Some suggestions may be hidden for privacy.": "Daži ieteikumi var būt slēpti dēļ privātuma.",
|
||||||
"Search for rooms or people": "Meklēt istabas vai cilvēkus",
|
"Search for rooms or people": "Meklēt istabas vai cilvēkus",
|
||||||
"Message preview": "Ziņas priekšskatījums",
|
"Message preview": "Ziņas priekšskatījums",
|
||||||
"Forward message": "Pārsūtīt ziņu",
|
|
||||||
"Public room": "Publiska istaba",
|
"Public room": "Publiska istaba",
|
||||||
"Private room (invite only)": "Privāta istaba (tikai ar ielūgumiem)",
|
"Private room (invite only)": "Privāta istaba (tikai ar ielūgumiem)",
|
||||||
"Only people invited will be able to find and join this room.": "Tikai uzaicinātās cilvēki varēs atrast un pievienoties šai istabai.",
|
"Only people invited will be able to find and join this room.": "Tikai uzaicinātās cilvēki varēs atrast un pievienoties šai istabai.",
|
||||||
|
@ -1807,7 +1789,6 @@
|
||||||
"Show: %(instance)s rooms (%(server)s)": "Rādīt: %(instance)s istabas (%(server)s)",
|
"Show: %(instance)s rooms (%(server)s)": "Rādīt: %(instance)s istabas (%(server)s)",
|
||||||
"Show: Matrix rooms": "Rādīt: Matrix istabas",
|
"Show: Matrix rooms": "Rādīt: Matrix istabas",
|
||||||
"Show:": "Rādīt:",
|
"Show:": "Rādīt:",
|
||||||
"Suggestions": "Ieteikumi",
|
|
||||||
"Other options": "Citas iespējas",
|
"Other options": "Citas iespējas",
|
||||||
"Use \"%(query)s\" to search": "Izmantot \"%(query)s\" meklēšanai",
|
"Use \"%(query)s\" to search": "Izmantot \"%(query)s\" meklēšanai",
|
||||||
"Try scrolling up in the timeline to see if there are any earlier ones.": "Mēģiniet ritināt laika joslu uz augšu, lai redzētu, vai ir kādas agrākas ziņas.",
|
"Try scrolling up in the timeline to see if there are any earlier ones.": "Mēģiniet ritināt laika joslu uz augšu, lai redzētu, vai ir kādas agrākas ziņas.",
|
||||||
|
@ -1826,6 +1807,27 @@
|
||||||
"Export Chat": "Eksportēt čatu",
|
"Export Chat": "Eksportēt čatu",
|
||||||
"Export chat": "Eksportēt čatu",
|
"Export chat": "Eksportēt čatu",
|
||||||
"Back to chat": "Atgriezties uz čatu",
|
"Back to chat": "Atgriezties uz čatu",
|
||||||
|
"common": {
|
||||||
|
"about": "Par",
|
||||||
|
"analytics": "Analītika",
|
||||||
|
"encryption_enabled": "Šifrēšana iespējota",
|
||||||
|
"error": "Kļūda",
|
||||||
|
"forward_message": "Pārsūtīt ziņu",
|
||||||
|
"mute": "Apklusināt",
|
||||||
|
"no_results": "Nav rezultātu",
|
||||||
|
"offline": "Bezsaistē",
|
||||||
|
"password": "Parole",
|
||||||
|
"people": "Cilvēki",
|
||||||
|
"reactions": "Reaģēšana",
|
||||||
|
"room_name": "Istabas nosaukums",
|
||||||
|
"security": "Drošība",
|
||||||
|
"settings": "Iestatījumi",
|
||||||
|
"success": "Izdevās",
|
||||||
|
"suggestions": "Ieteikumi",
|
||||||
|
"unmute": "Pārtraukt apklusināšanu",
|
||||||
|
"username": "Lietotājvārds",
|
||||||
|
"verification_cancelled": "Verificēšana atcelta"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Lietotāja izvēlne"
|
"user_menu": "Lietotāja izvēlne"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,16 +3,13 @@
|
||||||
"Close": "അടയ്ക്കുക",
|
"Close": "അടയ്ക്കുക",
|
||||||
"Create new room": "പുതിയ റൂം സൃഷ്ടിക്കുക",
|
"Create new room": "പുതിയ റൂം സൃഷ്ടിക്കുക",
|
||||||
"Dismiss": "ഒഴിവാക്കുക",
|
"Dismiss": "ഒഴിവാക്കുക",
|
||||||
"Error": "എറര്",
|
|
||||||
"Failed to forget room %(errCode)s": "%(errCode)s റൂം ഫോര്ഗെറ്റ് ചെയ്യുവാന് സാധിച്ചില്ല",
|
"Failed to forget room %(errCode)s": "%(errCode)s റൂം ഫോര്ഗെറ്റ് ചെയ്യുവാന് സാധിച്ചില്ല",
|
||||||
"Favourite": "പ്രിയപ്പെട്ടവ",
|
"Favourite": "പ്രിയപ്പെട്ടവ",
|
||||||
"Mute": "നിശ്ശബ്ദം",
|
|
||||||
"Notifications": "നോട്ടിഫിക്കേഷനുകള്",
|
"Notifications": "നോട്ടിഫിക്കേഷനുകള്",
|
||||||
"Operation failed": "ശ്രമം പരാജയപ്പെട്ടു",
|
"Operation failed": "ശ്രമം പരാജയപ്പെട്ടു",
|
||||||
"powered by Matrix": "മാട്രിക്സില് പ്രവര്ത്തിക്കുന്നു",
|
"powered by Matrix": "മാട്രിക്സില് പ്രവര്ത്തിക്കുന്നു",
|
||||||
"Remove": "നീക്കം ചെയ്യുക",
|
"Remove": "നീക്കം ചെയ്യുക",
|
||||||
"Search": "തിരയുക",
|
"Search": "തിരയുക",
|
||||||
"Settings": "സജ്ജീകരണങ്ങള്",
|
|
||||||
"Start chat": "ചാറ്റ് തുടങ്ങുക",
|
"Start chat": "ചാറ്റ് തുടങ്ങുക",
|
||||||
"unknown error code": "അപരിചിത എറര് കോഡ്",
|
"unknown error code": "അപരിചിത എറര് കോഡ്",
|
||||||
"OK": "ശരി",
|
"OK": "ശരി",
|
||||||
|
@ -73,5 +70,10 @@
|
||||||
"Sign In": "പ്രവേശിക്കുക",
|
"Sign In": "പ്രവേശിക്കുക",
|
||||||
"Create Account": "അക്കൗണ്ട് സൃഷ്ടിക്കുക",
|
"Create Account": "അക്കൗണ്ട് സൃഷ്ടിക്കുക",
|
||||||
"Integration manager": "സംയോജക മാനേജർ",
|
"Integration manager": "സംയോജക മാനേജർ",
|
||||||
"Identity server": "തിരിച്ചറിയൽ സെർവർ"
|
"Identity server": "തിരിച്ചറിയൽ സെർവർ",
|
||||||
|
"common": {
|
||||||
|
"error": "എറര്",
|
||||||
|
"mute": "നിശ്ശബ്ദം",
|
||||||
|
"settings": "സജ്ജീകരണങ്ങള്"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"Monday": "Mandag",
|
"Monday": "Mandag",
|
||||||
"Failed to forget room %(errCode)s": "Kunne ikke glemme rommet %(errCode)s",
|
"Failed to forget room %(errCode)s": "Kunne ikke glemme rommet %(errCode)s",
|
||||||
"Wednesday": "Onsdag",
|
"Wednesday": "Onsdag",
|
||||||
"Error": "Feil",
|
|
||||||
"unknown error code": "ukjent feilkode",
|
"unknown error code": "ukjent feilkode",
|
||||||
"Call invitation": "Anropsinvitasjon",
|
"Call invitation": "Anropsinvitasjon",
|
||||||
"Messages containing my display name": "Meldinger som inneholder mitt visningsnavn",
|
"Messages containing my display name": "Meldinger som inneholder mitt visningsnavn",
|
||||||
|
@ -43,7 +42,6 @@
|
||||||
"Quote": "Sitat",
|
"Quote": "Sitat",
|
||||||
"Saturday": "Lørdag",
|
"Saturday": "Lørdag",
|
||||||
"Dismiss": "Avvis",
|
"Dismiss": "Avvis",
|
||||||
"Analytics": "Statistikk",
|
|
||||||
"Call Failed": "Oppringning mislyktes",
|
"Call Failed": "Oppringning mislyktes",
|
||||||
"You cannot place a call with yourself.": "Du kan ikke ringe deg selv.",
|
"You cannot place a call with yourself.": "Du kan ikke ringe deg selv.",
|
||||||
"Permission Required": "Tillatelse kreves",
|
"Permission Required": "Tillatelse kreves",
|
||||||
|
@ -204,7 +202,6 @@
|
||||||
"Upload": "Last opp",
|
"Upload": "Last opp",
|
||||||
"Show less": "Vis mindre",
|
"Show less": "Vis mindre",
|
||||||
"Current password": "Nåværende passord",
|
"Current password": "Nåværende passord",
|
||||||
"Password": "Passord",
|
|
||||||
"New Password": "Nytt passord",
|
"New Password": "Nytt passord",
|
||||||
"Confirm password": "Bekreft passord",
|
"Confirm password": "Bekreft passord",
|
||||||
"Change Password": "Endre passordet",
|
"Change Password": "Endre passordet",
|
||||||
|
@ -215,7 +212,6 @@
|
||||||
"Disconnect": "Koble fra",
|
"Disconnect": "Koble fra",
|
||||||
"Go back": "Gå tilbake",
|
"Go back": "Gå tilbake",
|
||||||
"Change": "Endre",
|
"Change": "Endre",
|
||||||
"Success": "Vellykket",
|
|
||||||
"Profile": "Profil",
|
"Profile": "Profil",
|
||||||
"Email addresses": "E-postadresser",
|
"Email addresses": "E-postadresser",
|
||||||
"Phone numbers": "Telefonnumre",
|
"Phone numbers": "Telefonnumre",
|
||||||
|
@ -256,8 +252,6 @@
|
||||||
"Mod": "Mod",
|
"Mod": "Mod",
|
||||||
"Are you sure?": "Er du sikker?",
|
"Are you sure?": "Er du sikker?",
|
||||||
"Invite": "Inviter",
|
"Invite": "Inviter",
|
||||||
"Unmute": "Opphev demp",
|
|
||||||
"Mute": "Demp",
|
|
||||||
"Admin Tools": "Adminverktøy",
|
"Admin Tools": "Adminverktøy",
|
||||||
"Invited": "Invitert",
|
"Invited": "Invitert",
|
||||||
"Send an encrypted reply…": "Send et kryptert svar …",
|
"Send an encrypted reply…": "Send et kryptert svar …",
|
||||||
|
@ -268,9 +262,7 @@
|
||||||
"Strikethrough": "Gjennomstreking",
|
"Strikethrough": "Gjennomstreking",
|
||||||
"Online": "Tilkoblet",
|
"Online": "Tilkoblet",
|
||||||
"Idle": "Rolig",
|
"Idle": "Rolig",
|
||||||
"Offline": "Frakoblet",
|
|
||||||
"Unknown": "Ukjent",
|
"Unknown": "Ukjent",
|
||||||
"Settings": "Innstillinger",
|
|
||||||
"Search": "Søk",
|
"Search": "Søk",
|
||||||
"Direct Messages": "Direktemeldinger",
|
"Direct Messages": "Direktemeldinger",
|
||||||
"Rooms": "Rom",
|
"Rooms": "Rom",
|
||||||
|
@ -278,14 +270,12 @@
|
||||||
"Options": "Innstillinger",
|
"Options": "Innstillinger",
|
||||||
"All Rooms": "Alle rom",
|
"All Rooms": "Alle rom",
|
||||||
"Search…": "Søk …",
|
"Search…": "Søk …",
|
||||||
"Security": "Sikkerhet",
|
|
||||||
"Got it": "Jeg forstår",
|
"Got it": "Jeg forstår",
|
||||||
"Reply": "Svar",
|
"Reply": "Svar",
|
||||||
"Edit": "Rediger",
|
"Edit": "Rediger",
|
||||||
"Attachment": "Vedlegg",
|
"Attachment": "Vedlegg",
|
||||||
"Download %(text)s": "Last ned %(text)s",
|
"Download %(text)s": "Last ned %(text)s",
|
||||||
"Show all": "Vis alt",
|
"Show all": "Vis alt",
|
||||||
"Reactions": "Reaksjoner",
|
|
||||||
"Copied!": "Kopiert!",
|
"Copied!": "Kopiert!",
|
||||||
"What's New": "Hva er nytt",
|
"What's New": "Hva er nytt",
|
||||||
"Update": "Oppdater",
|
"Update": "Oppdater",
|
||||||
|
@ -322,7 +312,6 @@
|
||||||
"Filter results": "Filtrerresultater",
|
"Filter results": "Filtrerresultater",
|
||||||
"Toolbox": "Verktøykasse",
|
"Toolbox": "Verktøykasse",
|
||||||
"An error has occurred.": "En feil har oppstått.",
|
"An error has occurred.": "En feil har oppstått.",
|
||||||
"Suggestions": "Forslag",
|
|
||||||
"Go": "Gå",
|
"Go": "Gå",
|
||||||
"Refresh": "Oppdater",
|
"Refresh": "Oppdater",
|
||||||
"Email address": "E-postadresse",
|
"Email address": "E-postadresse",
|
||||||
|
@ -340,7 +329,6 @@
|
||||||
"Code": "Kode",
|
"Code": "Kode",
|
||||||
"Submit": "Send",
|
"Submit": "Send",
|
||||||
"Email": "E-post",
|
"Email": "E-post",
|
||||||
"Username": "Brukernavn",
|
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
"Enter password": "Skriv inn passord",
|
"Enter password": "Skriv inn passord",
|
||||||
"Enter username": "Skriv inn brukernavn",
|
"Enter username": "Skriv inn brukernavn",
|
||||||
|
@ -529,7 +517,6 @@
|
||||||
"Widget ID": "Modul-ID",
|
"Widget ID": "Modul-ID",
|
||||||
"Delete Widget": "Slett modul",
|
"Delete Widget": "Slett modul",
|
||||||
"Delete widget": "Slett modul",
|
"Delete widget": "Slett modul",
|
||||||
"No results": "Ingen treff",
|
|
||||||
"Rotate Left": "Roter til venstre",
|
"Rotate Left": "Roter til venstre",
|
||||||
"Rotate Right": "Roter til høyre",
|
"Rotate Right": "Roter til høyre",
|
||||||
"were invited %(count)s times": {
|
"were invited %(count)s times": {
|
||||||
|
@ -663,7 +650,6 @@
|
||||||
"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.": "Når noen legger til en URL i meldingene deres, kan en URL-forhåndsvisning bli vist for å gi mere informasjonen om den lenken, f.eks. tittelen, beskrivelsen, og et bilde fra nettstedet.",
|
"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.": "Når noen legger til en URL i meldingene deres, kan en URL-forhåndsvisning bli vist for å gi mere informasjonen om den lenken, f.eks. tittelen, beskrivelsen, og et bilde fra nettstedet.",
|
||||||
"Trusted": "Betrodd",
|
"Trusted": "Betrodd",
|
||||||
"Not trusted": "Ikke betrodd",
|
"Not trusted": "Ikke betrodd",
|
||||||
"Encryption enabled": "Kryptering er skrudd på",
|
|
||||||
"Encryption not enabled": "Kryptering er ikke skrudd på",
|
"Encryption not enabled": "Kryptering er ikke skrudd på",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s endret rommets avatar til <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s endret rommets avatar til <img/>",
|
||||||
"Something went wrong!": "Noe gikk galt!",
|
"Something went wrong!": "Noe gikk galt!",
|
||||||
|
@ -937,7 +923,6 @@
|
||||||
"Remove %(phone)s?": "Vil du fjerne %(phone)s?",
|
"Remove %(phone)s?": "Vil du fjerne %(phone)s?",
|
||||||
"Online for %(duration)s": "På nett i %(duration)s",
|
"Online for %(duration)s": "På nett i %(duration)s",
|
||||||
"Favourites": "Favoritter",
|
"Favourites": "Favoritter",
|
||||||
"People": "Folk",
|
|
||||||
"Sort by": "Sorter etter",
|
"Sort by": "Sorter etter",
|
||||||
"Activity": "Aktivitet",
|
"Activity": "Aktivitet",
|
||||||
"A-Z": "A-Å",
|
"A-Z": "A-Å",
|
||||||
|
@ -1009,7 +994,6 @@
|
||||||
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s gjorde fremtidig romhistorikk synlig for alle rommedlemmer (%(visibility)s).",
|
"%(senderName)s made future room history visible to unknown (%(visibility)s).": "%(senderName)s gjorde fremtidig romhistorikk synlig for alle rommedlemmer (%(visibility)s).",
|
||||||
"To help us prevent this in future, please <a>send us logs</a>.": "For å hjelpe oss med å forhindre dette i fremtiden, vennligst <a>send oss loggfiler</a>.",
|
"To help us prevent this in future, please <a>send us logs</a>.": "For å hjelpe oss med å forhindre dette i fremtiden, vennligst <a>send oss loggfiler</a>.",
|
||||||
"Lock": "Lås",
|
"Lock": "Lås",
|
||||||
"Modern": "Moderne",
|
|
||||||
"Server or user ID to ignore": "Tjener- eller bruker-ID-en som skal ignoreres",
|
"Server or user ID to ignore": "Tjener- eller bruker-ID-en som skal ignoreres",
|
||||||
"Show %(count)s more": {
|
"Show %(count)s more": {
|
||||||
"other": "Vis %(count)s til",
|
"other": "Vis %(count)s til",
|
||||||
|
@ -1018,7 +1002,6 @@
|
||||||
"Notification options": "Varselsinnstillinger",
|
"Notification options": "Varselsinnstillinger",
|
||||||
"Room options": "Rominnstillinger",
|
"Room options": "Rominnstillinger",
|
||||||
"Your messages are not secure": "Dine meldinger er ikke sikre",
|
"Your messages are not secure": "Dine meldinger er ikke sikre",
|
||||||
"Verification cancelled": "Verifiseringen ble avbrutt",
|
|
||||||
"Edited at %(date)s": "Redigert den %(date)s",
|
"Edited at %(date)s": "Redigert den %(date)s",
|
||||||
"Click to view edits": "Klikk for å vise redigeringer",
|
"Click to view edits": "Klikk for å vise redigeringer",
|
||||||
"This widget may use cookies.": "Denne modulen bruker kanskje infokapsler.",
|
"This widget may use cookies.": "Denne modulen bruker kanskje infokapsler.",
|
||||||
|
@ -1167,7 +1150,6 @@
|
||||||
"Setting:": "Innstilling:",
|
"Setting:": "Innstilling:",
|
||||||
"Caution:": "Advarsel:",
|
"Caution:": "Advarsel:",
|
||||||
"Level": "Nivå",
|
"Level": "Nivå",
|
||||||
"Room name": "Rommets navn",
|
|
||||||
"Skip for now": "Hopp over for nå",
|
"Skip for now": "Hopp over for nå",
|
||||||
"Share %(name)s": "Del %(name)s",
|
"Share %(name)s": "Del %(name)s",
|
||||||
"Just me": "Bare meg selv",
|
"Just me": "Bare meg selv",
|
||||||
|
@ -1244,7 +1226,6 @@
|
||||||
"Failed to ban user": "Mislyktes i å bannlyse brukeren",
|
"Failed to ban user": "Mislyktes i å bannlyse brukeren",
|
||||||
"Room settings": "Rominnstillinger",
|
"Room settings": "Rominnstillinger",
|
||||||
"Not encrypted": "Ikke kryptert",
|
"Not encrypted": "Ikke kryptert",
|
||||||
"About": "Om",
|
|
||||||
"Widgets": "Komponenter",
|
"Widgets": "Komponenter",
|
||||||
"Favourited": "Favorittmerket",
|
"Favourited": "Favorittmerket",
|
||||||
"Forget Room": "Glem rommet",
|
"Forget Room": "Glem rommet",
|
||||||
|
@ -1254,7 +1235,6 @@
|
||||||
"Are you sure you want to sign out?": "Er du sikker på at du vil logge av?",
|
"Are you sure you want to sign out?": "Er du sikker på at du vil logge av?",
|
||||||
"Transfer": "Overfør",
|
"Transfer": "Overfør",
|
||||||
"Invite by email": "Inviter gjennom E-post",
|
"Invite by email": "Inviter gjennom E-post",
|
||||||
"Report a bug": "Rapporter en feil",
|
|
||||||
"Comment": "Kommentar",
|
"Comment": "Kommentar",
|
||||||
"Active Widgets": "Aktive moduler",
|
"Active Widgets": "Aktive moduler",
|
||||||
"Reason (optional)": "Årsak (valgfritt)",
|
"Reason (optional)": "Årsak (valgfritt)",
|
||||||
|
@ -1513,7 +1493,6 @@
|
||||||
"Beta": "Beta",
|
"Beta": "Beta",
|
||||||
"Report": "Rapporter",
|
"Report": "Rapporter",
|
||||||
"Forward": "Videresend",
|
"Forward": "Videresend",
|
||||||
"Forward message": "Videresend melding",
|
|
||||||
"Sent": "Sendt",
|
"Sent": "Sendt",
|
||||||
"Sending": "Sender",
|
"Sending": "Sender",
|
||||||
"Format": "Format",
|
"Format": "Format",
|
||||||
|
@ -1522,12 +1501,9 @@
|
||||||
"Zoom in": "Forstørr",
|
"Zoom in": "Forstørr",
|
||||||
"Zoom out": "Forminske",
|
"Zoom out": "Forminske",
|
||||||
"Add reaction": "Legg til reaksjon",
|
"Add reaction": "Legg til reaksjon",
|
||||||
"Image": "Bilde",
|
|
||||||
"Sticker": "Klistremerke",
|
|
||||||
"Thread": "Tråd",
|
"Thread": "Tråd",
|
||||||
"Downloading": "Laster ned",
|
"Downloading": "Laster ned",
|
||||||
"Connection failed": "Tilkobling mislyktes",
|
"Connection failed": "Tilkobling mislyktes",
|
||||||
"Message": "Melding",
|
|
||||||
"Threads": "Tråder",
|
"Threads": "Tråder",
|
||||||
"Send a sticker": "Send et klistremerke",
|
"Send a sticker": "Send et klistremerke",
|
||||||
"Keyboard shortcuts": "Tastatursnarveier",
|
"Keyboard shortcuts": "Tastatursnarveier",
|
||||||
|
@ -1583,6 +1559,32 @@
|
||||||
"No other application is using the webcam": "Ingen andre applikasjoner bruker webkameraet",
|
"No other application is using the webcam": "Ingen andre applikasjoner bruker webkameraet",
|
||||||
"A microphone and webcam are plugged in and set up correctly": "En mikrofon og webkamera er koblet til og satt opp riktig",
|
"A microphone and webcam are plugged in and set up correctly": "En mikrofon og webkamera er koblet til og satt opp riktig",
|
||||||
"Call failed because microphone could not be accessed. Check that a microphone is plugged in and set up correctly.": "Samtalen mislyktes fordi mikrofonen ikke var tilgjengelig. Sjekk at en mikrofon er koblet til og satt opp riktig.",
|
"Call failed because microphone could not be accessed. Check that a microphone is plugged in and set up correctly.": "Samtalen mislyktes fordi mikrofonen ikke var tilgjengelig. Sjekk at en mikrofon er koblet til og satt opp riktig.",
|
||||||
|
"common": {
|
||||||
|
"about": "Om",
|
||||||
|
"analytics": "Statistikk",
|
||||||
|
"encryption_enabled": "Kryptering er skrudd på",
|
||||||
|
"error": "Feil",
|
||||||
|
"forward_message": "Videresend melding",
|
||||||
|
"image": "Bilde",
|
||||||
|
"message": "Melding",
|
||||||
|
"modern": "Moderne",
|
||||||
|
"mute": "Demp",
|
||||||
|
"no_results": "Ingen treff",
|
||||||
|
"offline": "Frakoblet",
|
||||||
|
"password": "Passord",
|
||||||
|
"people": "Folk",
|
||||||
|
"reactions": "Reaksjoner",
|
||||||
|
"report_a_bug": "Rapporter en feil",
|
||||||
|
"room_name": "Rommets navn",
|
||||||
|
"security": "Sikkerhet",
|
||||||
|
"settings": "Innstillinger",
|
||||||
|
"sticker": "Klistremerke",
|
||||||
|
"success": "Vellykket",
|
||||||
|
"suggestions": "Forslag",
|
||||||
|
"unmute": "Opphev demp",
|
||||||
|
"username": "Brukernavn",
|
||||||
|
"verification_cancelled": "Verifiseringen ble avbrutt"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Brukermeny"
|
"user_menu": "Brukermeny"
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,15 +42,12 @@
|
||||||
"Close": "Sluiten",
|
"Close": "Sluiten",
|
||||||
"Create new room": "Nieuwe kamer aanmaken",
|
"Create new room": "Nieuwe kamer aanmaken",
|
||||||
"Dismiss": "Sluiten",
|
"Dismiss": "Sluiten",
|
||||||
"Error": "Fout",
|
|
||||||
"Failed to forget room %(errCode)s": "Vergeten van kamer is mislukt %(errCode)s",
|
"Failed to forget room %(errCode)s": "Vergeten van kamer is mislukt %(errCode)s",
|
||||||
"Favourite": "Favoriet",
|
"Favourite": "Favoriet",
|
||||||
"Mute": "Dempen",
|
|
||||||
"Notifications": "Meldingen",
|
"Notifications": "Meldingen",
|
||||||
"Operation failed": "Handeling is mislukt",
|
"Operation failed": "Handeling is mislukt",
|
||||||
"powered by Matrix": "draait op Matrix",
|
"powered by Matrix": "draait op Matrix",
|
||||||
"Remove": "Verwijderen",
|
"Remove": "Verwijderen",
|
||||||
"Settings": "Instellingen",
|
|
||||||
"Start chat": "Gesprek beginnen",
|
"Start chat": "Gesprek beginnen",
|
||||||
"unknown error code": "onbekende foutcode",
|
"unknown error code": "onbekende foutcode",
|
||||||
"Search": "Zoeken",
|
"Search": "Zoeken",
|
||||||
|
@ -62,9 +59,7 @@
|
||||||
"<not supported>": "<niet ondersteund>",
|
"<not supported>": "<niet ondersteund>",
|
||||||
"No display name": "Geen weergavenaam",
|
"No display name": "Geen weergavenaam",
|
||||||
"No more results": "Geen resultaten meer",
|
"No more results": "Geen resultaten meer",
|
||||||
"No results": "Geen resultaten",
|
|
||||||
"No users have specific privileges in this room": "Geen enkele persoon heeft specifieke bevoegdheden in deze kamer",
|
"No users have specific privileges in this room": "Geen enkele persoon heeft specifieke bevoegdheden in deze kamer",
|
||||||
"Password": "Wachtwoord",
|
|
||||||
"Passwords can't be empty": "Wachtwoorden kunnen niet leeg zijn",
|
"Passwords can't be empty": "Wachtwoorden kunnen niet leeg zijn",
|
||||||
"Permissions": "Rechten",
|
"Permissions": "Rechten",
|
||||||
"Phone": "Telefoonnummer",
|
"Phone": "Telefoonnummer",
|
||||||
|
@ -75,7 +70,6 @@
|
||||||
"Reject invitation": "Uitnodiging weigeren",
|
"Reject invitation": "Uitnodiging weigeren",
|
||||||
"Start authentication": "Authenticatie starten",
|
"Start authentication": "Authenticatie starten",
|
||||||
"Submit": "Bevestigen",
|
"Submit": "Bevestigen",
|
||||||
"Success": "Klaar",
|
|
||||||
"Sun": "Zo",
|
"Sun": "Zo",
|
||||||
"Mon": "Ma",
|
"Mon": "Ma",
|
||||||
"Tue": "Di",
|
"Tue": "Di",
|
||||||
|
@ -200,7 +194,6 @@
|
||||||
"Unable to verify email address.": "Kan e-mailadres niet verifiëren.",
|
"Unable to verify email address.": "Kan e-mailadres niet verifiëren.",
|
||||||
"Unban": "Ontbannen",
|
"Unban": "Ontbannen",
|
||||||
"Unable to enable Notifications": "Kan meldingen niet inschakelen",
|
"Unable to enable Notifications": "Kan meldingen niet inschakelen",
|
||||||
"Unmute": "Niet dempen",
|
|
||||||
"Unnamed Room": "Naamloze Kamer",
|
"Unnamed Room": "Naamloze Kamer",
|
||||||
"Uploading %(filename)s": "%(filename)s wordt geüpload",
|
"Uploading %(filename)s": "%(filename)s wordt geüpload",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
|
@ -238,7 +231,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "Nieuw wachtwoord",
|
"New Password": "Nieuw wachtwoord",
|
||||||
"Start automatically after system login": "Automatisch starten na systeemlogin",
|
"Start automatically after system login": "Automatisch starten na systeemlogin",
|
||||||
"Analytics": "Gebruiksgegevens",
|
|
||||||
"Options": "Opties",
|
"Options": "Opties",
|
||||||
"Passphrases must match": "Wachtwoorden moeten overeenkomen",
|
"Passphrases must match": "Wachtwoorden moeten overeenkomen",
|
||||||
"Passphrase must not be empty": "Wachtwoord mag niet leeg zijn",
|
"Passphrase must not be empty": "Wachtwoord mag niet leeg zijn",
|
||||||
|
@ -267,7 +259,6 @@
|
||||||
"Drop file here to upload": "Versleep het bestand naar hier om het te uploaden",
|
"Drop file here to upload": "Versleep het bestand naar hier om het te uploaden",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Idle": "Afwezig",
|
"Idle": "Afwezig",
|
||||||
"Offline": "Offline",
|
|
||||||
"Check for update": "Controleren op updates",
|
"Check for update": "Controleren op updates",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s heeft de kamerafbeelding aangepast naar <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s heeft de kamerafbeelding aangepast naar <img/>",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s heeft de kamerafbeelding verwijderd.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s heeft de kamerafbeelding verwijderd.",
|
||||||
|
@ -802,7 +793,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:",
|
||||||
"Username": "Inlognaam",
|
|
||||||
"Change": "Wijzigen",
|
"Change": "Wijzigen",
|
||||||
"Email (optional)": "E-mailadres (optioneel)",
|
"Email (optional)": "E-mailadres (optioneel)",
|
||||||
"Phone (optional)": "Telefoonnummer (optioneel)",
|
"Phone (optional)": "Telefoonnummer (optioneel)",
|
||||||
|
@ -1301,7 +1291,6 @@
|
||||||
"Hide sessions": "Sessies verbergen",
|
"Hide sessions": "Sessies verbergen",
|
||||||
"This client does not support end-to-end encryption.": "Deze cliënt biedt geen ondersteuning voor eind-tot-eind-versleuteling.",
|
"This client does not support end-to-end encryption.": "Deze cliënt biedt geen ondersteuning voor eind-tot-eind-versleuteling.",
|
||||||
"Messages in this room are not end-to-end encrypted.": "De berichten in deze kamer worden niet eind-tot-eind-versleuteld.",
|
"Messages in this room are not end-to-end encrypted.": "De berichten in deze kamer worden niet eind-tot-eind-versleuteld.",
|
||||||
"Security": "Beveiliging",
|
|
||||||
"Verify by scanning": "Verifiëren met scan",
|
"Verify by scanning": "Verifiëren met scan",
|
||||||
"Ask %(displayName)s to scan your code:": "Vraag %(displayName)s om jouw code te scannen:",
|
"Ask %(displayName)s to scan your code:": "Vraag %(displayName)s om jouw code te scannen:",
|
||||||
"Verify by emoji": "Verifiëren met emoji",
|
"Verify by emoji": "Verifiëren met emoji",
|
||||||
|
@ -1309,7 +1298,6 @@
|
||||||
"Verify by comparing unique emoji.": "Verifieer door unieke emoji te vergelijken.",
|
"Verify by comparing unique emoji.": "Verifieer door unieke emoji te vergelijken.",
|
||||||
"You've successfully verified %(displayName)s!": "Je hebt %(displayName)s geverifieerd!",
|
"You've successfully verified %(displayName)s!": "Je hebt %(displayName)s geverifieerd!",
|
||||||
"Got it": "Ik snap het",
|
"Got it": "Ik snap het",
|
||||||
"Encryption enabled": "Versleuteling ingeschakeld",
|
|
||||||
"Encryption not enabled": "Versleuteling niet ingeschakeld",
|
"Encryption not enabled": "Versleuteling niet ingeschakeld",
|
||||||
"The encryption used by this room isn't supported.": "De versleuteling gebruikt in deze kamer wordt niet ondersteund.",
|
"The encryption used by this room isn't supported.": "De versleuteling gebruikt in deze kamer wordt niet ondersteund.",
|
||||||
"React": "Reageren",
|
"React": "Reageren",
|
||||||
|
@ -1326,7 +1314,6 @@
|
||||||
"%(name)s cancelled": "%(name)s heeft geannuleerd",
|
"%(name)s cancelled": "%(name)s heeft geannuleerd",
|
||||||
"%(name)s wants to verify": "%(name)s wil verifiëren",
|
"%(name)s wants to verify": "%(name)s wil verifiëren",
|
||||||
"You sent a verification request": "Je hebt een verificatieverzoek verstuurd",
|
"You sent a verification request": "Je hebt een verificatieverzoek verstuurd",
|
||||||
"Reactions": "Reacties",
|
|
||||||
"Frequently Used": "Vaak gebruikt",
|
"Frequently Used": "Vaak gebruikt",
|
||||||
"Smileys & People": "Smileys & Personen",
|
"Smileys & People": "Smileys & Personen",
|
||||||
"Animals & Nature": "Dieren en natuur",
|
"Animals & Nature": "Dieren en natuur",
|
||||||
|
@ -1369,7 +1356,6 @@
|
||||||
"Failed to find the following users": "Kon volgende personen niet vinden",
|
"Failed to find the following users": "Kon volgende personen niet vinden",
|
||||||
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Volgende personen bestaan mogelijk niet of zijn ongeldig, en kunnen niet uitgenodigd worden: %(csvNames)s",
|
"The following users might not exist or are invalid, and cannot be invited: %(csvNames)s": "Volgende personen bestaan mogelijk niet of zijn ongeldig, en kunnen niet uitgenodigd worden: %(csvNames)s",
|
||||||
"Recent Conversations": "Recente gesprekken",
|
"Recent Conversations": "Recente gesprekken",
|
||||||
"Suggestions": "Suggesties",
|
|
||||||
"Recently Direct Messaged": "Recente directe gesprekken",
|
"Recently Direct Messaged": "Recente directe gesprekken",
|
||||||
"Go": "Start",
|
"Go": "Start",
|
||||||
"Upgrade private room": "Privékamer upgraden",
|
"Upgrade private room": "Privékamer upgraden",
|
||||||
|
@ -1445,7 +1431,6 @@
|
||||||
"Ok": "Oké",
|
"Ok": "Oké",
|
||||||
"Light": "Helder",
|
"Light": "Helder",
|
||||||
"Dark": "Donker",
|
"Dark": "Donker",
|
||||||
"People": "Personen",
|
|
||||||
"Unable to access microphone": "Je microfoon lijkt niet beschikbaar",
|
"Unable to access microphone": "Je microfoon lijkt niet beschikbaar",
|
||||||
"The call was answered on another device.": "De oproep werd op een ander toestel beantwoord.",
|
"The call was answered on another device.": "De oproep werd op een ander toestel beantwoord.",
|
||||||
"Answered Elsewhere": "Ergens anders beantwoord",
|
"Answered Elsewhere": "Ergens anders beantwoord",
|
||||||
|
@ -1486,7 +1471,6 @@
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Activity": "Activiteit",
|
"Activity": "Activiteit",
|
||||||
"Sort by": "Sorteer op",
|
"Sort by": "Sorteer op",
|
||||||
"Verification cancelled": "Verificatie geannuleerd",
|
|
||||||
"You cancelled verification.": "Je hebt de verificatie geannuleerd.",
|
"You cancelled verification.": "Je hebt de verificatie geannuleerd.",
|
||||||
"%(displayName)s cancelled verification.": "%(displayName)s heeft de verificatie geannuleerd.",
|
"%(displayName)s cancelled verification.": "%(displayName)s heeft de verificatie geannuleerd.",
|
||||||
"Verification timed out.": "Verificatie verlopen.",
|
"Verification timed out.": "Verificatie verlopen.",
|
||||||
|
@ -1767,7 +1751,6 @@
|
||||||
"Privacy": "Privacy",
|
"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",
|
||||||
"Modern": "Modern",
|
|
||||||
"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",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Aangepaste lettergrootte kan alleen een getal tussen %(min)s pt en %(max)s pt zijn",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Aangepaste lettergrootte kan alleen een getal tussen %(min)s pt en %(max)s pt zijn",
|
||||||
"Size must be a number": "Grootte moet een getal zijn",
|
"Size must be a number": "Grootte moet een getal zijn",
|
||||||
|
@ -1851,7 +1834,6 @@
|
||||||
"You've successfully verified your device!": "Je hebt je apparaat geverifieerd!",
|
"You've successfully verified your device!": "Je hebt je apparaat geverifieerd!",
|
||||||
"Almost there! Is %(displayName)s showing the same shield?": "Bijna klaar! Toont %(displayName)s hetzelfde schild?",
|
"Almost there! Is %(displayName)s showing the same shield?": "Bijna klaar! Toont %(displayName)s hetzelfde schild?",
|
||||||
"Room settings": "Kamerinstellingen",
|
"Room settings": "Kamerinstellingen",
|
||||||
"About": "Over",
|
|
||||||
"Not encrypted": "Niet versleuteld",
|
"Not encrypted": "Niet versleuteld",
|
||||||
"Widgets": "Widgets",
|
"Widgets": "Widgets",
|
||||||
"Unpin": "Losmaken",
|
"Unpin": "Losmaken",
|
||||||
|
@ -1880,7 +1862,6 @@
|
||||||
"Invite by email": "Via e-mail uitnodigen",
|
"Invite by email": "Via e-mail uitnodigen",
|
||||||
"Click the button below to confirm your identity.": "Druk op de knop hieronder om je identiteit te bevestigen.",
|
"Click the button below to confirm your identity.": "Druk op de knop hieronder om je identiteit te bevestigen.",
|
||||||
"Confirm to continue": "Bevestig om door te gaan",
|
"Confirm to continue": "Bevestig om door te gaan",
|
||||||
"Report a bug": "Een bug rapporteren",
|
|
||||||
"Comment": "Opmerking",
|
"Comment": "Opmerking",
|
||||||
"Active Widgets": "Ingeschakelde widgets",
|
"Active Widgets": "Ingeschakelde widgets",
|
||||||
"Manually verify all remote sessions": "Handmatig alle externe sessies verifiëren",
|
"Manually verify all remote sessions": "Handmatig alle externe sessies verifiëren",
|
||||||
|
@ -2146,7 +2127,6 @@
|
||||||
"Room ID or address of ban list": "Kamer-ID of het adres van de banlijst",
|
"Room ID or address of ban list": "Kamer-ID of het adres van de banlijst",
|
||||||
"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.": "Voeg hier personen en servers toe die je wil negeren. Gebruik asterisken om %(brand)s met alle tekens te laten overeenkomen. Bijvoorbeeld, <code>@bot:*</code> zou alle personen negeren die de naam 'bot' hebben op elke server.",
|
"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.": "Voeg hier personen en servers toe die je wil negeren. Gebruik asterisken om %(brand)s met alle tekens te laten overeenkomen. Bijvoorbeeld, <code>@bot:*</code> zou alle personen negeren die de naam 'bot' hebben op elke server.",
|
||||||
"Please verify the room ID or address and try again.": "Controleer het kamer-ID of het adres en probeer het opnieuw.",
|
"Please verify the room ID or address and try again.": "Controleer het kamer-ID of het adres en probeer het opnieuw.",
|
||||||
"Message layout": "Berichtlayout",
|
|
||||||
"Custom theme URL": "Aangepaste thema-URL",
|
"Custom theme URL": "Aangepaste thema-URL",
|
||||||
"Error downloading theme information.": "Fout bij het downloaden van de thema-informatie.",
|
"Error downloading theme information.": "Fout bij het downloaden van de thema-informatie.",
|
||||||
"Invalid theme schema.": "Ongeldig themaschema.",
|
"Invalid theme schema.": "Ongeldig themaschema.",
|
||||||
|
@ -2214,7 +2194,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",
|
||||||
"Room name": "Kamernaam",
|
|
||||||
"Support": "Ondersteuning",
|
"Support": "Ondersteuning",
|
||||||
"Random": "Willekeurig",
|
"Random": "Willekeurig",
|
||||||
"Welcome to <name/>": "Welkom in <name/>",
|
"Welcome to <name/>": "Welkom in <name/>",
|
||||||
|
@ -2388,7 +2367,6 @@
|
||||||
"Some suggestions may be hidden for privacy.": "Sommige suggesties kunnen om privacyredenen verborgen zijn.",
|
"Some suggestions may be hidden for privacy.": "Sommige suggesties kunnen om privacyredenen verborgen zijn.",
|
||||||
"Search for rooms or people": "Zoek naar kamers of personen",
|
"Search for rooms or people": "Zoek naar kamers of personen",
|
||||||
"Message preview": "Voorbeeld van bericht",
|
"Message preview": "Voorbeeld van bericht",
|
||||||
"Forward message": "Bericht doorsturen",
|
|
||||||
"Sent": "Verstuurd",
|
"Sent": "Verstuurd",
|
||||||
"You don't have permission to do this": "Je hebt geen rechten om dit te doen",
|
"You don't have permission to do this": "Je hebt geen rechten om dit te doen",
|
||||||
"Error - Mixed content": "Fout - Gemengde inhoud",
|
"Error - Mixed content": "Fout - Gemengde inhoud",
|
||||||
|
@ -2532,8 +2510,6 @@
|
||||||
"Private (invite only)": "Privé (alleen op uitnodiging)",
|
"Private (invite only)": "Privé (alleen op uitnodiging)",
|
||||||
"This upgrade will allow members of selected spaces access to this room without an invite.": "Deze upgrade maakt het mogelijk voor leden van geselecteerde spaces om toegang te krijgen tot deze kamer zonder een uitnodiging.",
|
"This upgrade will allow members of selected spaces access to this room without an invite.": "Deze upgrade maakt het mogelijk voor leden van geselecteerde spaces om toegang te krijgen tot deze kamer zonder een uitnodiging.",
|
||||||
"Everyone in <SpaceName/> will be able to find and join this room.": "Iedereen in <SpaceName/> kan deze kamer vinden en aan deelnemen.",
|
"Everyone in <SpaceName/> will be able to find and join this room.": "Iedereen in <SpaceName/> kan deze kamer vinden en aan deelnemen.",
|
||||||
"Image": "Afbeelding",
|
|
||||||
"Sticker": "Sticker",
|
|
||||||
"Access": "Toegang",
|
"Access": "Toegang",
|
||||||
"People with supported clients will be able to join the room without having a registered account.": "Personen met geschikte apps zullen aan de kamer kunnen deelnemen zonder een account te hebben.",
|
"People with supported clients will be able to join the room without having a registered account.": "Personen met geschikte apps zullen aan de kamer kunnen deelnemen zonder een account te hebben.",
|
||||||
"Decide who can join %(roomName)s.": "Kies wie kan deelnemen aan %(roomName)s.",
|
"Decide who can join %(roomName)s.": "Kies wie kan deelnemen aan %(roomName)s.",
|
||||||
|
@ -2638,7 +2614,6 @@
|
||||||
"Change space avatar": "Space-afbeelding wijzigen",
|
"Change space avatar": "Space-afbeelding wijzigen",
|
||||||
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Iedereen in <spaceName/> kan hem vinden en deelnemen. Je kan ook andere spaces selecteren.",
|
"Anyone in <spaceName/> can find and join. You can select other spaces too.": "Iedereen in <spaceName/> kan hem vinden en deelnemen. Je kan ook andere spaces selecteren.",
|
||||||
"Message didn't send. Click for info.": "Bericht is niet verstuur. Klik voor meer info.",
|
"Message didn't send. Click for info.": "Bericht is niet verstuur. Klik voor meer info.",
|
||||||
"Message": "Bericht",
|
|
||||||
"To join a space you'll need an invite.": "Om te kunnen deelnemen aan een space heb je een uitnodiging nodig.",
|
"To join a space you'll need an invite.": "Om te kunnen deelnemen aan een space heb je een uitnodiging nodig.",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s reageerde met %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s reageerde met %(content)s",
|
||||||
"Would you like to leave the rooms in this space?": "Wil je de kamers verlaten in deze Space?",
|
"Would you like to leave the rooms in this space?": "Wil je de kamers verlaten in deze Space?",
|
||||||
|
@ -3154,7 +3129,6 @@
|
||||||
"one": "1 deelnemer",
|
"one": "1 deelnemer",
|
||||||
"other": "%(count)s deelnemers"
|
"other": "%(count)s deelnemers"
|
||||||
},
|
},
|
||||||
"Video": "Video",
|
|
||||||
"%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s is geretourneerd tijdens een poging om toegang te krijgen tot de kamer of space. Als je denkt dat je dit bericht ten onrechte ziet, <issueLink>dien dan een bugrapport in</issueLink>.",
|
"%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s is geretourneerd tijdens een poging om toegang te krijgen tot de kamer of space. Als je denkt dat je dit bericht ten onrechte ziet, <issueLink>dien dan een bugrapport in</issueLink>.",
|
||||||
"Try again later, or ask a room or space admin to check if you have access.": "Probeer het later opnieuw of vraag een kamer- of space beheerder om te controleren of je toegang hebt.",
|
"Try again later, or ask a room or space admin to check if you have access.": "Probeer het later opnieuw of vraag een kamer- of space beheerder om te controleren of je toegang hebt.",
|
||||||
"This room or space is not accessible at this time.": "Deze kamer of space is op dit moment niet toegankelijk.",
|
"This room or space is not accessible at this time.": "Deze kamer of space is op dit moment niet toegankelijk.",
|
||||||
|
@ -3577,6 +3551,34 @@
|
||||||
"Video call started in %(roomName)s. (not supported by this browser)": "Videogesprek gestart in %(roomName)s. (niet ondersteund door deze browser)",
|
"Video call started in %(roomName)s. (not supported by this browser)": "Videogesprek gestart in %(roomName)s. (niet ondersteund door deze browser)",
|
||||||
"Video call started in %(roomName)s.": "Videogesprek gestart in %(roomName)s.",
|
"Video call started in %(roomName)s.": "Videogesprek gestart in %(roomName)s.",
|
||||||
"You need to be able to kick users to do that.": "U moet in staat zijn om gebruikers te verwijderen om dit te doen.",
|
"You need to be able to kick users to do that.": "U moet in staat zijn om gebruikers te verwijderen om dit te doen.",
|
||||||
|
"common": {
|
||||||
|
"about": "Over",
|
||||||
|
"analytics": "Gebruiksgegevens",
|
||||||
|
"encryption_enabled": "Versleuteling ingeschakeld",
|
||||||
|
"error": "Fout",
|
||||||
|
"forward_message": "Bericht doorsturen",
|
||||||
|
"image": "Afbeelding",
|
||||||
|
"message": "Bericht",
|
||||||
|
"message_layout": "Berichtlayout",
|
||||||
|
"modern": "Modern",
|
||||||
|
"mute": "Dempen",
|
||||||
|
"no_results": "Geen resultaten",
|
||||||
|
"offline": "Offline",
|
||||||
|
"password": "Wachtwoord",
|
||||||
|
"people": "Personen",
|
||||||
|
"reactions": "Reacties",
|
||||||
|
"report_a_bug": "Een bug rapporteren",
|
||||||
|
"room_name": "Kamernaam",
|
||||||
|
"security": "Beveiliging",
|
||||||
|
"settings": "Instellingen",
|
||||||
|
"sticker": "Sticker",
|
||||||
|
"success": "Klaar",
|
||||||
|
"suggestions": "Suggesties",
|
||||||
|
"unmute": "Niet dempen",
|
||||||
|
"username": "Inlognaam",
|
||||||
|
"verification_cancelled": "Verificatie geannuleerd",
|
||||||
|
"video": "Video"
|
||||||
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Persoonsmenu"
|
"user_menu": "Persoonsmenu"
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,6 @@
|
||||||
"Define the power level of a user": "Sett tilgangsnivået til ein brukar",
|
"Define the power level of a user": "Sett tilgangsnivået til ein brukar",
|
||||||
"This email address is already in use": "Denne e-postadressa er allereie i bruk",
|
"This email address is already in use": "Denne e-postadressa er allereie i bruk",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Fekk ikkje til å stadfesta e-postadressa: sjå til at du klikka på den rette lenkja i e-posten",
|
"Failed to verify email address: make sure you clicked the link in the email": "Fekk ikkje til å stadfesta e-postadressa: sjå til at du klikka på den rette lenkja i e-posten",
|
||||||
"Analytics": "Statistikk",
|
|
||||||
"Deops user with given id": "AvOPar brukarar med den gjevne IDen",
|
"Deops user with given id": "AvOPar brukarar med den gjevne IDen",
|
||||||
"Opens the Developer Tools dialog": "Opnar Utviklarverktøy-tekstboksen",
|
"Opens the Developer Tools dialog": "Opnar Utviklarverktøy-tekstboksen",
|
||||||
"Verified key": "Godkjend nøkkel",
|
"Verified key": "Godkjend nøkkel",
|
||||||
|
@ -116,7 +115,6 @@
|
||||||
"Messages sent by bot": "Meldingar sendt frå ein bot",
|
"Messages sent by bot": "Meldingar sendt frå ein bot",
|
||||||
"Decline": "Sei nei",
|
"Decline": "Sei nei",
|
||||||
"Accept": "Sei ja",
|
"Accept": "Sei ja",
|
||||||
"Error": "Noko gjekk gale",
|
|
||||||
"Incorrect verification code": "Urett stadfestingskode",
|
"Incorrect verification code": "Urett stadfestingskode",
|
||||||
"Submit": "Send inn",
|
"Submit": "Send inn",
|
||||||
"Phone": "Telefon",
|
"Phone": "Telefon",
|
||||||
|
@ -128,7 +126,6 @@
|
||||||
"Continue": "Fortset",
|
"Continue": "Fortset",
|
||||||
"Do you want to set an email address?": "Vil du setja ei epostadresse?",
|
"Do you want to set an email address?": "Vil du setja ei epostadresse?",
|
||||||
"Current password": "Gjeldande passord",
|
"Current password": "Gjeldande passord",
|
||||||
"Password": "Passord",
|
|
||||||
"New Password": "Nytt passord",
|
"New Password": "Nytt passord",
|
||||||
"Confirm password": "Stadfest passord",
|
"Confirm password": "Stadfest passord",
|
||||||
"Change Password": "Endra passord",
|
"Change Password": "Endra passord",
|
||||||
|
@ -158,8 +155,6 @@
|
||||||
"Invite": "Inviter",
|
"Invite": "Inviter",
|
||||||
"Enable inline URL previews by default": "Skru URL-førehandsvising i tekstfeltet på",
|
"Enable inline URL previews by default": "Skru URL-førehandsvising i tekstfeltet på",
|
||||||
"Share Link to User": "Del ei lenke til brukaren",
|
"Share Link to User": "Del ei lenke til brukaren",
|
||||||
"Unmute": "Fjern demping",
|
|
||||||
"Mute": "Demp",
|
|
||||||
"Admin Tools": "Administratorverktøy",
|
"Admin Tools": "Administratorverktøy",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
"other": "og %(count)s andre...",
|
"other": "og %(count)s andre...",
|
||||||
|
@ -187,7 +182,6 @@
|
||||||
"Unknown for %(duration)s": "Ukjend i %(duration)s",
|
"Unknown for %(duration)s": "Ukjend i %(duration)s",
|
||||||
"Online": "Tilkopla",
|
"Online": "Tilkopla",
|
||||||
"Idle": "Fråverande",
|
"Idle": "Fråverande",
|
||||||
"Offline": "Fråkopla",
|
|
||||||
"Unknown": "Ukjend",
|
"Unknown": "Ukjend",
|
||||||
"Replying": "Svarar",
|
"Replying": "Svarar",
|
||||||
"Unnamed room": "Rom utan namn",
|
"Unnamed room": "Rom utan namn",
|
||||||
|
@ -198,7 +192,6 @@
|
||||||
},
|
},
|
||||||
"Join Room": "Bli med i rom",
|
"Join Room": "Bli med i rom",
|
||||||
"Upload avatar": "Last avatar opp",
|
"Upload avatar": "Last avatar opp",
|
||||||
"Settings": "Innstillingar",
|
|
||||||
"Forget room": "Gløym rom",
|
"Forget room": "Gløym rom",
|
||||||
"Search": "Søk",
|
"Search": "Søk",
|
||||||
"Share room": "Del rom",
|
"Share room": "Del rom",
|
||||||
|
@ -285,7 +278,6 @@
|
||||||
"Delete widget": "Slett widgeten",
|
"Delete widget": "Slett widgeten",
|
||||||
"Edit": "Gjer om",
|
"Edit": "Gjer om",
|
||||||
"Create new room": "Lag nytt rom",
|
"Create new room": "Lag nytt rom",
|
||||||
"No results": "Ingen resultat",
|
|
||||||
"Home": "Heim",
|
"Home": "Heim",
|
||||||
"%(severalUsers)sjoined %(count)s times": {
|
"%(severalUsers)sjoined %(count)s times": {
|
||||||
"other": "%(severalUsers)s har kome inn %(count)s gonger",
|
"other": "%(severalUsers)s har kome inn %(count)s gonger",
|
||||||
|
@ -470,7 +462,6 @@
|
||||||
"one": "Lastar opp %(filename)s og %(count)s andre"
|
"one": "Lastar opp %(filename)s og %(count)s andre"
|
||||||
},
|
},
|
||||||
"Uploading %(filename)s": "Lastar opp %(filename)s",
|
"Uploading %(filename)s": "Lastar opp %(filename)s",
|
||||||
"Success": "Suksess",
|
|
||||||
"Unable to remove contact information": "Klarte ikkje å fjerna kontaktinfo",
|
"Unable to remove contact information": "Klarte ikkje å fjerna kontaktinfo",
|
||||||
"<not supported>": "<ikkje støtta>",
|
"<not supported>": "<ikkje støtta>",
|
||||||
"Import E2E room keys": "Hent E2E-romnøklar inn",
|
"Import E2E room keys": "Hent E2E-romnøklar inn",
|
||||||
|
@ -917,9 +908,7 @@
|
||||||
"You'll lose access to your encrypted messages": "Du vil miste tilgangen til dine krypterte meldingar",
|
"You'll lose access to your encrypted messages": "Du vil miste tilgangen til dine krypterte meldingar",
|
||||||
"Join millions for free on the largest public server": "Kom ihop med millionar av andre på den største offentlege tenaren",
|
"Join millions for free on the largest public server": "Kom ihop med millionar av andre på den største offentlege tenaren",
|
||||||
"Show rooms with unread messages first": "Vis rom med ulesne meldingar fyrst",
|
"Show rooms with unread messages first": "Vis rom med ulesne meldingar fyrst",
|
||||||
"People": "Folk",
|
|
||||||
"Always show the window menu bar": "Vis alltid menyfeltet i toppen av vindauget",
|
"Always show the window menu bar": "Vis alltid menyfeltet i toppen av vindauget",
|
||||||
"Report a bug": "Send inn feilrapport",
|
|
||||||
"Feedback": "Tilbakemeldingar",
|
"Feedback": "Tilbakemeldingar",
|
||||||
"All settings": "Alle innstillingar",
|
"All settings": "Alle innstillingar",
|
||||||
"Delete Backup": "Slett sikkerheitskopi",
|
"Delete Backup": "Slett sikkerheitskopi",
|
||||||
|
@ -1009,9 +998,7 @@
|
||||||
"Messages containing keywords": "Meldingar som inneheld nøkkelord",
|
"Messages containing keywords": "Meldingar som inneheld nøkkelord",
|
||||||
"Mentions & keywords": "Nemningar & nøkkelord",
|
"Mentions & keywords": "Nemningar & nøkkelord",
|
||||||
"Enable email notifications for %(email)s": "Aktiver varsel på epost for %(email)s",
|
"Enable email notifications for %(email)s": "Aktiver varsel på epost for %(email)s",
|
||||||
"Modern": "Moderne",
|
|
||||||
"Message bubbles": "Snakkebobler",
|
"Message bubbles": "Snakkebobler",
|
||||||
"Message layout": "Utforming for meldingar",
|
|
||||||
"IRC (Experimental)": "IRC (eksperimentell)",
|
"IRC (Experimental)": "IRC (eksperimentell)",
|
||||||
"Keyboard shortcuts": "Tastatursnarvegar",
|
"Keyboard shortcuts": "Tastatursnarvegar",
|
||||||
"Keyboard": "Tastatur",
|
"Keyboard": "Tastatur",
|
||||||
|
@ -1092,5 +1079,20 @@
|
||||||
"%(value)sd": "%(value)sd",
|
"%(value)sd": "%(value)sd",
|
||||||
"%(seconds)ss left": "%(seconds)ss att",
|
"%(seconds)ss left": "%(seconds)ss att",
|
||||||
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss att",
|
"%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss att",
|
||||||
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)st %(minutes)sm %(seconds)ss att"
|
"%(hours)sh %(minutes)sm %(seconds)ss left": "%(hours)st %(minutes)sm %(seconds)ss att",
|
||||||
|
"common": {
|
||||||
|
"analytics": "Statistikk",
|
||||||
|
"error": "Noko gjekk gale",
|
||||||
|
"message_layout": "Utforming for meldingar",
|
||||||
|
"modern": "Moderne",
|
||||||
|
"mute": "Demp",
|
||||||
|
"no_results": "Ingen resultat",
|
||||||
|
"offline": "Fråkopla",
|
||||||
|
"password": "Passord",
|
||||||
|
"people": "Folk",
|
||||||
|
"report_a_bug": "Send inn feilrapport",
|
||||||
|
"settings": "Innstillingar",
|
||||||
|
"success": "Suksess",
|
||||||
|
"unmute": "Fjern demping"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue