Create more common_*
common strings (#11439)
This commit is contained in:
parent
df4a2218d7
commit
aa6e3654b8
106 changed files with 1121 additions and 1069 deletions
|
@ -536,7 +536,7 @@ export default class ContentMessages {
|
||||||
replyToEvent: MatrixEvent | undefined,
|
replyToEvent: MatrixEvent | undefined,
|
||||||
promBefore?: Promise<any>,
|
promBefore?: Promise<any>,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const fileName = file.name || _t("Attachment");
|
const fileName = file.name || _t("common|attachment");
|
||||||
const content: Omit<IMediaEventContent, "info"> & { info: Partial<IMediaEventInfo> } = {
|
const content: Omit<IMediaEventContent, "info"> & { info: Partial<IMediaEventInfo> } = {
|
||||||
body: fileName,
|
body: fileName,
|
||||||
info: {
|
info: {
|
||||||
|
|
|
@ -233,7 +233,7 @@ export const CATEGORIES: Record<CategoryName, ICategory> = {
|
||||||
settingNames: [KeyBindingAction.ToggleMicInCall, KeyBindingAction.ToggleWebcamInCall],
|
settingNames: [KeyBindingAction.ToggleMicInCall, KeyBindingAction.ToggleWebcamInCall],
|
||||||
},
|
},
|
||||||
[CategoryName.ROOM]: {
|
[CategoryName.ROOM]: {
|
||||||
categoryLabel: _td("Room"),
|
categoryLabel: _td("common|room"),
|
||||||
settingNames: [
|
settingNames: [
|
||||||
KeyBindingAction.SearchInRoom,
|
KeyBindingAction.SearchInRoom,
|
||||||
KeyBindingAction.UploadFile,
|
KeyBindingAction.UploadFile,
|
||||||
|
@ -303,7 +303,7 @@ export const CATEGORIES: Record<CategoryName, ICategory> = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
[CategoryName.LABS]: {
|
[CategoryName.LABS]: {
|
||||||
categoryLabel: _td("Labs"),
|
categoryLabel: _td("common|labs"),
|
||||||
settingNames: [KeyBindingAction.ToggleHiddenEventVisibility],
|
settingNames: [KeyBindingAction.ToggleHiddenEventVisibility],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -256,7 +256,7 @@ export const RoomSearchView = forwardRef<ScrollPanel, Props>(
|
||||||
ret.push(
|
ret.push(
|
||||||
<li key={mxEv.getId() + "-room"}>
|
<li key={mxEv.getId() + "-room"}>
|
||||||
<h2>
|
<h2>
|
||||||
{_t("Room")}: {room.name}
|
{_t("common|room")}: {room.name}
|
||||||
</h2>
|
</h2>
|
||||||
</li>,
|
</li>,
|
||||||
);
|
);
|
||||||
|
|
|
@ -112,7 +112,7 @@ export const ThreadPanelHeader: React.FC<{
|
||||||
return (
|
return (
|
||||||
<div className="mx_BaseCard_header_title">
|
<div className="mx_BaseCard_header_title">
|
||||||
<Heading size="4" className="mx_BaseCard_header_title_heading">
|
<Heading size="4" className="mx_BaseCard_header_title_heading">
|
||||||
{_t("Threads")}
|
{_t("common|threads")}
|
||||||
</Heading>
|
</Heading>
|
||||||
{!empty && (
|
{!empty && (
|
||||||
<>
|
<>
|
||||||
|
|
|
@ -369,7 +369,7 @@ export default class ThreadView extends React.Component<IProps, IState> {
|
||||||
return (
|
return (
|
||||||
<div className="mx_BaseCard_header_title">
|
<div className="mx_BaseCard_header_title">
|
||||||
<Heading size="4" className="mx_BaseCard_header_title_heading">
|
<Heading size="4" className="mx_BaseCard_header_title_heading">
|
||||||
{_t("Thread")}
|
{_t("common|thread")}
|
||||||
</Heading>
|
</Heading>
|
||||||
<ThreadListContextMenu mxEvent={this.props.mxEvent} permalinkCreator={this.props.permalinkCreator} />
|
<ThreadListContextMenu mxEvent={this.props.mxEvent} permalinkCreator={this.props.permalinkCreator} />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -327,7 +327,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
|
||||||
homeButton = (
|
homeButton = (
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
iconClassName="mx_UserMenu_iconHome"
|
iconClassName="mx_UserMenu_iconHome"
|
||||||
label={_t("Home")}
|
label={_t("common|home")}
|
||||||
onClick={this.onHomeClick}
|
onClick={this.onHomeClick}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -61,12 +61,12 @@ export const BetaPill: React.FC<IBetaPillProps> = ({
|
||||||
}
|
}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
>
|
>
|
||||||
{_t("Beta")}
|
{_t("common|beta")}
|
||||||
</AccessibleTooltipButton>
|
</AccessibleTooltipButton>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <span className="mx_BetaCard_betaPill">{_t("Beta")}</span>;
|
return <span className="mx_BetaCard_betaPill">{_t("common|beta")}</span>;
|
||||||
};
|
};
|
||||||
|
|
||||||
const BetaCard: React.FC<IProps> = ({ title: titleOverride, featureId }) => {
|
const BetaCard: React.FC<IProps> = ({ title: titleOverride, featureId }) => {
|
||||||
|
|
|
@ -179,7 +179,7 @@ const SpaceContextMenu: React.FC<IProps> = ({ space, hideHeader, onFinished, ...
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
data-testid="new-room-option"
|
data-testid="new-room-option"
|
||||||
iconClassName="mx_SpacePanel_iconPlus"
|
iconClassName="mx_SpacePanel_iconPlus"
|
||||||
label={_t("Room")}
|
label={_t("common|room")}
|
||||||
onClick={onNewRoomClick}
|
onClick={onNewRoomClick}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -359,7 +359,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
|
||||||
<div className="mx_Dialog_content">
|
<div className="mx_Dialog_content">
|
||||||
<Field
|
<Field
|
||||||
ref={this.nameField}
|
ref={this.nameField}
|
||||||
label={_t("Name")}
|
label={_t("common|name")}
|
||||||
onChange={this.onNameChange}
|
onChange={this.onNameChange}
|
||||||
onValidate={this.onNameValidate}
|
onValidate={this.onNameValidate}
|
||||||
value={this.state.name}
|
value={this.state.name}
|
||||||
|
|
|
@ -41,7 +41,7 @@ enum Category {
|
||||||
}
|
}
|
||||||
|
|
||||||
const categoryLabels: Record<Category, TranslationKey> = {
|
const categoryLabels: Record<Category, TranslationKey> = {
|
||||||
[Category.Room]: _td("Room"),
|
[Category.Room]: _td("common|room"),
|
||||||
[Category.Other]: _td("Other"),
|
[Category.Other]: _td("Other"),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ const DevtoolsDialog: React.FC<IProps> = ({ roomId, threadRootId, onFinished })
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
<div>
|
<div>
|
||||||
<h3>{_t("Options")}</h3>
|
<h3>{_t("common|options")}</h3>
|
||||||
<SettingsFlag name="developerMode" level={SettingLevel.ACCOUNT} />
|
<SettingsFlag name="developerMode" level={SettingLevel.ACCOUNT} />
|
||||||
<SettingsFlag name="showHiddenEventsInTimeline" level={SettingLevel.DEVICE} />
|
<SettingsFlag name="showHiddenEventsInTimeline" level={SettingLevel.DEVICE} />
|
||||||
<SettingsFlag name="enableWidgetScreenshots" level={SettingLevel.ACCOUNT} />
|
<SettingsFlag name="enableWidgetScreenshots" level={SettingLevel.ACCOUNT} />
|
||||||
|
|
|
@ -304,7 +304,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
|
||||||
// Display cancel warning
|
// Display cancel warning
|
||||||
return (
|
return (
|
||||||
<BaseDialog
|
<BaseDialog
|
||||||
title={_t("Warning")}
|
title={_t("common|warning")}
|
||||||
className="mx_ExportDialog"
|
className="mx_ExportDialog"
|
||||||
contentId="mx_Dialog_content"
|
contentId="mx_Dialog_content"
|
||||||
onFinished={onFinished}
|
onFinished={onFinished}
|
||||||
|
|
|
@ -75,7 +75,7 @@ const SpacePreferencesDialog: React.FC<IProps> = ({ space, initialTabId, onFinis
|
||||||
const tabs: NonEmptyArray<Tab<SpacePreferenceTab>> = [
|
const tabs: NonEmptyArray<Tab<SpacePreferenceTab>> = [
|
||||||
new Tab(
|
new Tab(
|
||||||
SpacePreferenceTab.Appearance,
|
SpacePreferenceTab.Appearance,
|
||||||
_td("Appearance"),
|
_td("common|appearance"),
|
||||||
"mx_SpacePreferencesDialog_appearanceIcon",
|
"mx_SpacePreferencesDialog_appearanceIcon",
|
||||||
<SpacePreferencesAppearanceTab space={space} />,
|
<SpacePreferencesAppearanceTab space={space} />,
|
||||||
),
|
),
|
||||||
|
|
|
@ -86,7 +86,7 @@ export default class UserSettingsDialog extends React.Component<IProps, IState>
|
||||||
tabs.push(
|
tabs.push(
|
||||||
new Tab(
|
new Tab(
|
||||||
UserTab.Appearance,
|
UserTab.Appearance,
|
||||||
_td("Appearance"),
|
_td("common|appearance"),
|
||||||
"mx_UserSettingsDialog_appearanceIcon",
|
"mx_UserSettingsDialog_appearanceIcon",
|
||||||
<AppearanceUserSettingsTab />,
|
<AppearanceUserSettingsTab />,
|
||||||
"UserSettingsAppearance",
|
"UserSettingsAppearance",
|
||||||
|
@ -168,7 +168,7 @@ export default class UserSettingsDialog extends React.Component<IProps, IState>
|
||||||
tabs.push(
|
tabs.push(
|
||||||
new Tab(
|
new Tab(
|
||||||
UserTab.Labs,
|
UserTab.Labs,
|
||||||
_td("Labs"),
|
_td("common|labs"),
|
||||||
"mx_UserSettingsDialog_labsIcon",
|
"mx_UserSettingsDialog_labsIcon",
|
||||||
<LabsUserSettingsTab />,
|
<LabsUserSettingsTab />,
|
||||||
"UserSettingsLabs",
|
"UserSettingsLabs",
|
||||||
|
|
|
@ -785,7 +785,7 @@ export default class AppTile extends React.Component<IProps, IState> {
|
||||||
{this.state.hasContextMenuOptions && (
|
{this.state.hasContextMenuOptions && (
|
||||||
<ContextMenuButton
|
<ContextMenuButton
|
||||||
className="mx_AppTileMenuBar_widgets_button"
|
className="mx_AppTileMenuBar_widgets_button"
|
||||||
label={_t("Options")}
|
label={_t("common|options")}
|
||||||
isExpanded={this.state.menuDisplayed}
|
isExpanded={this.state.menuDisplayed}
|
||||||
inputRef={this.contextMenuButton}
|
inputRef={this.contextMenuButton}
|
||||||
onClick={this.onContextMenuClick}
|
onClick={this.onContextMenuClick}
|
||||||
|
|
|
@ -504,7 +504,7 @@ export default class ImageView extends React.Component<IProps, IState> {
|
||||||
contextMenuButton = (
|
contextMenuButton = (
|
||||||
<ContextMenuTooltipButton
|
<ContextMenuTooltipButton
|
||||||
className="mx_ImageView_button mx_ImageView_button_more"
|
className="mx_ImageView_button mx_ImageView_button_more"
|
||||||
title={_t("Options")}
|
title={_t("common|options")}
|
||||||
onClick={this.onOpenContextMenu}
|
onClick={this.onOpenContextMenu}
|
||||||
inputRef={this.contextMenuButton}
|
inputRef={this.contextMenuButton}
|
||||||
isExpanded={this.state.contextMenuDisplayed}
|
isExpanded={this.state.contextMenuDisplayed}
|
||||||
|
|
|
@ -95,9 +95,13 @@ const ServerPicker: React.FC<IProps> = ({ title, dialogTitle, serverConfig, onSe
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_ServerPicker">
|
<div className="mx_ServerPicker">
|
||||||
<h2>{title || _t("Homeserver")}</h2>
|
<h2>{title || _t("common|homeserver")}</h2>
|
||||||
{!disableCustomUrls ? (
|
{!disableCustomUrls ? (
|
||||||
<AccessibleButton className="mx_ServerPicker_help" onClick={onHelpClick} aria-label={_t("Help")} />
|
<AccessibleButton
|
||||||
|
className="mx_ServerPicker_help"
|
||||||
|
onClick={onHelpClick}
|
||||||
|
aria-label={_t("common|help")}
|
||||||
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
<span className="mx_ServerPicker_server" title={typeof serverName === "string" ? serverName : undefined}>
|
<span className="mx_ServerPicker_server" title={typeof serverName === "string" ? serverName : undefined}>
|
||||||
{serverName}
|
{serverName}
|
||||||
|
|
|
@ -133,7 +133,7 @@ export default class MFileBody extends React.Component<IProps, IState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
private get fileName(): string {
|
private get fileName(): string {
|
||||||
return this.content.body && this.content.body.length > 0 ? this.content.body : _t("Attachment");
|
return this.content.body && this.content.body.length > 0 ? this.content.body : _t("common|attachment");
|
||||||
}
|
}
|
||||||
|
|
||||||
private get linkText(): string {
|
private get linkText(): string {
|
||||||
|
@ -205,9 +205,9 @@ export default class MFileBody extends React.Component<IProps, IState> {
|
||||||
placeholder = (
|
placeholder = (
|
||||||
<AccessibleButton className="mx_MediaBody mx_MFileBody_info" onClick={this.onPlaceholderClick}>
|
<AccessibleButton className="mx_MediaBody mx_MFileBody_info" onClick={this.onPlaceholderClick}>
|
||||||
<span className="mx_MFileBody_info_icon" />
|
<span className="mx_MFileBody_info_icon" />
|
||||||
<TextWithTooltip tooltip={presentableTextForFile(this.content, _t("Attachment"), true)}>
|
<TextWithTooltip tooltip={presentableTextForFile(this.content, _t("common|attachment"), true)}>
|
||||||
<span className="mx_MFileBody_info_filename">
|
<span className="mx_MFileBody_info_filename">
|
||||||
{presentableTextForFile(this.content, _t("Attachment"), true, true)}
|
{presentableTextForFile(this.content, _t("common|attachment"), true, true)}
|
||||||
</span>
|
</span>
|
||||||
</TextWithTooltip>
|
</TextWithTooltip>
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
|
@ -284,7 +284,7 @@ export default class MFileBody extends React.Component<IProps, IState> {
|
||||||
*/}
|
*/}
|
||||||
<iframe
|
<iframe
|
||||||
aria-hidden
|
aria-hidden
|
||||||
title={presentableTextForFile(this.content, _t("Attachment"), true, true)}
|
title={presentableTextForFile(this.content, _t("common|attachment"), true, true)}
|
||||||
src={url}
|
src={url}
|
||||||
onLoad={() => this.downloadFile(this.fileName, this.linkText)}
|
onLoad={() => this.downloadFile(this.fileName, this.linkText)}
|
||||||
ref={this.iframe}
|
ref={this.iframe}
|
||||||
|
|
|
@ -107,7 +107,7 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
|
||||||
if (!httpUrl) return;
|
if (!httpUrl) return;
|
||||||
const params: Omit<ComponentProps<typeof ImageView>, "onFinished"> = {
|
const params: Omit<ComponentProps<typeof ImageView>, "onFinished"> = {
|
||||||
src: httpUrl,
|
src: httpUrl,
|
||||||
name: content.body && content.body.length > 0 ? content.body : _t("Attachment"),
|
name: content.body && content.body.length > 0 ? content.body : _t("common|attachment"),
|
||||||
mxEvent: this.props.mxEvent,
|
mxEvent: this.props.mxEvent,
|
||||||
permalinkCreator: this.props.permalinkCreator,
|
permalinkCreator: this.props.permalinkCreator,
|
||||||
};
|
};
|
||||||
|
|
|
@ -116,7 +116,7 @@ const OptionsButton: React.FC<IOptionsButtonProps> = ({
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<ContextMenuTooltipButton
|
<ContextMenuTooltipButton
|
||||||
className="mx_MessageActionBar_iconButton mx_MessageActionBar_optionsButton"
|
className="mx_MessageActionBar_iconButton mx_MessageActionBar_optionsButton"
|
||||||
title={_t("Options")}
|
title={_t("common|options")}
|
||||||
onClick={onOptionsClick}
|
onClick={onOptionsClick}
|
||||||
onContextMenu={onOptionsClick}
|
onContextMenu={onOptionsClick}
|
||||||
isExpanded={menuDisplayed}
|
isExpanded={menuDisplayed}
|
||||||
|
|
|
@ -300,7 +300,7 @@ export default class LegacyRoomHeaderButtons extends HeaderButtons<IProps> {
|
||||||
key={RightPanelPhases.ThreadPanel}
|
key={RightPanelPhases.ThreadPanel}
|
||||||
name="threadsButton"
|
name="threadsButton"
|
||||||
data-testid="threadsButton"
|
data-testid="threadsButton"
|
||||||
title={_t("Threads")}
|
title={_t("common|threads")}
|
||||||
onClick={this.onThreadsPanelClicked}
|
onClick={this.onThreadsPanelClicked}
|
||||||
isHighlighted={this.isPhase(LegacyRoomHeaderButtons.THREAD_PHASES)}
|
isHighlighted={this.isPhase(LegacyRoomHeaderButtons.THREAD_PHASES)}
|
||||||
isUnread={this.state.threadNotificationColor > NotificationColor.None}
|
isUnread={this.state.threadNotificationColor > NotificationColor.None}
|
||||||
|
|
|
@ -196,7 +196,7 @@ const AppRow: React.FC<IAppRowProps> = ({ app, room }) => {
|
||||||
className="mx_RoomSummaryCard_app_options"
|
className="mx_RoomSummaryCard_app_options"
|
||||||
isExpanded={menuDisplayed}
|
isExpanded={menuDisplayed}
|
||||||
onClick={openMenu}
|
onClick={openMenu}
|
||||||
title={_t("Options")}
|
title={_t("common|options")}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
@ -502,7 +502,7 @@ export const UserOptionsSection: React.FC<{
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_UserInfo_container">
|
<div className="mx_UserInfo_container">
|
||||||
<h3>{_t("Options")}</h3>
|
<h3>{_t("common|options")}</h3>
|
||||||
<div>
|
<div>
|
||||||
{directMessageButton}
|
{directMessageButton}
|
||||||
{readReceiptButton}
|
{readReceiptButton}
|
||||||
|
|
|
@ -81,7 +81,7 @@ const WidgetCard: React.FC<IProps> = ({ room, widgetId, onClose }) => {
|
||||||
inputRef={handle}
|
inputRef={handle}
|
||||||
onClick={openMenu}
|
onClick={openMenu}
|
||||||
isExpanded={menuDisplayed}
|
isExpanded={menuDisplayed}
|
||||||
label={_t("Options")}
|
label={_t("common|options")}
|
||||||
/>
|
/>
|
||||||
{contextMenu}
|
{contextMenu}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -246,7 +246,7 @@ const UploadButton: React.FC = () => {
|
||||||
className="mx_MessageComposer_button"
|
className="mx_MessageComposer_button"
|
||||||
iconClassName="mx_MessageComposer_upload"
|
iconClassName="mx_MessageComposer_upload"
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
title={_t("Attachment")}
|
title={_t("common|attachment")}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -392,7 +392,7 @@ const TAG_AESTHETICS: TagAestheticsMap = {
|
||||||
defaultHidden: false,
|
defaultHidden: false,
|
||||||
},
|
},
|
||||||
[DefaultTagID.Favourite]: {
|
[DefaultTagID.Favourite]: {
|
||||||
sectionLabel: _td("Favourites"),
|
sectionLabel: _td("common|favourites"),
|
||||||
isInvite: false,
|
isInvite: false,
|
||||||
defaultHidden: false,
|
defaultHidden: false,
|
||||||
},
|
},
|
||||||
|
|
|
@ -578,7 +578,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<hr />
|
<hr />
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend className="mx_RoomSublist_contextMenu_title">{_t("Appearance")}</legend>
|
<legend className="mx_RoomSublist_contextMenu_title">{_t("common|appearance")}</legend>
|
||||||
<StyledMenuItemCheckbox
|
<StyledMenuItemCheckbox
|
||||||
onClose={this.onCloseMenu}
|
onClose={this.onCloseMenu}
|
||||||
onChange={this.onUnreadFirstChanged}
|
onChange={this.onUnreadFirstChanged}
|
||||||
|
|
|
@ -167,7 +167,7 @@ const JoinRuleSettings: React.FC<JoinRuleSettingsProps> = ({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: JoinRule.Public,
|
value: JoinRule.Public,
|
||||||
label: _t("Public"),
|
label: _t("common|public"),
|
||||||
description: (
|
description: (
|
||||||
<>
|
<>
|
||||||
{_t("Anyone can find and join.")}
|
{_t("Anyone can find and join.")}
|
||||||
|
|
|
@ -246,7 +246,7 @@ export default class ThemeChoicePanel extends React.Component<IProps, IState> {
|
||||||
|
|
||||||
const orderedThemes = getOrderedThemes();
|
const orderedThemes = getOrderedThemes();
|
||||||
return (
|
return (
|
||||||
<SettingsSubsection heading={_t("Theme")} data-testid="mx_ThemeChoicePanel">
|
<SettingsSubsection heading={_t("common|theme")} data-testid="mx_ThemeChoicePanel">
|
||||||
{systemThemeSection}
|
{systemThemeSection}
|
||||||
<div className="mx_ThemeChoicePanel_themeSelectors" data-testid="theme-choice-panel-selectors">
|
<div className="mx_ThemeChoicePanel_themeSelectors" data-testid="theme-choice-panel-selectors">
|
||||||
<StyledRadioGroup
|
<StyledRadioGroup
|
||||||
|
|
|
@ -79,7 +79,7 @@ const CurrentDeviceSectionHeading: React.FC<CurrentDeviceSectionHeadingProps> =
|
||||||
<SettingsSubsectionHeading heading={_t("Current session")}>
|
<SettingsSubsectionHeading heading={_t("Current session")}>
|
||||||
<KebabContextMenu
|
<KebabContextMenu
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
title={_t("Options")}
|
title={_t("common|options")}
|
||||||
options={menuOptions}
|
options={menuOptions}
|
||||||
data-testid="current-session-menu"
|
data-testid="current-session-menu"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -76,7 +76,7 @@ const DeviceDetails: React.FC<Props> = ({
|
||||||
id: "application",
|
id: "application",
|
||||||
heading: _t("Application"),
|
heading: _t("Application"),
|
||||||
values: [
|
values: [
|
||||||
{ label: _t("Name"), value: device.appName },
|
{ label: _t("common|name"), value: device.appName },
|
||||||
{ label: _t("Version"), value: device.appVersion },
|
{ label: _t("Version"), value: device.appVersion },
|
||||||
{ label: _t("URL"), value: device.url },
|
{ label: _t("URL"), value: device.url },
|
||||||
],
|
],
|
||||||
|
|
|
@ -52,7 +52,7 @@ export const OtherSessionsSectionHeading: React.FC<Props> = ({
|
||||||
{!!menuOptions.length && (
|
{!!menuOptions.length && (
|
||||||
<KebabContextMenu
|
<KebabContextMenu
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
title={_t("Options")}
|
title={_t("common|options")}
|
||||||
options={menuOptions}
|
options={menuOptions}
|
||||||
data-testid="other-sessions-menu"
|
data-testid="other-sessions-menu"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -540,7 +540,7 @@ export default class GeneralUserSettingsTab extends React.Component<IProps, ISta
|
||||||
height="18"
|
height="18"
|
||||||
// override icon default values
|
// override icon default values
|
||||||
aria-hidden={false}
|
aria-hidden={false}
|
||||||
aria-label={_t("Warning")}
|
aria-label={_t("common|warning")}
|
||||||
/>
|
/>
|
||||||
) : null;
|
) : null;
|
||||||
const heading = (
|
const heading = (
|
||||||
|
|
|
@ -79,7 +79,7 @@ const SidebarUserSettingsTab: React.FC = () => {
|
||||||
>
|
>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
<HomeIcon />
|
<HomeIcon />
|
||||||
{_t("Home")}
|
{_t("common|home")}
|
||||||
</SettingsSubsectionText>
|
</SettingsSubsectionText>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
{_t("Home is useful for getting an overview of everything.")}
|
{_t("Home is useful for getting an overview of everything.")}
|
||||||
|
@ -106,7 +106,7 @@ const SidebarUserSettingsTab: React.FC = () => {
|
||||||
>
|
>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
<FavoriteIcon />
|
<FavoriteIcon />
|
||||||
{_t("Favourites")}
|
{_t("common|favourites")}
|
||||||
</SettingsSubsectionText>
|
</SettingsSubsectionText>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
{_t("Group all your favourite rooms and people in one place.")}
|
{_t("Group all your favourite rooms and people in one place.")}
|
||||||
|
|
|
@ -99,7 +99,7 @@ const QuickSettingsButton: React.FC<{
|
||||||
onChange={onMetaSpaceChangeFactory(MetaSpace.Favourites, "WebQuickSettingsPinToSidebarCheckbox")}
|
onChange={onMetaSpaceChangeFactory(MetaSpace.Favourites, "WebQuickSettingsPinToSidebarCheckbox")}
|
||||||
>
|
>
|
||||||
<FavoriteIcon className="mx_QuickSettingsButton_icon" />
|
<FavoriteIcon className="mx_QuickSettingsButton_icon" />
|
||||||
{_t("Favourites")}
|
{_t("common|favourites")}
|
||||||
</StyledCheckbox>
|
</StyledCheckbox>
|
||||||
<StyledCheckbox
|
<StyledCheckbox
|
||||||
className="mx_QuickSettingsButton_peopleCheckbox"
|
className="mx_QuickSettingsButton_peopleCheckbox"
|
||||||
|
|
|
@ -80,7 +80,7 @@ const QuickThemeSwitcher: React.FC<Props> = ({ requestClose }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_QuickThemeSwitcher">
|
<div className="mx_QuickThemeSwitcher">
|
||||||
<h4 className="mx_QuickThemeSwitcher_heading">{_t("Theme")}</h4>
|
<h4 className="mx_QuickThemeSwitcher_heading">{_t("common|theme")}</h4>
|
||||||
<Dropdown
|
<Dropdown
|
||||||
id="mx_QuickSettingsButton_themePickerDropdown"
|
id="mx_QuickSettingsButton_themePickerDropdown"
|
||||||
onOptionChange={onOptionChange}
|
onOptionChange={onOptionChange}
|
||||||
|
|
|
@ -133,7 +133,7 @@ const SpaceBasicSettings: React.FC<IProps> = ({
|
||||||
|
|
||||||
<Field
|
<Field
|
||||||
name="spaceName"
|
name="spaceName"
|
||||||
label={_t("Name")}
|
label={_t("common|name")}
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
value={name}
|
value={name}
|
||||||
onChange={(ev: ChangeEvent<HTMLInputElement>) => setName(ev.target.value)}
|
onChange={(ev: ChangeEvent<HTMLInputElement>) => setName(ev.target.value)}
|
||||||
|
@ -143,7 +143,7 @@ const SpaceBasicSettings: React.FC<IProps> = ({
|
||||||
<Field
|
<Field
|
||||||
name="spaceTopic"
|
name="spaceTopic"
|
||||||
element="textarea"
|
element="textarea"
|
||||||
label={_t("Description")}
|
label={_t("common|description")}
|
||||||
value={topic}
|
value={topic}
|
||||||
onChange={(ev: ChangeEvent<HTMLTextAreaElement>) => setTopic(ev.target.value)}
|
onChange={(ev: ChangeEvent<HTMLTextAreaElement>) => setTopic(ev.target.value)}
|
||||||
rows={3}
|
rows={3}
|
||||||
|
|
|
@ -169,7 +169,7 @@ export const SpaceCreateForm: React.FC<ISpaceCreateFormProps> = ({
|
||||||
|
|
||||||
<Field
|
<Field
|
||||||
name="spaceName"
|
name="spaceName"
|
||||||
label={_t("Name")}
|
label={_t("common|name")}
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
value={name}
|
value={name}
|
||||||
onChange={(ev: ChangeEvent<HTMLInputElement>) => {
|
onChange={(ev: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
@ -203,7 +203,7 @@ export const SpaceCreateForm: React.FC<ISpaceCreateFormProps> = ({
|
||||||
<Field
|
<Field
|
||||||
name="spaceTopic"
|
name="spaceTopic"
|
||||||
element="textarea"
|
element="textarea"
|
||||||
label={_t("Description")}
|
label={_t("common|description")}
|
||||||
value={topic ?? ""}
|
value={topic ?? ""}
|
||||||
onChange={(ev) => setTopic(ev.target.value)}
|
onChange={(ev) => setTopic(ev.target.value)}
|
||||||
rows={3}
|
rows={3}
|
||||||
|
@ -292,13 +292,13 @@ const SpaceCreateMenu: React.FC<{
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<SpaceCreateMenuType
|
<SpaceCreateMenuType
|
||||||
title={_t("Public")}
|
title={_t("common|public")}
|
||||||
description={_t("Open space for anyone, best for communities")}
|
description={_t("Open space for anyone, best for communities")}
|
||||||
className="mx_SpaceCreateMenuType_public"
|
className="mx_SpaceCreateMenuType_public"
|
||||||
onClick={() => setVisibility(Visibility.Public)}
|
onClick={() => setVisibility(Visibility.Public)}
|
||||||
/>
|
/>
|
||||||
<SpaceCreateMenuType
|
<SpaceCreateMenuType
|
||||||
title={_t("Private")}
|
title={_t("common|private")}
|
||||||
description={_t("Invite only, best for yourself or teams")}
|
description={_t("Invite only, best for yourself or teams")}
|
||||||
className="mx_SpaceCreateMenuType_private"
|
className="mx_SpaceCreateMenuType_private"
|
||||||
onClick={() => setVisibility(Visibility.Private)}
|
onClick={() => setVisibility(Visibility.Private)}
|
||||||
|
|
|
@ -97,7 +97,7 @@ export const HomeButtonContextMenu: React.FC<ComponentProps<typeof SpaceContextM
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<IconizedContextMenu {...props} onFinished={onFinished} className="mx_SpacePanel_contextMenu" compact>
|
<IconizedContextMenu {...props} onFinished={onFinished} className="mx_SpacePanel_contextMenu" compact>
|
||||||
{!hideHeader && <div className="mx_SpacePanel_contextMenu_header">{_t("Home")}</div>}
|
{!hideHeader && <div className="mx_SpacePanel_contextMenu_header">{_t("common|home")}</div>}
|
||||||
<IconizedContextMenuOptionList first>
|
<IconizedContextMenuOptionList first>
|
||||||
<IconizedContextMenuCheckbox
|
<IconizedContextMenuCheckbox
|
||||||
iconClassName="mx_SpacePanel_noIcon"
|
iconClassName="mx_SpacePanel_noIcon"
|
||||||
|
@ -159,7 +159,7 @@ const HomeButton: React.FC<MetaSpaceButtonProps> = ({ selected, isPanelCollapsed
|
||||||
label={getMetaSpaceName(MetaSpace.Home, allRoomsInHome)}
|
label={getMetaSpaceName(MetaSpace.Home, allRoomsInHome)}
|
||||||
notificationState={notificationState}
|
notificationState={notificationState}
|
||||||
ContextMenuComponent={HomeButtonContextMenu}
|
ContextMenuComponent={HomeButtonContextMenu}
|
||||||
contextMenuTooltip={_t("Options")}
|
contextMenuTooltip={_t("common|options")}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -165,9 +165,9 @@ export const usePermalink: (args: Args) => HookResult = ({
|
||||||
text = targetRoom.name || resourceId;
|
text = targetRoom.name || resourceId;
|
||||||
}
|
}
|
||||||
} else if (type === PillType.EventInSameRoom) {
|
} else if (type === PillType.EventInSameRoom) {
|
||||||
text = member?.name || _t("User");
|
text = member?.name || _t("common|user");
|
||||||
} else if (type === PillType.EventInOtherRoom) {
|
} else if (type === PillType.EventInOtherRoom) {
|
||||||
text = targetRoom?.name || _t("Room");
|
text = targetRoom?.name || _t("common|room");
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"Create new room": "إنشاء غرفة جديدة",
|
"Create new room": "إنشاء غرفة جديدة",
|
||||||
"Dismiss": "أهمِل",
|
"Dismiss": "أهمِل",
|
||||||
"Failed to change password. Is your password correct?": "فشلت عملية تعديل الكلمة السرية. هل كلمتك السرية صحيحة ؟",
|
"Failed to change password. Is your password correct?": "فشلت عملية تعديل الكلمة السرية. هل كلمتك السرية صحيحة ؟",
|
||||||
"Warning": "تنبيه",
|
|
||||||
"Send": "إرسال",
|
"Send": "إرسال",
|
||||||
"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": "رقم الهاتف هذا مستخدم بالفعل",
|
||||||
|
@ -228,8 +227,6 @@
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة متغيرة التي تحظر الغرف المطابقة %(oldGlob)s من أجل مطابقة %(newGlob)s من أجل %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة متغيرة التي تحظر الغرف المطابقة %(oldGlob)s من أجل مطابقة %(newGlob)s من أجل %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة متغيرة التي تحظر سيرفرات مطابقة %(oldGlob)s من أجل مطابقة %(newGlob)s من أجل %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة متغيرة التي تحظر سيرفرات مطابقة %(oldGlob)s من أجل مطابقة %(newGlob)s من أجل %(reason)s",
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة حظر محدثة التي طابقت %(oldGlob)s لتطابق %(newGlob)s من أجل %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s قاعدة حظر محدثة التي طابقت %(oldGlob)s لتطابق %(newGlob)s من أجل %(reason)s",
|
||||||
"Light": "ضوء",
|
|
||||||
"Dark": "مظلم",
|
|
||||||
"You signed in to a new session without verifying it:": "قمت بتسجيل الدخول لجلسة جديدة من غير التحقق منها:",
|
"You signed in to a new session without verifying it:": "قمت بتسجيل الدخول لجلسة جديدة من غير التحقق منها:",
|
||||||
"Verify your other session using one of the options below.": "أكِّد جلستك الأخرى باستخدام أحد الخيارات أدناه.",
|
"Verify your other session using one of the options below.": "أكِّد جلستك الأخرى باستخدام أحد الخيارات أدناه.",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s%(userId)s تم تسجيل الدخول لجلسة جديدة من غير التحقق منها:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s%(userId)s تم تسجيل الدخول لجلسة جديدة من غير التحقق منها:",
|
||||||
|
@ -328,7 +325,6 @@
|
||||||
"Download %(text)s": "تحميل %(text)s",
|
"Download %(text)s": "تحميل %(text)s",
|
||||||
"Decrypt %(text)s": "فك تشفير %(text)s",
|
"Decrypt %(text)s": "فك تشفير %(text)s",
|
||||||
"Error decrypting attachment": "تعذر فك تشفير المرفق",
|
"Error decrypting attachment": "تعذر فك تشفير المرفق",
|
||||||
"Attachment": "المرفق",
|
|
||||||
"Message Actions": "إجراءات الرسائل",
|
"Message Actions": "إجراءات الرسائل",
|
||||||
"The encryption used by this room isn't supported.": "التشفير الذي تستخدمه هذه الغرفة غير مدعوم.",
|
"The encryption used by this room isn't supported.": "التشفير الذي تستخدمه هذه الغرفة غير مدعوم.",
|
||||||
"Encryption not enabled": "التشفير غير مفعل",
|
"Encryption not enabled": "التشفير غير مفعل",
|
||||||
|
@ -419,7 +415,6 @@
|
||||||
"Sort by": "ترتيب حسب",
|
"Sort by": "ترتيب حسب",
|
||||||
"Show previews of messages": "إظهار معاينات للرسائل",
|
"Show previews of messages": "إظهار معاينات للرسائل",
|
||||||
"Show rooms with unread messages first": "اعرض الغرف ذات الرسائل غير المقروءة أولاً",
|
"Show rooms with unread messages first": "اعرض الغرف ذات الرسائل غير المقروءة أولاً",
|
||||||
"Appearance": "المظهر",
|
|
||||||
"%(roomName)s is not accessible at this time.": "لا يمكن الوصول إلى %(roomName)s في الوقت الحالي.",
|
"%(roomName)s is not accessible at this time.": "لا يمكن الوصول إلى %(roomName)s في الوقت الحالي.",
|
||||||
"%(roomName)s does not exist.": "الغرفة %(roomName)s ليست موجودة.",
|
"%(roomName)s does not exist.": "الغرفة %(roomName)s ليست موجودة.",
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "لا يمكن معاينة %(roomName)s. هل تريد الانضمام إليها؟",
|
"%(roomName)s can't be previewed. Do you want to join it?": "لا يمكن معاينة %(roomName)s. هل تريد الانضمام إليها؟",
|
||||||
|
@ -453,7 +448,6 @@
|
||||||
"Explore public rooms": "استكشف الغرف العامة",
|
"Explore public rooms": "استكشف الغرف العامة",
|
||||||
"Add room": "أضف غرفة",
|
"Add room": "أضف غرفة",
|
||||||
"Rooms": "الغرف",
|
"Rooms": "الغرف",
|
||||||
"Favourites": "مفضلات",
|
|
||||||
"Search": "بحث",
|
"Search": "بحث",
|
||||||
"Show Widgets": "إظهار عناصر الواجهة",
|
"Show Widgets": "إظهار عناصر الواجهة",
|
||||||
"Hide Widgets": "إخفاء عناصر الواجهة",
|
"Hide Widgets": "إخفاء عناصر الواجهة",
|
||||||
|
@ -537,7 +531,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "هناك خطأ ما. يرجى المحاولة مرة أخرى أو عرض وحدة التحكم (console) للتلميحات.",
|
"Something went wrong. Please try again or view your console for hints.": "هناك خطأ ما. يرجى المحاولة مرة أخرى أو عرض وحدة التحكم (console) للتلميحات.",
|
||||||
"Error adding ignored user/server": "تعذر إضافة مستخدم/خادم مُتجاهَل",
|
"Error adding ignored user/server": "تعذر إضافة مستخدم/خادم مُتجاهَل",
|
||||||
"Ignored/Blocked": "المُتجاهل/المحظور",
|
"Ignored/Blocked": "المُتجاهل/المحظور",
|
||||||
"Labs": "معامل",
|
|
||||||
"Clear cache and reload": "محو مخزن الجيب وإعادة التحميل",
|
"Clear cache and reload": "محو مخزن الجيب وإعادة التحميل",
|
||||||
"%(brand)s version:": "إصدار %(brand)s:",
|
"%(brand)s version:": "إصدار %(brand)s:",
|
||||||
"Versions": "الإصدارات",
|
"Versions": "الإصدارات",
|
||||||
|
@ -564,7 +557,6 @@
|
||||||
"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 استخدامه.",
|
||||||
"Theme": "المظهر",
|
|
||||||
"Add theme": "إضافة مظهر",
|
"Add theme": "إضافة مظهر",
|
||||||
"Custom theme URL": "رابط المظهر المخصص",
|
"Custom theme URL": "رابط المظهر المخصص",
|
||||||
"Theme added!": "أُضيفَ المظهر!",
|
"Theme added!": "أُضيفَ المظهر!",
|
||||||
|
@ -689,7 +681,6 @@
|
||||||
"Add widgets, bridges & bots": "إضافة عناصر الواجهة والجسور والروبوتات",
|
"Add widgets, bridges & bots": "إضافة عناصر الواجهة والجسور والروبوتات",
|
||||||
"Edit widgets, bridges & bots": "تعديل عناصر الواجهة والجسور والروبوتات",
|
"Edit widgets, bridges & bots": "تعديل عناصر الواجهة والجسور والروبوتات",
|
||||||
"Widgets": "عناصر الواجهة",
|
"Widgets": "عناصر الواجهة",
|
||||||
"Options": "الخيارات",
|
|
||||||
"Unpin": "فك التثبيت",
|
"Unpin": "فك التثبيت",
|
||||||
"You can only pin up to %(count)s widgets": {
|
"You can only pin up to %(count)s widgets": {
|
||||||
"other": "تثبيت عناصر واجهة المستخدم ممكن إلى %(count)s بحدٍ أعلى"
|
"other": "تثبيت عناصر واجهة المستخدم ممكن إلى %(count)s بحدٍ أعلى"
|
||||||
|
@ -1318,7 +1309,16 @@
|
||||||
"settings": "الإعدادات",
|
"settings": "الإعدادات",
|
||||||
"success": "نجاح",
|
"success": "نجاح",
|
||||||
"unmute": "رفع الكتم",
|
"unmute": "رفع الكتم",
|
||||||
"verification_cancelled": "أُلغي التحقق"
|
"verification_cancelled": "أُلغي التحقق",
|
||||||
|
"attachment": "المرفق",
|
||||||
|
"light": "ضوء",
|
||||||
|
"dark": "مظلم",
|
||||||
|
"warning": "تنبيه",
|
||||||
|
"favourites": "مفضلات",
|
||||||
|
"theme": "المظهر",
|
||||||
|
"options": "الخيارات",
|
||||||
|
"appearance": "المظهر",
|
||||||
|
"labs": "معامل"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "واصِل",
|
"continue": "واصِل",
|
||||||
|
@ -1341,4 +1341,4 @@
|
||||||
"view_source": "انظر المصدر",
|
"view_source": "انظر المصدر",
|
||||||
"yes": "نعم"
|
"yes": "نعم"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,7 +93,6 @@
|
||||||
"Ignore": "Bloklamaq",
|
"Ignore": "Bloklamaq",
|
||||||
"Invited": "Dəvət edilmişdir",
|
"Invited": "Dəvət edilmişdir",
|
||||||
"Filter room members": "İştirakçılara görə axtarış",
|
"Filter room members": "İştirakçılara görə axtarış",
|
||||||
"Attachment": "Əlavə",
|
|
||||||
"Hangup": "Bitirmək",
|
"Hangup": "Bitirmək",
|
||||||
"Voice call": "Səs çağırış",
|
"Voice call": "Səs çağırış",
|
||||||
"Video call": "Video çağırış",
|
"Video call": "Video çağırış",
|
||||||
|
@ -102,7 +101,6 @@
|
||||||
"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",
|
||||||
"Forget room": "Otağı unutmaq",
|
"Forget room": "Otağı unutmaq",
|
||||||
"Favourites": "Seçilmişlər",
|
|
||||||
"Low priority": "Əhəmiyyətsizlər",
|
"Low priority": "Əhəmiyyətsizlər",
|
||||||
"Historical": "Arxiv",
|
"Historical": "Arxiv",
|
||||||
"Failed to unban": "Blokdan çıxarmağı bacarmadı",
|
"Failed to unban": "Blokdan çıxarmağı bacarmadı",
|
||||||
|
@ -126,7 +124,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",
|
||||||
"Home": "Başlanğıc",
|
|
||||||
"%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s",
|
||||||
"Deactivate Account": "Hesabı bağlamaq",
|
"Deactivate Account": "Hesabı bağlamaq",
|
||||||
"An error has occurred.": "Səhv oldu.",
|
"An error has occurred.": "Səhv oldu.",
|
||||||
|
@ -138,7 +135,6 @@
|
||||||
"Failed to change password. Is your password correct?": "Şifrəni əvəz etməyi bacarmadı. Siz cari şifrə düzgün daxil etdiniz?",
|
"Failed to change password. Is your password correct?": "Şifrəni əvəz etməyi bacarmadı. Siz cari şifrə düzgün daxil etdiniz?",
|
||||||
"Reject invitation": "Dəvəti rədd etmək",
|
"Reject invitation": "Dəvəti rədd etmək",
|
||||||
"Are you sure you want to reject the invitation?": "Siz əminsiniz ki, siz dəvəti rədd etmək istəyirsiniz?",
|
"Are you sure you want to reject the invitation?": "Siz əminsiniz ki, siz dəvəti rədd etmək istəyirsiniz?",
|
||||||
"Name": "Ad",
|
|
||||||
"Failed to reject invitation": "Dəvəti rədd etməyi bacarmadı",
|
"Failed to reject invitation": "Dəvəti rədd etməyi bacarmadı",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Təhlükəsizliyin təmin olunması üçün sizin sessiyanız başa çatmışdır idi. Zəhmət olmasa, yenidən girin.",
|
"For security, this session has been signed out. Please sign in again.": "Təhlükəsizliyin təmin olunması üçün sizin sessiyanız başa çatmışdır idi. Zəhmət olmasa, yenidən girin.",
|
||||||
"Logout": "Çıxmaq",
|
"Logout": "Çıxmaq",
|
||||||
|
@ -152,7 +148,6 @@
|
||||||
"<not supported>": "<dəstəklənmir>",
|
"<not supported>": "<dəstəklənmir>",
|
||||||
"Import E2E room keys": "Şifrləmənin açarlarının idxalı",
|
"Import E2E room keys": "Şifrləmənin açarlarının idxalı",
|
||||||
"Cryptography": "Kriptoqrafiya",
|
"Cryptography": "Kriptoqrafiya",
|
||||||
"Labs": "Laboratoriya",
|
|
||||||
"Email": "E-poçt",
|
"Email": "E-poçt",
|
||||||
"Profile": "Profil",
|
"Profile": "Profil",
|
||||||
"Account": "Hesab",
|
"Account": "Hesab",
|
||||||
|
@ -246,7 +241,12 @@
|
||||||
"error": "Səhv",
|
"error": "Səhv",
|
||||||
"no_results": "Nəticə yoxdur",
|
"no_results": "Nəticə yoxdur",
|
||||||
"password": "Şifrə",
|
"password": "Şifrə",
|
||||||
"settings": "Qurmalar"
|
"settings": "Qurmalar",
|
||||||
|
"attachment": "Əlavə",
|
||||||
|
"home": "Başlanğıc",
|
||||||
|
"favourites": "Seçilmişlər",
|
||||||
|
"name": "Ad",
|
||||||
|
"labs": "Laboratoriya"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Davam etmək",
|
"continue": "Davam etmək",
|
||||||
|
@ -255,5 +255,6 @@
|
||||||
"ok": "OK",
|
"ok": "OK",
|
||||||
"remove": "Silmək",
|
"remove": "Silmək",
|
||||||
"start_chat": "Çata başlamaq"
|
"start_chat": "Çata başlamaq"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Başlanğıc"
|
||||||
|
}
|
||||||
|
|
|
@ -27,4 +27,4 @@
|
||||||
"quote": "Цытата",
|
"quote": "Цытата",
|
||||||
"remove": "Выдалiць"
|
"remove": "Выдалiць"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
"Search": "Търсене",
|
"Search": "Търсене",
|
||||||
"Dismiss": "Затвори",
|
"Dismiss": "Затвори",
|
||||||
"powered by Matrix": "базирано на Matrix",
|
"powered by Matrix": "базирано на Matrix",
|
||||||
"Warning": "Предупреждение",
|
|
||||||
"Close": "Затвори",
|
"Close": "Затвори",
|
||||||
"Cancel": "Отказ",
|
"Cancel": "Отказ",
|
||||||
"Send": "Изпрати",
|
"Send": "Изпрати",
|
||||||
|
@ -125,7 +124,6 @@
|
||||||
"Authentication": "Автентикация",
|
"Authentication": "Автентикация",
|
||||||
"Failed to set display name": "Неуспешно задаване на име",
|
"Failed to set display name": "Неуспешно задаване на име",
|
||||||
"Drop file here to upload": "Пуснете файла тук, за да се качи",
|
"Drop file here to upload": "Пуснете файла тук, за да се качи",
|
||||||
"Options": "Настройки",
|
|
||||||
"Unban": "Отблокирай",
|
"Unban": "Отблокирай",
|
||||||
"Failed to ban user": "Неуспешно блокиране на потребителя",
|
"Failed to ban user": "Неуспешно блокиране на потребителя",
|
||||||
"Failed to mute user": "Неуспешно заглушаване на потребителя",
|
"Failed to mute user": "Неуспешно заглушаване на потребителя",
|
||||||
|
@ -144,7 +142,6 @@
|
||||||
"Invited": "Поканен",
|
"Invited": "Поканен",
|
||||||
"Filter room members": "Филтриране на членовете",
|
"Filter room members": "Филтриране на членовете",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (ниво на достъп %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (ниво на достъп %(powerLevelNumber)s)",
|
||||||
"Attachment": "Прикачване",
|
|
||||||
"Hangup": "Затвори",
|
"Hangup": "Затвори",
|
||||||
"Voice call": "Гласово повикване",
|
"Voice call": "Гласово повикване",
|
||||||
"Video call": "Видео повикване",
|
"Video call": "Видео повикване",
|
||||||
|
@ -172,7 +169,6 @@
|
||||||
"Join Room": "Присъединяване към стаята",
|
"Join Room": "Присъединяване към стаята",
|
||||||
"Upload avatar": "Качи профилна снимка",
|
"Upload avatar": "Качи профилна снимка",
|
||||||
"Forget room": "Забрави стаята",
|
"Forget room": "Забрави стаята",
|
||||||
"Favourites": "Любими",
|
|
||||||
"Low priority": "Нисък приоритет",
|
"Low priority": "Нисък приоритет",
|
||||||
"Historical": "Архив",
|
"Historical": "Архив",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s не съществува.",
|
"%(roomName)s does not exist.": "%(roomName)s не съществува.",
|
||||||
|
@ -225,7 +221,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": "Създай нова стая",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)sсе присъединиха %(count)s пъти",
|
"other": "%(severalUsers)sсе присъединиха %(count)s пъти",
|
||||||
|
@ -335,10 +330,8 @@
|
||||||
"Unable to remove contact information": "Неуспешно премахване на информацията за контакти",
|
"Unable to remove contact information": "Неуспешно премахване на информацията за контакти",
|
||||||
"This will allow you to reset your password and receive notifications.": "Това ще Ви позволи да възстановите Вашата парола и да получавате известия.",
|
"This will allow you to reset your password and receive notifications.": "Това ще Ви позволи да възстановите Вашата парола и да получавате известия.",
|
||||||
"Skip": "Пропусни",
|
"Skip": "Пропусни",
|
||||||
"Name": "Име",
|
|
||||||
"You must <a>register</a> to use this functionality": "Трябва да се <a>регистрирате</a>, за да използвате тази функционалност",
|
"You must <a>register</a> to use this functionality": "Трябва да се <a>регистрирате</a>, за да използвате тази функционалност",
|
||||||
"You must join the room to see its files": "Трябва да се присъедините към стаята, за да видите файловете, които съдържа",
|
"You must join the room to see its files": "Трябва да се присъедините към стаята, за да видите файловете, които съдържа",
|
||||||
"Description": "Описание",
|
|
||||||
"Reject invitation": "Отхвърли поканата",
|
"Reject invitation": "Отхвърли поканата",
|
||||||
"Are you sure you want to reject the invitation?": "Сигурни ли сте, че искате да отхвърлите поканата?",
|
"Are you sure you want to reject the invitation?": "Сигурни ли сте, че искате да отхвърлите поканата?",
|
||||||
"Failed to reject invitation": "Неуспешно отхвърляне на поканата",
|
"Failed to reject invitation": "Неуспешно отхвърляне на поканата",
|
||||||
|
@ -356,7 +349,6 @@
|
||||||
"Search failed": "Търсенето е неуспешно",
|
"Search failed": "Търсенето е неуспешно",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Сървърът може би е недостъпен, претоварен или времето за търсене изтече :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Сървърът може би е недостъпен, претоварен или времето за търсене изтече :(",
|
||||||
"No more results": "Няма повече резултати",
|
"No more results": "Няма повече резултати",
|
||||||
"Room": "Стая",
|
|
||||||
"Failed to reject invite": "Неуспешно отхвърляне на поканата",
|
"Failed to reject invite": "Неуспешно отхвърляне на поканата",
|
||||||
"Reject all %(invitedRooms)s invites": "Отхвърли всички %(invitedRooms)s покани",
|
"Reject all %(invitedRooms)s invites": "Отхвърли всички %(invitedRooms)s покани",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Беше направен опит да се зареди конкретна точка в хронологията на тази стая, но нямате разрешение да разгледате въпросното съобщение.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Беше направен опит да се зареди конкретна точка в хронологията на тази стая, но нямате разрешение да разгледате въпросното съобщение.",
|
||||||
|
@ -369,7 +361,6 @@
|
||||||
"<not supported>": "<не се поддържа>",
|
"<not supported>": "<не се поддържа>",
|
||||||
"Import E2E room keys": "Импортирай E2E ключове",
|
"Import E2E room keys": "Импортирай E2E ключове",
|
||||||
"Cryptography": "Криптография",
|
"Cryptography": "Криптография",
|
||||||
"Labs": "Експерименти",
|
|
||||||
"Check for update": "Провери за нова версия",
|
"Check for update": "Провери за нова версия",
|
||||||
"Start automatically after system login": "Автоматично стартиране след влизане в системата",
|
"Start automatically after system login": "Автоматично стартиране след влизане в системата",
|
||||||
"No media permissions": "Няма разрешения за медийните устройства",
|
"No media permissions": "Няма разрешения за медийните устройства",
|
||||||
|
@ -648,7 +639,6 @@
|
||||||
"Email addresses": "Имейл адреси",
|
"Email addresses": "Имейл адреси",
|
||||||
"Phone numbers": "Телефонни номера",
|
"Phone numbers": "Телефонни номера",
|
||||||
"Language and region": "Език и регион",
|
"Language and region": "Език и регион",
|
||||||
"Theme": "Тема",
|
|
||||||
"Account management": "Управление на акаунта",
|
"Account management": "Управление на акаунта",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "За помощ при използването на %(brand)s, кликнете <a>тук</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "За помощ при използването на %(brand)s, кликнете <a>тук</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "За помощ при използването на %(brand)s, кликнете <a>тук</a> или започнете чат с бота ни използвайки бутона по-долу.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "За помощ при използването на %(brand)s, кликнете <a>тук</a> или започнете чат с бота ни използвайки бутона по-долу.",
|
||||||
|
@ -1433,7 +1423,6 @@
|
||||||
"Size must be a number": "Размера трябва да е число",
|
"Size must be a number": "Размера трябва да е число",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Собствения размер на шрифта може да бъде единствено между %(min)s pt и %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Собствения размер на шрифта може да бъде единствено между %(min)s pt и %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Изберете между %(min)s pt и %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Изберете между %(min)s pt и %(max)s pt",
|
||||||
"Appearance": "Изглед",
|
|
||||||
"You've successfully verified your device!": "Успешно потвърдихте устройството си!",
|
"You've successfully verified your device!": "Успешно потвърдихте устройството си!",
|
||||||
"Message deleted": "Съобщението беше изтрито",
|
"Message deleted": "Съобщението беше изтрито",
|
||||||
"Message deleted by %(name)s": "Съобщението беше изтрито от %(name)s",
|
"Message deleted by %(name)s": "Съобщението беше изтрито от %(name)s",
|
||||||
|
@ -1552,8 +1541,6 @@
|
||||||
"other": "Покажи още %(count)s",
|
"other": "Покажи още %(count)s",
|
||||||
"one": "Покажи още %(count)s"
|
"one": "Покажи още %(count)s"
|
||||||
},
|
},
|
||||||
"Light": "Светла",
|
|
||||||
"Dark": "Тъмна",
|
|
||||||
"Use custom size": "Използвай собствен размер",
|
"Use custom size": "Използвай собствен размер",
|
||||||
"Use a system font": "Използвай системния шрифт",
|
"Use a system font": "Използвай системния шрифт",
|
||||||
"System font name": "Име на системния шрифт",
|
"System font name": "Име на системния шрифт",
|
||||||
|
@ -2001,8 +1988,6 @@
|
||||||
"Create a space": "Създаване на пространство",
|
"Create a space": "Създаване на пространство",
|
||||||
"Add some details to help people recognise it.": "Добавете някои подробности, за да помогнете на хората да го разпознаят.",
|
"Add some details to help people recognise it.": "Добавете някои подробности, за да помогнете на хората да го разпознаят.",
|
||||||
"Invite only, best for yourself or teams": "Само с покана, най-добро за вас самият или отбори",
|
"Invite only, best for yourself or teams": "Само с покана, най-добро за вас самият или отбори",
|
||||||
"Public": "Публично",
|
|
||||||
"Private": "Лично",
|
|
||||||
"Your public space": "Вашето публично пространство",
|
"Your public space": "Вашето публично пространство",
|
||||||
"Your private space": "Вашето лично пространство",
|
"Your private space": "Вашето лично пространство",
|
||||||
"You can change these anytime.": "Можете да ги промените по всяко време.",
|
"You can change these anytime.": "Можете да ги промените по всяко време.",
|
||||||
|
@ -2092,7 +2077,22 @@
|
||||||
"suggestions": "Предложения",
|
"suggestions": "Предложения",
|
||||||
"unmute": "Премахни заглушаването",
|
"unmute": "Премахни заглушаването",
|
||||||
"username": "Потребителско име",
|
"username": "Потребителско име",
|
||||||
"verification_cancelled": "Верификацията беше отказана"
|
"verification_cancelled": "Верификацията беше отказана",
|
||||||
|
"attachment": "Прикачване",
|
||||||
|
"light": "Светла",
|
||||||
|
"dark": "Тъмна",
|
||||||
|
"warning": "Предупреждение",
|
||||||
|
"home": "Начална страница",
|
||||||
|
"favourites": "Любими",
|
||||||
|
"room": "Стая",
|
||||||
|
"theme": "Тема",
|
||||||
|
"name": "Име",
|
||||||
|
"description": "Описание",
|
||||||
|
"public": "Публично",
|
||||||
|
"private": "Лично",
|
||||||
|
"options": "Настройки",
|
||||||
|
"appearance": "Изглед",
|
||||||
|
"labs": "Експерименти"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Продължи",
|
"continue": "Продължи",
|
||||||
|
@ -2125,5 +2125,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Потребителско меню"
|
"user_menu": "Потребителско меню"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Начална страница"
|
||||||
|
}
|
||||||
|
|
|
@ -127,7 +127,6 @@
|
||||||
"Authentication": "Autenticació",
|
"Authentication": "Autenticació",
|
||||||
"Failed to set display name": "No s'ha pogut establir el nom visible",
|
"Failed to set display name": "No s'ha pogut establir el nom visible",
|
||||||
"Drop file here to upload": "Deixa anar el fitxer aquí per pujar-lo",
|
"Drop file here to upload": "Deixa anar el fitxer aquí per pujar-lo",
|
||||||
"Options": "Opcions",
|
|
||||||
"Unban": "Retira l'expulsió",
|
"Unban": "Retira l'expulsió",
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Aquesta sala no és pública. No podreu tronar a entrar sense invitació.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Aquesta sala no és pública. No podreu tronar a entrar sense invitació.",
|
||||||
"Failed to ban user": "No s'ha pogut expulsar l'usuari",
|
"Failed to ban user": "No s'ha pogut expulsar l'usuari",
|
||||||
|
@ -148,7 +147,6 @@
|
||||||
"Invited": "Convidat",
|
"Invited": "Convidat",
|
||||||
"Filter room members": "Filtra els membres de la sala",
|
"Filter room members": "Filtra els membres de la sala",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (autoritat %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (autoritat %(powerLevelNumber)s)",
|
||||||
"Attachment": "Adjunt",
|
|
||||||
"Hangup": "Penja",
|
"Hangup": "Penja",
|
||||||
"Voice call": "Trucada de veu",
|
"Voice call": "Trucada de veu",
|
||||||
"Video call": "Trucada de vídeo",
|
"Video call": "Trucada de vídeo",
|
||||||
|
@ -179,7 +177,6 @@
|
||||||
"Join Room": "Entra a la sala",
|
"Join Room": "Entra a la sala",
|
||||||
"Upload avatar": "Puja l'avatar",
|
"Upload avatar": "Puja l'avatar",
|
||||||
"Forget room": "Oblida la sala",
|
"Forget room": "Oblida la sala",
|
||||||
"Favourites": "Preferits",
|
|
||||||
"Low priority": "Baixa prioritat",
|
"Low priority": "Baixa prioritat",
|
||||||
"Historical": "Històric",
|
"Historical": "Històric",
|
||||||
"%(roomName)s does not exist.": "La sala %(roomName)s no existeix.",
|
"%(roomName)s does not exist.": "La sala %(roomName)s no existeix.",
|
||||||
|
@ -229,7 +226,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",
|
||||||
"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": {
|
||||||
"one": "%(severalUsers)s s'hi han unit",
|
"one": "%(severalUsers)s s'hi han unit",
|
||||||
|
@ -337,11 +333,9 @@
|
||||||
"This will allow you to reset your password and receive notifications.": "Això us permetrà restablir la vostra contrasenya i rebre notificacions.",
|
"This will allow you to reset your password and receive notifications.": "Això us permetrà restablir la vostra contrasenya i rebre notificacions.",
|
||||||
"Skip": "Omet",
|
"Skip": "Omet",
|
||||||
"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.": "Si anteriorment heu utilitzat un versió de %(brand)s més recent, la vostra sessió podría ser incompatible amb aquesta versió. Tanqueu aquesta finestra i torneu a la versió més recent.",
|
"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.": "Si anteriorment heu utilitzat un versió de %(brand)s més recent, la vostra sessió podría ser incompatible amb aquesta versió. Tanqueu aquesta finestra i torneu a la versió més recent.",
|
||||||
"Name": "Nom",
|
|
||||||
"You must <a>register</a> to use this functionality": "Per poder utilitzar aquesta funcionalitat has de <a>registrar-te</a>",
|
"You must <a>register</a> to use this functionality": "Per poder utilitzar aquesta funcionalitat has de <a>registrar-te</a>",
|
||||||
"You must join the room to see its files": "Per poder veure els fitxers de la sala t'hi has d'unir",
|
"You must join the room to see its files": "Per poder veure els fitxers de la sala t'hi has d'unir",
|
||||||
"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?": "Estàs a punt de ser redirigit a una web de tercers per autenticar el teu compte i poder ser utilitzat amb %(integrationsUrl)s. Vols continuar?",
|
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Estàs a punt de ser redirigit a una web de tercers per autenticar el teu compte i poder ser utilitzat amb %(integrationsUrl)s. Vols continuar?",
|
||||||
"Description": "Descripció",
|
|
||||||
"Reject invitation": "Rebutja la invitació",
|
"Reject invitation": "Rebutja la invitació",
|
||||||
"Are you sure you want to reject the invitation?": "Esteu segur que voleu rebutjar la invitació?",
|
"Are you sure you want to reject the invitation?": "Esteu segur que voleu rebutjar la invitació?",
|
||||||
"Failed to reject invitation": "No s'ha pogut rebutjar la invitació",
|
"Failed to reject invitation": "No s'ha pogut rebutjar la invitació",
|
||||||
|
@ -350,7 +344,6 @@
|
||||||
"Old cryptography data detected": "S'han detectat dades de criptografia antigues",
|
"Old cryptography data detected": "S'han detectat dades de criptografia antigues",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "S'han detectat dades d'una versió antiga del %(brand)s. Això haurà provocat que el xifratge d'extrem a extrem no funcioni correctament a la versió anterior. Els missatges xifrats d'extrem a extrem que s'han intercanviat recentment mentre s'utilitzava la versió anterior no es poden desxifrar en aquesta versió. També pot provocar que els missatges intercanviats amb aquesta versió fallin. Si teniu problemes, sortiu de la sessió i torneu a entrar-hi. Per poder llegir l'historial dels missatges xifrats, exporteu i torneu a importar les vostres claus.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "S'han detectat dades d'una versió antiga del %(brand)s. Això haurà provocat que el xifratge d'extrem a extrem no funcioni correctament a la versió anterior. Els missatges xifrats d'extrem a extrem que s'han intercanviat recentment mentre s'utilitzava la versió anterior no es poden desxifrar en aquesta versió. També pot provocar que els missatges intercanviats amb aquesta versió fallin. Si teniu problemes, sortiu de la sessió i torneu a entrar-hi. Per poder llegir l'historial dels missatges xifrats, exporteu i torneu a importar les vostres claus.",
|
||||||
"Logout": "Surt",
|
"Logout": "Surt",
|
||||||
"Warning": "Avís",
|
|
||||||
"Connectivity to the server has been lost.": "S'ha perdut la connectivitat amb el servidor.",
|
"Connectivity to the server has been lost.": "S'ha perdut la connectivitat amb el servidor.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Els missatges enviats s'emmagatzemaran fins que la vostra connexió hagi tornat.",
|
"Sent messages will be stored until your connection has returned.": "Els missatges enviats s'emmagatzemaran fins que la vostra connexió hagi tornat.",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Sembla que s'està pujant fitxers, esteu segur que voleu sortir?",
|
"You seem to be uploading files, are you sure you want to quit?": "Sembla que s'està pujant fitxers, esteu segur que voleu sortir?",
|
||||||
|
@ -358,7 +351,6 @@
|
||||||
"Search failed": "No s'ha pogut cercar",
|
"Search failed": "No s'ha pogut cercar",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Pot ser que el servidor no estigui disponible, que estigui sobrecarregat o que s'ha esgotat el temps de cerca :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Pot ser que el servidor no estigui disponible, que estigui sobrecarregat o que s'ha esgotat el temps de cerca :(",
|
||||||
"No more results": "No hi ha més resultats",
|
"No more results": "No hi ha més resultats",
|
||||||
"Room": "Sala",
|
|
||||||
"Failed to reject invite": "No s'ha pogut rebutjar la invitació",
|
"Failed to reject invite": "No s'ha pogut rebutjar la invitació",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "S'ha intentat carregar un punt específic dins la línia de temps d'aquesta sala, però no teniu permís per veure el missatge en qüestió.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "S'ha intentat carregar un punt específic dins la línia de temps d'aquesta sala, però no teniu permís per veure el missatge en qüestió.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "S'ha intentat carregar un punt específic de la línia de temps d'aquesta sala, però no s'ha pogut trobar.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "S'ha intentat carregar un punt específic de la línia de temps d'aquesta sala, però no s'ha pogut trobar.",
|
||||||
|
@ -371,7 +363,6 @@
|
||||||
"Sign out": "Tanca la sessió",
|
"Sign out": "Tanca la sessió",
|
||||||
"Import E2E room keys": "Importar claus E2E de sala",
|
"Import E2E room keys": "Importar claus E2E de sala",
|
||||||
"Cryptography": "Criptografia",
|
"Cryptography": "Criptografia",
|
||||||
"Labs": "Laboratoris",
|
|
||||||
"%(brand)s version:": "Versió de %(brand)s:",
|
"%(brand)s version:": "Versió de %(brand)s:",
|
||||||
"Incorrect username and/or password.": "Usuari i/o contrasenya incorrectes.",
|
"Incorrect username and/or password.": "Usuari i/o contrasenya incorrectes.",
|
||||||
"Session ID": "ID de la sessió",
|
"Session ID": "ID de la sessió",
|
||||||
|
@ -515,7 +506,6 @@
|
||||||
"Email addresses": "Adreces de correu electrònic",
|
"Email addresses": "Adreces de correu electrònic",
|
||||||
"Phone numbers": "Números de telèfon",
|
"Phone numbers": "Números de telèfon",
|
||||||
"Language and region": "Idioma i regió",
|
"Language and region": "Idioma i regió",
|
||||||
"Theme": "Tema",
|
|
||||||
"Phone Number": "Número de telèfon",
|
"Phone Number": "Número de telèfon",
|
||||||
"Send typing notifications": "Envia notificacions d'escriptura",
|
"Send typing notifications": "Envia notificacions d'escriptura",
|
||||||
"We encountered an error trying to restore your previous session.": "Hem trobat un error en intentar recuperar la teva sessió prèvia.",
|
"We encountered an error trying to restore your previous session.": "Hem trobat un error en intentar recuperar la teva sessió prèvia.",
|
||||||
|
@ -639,7 +629,17 @@
|
||||||
"offline": "Fora de línia",
|
"offline": "Fora de línia",
|
||||||
"password": "Contrasenya",
|
"password": "Contrasenya",
|
||||||
"settings": "Configuració",
|
"settings": "Configuració",
|
||||||
"unmute": "No silenciïs"
|
"unmute": "No silenciïs",
|
||||||
|
"attachment": "Adjunt",
|
||||||
|
"warning": "Avís",
|
||||||
|
"home": "Inici",
|
||||||
|
"favourites": "Preferits",
|
||||||
|
"room": "Sala",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Nom",
|
||||||
|
"description": "Descripció",
|
||||||
|
"options": "Opcions",
|
||||||
|
"labs": "Laboratoris"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continua",
|
"continue": "Continua",
|
||||||
|
@ -657,5 +657,6 @@
|
||||||
"save": "Desa",
|
"save": "Desa",
|
||||||
"start_chat": "Inicia un xat",
|
"start_chat": "Inicia un xat",
|
||||||
"view_source": "Mostra el codi"
|
"view_source": "Mostra el codi"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Inici"
|
||||||
|
}
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{
|
{
|
||||||
"Close": "Zavřít",
|
"Close": "Zavřít",
|
||||||
"Favourites": "Oblíbené",
|
|
||||||
"Filter room members": "Najít člena místnosti",
|
"Filter room members": "Najít člena místnosti",
|
||||||
"Historical": "Historické",
|
"Historical": "Historické",
|
||||||
"Home": "Domov",
|
|
||||||
"Jump to first unread message.": "Přejít na první nepřečtenou zprávu.",
|
"Jump to first unread message.": "Přejít na první nepřečtenou zprávu.",
|
||||||
"Logout": "Odhlásit se",
|
"Logout": "Odhlásit se",
|
||||||
"Low priority": "Nízká priorita",
|
"Low priority": "Nízká priorita",
|
||||||
|
@ -32,7 +30,6 @@
|
||||||
"Nov": "Lis",
|
"Nov": "Lis",
|
||||||
"Dec": "Pro",
|
"Dec": "Pro",
|
||||||
"Create new room": "Vytvořit novou místnost",
|
"Create new room": "Vytvořit novou místnost",
|
||||||
"Options": "Volby",
|
|
||||||
"Register": "Zaregistrovat",
|
"Register": "Zaregistrovat",
|
||||||
"Cancel": "Storno",
|
"Cancel": "Storno",
|
||||||
"Favourite": "Oblíbené",
|
"Favourite": "Oblíbené",
|
||||||
|
@ -60,7 +57,6 @@
|
||||||
"Are you sure?": "Opravdu?",
|
"Are you sure?": "Opravdu?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Opravdu chcete opustit místnost '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Opravdu chcete opustit místnost '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "Opravdu chcete odmítnout pozvání?",
|
"Are you sure you want to reject the invitation?": "Opravdu chcete odmítnout pozvání?",
|
||||||
"Attachment": "Příloha",
|
|
||||||
"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.": "Nelze se připojit k domovskému serveru – zkontrolujte prosím své připojení, prověřte, zda je <a>SSL certifikát</a> vašeho domovského serveru důvěryhodný, a že některé z rozšíření prohlížeče neblokuje komunikaci.",
|
"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.": "Nelze se připojit k domovskému serveru – zkontrolujte prosím své připojení, prověřte, zda je <a>SSL certifikát</a> vašeho domovského serveru důvěryhodný, a že některé z rozšíření prohlížeče neblokuje komunikaci.",
|
||||||
"Banned users": "Vykázaní uživatelé",
|
"Banned users": "Vykázaní uživatelé",
|
||||||
"Bans user with given id": "Vykáže uživatele s daným id",
|
"Bans user with given id": "Vykáže uživatele s daným id",
|
||||||
|
@ -115,7 +111,6 @@
|
||||||
"Invites user with given id to current room": "Pozve do aktuální místnosti uživatele s daným id",
|
"Invites user with given id to current room": "Pozve do aktuální místnosti uživatele s daným id",
|
||||||
"Join Room": "Vstoupit do místnosti",
|
"Join Room": "Vstoupit do místnosti",
|
||||||
"Moderator": "Moderátor",
|
"Moderator": "Moderátor",
|
||||||
"Name": "Název",
|
|
||||||
"New passwords don't match": "Nová hesla se neshodují",
|
"New passwords don't match": "Nová hesla se neshodují",
|
||||||
"New passwords must match each other.": "Nová hesla se musí shodovat.",
|
"New passwords must match each other.": "Nová hesla se musí shodovat.",
|
||||||
"not specified": "neurčeno",
|
"not specified": "neurčeno",
|
||||||
|
@ -382,14 +377,11 @@
|
||||||
"Skip": "Přeskočit",
|
"Skip": "Přeskočit",
|
||||||
"You must <a>register</a> to use this functionality": "Pro využívání této funkce se <a>zaregistrujte</a>",
|
"You must <a>register</a> to use this functionality": "Pro využívání této funkce se <a>zaregistrujte</a>",
|
||||||
"You must join the room to see its files": "Pro zobrazení souborů musíte do místnosti vstoupit",
|
"You must join the room to see its files": "Pro zobrazení souborů musíte do místnosti vstoupit",
|
||||||
"Description": "Popis",
|
|
||||||
"Reject invitation": "Odmítnout pozvání",
|
"Reject invitation": "Odmítnout pozvání",
|
||||||
"Signed Out": "Jste odhlášeni",
|
"Signed Out": "Jste odhlášeni",
|
||||||
"Connectivity to the server has been lost.": "Spojení se serverem bylo přerušeno.",
|
"Connectivity to the server has been lost.": "Spojení se serverem bylo přerušeno.",
|
||||||
"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",
|
|
||||||
"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",
|
||||||
"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",
|
||||||
"No media permissions": "Žádná oprávnění k médiím",
|
"No media permissions": "Žádná oprávnění k médiím",
|
||||||
|
@ -410,7 +402,6 @@
|
||||||
"collapse": "sbalit",
|
"collapse": "sbalit",
|
||||||
"expand": "rozbalit",
|
"expand": "rozbalit",
|
||||||
"Old cryptography data detected": "Nalezeny starší šifrované datové zprávy",
|
"Old cryptography data detected": "Nalezeny starší šifrované datové zprávy",
|
||||||
"Warning": "Upozornění",
|
|
||||||
"Sunday": "Neděle",
|
"Sunday": "Neděle",
|
||||||
"Messages sent by bot": "Zprávy poslané robotem",
|
"Messages sent by bot": "Zprávy poslané robotem",
|
||||||
"Notification targets": "Cíle oznámení",
|
"Notification targets": "Cíle oznámení",
|
||||||
|
@ -570,7 +561,6 @@
|
||||||
"Encrypted messages in one-to-one chats": "Šifrované přímé zprávy",
|
"Encrypted messages in one-to-one chats": "Šifrované přímé zprávy",
|
||||||
"Email addresses": "E-mailové adresy",
|
"Email addresses": "E-mailové adresy",
|
||||||
"Language and region": "Jazyk a region",
|
"Language and region": "Jazyk a region",
|
||||||
"Theme": "Motiv vzhledu",
|
|
||||||
"Account management": "Správa účtu",
|
"Account management": "Správa účtu",
|
||||||
"Phone numbers": "Telefonní čísla",
|
"Phone numbers": "Telefonní čísla",
|
||||||
"Phone Number": "Telefonní číslo",
|
"Phone Number": "Telefonní číslo",
|
||||||
|
@ -1449,7 +1439,6 @@
|
||||||
"Size must be a number": "Velikost musí být číslo",
|
"Size must be a number": "Velikost musí být číslo",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Vlastní velikost písma může být pouze mezi %(min)s pt a %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Vlastní velikost písma může být pouze mezi %(min)s pt a %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Použijte velikost mezi %(min)s pt a %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Použijte velikost mezi %(min)s pt a %(max)s pt",
|
||||||
"Appearance": "Vzhled",
|
|
||||||
"Please verify the room ID or address and try again.": "Ověřte prosím, že ID místnosti je správné a zkuste to znovu.",
|
"Please verify the room ID or address and try again.": "Ověřte prosím, že ID místnosti je správné a zkuste to znovu.",
|
||||||
"Room ID or address of ban list": "ID nebo adresa seznamu zablokovaných",
|
"Room ID or address of ban list": "ID nebo adresa seznamu zablokovaných",
|
||||||
"Your homeserver has exceeded its user limit.": "Na vašem domovském serveru byl překročen limit počtu uživatelů.",
|
"Your homeserver has exceeded its user limit.": "Na vašem domovském serveru byl překročen limit počtu uživatelů.",
|
||||||
|
@ -1457,8 +1446,6 @@
|
||||||
"Contact your <a>server admin</a>.": "Kontaktujte <a>administrátora serveru</a>.",
|
"Contact your <a>server admin</a>.": "Kontaktujte <a>administrátora serveru</a>.",
|
||||||
"Ok": "Ok",
|
"Ok": "Ok",
|
||||||
"Are you sure you want to cancel entering passphrase?": "Chcete určitě zrušit zadávání přístupové fráze?",
|
"Are you sure you want to cancel entering passphrase?": "Chcete určitě zrušit zadávání přístupové fráze?",
|
||||||
"Light": "Světlý",
|
|
||||||
"Dark": "Tmavý",
|
|
||||||
"You joined the call": "Připojili jste se k hovoru",
|
"You joined the call": "Připojili jste se k hovoru",
|
||||||
"%(senderName)s joined the call": "%(senderName)s se připojil k hovoru",
|
"%(senderName)s joined the call": "%(senderName)s se připojil k hovoru",
|
||||||
"Call in progress": "Probíhá hovor",
|
"Call in progress": "Probíhá hovor",
|
||||||
|
@ -1678,7 +1665,6 @@
|
||||||
"Keys restored": "Klíče byly obnoveny",
|
"Keys restored": "Klíče byly obnoveny",
|
||||||
"You're all caught up.": "Vše vyřízeno.",
|
"You're all caught up.": "Vše vyřízeno.",
|
||||||
"You've previously used a newer version of %(brand)s with this session. To use this version again with end to end encryption, you will need to sign out and back in again.": "V této relaci jste již dříve používali novější verzi %(brand)s. Chcete-li tuto verzi znovu použít s šifrováním, budete se muset odhlásit a znovu přihlásit.",
|
"You've previously used a newer version of %(brand)s with this session. To use this version again with end to end encryption, you will need to sign out and back in again.": "V této relaci jste již dříve používali novější verzi %(brand)s. Chcete-li tuto verzi znovu použít s šifrováním, budete se muset odhlásit a znovu přihlásit.",
|
||||||
"Homeserver": "Domovský server",
|
|
||||||
"Continue with %(provider)s": "Pokračovat s %(provider)s",
|
"Continue with %(provider)s": "Pokračovat s %(provider)s",
|
||||||
"Server Options": "Možnosti serveru",
|
"Server Options": "Možnosti serveru",
|
||||||
"This version of %(brand)s does not support viewing some encrypted files": "Tato verze %(brand)s nepodporuje zobrazení některých šifrovaných souborů",
|
"This version of %(brand)s does not support viewing some encrypted files": "Tato verze %(brand)s nepodporuje zobrazení některých šifrovaných souborů",
|
||||||
|
@ -2202,9 +2188,7 @@
|
||||||
"Your private space": "Váš soukromý prostor",
|
"Your private space": "Váš soukromý prostor",
|
||||||
"Your public space": "Váš veřejný prostor",
|
"Your public space": "Váš veřejný prostor",
|
||||||
"Invite only, best for yourself or teams": "Pouze pozvat, nejlepší pro sebe nebo pro týmy",
|
"Invite only, best for yourself or teams": "Pouze pozvat, nejlepší pro sebe nebo pro týmy",
|
||||||
"Private": "Soukromý",
|
|
||||||
"Open space for anyone, best for communities": "Otevřený prostor pro kohokoli, nejlepší pro komunity",
|
"Open space for anyone, best for communities": "Otevřený prostor pro kohokoli, nejlepší pro komunity",
|
||||||
"Public": "Veřejný",
|
|
||||||
"Create a space": "Vytvořit prostor",
|
"Create a space": "Vytvořit prostor",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Po odeslání zprávy přejít na konec časové osy",
|
"Jump to the bottom of the timeline when you send a message": "Po odeslání zprávy přejít na konec časové osy",
|
||||||
"This homeserver has been blocked by its administrator.": "Tento domovský server byl zablokován jeho správcem.",
|
"This homeserver has been blocked by its administrator.": "Tento domovský server byl zablokován jeho správcem.",
|
||||||
|
@ -2300,7 +2284,6 @@
|
||||||
"Select a room below first": "Nejprve si vyberte místnost níže",
|
"Select a room below first": "Nejprve si vyberte místnost níže",
|
||||||
"Join the beta": "Připojit se k beta verzi",
|
"Join the beta": "Připojit se k beta verzi",
|
||||||
"Leave the beta": "Opustit beta verzi",
|
"Leave the beta": "Opustit beta verzi",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "Chcete místo toho přidat novou místnost?",
|
"Want to add a new room instead?": "Chcete místo toho přidat novou místnost?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Přidávání místnosti...",
|
"one": "Přidávání místnosti...",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Chcete-li se těmto problémům vyhnout, vytvořte pro plánovanou konverzaci <a>novou šifrovanou místnost</a>.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Chcete-li se těmto problémům vyhnout, vytvořte pro plánovanou konverzaci <a>novou šifrovanou místnost</a>.",
|
||||||
"Are you sure you want to add encryption to this public room?": "Opravdu chcete šifrovat tuto veřejnou místnost?",
|
"Are you sure you want to add encryption to this public room?": "Opravdu chcete šifrovat tuto veřejnou místnost?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "Křížové podepisování je připraveno, ale klíče nejsou zálohovány.",
|
"Cross-signing is ready but keys are not backed up.": "Křížové podepisování je připraveno, ale klíče nejsou zálohovány.",
|
||||||
"Thread": "Vlákno",
|
|
||||||
"The above, but in <Room /> as well": "Výše uvedené, ale také v <Room />",
|
"The above, but in <Room /> as well": "Výše uvedené, ale také v <Room />",
|
||||||
"The above, but in any room you are joined or invited to as well": "Výše uvedené, ale také v jakékoli místnosti, ke které jste připojeni nebo do které jste pozváni",
|
"The above, but in any room you are joined or invited to as well": "Výše uvedené, ale také v jakékoli místnosti, ke které jste připojeni nebo do které jste pozváni",
|
||||||
"Autoplay videos": "Automatické přehrávání videí",
|
"Autoplay videos": "Automatické přehrávání videí",
|
||||||
|
@ -2647,7 +2629,6 @@
|
||||||
"Unban from %(roomName)s": "Zrušit vykázání z %(roomName)s",
|
"Unban from %(roomName)s": "Zrušit vykázání z %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Stále budou mít přístup ke všemu, čeho nejste správcem.",
|
"They'll still be able to access whatever you're not an admin of.": "Stále budou mít přístup ke všemu, čeho nejste správcem.",
|
||||||
"Disinvite from %(roomName)s": "Zrušit pozvánku do %(roomName)s",
|
"Disinvite from %(roomName)s": "Zrušit pozvánku do %(roomName)s",
|
||||||
"Threads": "Vlákna",
|
|
||||||
"Create poll": "Vytvořit hlasování",
|
"Create poll": "Vytvořit hlasování",
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Aktualizace prostoru...",
|
"one": "Aktualizace prostoru...",
|
||||||
|
@ -3346,7 +3327,6 @@
|
||||||
"It’s what you’re here for, so lets get to it": "Kvůli tomu jste tady, tak se do toho pusťte",
|
"It’s what you’re here for, so lets get to it": "Kvůli tomu jste tady, tak se do toho pusťte",
|
||||||
"Find and invite your friends": "Najděte a pozvěte své přátele",
|
"Find and invite your friends": "Najděte a pozvěte své přátele",
|
||||||
"You made it!": "Zvládli jste to!",
|
"You made it!": "Zvládli jste to!",
|
||||||
"Help": "Nápověda",
|
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Android": "Android",
|
"Android": "Android",
|
||||||
"We're creating a room with %(names)s": "Vytváříme místnost s %(names)s",
|
"We're creating a room with %(names)s": "Vytváříme místnost s %(names)s",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Requires your server to support MSC3030": "Vyžaduje, aby váš server podporoval MSC3030",
|
"Requires your server to support MSC3030": "Vyžaduje, aby váš server podporoval MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "Vyžaduje, aby váš server podporoval stabilní verzi MSC3827",
|
"Requires your server to support the stable version of MSC3827": "Vyžaduje, aby váš server podporoval stabilní verzi MSC3827",
|
||||||
"Use your account to continue.": "Pro pokračování použijte svůj účet.",
|
"Use your account to continue.": "Pro pokračování použijte svůj účet.",
|
||||||
"User": "Uživatel",
|
|
||||||
"Show avatars in user, room and event mentions": "Zobrazovat avatary ve zmínkách o uživatelích, místnostech a událostech",
|
"Show avatars in user, room and event mentions": "Zobrazovat avatary ve zmínkách o uživatelích, místnostech a událostech",
|
||||||
"Message from %(user)s": "Zpráva od %(user)s",
|
"Message from %(user)s": "Zpráva od %(user)s",
|
||||||
"Message in %(room)s": "Zpráva v %(room)s",
|
"Message in %(room)s": "Zpráva v %(room)s",
|
||||||
|
@ -3943,7 +3922,28 @@
|
||||||
"unmute": "Povolit",
|
"unmute": "Povolit",
|
||||||
"username": "Uživatelské jméno",
|
"username": "Uživatelské jméno",
|
||||||
"verification_cancelled": "Oveření bylo zrušeno",
|
"verification_cancelled": "Oveření bylo zrušeno",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Příloha",
|
||||||
|
"light": "Světlý",
|
||||||
|
"dark": "Tmavý",
|
||||||
|
"warning": "Upozornění",
|
||||||
|
"home": "Domov",
|
||||||
|
"favourites": "Oblíbené",
|
||||||
|
"thread": "Vlákno",
|
||||||
|
"threads": "Vlákna",
|
||||||
|
"user": "Uživatel",
|
||||||
|
"room": "Místnost",
|
||||||
|
"theme": "Motiv vzhledu",
|
||||||
|
"name": "Název",
|
||||||
|
"description": "Popis",
|
||||||
|
"public": "Veřejný",
|
||||||
|
"private": "Soukromý",
|
||||||
|
"options": "Volby",
|
||||||
|
"appearance": "Vzhled",
|
||||||
|
"homeserver": "Domovský server",
|
||||||
|
"help": "Nápověda",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Experimentální funkce"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Pokračovat",
|
"continue": "Pokračovat",
|
||||||
|
@ -3980,5 +3980,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Uživatelská nabídka"
|
"user_menu": "Uživatelská nabídka"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Domov"
|
||||||
|
}
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
{
|
{
|
||||||
"Filter room members": "Filter medlemmer",
|
"Filter room members": "Filter medlemmer",
|
||||||
"Favourites": "Favoritter",
|
|
||||||
"Rooms": "Rum",
|
"Rooms": "Rum",
|
||||||
"Low priority": "Lav prioritet",
|
"Low priority": "Lav prioritet",
|
||||||
"Historical": "Historisk",
|
"Historical": "Historisk",
|
||||||
"New passwords must match each other.": "Nye adgangskoder skal matche hinanden.",
|
"New passwords must match each other.": "Nye adgangskoder skal matche hinanden.",
|
||||||
"A new password must be entered.": "Der skal indtastes en ny adgangskode.",
|
"A new password must be entered.": "Der skal indtastes en ny adgangskode.",
|
||||||
"The email address linked to your account must be entered.": "Den emailadresse, der tilhører til din adgang, skal indtastes.",
|
"The email address linked to your account must be entered.": "Den emailadresse, der tilhører til din adgang, skal indtastes.",
|
||||||
"Name": "Navn",
|
|
||||||
"Session ID": "Sessions ID",
|
"Session ID": "Sessions ID",
|
||||||
"Displays action": "Viser handling",
|
"Displays action": "Viser handling",
|
||||||
"Bans user with given id": "Forbyder bruger med givet id",
|
"Bans user with given id": "Forbyder bruger med givet id",
|
||||||
|
@ -115,7 +113,6 @@
|
||||||
"Changelog": "Ændringslog",
|
"Changelog": "Ændringslog",
|
||||||
"Waiting for response from server": "Venter på svar fra server",
|
"Waiting for response from server": "Venter på svar fra server",
|
||||||
"Off": "Slukket",
|
"Off": "Slukket",
|
||||||
"Warning": "Advarsel",
|
|
||||||
"This Room": "Dette rum",
|
"This Room": "Dette rum",
|
||||||
"Messages containing my display name": "Beskeder der indeholder mit viste navn",
|
"Messages containing my display name": "Beskeder der indeholder mit viste navn",
|
||||||
"Messages in one-to-one chats": "Beskeder i en-til-en chats",
|
"Messages in one-to-one chats": "Beskeder i en-til-en chats",
|
||||||
|
@ -354,7 +351,6 @@
|
||||||
"Security & Privacy": "Sikkerhed & Privatliv",
|
"Security & Privacy": "Sikkerhed & Privatliv",
|
||||||
"Who can read history?": "Hvem kan læse historikken?",
|
"Who can read history?": "Hvem kan læse historikken?",
|
||||||
"Enable encryption?": "Aktiver kryptering?",
|
"Enable encryption?": "Aktiver kryptering?",
|
||||||
"Description": "Beskrivelse",
|
|
||||||
"Create a Group Chat": "Opret en gruppechat",
|
"Create a Group Chat": "Opret en gruppechat",
|
||||||
"Explore Public Rooms": "Udforsk offentlige rum",
|
"Explore Public Rooms": "Udforsk offentlige rum",
|
||||||
"Send a Direct Message": "Send en Direkte Besked",
|
"Send a Direct Message": "Send en Direkte Besked",
|
||||||
|
@ -398,7 +394,6 @@
|
||||||
"Message deleted on %(date)s": "Besked slettet d. %(date)s",
|
"Message deleted on %(date)s": "Besked slettet d. %(date)s",
|
||||||
"Message deleted by %(name)s": "Besked slettet af %(name)s",
|
"Message deleted by %(name)s": "Besked slettet af %(name)s",
|
||||||
"Message deleted": "Besked slettet",
|
"Message deleted": "Besked slettet",
|
||||||
"Theme": "Tema",
|
|
||||||
"France": "Frankrig",
|
"France": "Frankrig",
|
||||||
"Finland": "Finland",
|
"Finland": "Finland",
|
||||||
"Egypt": "Egypten",
|
"Egypt": "Egypten",
|
||||||
|
@ -703,7 +698,12 @@
|
||||||
"mute": "Sæt på lydløs",
|
"mute": "Sæt på lydløs",
|
||||||
"no_results": "Ingen resultater",
|
"no_results": "Ingen resultater",
|
||||||
"password": "Adgangskode",
|
"password": "Adgangskode",
|
||||||
"settings": "Indstillinger"
|
"settings": "Indstillinger",
|
||||||
|
"warning": "Advarsel",
|
||||||
|
"favourites": "Favoritter",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Navn",
|
||||||
|
"description": "Beskrivelse"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Fortsæt",
|
"continue": "Fortsæt",
|
||||||
|
@ -722,4 +722,4 @@
|
||||||
"save": "Gem",
|
"save": "Gem",
|
||||||
"view_source": "Se Kilde"
|
"view_source": "Se Kilde"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
{
|
{
|
||||||
"Filter room members": "Raummitglieder filtern",
|
"Filter room members": "Raummitglieder filtern",
|
||||||
"Favourites": "Favoriten",
|
|
||||||
"Rooms": "Räume",
|
"Rooms": "Räume",
|
||||||
"Low priority": "Niedrige Priorität",
|
"Low priority": "Niedrige Priorität",
|
||||||
"Historical": "Archiv",
|
"Historical": "Archiv",
|
||||||
"New passwords must match each other.": "Die neuen Passwörter müssen identisch sein.",
|
"New passwords must match each other.": "Die neuen Passwörter müssen identisch sein.",
|
||||||
"A new password must be entered.": "Es muss ein neues Passwort eingegeben werden.",
|
"A new password must be entered.": "Es muss ein neues Passwort eingegeben werden.",
|
||||||
"The email address linked to your account must be entered.": "Es muss die mit dem Benutzerkonto verbundene E-Mail-Adresse eingegeben werden.",
|
"The email address linked to your account must be entered.": "Es muss die mit dem Benutzerkonto verbundene E-Mail-Adresse eingegeben werden.",
|
||||||
"Name": "Name",
|
|
||||||
"Session ID": "Sitzungs-ID",
|
"Session ID": "Sitzungs-ID",
|
||||||
"Displays action": "Als Aktionen anzeigen",
|
"Displays action": "Als Aktionen anzeigen",
|
||||||
"Bans user with given id": "Verbannt den Benutzer mit der angegebenen ID",
|
"Bans user with given id": "Verbannt den Benutzer mit der angegebenen ID",
|
||||||
|
@ -56,7 +54,6 @@
|
||||||
"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",
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "Server ist nicht verfügbar, überlastet oder du bist auf einen Programmfehler gestoßen.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "Server ist nicht verfügbar, überlastet oder du bist auf einen Programmfehler gestoßen.",
|
||||||
"Labs": "Labor",
|
|
||||||
"Unable to add email address": "E-Mail-Adresse konnte nicht hinzugefügt werden",
|
"Unable to add email address": "E-Mail-Adresse konnte nicht hinzugefügt werden",
|
||||||
"Unable to remove contact information": "Die Kontaktinformationen können nicht gelöscht werden",
|
"Unable to remove contact information": "Die Kontaktinformationen können nicht gelöscht werden",
|
||||||
"Unable to verify email address.": "Die E-Mail-Adresse konnte nicht verifiziert werden.",
|
"Unable to verify email address.": "Die E-Mail-Adresse konnte nicht verifiziert werden.",
|
||||||
|
@ -130,7 +127,6 @@
|
||||||
"one": "und ein weiterer …"
|
"one": "und ein weiterer …"
|
||||||
},
|
},
|
||||||
"Are you sure?": "Bist du sicher?",
|
"Are you sure?": "Bist du sicher?",
|
||||||
"Attachment": "Anhang",
|
|
||||||
"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>.": "Es kann keine Verbindung zum Heim-Server via HTTP aufgebaut werden, wenn die Adresszeile des Browsers eine HTTPS-URL enthält. Entweder HTTPS verwenden oder alternativ <a>unsichere Skripte erlauben</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>.": "Es kann keine Verbindung zum Heim-Server via HTTP aufgebaut werden, wenn die Adresszeile des Browsers eine HTTPS-URL enthält. Entweder HTTPS verwenden oder alternativ <a>unsichere Skripte erlauben</a>.",
|
||||||
"Command error": "Fehler im Befehl",
|
"Command error": "Fehler im Befehl",
|
||||||
"Decrypt %(text)s": "%(text)s entschlüsseln",
|
"Decrypt %(text)s": "%(text)s entschlüsseln",
|
||||||
|
@ -156,7 +152,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Du scheinst in einem Gespräch zu sein, bist du sicher, dass du aufhören willst?",
|
"You seem to be in a call, are you sure you want to quit?": "Du scheinst in einem Gespräch zu sein, bist du sicher, dass du aufhören willst?",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Du scheinst Dateien hochzuladen. Bist du sicher schließen zu wollen?",
|
"You seem to be uploading files, are you sure you want to quit?": "Du scheinst Dateien hochzuladen. Bist du sicher schließen zu wollen?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kannst diese Änderung nicht rückgängig machen, da der Nutzer dieselbe Berechtigungsstufe wie du selbst erhalten wird.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kannst diese Änderung nicht rückgängig machen, da der Nutzer dieselbe Berechtigungsstufe wie du selbst erhalten wird.",
|
||||||
"Room": "Raum",
|
|
||||||
"Cancel": "Abbrechen",
|
"Cancel": "Abbrechen",
|
||||||
"Failed to load timeline position": "Laden der Verlaufsposition fehlgeschlagen",
|
"Failed to load timeline position": "Laden der Verlaufsposition fehlgeschlagen",
|
||||||
"%(items)s and %(lastItem)s": "%(items)s und %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s und %(lastItem)s",
|
||||||
|
@ -208,7 +203,6 @@
|
||||||
"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?": "Um dein Konto für die Verwendung von %(integrationsUrl)s zu authentifizieren, wirst du jetzt auf die Website eines Drittanbieters weitergeleitet. Möchtest du fortfahren?",
|
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "Um dein Konto für die Verwendung von %(integrationsUrl)s zu authentifizieren, wirst du jetzt auf die Website eines Drittanbieters weitergeleitet. Möchtest du fortfahren?",
|
||||||
"Start automatically after system login": "Nach Systemstart automatisch starten",
|
"Start automatically after system login": "Nach Systemstart automatisch starten",
|
||||||
"Jump to first unread message.": "Zur ersten ungelesenen Nachricht springen.",
|
"Jump to first unread message.": "Zur ersten ungelesenen Nachricht springen.",
|
||||||
"Options": "Optionen",
|
|
||||||
"Invited": "Eingeladen",
|
"Invited": "Eingeladen",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s hat das Raumbild entfernt.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s hat das Raumbild entfernt.",
|
||||||
"No Webcams detected": "Keine Webcam erkannt",
|
"No Webcams detected": "Keine Webcam erkannt",
|
||||||
|
@ -241,7 +235,6 @@
|
||||||
"Create new room": "Neuer Raum",
|
"Create new room": "Neuer Raum",
|
||||||
"New Password": "Neues Passwort",
|
"New Password": "Neues Passwort",
|
||||||
"Something went wrong!": "Etwas ist schiefgelaufen!",
|
"Something went wrong!": "Etwas ist schiefgelaufen!",
|
||||||
"Home": "Startseite",
|
|
||||||
"Accept": "Annehmen",
|
"Accept": "Annehmen",
|
||||||
"Admin Tools": "Administrationswerkzeuge",
|
"Admin Tools": "Administrationswerkzeuge",
|
||||||
"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.": "Verbindung zum Heim-Server fehlgeschlagen – bitte überprüfe die Internetverbindung und stelle sicher, dass dem <a>SSL-Zertifikat deines Heimservers</a> vertraut wird und dass Anfragen nicht durch eine Browser-Erweiterung blockiert werden.",
|
"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.": "Verbindung zum Heim-Server fehlgeschlagen – bitte überprüfe die Internetverbindung und stelle sicher, dass dem <a>SSL-Zertifikat deines Heimservers</a> vertraut wird und dass Anfragen nicht durch eine Browser-Erweiterung blockiert werden.",
|
||||||
|
@ -286,7 +279,6 @@
|
||||||
"Stops ignoring a user, showing their messages going forward": "Benutzer nicht mehr ignorieren und neue Nachrichten wieder anzeigen",
|
"Stops ignoring a user, showing their messages going forward": "Benutzer nicht mehr ignorieren und neue Nachrichten wieder anzeigen",
|
||||||
"Ignores a user, hiding their messages from you": "Nutzer blockieren und dessen Nachrichten ausblenden",
|
"Ignores a user, hiding their messages from you": "Nutzer blockieren und dessen Nachrichten ausblenden",
|
||||||
"Banned by %(displayName)s": "Verbannt von %(displayName)s",
|
"Banned by %(displayName)s": "Verbannt von %(displayName)s",
|
||||||
"Description": "Beschreibung",
|
|
||||||
"Unknown": "Unbekannt",
|
"Unknown": "Unbekannt",
|
||||||
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s hat die angehefteten Nachrichten für diesen Raum geändert.",
|
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s hat die angehefteten Nachrichten für diesen Raum geändert.",
|
||||||
"Jump to read receipt": "Zur Lesebestätigung springen",
|
"Jump to read receipt": "Zur Lesebestätigung springen",
|
||||||
|
@ -410,7 +402,6 @@
|
||||||
"collapse": "Verbergen",
|
"collapse": "Verbergen",
|
||||||
"expand": "Erweitern",
|
"expand": "Erweitern",
|
||||||
"Old cryptography data detected": "Alte Kryptografiedaten erkannt",
|
"Old cryptography data detected": "Alte Kryptografiedaten erkannt",
|
||||||
"Warning": "Warnung",
|
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Es wurden Daten von einer älteren Version von %(brand)s entdeckt. Dies wird zu Fehlern in der Ende-zu-Ende-Verschlüsselung der älteren Version geführt haben. Ende-zu-Ende verschlüsselte Nachrichten, die ausgetauscht wruden, während die ältere Version genutzt wurde, werden in dieser Version nicht entschlüsselbar sein. Es kann auch zu Fehlern mit Nachrichten führen, die mit dieser Version versendet werden. Wenn du Probleme feststellst, melde dich ab und wieder an. Um die Historie zu behalten, ex- und reimportiere deine Schlüssel.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Es wurden Daten von einer älteren Version von %(brand)s entdeckt. Dies wird zu Fehlern in der Ende-zu-Ende-Verschlüsselung der älteren Version geführt haben. Ende-zu-Ende verschlüsselte Nachrichten, die ausgetauscht wruden, während die ältere Version genutzt wurde, werden in dieser Version nicht entschlüsselbar sein. Es kann auch zu Fehlern mit Nachrichten führen, die mit dieser Version versendet werden. Wenn du Probleme feststellst, melde dich ab und wieder an. Um die Historie zu behalten, ex- und reimportiere deine Schlüssel.",
|
||||||
"Send an encrypted reply…": "Verschlüsselte Antwort senden …",
|
"Send an encrypted reply…": "Verschlüsselte Antwort senden …",
|
||||||
"Send an encrypted message…": "Verschlüsselte Nachricht senden …",
|
"Send an encrypted message…": "Verschlüsselte Nachricht senden …",
|
||||||
|
@ -647,7 +638,6 @@
|
||||||
"Email addresses": "E-Mail-Adressen",
|
"Email addresses": "E-Mail-Adressen",
|
||||||
"Phone numbers": "Telefonnummern",
|
"Phone numbers": "Telefonnummern",
|
||||||
"Language and region": "Sprache und Region",
|
"Language and region": "Sprache und Region",
|
||||||
"Theme": "Design",
|
|
||||||
"Account management": "Benutzerkontenverwaltung",
|
"Account management": "Benutzerkontenverwaltung",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "<a>Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "<a>Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke <a>hier</a> oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke <a>hier</a> oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.",
|
||||||
|
@ -1513,7 +1503,6 @@
|
||||||
"Size must be a number": "Schriftgröße muss eine Zahl sein",
|
"Size must be a number": "Schriftgröße muss eine Zahl sein",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Eigene Schriftgröße kann nur eine Zahl zwischen %(min)s pt und %(max)s pt sein",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Eigene Schriftgröße kann nur eine Zahl zwischen %(min)s pt und %(max)s pt sein",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Verwende eine Zahl zwischen %(min)s pt und %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Verwende eine Zahl zwischen %(min)s pt und %(max)s pt",
|
||||||
"Appearance": "Erscheinungsbild",
|
|
||||||
"Jump to oldest unread message": "Zur ältesten ungelesenen Nachricht springen",
|
"Jump to oldest unread message": "Zur ältesten ungelesenen Nachricht springen",
|
||||||
"Upload a file": "Eine Datei hochladen",
|
"Upload a file": "Eine Datei hochladen",
|
||||||
"Dismiss read marker and jump to bottom": "Entferne Lesemarker und springe nach unten",
|
"Dismiss read marker and jump to bottom": "Entferne Lesemarker und springe nach unten",
|
||||||
|
@ -1555,8 +1544,6 @@
|
||||||
"Activity": "Aktivität",
|
"Activity": "Aktivität",
|
||||||
"A-Z": "A–Z",
|
"A-Z": "A–Z",
|
||||||
"Looks good!": "Sieht gut aus!",
|
"Looks good!": "Sieht gut aus!",
|
||||||
"Light": "Hell",
|
|
||||||
"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!",
|
||||||
"Use a system font": "Systemschriftart verwenden",
|
"Use a system font": "Systemschriftart verwenden",
|
||||||
|
@ -2060,7 +2047,6 @@
|
||||||
"Continuing without email": "Ohne E-Mail fortfahren",
|
"Continuing without email": "Ohne E-Mail fortfahren",
|
||||||
"Reason (optional)": "Grund (optional)",
|
"Reason (optional)": "Grund (optional)",
|
||||||
"Continue with %(provider)s": "Weiter mit %(provider)s",
|
"Continue with %(provider)s": "Weiter mit %(provider)s",
|
||||||
"Homeserver": "Heim-Server",
|
|
||||||
"Server Options": "Server-Einstellungen",
|
"Server Options": "Server-Einstellungen",
|
||||||
"No other application is using the webcam": "keine andere Anwendung auf die Webcam zugreift",
|
"No other application is using the webcam": "keine andere Anwendung auf die Webcam zugreift",
|
||||||
"Permission is granted to use the webcam": "Zugriff auf Webcam gestattet",
|
"Permission is granted to use the webcam": "Zugriff auf Webcam gestattet",
|
||||||
|
@ -2169,8 +2155,6 @@
|
||||||
"Your public space": "Dein öffentlicher Space",
|
"Your public space": "Dein öffentlicher Space",
|
||||||
"Invite only, best for yourself or teams": "Nur für Eingeladene – optimal für dich selbst oder Teams",
|
"Invite only, best for yourself or teams": "Nur für Eingeladene – optimal für dich selbst oder Teams",
|
||||||
"Open space for anyone, best for communities": "Öffne den Space für alle - am besten für Communities",
|
"Open space for anyone, best for communities": "Öffne den Space für alle - am besten für Communities",
|
||||||
"Private": "Privat",
|
|
||||||
"Public": "Öffentlich",
|
|
||||||
"Create a space": "Neuen Space erstellen",
|
"Create a space": "Neuen Space erstellen",
|
||||||
"Delete": "Löschen",
|
"Delete": "Löschen",
|
||||||
"This homeserver has been blocked by its administrator.": "Dieser Heim-Server wurde von seiner Administration geblockt.",
|
"This homeserver has been blocked by its administrator.": "Dieser Heim-Server wurde von seiner Administration geblockt.",
|
||||||
|
@ -2303,7 +2287,6 @@
|
||||||
"Select a room below first": "Wähle vorher einen Raum aus",
|
"Select a room below first": "Wähle vorher einen Raum aus",
|
||||||
"Join the beta": "Beta beitreten",
|
"Join the beta": "Beta beitreten",
|
||||||
"Leave the beta": "Beta verlassen",
|
"Leave the beta": "Beta verlassen",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "Willst du einen neuen Raum hinzufügen?",
|
"Want to add a new room instead?": "Willst du einen neuen Raum hinzufügen?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Raum hinzufügen …",
|
"one": "Raum hinzufügen …",
|
||||||
|
@ -2554,7 +2537,6 @@
|
||||||
"Role in <RoomName/>": "Rolle in <RoomName/>",
|
"Role in <RoomName/>": "Rolle in <RoomName/>",
|
||||||
"Results": "Ergebnisse",
|
"Results": "Ergebnisse",
|
||||||
"Rooms and spaces": "Räume und Spaces",
|
"Rooms and spaces": "Räume und Spaces",
|
||||||
"Thread": "Thread",
|
|
||||||
"Send a sticker": "Sticker senden",
|
"Send a sticker": "Sticker senden",
|
||||||
"Are you sure you want to make this encrypted room public?": "Willst du diesen verschlüsselten Raum wirklich öffentlich machen?",
|
"Are you sure you want to make this encrypted room public?": "Willst du diesen verschlüsselten Raum wirklich öffentlich machen?",
|
||||||
"Unknown failure": "Unbekannter Fehler",
|
"Unknown failure": "Unbekannter Fehler",
|
||||||
|
@ -2622,7 +2604,6 @@
|
||||||
"Unban from %(roomName)s": "Von %(roomName)s entbannen",
|
"Unban from %(roomName)s": "Von %(roomName)s entbannen",
|
||||||
"Disinvite from %(roomName)s": "Einladung für %(roomName)s zurückziehen",
|
"Disinvite from %(roomName)s": "Einladung für %(roomName)s zurückziehen",
|
||||||
"Export chat": "Unterhaltung exportieren",
|
"Export chat": "Unterhaltung exportieren",
|
||||||
"Threads": "Threads",
|
|
||||||
"Insert link": "Link einfügen",
|
"Insert link": "Link einfügen",
|
||||||
"Create poll": "Umfrage erstellen",
|
"Create poll": "Umfrage erstellen",
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
|
@ -3351,7 +3332,6 @@
|
||||||
"Enter fullscreen": "Vollbild",
|
"Enter fullscreen": "Vollbild",
|
||||||
"Map feedback": "Rückmeldung zur Karte",
|
"Map feedback": "Rückmeldung zur Karte",
|
||||||
"Online community members": "Online Community-Mitglieder",
|
"Online community members": "Online Community-Mitglieder",
|
||||||
"Help": "Hilfe",
|
|
||||||
"You don't have permission to share locations": "Dir fehlt die Berechtigung, Echtzeit-Standorte freigeben zu dürfen",
|
"You don't have permission to share locations": "Dir fehlt die Berechtigung, Echtzeit-Standorte freigeben zu dürfen",
|
||||||
"Un-maximise": "Maximieren rückgängig machen",
|
"Un-maximise": "Maximieren rückgängig machen",
|
||||||
"Create video room": "Videoraum erstellen",
|
"Create video room": "Videoraum erstellen",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "Dies kann aktuell nur per config.json aktiviert werden",
|
"Can currently only be enabled via config.json": "Dies kann aktuell nur per config.json aktiviert werden",
|
||||||
"Requires your server to support MSC3030": "Dafür muss dein Server MSC3030 unterstützen",
|
"Requires your server to support MSC3030": "Dafür muss dein Server MSC3030 unterstützen",
|
||||||
"Requires your server to support the stable version of MSC3827": "Dafür muss dein Server die fertige Fassung der MSC3827 unterstützen",
|
"Requires your server to support the stable version of MSC3827": "Dafür muss dein Server die fertige Fassung der MSC3827 unterstützen",
|
||||||
"User": "Benutzer",
|
|
||||||
"Show avatars in user, room and event mentions": "Profilbilder in Benutzer-, Raum- und Ereigniserwähnungen anzeigen",
|
"Show avatars in user, room and event mentions": "Profilbilder in Benutzer-, Raum- und Ereigniserwähnungen anzeigen",
|
||||||
"Message from %(user)s": "Nachricht von %(user)s",
|
"Message from %(user)s": "Nachricht von %(user)s",
|
||||||
"Message in %(room)s": "Nachricht in %(room)s",
|
"Message in %(room)s": "Nachricht in %(room)s",
|
||||||
|
@ -3943,7 +3922,28 @@
|
||||||
"unmute": "Stummschalten aufheben",
|
"unmute": "Stummschalten aufheben",
|
||||||
"username": "Benutzername",
|
"username": "Benutzername",
|
||||||
"verification_cancelled": "Verifikation abgebrochen",
|
"verification_cancelled": "Verifikation abgebrochen",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Anhang",
|
||||||
|
"light": "Hell",
|
||||||
|
"dark": "Dunkel",
|
||||||
|
"warning": "Warnung",
|
||||||
|
"home": "Startseite",
|
||||||
|
"favourites": "Favoriten",
|
||||||
|
"thread": "Thread",
|
||||||
|
"threads": "Threads",
|
||||||
|
"user": "Benutzer",
|
||||||
|
"room": "Raum",
|
||||||
|
"theme": "Design",
|
||||||
|
"name": "Name",
|
||||||
|
"description": "Beschreibung",
|
||||||
|
"public": "Öffentlich",
|
||||||
|
"private": "Privat",
|
||||||
|
"options": "Optionen",
|
||||||
|
"appearance": "Erscheinungsbild",
|
||||||
|
"homeserver": "Heim-Server",
|
||||||
|
"help": "Hilfe",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Labor"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Fortfahren",
|
"continue": "Fortfahren",
|
||||||
|
@ -3980,5 +3980,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Benutzermenü"
|
"user_menu": "Benutzermenü"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Startseite"
|
||||||
|
}
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
"Are you sure?": "Είστε σίγουροι;",
|
"Are you sure?": "Είστε σίγουροι;",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Είστε σίγουροι ότι θέλετε να αποχωρήσετε από το δωμάτιο '%(roomName)s';",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Είστε σίγουροι ότι θέλετε να αποχωρήσετε από το δωμάτιο '%(roomName)s';",
|
||||||
"Are you sure you want to reject the invitation?": "Είστε σίγουροι ότι θέλετε να απορρίψετε την πρόσκληση;",
|
"Are you sure you want to reject the invitation?": "Είστε σίγουροι ότι θέλετε να απορρίψετε την πρόσκληση;",
|
||||||
"Attachment": "Επισύναψη",
|
|
||||||
"%(items)s and %(lastItem)s": "%(items)s και %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s και %(lastItem)s",
|
||||||
"Always show message timestamps": "Εμφάνιση πάντα της ένδειξης ώρας στα μηνύματα",
|
"Always show message timestamps": "Εμφάνιση πάντα της ένδειξης ώρας στα μηνύματα",
|
||||||
"and %(count)s others...": {
|
"and %(count)s others...": {
|
||||||
|
@ -53,7 +52,6 @@
|
||||||
"Failed to reject invitation": "Δεν ήταν δυνατή η απόρριψη της πρόσκλησης",
|
"Failed to reject invitation": "Δεν ήταν δυνατή η απόρριψη της πρόσκλησης",
|
||||||
"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": "Δεν ήταν δυνατή η επιβεβαίωση της διεύθυνσης ηλεκτρονικής αλληλογραφίας: βεβαιωθείτε οτι κάνατε κλικ στον σύνδεσμο που σας στάλθηκε",
|
||||||
"Favourite": "Αγαπημένο",
|
"Favourite": "Αγαπημένο",
|
||||||
"Favourites": "Αγαπημένα",
|
|
||||||
"Filter room members": "Φιλτράρισμα μελών",
|
"Filter room members": "Φιλτράρισμα μελών",
|
||||||
"Forget room": "Αγνόηση δωματίου",
|
"Forget room": "Αγνόηση δωματίου",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Για λόγους ασφαλείας, αυτή η συνεδρία έχει τερματιστεί. Παρακαλούμε συνδεθείτε ξανά.",
|
"For security, this session has been signed out. Please sign in again.": "Για λόγους ασφαλείας, αυτή η συνεδρία έχει τερματιστεί. Παρακαλούμε συνδεθείτε ξανά.",
|
||||||
|
@ -67,7 +65,6 @@
|
||||||
"Invited": "Προσκλήθηκε",
|
"Invited": "Προσκλήθηκε",
|
||||||
"Sign in with": "Συνδεθείτε με",
|
"Sign in with": "Συνδεθείτε με",
|
||||||
"Jump to first unread message.": "Πηγαίνετε στο πρώτο μη αναγνωσμένο μήνυμα.",
|
"Jump to first unread message.": "Πηγαίνετε στο πρώτο μη αναγνωσμένο μήνυμα.",
|
||||||
"Labs": "Πειραματικά",
|
|
||||||
"Logout": "Αποσύνδεση",
|
"Logout": "Αποσύνδεση",
|
||||||
"Low priority": "Χαμηλής προτεραιότητας",
|
"Low priority": "Χαμηλής προτεραιότητας",
|
||||||
"Command error": "Σφάλμα εντολής",
|
"Command error": "Σφάλμα εντολής",
|
||||||
|
@ -76,7 +73,6 @@
|
||||||
"Failure to create room": "Δεν ήταν δυνατή η δημιουργία δωματίου",
|
"Failure to create room": "Δεν ήταν δυνατή η δημιουργία δωματίου",
|
||||||
"Join Room": "Είσοδος σε δωμάτιο",
|
"Join Room": "Είσοδος σε δωμάτιο",
|
||||||
"Moderator": "Συντονιστής",
|
"Moderator": "Συντονιστής",
|
||||||
"Name": "Όνομα",
|
|
||||||
"New passwords don't match": "Οι νέοι κωδικοί πρόσβασης είναι διαφορετικοί",
|
"New passwords don't match": "Οι νέοι κωδικοί πρόσβασης είναι διαφορετικοί",
|
||||||
"New passwords must match each other.": "Οι νέοι κωδικοί πρόσβασης πρέπει να ταιριάζουν.",
|
"New passwords must match each other.": "Οι νέοι κωδικοί πρόσβασης πρέπει να ταιριάζουν.",
|
||||||
"<not supported>": "<δεν υποστηρίζεται>",
|
"<not supported>": "<δεν υποστηρίζεται>",
|
||||||
|
@ -105,7 +101,6 @@
|
||||||
"Banned users": "Αποκλεισμένοι χρήστες",
|
"Banned users": "Αποκλεισμένοι χρήστες",
|
||||||
"Enter passphrase": "Εισαγωγή συνθηματικού",
|
"Enter passphrase": "Εισαγωγή συνθηματικού",
|
||||||
"Failed to set display name": "Δεν ήταν δυνατό ο ορισμός του ονόματος εμφάνισης",
|
"Failed to set display name": "Δεν ήταν δυνατό ο ορισμός του ονόματος εμφάνισης",
|
||||||
"Home": "Αρχική",
|
|
||||||
"Missing room_id in request": "Λείπει το room_id στο αίτημα",
|
"Missing room_id in request": "Λείπει το room_id στο αίτημα",
|
||||||
"Permissions": "Δικαιώματα",
|
"Permissions": "Δικαιώματα",
|
||||||
"Power level must be positive integer.": "Το επίπεδο δύναμης πρέπει να είναι ένας θετικός ακέραιος.",
|
"Power level must be positive integer.": "Το επίπεδο δύναμης πρέπει να είναι ένας θετικός ακέραιος.",
|
||||||
|
@ -160,14 +155,12 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s, %(day)s %(monthName)s %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "Αυτός ο διακομιστής δεν υποστηρίζει πιστοποίηση με αριθμό τηλεφώνου.",
|
"This server does not support authentication with a phone number.": "Αυτός ο διακομιστής δεν υποστηρίζει πιστοποίηση με αριθμό τηλεφώνου.",
|
||||||
"Room": "Δωμάτιο",
|
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
"one": "(~%(count)s αποτέλεσμα)",
|
"one": "(~%(count)s αποτέλεσμα)",
|
||||||
"other": "(~%(count)s αποτελέσματα)"
|
"other": "(~%(count)s αποτελέσματα)"
|
||||||
},
|
},
|
||||||
"New Password": "Νέος κωδικός πρόσβασης",
|
"New Password": "Νέος κωδικός πρόσβασης",
|
||||||
"Start automatically after system login": "Αυτόματη έναρξη μετά τη σύνδεση",
|
"Start automatically after system login": "Αυτόματη έναρξη μετά τη σύνδεση",
|
||||||
"Options": "Επιλογές",
|
|
||||||
"Passphrases must match": "Δεν ταιριάζουν τα συνθηματικά",
|
"Passphrases must match": "Δεν ταιριάζουν τα συνθηματικά",
|
||||||
"Passphrase must not be empty": "Το συνθηματικό δεν πρέπει να είναι κενό",
|
"Passphrase must not be empty": "Το συνθηματικό δεν πρέπει να είναι κενό",
|
||||||
"Export room keys": "Εξαγωγή κλειδιών δωματίου",
|
"Export room keys": "Εξαγωγή κλειδιών δωματίου",
|
||||||
|
@ -271,7 +264,6 @@
|
||||||
"On": "Ενεργό",
|
"On": "Ενεργό",
|
||||||
"Changelog": "Αλλαγές",
|
"Changelog": "Αλλαγές",
|
||||||
"Waiting for response from server": "Αναμονή απάντησης από τον διακομιστή",
|
"Waiting for response from server": "Αναμονή απάντησης από τον διακομιστή",
|
||||||
"Warning": "Προειδοποίηση",
|
|
||||||
"This Room": "Στο δωμάτιο",
|
"This Room": "Στο δωμάτιο",
|
||||||
"Resend": "Αποστολή ξανά",
|
"Resend": "Αποστολή ξανά",
|
||||||
"Messages containing my display name": "Μηνύματα που περιέχουν το όνομα μου",
|
"Messages containing my display name": "Μηνύματα που περιέχουν το όνομα μου",
|
||||||
|
@ -409,8 +401,6 @@
|
||||||
"%(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) συνδέθηκε σε μία νέα συνεδρία χωρίς να την επιβεβαιώσει:",
|
||||||
"Verify your other session using one of the options below.": "Επιβεβαιώστε την άλλη σας συνεδρία χρησιμοποιώντας μία από τις παρακάτω επιλογές.",
|
"Verify your other session using one of the options below.": "Επιβεβαιώστε την άλλη σας συνεδρία χρησιμοποιώντας μία από τις παρακάτω επιλογές.",
|
||||||
"You signed in to a new session without verifying it:": "Συνδεθήκατε σε μια νέα συνεδρία χωρίς να την επιβεβαιώσετε:",
|
"You signed in to a new session without verifying it:": "Συνδεθήκατε σε μια νέα συνεδρία χωρίς να την επιβεβαιώσετε:",
|
||||||
"Dark": "Σκούρο",
|
|
||||||
"Light": "Ανοιχτό",
|
|
||||||
"%(senderName)s removed the rule banning users matching %(glob)s": "Ο %(senderName)s αφαίρεσε τον κανόνα που αποκλείει τους χρήστες που ταιριάζουν με %(glob)s",
|
"%(senderName)s removed the rule banning users matching %(glob)s": "Ο %(senderName)s αφαίρεσε τον κανόνα που αποκλείει τους χρήστες που ταιριάζουν με %(glob)s",
|
||||||
"%(senderName)s placed a video call. (not supported by this browser)": "Ο %(senderName)s έκανε μια κλήση βίντεο. (δεν υποστηρίζεται από το πρόγραμμα περιήγησης)",
|
"%(senderName)s placed a video call. (not supported by this browser)": "Ο %(senderName)s έκανε μια κλήση βίντεο. (δεν υποστηρίζεται από το πρόγραμμα περιήγησης)",
|
||||||
"%(senderName)s placed a video call.": "Ο %(senderName)s έκανε μία κλήση βίντεο.",
|
"%(senderName)s placed a video call.": "Ο %(senderName)s έκανε μία κλήση βίντεο.",
|
||||||
|
@ -1156,7 +1146,6 @@
|
||||||
"Room members": "Μέλη δωματίου",
|
"Room members": "Μέλη δωματίου",
|
||||||
"Room information": "Πληροφορίες δωματίου",
|
"Room information": "Πληροφορίες δωματίου",
|
||||||
"Back to chat": "Επιστροφή στη συνομιλία",
|
"Back to chat": "Επιστροφή στη συνομιλία",
|
||||||
"Threads": "Νήμα εκτέλεσης",
|
|
||||||
"%(senderName)s: %(stickerName)s": "%(senderName)s: %(stickerName)s",
|
"%(senderName)s: %(stickerName)s": "%(senderName)s: %(stickerName)s",
|
||||||
"%(senderName)s: %(message)s": "%(senderName)s: %(message)s",
|
"%(senderName)s: %(message)s": "%(senderName)s: %(message)s",
|
||||||
"* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s",
|
"* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s",
|
||||||
|
@ -1384,20 +1373,16 @@
|
||||||
"Go back": "Πηγαίνετε πίσω",
|
"Go back": "Πηγαίνετε πίσω",
|
||||||
"To join a space you'll need an invite.": "Για να συμμετάσχετε σε ένα χώρο θα χρειαστείτε μια πρόσκληση.",
|
"To join a space you'll need an invite.": "Για να συμμετάσχετε σε ένα χώρο θα χρειαστείτε μια πρόσκληση.",
|
||||||
"Invite only, best for yourself or teams": "Μόνο με πρόσκληση, καλύτερο για εσάς ή ομάδες",
|
"Invite only, best for yourself or teams": "Μόνο με πρόσκληση, καλύτερο για εσάς ή ομάδες",
|
||||||
"Private": "Ιδιωτικό",
|
|
||||||
"Open space for anyone, best for communities": "Ανοιχτός χώρος για οποιονδήποτε, καλύτερο για κοινότητες",
|
"Open space for anyone, best for communities": "Ανοιχτός χώρος για οποιονδήποτε, καλύτερο για κοινότητες",
|
||||||
"Public": "Δημόσιο",
|
|
||||||
"Create a space": "Δημιουργήστε ένα χώρο",
|
"Create a space": "Δημιουργήστε ένα χώρο",
|
||||||
"Address": "Διεύθυνση",
|
"Address": "Διεύθυνση",
|
||||||
"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",
|
||||||
"Description": "Περιγραφή",
|
|
||||||
"Upload": "Μεταφόρτωση",
|
"Upload": "Μεταφόρτωση",
|
||||||
"Delete": "Διαγραφή",
|
"Delete": "Διαγραφή",
|
||||||
"Delete avatar": "Διαγραφή avatar",
|
"Delete avatar": "Διαγραφή avatar",
|
||||||
"Space selection": "Επιλογή χώρου",
|
"Space selection": "Επιλογή χώρου",
|
||||||
"Theme": "Θέμα",
|
|
||||||
"More options": "Περισσότερες επιλογές",
|
"More options": "Περισσότερες επιλογές",
|
||||||
"Pin to sidebar": "Καρφίτσωμα στην πλαϊνή μπάρα",
|
"Pin to sidebar": "Καρφίτσωμα στην πλαϊνή μπάρα",
|
||||||
"All settings": "Όλες οι ρυθμίσεις",
|
"All settings": "Όλες οι ρυθμίσεις",
|
||||||
|
@ -2007,7 +1992,6 @@
|
||||||
"Sort by": "Ταξινόμηση κατά",
|
"Sort by": "Ταξινόμηση κατά",
|
||||||
"Show previews of messages": "Εμφάνιση προεπισκοπήσεων μηνυμάτων",
|
"Show previews of messages": "Εμφάνιση προεπισκοπήσεων μηνυμάτων",
|
||||||
"Show rooms with unread messages first": "Εμφάνιση δωματίων με μη αναγνωσμένα μηνύματα πρώτα",
|
"Show rooms with unread messages first": "Εμφάνιση δωματίων με μη αναγνωσμένα μηνύματα πρώτα",
|
||||||
"Appearance": "Εμφάνιση",
|
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "Δεν είναι δυνατή η προεπισκόπηση του %(roomName)s. Θέλετε να συμμετάσχετε;",
|
"%(roomName)s can't be previewed. Do you want to join it?": "Δεν είναι δυνατή η προεπισκόπηση του %(roomName)s. Θέλετε να συμμετάσχετε;",
|
||||||
"You're previewing %(roomName)s. Want to join it?": "Κάνετε προεπισκόπηση στο %(roomName)s. Θέλετε να συμμετάσχετε;",
|
"You're previewing %(roomName)s. Want to join it?": "Κάνετε προεπισκόπηση στο %(roomName)s. Θέλετε να συμμετάσχετε;",
|
||||||
"Reject & Ignore user": "Απόρριψη & Παράβλεψη χρήστη",
|
"Reject & Ignore user": "Απόρριψη & Παράβλεψη χρήστη",
|
||||||
|
@ -2588,7 +2572,6 @@
|
||||||
"Switch to light mode": "Αλλαγή σε φωτεινό",
|
"Switch to light mode": "Αλλαγή σε φωτεινό",
|
||||||
"New here? <a>Create an account</a>": "Πρώτη φορά εδώ; <a>Δημιουργήστε λογαριασμό</a>",
|
"New here? <a>Create an account</a>": "Πρώτη φορά εδώ; <a>Δημιουργήστε λογαριασμό</a>",
|
||||||
"Got an account? <a>Sign in</a>": "Έχετε λογαριασμό; <a>Συνδεθείτε</a>",
|
"Got an account? <a>Sign in</a>": "Έχετε λογαριασμό; <a>Συνδεθείτε</a>",
|
||||||
"Thread": "Νήμα",
|
|
||||||
"Show all threads": "Εμφάνιση όλων των νημάτων",
|
"Show all threads": "Εμφάνιση όλων των νημάτων",
|
||||||
"Keep discussions organised with threads": "Διατηρήστε τις συζητήσεις οργανωμένες με νήματα",
|
"Keep discussions organised with threads": "Διατηρήστε τις συζητήσεις οργανωμένες με νήματα",
|
||||||
"Show:": "Εμφάνισε:",
|
"Show:": "Εμφάνισε:",
|
||||||
|
@ -2646,7 +2629,6 @@
|
||||||
"You are sharing your live location": "Μοιράζεστε την τρέχουσα τοποθεσία σας",
|
"You are sharing your live location": "Μοιράζεστε την τρέχουσα τοποθεσία σας",
|
||||||
"Join the beta": "Συμμετοχή στη beta",
|
"Join the beta": "Συμμετοχή στη beta",
|
||||||
"Leave the beta": "Αποχώρηση από τη beta",
|
"Leave the beta": "Αποχώρηση από τη beta",
|
||||||
"Beta": "Beta",
|
|
||||||
"This is a beta feature": "Αυτή είναι μια δυνατότητα beta",
|
"This is a beta feature": "Αυτή είναι μια δυνατότητα beta",
|
||||||
"Ready": "Έτοιμα",
|
"Ready": "Έτοιμα",
|
||||||
"Failed to load list of rooms.": "Αποτυχία φόρτωσης λίστας δωματίων.",
|
"Failed to load list of rooms.": "Αποτυχία φόρτωσης λίστας δωματίων.",
|
||||||
|
@ -2806,7 +2788,6 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "Και %(count)s ακόμα..."
|
"other": "Και %(count)s ακόμα..."
|
||||||
},
|
},
|
||||||
"Homeserver": "Κεντρικός διακομιστής",
|
|
||||||
"In reply to <a>this message</a>": "Ως απαντηση σε<a>αυτό το μήνυμα</a>",
|
"In reply to <a>this message</a>": "Ως απαντηση σε<a>αυτό το μήνυμα</a>",
|
||||||
"<a>In reply to</a> <pill>": "<a>Ως απαντηση σε</a> <pill>",
|
"<a>In reply to</a> <pill>": "<a>Ως απαντηση σε</a> <pill>",
|
||||||
"Power level": "Επίπεδο ισχύος",
|
"Power level": "Επίπεδο ισχύος",
|
||||||
|
@ -3254,7 +3235,26 @@
|
||||||
"unmute": "Άρση σίγασης",
|
"unmute": "Άρση σίγασης",
|
||||||
"username": "Όνομα χρήστη",
|
"username": "Όνομα χρήστη",
|
||||||
"verification_cancelled": "Η επαλήθευση ακυρώθηκε",
|
"verification_cancelled": "Η επαλήθευση ακυρώθηκε",
|
||||||
"video": "Βίντεο"
|
"video": "Βίντεο",
|
||||||
|
"attachment": "Επισύναψη",
|
||||||
|
"light": "Ανοιχτό",
|
||||||
|
"dark": "Σκούρο",
|
||||||
|
"warning": "Προειδοποίηση",
|
||||||
|
"home": "Αρχική",
|
||||||
|
"favourites": "Αγαπημένα",
|
||||||
|
"thread": "Νήμα",
|
||||||
|
"threads": "Νήμα εκτέλεσης",
|
||||||
|
"room": "Δωμάτιο",
|
||||||
|
"theme": "Θέμα",
|
||||||
|
"name": "Όνομα",
|
||||||
|
"description": "Περιγραφή",
|
||||||
|
"public": "Δημόσιο",
|
||||||
|
"private": "Ιδιωτικό",
|
||||||
|
"options": "Επιλογές",
|
||||||
|
"appearance": "Εμφάνιση",
|
||||||
|
"homeserver": "Κεντρικός διακομιστής",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Πειραματικά"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Συνέχεια",
|
"continue": "Συνέχεια",
|
||||||
|
@ -3291,5 +3291,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Μενού χρήστη"
|
"user_menu": "Μενού χρήστη"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Αρχική"
|
||||||
|
}
|
||||||
|
|
|
@ -18,17 +18,33 @@
|
||||||
"Add Phone Number": "Add Phone Number",
|
"Add Phone Number": "Add Phone Number",
|
||||||
"common": {
|
"common": {
|
||||||
"error": "Error",
|
"error": "Error",
|
||||||
|
"attachment": "Attachment",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
"video": "Video",
|
"video": "Video",
|
||||||
|
"warning": "Warning",
|
||||||
|
"home": "Home",
|
||||||
|
"favourites": "Favourites",
|
||||||
"people": "People",
|
"people": "People",
|
||||||
|
"threads": "Threads",
|
||||||
"analytics": "Analytics",
|
"analytics": "Analytics",
|
||||||
|
"user": "User",
|
||||||
|
"room": "Room",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
|
"theme": "Theme",
|
||||||
|
"name": "Name",
|
||||||
|
"description": "Description",
|
||||||
"no_results": "No results",
|
"no_results": "No results",
|
||||||
|
"public": "Public",
|
||||||
|
"private": "Private",
|
||||||
|
"options": "Options",
|
||||||
"message_layout": "Message layout",
|
"message_layout": "Message layout",
|
||||||
"modern": "Modern",
|
"modern": "Modern",
|
||||||
"success": "Success",
|
"success": "Success",
|
||||||
"sticker": "Sticker",
|
"sticker": "Sticker",
|
||||||
"offline": "Offline",
|
"offline": "Offline",
|
||||||
"loading": "Loading…",
|
"loading": "Loading…",
|
||||||
|
"appearance": "Appearance",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"message": "Message",
|
"message": "Message",
|
||||||
"unmute": "Unmute",
|
"unmute": "Unmute",
|
||||||
|
@ -38,16 +54,20 @@
|
||||||
"encryption_enabled": "Encryption enabled",
|
"encryption_enabled": "Encryption enabled",
|
||||||
"image": "Image",
|
"image": "Image",
|
||||||
"reactions": "Reactions",
|
"reactions": "Reactions",
|
||||||
|
"homeserver": "Homeserver",
|
||||||
|
"help": "Help",
|
||||||
"report_a_bug": "Report a bug",
|
"report_a_bug": "Report a bug",
|
||||||
"forward_message": "Forward message",
|
"forward_message": "Forward message",
|
||||||
"suggestions": "Suggestions",
|
"suggestions": "Suggestions",
|
||||||
|
"labs": "Labs",
|
||||||
|
"beta": "Beta",
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
"username": "Username",
|
"username": "Username",
|
||||||
"room_name": "Room name"
|
"room_name": "Room name",
|
||||||
|
"thread": "Thread"
|
||||||
},
|
},
|
||||||
"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",
|
|
||||||
"The file '%(fileName)s' failed to upload.": "The file '%(fileName)s' failed to upload.",
|
"The file '%(fileName)s' failed to upload.": "The file '%(fileName)s' failed to upload.",
|
||||||
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "The file '%(fileName)s' exceeds this homeserver's size limit for uploads",
|
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "The file '%(fileName)s' exceeds this homeserver's size limit for uploads",
|
||||||
"Upload Failed": "Upload Failed",
|
"Upload Failed": "Upload Failed",
|
||||||
|
@ -370,9 +390,7 @@
|
||||||
"Message deleted by %(name)s": "Message deleted by %(name)s",
|
"Message deleted by %(name)s": "Message deleted by %(name)s",
|
||||||
"%(senderName)s has started a poll - %(pollQuestion)s": "%(senderName)s has started a poll - %(pollQuestion)s",
|
"%(senderName)s has started a poll - %(pollQuestion)s": "%(senderName)s has started a poll - %(pollQuestion)s",
|
||||||
"%(senderName)s has ended a poll": "%(senderName)s has ended a poll",
|
"%(senderName)s has ended a poll": "%(senderName)s has ended a poll",
|
||||||
"Light": "Light",
|
|
||||||
"Light high contrast": "Light high contrast",
|
"Light high contrast": "Light high contrast",
|
||||||
"Dark": "Dark",
|
|
||||||
"%(displayName)s is typing …": "%(displayName)s is typing …",
|
"%(displayName)s is typing …": "%(displayName)s is typing …",
|
||||||
"%(names)s and %(count)s others are typing …": {
|
"%(names)s and %(count)s others are typing …": {
|
||||||
"other": "%(names)s and %(count)s others are typing …",
|
"other": "%(names)s and %(count)s others are typing …",
|
||||||
|
@ -671,7 +689,6 @@
|
||||||
"Your homeserver has exceeded its user limit.": "Your homeserver has exceeded its user limit.",
|
"Your homeserver has exceeded its user limit.": "Your homeserver has exceeded its user limit.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Your homeserver has exceeded one of its resource limits.",
|
"Your homeserver has exceeded one of its resource limits.": "Your homeserver has exceeded one of its resource limits.",
|
||||||
"Contact your <a>server admin</a>.": "Contact your <a>server admin</a>.",
|
"Contact your <a>server admin</a>.": "Contact your <a>server admin</a>.",
|
||||||
"Warning": "Warning",
|
|
||||||
"Ok": "Ok",
|
"Ok": "Ok",
|
||||||
"Set up Secure Backup": "Set up Secure Backup",
|
"Set up Secure Backup": "Set up Secure Backup",
|
||||||
"Encryption upgrade available": "Encryption upgrade available",
|
"Encryption upgrade available": "Encryption upgrade available",
|
||||||
|
@ -701,8 +718,6 @@
|
||||||
"Connection lost": "Connection lost",
|
"Connection lost": "Connection lost",
|
||||||
"You were disconnected from the call. (Error: %(message)s)": "You were disconnected from the call. (Error: %(message)s)",
|
"You were disconnected from the call. (Error: %(message)s)": "You were disconnected from the call. (Error: %(message)s)",
|
||||||
"All rooms": "All rooms",
|
"All rooms": "All rooms",
|
||||||
"Home": "Home",
|
|
||||||
"Favourites": "Favourites",
|
|
||||||
"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",
|
||||||
|
@ -719,7 +734,6 @@
|
||||||
"You reacted %(reaction)s to %(message)s": "You reacted %(reaction)s to %(message)s",
|
"You reacted %(reaction)s to %(message)s": "You reacted %(reaction)s to %(message)s",
|
||||||
"%(sender)s reacted %(reaction)s to %(message)s": "%(sender)s reacted %(reaction)s to %(message)s",
|
"%(sender)s reacted %(reaction)s to %(message)s": "%(sender)s reacted %(reaction)s to %(message)s",
|
||||||
"%(senderName)s: %(stickerName)s": "%(senderName)s: %(stickerName)s",
|
"%(senderName)s: %(stickerName)s": "%(senderName)s: %(stickerName)s",
|
||||||
"Threads": "Threads",
|
|
||||||
"Back to chat": "Back to chat",
|
"Back to chat": "Back to chat",
|
||||||
"Room information": "Room information",
|
"Room information": "Room information",
|
||||||
"Room members": "Room members",
|
"Room members": "Room members",
|
||||||
|
@ -899,8 +913,6 @@
|
||||||
"This is your list of users/servers you have blocked - don't leave the room!": "This is your list of users/servers you have blocked - don't leave the room!",
|
"This is your list of users/servers you have blocked - don't leave the room!": "This is your list of users/servers you have blocked - don't leave the room!",
|
||||||
"Connecting": "Connecting",
|
"Connecting": "Connecting",
|
||||||
"Sorry — this call is currently full": "Sorry — this call is currently full",
|
"Sorry — this call is currently full": "Sorry — this call is currently full",
|
||||||
"User": "User",
|
|
||||||
"Room": "Room",
|
|
||||||
"Join Room": "Join Room",
|
"Join Room": "Join Room",
|
||||||
"Create account": "Create account",
|
"Create account": "Create account",
|
||||||
"You made it!": "You made it!",
|
"You made it!": "You made it!",
|
||||||
|
@ -1022,23 +1034,18 @@
|
||||||
"Pin to sidebar": "Pin to sidebar",
|
"Pin to sidebar": "Pin to sidebar",
|
||||||
"More options": "More options",
|
"More options": "More options",
|
||||||
"Match system": "Match system",
|
"Match system": "Match system",
|
||||||
"Theme": "Theme",
|
|
||||||
"Space selection": "Space selection",
|
"Space selection": "Space selection",
|
||||||
"Delete avatar": "Delete avatar",
|
"Delete avatar": "Delete avatar",
|
||||||
"Delete": "Delete",
|
"Delete": "Delete",
|
||||||
"Upload avatar": "Upload avatar",
|
"Upload avatar": "Upload avatar",
|
||||||
"Upload": "Upload",
|
"Upload": "Upload",
|
||||||
"Name": "Name",
|
|
||||||
"Description": "Description",
|
|
||||||
"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",
|
||||||
"Address": "Address",
|
"Address": "Address",
|
||||||
"Create a space": "Create a space",
|
"Create a space": "Create a space",
|
||||||
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "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.": "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.",
|
||||||
"Public": "Public",
|
|
||||||
"Open space for anyone, best for communities": "Open space for anyone, best for communities",
|
"Open space for anyone, best for communities": "Open space for anyone, best for communities",
|
||||||
"Private": "Private",
|
|
||||||
"Invite only, best for yourself or teams": "Invite only, best for yourself or teams",
|
"Invite only, best for yourself or teams": "Invite only, best for yourself or teams",
|
||||||
"Search for public spaces": "Search for public spaces",
|
"Search for public spaces": "Search for public spaces",
|
||||||
"Go back": "Go back",
|
"Go back": "Go back",
|
||||||
|
@ -1048,7 +1055,6 @@
|
||||||
"You can change these anytime.": "You can change these anytime.",
|
"You can change these anytime.": "You can change these anytime.",
|
||||||
"Creating…": "Creating…",
|
"Creating…": "Creating…",
|
||||||
"Show all rooms": "Show all rooms",
|
"Show all rooms": "Show all rooms",
|
||||||
"Options": "Options",
|
|
||||||
"Expand": "Expand",
|
"Expand": "Expand",
|
||||||
"Collapse": "Collapse",
|
"Collapse": "Collapse",
|
||||||
"Click to copy": "Click to copy",
|
"Click to copy": "Click to copy",
|
||||||
|
@ -1903,7 +1909,6 @@
|
||||||
"To view, please enable video rooms in Labs first": "To view, please enable video rooms in Labs first",
|
"To view, please enable video rooms in Labs first": "To view, please enable video rooms in Labs first",
|
||||||
"To join, please enable video rooms in Labs first": "To join, please enable video rooms in Labs first",
|
"To join, please enable video rooms in Labs first": "To join, please enable video rooms in Labs first",
|
||||||
"Show Labs settings": "Show Labs settings",
|
"Show Labs settings": "Show Labs settings",
|
||||||
"Appearance": "Appearance",
|
|
||||||
"Show rooms with unread messages first": "Show rooms with unread messages first",
|
"Show rooms with unread messages first": "Show rooms with unread messages first",
|
||||||
"Show previews of messages": "Show previews of messages",
|
"Show previews of messages": "Show previews of messages",
|
||||||
"Sort by": "Sort by",
|
"Sort by": "Sort by",
|
||||||
|
@ -2523,8 +2528,6 @@
|
||||||
"Server Options": "Server Options",
|
"Server Options": "Server Options",
|
||||||
"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.": "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.",
|
"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.": "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.",
|
||||||
"Join millions for free on the largest public server": "Join millions for free on the largest public server",
|
"Join millions for free on the largest public server": "Join millions for free on the largest public server",
|
||||||
"Homeserver": "Homeserver",
|
|
||||||
"Help": "Help",
|
|
||||||
"<w>WARNING:</w> <description/>": "<w>WARNING:</w> <description/>",
|
"<w>WARNING:</w> <description/>": "<w>WARNING:</w> <description/>",
|
||||||
"Choose a locale": "Choose a locale",
|
"Choose a locale": "Choose a locale",
|
||||||
"Continue with %(provider)s": "Continue with %(provider)s",
|
"Continue with %(provider)s": "Continue with %(provider)s",
|
||||||
|
@ -2963,7 +2966,6 @@
|
||||||
},
|
},
|
||||||
"Cancel All": "Cancel All",
|
"Cancel All": "Cancel All",
|
||||||
"Upload Error": "Upload Error",
|
"Upload Error": "Upload Error",
|
||||||
"Labs": "Labs",
|
|
||||||
"Verify other device": "Verify other device",
|
"Verify other device": "Verify other device",
|
||||||
"Verification Request": "Verification Request",
|
"Verification Request": "Verification Request",
|
||||||
"Approve widget permissions": "Approve widget permissions",
|
"Approve widget permissions": "Approve widget permissions",
|
||||||
|
@ -3166,7 +3168,6 @@
|
||||||
"Move right": "Move right",
|
"Move right": "Move right",
|
||||||
"This is a beta feature": "This is a beta feature",
|
"This is a beta feature": "This is a beta feature",
|
||||||
"Click for more info": "Click for more info",
|
"Click for more info": "Click for more info",
|
||||||
"Beta": "Beta",
|
|
||||||
"Leaving the beta will reload %(brand)s.": "Leaving the beta will reload %(brand)s.",
|
"Leaving the beta will reload %(brand)s.": "Leaving the beta will reload %(brand)s.",
|
||||||
"Joining the beta will reload %(brand)s.": "Joining the beta will reload %(brand)s.",
|
"Joining the beta will reload %(brand)s.": "Joining the beta will reload %(brand)s.",
|
||||||
"Leave the beta": "Leave the beta",
|
"Leave the beta": "Leave the beta",
|
||||||
|
@ -3379,7 +3380,6 @@
|
||||||
"Threads help keep your conversations on-topic and easy to track.": "Threads help keep your conversations on-topic and easy to track.",
|
"Threads help keep your conversations on-topic and easy to track.": "Threads help keep your conversations on-topic and easy to track.",
|
||||||
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.",
|
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.",
|
||||||
"Keep discussions organised with threads": "Keep discussions organised with threads",
|
"Keep discussions organised with threads": "Keep discussions organised with threads",
|
||||||
"Thread": "Thread",
|
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Tried to load a specific point in this room's timeline, but was unable to find it.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Tried to load a specific point in this room's timeline, but was unable to find it.",
|
||||||
"Failed to load timeline position": "Failed to load timeline position",
|
"Failed to load timeline position": "Failed to load timeline position",
|
||||||
|
@ -3571,6 +3571,7 @@
|
||||||
"Page Down": "Page Down",
|
"Page Down": "Page Down",
|
||||||
"Esc": "Esc",
|
"Esc": "Esc",
|
||||||
"Enter": "Enter",
|
"Enter": "Enter",
|
||||||
|
"Home": "Home",
|
||||||
"End": "End",
|
"End": "End",
|
||||||
"Alt": "Alt",
|
"Alt": "Alt",
|
||||||
"Ctrl": "Ctrl",
|
"Ctrl": "Ctrl",
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
"Are you sure?": "Are you sure?",
|
"Are you sure?": "Are you sure?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Are you sure you want to leave the room '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Are you sure you want to leave the room '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
|
"Are you sure you want to reject the invitation?": "Are you sure you want to reject the invitation?",
|
||||||
"Attachment": "Attachment",
|
|
||||||
"Banned users": "Banned users",
|
"Banned users": "Banned users",
|
||||||
"Bans user with given id": "Bans user with given id",
|
"Bans user with given id": "Bans user with given id",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.",
|
||||||
|
@ -67,7 +66,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",
|
"Failed to verify email address: make sure you clicked the link in the email": "Failed to verify email address: make sure you clicked the link in the email",
|
||||||
"Failure to create room": "Failure to create room",
|
"Failure to create room": "Failure to create room",
|
||||||
"Favourite": "Favorite",
|
"Favourite": "Favorite",
|
||||||
"Favourites": "Favorites",
|
|
||||||
"Filter room members": "Filter room members",
|
"Filter room members": "Filter room members",
|
||||||
"Forget room": "Forget room",
|
"Forget room": "Forget room",
|
||||||
"For security, this session has been signed out. Please sign in again.": "For security, this session has been signed out. Please sign in again.",
|
"For security, this session has been signed out. Please sign in again.": "For security, this session has been signed out. Please sign in again.",
|
||||||
|
@ -85,7 +83,6 @@
|
||||||
"Sign in with": "Sign in with",
|
"Sign in with": "Sign in with",
|
||||||
"Join Room": "Join Room",
|
"Join Room": "Join Room",
|
||||||
"Jump to first unread message.": "Jump to first unread message.",
|
"Jump to first unread message.": "Jump to first unread message.",
|
||||||
"Labs": "Labs",
|
|
||||||
"Ignore": "Ignore",
|
"Ignore": "Ignore",
|
||||||
"Unignore": "Unignore",
|
"Unignore": "Unignore",
|
||||||
"You are now ignoring %(userId)s": "You are now ignoring %(userId)s",
|
"You are now ignoring %(userId)s": "You are now ignoring %(userId)s",
|
||||||
|
@ -105,7 +102,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",
|
||||||
"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.",
|
||||||
"not specified": "not specified",
|
"not specified": "not specified",
|
||||||
|
@ -204,13 +200,11 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.",
|
"This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.",
|
||||||
"Room": "Room",
|
|
||||||
"Connectivity to the server has been lost.": "Connectivity to the server has been lost.",
|
"Connectivity to the server has been lost.": "Connectivity to the server has been lost.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Sent messages will be stored until your connection has returned.",
|
"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",
|
||||||
"Banned by %(displayName)s": "Banned by %(displayName)s",
|
"Banned by %(displayName)s": "Banned by %(displayName)s",
|
||||||
"Options": "Options",
|
|
||||||
"Passphrases must match": "Passphrases must match",
|
"Passphrases must match": "Passphrases must match",
|
||||||
"Passphrase must not be empty": "Passphrase must not be empty",
|
"Passphrase must not be empty": "Passphrase must not be empty",
|
||||||
"Export room keys": "Export room keys",
|
"Export room keys": "Export room keys",
|
||||||
|
@ -250,7 +244,6 @@
|
||||||
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "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.",
|
"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.": "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.",
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Create new room": "Create new room",
|
"Create new room": "Create new room",
|
||||||
"Home": "Home",
|
|
||||||
"No display name": "No display name",
|
"No display name": "No display name",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s does not exist.",
|
"%(roomName)s does not exist.": "%(roomName)s does not exist.",
|
||||||
"%(roomName)s is not accessible at this time.": "%(roomName)s is not accessible at this time.",
|
"%(roomName)s is not accessible at this time.": "%(roomName)s is not accessible at this time.",
|
||||||
|
@ -296,7 +289,6 @@
|
||||||
"On": "On",
|
"On": "On",
|
||||||
"Changelog": "Changelog",
|
"Changelog": "Changelog",
|
||||||
"Waiting for response from server": "Waiting for response from server",
|
"Waiting for response from server": "Waiting for response from server",
|
||||||
"Warning": "Warning",
|
|
||||||
"This Room": "This Room",
|
"This Room": "This Room",
|
||||||
"Noisy": "Noisy",
|
"Noisy": "Noisy",
|
||||||
"Messages containing my display name": "Messages containing my display name",
|
"Messages containing my display name": "Messages containing my display name",
|
||||||
|
@ -439,7 +431,15 @@
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"success": "Success",
|
"success": "Success",
|
||||||
"unmute": "Unmute"
|
"unmute": "Unmute",
|
||||||
|
"attachment": "Attachment",
|
||||||
|
"warning": "Warning",
|
||||||
|
"home": "Home",
|
||||||
|
"favourites": "Favorites",
|
||||||
|
"room": "Room",
|
||||||
|
"name": "Name",
|
||||||
|
"options": "Options",
|
||||||
|
"labs": "Labs"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continue",
|
"continue": "Continue",
|
||||||
|
@ -455,5 +455,6 @@
|
||||||
"save": "Save",
|
"save": "Save",
|
||||||
"start_chat": "Start chat",
|
"start_chat": "Start chat",
|
||||||
"view_source": "View Source"
|
"view_source": "View Source"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Home"
|
||||||
|
}
|
||||||
|
|
|
@ -111,7 +111,6 @@
|
||||||
"Authentication": "Aŭtentikigo",
|
"Authentication": "Aŭtentikigo",
|
||||||
"Failed to set display name": "Malsukcesis agordi vidigan nomon",
|
"Failed to set display name": "Malsukcesis agordi vidigan nomon",
|
||||||
"Drop file here to upload": "Demetu dosieron tien ĉi por ĝin alŝuti",
|
"Drop file here to upload": "Demetu dosieron tien ĉi por ĝin alŝuti",
|
||||||
"Options": "Agordoj",
|
|
||||||
"Unban": "Malforbari",
|
"Unban": "Malforbari",
|
||||||
"Failed to ban user": "Malsukcesis forbari uzanton",
|
"Failed to ban user": "Malsukcesis forbari uzanton",
|
||||||
"Failed to mute user": "Malsukcesis silentigi uzanton",
|
"Failed to mute user": "Malsukcesis silentigi uzanton",
|
||||||
|
@ -132,7 +131,6 @@
|
||||||
"Invited": "Invititaj",
|
"Invited": "Invititaj",
|
||||||
"Filter room members": "Filtri ĉambranojn",
|
"Filter room members": "Filtri ĉambranojn",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (povnivelo je %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (povnivelo je %(powerLevelNumber)s)",
|
||||||
"Attachment": "Aldonaĵo",
|
|
||||||
"Hangup": "Fini vokon",
|
"Hangup": "Fini vokon",
|
||||||
"Voice call": "Voĉvoko",
|
"Voice call": "Voĉvoko",
|
||||||
"Video call": "Vidvoko",
|
"Video call": "Vidvoko",
|
||||||
|
@ -160,7 +158,6 @@
|
||||||
"Upload avatar": "Alŝuti profilbildon",
|
"Upload avatar": "Alŝuti profilbildon",
|
||||||
"Forget room": "Forgesi ĉambron",
|
"Forget room": "Forgesi ĉambron",
|
||||||
"Search": "Serĉi",
|
"Search": "Serĉi",
|
||||||
"Favourites": "Elstarigitaj",
|
|
||||||
"Rooms": "Ĉambroj",
|
"Rooms": "Ĉambroj",
|
||||||
"Low priority": "Malpli gravaj",
|
"Low priority": "Malpli gravaj",
|
||||||
"Historical": "Estintaj",
|
"Historical": "Estintaj",
|
||||||
|
@ -206,7 +203,6 @@
|
||||||
"Add an Integration": "Aldoni kunigon",
|
"Add an Integration": "Aldoni kunigon",
|
||||||
"Dismiss": "Rezigni",
|
"Dismiss": "Rezigni",
|
||||||
"powered by Matrix": "funkciigata de Matrix",
|
"powered by Matrix": "funkciigata de Matrix",
|
||||||
"Warning": "Averto",
|
|
||||||
"Failed to change password. Is your password correct?": "Malsukcesis ŝanĝi la pasvorton. Ĉu via pasvorto estas ĝusta?",
|
"Failed to change password. Is your password correct?": "Malsukcesis ŝanĝi la pasvorton. Ĉu via pasvorto estas ĝusta?",
|
||||||
"Register": "Registri",
|
"Register": "Registri",
|
||||||
"Token incorrect": "Malĝusta peco",
|
"Token incorrect": "Malĝusta peco",
|
||||||
|
@ -218,7 +214,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",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)s%(count)s-foje aliĝis",
|
"other": "%(severalUsers)s%(count)s-foje aliĝis",
|
||||||
|
@ -327,10 +322,8 @@
|
||||||
"Unable to verify email address.": "Retpoŝtadreso ne kontroleblas.",
|
"Unable to verify email address.": "Retpoŝtadreso ne kontroleblas.",
|
||||||
"This will allow you to reset your password and receive notifications.": "Tio ĉi permesos al vi restarigi vian pasvorton kaj ricevi sciigojn.",
|
"This will allow you to reset your password and receive notifications.": "Tio ĉi permesos al vi restarigi vian pasvorton kaj ricevi sciigojn.",
|
||||||
"Skip": "Preterpasi",
|
"Skip": "Preterpasi",
|
||||||
"Name": "Nomo",
|
|
||||||
"You must <a>register</a> to use this functionality": "Vi devas <a>registriĝî</a> por uzi tiun ĉi funkcion",
|
"You must <a>register</a> to use this functionality": "Vi devas <a>registriĝî</a> por uzi tiun ĉi funkcion",
|
||||||
"You must join the room to see its files": "Vi devas aliĝi al la ĉambro por vidi tie dosierojn",
|
"You must join the room to see its files": "Vi devas aliĝi al la ĉambro por vidi tie dosierojn",
|
||||||
"Description": "Priskribo",
|
|
||||||
"Reject invitation": "Rifuzi inviton",
|
"Reject invitation": "Rifuzi inviton",
|
||||||
"Are you sure you want to reject the invitation?": "Ĉu vi certe volas rifuzi la inviton?",
|
"Are you sure you want to reject the invitation?": "Ĉu vi certe volas rifuzi la inviton?",
|
||||||
"Failed to reject invitation": "Malsukcesis rifuzi la inviton",
|
"Failed to reject invitation": "Malsukcesis rifuzi la inviton",
|
||||||
|
@ -346,7 +339,6 @@
|
||||||
"Search failed": "Serĉo malsukcesis",
|
"Search failed": "Serĉo malsukcesis",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Aŭ la servilo estas neatingebla aŭ troŝarĝita, aŭ la serĉo eltempiĝis :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Aŭ la servilo estas neatingebla aŭ troŝarĝita, aŭ la serĉo eltempiĝis :(",
|
||||||
"No more results": "Neniuj pliaj rezultoj",
|
"No more results": "Neniuj pliaj rezultoj",
|
||||||
"Room": "Ĉambro",
|
|
||||||
"Failed to reject invite": "Malsukcesis rifuzi inviton",
|
"Failed to reject invite": "Malsukcesis rifuzi inviton",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Provis enlegi certan parton de ĉi tiu historio, sed vi ne havas permeson vidi ĝin.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Provis enlegi certan parton de ĉi tiu historio, sed vi ne havas permeson vidi ĝin.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Provis enlegi certan parton de ĉi tiu historio, sed malsukcesis ĝin trovi.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Provis enlegi certan parton de ĉi tiu historio, sed malsukcesis ĝin trovi.",
|
||||||
|
@ -361,7 +353,6 @@
|
||||||
"<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",
|
||||||
"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",
|
||||||
"Start automatically after system login": "Memfare ruli post operaciuma saluto",
|
"Start automatically after system login": "Memfare ruli post operaciuma saluto",
|
||||||
|
@ -512,7 +503,6 @@
|
||||||
"Encrypted messages in group chats": "Ĉifritaj mesaĝoj en grupaj babiloj",
|
"Encrypted messages in group chats": "Ĉifritaj mesaĝoj en grupaj babiloj",
|
||||||
"Delete Backup": "Forigi savkopion",
|
"Delete Backup": "Forigi savkopion",
|
||||||
"Language and region": "Lingvo kaj regiono",
|
"Language and region": "Lingvo kaj regiono",
|
||||||
"Theme": "Haŭto",
|
|
||||||
"General": "Ĝeneralaj",
|
"General": "Ĝeneralaj",
|
||||||
"<a>In reply to</a> <pill>": "<a>Responde al</a> <pill>",
|
"<a>In reply to</a> <pill>": "<a>Responde al</a> <pill>",
|
||||||
"You do not have permission to start a conference call in this room": "Vi ne havas permeson komenci grupvokon en ĉi tiu ĉambro",
|
"You do not have permission to start a conference call in this room": "Vi ne havas permeson komenci grupvokon en ĉi tiu ĉambro",
|
||||||
|
@ -1516,7 +1506,6 @@
|
||||||
"Size must be a number": "Grando devas esti nombro",
|
"Size must be a number": "Grando devas esti nombro",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Propra grando de tiparo povas interi nur %(min)s punktojn kaj %(max)s punktojn",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Propra grando de tiparo povas interi nur %(min)s punktojn kaj %(max)s punktojn",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Uzi inter %(min)s punktoj kaj %(max)s punktoj",
|
"Use between %(min)s pt and %(max)s pt": "Uzi inter %(min)s punktoj kaj %(max)s punktoj",
|
||||||
"Appearance": "Aspekto",
|
|
||||||
"Joins room with given address": "Aligas al ĉambro kun donita adreso",
|
"Joins room with given address": "Aligas al ĉambro kun donita adreso",
|
||||||
"Please verify the room ID or address and try again.": "Bonvolu kontroli identigilon aŭ adreson de la ĉambro kaj reprovi.",
|
"Please verify the room ID or address and try again.": "Bonvolu kontroli identigilon aŭ adreson de la ĉambro kaj reprovi.",
|
||||||
"Room ID or address of ban list": "Ĉambra identigilo aŭ adreso de listo de forbaroj",
|
"Room ID or address of ban list": "Ĉambra identigilo aŭ adreso de listo de forbaroj",
|
||||||
|
@ -1537,8 +1526,6 @@
|
||||||
"Contact your <a>server admin</a>.": "Kontaktu <a>administranton de via servilo</a>.",
|
"Contact your <a>server admin</a>.": "Kontaktu <a>administranton de via servilo</a>.",
|
||||||
"Ok": "Bone",
|
"Ok": "Bone",
|
||||||
"New version available. <a>Update now.</a>": "Nova versio estas disponebla. <a>Ĝisdatigu nun.</a>",
|
"New version available. <a>Update now.</a>": "Nova versio estas disponebla. <a>Ĝisdatigu nun.</a>",
|
||||||
"Light": "Hela",
|
|
||||||
"Dark": "Malhela",
|
|
||||||
"You joined the call": "Vi aliĝis al la voko",
|
"You joined the call": "Vi aliĝis al la voko",
|
||||||
"%(senderName)s joined the call": "%(senderName)s aliĝis al la voko",
|
"%(senderName)s joined the call": "%(senderName)s aliĝis al la voko",
|
||||||
"Call in progress": "Voko okazas",
|
"Call in progress": "Voko okazas",
|
||||||
|
@ -2013,7 +2000,6 @@
|
||||||
"Active Widgets": "Aktivaj fenestraĵoj",
|
"Active Widgets": "Aktivaj fenestraĵoj",
|
||||||
"Reason (optional)": "Kialo (malnepra)",
|
"Reason (optional)": "Kialo (malnepra)",
|
||||||
"Continue with %(provider)s": "Daŭrigi per %(provider)s",
|
"Continue with %(provider)s": "Daŭrigi per %(provider)s",
|
||||||
"Homeserver": "Hejmservilo",
|
|
||||||
"Server Options": "Elektebloj de servilo",
|
"Server Options": "Elektebloj de servilo",
|
||||||
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
||||||
"one": "Sekure kaŝmemori ĉifritajn mesaĝojn loke por ke ili aperu inter serĉrezultoj, uzante %(size)s por deponi mesaĝojn el %(rooms)s ĉambroj.",
|
"one": "Sekure kaŝmemori ĉifritajn mesaĝojn loke por ke ili aperu inter serĉrezultoj, uzante %(size)s por deponi mesaĝojn el %(rooms)s ĉambroj.",
|
||||||
|
@ -2147,7 +2133,6 @@
|
||||||
"Use Command + Enter to send a message": "Sendu mesaĝon per komanda klavo + eniga klavo",
|
"Use Command + Enter to send a message": "Sendu mesaĝon per komanda klavo + eniga klavo",
|
||||||
"%(senderDisplayName)s changed the server ACLs for this room.": "%(senderDisplayName)s ŝanĝis la servilblokajn listojn por ĉi tiu ĉambro.",
|
"%(senderDisplayName)s changed the server ACLs for this room.": "%(senderDisplayName)s ŝanĝis la servilblokajn listojn por ĉi tiu ĉambro.",
|
||||||
"%(senderDisplayName)s set the server ACLs for this room.": "%(senderDisplayName)s agordis la servilblokajn listojn por ĉi tiu ĉambro.",
|
"%(senderDisplayName)s set the server ACLs for this room.": "%(senderDisplayName)s agordis la servilblokajn listojn por ĉi tiu ĉambro.",
|
||||||
"Public": "Publika",
|
|
||||||
"Delete": "Forigi",
|
"Delete": "Forigi",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Salti al subo de historio sendinte mesaĝon",
|
"Jump to the bottom of the timeline when you send a message": "Salti al subo de historio sendinte mesaĝon",
|
||||||
"You're already in a call with this person.": "Vi jam vokas ĉi tiun personon.",
|
"You're already in a call with this person.": "Vi jam vokas ĉi tiun personon.",
|
||||||
|
@ -2213,7 +2198,6 @@
|
||||||
"Your private space": "Via privata aro",
|
"Your private space": "Via privata aro",
|
||||||
"Your public space": "Via publika aro",
|
"Your public space": "Via publika aro",
|
||||||
"Invite only, best for yourself or teams": "Nur invita, ideala por vi mem aŭ por skipoj",
|
"Invite only, best for yourself or teams": "Nur invita, ideala por vi mem aŭ por skipoj",
|
||||||
"Private": "Privata",
|
|
||||||
"Open space for anyone, best for communities": "Malferma aro por ĉiu ajn, ideala por komunumoj",
|
"Open space for anyone, best for communities": "Malferma aro por ĉiu ajn, ideala por komunumoj",
|
||||||
"Create a space": "Krei aron",
|
"Create a space": "Krei aron",
|
||||||
"Original event source": "Originala fonto de okazo",
|
"Original event source": "Originala fonto de okazo",
|
||||||
|
@ -2321,7 +2305,6 @@
|
||||||
"Avatar": "Profilbildo",
|
"Avatar": "Profilbildo",
|
||||||
"Join the beta": "Aliĝi al provado",
|
"Join the beta": "Aliĝi al provado",
|
||||||
"Leave the beta": "Ĉesi provadon",
|
"Leave the beta": "Ĉesi provadon",
|
||||||
"Beta": "Prova",
|
|
||||||
"If you reset everything, you will restart with no trusted sessions, no trusted users, and might not be able to see past messages.": "Se vi restarigos ĉion, vi rekomencos sen fidataj salutaĵoj, uzantoj, kaj eble ne povos vidi antaŭajn mesaĝojn.",
|
"If you reset everything, you will restart with no trusted sessions, no trusted users, and might not be able to see past messages.": "Se vi restarigos ĉion, vi rekomencos sen fidataj salutaĵoj, uzantoj, kaj eble ne povos vidi antaŭajn mesaĝojn.",
|
||||||
"Only do this if you have no other device to complete verification with.": "Faru tion ĉi nur se vi ne havas alian aparaton, per kiu vi kontrolus ceterajn.",
|
"Only do this if you have no other device to complete verification with.": "Faru tion ĉi nur se vi ne havas alian aparaton, per kiu vi kontrolus ceterajn.",
|
||||||
"Forgotten or lost all recovery methods? <a>Reset all</a>": "Ĉu vi forgesis aŭ perdis ĉiujn manierojn de rehavo? <a>Restarigu ĉion</a>",
|
"Forgotten or lost all recovery methods? <a>Reset all</a>": "Ĉu vi forgesis aŭ perdis ĉiujn manierojn de rehavo? <a>Restarigu ĉion</a>",
|
||||||
|
@ -2573,7 +2556,6 @@
|
||||||
"Leave all rooms": "Foriri de ĉiuj ĉambroj",
|
"Leave all rooms": "Foriri de ĉiuj ĉambroj",
|
||||||
"Don't leave any rooms": "Foriru de neniuj ĉambroj",
|
"Don't leave any rooms": "Foriru de neniuj ĉambroj",
|
||||||
"%(reactors)s reacted with %(content)s": "%(reactors)s reagis per %(content)s",
|
"%(reactors)s reacted with %(content)s": "%(reactors)s reagis per %(content)s",
|
||||||
"Thread": "Fadeno",
|
|
||||||
"Some encryption parameters have been changed.": "Ŝanĝiĝis iuj parametroj de ĉifrado.",
|
"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 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.",
|
||||||
|
@ -2876,7 +2858,6 @@
|
||||||
"Video rooms": "Videoĉambroj",
|
"Video rooms": "Videoĉambroj",
|
||||||
"Developer": "Programisto",
|
"Developer": "Programisto",
|
||||||
"unknown": "nekonata",
|
"unknown": "nekonata",
|
||||||
"Threads": "Fadenoj",
|
|
||||||
"Other rooms": "Aliaj ĉambroj",
|
"Other rooms": "Aliaj ĉambroj",
|
||||||
"The person who invited you has already left, or their server is offline.": "Aŭ la persono, kiu vin invitis, jam foriris, aŭ ĝia servilo estas eksterreta.",
|
"The person who invited you has already left, or their server is offline.": "Aŭ la persono, kiu vin invitis, jam foriris, aŭ ĝia servilo estas eksterreta.",
|
||||||
"Failed to join": "Malsukcesis aliĝi",
|
"Failed to join": "Malsukcesis aliĝi",
|
||||||
|
@ -2922,7 +2903,26 @@
|
||||||
"unmute": "Malsilentigi",
|
"unmute": "Malsilentigi",
|
||||||
"username": "Uzantonomo",
|
"username": "Uzantonomo",
|
||||||
"verification_cancelled": "Kontrolo nuliĝis",
|
"verification_cancelled": "Kontrolo nuliĝis",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Aldonaĵo",
|
||||||
|
"light": "Hela",
|
||||||
|
"dark": "Malhela",
|
||||||
|
"warning": "Averto",
|
||||||
|
"home": "Hejmo",
|
||||||
|
"favourites": "Elstarigitaj",
|
||||||
|
"thread": "Fadeno",
|
||||||
|
"threads": "Fadenoj",
|
||||||
|
"room": "Ĉambro",
|
||||||
|
"theme": "Haŭto",
|
||||||
|
"name": "Nomo",
|
||||||
|
"description": "Priskribo",
|
||||||
|
"public": "Publika",
|
||||||
|
"private": "Privata",
|
||||||
|
"options": "Agordoj",
|
||||||
|
"appearance": "Aspekto",
|
||||||
|
"homeserver": "Hejmservilo",
|
||||||
|
"beta": "Prova",
|
||||||
|
"labs": "Eksperimentaj funkcioj"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Daŭrigi",
|
"continue": "Daŭrigi",
|
||||||
|
@ -2958,5 +2958,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menuo de uzanto"
|
"user_menu": "Menuo de uzanto"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Hejmo"
|
||||||
|
}
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"An error has occurred.": "Un error ha ocurrido.",
|
"An error has occurred.": "Un error ha ocurrido.",
|
||||||
"Are you sure?": "¿Estás seguro?",
|
"Are you sure?": "¿Estás seguro?",
|
||||||
"Are you sure you want to reject the invitation?": "¿Estás seguro que quieres rechazar la invitación?",
|
"Are you sure you want to reject the invitation?": "¿Estás seguro que quieres rechazar la invitación?",
|
||||||
"Attachment": "Adjunto",
|
|
||||||
"Banned users": "Usuarios vetados",
|
"Banned users": "Usuarios vetados",
|
||||||
"Bans user with given id": "Veta al usuario con la ID dada",
|
"Bans user with given id": "Veta al usuario con la ID dada",
|
||||||
"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>.": "No se ha podido conectar al servidor base a través de HTTP, cuando es necesario un enlace HTTPS en la barra de direcciones de tu navegador. Ya sea usando HTTPS o <a>activando los scripts inseguros</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>.": "No se ha podido conectar al servidor base a través de HTTP, cuando es necesario un enlace HTTPS en la barra de direcciones de tu navegador. Ya sea usando HTTPS o <a>activando los scripts inseguros</a>.",
|
||||||
|
@ -52,7 +51,6 @@
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "No se ha podido verificar la dirección de correo electrónico: asegúrate de hacer clic en el enlace del mensaje",
|
"Failed to verify email address: make sure you clicked the link in the email": "No se ha podido verificar la dirección de correo electrónico: asegúrate de hacer clic en el enlace del mensaje",
|
||||||
"Failure to create room": "No se ha podido crear la sala",
|
"Failure to create room": "No se ha podido crear la sala",
|
||||||
"Favourite": "Añadir a favoritos",
|
"Favourite": "Añadir a favoritos",
|
||||||
"Favourites": "Favoritos",
|
|
||||||
"Filter room members": "Filtrar miembros de la sala",
|
"Filter room members": "Filtrar miembros de la sala",
|
||||||
"Forget room": "Olvidar sala",
|
"Forget room": "Olvidar sala",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Esta sesión ha sido cerrada. Por favor, inicia sesión de nuevo.",
|
"For security, this session has been signed out. Please sign in again.": "Esta sesión ha sido cerrada. Por favor, inicia sesión de nuevo.",
|
||||||
|
@ -66,7 +64,6 @@
|
||||||
"Invites user with given id to current room": "Invita al usuario con la ID dada a la sala actual",
|
"Invites user with given id to current room": "Invita al usuario con la ID dada a la sala actual",
|
||||||
"Sign in with": "Iniciar sesión con",
|
"Sign in with": "Iniciar sesión con",
|
||||||
"Join Room": "Unirme a la sala",
|
"Join Room": "Unirme a la sala",
|
||||||
"Labs": "Experimentos",
|
|
||||||
"Logout": "Cerrar sesión",
|
"Logout": "Cerrar sesión",
|
||||||
"Low priority": "Prioridad baja",
|
"Low priority": "Prioridad baja",
|
||||||
"Accept": "Aceptar",
|
"Accept": "Aceptar",
|
||||||
|
@ -82,7 +79,6 @@
|
||||||
"Custom level": "Nivel personalizado",
|
"Custom level": "Nivel personalizado",
|
||||||
"Enter passphrase": "Introducir frase de contraseña",
|
"Enter passphrase": "Introducir frase de contraseña",
|
||||||
"Export": "Exportar",
|
"Export": "Exportar",
|
||||||
"Home": "Inicio",
|
|
||||||
"Import": "Importar",
|
"Import": "Importar",
|
||||||
"Incorrect username and/or password.": "Nombre de usuario y/o contraseña incorrectos.",
|
"Incorrect username and/or password.": "Nombre de usuario y/o contraseña incorrectos.",
|
||||||
"Invited": "Invitado",
|
"Invited": "Invitado",
|
||||||
|
@ -95,7 +91,6 @@
|
||||||
"Something went wrong!": "¡Algo ha fallado!",
|
"Something went wrong!": "¡Algo ha fallado!",
|
||||||
"Create new room": "Crear una nueva sala",
|
"Create new room": "Crear una nueva sala",
|
||||||
"New Password": "Contraseña nueva",
|
"New Password": "Contraseña nueva",
|
||||||
"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",
|
||||||
"Export room keys": "Exportar claves de sala",
|
"Export room keys": "Exportar claves de sala",
|
||||||
|
@ -134,7 +129,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",
|
||||||
"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.",
|
||||||
"not specified": "sin especificar",
|
"not specified": "sin especificar",
|
||||||
|
@ -239,7 +233,6 @@
|
||||||
"Oct": "oct.",
|
"Oct": "oct.",
|
||||||
"Nov": "nov.",
|
"Nov": "nov.",
|
||||||
"Dec": "dic.",
|
"Dec": "dic.",
|
||||||
"Warning": "Advertencia",
|
|
||||||
"Online": "En línea",
|
"Online": "En línea",
|
||||||
"Submit debug logs": "Enviar registros de depuración",
|
"Submit debug logs": "Enviar registros de depuración",
|
||||||
"Sunday": "Domingo",
|
"Sunday": "Domingo",
|
||||||
|
@ -488,7 +481,6 @@
|
||||||
"Share User": "Compartir usuario",
|
"Share User": "Compartir usuario",
|
||||||
"Share Room Message": "Compartir un mensaje de esta sala",
|
"Share Room Message": "Compartir un mensaje de esta sala",
|
||||||
"Link to selected message": "Enlazar al mensaje seleccionado",
|
"Link to selected message": "Enlazar al mensaje seleccionado",
|
||||||
"Description": "Descripción",
|
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Esta sala no es pública. No podrás volver a unirte sin una invitación.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Esta sala no es pública. No podrás volver a unirte sin una invitación.",
|
||||||
"Can't leave Server Notices room": "No se puede salir de la sala de avisos del servidor",
|
"Can't leave Server Notices room": "No se puede salir de la sala de avisos del servidor",
|
||||||
"This room is used for important messages from the Homeserver, so you cannot leave it.": "La sala se usa para mensajes importantes del servidor base, así que no puedes abandonarla.",
|
"This room is used for important messages from the Homeserver, so you cannot leave it.": "La sala se usa para mensajes importantes del servidor base, así que no puedes abandonarla.",
|
||||||
|
@ -500,7 +492,6 @@
|
||||||
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "No puedes enviar ningún mensaje hasta que revises y estés de acuerdo con <consentLink>nuestros términos y condiciones</consentLink>.",
|
"You can't send any messages until you review and agree to <consentLink>our terms and conditions</consentLink>.": "No puedes enviar ningún mensaje hasta que revises y estés de acuerdo con <consentLink>nuestros términos y condiciones</consentLink>.",
|
||||||
"Connectivity to the server has been lost.": "Se ha perdido la conexión con el servidor.",
|
"Connectivity to the server has been lost.": "Se ha perdido la conexión con el servidor.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Los mensajes enviados se almacenarán hasta que vuelva la conexión.",
|
"Sent messages will be stored until your connection has returned.": "Los mensajes enviados se almacenarán hasta que vuelva la conexión.",
|
||||||
"Room": "Sala",
|
|
||||||
"Check for update": "Comprobar si hay actualizaciones",
|
"Check for update": "Comprobar si hay actualizaciones",
|
||||||
"Start automatically after system login": "Abrir automáticamente después de iniciar sesión en el sistema",
|
"Start automatically after system login": "Abrir automáticamente después de iniciar sesión en el sistema",
|
||||||
"No Audio Outputs detected": "No se han detectado salidas de sonido",
|
"No Audio Outputs detected": "No se han detectado salidas de sonido",
|
||||||
|
@ -542,7 +533,6 @@
|
||||||
"Room version": "Versión de la sala",
|
"Room version": "Versión de la sala",
|
||||||
"Room information": "Información de la sala",
|
"Room information": "Información de la sala",
|
||||||
"Room Topic": "Asunto de la sala",
|
"Room Topic": "Asunto de la sala",
|
||||||
"Theme": "Tema",
|
|
||||||
"Voice & Video": "Voz y vídeo",
|
"Voice & Video": "Voz y vídeo",
|
||||||
"Gets or sets the room topic": "Ver o cambiar el asunto de la sala",
|
"Gets or sets the room topic": "Ver o cambiar el asunto de la sala",
|
||||||
"This room has no topic.": "Esta sala no tiene asunto.",
|
"This room has no topic.": "Esta sala no tiene asunto.",
|
||||||
|
@ -1431,8 +1421,6 @@
|
||||||
"Joins room with given address": "Entrar a la sala con la dirección especificada",
|
"Joins room with given address": "Entrar a la sala con la dirección especificada",
|
||||||
"Opens chat with the given user": "Abrir una conversación con el usuario especificado",
|
"Opens chat with the given user": "Abrir una conversación con el usuario especificado",
|
||||||
"Sends a message to the given user": "Enviar un mensaje al usuario seleccionado",
|
"Sends a message to the given user": "Enviar un mensaje al usuario seleccionado",
|
||||||
"Light": "Claro",
|
|
||||||
"Dark": "Oscuro",
|
|
||||||
"Unexpected server error trying to leave the room": "Error inesperado del servidor al abandonar esta sala",
|
"Unexpected server error trying to leave the room": "Error inesperado del servidor al abandonar esta sala",
|
||||||
"Error leaving room": "Error al salir de la sala",
|
"Error leaving room": "Error al salir de la sala",
|
||||||
"Your homeserver has exceeded its user limit.": "Tú servidor ha excedido su limite de usuarios.",
|
"Your homeserver has exceeded its user limit.": "Tú servidor ha excedido su limite de usuarios.",
|
||||||
|
@ -1482,7 +1470,6 @@
|
||||||
"Room ID or address of ban list": "ID de sala o dirección de la lista de prohibición",
|
"Room ID or address of ban list": "ID de sala o dirección de la lista de prohibición",
|
||||||
"Secure Backup": "Copia de seguridad segura",
|
"Secure Backup": "Copia de seguridad segura",
|
||||||
"Privacy": "Privacidad",
|
"Privacy": "Privacidad",
|
||||||
"Appearance": "Apariencia",
|
|
||||||
"Show rooms with unread messages first": "Colocar al principio las salas con mensajes sin leer",
|
"Show rooms with unread messages first": "Colocar al principio las salas con mensajes sin leer",
|
||||||
"Show previews of messages": "Incluir una vista previa del último mensaje",
|
"Show previews of messages": "Incluir una vista previa del último mensaje",
|
||||||
"Sort by": "Ordenar por",
|
"Sort by": "Ordenar por",
|
||||||
|
@ -1928,7 +1915,6 @@
|
||||||
"You held the call <a>Resume</a>": "Has puesto la llamada en espera <a>Recuperar</a>",
|
"You held the call <a>Resume</a>": "Has puesto la llamada en espera <a>Recuperar</a>",
|
||||||
"You held the call <a>Switch</a>": "Has puesto esta llamada en espera <a>Volver</a>",
|
"You held the call <a>Switch</a>": "Has puesto esta llamada en espera <a>Volver</a>",
|
||||||
"Reason (optional)": "Motivo (opcional)",
|
"Reason (optional)": "Motivo (opcional)",
|
||||||
"Homeserver": "Servidor base",
|
|
||||||
"Server Options": "Opciones del servidor",
|
"Server Options": "Opciones del servidor",
|
||||||
"Open dial pad": "Abrir teclado numérico",
|
"Open dial pad": "Abrir teclado numérico",
|
||||||
"This is the start of <roomName/>.": "Aquí empieza <roomName/>.",
|
"This is the start of <roomName/>.": "Aquí empieza <roomName/>.",
|
||||||
|
@ -2209,9 +2195,7 @@
|
||||||
"Your private space": "Tu espacio privado",
|
"Your private space": "Tu espacio privado",
|
||||||
"Your public space": "Tu espacio público",
|
"Your public space": "Tu espacio público",
|
||||||
"Invite only, best for yourself or teams": "Acceso por invitación, mejor para equipos o si vas a estar solo tú",
|
"Invite only, best for yourself or teams": "Acceso por invitación, mejor para equipos o si vas a estar solo tú",
|
||||||
"Private": "Privado",
|
|
||||||
"Open space for anyone, best for communities": "Abierto para todo el mundo, la mejor opción para comunidades",
|
"Open space for anyone, best for communities": "Abierto para todo el mundo, la mejor opción para comunidades",
|
||||||
"Public": "Público",
|
|
||||||
"Create a space": "Crear un espacio",
|
"Create a space": "Crear un espacio",
|
||||||
"Delete": "Borrar",
|
"Delete": "Borrar",
|
||||||
"This homeserver has been blocked by its administrator.": "Este servidor base ha sido bloqueado por su administración.",
|
"This homeserver has been blocked by its administrator.": "Este servidor base ha sido bloqueado por su administración.",
|
||||||
|
@ -2300,7 +2284,6 @@
|
||||||
"Select a room below first": "Selecciona una sala de abajo primero",
|
"Select a room below first": "Selecciona una sala de abajo primero",
|
||||||
"Join the beta": "Unirme a la beta",
|
"Join the beta": "Unirme a la beta",
|
||||||
"Leave the beta": "Salir de la beta",
|
"Leave the beta": "Salir de la beta",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "¿Quieres añadir una sala nueva en su lugar?",
|
"Want to add a new room instead?": "¿Quieres añadir una sala nueva en su lugar?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"other": "Añadiendo salas… (%(progress)s de %(count)s)",
|
"other": "Añadiendo salas… (%(progress)s de %(count)s)",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"Are you sure you want to make this encrypted room public?": "¿Seguro que quieres activar el cifrado en esta sala pública?",
|
"Are you sure you want to make this encrypted room public?": "¿Seguro que quieres activar el cifrado en esta sala pública?",
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Para evitar estos problemas, crea una <a>nueva sala cifrada</a> para la conversación que quieras tener.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Para evitar estos problemas, crea una <a>nueva sala cifrada</a> para la conversación que quieras tener.",
|
||||||
"Are you sure you want to add encryption to this public room?": "¿Seguro que quieres activar el cifrado en esta sala pública?",
|
"Are you sure you want to add encryption to this public room?": "¿Seguro que quieres activar el cifrado en esta sala pública?",
|
||||||
"Thread": "Hilo",
|
|
||||||
"The above, but in any room you are joined or invited to as well": "Lo de arriba, pero en cualquier sala en la que estés o te inviten",
|
"The above, but in any room you are joined or invited to as well": "Lo de arriba, pero en cualquier sala en la que estés o te inviten",
|
||||||
"The above, but in <Room /> as well": "Lo de arriba, pero también en <Room />",
|
"The above, but in <Room /> as well": "Lo de arriba, pero también en <Room />",
|
||||||
"Autoplay videos": "Reproducir automáticamente los vídeos",
|
"Autoplay videos": "Reproducir automáticamente los vídeos",
|
||||||
|
@ -2648,7 +2630,6 @@
|
||||||
"Unban from %(roomName)s": "Quitar veto de %(roomName)s",
|
"Unban from %(roomName)s": "Quitar veto de %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Podrán seguir accediendo a donde no tengas permisos de administración.",
|
"They'll still be able to access whatever you're not an admin of.": "Podrán seguir accediendo a donde no tengas permisos de administración.",
|
||||||
"Disinvite from %(roomName)s": "Anular la invitación a %(roomName)s",
|
"Disinvite from %(roomName)s": "Anular la invitación a %(roomName)s",
|
||||||
"Threads": "Hilos",
|
|
||||||
"Create poll": "Crear una encuesta",
|
"Create poll": "Crear una encuesta",
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s respuesta",
|
"one": "%(count)s respuesta",
|
||||||
|
@ -3324,7 +3305,6 @@
|
||||||
"Download %(brand)s Desktop": "Descargar %(brand)s para escritorio",
|
"Download %(brand)s Desktop": "Descargar %(brand)s para escritorio",
|
||||||
"Download %(brand)s": "Descargar %(brand)s",
|
"Download %(brand)s": "Descargar %(brand)s",
|
||||||
"Choose a locale": "Elige un idioma",
|
"Choose a locale": "Elige un idioma",
|
||||||
"Help": "Ayuda",
|
|
||||||
"Unverified": "Sin verificar",
|
"Unverified": "Sin verificar",
|
||||||
"Verified": "Verificada",
|
"Verified": "Verificada",
|
||||||
"Session details": "Detalles de la sesión",
|
"Session details": "Detalles de la sesión",
|
||||||
|
@ -3744,7 +3724,27 @@
|
||||||
"unmute": "Dejar de silenciar",
|
"unmute": "Dejar de silenciar",
|
||||||
"username": "Nombre de usuario",
|
"username": "Nombre de usuario",
|
||||||
"verification_cancelled": "Verificación cancelada",
|
"verification_cancelled": "Verificación cancelada",
|
||||||
"video": "Vídeo"
|
"video": "Vídeo",
|
||||||
|
"attachment": "Adjunto",
|
||||||
|
"light": "Claro",
|
||||||
|
"dark": "Oscuro",
|
||||||
|
"warning": "Advertencia",
|
||||||
|
"home": "Inicio",
|
||||||
|
"favourites": "Favoritos",
|
||||||
|
"thread": "Hilo",
|
||||||
|
"threads": "Hilos",
|
||||||
|
"room": "Sala",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Nombre",
|
||||||
|
"description": "Descripción",
|
||||||
|
"public": "Público",
|
||||||
|
"private": "Privado",
|
||||||
|
"options": "Opciones",
|
||||||
|
"appearance": "Apariencia",
|
||||||
|
"homeserver": "Servidor base",
|
||||||
|
"help": "Ayuda",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Experimentos"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continuar",
|
"continue": "Continuar",
|
||||||
|
@ -3781,5 +3781,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menú del Usuario"
|
"user_menu": "Menú del Usuario"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Inicio"
|
||||||
|
}
|
||||||
|
|
|
@ -107,7 +107,6 @@
|
||||||
"All messages": "Kõik sõnumid",
|
"All messages": "Kõik sõnumid",
|
||||||
"Favourite": "Lemmik",
|
"Favourite": "Lemmik",
|
||||||
"Low Priority": "Vähetähtis",
|
"Low Priority": "Vähetähtis",
|
||||||
"Home": "Avaleht",
|
|
||||||
"Sign in": "Logi sisse",
|
"Sign in": "Logi sisse",
|
||||||
"Remove for everyone": "Eemalda kõigilt",
|
"Remove for everyone": "Eemalda kõigilt",
|
||||||
"You must join the room to see its files": "Failide nägemiseks pead jututoaga liituma",
|
"You must join the room to see its files": "Failide nägemiseks pead jututoaga liituma",
|
||||||
|
@ -180,7 +179,6 @@
|
||||||
"Encryption not enabled": "Krüptimine ei ole kasutusel",
|
"Encryption not enabled": "Krüptimine ei ole kasutusel",
|
||||||
"The encryption used by this room isn't supported.": "Selles jututoas kasutatud krüptimine ei ole toetatud.",
|
"The encryption used by this room isn't supported.": "Selles jututoas kasutatud krüptimine ei ole toetatud.",
|
||||||
"Message Actions": "Tegevused sõnumitega",
|
"Message Actions": "Tegevused sõnumitega",
|
||||||
"Attachment": "Manus",
|
|
||||||
"Error decrypting attachment": "Viga manuse dekrüptimisel",
|
"Error decrypting attachment": "Viga manuse dekrüptimisel",
|
||||||
"Decrypt %(text)s": "Dekrüpti %(text)s",
|
"Decrypt %(text)s": "Dekrüpti %(text)s",
|
||||||
"Download %(text)s": "Laadi alla %(text)s",
|
"Download %(text)s": "Laadi alla %(text)s",
|
||||||
|
@ -245,7 +243,6 @@
|
||||||
"Forget room": "Unusta jututuba",
|
"Forget room": "Unusta jututuba",
|
||||||
"Search": "Otsing",
|
"Search": "Otsing",
|
||||||
"Share room": "Jaga jututuba",
|
"Share room": "Jaga jututuba",
|
||||||
"Favourites": "Lemmikud",
|
|
||||||
"Low priority": "Vähetähtis",
|
"Low priority": "Vähetähtis",
|
||||||
"Historical": "Ammune",
|
"Historical": "Ammune",
|
||||||
"System Alerts": "Süsteemi teated",
|
"System Alerts": "Süsteemi teated",
|
||||||
|
@ -255,7 +252,6 @@
|
||||||
"e.g. my-room": "näiteks minu-jututuba",
|
"e.g. my-room": "näiteks minu-jututuba",
|
||||||
"Can't find this server or its room list": "Ei leia seda serverit ega tema jututubade loendit",
|
"Can't find this server or its room list": "Ei leia seda serverit ega tema jututubade loendit",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid ei suutnud seda leida.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid ei suutnud seda leida.",
|
||||||
"Options": "Valikud",
|
|
||||||
"This Room": "See jututuba",
|
"This Room": "See jututuba",
|
||||||
"Sun": "Pühapäev",
|
"Sun": "Pühapäev",
|
||||||
"Mon": "Esmaspäev",
|
"Mon": "Esmaspäev",
|
||||||
|
@ -303,7 +299,6 @@
|
||||||
"Jump to read receipt": "Hüppa lugemisteatise juurde",
|
"Jump to read receipt": "Hüppa lugemisteatise juurde",
|
||||||
"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",
|
|
||||||
"Topic (optional)": "Jututoa teema (kui soovid lisada)",
|
"Topic (optional)": "Jututoa teema (kui soovid lisada)",
|
||||||
"Hide advanced": "Peida lisaseadistused",
|
"Hide advanced": "Peida lisaseadistused",
|
||||||
"Show advanced": "Näita lisaseadistusi",
|
"Show advanced": "Näita lisaseadistusi",
|
||||||
|
@ -475,7 +470,6 @@
|
||||||
"Language and region": "Keel ja piirkond",
|
"Language and region": "Keel ja piirkond",
|
||||||
"Custom theme URL": "Kohandatud teema URL",
|
"Custom theme URL": "Kohandatud teema URL",
|
||||||
"Add theme": "Lisa teema",
|
"Add theme": "Lisa teema",
|
||||||
"Theme": "Teema",
|
|
||||||
"Start verification again from their profile.": "Alusta verifitseerimist uuesti nende profiilist.",
|
"Start verification again from their profile.": "Alusta verifitseerimist uuesti nende profiilist.",
|
||||||
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Allpool loetletud Matrix'i kasutajatunnustele ei leidunud profiile. Kas sa ikkagi tahaksid neile kutse saata?",
|
"Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Allpool loetletud Matrix'i kasutajatunnustele ei leidunud profiile. Kas sa ikkagi tahaksid neile kutse saata?",
|
||||||
"Could not load user profile": "Kasutajaprofiili laadimine ei õnnestunud",
|
"Could not load user profile": "Kasutajaprofiili laadimine ei õnnestunud",
|
||||||
|
@ -620,7 +614,6 @@
|
||||||
"Activate selected button": "Aktiveeri valitud nupp",
|
"Activate selected button": "Aktiveeri valitud nupp",
|
||||||
"Toggle right panel": "Lülita parem paan sisse/välja",
|
"Toggle right panel": "Lülita parem paan sisse/välja",
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Tundub, et sul parasjagu on kõne pooleli. Kas sa kindlasti soovid väljuda?",
|
"You seem to be in a call, are you sure you want to quit?": "Tundub, et sul parasjagu on kõne pooleli. Kas sa kindlasti soovid väljuda?",
|
||||||
"Room": "Jututuba",
|
|
||||||
"Failed to reject invite": "Kutse tagasilükkamine ei õnnestunud",
|
"Failed to reject invite": "Kutse tagasilükkamine ei õnnestunud",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid sul ei ole õigusi selle sõnumi nägemiseks.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid sul ei ole õigusi selle sõnumi nägemiseks.",
|
||||||
"Failed to load timeline position": "Asukoha laadimine ajajoonel ei õnnestunud",
|
"Failed to load timeline position": "Asukoha laadimine ajajoonel ei õnnestunud",
|
||||||
|
@ -662,7 +655,6 @@
|
||||||
"Couldn't load page": "Lehe laadimine ei õnnestunud",
|
"Couldn't load page": "Lehe laadimine ei õnnestunud",
|
||||||
"You must <a>register</a> to use this functionality": "Selle funktsionaalsuse kasutamiseks pead sa <a>registreeruma</a>",
|
"You must <a>register</a> to use this functionality": "Selle funktsionaalsuse kasutamiseks pead sa <a>registreeruma</a>",
|
||||||
"Upload avatar": "Laadi üles profiilipilt ehk avatar",
|
"Upload avatar": "Laadi üles profiilipilt ehk avatar",
|
||||||
"Description": "Kirjeldus",
|
|
||||||
"Welcome to %(appName)s": "Tere tulemast suhtlusrakenduse %(appName)s kasutajaks",
|
"Welcome to %(appName)s": "Tere tulemast suhtlusrakenduse %(appName)s kasutajaks",
|
||||||
"Send a Direct Message": "Saada otsesõnum",
|
"Send a Direct Message": "Saada otsesõnum",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Kas oled kindel, et soovid lahkuda jututoast „%(roomName)s“?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Kas oled kindel, et soovid lahkuda jututoast „%(roomName)s“?",
|
||||||
|
@ -910,8 +902,6 @@
|
||||||
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s muutis uueks teemaks „%(topic)s“.",
|
"%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s muutis uueks teemaks „%(topic)s“.",
|
||||||
"%(senderDisplayName)s upgraded this room.": "%(senderDisplayName)s uuendas seda jututuba.",
|
"%(senderDisplayName)s upgraded this room.": "%(senderDisplayName)s uuendas seda jututuba.",
|
||||||
"%(senderDisplayName)s made the room public to whoever knows the link.": "%(senderDisplayName)s muutis selle jututoa avalikuks kõigile, kes teavad tema aadressi.",
|
"%(senderDisplayName)s made the room public to whoever knows the link.": "%(senderDisplayName)s muutis selle jututoa avalikuks kõigile, kes teavad tema aadressi.",
|
||||||
"Light": "Hele",
|
|
||||||
"Dark": "Tume",
|
|
||||||
"You signed in to a new session without verifying it:": "Sa logisid sisse uude sessiooni ilma seda verifitseerimata:",
|
"You signed in to a new session without verifying it:": "Sa logisid sisse uude sessiooni ilma seda verifitseerimata:",
|
||||||
"Verify your other session using one of the options below.": "Verifitseeri oma teine sessioon kasutades üht alljärgnevatest võimalustest.",
|
"Verify your other session using one of the options below.": "Verifitseeri oma teine sessioon kasutades üht alljärgnevatest võimalustest.",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) logis sisse uude sessiooni ilma seda verifitseerimata:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) logis sisse uude sessiooni ilma seda verifitseerimata:",
|
||||||
|
@ -1074,7 +1064,6 @@
|
||||||
"Use bots, bridges, widgets and sticker packs": "Kasuta roboteid, sõnumisildu, vidinaid või kleepsupakke",
|
"Use bots, bridges, widgets and sticker packs": "Kasuta roboteid, sõnumisildu, vidinaid või kleepsupakke",
|
||||||
"Upload all": "Laadi kõik üles",
|
"Upload all": "Laadi kõik üles",
|
||||||
"This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "See fail on üleslaadimiseks <b>liiga suur</b>. Üleslaaditavate failide mahupiir on %(limit)s, kuid selle faili suurus on %(sizeOfThisFile)s.",
|
"This file is <b>too large</b> to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "See fail on üleslaadimiseks <b>liiga suur</b>. Üleslaaditavate failide mahupiir on %(limit)s, kuid selle faili suurus on %(sizeOfThisFile)s.",
|
||||||
"Appearance": "Välimus",
|
|
||||||
"For security, this session has been signed out. Please sign in again.": "Turvalisusega seotud põhjustel on see sessioon välja logitud. Palun logi uuesti sisse.",
|
"For security, this session has been signed out. Please sign in again.": "Turvalisusega seotud põhjustel on see sessioon välja logitud. Palun logi uuesti sisse.",
|
||||||
"Review terms and conditions": "Vaata üle kasutustingimused",
|
"Review terms and conditions": "Vaata üle kasutustingimused",
|
||||||
"Old cryptography data detected": "Tuvastasin andmed, mille puhul on kasutatud vanemat tüüpi krüptimist",
|
"Old cryptography data detected": "Tuvastasin andmed, mille puhul on kasutatud vanemat tüüpi krüptimist",
|
||||||
|
@ -1211,7 +1200,6 @@
|
||||||
"Your homeserver has exceeded its user limit.": "Sinu koduserver on ületanud kasutajate arvu ülempiiri.",
|
"Your homeserver has exceeded its user limit.": "Sinu koduserver on ületanud kasutajate arvu ülempiiri.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Sinu koduserver on ületanud ühe oma ressursipiirangutest.",
|
"Your homeserver has exceeded one of its resource limits.": "Sinu koduserver on ületanud ühe oma ressursipiirangutest.",
|
||||||
"Contact your <a>server admin</a>.": "Võta ühendust <a>oma serveri haldajaga</a>.",
|
"Contact your <a>server admin</a>.": "Võta ühendust <a>oma serveri haldajaga</a>.",
|
||||||
"Warning": "Hoiatus",
|
|
||||||
"Ok": "Sobib",
|
"Ok": "Sobib",
|
||||||
"Message Pinning": "Sõnumite esiletõstmine",
|
"Message Pinning": "Sõnumite esiletõstmine",
|
||||||
"IRC display name width": "IRC kuvatava nime laius",
|
"IRC display name width": "IRC kuvatava nime laius",
|
||||||
|
@ -1251,7 +1239,6 @@
|
||||||
"FAQ": "Korduma kippuvad küsimused",
|
"FAQ": "Korduma kippuvad küsimused",
|
||||||
"Versions": "Versioonid",
|
"Versions": "Versioonid",
|
||||||
"%(brand)s version:": "%(brand)s'i versioon:",
|
"%(brand)s version:": "%(brand)s'i versioon:",
|
||||||
"Labs": "Katsed",
|
|
||||||
"Ignored/Blocked": "Eiratud või ligipääs blokeeritud",
|
"Ignored/Blocked": "Eiratud või ligipääs blokeeritud",
|
||||||
"Error adding ignored user/server": "Viga eiratud kasutaja või serveri lisamisel",
|
"Error adding ignored user/server": "Viga eiratud kasutaja või serveri lisamisel",
|
||||||
"Something went wrong. Please try again or view your console for hints.": "Midagi läks valesti. Proovi uuesti või otsi lisavihjeid konsoolilt.",
|
"Something went wrong. Please try again or view your console for hints.": "Midagi läks valesti. Proovi uuesti või otsi lisavihjeid konsoolilt.",
|
||||||
|
@ -2048,7 +2035,6 @@
|
||||||
"Unable to access microphone": "Puudub ligipääs mikrofonile",
|
"Unable to access microphone": "Puudub ligipääs mikrofonile",
|
||||||
"Continuing without email": "Jätka ilma e-posti aadressi seadistamiseta",
|
"Continuing without email": "Jätka ilma e-posti aadressi seadistamiseta",
|
||||||
"Continue with %(provider)s": "Jätka %(provider)s kasutamist",
|
"Continue with %(provider)s": "Jätka %(provider)s kasutamist",
|
||||||
"Homeserver": "Koduserver",
|
|
||||||
"Server Options": "Serveri seadistused",
|
"Server Options": "Serveri seadistused",
|
||||||
"Host account on": "Sinu kasutajakontot teenindab",
|
"Host account on": "Sinu kasutajakontot teenindab",
|
||||||
"Decide where your account is hosted": "Vali kes võiks sinu kasutajakontot teenindada",
|
"Decide where your account is hosted": "Vali kes võiks sinu kasutajakontot teenindada",
|
||||||
|
@ -2194,9 +2180,7 @@
|
||||||
"Your private space": "Sinu privaatne kogukonnakeskus",
|
"Your private space": "Sinu privaatne kogukonnakeskus",
|
||||||
"Your public space": "Sinu avalik kogukonnakeskus",
|
"Your public space": "Sinu avalik kogukonnakeskus",
|
||||||
"Invite only, best for yourself or teams": "Liitumine vaid kutse alusel, sobib sulle ja sinu lähematele kaaslastele",
|
"Invite only, best for yourself or teams": "Liitumine vaid kutse alusel, sobib sulle ja sinu lähematele kaaslastele",
|
||||||
"Private": "Privaatne",
|
|
||||||
"Open space for anyone, best for communities": "Avaliku ligipääsuga kogukonnakeskus",
|
"Open space for anyone, best for communities": "Avaliku ligipääsuga kogukonnakeskus",
|
||||||
"Public": "Avalik",
|
|
||||||
"Create a space": "Loo kogukonnakeskus",
|
"Create a space": "Loo kogukonnakeskus",
|
||||||
"Delete": "Kustuta",
|
"Delete": "Kustuta",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Sõnumi saatmiseks hüppa ajajoone lõppu",
|
"Jump to the bottom of the timeline when you send a message": "Sõnumi saatmiseks hüppa ajajoone lõppu",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "Esmalt vali alljärgnevast üks jututuba",
|
"Select a room below first": "Esmalt vali alljärgnevast üks jututuba",
|
||||||
"Join the beta": "Hakka kasutama beetaversiooni",
|
"Join the beta": "Hakka kasutama beetaversiooni",
|
||||||
"Leave the beta": "Lõpeta beetaversiooni kasutamine",
|
"Leave the beta": "Lõpeta beetaversiooni kasutamine",
|
||||||
"Beta": "Beetaversioon",
|
|
||||||
"Want to add a new room instead?": "Kas sa selle asemel soovid lisada jututuba?",
|
"Want to add a new room instead?": "Kas sa selle asemel soovid lisada jututuba?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Lisan jututuba...",
|
"one": "Lisan jututuba...",
|
||||||
|
@ -2558,7 +2541,6 @@
|
||||||
"Are you sure you want to add encryption to this public room?": "Kas sa oled kindel, et soovid selles avalikus jututoas kasutada krüptimist?",
|
"Are you sure you want to add encryption to this public room?": "Kas sa oled kindel, et soovid selles avalikus jututoas kasutada krüptimist?",
|
||||||
"Message bubbles": "Jutumullid",
|
"Message bubbles": "Jutumullid",
|
||||||
"Surround selected text when typing special characters": "Erimärkide sisestamisel märgista valitud tekst",
|
"Surround selected text when typing special characters": "Erimärkide sisestamisel märgista valitud tekst",
|
||||||
"Thread": "Jutulõng",
|
|
||||||
"Autoplay videos": "Esita automaatselt videosid",
|
"Autoplay videos": "Esita automaatselt videosid",
|
||||||
"Autoplay GIFs": "Esita automaatselt liikuvaid pilte",
|
"Autoplay GIFs": "Esita automaatselt liikuvaid pilte",
|
||||||
"The above, but in any room you are joined or invited to as well": "Ülaltoodu, aga samuti igas jututoas, millega oled liitunud või kuhu oled kutsutud",
|
"The above, but in any room you are joined or invited to as well": "Ülaltoodu, aga samuti igas jututoas, millega oled liitunud või kuhu oled kutsutud",
|
||||||
|
@ -2658,7 +2640,6 @@
|
||||||
"Unban from %(roomName)s": "Eemalda suhtluskeeld %(roomName)s jututoas",
|
"Unban from %(roomName)s": "Eemalda suhtluskeeld %(roomName)s jututoas",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Kasutaja saab jätkuvalt ligi kohtadele, kus sul pole peakasutaja õigusi.",
|
"They'll still be able to access whatever you're not an admin of.": "Kasutaja saab jätkuvalt ligi kohtadele, kus sul pole peakasutaja õigusi.",
|
||||||
"Disinvite from %(roomName)s": "Võta tagasi %(roomName)s jututoa kutse",
|
"Disinvite from %(roomName)s": "Võta tagasi %(roomName)s jututoa kutse",
|
||||||
"Threads": "Jutulõngad",
|
|
||||||
"Downloading": "Laadin alla",
|
"Downloading": "Laadin alla",
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s vastus",
|
"one": "%(count)s vastus",
|
||||||
|
@ -3352,7 +3333,6 @@
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Download %(brand)s Desktop": "Laadi alla %(brand)s töölaua rakendusena",
|
"Download %(brand)s Desktop": "Laadi alla %(brand)s töölaua rakendusena",
|
||||||
"Download %(brand)s": "Laadi alla %(brand)s",
|
"Download %(brand)s": "Laadi alla %(brand)s",
|
||||||
"Help": "Abiteave",
|
|
||||||
"Your server doesn't support disabling sending read receipts.": "Sinu koduserver ei võimalda lugemisteatiste keelamist.",
|
"Your server doesn't support disabling sending read receipts.": "Sinu koduserver ei võimalda lugemisteatiste keelamist.",
|
||||||
"Share your activity and status with others.": "Jaga teistega oma olekut ja tegevusi.",
|
"Share your activity and status with others.": "Jaga teistega oma olekut ja tegevusi.",
|
||||||
"Presence": "Olek võrgus",
|
"Presence": "Olek võrgus",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "Seda võimalust saab hetkel sisse lülitada vaid config.json failist",
|
"Can currently only be enabled via config.json": "Seda võimalust saab hetkel sisse lülitada vaid config.json failist",
|
||||||
"Requires your server to support MSC3030": "Eeldab, et sinu koduserver toetab MSC3030 spetsifikatsiooni",
|
"Requires your server to support MSC3030": "Eeldab, et sinu koduserver toetab MSC3030 spetsifikatsiooni",
|
||||||
"Requires your server to support the stable version of MSC3827": "Eeldab, et sinu koduserver toetab MSC3827 stabiilset versiooni",
|
"Requires your server to support the stable version of MSC3827": "Eeldab, et sinu koduserver toetab MSC3827 stabiilset versiooni",
|
||||||
"User": "Kasutaja",
|
|
||||||
"Show avatars in user, room and event mentions": "Näita tunnuspilte kasutajate, jututubade ja sündmuste mainimistes",
|
"Show avatars in user, room and event mentions": "Näita tunnuspilte kasutajate, jututubade ja sündmuste mainimistes",
|
||||||
"Message from %(user)s": "Sõnum kasutajalt %(user)s",
|
"Message from %(user)s": "Sõnum kasutajalt %(user)s",
|
||||||
"Message in %(room)s": "Sõnum jututoas %(room)s",
|
"Message in %(room)s": "Sõnum jututoas %(room)s",
|
||||||
|
@ -3938,7 +3917,28 @@
|
||||||
"unmute": "Eemalda summutamine",
|
"unmute": "Eemalda summutamine",
|
||||||
"username": "Kasutajanimi",
|
"username": "Kasutajanimi",
|
||||||
"verification_cancelled": "Verifitseerimine tühistatud",
|
"verification_cancelled": "Verifitseerimine tühistatud",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Manus",
|
||||||
|
"light": "Hele",
|
||||||
|
"dark": "Tume",
|
||||||
|
"warning": "Hoiatus",
|
||||||
|
"home": "Avaleht",
|
||||||
|
"favourites": "Lemmikud",
|
||||||
|
"thread": "Jutulõng",
|
||||||
|
"threads": "Jutulõngad",
|
||||||
|
"user": "Kasutaja",
|
||||||
|
"room": "Jututuba",
|
||||||
|
"theme": "Teema",
|
||||||
|
"name": "Nimi",
|
||||||
|
"description": "Kirjeldus",
|
||||||
|
"public": "Avalik",
|
||||||
|
"private": "Privaatne",
|
||||||
|
"options": "Valikud",
|
||||||
|
"appearance": "Välimus",
|
||||||
|
"homeserver": "Koduserver",
|
||||||
|
"help": "Abiteave",
|
||||||
|
"beta": "Beetaversioon",
|
||||||
|
"labs": "Katsed"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Jätka",
|
"continue": "Jätka",
|
||||||
|
@ -3975,5 +3975,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Kasutajamenüü"
|
"user_menu": "Kasutajamenüü"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Avaleht"
|
||||||
|
}
|
||||||
|
|
|
@ -11,11 +11,8 @@
|
||||||
"unknown error code": "errore kode ezezaguna",
|
"unknown error code": "errore kode ezezaguna",
|
||||||
"Dismiss": "Baztertu",
|
"Dismiss": "Baztertu",
|
||||||
"powered by Matrix": "Matrix-ekin egina",
|
"powered by Matrix": "Matrix-ekin egina",
|
||||||
"Room": "Gela",
|
|
||||||
"Historical": "Historiala",
|
"Historical": "Historiala",
|
||||||
"Sign out": "Amaitu saioa",
|
"Sign out": "Amaitu saioa",
|
||||||
"Home": "Hasiera",
|
|
||||||
"Favourites": "Gogokoak",
|
|
||||||
"Rooms": "Gelak",
|
"Rooms": "Gelak",
|
||||||
"Low priority": "Lehentasun baxua",
|
"Low priority": "Lehentasun baxua",
|
||||||
"Join Room": "Elkartu gelara",
|
"Join Room": "Elkartu gelara",
|
||||||
|
@ -41,7 +38,6 @@
|
||||||
"Advanced": "Aurreratua",
|
"Advanced": "Aurreratua",
|
||||||
"Cryptography": "Kriptografia",
|
"Cryptography": "Kriptografia",
|
||||||
"Always show message timestamps": "Erakutsi beti mezuen denbora-zigilua",
|
"Always show message timestamps": "Erakutsi beti mezuen denbora-zigilua",
|
||||||
"Name": "Izena",
|
|
||||||
"Authentication": "Autentifikazioa",
|
"Authentication": "Autentifikazioa",
|
||||||
"Verification Pending": "Egiaztaketa egiteke",
|
"Verification Pending": "Egiaztaketa egiteke",
|
||||||
"Please check your email and click on the link it contains. Once this is done, click continue.": "Irakurri zure e-maila eta egin klik dakarren estekan. Behin eginda, egin klik Jarraitu botoian.",
|
"Please check your email and click on the link it contains. Once this is done, click continue.": "Irakurri zure e-maila eta egin klik dakarren estekan. Behin eginda, egin klik Jarraitu botoian.",
|
||||||
|
@ -50,7 +46,6 @@
|
||||||
"Who can read history?": "Nork irakurri dezake historiala?",
|
"Who can read history?": "Nork irakurri dezake historiala?",
|
||||||
"Anyone": "Edonork",
|
"Anyone": "Edonork",
|
||||||
"Banned users": "Debekatutako erabiltzaileak",
|
"Banned users": "Debekatutako erabiltzaileak",
|
||||||
"Labs": "Laborategia",
|
|
||||||
"This room has no local addresses": "Gela honek ez du tokiko helbiderik",
|
"This room has no local addresses": "Gela honek ez du tokiko helbiderik",
|
||||||
"Session ID": "Saioaren IDa",
|
"Session ID": "Saioaren IDa",
|
||||||
"Export E2E room keys": "Esportatu E2E geletako gakoak",
|
"Export E2E room keys": "Esportatu E2E geletako gakoak",
|
||||||
|
@ -81,7 +76,6 @@
|
||||||
"Are you sure?": "Ziur zaude?",
|
"Are you sure?": "Ziur zaude?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Ziur '%(roomName)s' gelatik atera nahi duzula?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Ziur '%(roomName)s' gelatik atera nahi duzula?",
|
||||||
"Are you sure you want to reject the invitation?": "Ziur gonbidapena baztertu nahi duzula?",
|
"Are you sure you want to reject the invitation?": "Ziur gonbidapena baztertu nahi duzula?",
|
||||||
"Attachment": "Eranskina",
|
|
||||||
"Bans user with given id": "Debekatu ID zehatz bat duen erabiltzailea",
|
"Bans user with given id": "Debekatu ID zehatz bat duen erabiltzailea",
|
||||||
"Change Password": "Aldatu pasahitza",
|
"Change Password": "Aldatu pasahitza",
|
||||||
"Changes your display nickname": "Zure pantaila-izena aldatzen du",
|
"Changes your display nickname": "Zure pantaila-izena aldatzen du",
|
||||||
|
@ -224,7 +218,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",
|
||||||
"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",
|
||||||
"File to import": "Inportatu beharreko fitxategia",
|
"File to import": "Inportatu beharreko fitxategia",
|
||||||
|
@ -308,9 +301,7 @@
|
||||||
"Members only (since the point in time of selecting this option)": "Kideek besterik ez (aukera hau hautatzen den unetik)",
|
"Members only (since the point in time of selecting this option)": "Kideek besterik ez (aukera hau hautatzen den unetik)",
|
||||||
"Members only (since they were invited)": "Kideek besterik ez (gonbidatu zaienetik)",
|
"Members only (since they were invited)": "Kideek besterik ez (gonbidatu zaienetik)",
|
||||||
"Members only (since they joined)": "Kideek besterik ez (elkartu zirenetik)",
|
"Members only (since they joined)": "Kideek besterik ez (elkartu zirenetik)",
|
||||||
"Description": "Deskripzioa",
|
|
||||||
"Old cryptography data detected": "Kriptografia datu zaharrak atzeman dira",
|
"Old cryptography data detected": "Kriptografia datu zaharrak atzeman dira",
|
||||||
"Warning": "Abisua",
|
|
||||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "Kontuan izan %(hs)s zerbitzarira elkartu zarela, ez matrix.org.",
|
"Please note you are logging into the %(hs)s server, not matrix.org.": "Kontuan izan %(hs)s zerbitzarira elkartu zarela, ez matrix.org.",
|
||||||
"Notify the whole room": "Jakinarazi gela osoari",
|
"Notify the whole room": "Jakinarazi gela osoari",
|
||||||
"Room Notification": "Gela jakinarazpena",
|
"Room Notification": "Gela jakinarazpena",
|
||||||
|
@ -697,7 +688,6 @@
|
||||||
"Email addresses": "E-mail helbideak",
|
"Email addresses": "E-mail helbideak",
|
||||||
"Phone numbers": "Telefono zenbakiak",
|
"Phone numbers": "Telefono zenbakiak",
|
||||||
"Language and region": "Hizkuntza eta eskualdea",
|
"Language and region": "Hizkuntza eta eskualdea",
|
||||||
"Theme": "Azala",
|
|
||||||
"Account management": "Kontuen kudeaketa",
|
"Account management": "Kontuen kudeaketa",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a> edo hasi txat bat gure botarekin beheko botoia sakatuz.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik <a>hemen</a> edo hasi txat bat gure botarekin beheko botoia sakatuz.",
|
||||||
|
@ -1497,7 +1487,6 @@
|
||||||
"Size must be a number": "Tamaina zenbaki bat izan behar da",
|
"Size must be a number": "Tamaina zenbaki bat izan behar da",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Letra tamaina pertsonalizatua %(min)s pt eta %(max)s pt bitartean egon behar du",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Letra tamaina pertsonalizatua %(min)s pt eta %(max)s pt bitartean egon behar du",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Erabili %(min)s pt eta %(max)s pt bitarteko balioa",
|
"Use between %(min)s pt and %(max)s pt": "Erabili %(min)s pt eta %(max)s pt bitarteko balioa",
|
||||||
"Appearance": "Itxura",
|
|
||||||
"You've successfully verified your device!": "Ongi egiaztatu duzu zure gailua!",
|
"You've successfully verified your device!": "Ongi egiaztatu duzu zure gailua!",
|
||||||
"Message deleted": "Mezu ezabatuta",
|
"Message deleted": "Mezu ezabatuta",
|
||||||
"Message deleted by %(name)s": "Mezua ezabatu du %(name)s erabiltzaileak",
|
"Message deleted by %(name)s": "Mezua ezabatu du %(name)s erabiltzaileak",
|
||||||
|
@ -1551,7 +1540,6 @@
|
||||||
"All settings": "Ezarpen guztiak",
|
"All settings": "Ezarpen guztiak",
|
||||||
"Feedback": "Iruzkinak",
|
"Feedback": "Iruzkinak",
|
||||||
"Use a different passphrase?": "Erabili pasa-esaldi desberdin bat?",
|
"Use a different passphrase?": "Erabili pasa-esaldi desberdin bat?",
|
||||||
"Light": "Argia",
|
|
||||||
"You joined the call": "Deira batu zara",
|
"You joined the call": "Deira batu zara",
|
||||||
"%(senderName)s joined the call": "%(senderName)s deira batu da",
|
"%(senderName)s joined the call": "%(senderName)s deira batu da",
|
||||||
"Call ended": "Deia amaitu da",
|
"Call ended": "Deia amaitu da",
|
||||||
|
@ -1602,7 +1590,19 @@
|
||||||
"suggestions": "Proposamenak",
|
"suggestions": "Proposamenak",
|
||||||
"unmute": "Audioa aktibatu",
|
"unmute": "Audioa aktibatu",
|
||||||
"username": "Erabiltzaile-izena",
|
"username": "Erabiltzaile-izena",
|
||||||
"verification_cancelled": "Egiaztaketa ezeztatuta"
|
"verification_cancelled": "Egiaztaketa ezeztatuta",
|
||||||
|
"attachment": "Eranskina",
|
||||||
|
"light": "Argia",
|
||||||
|
"warning": "Abisua",
|
||||||
|
"home": "Hasiera",
|
||||||
|
"favourites": "Gogokoak",
|
||||||
|
"room": "Gela",
|
||||||
|
"theme": "Azala",
|
||||||
|
"name": "Izena",
|
||||||
|
"description": "Deskripzioa",
|
||||||
|
"options": "Aukerak",
|
||||||
|
"appearance": "Itxura",
|
||||||
|
"labs": "Laborategia"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Jarraitu",
|
"continue": "Jarraitu",
|
||||||
|
@ -1634,5 +1634,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Erabiltzailea-menua"
|
"user_menu": "Erabiltzailea-menua"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Hasiera"
|
||||||
|
}
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
"Changelog": "تغییراتِ بهوجودآمده",
|
"Changelog": "تغییراتِ بهوجودآمده",
|
||||||
"Waiting for response from server": "در انتظار پاسخی از سمت سرور",
|
"Waiting for response from server": "در انتظار پاسخی از سمت سرور",
|
||||||
"Operation failed": "عملیات انجام نشد",
|
"Operation failed": "عملیات انجام نشد",
|
||||||
"Warning": "هشدار",
|
|
||||||
"This Room": "این گپ",
|
"This Room": "این گپ",
|
||||||
"Resend": "بازفرست",
|
"Resend": "بازفرست",
|
||||||
"Unavailable": "غیرقابلدسترسی",
|
"Unavailable": "غیرقابلدسترسی",
|
||||||
|
@ -103,7 +102,6 @@
|
||||||
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s نام اتاق را حذف کرد.",
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s نام اتاق را حذف کرد.",
|
||||||
"Change Password": "تغییر گذواژه",
|
"Change Password": "تغییر گذواژه",
|
||||||
"Banned users": "کاربران مسدود شده",
|
"Banned users": "کاربران مسدود شده",
|
||||||
"Attachment": "پیوست",
|
|
||||||
"Are you sure you want to reject the invitation?": "آیا مطمئن هستید که می خواهید دعوت را رد کنید؟",
|
"Are you sure you want to reject the invitation?": "آیا مطمئن هستید که می خواهید دعوت را رد کنید؟",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "آیا مطمئن هستید که می خواهید از اتاق '2%(roomName)s' خارج شوید؟",
|
"Are you sure you want to leave the room '%(roomName)s'?": "آیا مطمئن هستید که می خواهید از اتاق '2%(roomName)s' خارج شوید؟",
|
||||||
"Are you sure?": "مطمئنی؟",
|
"Are you sure?": "مطمئنی؟",
|
||||||
|
@ -124,7 +122,6 @@
|
||||||
"Account": "حساب کابری",
|
"Account": "حساب کابری",
|
||||||
"Incorrect verification code": "کد فعالسازی اشتباه است",
|
"Incorrect verification code": "کد فعالسازی اشتباه است",
|
||||||
"Incorrect username and/or password.": "نام کاربری و یا گذرواژه اشتباه است.",
|
"Incorrect username and/or password.": "نام کاربری و یا گذرواژه اشتباه است.",
|
||||||
"Home": "خانه",
|
|
||||||
"Hangup": "قطع",
|
"Hangup": "قطع",
|
||||||
"For security, this session has been signed out. Please sign in again.": "برای امنیت، این نشست نامعتبر شده است. لطفاً دوباره وارد سیستم شوید.",
|
"For security, this session has been signed out. Please sign in again.": "برای امنیت، این نشست نامعتبر شده است. لطفاً دوباره وارد سیستم شوید.",
|
||||||
"We couldn't log you in": "نتوانستیم شما را وارد کنیم",
|
"We couldn't log you in": "نتوانستیم شما را وارد کنیم",
|
||||||
|
@ -632,8 +629,6 @@
|
||||||
"other": "%(names)s و %(count)s نفر دیگر در حال نوشتن…"
|
"other": "%(names)s و %(count)s نفر دیگر در حال نوشتن…"
|
||||||
},
|
},
|
||||||
"%(displayName)s is typing …": "%(displayName)s در حال نوشتن…",
|
"%(displayName)s is typing …": "%(displayName)s در حال نوشتن…",
|
||||||
"Dark": "تاریک",
|
|
||||||
"Light": "روشن",
|
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای بهروزرسانی کرد که با %(newGlob)s تطابق داشته باشد",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای بهروزرسانی کرد که با %(newGlob)s تطابق داشته باشد",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم سرورها را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای تغییر داد که با %(newGlob)s تطابق داشته باشد",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم سرورها را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای تغییر داد که با %(newGlob)s تطابق داشته باشد",
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم اتاقها را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای تغییر داد که با %(newGlob)s تطابق داشته باشد",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s یک قاعده تحریم اتاقها را که با %(oldGlob)s تطابق داشت، به دلیل (دلایل) %(reason)s به گونهای تغییر داد که با %(newGlob)s تطابق داشته باشد",
|
||||||
|
@ -918,7 +913,6 @@
|
||||||
"Sign in with single sign-on": "با احراز هویت یکپارچه وارد شوید",
|
"Sign in with single sign-on": "با احراز هویت یکپارچه وارد شوید",
|
||||||
"This server does not support authentication with a phone number.": "این سرور از قابلیت احراز با شماره تلفن پشتیبانی نمی کند.",
|
"This server does not support authentication with a phone number.": "این سرور از قابلیت احراز با شماره تلفن پشتیبانی نمی کند.",
|
||||||
"Continue with %(provider)s": "با %(provider)s ادامه دهید",
|
"Continue with %(provider)s": "با %(provider)s ادامه دهید",
|
||||||
"Homeserver": "سرور",
|
|
||||||
"Continue with %(ssoButtons)s": "با %(ssoButtons)s ادامه بده",
|
"Continue with %(ssoButtons)s": "با %(ssoButtons)s ادامه بده",
|
||||||
"Join millions for free on the largest public server": "به بزرگترین سرور عمومی با میلیون ها نفر کاربر بپیوندید",
|
"Join millions for free on the largest public server": "به بزرگترین سرور عمومی با میلیون ها نفر کاربر بپیوندید",
|
||||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s یا %(usernamePassword)s",
|
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s یا %(usernamePassword)s",
|
||||||
|
@ -1136,7 +1130,6 @@
|
||||||
"Edit widgets, bridges & bots": "ویرایش ابزارک ها ، پل ها و ربات ها",
|
"Edit widgets, bridges & bots": "ویرایش ابزارک ها ، پل ها و ربات ها",
|
||||||
"Widgets": "ابزارک ها",
|
"Widgets": "ابزارک ها",
|
||||||
"Set my room layout for everyone": "چیدمان اتاق من را برای همه تنظیم کن",
|
"Set my room layout for everyone": "چیدمان اتاق من را برای همه تنظیم کن",
|
||||||
"Options": "گزینه ها",
|
|
||||||
"Unpin": "برداشتن پین",
|
"Unpin": "برداشتن پین",
|
||||||
"You can only pin up to %(count)s widgets": {
|
"You can only pin up to %(count)s widgets": {
|
||||||
"other": "فقط می توانید تا %(count)s ابزارک را پین کنید"
|
"other": "فقط می توانید تا %(count)s ابزارک را پین کنید"
|
||||||
|
@ -1213,7 +1206,6 @@
|
||||||
"You do not have permissions to create new rooms in this space": "شما اجازه ایجاد اتاق جدید در این فضای کاری را ندارید",
|
"You do not have permissions to create new rooms in this space": "شما اجازه ایجاد اتاق جدید در این فضای کاری را ندارید",
|
||||||
"Add room": "افزودن اتاق",
|
"Add room": "افزودن اتاق",
|
||||||
"Rooms": "اتاقها",
|
"Rooms": "اتاقها",
|
||||||
"Favourites": "موردعلاقهها",
|
|
||||||
"Open dial pad": "باز کردن صفحه شمارهگیری",
|
"Open dial pad": "باز کردن صفحه شمارهگیری",
|
||||||
"Video call": "تماس تصویری",
|
"Video call": "تماس تصویری",
|
||||||
"Voice call": "تماس صوتی",
|
"Voice call": "تماس صوتی",
|
||||||
|
@ -1653,13 +1645,9 @@
|
||||||
"Cross-signing public keys:": "کلیدهای عمومی امضاء متقابل:",
|
"Cross-signing public keys:": "کلیدهای عمومی امضاء متقابل:",
|
||||||
"Go back": "بازگشت",
|
"Go back": "بازگشت",
|
||||||
"Invite only, best for yourself or teams": "فقط با دعوتنامه، مناسب برای خودتان یا تیمها یا جمعهای خصوصی",
|
"Invite only, best for yourself or teams": "فقط با دعوتنامه، مناسب برای خودتان یا تیمها یا جمعهای خصوصی",
|
||||||
"Private": "خصوصی",
|
|
||||||
"Open space for anyone, best for communities": "محیط باز برای همه، مناسب برای جمع عمومی",
|
"Open space for anyone, best for communities": "محیط باز برای همه، مناسب برای جمع عمومی",
|
||||||
"Public": "عمومی",
|
|
||||||
"Create a space": "ساختن یک محیط",
|
"Create a space": "ساختن یک محیط",
|
||||||
"Please enter a name for the space": "لطفا یک نام برای محیط وارد کنید",
|
"Please enter a name for the space": "لطفا یک نام برای محیط وارد کنید",
|
||||||
"Description": "توضیحات",
|
|
||||||
"Name": "نام",
|
|
||||||
"Upload": "بارگذاری",
|
"Upload": "بارگذاری",
|
||||||
"Delete": "پاککردن",
|
"Delete": "پاککردن",
|
||||||
"Accept <policyLink /> to continue:": "برای ادامه <policyLink /> را بپذیرید:",
|
"Accept <policyLink /> to continue:": "برای ادامه <policyLink /> را بپذیرید:",
|
||||||
|
@ -1949,7 +1937,6 @@
|
||||||
"You don't have permission": "شما دسترسی ندارید",
|
"You don't have permission": "شما دسترسی ندارید",
|
||||||
"Drop file here to upload": "برای بارگذاری فایل آن را کشیده و در اینجا رها کنید",
|
"Drop file here to upload": "برای بارگذاری فایل آن را کشیده و در اینجا رها کنید",
|
||||||
"Failed to reject invite": "رد دعوتنامه با شکست همراه شد",
|
"Failed to reject invite": "رد دعوتنامه با شکست همراه شد",
|
||||||
"Room": "اتاق",
|
|
||||||
"No more results": "نتایج بیشتری یافن نشد",
|
"No more results": "نتایج بیشتری یافن نشد",
|
||||||
"Search failed": "جستجو موفیتآمیز نبود",
|
"Search failed": "جستجو موفیتآمیز نبود",
|
||||||
"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?": "به نظر میرسد شما در میانهی یک تماس هستید، آیا از خروج اطمینان دارید؟",
|
||||||
|
@ -2036,7 +2023,6 @@
|
||||||
"Avatar": "نمایه",
|
"Avatar": "نمایه",
|
||||||
"Join the beta": "اضافهشدن به نسخهی بتا",
|
"Join the beta": "اضافهشدن به نسخهی بتا",
|
||||||
"Leave the beta": "ترک نسخهی بتا",
|
"Leave the beta": "ترک نسخهی بتا",
|
||||||
"Beta": "بتا",
|
|
||||||
"Move right": "به سمت راست ببر",
|
"Move right": "به سمت راست ببر",
|
||||||
"Move left": "به سمت چپ ببر",
|
"Move left": "به سمت چپ ببر",
|
||||||
"Revoke permissions": "دسترسیها را لغو کنید",
|
"Revoke permissions": "دسترسیها را لغو کنید",
|
||||||
|
@ -2051,7 +2037,6 @@
|
||||||
"Reject invitation": "ردکردن دعوت",
|
"Reject invitation": "ردکردن دعوت",
|
||||||
"Hold": "نگهداشتن",
|
"Hold": "نگهداشتن",
|
||||||
"Resume": "ادامه",
|
"Resume": "ادامه",
|
||||||
"Appearance": "شکل و ظاهر",
|
|
||||||
"Share": "اشتراکگذاری",
|
"Share": "اشتراکگذاری",
|
||||||
"Revoke": "برگرداندن",
|
"Revoke": "برگرداندن",
|
||||||
"Complete": "تکمیل",
|
"Complete": "تکمیل",
|
||||||
|
@ -2147,7 +2132,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "مشکلی پیش آمد. لطفا مجددا تلاش کرده و در صورت نیاز، کنسول مرورگر خود را برای کسب اطلاعات بیشتر مشاهده نمائید.",
|
"Something went wrong. Please try again or view your console for hints.": "مشکلی پیش آمد. لطفا مجددا تلاش کرده و در صورت نیاز، کنسول مرورگر خود را برای کسب اطلاعات بیشتر مشاهده نمائید.",
|
||||||
"Error adding ignored user/server": "افزودن کاربر/سرور به لیست نادیدهگرفتهها با خطا همراه بود",
|
"Error adding ignored user/server": "افزودن کاربر/سرور به لیست نادیدهگرفتهها با خطا همراه بود",
|
||||||
"Ignored/Blocked": "نادیده گرفتهشده/بلاکشده",
|
"Ignored/Blocked": "نادیده گرفتهشده/بلاکشده",
|
||||||
"Labs": "قابلیتهای بتا",
|
|
||||||
"Clear cache and reload": "پاککردن حافظهی کش و راهاندازی مجدد",
|
"Clear cache and reload": "پاککردن حافظهی کش و راهاندازی مجدد",
|
||||||
"Your access token gives full access to your account. Do not share it with anyone.": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر میسازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.",
|
"Your access token gives full access to your account. Do not share it with anyone.": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر میسازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.",
|
||||||
"Access Token": "توکن دسترسی",
|
"Access Token": "توکن دسترسی",
|
||||||
|
@ -2211,7 +2195,6 @@
|
||||||
"Customise your appearance": "ظاهر پیامرسان خود را سفارشیسازی کنید",
|
"Customise your appearance": "ظاهر پیامرسان خود را سفارشیسازی کنید",
|
||||||
"Show advanced": "نمایش بخش پیشرفته",
|
"Show advanced": "نمایش بخش پیشرفته",
|
||||||
"Hide advanced": "پنهانکردن بخش پیشرفته",
|
"Hide advanced": "پنهانکردن بخش پیشرفته",
|
||||||
"Theme": "پوسته",
|
|
||||||
"Add theme": "افزودن پوسته",
|
"Add theme": "افزودن پوسته",
|
||||||
"Custom theme URL": "آدرس پوسته دلخواه",
|
"Custom theme URL": "آدرس پوسته دلخواه",
|
||||||
"Error downloading theme information.": "بارگیری اطلاعات پوسته با خطا همراه بود.",
|
"Error downloading theme information.": "بارگیری اطلاعات پوسته با خطا همراه بود.",
|
||||||
|
@ -2463,7 +2446,6 @@
|
||||||
"Back to thread": "بازگشت به موضوع",
|
"Back to thread": "بازگشت به موضوع",
|
||||||
"Room members": "اعضای اتاق",
|
"Room members": "اعضای اتاق",
|
||||||
"Back to chat": "بازگشت به گفتگو",
|
"Back to chat": "بازگشت به گفتگو",
|
||||||
"Threads": "موضوعات",
|
|
||||||
"Other rooms": "دیگر اتاق ها",
|
"Other rooms": "دیگر اتاق ها",
|
||||||
"Connection lost": "از دست رفتن اتصال",
|
"Connection lost": "از دست رفتن اتصال",
|
||||||
"Failed to join": "عدم موفقیت در پیوستن",
|
"Failed to join": "عدم موفقیت در پیوستن",
|
||||||
|
@ -2595,7 +2577,25 @@
|
||||||
"unmute": "صدادار",
|
"unmute": "صدادار",
|
||||||
"username": "نام کاربری",
|
"username": "نام کاربری",
|
||||||
"verification_cancelled": "تأیید هویت لغو شد",
|
"verification_cancelled": "تأیید هویت لغو شد",
|
||||||
"video": "ویدئو"
|
"video": "ویدئو",
|
||||||
|
"attachment": "پیوست",
|
||||||
|
"light": "روشن",
|
||||||
|
"dark": "تاریک",
|
||||||
|
"warning": "هشدار",
|
||||||
|
"home": "خانه",
|
||||||
|
"favourites": "موردعلاقهها",
|
||||||
|
"threads": "موضوعات",
|
||||||
|
"room": "اتاق",
|
||||||
|
"theme": "پوسته",
|
||||||
|
"name": "نام",
|
||||||
|
"description": "توضیحات",
|
||||||
|
"public": "عمومی",
|
||||||
|
"private": "خصوصی",
|
||||||
|
"options": "گزینه ها",
|
||||||
|
"appearance": "شکل و ظاهر",
|
||||||
|
"homeserver": "سرور",
|
||||||
|
"beta": "بتا",
|
||||||
|
"labs": "قابلیتهای بتا"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "ادامه",
|
"continue": "ادامه",
|
||||||
|
@ -2629,5 +2629,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "منوی کاربر"
|
"user_menu": "منوی کاربر"
|
||||||
}
|
},
|
||||||
}
|
"Home": "خانه"
|
||||||
|
}
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
"Are you sure?": "Oletko varma?",
|
"Are you sure?": "Oletko varma?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Oletko varma että haluat poistua huoneesta '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Oletko varma että haluat poistua huoneesta '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "Oletko varma että haluat hylätä kutsun?",
|
"Are you sure you want to reject the invitation?": "Oletko varma että haluat hylätä kutsun?",
|
||||||
"Attachment": "Liite",
|
|
||||||
"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.": "Kotipalvelimeen ei saada yhteyttä. Tarkista verkkoyhteytesi, varmista että <a>kotipalvelimesi SSL-sertifikaatti</a> on luotettu, ja että mikään selaimen lisäosa ei estä pyyntöjen lähettämistä.",
|
"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.": "Kotipalvelimeen ei saada yhteyttä. Tarkista verkkoyhteytesi, varmista että <a>kotipalvelimesi SSL-sertifikaatti</a> on luotettu, ja että mikään selaimen lisäosa ei estä pyyntöjen lähettämistä.",
|
||||||
"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>.": "Yhdistäminen kotipalvelimeen HTTP:n avulla ei ole mahdollista, kun selaimen osoitepalkissa on HTTPS-osoite. Käytä joko HTTPS:ää tai <a>salli turvattomat komentosarjat</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>.": "Yhdistäminen kotipalvelimeen HTTP:n avulla ei ole mahdollista, kun selaimen osoitepalkissa on HTTPS-osoite. Käytä joko HTTPS:ää tai <a>salli turvattomat komentosarjat</a>.",
|
||||||
"Change Password": "Vaihda salasana",
|
"Change Password": "Vaihda salasana",
|
||||||
|
@ -69,7 +68,6 @@
|
||||||
"Failed to unban": "Porttikiellon poistaminen epäonnistui",
|
"Failed to unban": "Porttikiellon poistaminen epäonnistui",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Sähköpostin vahvistus epäonnistui: varmista, että napsautit sähköpostissa olevaa linkkiä",
|
"Failed to verify email address: make sure you clicked the link in the email": "Sähköpostin vahvistus epäonnistui: varmista, että napsautit sähköpostissa olevaa linkkiä",
|
||||||
"Failure to create room": "Huoneen luominen epäonnistui",
|
"Failure to create room": "Huoneen luominen epäonnistui",
|
||||||
"Favourites": "Suosikit",
|
|
||||||
"Filter room members": "Suodata huoneen jäseniä",
|
"Filter room members": "Suodata huoneen jäseniä",
|
||||||
"Forget room": "Unohda huone",
|
"Forget room": "Unohda huone",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Turvallisuussyistä tämä istunto on kirjattu ulos. Ole hyvä ja kirjaudu uudestaan.",
|
"For security, this session has been signed out. Please sign in again.": "Turvallisuussyistä tämä istunto on kirjattu ulos. Ole hyvä ja kirjaudu uudestaan.",
|
||||||
|
@ -83,11 +81,9 @@
|
||||||
"Sign in with": "Tunnistus",
|
"Sign in with": "Tunnistus",
|
||||||
"Join Room": "Liity huoneeseen",
|
"Join Room": "Liity huoneeseen",
|
||||||
"Jump to first unread message.": "Hyppää ensimmäiseen lukemattomaan viestiin.",
|
"Jump to first unread message.": "Hyppää ensimmäiseen lukemattomaan viestiin.",
|
||||||
"Labs": "Laboratorio",
|
|
||||||
"Logout": "Kirjaudu ulos",
|
"Logout": "Kirjaudu ulos",
|
||||||
"Low priority": "Matala prioriteetti",
|
"Low priority": "Matala prioriteetti",
|
||||||
"Moderator": "Valvoja",
|
"Moderator": "Valvoja",
|
||||||
"Name": "Nimi",
|
|
||||||
"New passwords don't match": "Uudet salasanat eivät täsmää",
|
"New passwords don't match": "Uudet salasanat eivät täsmää",
|
||||||
"New passwords must match each other.": "Uusien salasanojen on vastattava toisiaan.",
|
"New passwords must match each other.": "Uusien salasanojen on vastattava toisiaan.",
|
||||||
"not specified": "ei määritetty",
|
"not specified": "ei määritetty",
|
||||||
|
@ -128,7 +124,6 @@
|
||||||
"Enable automatic language detection for syntax highlighting": "Ota automaattinen kielentunnistus käyttöön syntaksikorostusta varten",
|
"Enable automatic language detection for syntax highlighting": "Ota automaattinen kielentunnistus käyttöön syntaksikorostusta varten",
|
||||||
"Hangup": "Lopeta",
|
"Hangup": "Lopeta",
|
||||||
"Historical": "Vanhat",
|
"Historical": "Vanhat",
|
||||||
"Home": "Etusivu",
|
|
||||||
"Invalid file%(extra)s": "Virheellinen tiedosto%(extra)s",
|
"Invalid file%(extra)s": "Virheellinen tiedosto%(extra)s",
|
||||||
"No users have specific privileges in this room": "Kellään käyttäjällä ei ole erityisiä oikeuksia",
|
"No users have specific privileges in this room": "Kellään käyttäjällä ei ole erityisiä oikeuksia",
|
||||||
"This room is not recognised.": "Huonetta ei tunnistettu.",
|
"This room is not recognised.": "Huonetta ei tunnistettu.",
|
||||||
|
@ -157,7 +152,6 @@
|
||||||
"Fri": "pe",
|
"Fri": "pe",
|
||||||
"Sat": "la",
|
"Sat": "la",
|
||||||
"This server does not support authentication with a phone number.": "Tämä palvelin ei tue autentikointia puhelinnumeron avulla.",
|
"This server does not support authentication with a phone number.": "Tämä palvelin ei tue autentikointia puhelinnumeron avulla.",
|
||||||
"Room": "Huone",
|
|
||||||
"Copied!": "Kopioitu!",
|
"Copied!": "Kopioitu!",
|
||||||
"Failed to copy": "Kopiointi epäonnistui",
|
"Failed to copy": "Kopiointi epäonnistui",
|
||||||
"Connectivity to the server has been lost.": "Yhteys palvelimeen menetettiin.",
|
"Connectivity to the server has been lost.": "Yhteys palvelimeen menetettiin.",
|
||||||
|
@ -168,7 +162,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",
|
||||||
"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ä",
|
||||||
"Export room keys": "Vie huoneen avaimet",
|
"Export room keys": "Vie huoneen avaimet",
|
||||||
|
@ -290,7 +283,6 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "Ja %(count)s muuta..."
|
"other": "Ja %(count)s muuta..."
|
||||||
},
|
},
|
||||||
"Description": "Kuvaus",
|
|
||||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "Huomaa että olet kirjautumassa palvelimelle %(hs)s, etkä palvelimelle matrix.org.",
|
"Please note you are logging into the %(hs)s server, not matrix.org.": "Huomaa että olet kirjautumassa palvelimelle %(hs)s, etkä palvelimelle matrix.org.",
|
||||||
"Deops user with given id": "Poistaa tunnuksen mukaiselta käyttäjältä ylläpito-oikeudet",
|
"Deops user with given id": "Poistaa tunnuksen mukaiselta käyttäjältä ylläpito-oikeudet",
|
||||||
"Ignores a user, hiding their messages from you": "Sivuuttaa käyttäjän, eli hänen viestejään ei näytetä sinulle",
|
"Ignores a user, hiding their messages from you": "Sivuuttaa käyttäjän, eli hänen viestejään ei näytetä sinulle",
|
||||||
|
@ -408,7 +400,6 @@
|
||||||
"one": "%(items)s ja yksi muu"
|
"one": "%(items)s ja yksi muu"
|
||||||
},
|
},
|
||||||
"Old cryptography data detected": "Vanhaa salaustietoa havaittu",
|
"Old cryptography data detected": "Vanhaa salaustietoa havaittu",
|
||||||
"Warning": "Varoitus",
|
|
||||||
"Sunday": "Sunnuntai",
|
"Sunday": "Sunnuntai",
|
||||||
"Failed to add tag %(tagName)s to room": "Tagin %(tagName)s lisääminen huoneeseen epäonnistui",
|
"Failed to add tag %(tagName)s to room": "Tagin %(tagName)s lisääminen huoneeseen epäonnistui",
|
||||||
"Notification targets": "Ilmoituksen kohteet",
|
"Notification targets": "Ilmoituksen kohteet",
|
||||||
|
@ -576,7 +567,6 @@
|
||||||
"Email addresses": "Sähköpostiosoitteet",
|
"Email addresses": "Sähköpostiosoitteet",
|
||||||
"Phone numbers": "Puhelinnumerot",
|
"Phone numbers": "Puhelinnumerot",
|
||||||
"Language and region": "Kieli ja alue",
|
"Language and region": "Kieli ja alue",
|
||||||
"Theme": "Teema",
|
|
||||||
"Account management": "Tilin hallinta",
|
"Account management": "Tilin hallinta",
|
||||||
"Composer": "Viestin kirjoitus",
|
"Composer": "Viestin kirjoitus",
|
||||||
"Preferences": "Valinnat",
|
"Preferences": "Valinnat",
|
||||||
|
@ -1451,7 +1441,6 @@
|
||||||
"Size must be a number": "Koon täytyy olla luku",
|
"Size must be a number": "Koon täytyy olla luku",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Mukautetun fonttikoon täytyy olla vähintään %(min)s pt ja enintään %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Mukautetun fonttikoon täytyy olla vähintään %(min)s pt ja enintään %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Käytä kokoa väliltä %(min)s pt ja %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Käytä kokoa väliltä %(min)s pt ja %(max)s pt",
|
||||||
"Appearance": "Ulkoasu",
|
|
||||||
"Select room from the room list": "Valitse huone huoneluettelosta",
|
"Select room from the room list": "Valitse huone huoneluettelosta",
|
||||||
"Start verification again from the notification.": "Aloita varmennus uudelleen ilmoituksesta.",
|
"Start verification again from the notification.": "Aloita varmennus uudelleen ilmoituksesta.",
|
||||||
"Start verification again from their profile.": "Aloita varmennus uudelleen hänen profiilista.",
|
"Start verification again from their profile.": "Aloita varmennus uudelleen hänen profiilista.",
|
||||||
|
@ -1492,8 +1481,6 @@
|
||||||
"Categories": "Luokat",
|
"Categories": "Luokat",
|
||||||
"This address is available to use": "Tämä osoite on käytettävissä",
|
"This address is available to use": "Tämä osoite on käytettävissä",
|
||||||
"This address is already in use": "Tämä osoite on jo käytössä",
|
"This address is already in use": "Tämä osoite on jo käytössä",
|
||||||
"Light": "Vaalea",
|
|
||||||
"Dark": "Tumma",
|
|
||||||
"No recently visited rooms": "Ei hiljattain vierailtuja huoneita",
|
"No recently visited rooms": "Ei hiljattain vierailtuja huoneita",
|
||||||
"Sort by": "Lajittelutapa",
|
"Sort by": "Lajittelutapa",
|
||||||
"Switch to light mode": "Vaihda vaaleaan teemaan",
|
"Switch to light mode": "Vaihda vaaleaan teemaan",
|
||||||
|
@ -1935,7 +1922,6 @@
|
||||||
"Specify a homeserver": "Määritä kotipalvelin",
|
"Specify a homeserver": "Määritä kotipalvelin",
|
||||||
"The server has denied your request.": "Palvelin eväsi pyyntösi.",
|
"The server has denied your request.": "Palvelin eväsi pyyntösi.",
|
||||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Huomio: jos et lisää sähköpostia ja unohdat salasanasi, saatat <b>menettää pääsyn tiliisi pysyvästi</b>.",
|
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Huomio: jos et lisää sähköpostia ja unohdat salasanasi, saatat <b>menettää pääsyn tiliisi pysyvästi</b>.",
|
||||||
"Homeserver": "Kotipalvelin",
|
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Palvelimesi ylläpitäjä on poistanut päästä päähän -salauksen oletuksena käytöstä yksityisissä huoneissa ja yksityisviesteissä.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Palvelimesi ylläpitäjä on poistanut päästä päähän -salauksen oletuksena käytöstä yksityisissä huoneissa ja yksityisviesteissä.",
|
||||||
"%(peerName)s held the call": "%(peerName)s piti puhelua pidossa",
|
"%(peerName)s held the call": "%(peerName)s piti puhelua pidossa",
|
||||||
"Send general files as you in your active room": "Lähetä aktiiviseen huoneeseesi yleisiä tiedostoja itsenäsi",
|
"Send general files as you in your active room": "Lähetä aktiiviseen huoneeseesi yleisiä tiedostoja itsenäsi",
|
||||||
|
@ -2082,8 +2068,6 @@
|
||||||
"Share invite link": "Jaa kutsulinkki",
|
"Share invite link": "Jaa kutsulinkki",
|
||||||
"Click to copy": "Kopioi napsauttamalla",
|
"Click to copy": "Kopioi napsauttamalla",
|
||||||
"You can change these anytime.": "Voit muuttaa näitä koska tahansa.",
|
"You can change these anytime.": "Voit muuttaa näitä koska tahansa.",
|
||||||
"Private": "Yksityinen",
|
|
||||||
"Public": "Julkinen",
|
|
||||||
"Delete": "Poista",
|
"Delete": "Poista",
|
||||||
"Show chat effects (animations when receiving e.g. confetti)": "Näytä keskustelutehosteet (animaatiot, kun saat esim. konfettia)",
|
"Show chat effects (animations when receiving e.g. confetti)": "Näytä keskustelutehosteet (animaatiot, kun saat esim. konfettia)",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Siirry aikajanan pohjalle, kun lähetät viestin",
|
"Jump to the bottom of the timeline when you send a message": "Siirry aikajanan pohjalle, kun lähetät viestin",
|
||||||
|
@ -2103,7 +2087,6 @@
|
||||||
"Delete all": "Poista kaikki",
|
"Delete all": "Poista kaikki",
|
||||||
"Some of your messages have not been sent": "Osaa viesteistäsi ei ole lähetetty",
|
"Some of your messages have not been sent": "Osaa viesteistäsi ei ole lähetetty",
|
||||||
"You are the only person here. If you leave, no one will be able to join in the future, including you.": "Olet ainoa henkilö täällä. Jos lähdet, kukaan ei voi liittyä tulevaisuudessa, et myöskään sinä.",
|
"You are the only person here. If you leave, no one will be able to join in the future, including you.": "Olet ainoa henkilö täällä. Jos lähdet, kukaan ei voi liittyä tulevaisuudessa, et myöskään sinä.",
|
||||||
"Beta": "Beeta",
|
|
||||||
"The server is not configured to indicate what the problem is (CORS).": "Palvelinta ei ole säädetty ilmoittamaan, mikä ongelma on kyseessä (CORS).",
|
"The server is not configured to indicate what the problem is (CORS).": "Palvelinta ei ole säädetty ilmoittamaan, mikä ongelma on kyseessä (CORS).",
|
||||||
"Invited people will be able to read old messages.": "Kutsutut ihmiset voivat lukea vanhoja viestejä.",
|
"Invited people will be able to read old messages.": "Kutsutut ihmiset voivat lukea vanhoja viestejä.",
|
||||||
"We couldn't create your DM.": "Yksityisviestiä ei voitu luoda.",
|
"We couldn't create your DM.": "Yksityisviestiä ei voitu luoda.",
|
||||||
|
@ -2356,7 +2339,6 @@
|
||||||
"MB": "Mt",
|
"MB": "Mt",
|
||||||
"Server did not return valid authentication information.": "Palvelin ei palauttanut kelvollista tunnistautumistietoa.",
|
"Server did not return valid authentication information.": "Palvelin ei palauttanut kelvollista tunnistautumistietoa.",
|
||||||
"Please provide an address": "Määritä osoite",
|
"Please provide an address": "Määritä osoite",
|
||||||
"Thread": "Ketju",
|
|
||||||
"Call back": "Soita takaisin",
|
"Call back": "Soita takaisin",
|
||||||
"Role in <RoomName/>": "Rooli huoneessa <RoomName/>",
|
"Role in <RoomName/>": "Rooli huoneessa <RoomName/>",
|
||||||
"Reply to thread…": "Vastaa ketjuun…",
|
"Reply to thread…": "Vastaa ketjuun…",
|
||||||
|
@ -2962,7 +2944,6 @@
|
||||||
"My threads": "Omat ketjut",
|
"My threads": "Omat ketjut",
|
||||||
"Shows all threads from current room": "Näytä kaikki ketjut nykyisestä huoneesta",
|
"Shows all threads from current room": "Näytä kaikki ketjut nykyisestä huoneesta",
|
||||||
"All threads": "Kaikki ketjut",
|
"All threads": "Kaikki ketjut",
|
||||||
"Threads": "Ketjut",
|
|
||||||
"Help improve %(analyticsOwner)s": "Auta parantamaan %(analyticsOwner)s",
|
"Help improve %(analyticsOwner)s": "Auta parantamaan %(analyticsOwner)s",
|
||||||
"Confirm your Security Phrase": "Vahvista turvalause",
|
"Confirm your Security Phrase": "Vahvista turvalause",
|
||||||
"Enter your Security Phrase a second time to confirm it.": "Kirjoita turvalause toistamiseen vahvistaaksesi sen.",
|
"Enter your Security Phrase a second time to confirm it.": "Kirjoita turvalause toistamiseen vahvistaaksesi sen.",
|
||||||
|
@ -3063,7 +3044,6 @@
|
||||||
"We'll help you get connected.": "Autamme sinua yhteyden muodostamisen kanssa.",
|
"We'll help you get connected.": "Autamme sinua yhteyden muodostamisen kanssa.",
|
||||||
"Who will you chat to the most?": "Kenen kanssa keskustelet eniten?",
|
"Who will you chat to the most?": "Kenen kanssa keskustelet eniten?",
|
||||||
"Choose a locale": "Valitse maa-asetusto",
|
"Choose a locale": "Valitse maa-asetusto",
|
||||||
"Help": "Ohje",
|
|
||||||
"You don't have permission to share locations": "Sinulla ei ole oikeutta jakaa sijainteja",
|
"You don't have permission to share locations": "Sinulla ei ole oikeutta jakaa sijainteja",
|
||||||
"Message pending moderation": "Viesti odottaa moderointia",
|
"Message pending moderation": "Viesti odottaa moderointia",
|
||||||
"Message pending moderation: %(reason)s": "Viesti odottaa moderointia: %(reason)s",
|
"Message pending moderation: %(reason)s": "Viesti odottaa moderointia: %(reason)s",
|
||||||
|
@ -3402,7 +3382,6 @@
|
||||||
"Saving…": "Tallennetaan…",
|
"Saving…": "Tallennetaan…",
|
||||||
"Creating…": "Luodaan…",
|
"Creating…": "Luodaan…",
|
||||||
"Verify Session": "Vahvista istunto",
|
"Verify Session": "Vahvista istunto",
|
||||||
"User": "Käyttäjä",
|
|
||||||
"Show NSFW content": "Näytä NSFW-sisältö",
|
"Show NSFW content": "Näytä NSFW-sisältö",
|
||||||
"Requires your server to support MSC3030": "Vaatii, että palvelimesi tukee MSC3030:a",
|
"Requires your server to support MSC3030": "Vaatii, että palvelimesi tukee MSC3030:a",
|
||||||
"New ways to ignore people": "Uusia tapoja jättää ihmiset huomiotta",
|
"New ways to ignore people": "Uusia tapoja jättää ihmiset huomiotta",
|
||||||
|
@ -3537,7 +3516,28 @@
|
||||||
"unmute": "Poista mykistys",
|
"unmute": "Poista mykistys",
|
||||||
"username": "Käyttäjätunnus",
|
"username": "Käyttäjätunnus",
|
||||||
"verification_cancelled": "Varmennus peruutettu",
|
"verification_cancelled": "Varmennus peruutettu",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Liite",
|
||||||
|
"light": "Vaalea",
|
||||||
|
"dark": "Tumma",
|
||||||
|
"warning": "Varoitus",
|
||||||
|
"home": "Etusivu",
|
||||||
|
"favourites": "Suosikit",
|
||||||
|
"thread": "Ketju",
|
||||||
|
"threads": "Ketjut",
|
||||||
|
"user": "Käyttäjä",
|
||||||
|
"room": "Huone",
|
||||||
|
"theme": "Teema",
|
||||||
|
"name": "Nimi",
|
||||||
|
"description": "Kuvaus",
|
||||||
|
"public": "Julkinen",
|
||||||
|
"private": "Yksityinen",
|
||||||
|
"options": "Valinnat",
|
||||||
|
"appearance": "Ulkoasu",
|
||||||
|
"homeserver": "Kotipalvelin",
|
||||||
|
"help": "Ohje",
|
||||||
|
"beta": "Beeta",
|
||||||
|
"labs": "Laboratorio"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Jatka",
|
"continue": "Jatka",
|
||||||
|
@ -3574,5 +3574,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Käyttäjän valikko"
|
"user_menu": "Käyttäjän valikko"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Etusivu"
|
||||||
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
"A new password must be entered.": "Un nouveau mot de passe doit être saisi.",
|
"A new password must be entered.": "Un nouveau mot de passe doit être saisi.",
|
||||||
"Are you sure?": "Êtes-vous sûr ?",
|
"Are you sure?": "Êtes-vous sûr ?",
|
||||||
"Are you sure you want to reject the invitation?": "Voulez-vous vraiment rejeter l’invitation ?",
|
"Are you sure you want to reject the invitation?": "Voulez-vous vraiment rejeter l’invitation ?",
|
||||||
"Attachment": "Pièce jointe",
|
|
||||||
"Banned users": "Utilisateurs bannis",
|
"Banned users": "Utilisateurs bannis",
|
||||||
"Bans user with given id": "Bannit l’utilisateur à partir de son identifiant",
|
"Bans user with given id": "Bannit l’utilisateur à partir de son identifiant",
|
||||||
"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>.": "Impossible de se connecter au serveur d'accueil en HTTP si l’URL dans la barre de votre explorateur est en HTTPS. Utilisez HTTPS ou <a>activez la prise en charge des scripts non-vérifiés</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>.": "Impossible de se connecter au serveur d'accueil en HTTP si l’URL dans la barre de votre explorateur est en HTTPS. Utilisez HTTPS ou <a>activez la prise en charge des scripts non-vérifiés</a>.",
|
||||||
|
@ -50,7 +49,6 @@
|
||||||
"Failed to unban": "Échec de la révocation du bannissement",
|
"Failed to unban": "Échec de la révocation du bannissement",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "La vérification de l’adresse e-mail a échoué : vérifiez que vous avez bien cliqué sur le lien dans l’e-mail",
|
"Failed to verify email address: make sure you clicked the link in the email": "La vérification de l’adresse e-mail a échoué : vérifiez que vous avez bien cliqué sur le lien dans l’e-mail",
|
||||||
"Failure to create room": "Échec de création du salon",
|
"Failure to create room": "Échec de création du salon",
|
||||||
"Favourites": "Favoris",
|
|
||||||
"Filter room members": "Filtrer les membres du salon",
|
"Filter room members": "Filtrer les membres du salon",
|
||||||
"Forget room": "Oublier le salon",
|
"Forget room": "Oublier le salon",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Par mesure de sécurité, la session a expiré. Merci de vous authentifier à nouveau.",
|
"For security, this session has been signed out. Please sign in again.": "Par mesure de sécurité, la session a expiré. Merci de vous authentifier à nouveau.",
|
||||||
|
@ -64,7 +62,6 @@
|
||||||
"Invites user with given id to current room": "Invite un utilisateur dans le salon actuel à partir de son identifiant",
|
"Invites user with given id to current room": "Invite un utilisateur dans le salon actuel à partir de son identifiant",
|
||||||
"Sign in with": "Se connecter avec",
|
"Sign in with": "Se connecter avec",
|
||||||
"Join Room": "Rejoindre le salon",
|
"Join Room": "Rejoindre le salon",
|
||||||
"Labs": "Expérimental",
|
|
||||||
"Logout": "Se déconnecter",
|
"Logout": "Se déconnecter",
|
||||||
"Low priority": "Priorité basse",
|
"Low priority": "Priorité basse",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s a rendu l’historique visible à tous les membres du salon, depuis le moment où ils ont été invités.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s a rendu l’historique visible à tous les membres du salon, depuis le moment où ils ont été invités.",
|
||||||
|
@ -75,7 +72,6 @@
|
||||||
"Missing room_id in request": "Absence du room_id dans la requête",
|
"Missing room_id in request": "Absence du room_id dans la requête",
|
||||||
"Missing user_id in request": "Absence du user_id dans la requête",
|
"Missing user_id in request": "Absence du user_id dans la requête",
|
||||||
"Moderator": "Modérateur",
|
"Moderator": "Modérateur",
|
||||||
"Name": "Nom",
|
|
||||||
"New passwords don't match": "Les mots de passe ne correspondent pas",
|
"New passwords don't match": "Les mots de passe ne correspondent pas",
|
||||||
"New passwords must match each other.": "Les nouveaux mots de passe doivent être identiques.",
|
"New passwords must match each other.": "Les nouveaux mots de passe doivent être identiques.",
|
||||||
"not specified": "non spécifié",
|
"not specified": "non spécifié",
|
||||||
|
@ -172,7 +168,6 @@
|
||||||
"%(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",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "Ce serveur ne prend pas en charge l’authentification avec un numéro de téléphone.",
|
"This server does not support authentication with a phone number.": "Ce serveur ne prend pas en charge l’authentification avec un numéro de téléphone.",
|
||||||
"Room": "Salon",
|
|
||||||
"Connectivity to the server has been lost.": "La connexion au serveur a été perdue.",
|
"Connectivity to the server has been lost.": "La connexion au serveur a été perdue.",
|
||||||
"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",
|
||||||
|
@ -208,7 +203,6 @@
|
||||||
"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.",
|
||||||
"Options": "Options",
|
|
||||||
"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?": "Vous êtes sur le point d’accéder à un site tiers afin de pouvoir vous identifier pour utiliser %(integrationsUrl)s. Voulez-vous continuer ?",
|
"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?": "Vous êtes sur le point d’accéder à un site tiers afin de pouvoir vous identifier pour utiliser %(integrationsUrl)s. Voulez-vous continuer ?",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s a changé l’avatar du salon en <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s a changé l’avatar du salon en <img/>",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s a supprimé l'avatar du salon.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s a supprimé l'avatar du salon.",
|
||||||
|
@ -252,7 +246,6 @@
|
||||||
"one": "(~%(count)s résultat)",
|
"one": "(~%(count)s résultat)",
|
||||||
"other": "(~%(count)s résultats)"
|
"other": "(~%(count)s résultats)"
|
||||||
},
|
},
|
||||||
"Home": "Accueil",
|
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (rang %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (rang %(powerLevelNumber)s)",
|
||||||
"Your browser does not support the required cryptography extensions": "Votre navigateur ne prend pas en charge les extensions cryptographiques nécessaires",
|
"Your browser does not support the required cryptography extensions": "Votre navigateur ne prend pas en charge les extensions cryptographiques nécessaires",
|
||||||
"Not a valid %(brand)s keyfile": "Fichier de clé %(brand)s non valide",
|
"Not a valid %(brand)s keyfile": "Fichier de clé %(brand)s non valide",
|
||||||
|
@ -384,7 +377,6 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "Et %(count)s autres…"
|
"other": "Et %(count)s autres…"
|
||||||
},
|
},
|
||||||
"Description": "Description",
|
|
||||||
"Mirror local video feed": "Inverser horizontalement la vidéo locale (effet miroir)",
|
"Mirror local video feed": "Inverser horizontalement la vidéo locale (effet miroir)",
|
||||||
"Ignores a user, hiding their messages from you": "Ignore un utilisateur, en masquant ses messages",
|
"Ignores a user, hiding their messages from you": "Ignore un utilisateur, en masquant ses messages",
|
||||||
"Stops ignoring a user, showing their messages going forward": "Arrête d’ignorer un utilisateur, en affichant ses messages à partir de maintenant",
|
"Stops ignoring a user, showing their messages going forward": "Arrête d’ignorer un utilisateur, en affichant ses messages à partir de maintenant",
|
||||||
|
@ -411,7 +403,6 @@
|
||||||
"Send": "Envoyer",
|
"Send": "Envoyer",
|
||||||
"Old cryptography data detected": "Anciennes données de chiffrement détectées",
|
"Old cryptography data detected": "Anciennes données de chiffrement détectées",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Nous avons détecté des données d’une ancienne version de %(brand)s. Le chiffrement de bout en bout n’aura pas fonctionné correctement sur l’ancienne version. Les messages chiffrés échangés récemment dans l’ancienne version ne sont peut-être pas déchiffrables dans cette version. Les échanges de message avec cette version peuvent aussi échouer. Si vous rencontrez des problèmes, déconnectez-vous puis reconnectez-vous. Pour conserver l’historique des messages, exportez puis réimportez vos clés de chiffrement.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Nous avons détecté des données d’une ancienne version de %(brand)s. Le chiffrement de bout en bout n’aura pas fonctionné correctement sur l’ancienne version. Les messages chiffrés échangés récemment dans l’ancienne version ne sont peut-être pas déchiffrables dans cette version. Les échanges de message avec cette version peuvent aussi échouer. Si vous rencontrez des problèmes, déconnectez-vous puis reconnectez-vous. Pour conserver l’historique des messages, exportez puis réimportez vos clés de chiffrement.",
|
||||||
"Warning": "Attention",
|
|
||||||
"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.": "Vous ne pourrez pas annuler cette modification car vous vous rétrogradez. Si vous êtes le dernier utilisateur privilégié de ce salon, il sera impossible de récupérer les privilèges.",
|
"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.": "Vous ne pourrez pas annuler cette modification car vous vous rétrogradez. Si vous êtes le dernier utilisateur privilégié de ce salon, il sera impossible de récupérer les privilèges.",
|
||||||
"Send an encrypted reply…": "Envoyer une réponse chiffrée…",
|
"Send an encrypted reply…": "Envoyer une réponse chiffrée…",
|
||||||
"Send an encrypted message…": "Envoyer un message chiffré…",
|
"Send an encrypted message…": "Envoyer un message chiffré…",
|
||||||
|
@ -648,7 +639,6 @@
|
||||||
"Email addresses": "Adresses e-mail",
|
"Email addresses": "Adresses e-mail",
|
||||||
"Phone numbers": "Numéros de téléphone",
|
"Phone numbers": "Numéros de téléphone",
|
||||||
"Language and region": "Langue et région",
|
"Language and region": "Langue et région",
|
||||||
"Theme": "Thème",
|
|
||||||
"Account management": "Gestion du compte",
|
"Account management": "Gestion du compte",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez <a>ici</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez <a>ici</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez <a>ici</a> ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez <a>ici</a> ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.",
|
||||||
|
@ -1516,7 +1506,6 @@
|
||||||
"Size must be a number": "La taille doit être un nombre",
|
"Size must be a number": "La taille doit être un nombre",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "La taille de police personnalisée doit être comprise entre %(min)s pt et %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "La taille de police personnalisée doit être comprise entre %(min)s pt et %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Utiliser entre %(min)s pt et %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Utiliser entre %(min)s pt et %(max)s pt",
|
||||||
"Appearance": "Apparence",
|
|
||||||
"Joins room with given address": "Rejoint le salon à l’adresse donnée",
|
"Joins room with given address": "Rejoint le salon à l’adresse donnée",
|
||||||
"Please verify the room ID or address and try again.": "Vérifiez l’identifiant ou l’adresse du salon et réessayez.",
|
"Please verify the room ID or address and try again.": "Vérifiez l’identifiant ou l’adresse du salon et réessayez.",
|
||||||
"Room ID or address of ban list": "Identifiant du salon ou adresse de la liste de bannissement",
|
"Room ID or address of ban list": "Identifiant du salon ou adresse de la liste de bannissement",
|
||||||
|
@ -1554,8 +1543,6 @@
|
||||||
"Room options": "Options du salon",
|
"Room options": "Options du salon",
|
||||||
"Activity": "Activité",
|
"Activity": "Activité",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Light": "Clair",
|
|
||||||
"Dark": "Sombre",
|
|
||||||
"Customise your appearance": "Personnalisez l’apparence",
|
"Customise your appearance": "Personnalisez l’apparence",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Les paramètres d’apparence affecteront uniquement cette session de %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Les paramètres d’apparence affecteront uniquement cette session de %(brand)s.",
|
||||||
"Looks good!": "Ça a l’air correct !",
|
"Looks good!": "Ça a l’air correct !",
|
||||||
|
@ -2033,7 +2020,6 @@
|
||||||
"Active Widgets": "Widgets actifs",
|
"Active Widgets": "Widgets actifs",
|
||||||
"Reason (optional)": "Raison (optionnelle)",
|
"Reason (optional)": "Raison (optionnelle)",
|
||||||
"Continue with %(provider)s": "Continuer avec %(provider)s",
|
"Continue with %(provider)s": "Continuer avec %(provider)s",
|
||||||
"Homeserver": "Serveur d’accueil",
|
|
||||||
"Server Options": "Options serveur",
|
"Server Options": "Options serveur",
|
||||||
"This is the start of <roomName/>.": "C’est le début de <roomName/>.",
|
"This is the start of <roomName/>.": "C’est le début de <roomName/>.",
|
||||||
"Add a photo, so people can easily spot your room.": "Ajoutez une photo afin que les gens repèrent facilement votre salon.",
|
"Add a photo, so people can easily spot your room.": "Ajoutez une photo afin que les gens repèrent facilement votre salon.",
|
||||||
|
@ -2208,9 +2194,7 @@
|
||||||
"Your private space": "Votre espace privé",
|
"Your private space": "Votre espace privé",
|
||||||
"Your public space": "Votre espace public",
|
"Your public space": "Votre espace public",
|
||||||
"Invite only, best for yourself or teams": "Sur invitation, idéal pour vous-même ou les équipes",
|
"Invite only, best for yourself or teams": "Sur invitation, idéal pour vous-même ou les équipes",
|
||||||
"Private": "Privé",
|
|
||||||
"Open space for anyone, best for communities": "Espace ouvert à tous, idéal pour les communautés",
|
"Open space for anyone, best for communities": "Espace ouvert à tous, idéal pour les communautés",
|
||||||
"Public": "Public",
|
|
||||||
"Create a space": "Créer un espace",
|
"Create a space": "Créer un espace",
|
||||||
"Delete": "Supprimer",
|
"Delete": "Supprimer",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Sauter en bas du fil de discussion lorsque vous envoyez un message",
|
"Jump to the bottom of the timeline when you send a message": "Sauter en bas du fil de discussion lorsque vous envoyez un message",
|
||||||
|
@ -2303,7 +2287,6 @@
|
||||||
"Select a room below first": "Sélectionnez un salon ci-dessous d’abord",
|
"Select a room below first": "Sélectionnez un salon ci-dessous d’abord",
|
||||||
"Join the beta": "Rejoindre la bêta",
|
"Join the beta": "Rejoindre la bêta",
|
||||||
"Leave the beta": "Quitter la bêta",
|
"Leave the beta": "Quitter la bêta",
|
||||||
"Beta": "Bêta",
|
|
||||||
"Want to add a new room instead?": "Voulez-vous plutôt ajouter un nouveau salon ?",
|
"Want to add a new room instead?": "Voulez-vous plutôt ajouter un nouveau salon ?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Ajout du salon…",
|
"one": "Ajout du salon…",
|
||||||
|
@ -2553,7 +2536,6 @@
|
||||||
"Delete avatar": "Supprimer l’avatar",
|
"Delete avatar": "Supprimer l’avatar",
|
||||||
"Rooms and spaces": "Salons et espaces",
|
"Rooms and spaces": "Salons et espaces",
|
||||||
"Results": "Résultats",
|
"Results": "Résultats",
|
||||||
"Thread": "Discussion",
|
|
||||||
"Enable encryption in settings.": "Activer le chiffrement dans les paramètres.",
|
"Enable encryption in settings.": "Activer le chiffrement dans les paramètres.",
|
||||||
"Your private messages are normally encrypted, but this room isn't. Usually this is due to an unsupported device or method being used, like email invites.": "Vos messages privés sont normalement chiffrés, mais ce salon ne l’est pas. Cela est généralement dû à un périphérique non supporté, ou à un moyen de communication non supporté comme les invitations par e-mail.",
|
"Your private messages are normally encrypted, but this room isn't. Usually this is due to an unsupported device or method being used, like email invites.": "Vos messages privés sont normalement chiffrés, mais ce salon ne l’est pas. Cela est généralement dû à un périphérique non supporté, ou à un moyen de communication non supporté comme les invitations par e-mail.",
|
||||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Pour éviter ces problèmes, créez un <a>nouveau salon public</a> pour la conversation que vous souhaitez avoir.",
|
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Pour éviter ces problèmes, créez un <a>nouveau salon public</a> pour la conversation que vous souhaitez avoir.",
|
||||||
|
@ -2648,7 +2630,6 @@
|
||||||
"Unban from %(roomName)s": "Annuler le bannissement de %(roomName)s",
|
"Unban from %(roomName)s": "Annuler le bannissement de %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Ils pourront toujours accéder aux endroits dans lesquels vous n’êtes pas administrateur.",
|
"They'll still be able to access whatever you're not an admin of.": "Ils pourront toujours accéder aux endroits dans lesquels vous n’êtes pas administrateur.",
|
||||||
"Disinvite from %(roomName)s": "Annuler l’invitation à %(roomName)s",
|
"Disinvite from %(roomName)s": "Annuler l’invitation à %(roomName)s",
|
||||||
"Threads": "Fils de discussion",
|
|
||||||
"Create poll": "Créer un sondage",
|
"Create poll": "Créer un sondage",
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Mise-à-jour de l’espace…",
|
"one": "Mise-à-jour de l’espace…",
|
||||||
|
@ -3345,7 +3326,6 @@
|
||||||
"It’s what you’re here for, so lets get to it": "Vous êtes là pour ça, alors allons-y",
|
"It’s what you’re here for, so lets get to it": "Vous êtes là pour ça, alors allons-y",
|
||||||
"Find and invite your friends": "Trouvez et invitez vos amis",
|
"Find and invite your friends": "Trouvez et invitez vos amis",
|
||||||
"You made it!": "Vous avez réussi !",
|
"You made it!": "Vous avez réussi !",
|
||||||
"Help": "Aide",
|
|
||||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play et le logo Google Play sont des marques déposées de Google LLC.",
|
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play et le logo Google Play sont des marques déposées de Google LLC.",
|
||||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® et le logo Apple® sont des marques déposées de Apple Inc.",
|
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® et le logo Apple® sont des marques déposées de Apple Inc.",
|
||||||
"Get it on F-Droid": "Récupérez-le sur F-Droid",
|
"Get it on F-Droid": "Récupérez-le sur F-Droid",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "Ne peut pour l’instant être activé que dans config.json",
|
"Can currently only be enabled via config.json": "Ne peut pour l’instant être activé que dans config.json",
|
||||||
"Requires your server to support MSC3030": "Requiert la prise en charge par le serveur du MSC3030",
|
"Requires your server to support MSC3030": "Requiert la prise en charge par le serveur du MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "Requiert la prise en charge par le serveur de la version stable du MSC3827",
|
"Requires your server to support the stable version of MSC3827": "Requiert la prise en charge par le serveur de la version stable du MSC3827",
|
||||||
"User": "Utilisateur",
|
|
||||||
"Show avatars in user, room and event mentions": "Afficher les avatars dans les mentions d'utilisateur, de salon et d’évènements",
|
"Show avatars in user, room and event mentions": "Afficher les avatars dans les mentions d'utilisateur, de salon et d’évènements",
|
||||||
"Message from %(user)s": "Message de %(user)s",
|
"Message from %(user)s": "Message de %(user)s",
|
||||||
"Message in %(room)s": "Message dans %(room)s",
|
"Message in %(room)s": "Message dans %(room)s",
|
||||||
|
@ -3938,7 +3917,28 @@
|
||||||
"unmute": "Activer le son",
|
"unmute": "Activer le son",
|
||||||
"username": "Nom d’utilisateur",
|
"username": "Nom d’utilisateur",
|
||||||
"verification_cancelled": "Vérification annulée",
|
"verification_cancelled": "Vérification annulée",
|
||||||
"video": "Vidéo"
|
"video": "Vidéo",
|
||||||
|
"attachment": "Pièce jointe",
|
||||||
|
"light": "Clair",
|
||||||
|
"dark": "Sombre",
|
||||||
|
"warning": "Attention",
|
||||||
|
"home": "Accueil",
|
||||||
|
"favourites": "Favoris",
|
||||||
|
"thread": "Discussion",
|
||||||
|
"threads": "Fils de discussion",
|
||||||
|
"user": "Utilisateur",
|
||||||
|
"room": "Salon",
|
||||||
|
"theme": "Thème",
|
||||||
|
"name": "Nom",
|
||||||
|
"description": "Description",
|
||||||
|
"public": "Public",
|
||||||
|
"private": "Privé",
|
||||||
|
"options": "Options",
|
||||||
|
"appearance": "Apparence",
|
||||||
|
"homeserver": "Serveur d’accueil",
|
||||||
|
"help": "Aide",
|
||||||
|
"beta": "Bêta",
|
||||||
|
"labs": "Expérimental"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continuer",
|
"continue": "Continuer",
|
||||||
|
@ -3975,5 +3975,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu utilisateur"
|
"user_menu": "Menu utilisateur"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Accueil"
|
||||||
|
}
|
||||||
|
|
|
@ -66,8 +66,6 @@
|
||||||
"Support": "Tacaíocht",
|
"Support": "Tacaíocht",
|
||||||
"Random": "Randamach",
|
"Random": "Randamach",
|
||||||
"Spaces": "Spásanna",
|
"Spaces": "Spásanna",
|
||||||
"Private": "Príobháideach",
|
|
||||||
"Public": "Poiblí",
|
|
||||||
"Delete": "Bain amach",
|
"Delete": "Bain amach",
|
||||||
"Value:": "Luach:",
|
"Value:": "Luach:",
|
||||||
"Level": "Leibhéal",
|
"Level": "Leibhéal",
|
||||||
|
@ -78,7 +76,6 @@
|
||||||
"Hold": "Fan",
|
"Hold": "Fan",
|
||||||
"Resume": "Tosaigh arís",
|
"Resume": "Tosaigh arís",
|
||||||
"Effects": "Tionchair",
|
"Effects": "Tionchair",
|
||||||
"Homeserver": "Freastalaí baile",
|
|
||||||
"Approve": "Ceadaigh",
|
"Approve": "Ceadaigh",
|
||||||
"Zimbabwe": "an tSiombáib",
|
"Zimbabwe": "an tSiombáib",
|
||||||
"Zambia": "an tSaimbia",
|
"Zambia": "an tSaimbia",
|
||||||
|
@ -273,14 +270,11 @@
|
||||||
"Away": "Imithe",
|
"Away": "Imithe",
|
||||||
"Favourited": "Roghnaithe",
|
"Favourited": "Roghnaithe",
|
||||||
"Restore": "Athbhunaigh",
|
"Restore": "Athbhunaigh",
|
||||||
"Dark": "Dorcha",
|
|
||||||
"Light": "Geal",
|
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Activity": "Gníomhaíocht",
|
"Activity": "Gníomhaíocht",
|
||||||
"Feedback": "Aiseolas",
|
"Feedback": "Aiseolas",
|
||||||
"Ok": "Togha",
|
"Ok": "Togha",
|
||||||
"Categories": "Catagóire",
|
"Categories": "Catagóire",
|
||||||
"Appearance": "Cuma",
|
|
||||||
"End": "End",
|
"End": "End",
|
||||||
"Space": "Spás",
|
"Space": "Spás",
|
||||||
"Enter": "Enter",
|
"Enter": "Enter",
|
||||||
|
@ -331,21 +325,17 @@
|
||||||
"Download": "Íoslódáil",
|
"Download": "Íoslódáil",
|
||||||
"Import": "Iompórtáil",
|
"Import": "Iompórtáil",
|
||||||
"Export": "Easpórtáil",
|
"Export": "Easpórtáil",
|
||||||
"Name": "Ainm",
|
|
||||||
"Users": "Úsáideoirí",
|
"Users": "Úsáideoirí",
|
||||||
"Emoji": "Straoiseog",
|
"Emoji": "Straoiseog",
|
||||||
"Commands": "Ordú",
|
"Commands": "Ordú",
|
||||||
"Guest": "Cuairteoir",
|
"Guest": "Cuairteoir",
|
||||||
"Room": "Seomra",
|
|
||||||
"Logout": "Logáil amach",
|
"Logout": "Logáil amach",
|
||||||
"Description": "Cuntas",
|
|
||||||
"Other": "Eile",
|
"Other": "Eile",
|
||||||
"Change": "Athraigh",
|
"Change": "Athraigh",
|
||||||
"Phone": "Guthán",
|
"Phone": "Guthán",
|
||||||
"Email": "Ríomhphost",
|
"Email": "Ríomhphost",
|
||||||
"Submit": "Cuir isteach",
|
"Submit": "Cuir isteach",
|
||||||
"Code": "Cód",
|
"Code": "Cód",
|
||||||
"Home": "Tús",
|
|
||||||
"Favourite": "Cuir mar ceanán",
|
"Favourite": "Cuir mar ceanán",
|
||||||
"Resend": "Athsheol",
|
"Resend": "Athsheol",
|
||||||
"Upload": "Uaslódáil",
|
"Upload": "Uaslódáil",
|
||||||
|
@ -374,12 +364,9 @@
|
||||||
"one": "Tháinig %(severalUsers)s isteach"
|
"one": "Tháinig %(severalUsers)s isteach"
|
||||||
},
|
},
|
||||||
"Join": "Téigh isteach",
|
"Join": "Téigh isteach",
|
||||||
"Warning": "Rabhadh",
|
|
||||||
"Update": "Uasdátaigh",
|
"Update": "Uasdátaigh",
|
||||||
"edited": "curtha in eagar",
|
"edited": "curtha in eagar",
|
||||||
"Copied!": "Cóipeáilte!",
|
"Copied!": "Cóipeáilte!",
|
||||||
"Attachment": "Ceangaltán",
|
|
||||||
"Options": "Roghanna",
|
|
||||||
"Yesterday": "Inné",
|
"Yesterday": "Inné",
|
||||||
"Today": "Inniu",
|
"Today": "Inniu",
|
||||||
"Saturday": "Dé Sathairn",
|
"Saturday": "Dé Sathairn",
|
||||||
|
@ -395,7 +382,6 @@
|
||||||
"Re-join": "Téigh ar ais isteach",
|
"Re-join": "Téigh ar ais isteach",
|
||||||
"Historical": "Stairiúil",
|
"Historical": "Stairiúil",
|
||||||
"Rooms": "Seomraí",
|
"Rooms": "Seomraí",
|
||||||
"Favourites": "Ceanáin",
|
|
||||||
"Search": "Cuardaigh",
|
"Search": "Cuardaigh",
|
||||||
"Replying": "Ag freagairt",
|
"Replying": "Ag freagairt",
|
||||||
"Unknown": "Anaithnid",
|
"Unknown": "Anaithnid",
|
||||||
|
@ -436,12 +422,10 @@
|
||||||
"Preferences": "Roghanna",
|
"Preferences": "Roghanna",
|
||||||
"Notifications": "Fógraí",
|
"Notifications": "Fógraí",
|
||||||
"Versions": "Leaganacha",
|
"Versions": "Leaganacha",
|
||||||
"Labs": "Turgnaimh",
|
|
||||||
"FAQ": "Ceisteanna Coitianta - CC",
|
"FAQ": "Ceisteanna Coitianta - CC",
|
||||||
"Credits": "Creidiúintí",
|
"Credits": "Creidiúintí",
|
||||||
"Legal": "Dlí",
|
"Legal": "Dlí",
|
||||||
"General": "Ginearálta",
|
"General": "Ginearálta",
|
||||||
"Theme": "Téama",
|
|
||||||
"Account": "Cuntas",
|
"Account": "Cuntas",
|
||||||
"Profile": "Próifíl",
|
"Profile": "Próifíl",
|
||||||
"Noisy": "Callánach",
|
"Noisy": "Callánach",
|
||||||
|
@ -595,7 +579,6 @@
|
||||||
"Visibility": "Léargas",
|
"Visibility": "Léargas",
|
||||||
"Address": "Seoladh",
|
"Address": "Seoladh",
|
||||||
"Sent": "Seolta",
|
"Sent": "Seolta",
|
||||||
"Beta": "Béite",
|
|
||||||
"Connecting": "Ag Ceangal",
|
"Connecting": "Ag Ceangal",
|
||||||
"Play": "Cas",
|
"Play": "Cas",
|
||||||
"Pause": "Cuir ar sos",
|
"Pause": "Cuir ar sos",
|
||||||
|
@ -651,7 +634,6 @@
|
||||||
"Server may be unavailable, overloaded, or you hit a bug.": "D’fhéadfadh nach mbeadh an freastalaí ar fáil, ró-ualaithe, nó fuair tú fabht.",
|
"Server may be unavailable, overloaded, or you hit a bug.": "D’fhéadfadh nach mbeadh an freastalaí ar fáil, ró-ualaithe, nó fuair tú fabht.",
|
||||||
"Rooms and spaces": "Seomraí agus spásanna",
|
"Rooms and spaces": "Seomraí agus spásanna",
|
||||||
"Collapse reply thread": "Cuir na freagraí i bhfolach",
|
"Collapse reply thread": "Cuir na freagraí i bhfolach",
|
||||||
"Thread": "Snáithe",
|
|
||||||
"Low priority": "Tosaíocht íseal",
|
"Low priority": "Tosaíocht íseal",
|
||||||
"Share room": "Roinn seomra",
|
"Share room": "Roinn seomra",
|
||||||
"Forget room": "Déan dearmad ar an seomra",
|
"Forget room": "Déan dearmad ar an seomra",
|
||||||
|
@ -705,7 +687,25 @@
|
||||||
"success": "Rath",
|
"success": "Rath",
|
||||||
"suggestions": "Moltaí",
|
"suggestions": "Moltaí",
|
||||||
"unmute": "Stop ag ciúnú",
|
"unmute": "Stop ag ciúnú",
|
||||||
"username": "Ainm úsáideora"
|
"username": "Ainm úsáideora",
|
||||||
|
"attachment": "Ceangaltán",
|
||||||
|
"light": "Geal",
|
||||||
|
"dark": "Dorcha",
|
||||||
|
"warning": "Rabhadh",
|
||||||
|
"home": "Tús",
|
||||||
|
"favourites": "Ceanáin",
|
||||||
|
"thread": "Snáithe",
|
||||||
|
"room": "Seomra",
|
||||||
|
"theme": "Téama",
|
||||||
|
"name": "Ainm",
|
||||||
|
"description": "Cuntas",
|
||||||
|
"public": "Poiblí",
|
||||||
|
"private": "Príobháideach",
|
||||||
|
"options": "Roghanna",
|
||||||
|
"appearance": "Cuma",
|
||||||
|
"homeserver": "Freastalaí baile",
|
||||||
|
"beta": "Béite",
|
||||||
|
"labs": "Turgnaimh"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Lean ar aghaidh",
|
"continue": "Lean ar aghaidh",
|
||||||
|
@ -734,5 +734,6 @@
|
||||||
"start": "Tosaigh",
|
"start": "Tosaigh",
|
||||||
"start_chat": "Tosaigh comhrá",
|
"start_chat": "Tosaigh comhrá",
|
||||||
"yes": "Tá"
|
"yes": "Tá"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Tús"
|
||||||
|
}
|
||||||
|
|
|
@ -109,7 +109,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
||||||
"Mirror local video feed": "Replicar a fonte de vídeo local",
|
"Mirror local video feed": "Replicar a fonte de vídeo local",
|
||||||
"Drop file here to upload": "Solte aquí o ficheiro para subilo",
|
"Drop file here to upload": "Solte aquí o ficheiro para subilo",
|
||||||
"Options": "Axustes",
|
|
||||||
"Unban": "Non bloquear",
|
"Unban": "Non bloquear",
|
||||||
"Failed to ban user": "Fallo ao bloquear usuaria",
|
"Failed to ban user": "Fallo ao bloquear usuaria",
|
||||||
"Failed to mute user": "Fallo ó silenciar usuaria",
|
"Failed to mute user": "Fallo ó silenciar usuaria",
|
||||||
|
@ -128,7 +127,6 @@
|
||||||
"Invited": "Convidada",
|
"Invited": "Convidada",
|
||||||
"Filter room members": "Filtrar os participantes da conversa",
|
"Filter room members": "Filtrar os participantes da conversa",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (permiso %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (permiso %(powerLevelNumber)s)",
|
||||||
"Attachment": "Anexo",
|
|
||||||
"Hangup": "Quedada",
|
"Hangup": "Quedada",
|
||||||
"Voice call": "Chamada de voz",
|
"Voice call": "Chamada de voz",
|
||||||
"Video call": "Chamada de vídeo",
|
"Video call": "Chamada de vídeo",
|
||||||
|
@ -160,7 +158,6 @@
|
||||||
"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.",
|
||||||
"Favourites": "Favoritas",
|
|
||||||
"Rooms": "Salas",
|
"Rooms": "Salas",
|
||||||
"Low priority": "Baixa prioridade",
|
"Low priority": "Baixa prioridade",
|
||||||
"Historical": "Historial",
|
"Historical": "Historial",
|
||||||
|
@ -221,7 +218,6 @@
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un trebello elimínalo para todas as usuarias desta sala. ¿tes certeza de querer eliminar este widget?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Quitando un trebello elimínalo para todas as usuarias desta sala. ¿tes certeza de querer eliminar este widget?",
|
||||||
"Delete widget": "Eliminar widget",
|
"Delete widget": "Eliminar widget",
|
||||||
"Create new room": "Crear unha nova sala",
|
"Create new room": "Crear unha nova sala",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)s uníronse %(count)s veces",
|
"other": "%(severalUsers)s uníronse %(count)s veces",
|
||||||
|
@ -329,10 +325,8 @@
|
||||||
"Unable to verify email address.": "Non se puido verificar enderezo de correo electrónico.",
|
"Unable to verify email address.": "Non se puido verificar enderezo de correo electrónico.",
|
||||||
"This will allow you to reset your password and receive notifications.": "Isto permitiralle restablecer o seu contrasinal e recibir notificacións.",
|
"This will allow you to reset your password and receive notifications.": "Isto permitiralle restablecer o seu contrasinal e recibir notificacións.",
|
||||||
"Skip": "Saltar",
|
"Skip": "Saltar",
|
||||||
"Name": "Nome",
|
|
||||||
"You must <a>register</a> to use this functionality": "Debe <a>rexistrarse</a> para utilizar esta función",
|
"You must <a>register</a> to use this functionality": "Debe <a>rexistrarse</a> para utilizar esta función",
|
||||||
"You must join the room to see its files": "Debes unirte a sala para ver os seus ficheiros",
|
"You must join the room to see its files": "Debes unirte a sala para ver os seus ficheiros",
|
||||||
"Description": "Descrición",
|
|
||||||
"Reject invitation": "Rexeitar convite",
|
"Reject invitation": "Rexeitar convite",
|
||||||
"Are you sure you want to reject the invitation?": "Seguro que desexa rexeitar o convite?",
|
"Are you sure you want to reject the invitation?": "Seguro que desexa rexeitar o convite?",
|
||||||
"Failed to reject invitation": "Fallo ao rexeitar o convite",
|
"Failed to reject invitation": "Fallo ao rexeitar o convite",
|
||||||
|
@ -341,7 +335,6 @@
|
||||||
"For security, this session has been signed out. Please sign in again.": "Por seguridade, pechouse a sesión. Por favor, conéctate outra vez.",
|
"For security, this session has been signed out. Please sign in again.": "Por seguridade, pechouse a sesión. Por favor, conéctate outra vez.",
|
||||||
"Old cryptography data detected": "Detectouse o uso de criptografía sobre datos antigos",
|
"Old cryptography data detected": "Detectouse o uso de criptografía sobre datos antigos",
|
||||||
"Logout": "Saír",
|
"Logout": "Saír",
|
||||||
"Warning": "Aviso",
|
|
||||||
"Connectivity to the server has been lost.": "Perdeuse a conexión ao servidor.",
|
"Connectivity to the server has been lost.": "Perdeuse a conexión ao servidor.",
|
||||||
"Sent messages will be stored until your connection has returned.": "As mensaxes enviadas gardaranse ate que retome a conexión.",
|
"Sent messages will be stored until your connection has returned.": "As mensaxes enviadas gardaranse ate que retome a conexión.",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Semella estar a subir ficheiros, seguro que desexa deixalo?",
|
"You seem to be uploading files, are you sure you want to quit?": "Semella estar a subir ficheiros, seguro que desexa deixalo?",
|
||||||
|
@ -349,7 +342,6 @@
|
||||||
"Search failed": "Fallou a busca",
|
"Search failed": "Fallou a busca",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "O servidor podería non estar dispoñible, sobrecargado, ou caducou a busca :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "O servidor podería non estar dispoñible, sobrecargado, ou caducou a busca :(",
|
||||||
"No more results": "Sen máis resultados",
|
"No more results": "Sen máis resultados",
|
||||||
"Room": "Sala",
|
|
||||||
"Failed to reject invite": "Fallo ao rexeitar o convite",
|
"Failed to reject invite": "Fallo ao rexeitar o convite",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Intentouse cargar un punto concreto do historial desta sala, pero non tes permiso para ver a mensaxe en cuestión.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Intentouse cargar un punto concreto do historial desta sala, pero non tes permiso para ver a mensaxe en cuestión.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Intentouse cargar un punto específico do historial desta sala, pero non se puido atopar.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Intentouse cargar un punto específico do historial desta sala, pero non se puido atopar.",
|
||||||
|
@ -365,7 +357,6 @@
|
||||||
"<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",
|
||||||
"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",
|
||||||
"Start automatically after system login": "Iniciar automaticamente despois de iniciar sesión",
|
"Start automatically after system login": "Iniciar automaticamente despois de iniciar sesión",
|
||||||
|
@ -767,7 +758,6 @@
|
||||||
"Theme added!": "Decorado engadido!",
|
"Theme added!": "Decorado engadido!",
|
||||||
"Custom theme URL": "URL do decorado personalizado",
|
"Custom theme URL": "URL do decorado personalizado",
|
||||||
"Add theme": "Engadir decorado",
|
"Add theme": "Engadir decorado",
|
||||||
"Theme": "Decorado",
|
|
||||||
"Language and region": "Idioma e rexión",
|
"Language and region": "Idioma e rexión",
|
||||||
"Your theme": "O teu decorado",
|
"Your theme": "O teu decorado",
|
||||||
"Support adding custom themes": "Permitir engadir decorados personalizados",
|
"Support adding custom themes": "Permitir engadir decorados personalizados",
|
||||||
|
@ -955,7 +945,6 @@
|
||||||
"Size must be a number": "O tamaño ten que ser un número",
|
"Size must be a number": "O tamaño ten que ser un número",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "O tamaño da fonte só pode estar entre %(min)s pt e %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "O tamaño da fonte só pode estar entre %(min)s pt e %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Usa entre %(min)s pt e %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Usa entre %(min)s pt e %(max)s pt",
|
||||||
"Appearance": "Aparencia",
|
|
||||||
"Email addresses": "Enderezos de email",
|
"Email addresses": "Enderezos de email",
|
||||||
"Phone numbers": "Número de teléfono",
|
"Phone numbers": "Número de teléfono",
|
||||||
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta os Termos do Servizo do servidor (%(serverName)s) para permitir que te atopen polo enderezo de email ou número de teléfono.",
|
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta os Termos do Servizo do servidor (%(serverName)s) para permitir que te atopen polo enderezo de email ou número de teléfono.",
|
||||||
|
@ -1083,8 +1072,6 @@
|
||||||
"Everyone in this room is verified": "Todas nesta sala están verificadas",
|
"Everyone in this room is verified": "Todas nesta sala están verificadas",
|
||||||
"Edit message": "Editar mensaxe",
|
"Edit message": "Editar mensaxe",
|
||||||
"Mod": "Mod",
|
"Mod": "Mod",
|
||||||
"Light": "Claro",
|
|
||||||
"Dark": "Escuro",
|
|
||||||
"Customise your appearance": "Personaliza o aspecto",
|
"Customise your appearance": "Personaliza o aspecto",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Os axustes da aparencia só lle afectan a esta sesión %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Os axustes da aparencia só lle afectan a esta sesión %(brand)s.",
|
||||||
"Encrypted by an unverified session": "Cifrada por unha sesión non verificada",
|
"Encrypted by an unverified session": "Cifrada por unha sesión non verificada",
|
||||||
|
@ -2065,7 +2052,6 @@
|
||||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Lembra que se non engades un email e esqueces o contrasinal <b>perderás de xeito permanente o acceso á conta</b>.",
|
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Lembra que se non engades un email e esqueces o contrasinal <b>perderás de xeito permanente o acceso á conta</b>.",
|
||||||
"Continuing without email": "Continuando sen email",
|
"Continuing without email": "Continuando sen email",
|
||||||
"Continue with %(provider)s": "Continuar con %(provider)s",
|
"Continue with %(provider)s": "Continuar con %(provider)s",
|
||||||
"Homeserver": "Servidor de inicio",
|
|
||||||
"Server Options": "Opcións do servidor",
|
"Server Options": "Opcións do servidor",
|
||||||
"Reason (optional)": "Razón (optativa)",
|
"Reason (optional)": "Razón (optativa)",
|
||||||
"Invalid URL": "URL non válido",
|
"Invalid URL": "URL non válido",
|
||||||
|
@ -2209,9 +2195,7 @@
|
||||||
"Your private space": "O teu espazo privado",
|
"Your private space": "O teu espazo privado",
|
||||||
"Your public space": "O teu espazo público",
|
"Your public space": "O teu espazo público",
|
||||||
"Invite only, best for yourself or teams": "Só con convite, mellor para ti ou para equipos",
|
"Invite only, best for yourself or teams": "Só con convite, mellor para ti ou para equipos",
|
||||||
"Private": "Privado",
|
|
||||||
"Open space for anyone, best for communities": "Espazo aberto para calquera, mellor para comunidades",
|
"Open space for anyone, best for communities": "Espazo aberto para calquera, mellor para comunidades",
|
||||||
"Public": "Público",
|
|
||||||
"Create a space": "Crear un espazo",
|
"Create a space": "Crear un espazo",
|
||||||
"Delete": "Eliminar",
|
"Delete": "Eliminar",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Ir ao final da cronoloxía cando envías unha mensaxe",
|
"Jump to the bottom of the timeline when you send a message": "Ir ao final da cronoloxía cando envías unha mensaxe",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "Primeiro elixe embaixo unha sala",
|
"Select a room below first": "Primeiro elixe embaixo unha sala",
|
||||||
"Join the beta": "Unirse á beta",
|
"Join the beta": "Unirse á beta",
|
||||||
"Leave the beta": "Saír da beta",
|
"Leave the beta": "Saír da beta",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "Queres engadir unha nova sala?",
|
"Want to add a new room instead?": "Queres engadir unha nova sala?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Engadindo sala...",
|
"one": "Engadindo sala...",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Para evitar estos problemas, crea unha <a>nova sala cifrada</a> para a conversa que pretendes manter.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Para evitar estos problemas, crea unha <a>nova sala cifrada</a> para a conversa que pretendes manter.",
|
||||||
"Are you sure you want to add encryption to this public room?": "Tes a certeza de querer engadir cifrado a esta sala pública?",
|
"Are you sure you want to add encryption to this public room?": "Tes a certeza de querer engadir cifrado a esta sala pública?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "A sinatura-cruzada está preparada pero non hai copia das chaves.",
|
"Cross-signing is ready but keys are not backed up.": "A sinatura-cruzada está preparada pero non hai copia das chaves.",
|
||||||
"Thread": "Tema",
|
|
||||||
"Autoplay GIFs": "Reprod. automática GIFs",
|
"Autoplay GIFs": "Reprod. automática GIFs",
|
||||||
"Autoplay videos": "Reprod. automática vídeo",
|
"Autoplay videos": "Reprod. automática vídeo",
|
||||||
"The above, but in <Room /> as well": "O de arriba, pero tamén en <Room />",
|
"The above, but in <Room /> as well": "O de arriba, pero tamén en <Room />",
|
||||||
|
@ -2648,7 +2630,6 @@
|
||||||
"Unban from %(roomName)s": "Permitir acceso a %(roomName)s",
|
"Unban from %(roomName)s": "Permitir acceso a %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Poderán seguir accedendo a sitios onde ti non es administradora.",
|
"They'll still be able to access whatever you're not an admin of.": "Poderán seguir accedendo a sitios onde ti non es administradora.",
|
||||||
"Disinvite from %(roomName)s": "Retirar o convite para %(roomName)s",
|
"Disinvite from %(roomName)s": "Retirar o convite para %(roomName)s",
|
||||||
"Threads": "Conversas",
|
|
||||||
"Create poll": "Crear enquisa",
|
"Create poll": "Crear enquisa",
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s resposta",
|
"one": "%(count)s resposta",
|
||||||
|
@ -3315,7 +3296,6 @@
|
||||||
"Saved Items": "Elementos gardados",
|
"Saved Items": "Elementos gardados",
|
||||||
"Send your first message to invite <displayName/> to chat": "Envía a túa primeira mensaxe para convidar a <displayName/> ao chat",
|
"Send your first message to invite <displayName/> to chat": "Envía a túa primeira mensaxe para convidar a <displayName/> ao chat",
|
||||||
"Choose a locale": "Elixe o idioma",
|
"Choose a locale": "Elixe o idioma",
|
||||||
"Help": "Axuda",
|
|
||||||
"Spell check": "Corrección",
|
"Spell check": "Corrección",
|
||||||
"Complete these to get the most out of %(brand)s": "Completa esto para sacarlle partido a %(brand)s",
|
"Complete these to get the most out of %(brand)s": "Completa esto para sacarlle partido a %(brand)s",
|
||||||
"You did it!": "Xa está!",
|
"You did it!": "Xa está!",
|
||||||
|
@ -3463,7 +3443,27 @@
|
||||||
"unmute": "Non acalar",
|
"unmute": "Non acalar",
|
||||||
"username": "Nome de usuaria",
|
"username": "Nome de usuaria",
|
||||||
"verification_cancelled": "Verificación cancelada",
|
"verification_cancelled": "Verificación cancelada",
|
||||||
"video": "Vídeo"
|
"video": "Vídeo",
|
||||||
|
"attachment": "Anexo",
|
||||||
|
"light": "Claro",
|
||||||
|
"dark": "Escuro",
|
||||||
|
"warning": "Aviso",
|
||||||
|
"home": "Inicio",
|
||||||
|
"favourites": "Favoritas",
|
||||||
|
"thread": "Tema",
|
||||||
|
"threads": "Conversas",
|
||||||
|
"room": "Sala",
|
||||||
|
"theme": "Decorado",
|
||||||
|
"name": "Nome",
|
||||||
|
"description": "Descrición",
|
||||||
|
"public": "Público",
|
||||||
|
"private": "Privado",
|
||||||
|
"options": "Axustes",
|
||||||
|
"appearance": "Aparencia",
|
||||||
|
"homeserver": "Servidor de inicio",
|
||||||
|
"help": "Axuda",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Labs"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continuar",
|
"continue": "Continuar",
|
||||||
|
@ -3500,5 +3500,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menú de usuaria"
|
"user_menu": "Menú de usuaria"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Inicio"
|
||||||
|
}
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
"Dec": "דצמבר",
|
"Dec": "דצמבר",
|
||||||
"PM": "PM",
|
"PM": "PM",
|
||||||
"AM": "AM",
|
"AM": "AM",
|
||||||
"Warning": "התראה",
|
|
||||||
"Submit debug logs": "צרף לוגים",
|
"Submit debug logs": "צרף לוגים",
|
||||||
"Online": "מקוון",
|
"Online": "מקוון",
|
||||||
"Register": "צור חשבון",
|
"Register": "צור חשבון",
|
||||||
|
@ -586,8 +585,6 @@
|
||||||
"%(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 נכנס דרך התחברות חדשה מבלי לאמת אותה:",
|
||||||
"Verify your other session using one of the options below.": "אמתו את ההתחברות האחרת שלכם דרך אחת מהאפשרויות למטה.",
|
"Verify your other session using one of the options below.": "אמתו את ההתחברות האחרת שלכם דרך אחת מהאפשרויות למטה.",
|
||||||
"You signed in to a new session without verifying it:": "נכנסתם דרך התחברות חדשה מבלי לאמת אותה:",
|
"You signed in to a new session without verifying it:": "נכנסתם דרך התחברות חדשה מבלי לאמת אותה:",
|
||||||
"Dark": "כהה",
|
|
||||||
"Light": "בהיר",
|
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s עדכן כלל חסימה אשר תאם ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s עדכן כלל חסימה אשר תאם ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)sשינה כלל אשר חסם שרתים שתאמו ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)sשינה כלל אשר חסם שרתים שתאמו ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s שינה כלל אשר חסם חדרים התואמים ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s שינה כלל אשר חסם חדרים התואמים ל%(oldGlob)s ל%(newGlob)s עבור %(reason)s",
|
||||||
|
@ -945,7 +942,6 @@
|
||||||
"Sign out": "יציאה",
|
"Sign out": "יציאה",
|
||||||
"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 מלהצטרף אי פעם לחדר זה.",
|
||||||
"Topic (optional)": "נושא (לא חובה)",
|
"Topic (optional)": "נושא (לא חובה)",
|
||||||
"Name": "שם",
|
|
||||||
"Create a private room": "צור חדר פרטי",
|
"Create a private room": "צור חדר פרטי",
|
||||||
"Create a public room": "צור חדר ציבורי",
|
"Create a public room": "צור חדר ציבורי",
|
||||||
"You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "ייתכן שתשבית זאת אם החדר ישמש לשיתוף פעולה עם צוותים חיצוניים שיש להם שרת בית משלהם. לא ניתן לשנות זאת מאוחר יותר.",
|
"You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "ייתכן שתשבית זאת אם החדר ישמש לשיתוף פעולה עם צוותים חיצוניים שיש להם שרת בית משלהם. לא ניתן לשנות זאת מאוחר יותר.",
|
||||||
|
@ -986,13 +982,11 @@
|
||||||
"Can't find this server or its room list": "לא ניתן למצוא שרת זה או את רשימת החדרים שלו",
|
"Can't find this server or its room list": "לא ניתן למצוא שרת זה או את רשימת החדרים שלו",
|
||||||
"Looks good": "נראה טוב",
|
"Looks good": "נראה טוב",
|
||||||
"Enter a server name": "הכנס שם שרת",
|
"Enter a server name": "הכנס שם שרת",
|
||||||
"Home": "הבית",
|
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "ו%(count)s עוד..."
|
"other": "ו%(count)s עוד..."
|
||||||
},
|
},
|
||||||
"Sign in with single sign-on": "היכנס באמצעות כניסה יחידה",
|
"Sign in with single sign-on": "היכנס באמצעות כניסה יחידה",
|
||||||
"Continue with %(provider)s": "המשך עם %(provider)s",
|
"Continue with %(provider)s": "המשך עם %(provider)s",
|
||||||
"Homeserver": "שרת הבית",
|
|
||||||
"Join millions for free on the largest public server": "הצטרפו למיליונים בחינם בשרת הציבורי הגדול ביותר",
|
"Join millions for free on the largest public server": "הצטרפו למיליונים בחינם בשרת הציבורי הגדול ביותר",
|
||||||
"Server Options": "אפשרויות שרת",
|
"Server Options": "אפשרויות שרת",
|
||||||
"This address is already in use": "כתובת זו נמצאת בשימוש",
|
"This address is already in use": "כתובת זו נמצאת בשימוש",
|
||||||
|
@ -1134,7 +1128,6 @@
|
||||||
"Download %(text)s": "הורד %(text)s",
|
"Download %(text)s": "הורד %(text)s",
|
||||||
"Decrypt %(text)s": "פענח %(text)s",
|
"Decrypt %(text)s": "פענח %(text)s",
|
||||||
"Error decrypting attachment": "שגיאה בפענוח קבצים מצורפים",
|
"Error decrypting attachment": "שגיאה בפענוח קבצים מצורפים",
|
||||||
"Attachment": "נספחים",
|
|
||||||
"Message Actions": "פעולות הודעה",
|
"Message Actions": "פעולות הודעה",
|
||||||
"The encryption used by this room isn't supported.": "ההצפנה בה משתמשים בחדר זה אינה נתמכת.",
|
"The encryption used by this room isn't supported.": "ההצפנה בה משתמשים בחדר זה אינה נתמכת.",
|
||||||
"Encryption not enabled": "ההצפנה לא מופעלת",
|
"Encryption not enabled": "ההצפנה לא מופעלת",
|
||||||
|
@ -1198,7 +1191,6 @@
|
||||||
"Add widgets, bridges & bots": "הוסף יישומונים, גשרים ובוטים",
|
"Add widgets, bridges & bots": "הוסף יישומונים, גשרים ובוטים",
|
||||||
"Edit widgets, bridges & bots": "ערוך ישומונים, גשרים ובוטים",
|
"Edit widgets, bridges & bots": "ערוך ישומונים, גשרים ובוטים",
|
||||||
"Widgets": "ישומונים",
|
"Widgets": "ישומונים",
|
||||||
"Options": "אפשרויות",
|
|
||||||
"Unpin": "הסר נעיצה",
|
"Unpin": "הסר נעיצה",
|
||||||
"You can only pin up to %(count)s widgets": {
|
"You can only pin up to %(count)s widgets": {
|
||||||
"other": "אתה יכול להצמיד עד%(count)s ווידג'טים בלבד"
|
"other": "אתה יכול להצמיד עד%(count)s ווידג'טים בלבד"
|
||||||
|
@ -1283,7 +1275,6 @@
|
||||||
"Explore public rooms": "שוטט בחדרים ציבוריים",
|
"Explore public rooms": "שוטט בחדרים ציבוריים",
|
||||||
"Create new room": "צור חדר חדש",
|
"Create new room": "צור חדר חדש",
|
||||||
"Add room": "הוסף חדר",
|
"Add room": "הוסף חדר",
|
||||||
"Favourites": "מועדפים",
|
|
||||||
"Show Widgets": "הצג ישומונים",
|
"Show Widgets": "הצג ישומונים",
|
||||||
"Hide Widgets": "הסתר ישומונים",
|
"Hide Widgets": "הסתר ישומונים",
|
||||||
"Forget room": "שכח חדר",
|
"Forget room": "שכח חדר",
|
||||||
|
@ -1544,7 +1535,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "משהו השתבש. נסה שוב או הצג את המסוף שלך לקבלת רמזים.",
|
"Something went wrong. Please try again or view your console for hints.": "משהו השתבש. נסה שוב או הצג את המסוף שלך לקבלת רמזים.",
|
||||||
"Error adding ignored user/server": "שגיאה בהוספת שרת\\משתמש שהתעלמתם ממנו",
|
"Error adding ignored user/server": "שגיאה בהוספת שרת\\משתמש שהתעלמתם ממנו",
|
||||||
"Ignored/Blocked": "התעלם\\חסום",
|
"Ignored/Blocked": "התעלם\\חסום",
|
||||||
"Labs": "מעבדת הפיתוח",
|
|
||||||
"Clear cache and reload": "נקה מטמון ואתחל",
|
"Clear cache and reload": "נקה מטמון ואתחל",
|
||||||
"%(brand)s version:": "גרסאת %(brand)s:",
|
"%(brand)s version:": "גרסאת %(brand)s:",
|
||||||
"Versions": "גרסאות",
|
"Versions": "גרסאות",
|
||||||
|
@ -1572,7 +1562,6 @@
|
||||||
"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": "הסתר מתקדם",
|
||||||
"Theme": "ערכת נושא",
|
|
||||||
"Add theme": "הוסף ערכת נושא חדשה",
|
"Add theme": "הוסף ערכת נושא חדשה",
|
||||||
"Custom theme URL": "כתובת ערכת נושא מותאמת אישית",
|
"Custom theme URL": "כתובת ערכת נושא מותאמת אישית",
|
||||||
"Theme added!": "ערכת נושא התווספה בהצלחה!",
|
"Theme added!": "ערכת נושא התווספה בהצלחה!",
|
||||||
|
@ -1636,7 +1625,6 @@
|
||||||
"Sort by": "סדר לפי",
|
"Sort by": "סדר לפי",
|
||||||
"Show previews of messages": "הצג תצוגה מקדימה של הודעות",
|
"Show previews of messages": "הצג תצוגה מקדימה של הודעות",
|
||||||
"Show rooms with unread messages first": "הצג תחילה חדרים עם הודעות שלא נקראו",
|
"Show rooms with unread messages first": "הצג תחילה חדרים עם הודעות שלא נקראו",
|
||||||
"Appearance": "מראה",
|
|
||||||
"%(roomName)s is not accessible at this time.": "לא ניתן להכנס אל %(roomName)s בזמן הזה.",
|
"%(roomName)s is not accessible at this time.": "לא ניתן להכנס אל %(roomName)s בזמן הזה.",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s לא קיים.",
|
"%(roomName)s does not exist.": "%(roomName)s לא קיים.",
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "לא ניתן לצפות ב־%(roomName)s. האם תרצו להצטרף?",
|
"%(roomName)s can't be previewed. Do you want to join it?": "לא ניתן לצפות ב־%(roomName)s. האם תרצו להצטרף?",
|
||||||
|
@ -1672,7 +1660,6 @@
|
||||||
"Welcome %(name)s": "ברוכים הבאים %(name)s",
|
"Welcome %(name)s": "ברוכים הבאים %(name)s",
|
||||||
"Add a photo so people know it's you.": "הוסף תמונה כדי שאנשים יידעו שאתה זה.",
|
"Add a photo so people know it's you.": "הוסף תמונה כדי שאנשים יידעו שאתה זה.",
|
||||||
"Great, that'll help people know it's you": "נהדר, זה יעזור לאנשים לדעת שזה אתה",
|
"Great, that'll help people know it's you": "נהדר, זה יעזור לאנשים לדעת שזה אתה",
|
||||||
"Description": "תאור",
|
|
||||||
"Upload avatar": "העלה אוואטר",
|
"Upload avatar": "העלה אוואטר",
|
||||||
"Attach files from chat or just drag and drop them anywhere in a room.": "צרף קבצים מצ'ט או פשוט גרור ושחרר אותם לכל מקום בחדר.",
|
"Attach files from chat or just drag and drop them anywhere in a room.": "צרף קבצים מצ'ט או פשוט גרור ושחרר אותם לכל מקום בחדר.",
|
||||||
"No files visible in this room": "אין קבצים גלויים בחדר זה",
|
"No files visible in this room": "אין קבצים גלויים בחדר זה",
|
||||||
|
@ -2067,7 +2054,6 @@
|
||||||
"other": "יש לך %(count)s הודעות שלא נקראו בגרסה קודמת של חדר זה."
|
"other": "יש לך %(count)s הודעות שלא נקראו בגרסה קודמת של חדר זה."
|
||||||
},
|
},
|
||||||
"Failed to reject invite": "דחיית הזמנה נכשלה",
|
"Failed to reject invite": "דחיית הזמנה נכשלה",
|
||||||
"Room": "חדר",
|
|
||||||
"No more results": "אין יותר תוצאות",
|
"No more results": "אין יותר תוצאות",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "יתכן שהשרת לא יהיה זמין, עמוס יתר על המידה או שתם הזמן הקצוב לחיפוש :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "יתכן שהשרת לא יהיה זמין, עמוס יתר על המידה או שתם הזמן הקצוב לחיפוש :(",
|
||||||
"Search failed": "החיפוש נכשל",
|
"Search failed": "החיפוש נכשל",
|
||||||
|
@ -2192,7 +2178,6 @@
|
||||||
"Back to thread": "חזרה לשרשור",
|
"Back to thread": "חזרה לשרשור",
|
||||||
"Room members": "חברי החדר",
|
"Room members": "חברי החדר",
|
||||||
"Back to chat": "חזרה לצ'אט",
|
"Back to chat": "חזרה לצ'אט",
|
||||||
"Threads": "שרשורים",
|
|
||||||
"Sound on": "צליל דולק",
|
"Sound on": "צליל דולק",
|
||||||
"Stop": "עצור",
|
"Stop": "עצור",
|
||||||
"That's fine": "זה בסדר",
|
"That's fine": "זה בסדר",
|
||||||
|
@ -2237,8 +2222,6 @@
|
||||||
"Show all rooms": "הצג את כל החדרים",
|
"Show all rooms": "הצג את כל החדרים",
|
||||||
"Collapse": "הִתמוֹטְטוּת",
|
"Collapse": "הִתמוֹטְטוּת",
|
||||||
"Expand": "להרחיב",
|
"Expand": "להרחיב",
|
||||||
"Private": "פרטי",
|
|
||||||
"Public": "ציבורי",
|
|
||||||
"Create a space": "צור מרחב עבודה",
|
"Create a space": "צור מרחב עבודה",
|
||||||
"Address": "כתובת",
|
"Address": "כתובת",
|
||||||
"Delete": "מחק",
|
"Delete": "מחק",
|
||||||
|
@ -2412,7 +2395,6 @@
|
||||||
"Your server does not support showing space hierarchies.": "השרת שלכם אינו תומך בהצגת היררכית חללי עבודה.",
|
"Your server does not support showing space hierarchies.": "השרת שלכם אינו תומך בהצגת היררכית חללי עבודה.",
|
||||||
"We're creating a room with %(names)s": "יצרנו חדר עם %(names)s",
|
"We're creating a room with %(names)s": "יצרנו חדר עם %(names)s",
|
||||||
"Jump to the given date in the timeline": "קיפצו לתאריך הנתון בציר הזמן",
|
"Jump to the given date in the timeline": "קיפצו לתאריך הנתון בציר הזמן",
|
||||||
"Thread": "שרשורים",
|
|
||||||
"Keep discussions organised with threads": "שימרו על דיונים מאורגנים בשרשורים",
|
"Keep discussions organised with threads": "שימרו על דיונים מאורגנים בשרשורים",
|
||||||
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>טיפ:</b> השתמש ב-\"%(replyInThread)s\" כשאתם מרחפים מעל הודעה.",
|
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>טיפ:</b> השתמש ב-\"%(replyInThread)s\" כשאתם מרחפים מעל הודעה.",
|
||||||
"Threads help keep your conversations on-topic and easy to track.": "שרשורים עוזרים לשמור על השיחות שלכם בנושא וקל למעקב.",
|
"Threads help keep your conversations on-topic and easy to track.": "שרשורים עוזרים לשמור על השיחות שלכם בנושא וקל למעקב.",
|
||||||
|
@ -2739,7 +2721,25 @@
|
||||||
"unmute": "בטל השתקה",
|
"unmute": "בטל השתקה",
|
||||||
"username": "שם משתמש",
|
"username": "שם משתמש",
|
||||||
"verification_cancelled": "אימות בוטל",
|
"verification_cancelled": "אימות בוטל",
|
||||||
"video": "וידאו"
|
"video": "וידאו",
|
||||||
|
"attachment": "נספחים",
|
||||||
|
"light": "בהיר",
|
||||||
|
"dark": "כהה",
|
||||||
|
"warning": "התראה",
|
||||||
|
"home": "הבית",
|
||||||
|
"favourites": "מועדפים",
|
||||||
|
"thread": "שרשורים",
|
||||||
|
"threads": "שרשורים",
|
||||||
|
"room": "חדר",
|
||||||
|
"theme": "ערכת נושא",
|
||||||
|
"name": "שם",
|
||||||
|
"description": "תאור",
|
||||||
|
"public": "ציבורי",
|
||||||
|
"private": "פרטי",
|
||||||
|
"options": "אפשרויות",
|
||||||
|
"appearance": "מראה",
|
||||||
|
"homeserver": "שרת הבית",
|
||||||
|
"labs": "מעבדת הפיתוח"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "המשך",
|
"continue": "המשך",
|
||||||
|
@ -2774,5 +2774,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "תפריט משתמש"
|
"user_menu": "תפריט משתמש"
|
||||||
}
|
},
|
||||||
}
|
"Home": "הבית"
|
||||||
|
}
|
||||||
|
|
|
@ -179,7 +179,6 @@
|
||||||
"Noisy": "शोरगुल",
|
"Noisy": "शोरगुल",
|
||||||
"Drop file here to upload": "अपलोड करने के लिए यहां फ़ाइल ड्रॉप करें",
|
"Drop file here to upload": "अपलोड करने के लिए यहां फ़ाइल ड्रॉप करें",
|
||||||
"This event could not be displayed": "यह घटना प्रदर्शित नहीं की जा सकी",
|
"This event could not be displayed": "यह घटना प्रदर्शित नहीं की जा सकी",
|
||||||
"Options": "विकल्प",
|
|
||||||
"Unban": "अप्रतिबंधित करें",
|
"Unban": "अप्रतिबंधित करें",
|
||||||
"Failed to ban user": "उपयोगकर्ता को प्रतिबंधित करने में विफल",
|
"Failed to ban user": "उपयोगकर्ता को प्रतिबंधित करने में विफल",
|
||||||
"Demote yourself?": "खुद को अवनत करें?",
|
"Demote yourself?": "खुद को अवनत करें?",
|
||||||
|
@ -203,7 +202,6 @@
|
||||||
"Invited": "आमंत्रित",
|
"Invited": "आमंत्रित",
|
||||||
"Filter room members": "रूम के सदस्यों को फ़िल्टर करें",
|
"Filter room members": "रूम के सदस्यों को फ़िल्टर करें",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (शक्ति %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (शक्ति %(powerLevelNumber)s)",
|
||||||
"Attachment": "आसक्ति",
|
|
||||||
"Hangup": "फोन रख देना",
|
"Hangup": "फोन रख देना",
|
||||||
"Voice call": "आवाज कॉल",
|
"Voice call": "आवाज कॉल",
|
||||||
"Video call": "वीडियो कॉल",
|
"Video call": "वीडियो कॉल",
|
||||||
|
@ -359,7 +357,6 @@
|
||||||
"Email addresses": "ईमेल पता",
|
"Email addresses": "ईमेल पता",
|
||||||
"Phone numbers": "फोन नंबर",
|
"Phone numbers": "फोन नंबर",
|
||||||
"Language and region": "भाषा और क्षेत्र",
|
"Language and region": "भाषा और क्षेत्र",
|
||||||
"Theme": "थीम",
|
|
||||||
"Account management": "खाता प्रबंधन",
|
"Account management": "खाता प्रबंधन",
|
||||||
"Deactivate Account": "खाता निष्क्रिय करें",
|
"Deactivate Account": "खाता निष्क्रिय करें",
|
||||||
"Legal": "कानूनी",
|
"Legal": "कानूनी",
|
||||||
|
@ -370,7 +367,6 @@
|
||||||
"Submit debug logs": "डिबग लॉग जमा करें",
|
"Submit debug logs": "डिबग लॉग जमा करें",
|
||||||
"FAQ": "सामान्य प्रश्न",
|
"FAQ": "सामान्य प्रश्न",
|
||||||
"Versions": "संस्करण",
|
"Versions": "संस्करण",
|
||||||
"Labs": "लैब्स",
|
|
||||||
"Notifications": "सूचनाएं",
|
"Notifications": "सूचनाएं",
|
||||||
"Start automatically after system login": "सिस्टम लॉगिन के बाद स्वचालित रूप से प्रारंभ करें",
|
"Start automatically after system login": "सिस्टम लॉगिन के बाद स्वचालित रूप से प्रारंभ करें",
|
||||||
"Preferences": "अधिमान",
|
"Preferences": "अधिमान",
|
||||||
|
@ -621,7 +617,11 @@
|
||||||
"offline": "ऑफलाइन",
|
"offline": "ऑफलाइन",
|
||||||
"password": "पासवर्ड",
|
"password": "पासवर्ड",
|
||||||
"success": "सफल",
|
"success": "सफल",
|
||||||
"unmute": "अनम्यूट"
|
"unmute": "अनम्यूट",
|
||||||
|
"attachment": "आसक्ति",
|
||||||
|
"theme": "थीम",
|
||||||
|
"options": "विकल्प",
|
||||||
|
"labs": "लैब्स"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "आगे बढ़ें",
|
"continue": "आगे बढ़ें",
|
||||||
|
@ -634,4 +634,4 @@
|
||||||
"save": "अमुकनाम्ना",
|
"save": "अमुकनाम्ना",
|
||||||
"yes": "हाँ"
|
"yes": "हाँ"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -171,4 +171,4 @@
|
||||||
"continue": "Nastavi",
|
"continue": "Nastavi",
|
||||||
"ok": "OK"
|
"ok": "OK"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,6 @@
|
||||||
"Are you sure?": "Biztos?",
|
"Are you sure?": "Biztos?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Biztos, hogy elhagyja a(z) „%(roomName)s” szobát?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Biztos, hogy elhagyja a(z) „%(roomName)s” szobát?",
|
||||||
"Are you sure you want to reject the invitation?": "Biztos, hogy elutasítja a meghívást?",
|
"Are you sure you want to reject the invitation?": "Biztos, hogy elutasítja a meghívást?",
|
||||||
"Attachment": "Melléklet",
|
|
||||||
"Banned users": "Kitiltott felhasználók",
|
"Banned users": "Kitiltott felhasználók",
|
||||||
"Bans user with given id": "Kitiltja a megadott azonosítójú felhasználót",
|
"Bans user with given id": "Kitiltja a megadott azonosítójú felhasználót",
|
||||||
"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.": "Nem lehet kapcsolódni a Matrix-kiszolgálóhoz – ellenőrizze a kapcsolatot, győződjön meg arról, hogy a <a>Matrix-kiszolgáló tanúsítványa</a> hiteles, és hogy a böngészőkiegészítők nem blokkolják a kéréseket.",
|
"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.": "Nem lehet kapcsolódni a Matrix-kiszolgálóhoz – ellenőrizze a kapcsolatot, győződjön meg arról, hogy a <a>Matrix-kiszolgáló tanúsítványa</a> hiteles, és hogy a böngészőkiegészítők nem blokkolják a kéréseket.",
|
||||||
|
@ -77,14 +76,12 @@
|
||||||
"Failed to unban": "A kitiltás visszavonása sikertelen",
|
"Failed to unban": "A kitiltás visszavonása sikertelen",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Az e-mail-cím ellenőrzése sikertelen: ellenőrizze, hogy az e-mailben lévő hivatkozásra kattintott-e",
|
"Failed to verify email address: make sure you clicked the link in the email": "Az e-mail-cím ellenőrzése sikertelen: ellenőrizze, hogy az e-mailben lévő hivatkozásra kattintott-e",
|
||||||
"Failure to create room": "Szoba létrehozása sikertelen",
|
"Failure to create room": "Szoba létrehozása sikertelen",
|
||||||
"Favourites": "Kedvencek",
|
|
||||||
"Filter room members": "Szoba tagság szűrése",
|
"Filter room members": "Szoba tagság szűrése",
|
||||||
"Forget room": "Szoba elfelejtése",
|
"Forget room": "Szoba elfelejtése",
|
||||||
"For security, this session has been signed out. Please sign in again.": "A biztonság érdekében ez a kapcsolat le lesz bontva. Légy szíves jelentkezz be újra.",
|
"For security, this session has been signed out. Please sign in again.": "A biztonság érdekében ez a kapcsolat le lesz bontva. Légy szíves jelentkezz be újra.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s: %(fromPowerLevel)s -> %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s: %(fromPowerLevel)s -> %(toPowerLevel)s",
|
||||||
"Hangup": "Bontás",
|
"Hangup": "Bontás",
|
||||||
"Historical": "Archív",
|
"Historical": "Archív",
|
||||||
"Home": "Kezdőlap",
|
|
||||||
"Import": "Betöltés",
|
"Import": "Betöltés",
|
||||||
"Import E2E room keys": "E2E szobakulcsok importálása",
|
"Import E2E room keys": "E2E szobakulcsok importálása",
|
||||||
"Incorrect username and/or password.": "Helytelen felhasználónév vagy jelszó.",
|
"Incorrect username and/or password.": "Helytelen felhasználónév vagy jelszó.",
|
||||||
|
@ -96,7 +93,6 @@
|
||||||
"Sign in with": "Bejelentkezés ezzel:",
|
"Sign in with": "Bejelentkezés ezzel:",
|
||||||
"Join Room": "Belépés a szobába",
|
"Join Room": "Belépés a szobába",
|
||||||
"Jump to first unread message.": "Ugrás az első olvasatlan üzenetre.",
|
"Jump to first unread message.": "Ugrás az első olvasatlan üzenetre.",
|
||||||
"Labs": "Labor",
|
|
||||||
"Logout": "Kilépés",
|
"Logout": "Kilépés",
|
||||||
"Low priority": "Alacsony prioritás",
|
"Low priority": "Alacsony prioritás",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s láthatóvá tette a szoba új üzeneteit minden szobatagnak, a meghívásuk idejétől kezdve.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s láthatóvá tette a szoba új üzeneteit minden szobatagnak, a meghívásuk idejétől kezdve.",
|
||||||
|
@ -107,7 +103,6 @@
|
||||||
"Missing room_id in request": "A kérésből hiányzik a szobaazonosító",
|
"Missing room_id in request": "A kérésből hiányzik a szobaazonosító",
|
||||||
"Missing user_id in request": "A kérésből hiányzik a szobaazonosító",
|
"Missing user_id in request": "A kérésből hiányzik a szobaazonosító",
|
||||||
"Moderator": "Moderátor",
|
"Moderator": "Moderátor",
|
||||||
"Name": "Név",
|
|
||||||
"New passwords don't match": "Az új jelszavak nem egyeznek",
|
"New passwords don't match": "Az új jelszavak nem egyeznek",
|
||||||
"New passwords must match each other.": "Az új jelszavaknak meg kell egyezniük egymással.",
|
"New passwords must match each other.": "Az új jelszavaknak meg kell egyezniük egymással.",
|
||||||
"not specified": "nincs meghatározva",
|
"not specified": "nincs meghatározva",
|
||||||
|
@ -213,7 +208,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s. %(monthName)s %(day)s., %(weekDayName)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s. %(monthName)s %(day)s., %(weekDayName)s %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "Ez a kiszolgáló nem támogatja a telefonszámmal történő hitelesítést.",
|
"This server does not support authentication with a phone number.": "Ez a kiszolgáló nem támogatja a telefonszámmal történő hitelesítést.",
|
||||||
"Room": "Szoba",
|
|
||||||
"Connectivity to the server has been lost.": "A kapcsolat megszakadt a kiszolgálóval.",
|
"Connectivity to the server has been lost.": "A kapcsolat megszakadt a kiszolgálóval.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Az elküldött üzenetek addig lesznek tárolva amíg a kapcsolatod újra elérhető lesz.",
|
"Sent messages will be stored until your connection has returned.": "Az elküldött üzenetek addig lesznek tárolva amíg a kapcsolatod újra elérhető lesz.",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -222,7 +216,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",
|
||||||
"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",
|
||||||
"Export room keys": "Szoba kulcsok mentése",
|
"Export room keys": "Szoba kulcsok mentése",
|
||||||
|
@ -286,7 +279,6 @@
|
||||||
"Stops ignoring a user, showing their messages going forward": "A felhasználó újbóli figyelembe vétele, és a jövőbeli üzenetei megjelenítése",
|
"Stops ignoring a user, showing their messages going forward": "A felhasználó újbóli figyelembe vétele, és a jövőbeli üzenetei megjelenítése",
|
||||||
"Ignores a user, hiding their messages from you": "Figyelmen kívül hagy egy felhasználót, elrejtve az üzeneteit",
|
"Ignores a user, hiding their messages from you": "Figyelmen kívül hagy egy felhasználót, elrejtve az üzeneteit",
|
||||||
"Banned by %(displayName)s": "Kitiltotta: %(displayName)s",
|
"Banned by %(displayName)s": "Kitiltotta: %(displayName)s",
|
||||||
"Description": "Leírás",
|
|
||||||
"Unknown": "Ismeretlen",
|
"Unknown": "Ismeretlen",
|
||||||
"Jump to read receipt": "Olvasási visszaigazolásra ugrás",
|
"Jump to read receipt": "Olvasási visszaigazolásra ugrás",
|
||||||
"Message Pinning": "Üzenet kitűzése",
|
"Message Pinning": "Üzenet kitűzése",
|
||||||
|
@ -411,7 +403,6 @@
|
||||||
"Send": "Elküldés",
|
"Send": "Elküldés",
|
||||||
"Old cryptography data detected": "Régi titkosítási adatot találhatók",
|
"Old cryptography data detected": "Régi titkosítási adatot találhatók",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Régebbi %(brand)s verzióból származó adatok találhatók. Ezek hibás működéshez vezethettek a végpontok közti titkosításban a régebbi verzióknál. A nemrég küldött/fogadott titkosított üzenetek, ha a régi adatokat használták, lehetséges, hogy nem lesznek visszafejthetők ebben a verzióban. Ha problémákba ütközik, akkor jelentkezzen ki és be. A régi üzenetek elérésének biztosításához exportálja a kulcsokat, és importálja be újra.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Régebbi %(brand)s verzióból származó adatok találhatók. Ezek hibás működéshez vezethettek a végpontok közti titkosításban a régebbi verzióknál. A nemrég küldött/fogadott titkosított üzenetek, ha a régi adatokat használták, lehetséges, hogy nem lesznek visszafejthetők ebben a verzióban. Ha problémákba ütközik, akkor jelentkezzen ki és be. A régi üzenetek elérésének biztosításához exportálja a kulcsokat, és importálja be újra.",
|
||||||
"Warning": "Figyelmeztetés",
|
|
||||||
"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.": "Ahogy lefokozod magad a változás visszafordíthatatlan, ha te vagy az utolsó jogosultságokkal bíró felhasználó a szobában a jogok már nem szerezhetők vissza.",
|
"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.": "Ahogy lefokozod magad a változás visszafordíthatatlan, ha te vagy az utolsó jogosultságokkal bíró felhasználó a szobában a jogok már nem szerezhetők vissza.",
|
||||||
"Send an encrypted reply…": "Titkosított válasz küldése…",
|
"Send an encrypted reply…": "Titkosított válasz küldése…",
|
||||||
"Send an encrypted message…": "Titkosított üzenet küldése…",
|
"Send an encrypted message…": "Titkosított üzenet küldése…",
|
||||||
|
@ -648,7 +639,6 @@
|
||||||
"Email addresses": "E-mail-cím",
|
"Email addresses": "E-mail-cím",
|
||||||
"Phone numbers": "Telefonszámok",
|
"Phone numbers": "Telefonszámok",
|
||||||
"Language and region": "Nyelv és régió",
|
"Language and region": "Nyelv és régió",
|
||||||
"Theme": "Téma",
|
|
||||||
"Account management": "Fiókkezelés",
|
"Account management": "Fiókkezelés",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "Az %(brand)s használatában való segítséghez kattintson <a>ide</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "Az %(brand)s használatában való segítséghez kattintson <a>ide</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Az %(brand)s használatában való segítségért kattintson <a>ide</a>, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Az %(brand)s használatában való segítségért kattintson <a>ide</a>, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.",
|
||||||
|
@ -1517,7 +1507,6 @@
|
||||||
"Size must be a number": "A méretnek számnak kell lennie",
|
"Size must be a number": "A méretnek számnak kell lennie",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Az egyéni betűméret csak %(min)s pont és %(max)s pont közötti lehet",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Az egyéni betűméret csak %(min)s pont és %(max)s pont közötti lehet",
|
||||||
"Use between %(min)s pt and %(max)s pt": "%(min)s pont és %(max)s pont közötti értéket használjon",
|
"Use between %(min)s pt and %(max)s pt": "%(min)s pont és %(max)s pont közötti értéket használjon",
|
||||||
"Appearance": "Megjelenítés",
|
|
||||||
"Your homeserver has exceeded its user limit.": "A Matrix-kiszolgálója túllépte a felhasználói szám korlátját.",
|
"Your homeserver has exceeded its user limit.": "A Matrix-kiszolgálója túllépte a felhasználói szám korlátját.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "A Matrix-kiszolgálója túllépte valamelyik erőforráskorlátját.",
|
"Your homeserver has exceeded one of its resource limits.": "A Matrix-kiszolgálója túllépte valamelyik erőforráskorlátját.",
|
||||||
"Contact your <a>server admin</a>.": "Vegye fel a kapcsolatot a <a>kiszolgáló rendszergazdájával</a>.",
|
"Contact your <a>server admin</a>.": "Vegye fel a kapcsolatot a <a>kiszolgáló rendszergazdájával</a>.",
|
||||||
|
@ -1552,8 +1541,6 @@
|
||||||
"Switch theme": "Kinézet váltása",
|
"Switch theme": "Kinézet váltása",
|
||||||
"All settings": "Minden beállítás",
|
"All settings": "Minden beállítás",
|
||||||
"Feedback": "Visszajelzés",
|
"Feedback": "Visszajelzés",
|
||||||
"Light": "Világos",
|
|
||||||
"Dark": "Sötét",
|
|
||||||
"Customise your appearance": "A megjelenés testreszabása",
|
"Customise your appearance": "A megjelenés testreszabása",
|
||||||
"Activity": "Aktivitás",
|
"Activity": "Aktivitás",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
|
@ -1999,7 +1986,6 @@
|
||||||
"Continuing without email": "Folytatás e-mail-cím nélkül",
|
"Continuing without email": "Folytatás e-mail-cím nélkül",
|
||||||
"Reason (optional)": "Ok (opcionális)",
|
"Reason (optional)": "Ok (opcionális)",
|
||||||
"Continue with %(provider)s": "Folytatás ezzel a szolgáltatóval: %(provider)s",
|
"Continue with %(provider)s": "Folytatás ezzel a szolgáltatóval: %(provider)s",
|
||||||
"Homeserver": "Matrix kiszolgáló",
|
|
||||||
"Return to call": "Visszatérés a híváshoz",
|
"Return to call": "Visszatérés a híváshoz",
|
||||||
"%(peerName)s held the call": "%(peerName)s várakoztatja a hívást",
|
"%(peerName)s held the call": "%(peerName)s várakoztatja a hívást",
|
||||||
"You held the call <a>Resume</a>": "A hívás várakozik, <a>folytatás</a>",
|
"You held the call <a>Resume</a>": "A hívás várakozik, <a>folytatás</a>",
|
||||||
|
@ -2209,9 +2195,7 @@
|
||||||
"Your private space": "Saját privát tér",
|
"Your private space": "Saját privát tér",
|
||||||
"Your public space": "Saját nyilvános tér",
|
"Your public space": "Saját nyilvános tér",
|
||||||
"Invite only, best for yourself or teams": "Csak meghívóval, saját célra és csoportok számára ideális",
|
"Invite only, best for yourself or teams": "Csak meghívóval, saját célra és csoportok számára ideális",
|
||||||
"Private": "Privát",
|
|
||||||
"Open space for anyone, best for communities": "Mindenki számára nyílt tér, a közösségek számára ideális",
|
"Open space for anyone, best for communities": "Mindenki számára nyílt tér, a közösségek számára ideális",
|
||||||
"Public": "Nyilvános",
|
|
||||||
"Create a space": "Tér létrehozása",
|
"Create a space": "Tér létrehozása",
|
||||||
"Delete": "Törlés",
|
"Delete": "Törlés",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Üzenetküldés után az idővonal aljára ugrás",
|
"Jump to the bottom of the timeline when you send a message": "Üzenetküldés után az idővonal aljára ugrás",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "Először válasszon ki szobát alulról",
|
"Select a room below first": "Először válasszon ki szobát alulról",
|
||||||
"Join the beta": "Csatlakozás béta lehetőségekhez",
|
"Join the beta": "Csatlakozás béta lehetőségekhez",
|
||||||
"Leave the beta": "Béta kikapcsolása",
|
"Leave the beta": "Béta kikapcsolása",
|
||||||
"Beta": "Béta",
|
|
||||||
"Want to add a new room instead?": "Inkább új szobát adna hozzá?",
|
"Want to add a new room instead?": "Inkább új szobát adna hozzá?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Szobák hozzáadása…",
|
"one": "Szobák hozzáadása…",
|
||||||
|
@ -2565,7 +2548,6 @@
|
||||||
"Autoplay GIFs": "GIF-ek automatikus lejátszása",
|
"Autoplay GIFs": "GIF-ek automatikus lejátszása",
|
||||||
"The above, but in <Room /> as well": "A fentiek, de ebben a szobában is: <Room />",
|
"The above, but in <Room /> as well": "A fentiek, de ebben a szobában is: <Room />",
|
||||||
"The above, but in any room you are joined or invited to as well": "A fentiek, de minden szobában, amelybe belépett vagy meghívták",
|
"The above, but in any room you are joined or invited to as well": "A fentiek, de minden szobában, amelybe belépett vagy meghívták",
|
||||||
"Thread": "Üzenetszál",
|
|
||||||
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s levett egy kitűzött üzenetet ebben a szobában. Minden kitűzött üzenet megjelenítése.",
|
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s levett egy kitűzött üzenetet ebben a szobában. Minden kitűzött üzenet megjelenítése.",
|
||||||
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s levett egy kitűzött <a>üzenetet</a> ebben a szobában. Minden <b>kitűzött üzenet</b> megjelenítése.",
|
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s levett egy kitűzött <a>üzenetet</a> ebben a szobában. Minden <b>kitűzött üzenet</b> megjelenítése.",
|
||||||
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s kitűzött egy üzenetet ebben a szobában. Minden kitűzött üzenet megjelenítése.",
|
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s kitűzött egy üzenetet ebben a szobában. Minden kitűzött üzenet megjelenítése.",
|
||||||
|
@ -2659,7 +2641,6 @@
|
||||||
"Unban from %(roomName)s": "Kitiltás visszavonása innen: %(roomName)s",
|
"Unban from %(roomName)s": "Kitiltás visszavonása innen: %(roomName)s",
|
||||||
"Disinvite from %(roomName)s": "Meghívó visszavonása innen: %(roomName)s",
|
"Disinvite from %(roomName)s": "Meghívó visszavonása innen: %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Továbbra is hozzáférhetnek olyan helyekhez ahol ön nem adminisztrátor.",
|
"They'll still be able to access whatever you're not an admin of.": "Továbbra is hozzáférhetnek olyan helyekhez ahol ön nem adminisztrátor.",
|
||||||
"Threads": "Üzenetszálak",
|
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s válasz",
|
"one": "%(count)s válasz",
|
||||||
"other": "%(count)s válasz"
|
"other": "%(count)s válasz"
|
||||||
|
@ -3354,7 +3335,6 @@
|
||||||
"Download %(brand)s Desktop": "Asztali %(brand)s letöltése",
|
"Download %(brand)s Desktop": "Asztali %(brand)s letöltése",
|
||||||
"Download %(brand)s": "A(z) %(brand)s letöltése",
|
"Download %(brand)s": "A(z) %(brand)s letöltése",
|
||||||
"Choose a locale": "Válasszon nyelvet",
|
"Choose a locale": "Válasszon nyelvet",
|
||||||
"Help": "Segítség",
|
|
||||||
"Saved Items": "Mentett elemek",
|
"Saved Items": "Mentett elemek",
|
||||||
"Last activity": "Utolsó tevékenység",
|
"Last activity": "Utolsó tevékenység",
|
||||||
"Current session": "Jelenlegi munkamenet",
|
"Current session": "Jelenlegi munkamenet",
|
||||||
|
@ -3769,7 +3749,6 @@
|
||||||
"Use your account to continue.": "Használja a fiókját a továbblépéshez.",
|
"Use your account to continue.": "Használja a fiókját a továbblépéshez.",
|
||||||
"Message from %(user)s": "Üzenet tőle: %(user)s",
|
"Message from %(user)s": "Üzenet tőle: %(user)s",
|
||||||
"Message in %(room)s": "Üzenet itt: %(room)s",
|
"Message in %(room)s": "Üzenet itt: %(room)s",
|
||||||
"User": "Felhasználó",
|
|
||||||
"Show avatars in user, room and event mentions": "Profilképek megjelenítése a felhasználók, szobák és események megemlítésénél",
|
"Show avatars in user, room and event mentions": "Profilképek megjelenítése a felhasználók, szobák és események megemlítésénél",
|
||||||
"Error details": "Hiba részletei",
|
"Error details": "Hiba részletei",
|
||||||
"Unable to find event at that date": "Nem található esemény az adott dátumkor",
|
"Unable to find event at that date": "Nem található esemény az adott dátumkor",
|
||||||
|
@ -3842,7 +3821,28 @@
|
||||||
"unmute": "Némítás visszavonása",
|
"unmute": "Némítás visszavonása",
|
||||||
"username": "Felhasználói név",
|
"username": "Felhasználói név",
|
||||||
"verification_cancelled": "Ellenőrzés megszakítva",
|
"verification_cancelled": "Ellenőrzés megszakítva",
|
||||||
"video": "Videó"
|
"video": "Videó",
|
||||||
|
"attachment": "Melléklet",
|
||||||
|
"light": "Világos",
|
||||||
|
"dark": "Sötét",
|
||||||
|
"warning": "Figyelmeztetés",
|
||||||
|
"home": "Kezdőlap",
|
||||||
|
"favourites": "Kedvencek",
|
||||||
|
"thread": "Üzenetszál",
|
||||||
|
"threads": "Üzenetszálak",
|
||||||
|
"user": "Felhasználó",
|
||||||
|
"room": "Szoba",
|
||||||
|
"theme": "Téma",
|
||||||
|
"name": "Név",
|
||||||
|
"description": "Leírás",
|
||||||
|
"public": "Nyilvános",
|
||||||
|
"private": "Privát",
|
||||||
|
"options": "Lehetőségek",
|
||||||
|
"appearance": "Megjelenítés",
|
||||||
|
"homeserver": "Matrix kiszolgáló",
|
||||||
|
"help": "Segítség",
|
||||||
|
"beta": "Béta",
|
||||||
|
"labs": "Labor"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Folytatás",
|
"continue": "Folytatás",
|
||||||
|
@ -3879,5 +3879,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Felhasználói menü"
|
"user_menu": "Felhasználói menü"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Kezdőlap"
|
||||||
|
}
|
||||||
|
|
|
@ -17,14 +17,12 @@
|
||||||
"Deactivate Account": "Nonaktifkan Akun",
|
"Deactivate Account": "Nonaktifkan Akun",
|
||||||
"Email": "Email",
|
"Email": "Email",
|
||||||
"Email address": "Alamat email",
|
"Email address": "Alamat email",
|
||||||
"Attachment": "Lampiran",
|
|
||||||
"Command error": "Perintah gagal",
|
"Command error": "Perintah gagal",
|
||||||
"Default": "Bawaan",
|
"Default": "Bawaan",
|
||||||
"Download %(text)s": "Unduh %(text)s",
|
"Download %(text)s": "Unduh %(text)s",
|
||||||
"Export": "Ekspor",
|
"Export": "Ekspor",
|
||||||
"Failed to reject invitation": "Gagal menolak undangan",
|
"Failed to reject invitation": "Gagal menolak undangan",
|
||||||
"Favourite": "Favorit",
|
"Favourite": "Favorit",
|
||||||
"Favourites": "Favorit",
|
|
||||||
"Import": "Impor",
|
"Import": "Impor",
|
||||||
"Incorrect verification code": "Kode verifikasi tidak benar",
|
"Incorrect verification code": "Kode verifikasi tidak benar",
|
||||||
"Invalid Email Address": "Alamat Email Tidak Absah",
|
"Invalid Email Address": "Alamat Email Tidak Absah",
|
||||||
|
@ -32,7 +30,6 @@
|
||||||
"Sign in with": "Masuk dengan",
|
"Sign in with": "Masuk dengan",
|
||||||
"Logout": "Keluar",
|
"Logout": "Keluar",
|
||||||
"Low priority": "Prioritas rendah",
|
"Low priority": "Prioritas rendah",
|
||||||
"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>",
|
||||||
"Operation failed": "Operasi gagal",
|
"Operation failed": "Operasi gagal",
|
||||||
|
@ -113,7 +110,6 @@
|
||||||
"On": "Nyala",
|
"On": "Nyala",
|
||||||
"Changelog": "Changelog",
|
"Changelog": "Changelog",
|
||||||
"Waiting for response from server": "Menunggu respon dari server",
|
"Waiting for response from server": "Menunggu respon dari server",
|
||||||
"Warning": "Peringatan",
|
|
||||||
"This Room": "Ruangan ini",
|
"This Room": "Ruangan ini",
|
||||||
"Noisy": "Berisik",
|
"Noisy": "Berisik",
|
||||||
"Messages containing my display name": "Pesan yang berisi nama tampilan saya",
|
"Messages containing my display name": "Pesan yang berisi nama tampilan saya",
|
||||||
|
@ -608,10 +604,8 @@
|
||||||
"Unignore": "Hilangkan Abaian",
|
"Unignore": "Hilangkan Abaian",
|
||||||
"Ignore": "Abaikan",
|
"Ignore": "Abaikan",
|
||||||
"Copied!": "Disalin!",
|
"Copied!": "Disalin!",
|
||||||
"Description": "Deskripsi",
|
|
||||||
"Users": "Pengguna",
|
"Users": "Pengguna",
|
||||||
"Emoji": "Emoji",
|
"Emoji": "Emoji",
|
||||||
"Room": "Ruangan",
|
|
||||||
"Phone": "Ponsel",
|
"Phone": "Ponsel",
|
||||||
"Skip": "Lewat",
|
"Skip": "Lewat",
|
||||||
"Historical": "Riwayat",
|
"Historical": "Riwayat",
|
||||||
|
@ -619,9 +613,6 @@
|
||||||
"Online": "Daring",
|
"Online": "Daring",
|
||||||
"Anyone": "Siapa Saja",
|
"Anyone": "Siapa Saja",
|
||||||
"Unban": "Hilangkan Cekalan",
|
"Unban": "Hilangkan Cekalan",
|
||||||
"Labs": "Uji Coba",
|
|
||||||
"Options": "Opsi",
|
|
||||||
"Home": "Beranda",
|
|
||||||
"Restore": "Pulihkan",
|
"Restore": "Pulihkan",
|
||||||
"Support": "Dukungan",
|
"Support": "Dukungan",
|
||||||
"Random": "Sembarangan",
|
"Random": "Sembarangan",
|
||||||
|
@ -631,7 +622,6 @@
|
||||||
"Resume": "Lanjutkan",
|
"Resume": "Lanjutkan",
|
||||||
"Approve": "Setujui",
|
"Approve": "Setujui",
|
||||||
"Comment": "Komentar",
|
"Comment": "Komentar",
|
||||||
"Homeserver": "Homeserver",
|
|
||||||
"Information": "Informasi",
|
"Information": "Informasi",
|
||||||
"Widgets": "Widget",
|
"Widgets": "Widget",
|
||||||
"Favourited": "Difavorit",
|
"Favourited": "Difavorit",
|
||||||
|
@ -641,8 +631,6 @@
|
||||||
"Privacy": "Privasi",
|
"Privacy": "Privasi",
|
||||||
"ready": "siap",
|
"ready": "siap",
|
||||||
"Algorithm:": "Algoritma:",
|
"Algorithm:": "Algoritma:",
|
||||||
"Dark": "Gelap",
|
|
||||||
"Light": "Terang",
|
|
||||||
"End": "End",
|
"End": "End",
|
||||||
"Enter": "Enter",
|
"Enter": "Enter",
|
||||||
"Esc": "Esc",
|
"Esc": "Esc",
|
||||||
|
@ -673,7 +661,6 @@
|
||||||
"Activities": "Aktivitas",
|
"Activities": "Aktivitas",
|
||||||
"Trusted": "Dipercayai",
|
"Trusted": "Dipercayai",
|
||||||
"Accepting…": "Menerima…",
|
"Accepting…": "Menerima…",
|
||||||
"Appearance": "Tampilan",
|
|
||||||
"Strikethrough": "Coret",
|
"Strikethrough": "Coret",
|
||||||
"Italics": "Miring",
|
"Italics": "Miring",
|
||||||
"Bold": "Tebal",
|
"Bold": "Tebal",
|
||||||
|
@ -776,7 +763,6 @@
|
||||||
"Versions": "Versi",
|
"Versions": "Versi",
|
||||||
"FAQ": "FAQ",
|
"FAQ": "FAQ",
|
||||||
"Legal": "Hukum",
|
"Legal": "Hukum",
|
||||||
"Theme": "Tema",
|
|
||||||
"Encryption": "Enkripsi",
|
"Encryption": "Enkripsi",
|
||||||
"General": "Umum",
|
"General": "Umum",
|
||||||
"Verified!": "Terverifikasi!",
|
"Verified!": "Terverifikasi!",
|
||||||
|
@ -935,9 +921,7 @@
|
||||||
"Custom level": "Tingkat kustom",
|
"Custom level": "Tingkat kustom",
|
||||||
"Decrypting": "Mendekripsi",
|
"Decrypting": "Mendekripsi",
|
||||||
"Downloading": "Mengunduh",
|
"Downloading": "Mengunduh",
|
||||||
"Threads": "Utasan",
|
|
||||||
"Forget room": "Lupakan ruangan",
|
"Forget room": "Lupakan ruangan",
|
||||||
"Thread": "Utasan",
|
|
||||||
"Access": "Akses",
|
"Access": "Akses",
|
||||||
"Global": "Global",
|
"Global": "Global",
|
||||||
"Keyword": "Kata kunci",
|
"Keyword": "Kata kunci",
|
||||||
|
@ -952,7 +936,6 @@
|
||||||
"Play": "Mainkan",
|
"Play": "Mainkan",
|
||||||
"Pause": "Jeda",
|
"Pause": "Jeda",
|
||||||
"Avatar": "Avatar",
|
"Avatar": "Avatar",
|
||||||
"Beta": "Beta",
|
|
||||||
"Hold": "Jeda",
|
"Hold": "Jeda",
|
||||||
"Transfer": "Pindah",
|
"Transfer": "Pindah",
|
||||||
"Sending": "Mengirim",
|
"Sending": "Mengirim",
|
||||||
|
@ -962,8 +945,6 @@
|
||||||
"Setting:": "Pengaturan:",
|
"Setting:": "Pengaturan:",
|
||||||
"Value": "Nilai",
|
"Value": "Nilai",
|
||||||
"Spaces": "Space",
|
"Spaces": "Space",
|
||||||
"Private": "Privat",
|
|
||||||
"Public": "Publik",
|
|
||||||
"Delete": "Hapus",
|
"Delete": "Hapus",
|
||||||
"Connecting": "Menghubungkan",
|
"Connecting": "Menghubungkan",
|
||||||
"%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s menghapus peraturan pencekalan pengguna yang berisi %(glob)s",
|
"%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s menghapus peraturan pencekalan pengguna yang berisi %(glob)s",
|
||||||
|
@ -3328,7 +3309,6 @@
|
||||||
"Download on the App Store": "Unduh di App Store",
|
"Download on the App Store": "Unduh di App Store",
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Download %(brand)s Desktop": "Unduh %(brand)s Desktop",
|
"Download %(brand)s Desktop": "Unduh %(brand)s Desktop",
|
||||||
"Help": "Bantuan",
|
|
||||||
"Your server doesn't support disabling sending read receipts.": "Server Anda tidak mendukung penonaktifkan pengiriman laporan dibaca.",
|
"Your server doesn't support disabling sending read receipts.": "Server Anda tidak mendukung penonaktifkan pengiriman laporan dibaca.",
|
||||||
"Share your activity and status with others.": "Bagikan aktivitas dan status Anda dengan orang lain.",
|
"Share your activity and status with others.": "Bagikan aktivitas dan status Anda dengan orang lain.",
|
||||||
"Presence": "Presensi",
|
"Presence": "Presensi",
|
||||||
|
@ -3769,7 +3749,6 @@
|
||||||
"Requires your server to support the stable version of MSC3827": "Mengharuslkan server Anda mendukung versi MSC3827 yang stabil",
|
"Requires your server to support the stable version of MSC3827": "Mengharuslkan server Anda mendukung versi MSC3827 yang stabil",
|
||||||
"Message from %(user)s": "Pesan dari %(user)s",
|
"Message from %(user)s": "Pesan dari %(user)s",
|
||||||
"Message in %(room)s": "Pesan dalam %(room)s",
|
"Message in %(room)s": "Pesan dalam %(room)s",
|
||||||
"User": "Pengguna",
|
|
||||||
"Show avatars in user, room and event mentions": "Tampilkan avatar di sebutan pengguna, ruangan, dan peristiwa",
|
"Show avatars in user, room and event mentions": "Tampilkan avatar di sebutan pengguna, ruangan, dan peristiwa",
|
||||||
"Enable intentional mentions": "Aktifkan penyebutan sengaja",
|
"Enable intentional mentions": "Aktifkan penyebutan sengaja",
|
||||||
"Error details": "Detail kesalahan",
|
"Error details": "Detail kesalahan",
|
||||||
|
@ -3943,7 +3922,28 @@
|
||||||
"unmute": "Suarakan",
|
"unmute": "Suarakan",
|
||||||
"username": "Nama Pengguna",
|
"username": "Nama Pengguna",
|
||||||
"verification_cancelled": "Verifikasi dibatalkan",
|
"verification_cancelled": "Verifikasi dibatalkan",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Lampiran",
|
||||||
|
"light": "Terang",
|
||||||
|
"dark": "Gelap",
|
||||||
|
"warning": "Peringatan",
|
||||||
|
"home": "Beranda",
|
||||||
|
"favourites": "Favorit",
|
||||||
|
"thread": "Utasan",
|
||||||
|
"threads": "Utasan",
|
||||||
|
"user": "Pengguna",
|
||||||
|
"room": "Ruangan",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Nama",
|
||||||
|
"description": "Deskripsi",
|
||||||
|
"public": "Publik",
|
||||||
|
"private": "Privat",
|
||||||
|
"options": "Opsi",
|
||||||
|
"appearance": "Tampilan",
|
||||||
|
"homeserver": "Homeserver",
|
||||||
|
"help": "Bantuan",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Uji Coba"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Lanjut",
|
"continue": "Lanjut",
|
||||||
|
@ -3980,5 +3980,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu pengguna"
|
"user_menu": "Menu pengguna"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Beranda"
|
||||||
|
}
|
||||||
|
|
|
@ -77,7 +77,6 @@
|
||||||
"On": "Kveikt",
|
"On": "Kveikt",
|
||||||
"Noisy": "Hávært",
|
"Noisy": "Hávært",
|
||||||
"Drop file here to upload": "Slepptu hér skrá til að senda inn",
|
"Drop file here to upload": "Slepptu hér skrá til að senda inn",
|
||||||
"Options": "Valkostir",
|
|
||||||
"Unban": "Afbanna",
|
"Unban": "Afbanna",
|
||||||
"Are you sure?": "Ertu viss?",
|
"Are you sure?": "Ertu viss?",
|
||||||
"Unignore": "Hætta að hunsa",
|
"Unignore": "Hætta að hunsa",
|
||||||
|
@ -86,7 +85,6 @@
|
||||||
"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",
|
||||||
"Attachment": "Viðhengi",
|
|
||||||
"Hangup": "Leggja á",
|
"Hangup": "Leggja á",
|
||||||
"Voice call": "Raddsímtal",
|
"Voice call": "Raddsímtal",
|
||||||
"Video call": "Myndsímtal",
|
"Video call": "Myndsímtal",
|
||||||
|
@ -101,7 +99,6 @@
|
||||||
"Join Room": "Taka þátt í spjallrás",
|
"Join Room": "Taka þátt í spjallrás",
|
||||||
"Forget room": "Gleyma spjallrás",
|
"Forget room": "Gleyma spjallrás",
|
||||||
"Search": "Leita",
|
"Search": "Leita",
|
||||||
"Favourites": "Eftirlæti",
|
|
||||||
"Rooms": "Spjallrásir",
|
"Rooms": "Spjallrásir",
|
||||||
"Low priority": "Lítill forgangur",
|
"Low priority": "Lítill forgangur",
|
||||||
"Historical": "Ferilskráning",
|
"Historical": "Ferilskráning",
|
||||||
|
@ -146,8 +143,6 @@
|
||||||
"What's new?": "Hvað er nýtt á döfinni?",
|
"What's new?": "Hvað er nýtt á döfinni?",
|
||||||
"Error encountered (%(errorDetail)s).": "Villa fannst (%(errorDetail)s).",
|
"Error encountered (%(errorDetail)s).": "Villa fannst (%(errorDetail)s).",
|
||||||
"No update available.": "Engin uppfærsla tiltæk.",
|
"No update available.": "Engin uppfærsla tiltæk.",
|
||||||
"Warning": "Aðvörun",
|
|
||||||
"Home": "Forsíða",
|
|
||||||
"collapse": "fella saman",
|
"collapse": "fella saman",
|
||||||
"expand": "fletta út",
|
"expand": "fletta út",
|
||||||
"<a>In reply to</a> <pill>": "<a>Sem svar til</a> <pill>",
|
"<a>In reply to</a> <pill>": "<a>Sem svar til</a> <pill>",
|
||||||
|
@ -182,8 +177,6 @@
|
||||||
"All messages": "Öll skilaboð",
|
"All messages": "Öll skilaboð",
|
||||||
"Reject": "Hafna",
|
"Reject": "Hafna",
|
||||||
"Low Priority": "Lítill forgangur",
|
"Low Priority": "Lítill forgangur",
|
||||||
"Name": "Heiti",
|
|
||||||
"Description": "Lýsing",
|
|
||||||
"Signed Out": "Skráð/ur út",
|
"Signed Out": "Skráð/ur út",
|
||||||
"Terms and Conditions": "Skilmálar og kvaðir",
|
"Terms and Conditions": "Skilmálar og kvaðir",
|
||||||
"Logout": "Útskráning",
|
"Logout": "Útskráning",
|
||||||
|
@ -191,10 +184,8 @@
|
||||||
"Notifications": "Tilkynningar",
|
"Notifications": "Tilkynningar",
|
||||||
"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",
|
|
||||||
"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",
|
|
||||||
"Check for update": "Athuga með uppfærslu",
|
"Check for update": "Athuga með uppfærslu",
|
||||||
"Default Device": "Sjálfgefið tæki",
|
"Default Device": "Sjálfgefið tæki",
|
||||||
"Microphone": "Hljóðnemi",
|
"Microphone": "Hljóðnemi",
|
||||||
|
@ -474,7 +465,6 @@
|
||||||
"Preferences": "Stillingar",
|
"Preferences": "Stillingar",
|
||||||
"Versions": "Útgáfur",
|
"Versions": "Útgáfur",
|
||||||
"FAQ": "Algengar spurningar",
|
"FAQ": "Algengar spurningar",
|
||||||
"Theme": "Þema",
|
|
||||||
"General": "Almennt",
|
"General": "Almennt",
|
||||||
"Verified!": "Sannreynt!",
|
"Verified!": "Sannreynt!",
|
||||||
"Download": "Niðurhal",
|
"Download": "Niðurhal",
|
||||||
|
@ -789,7 +779,6 @@
|
||||||
"Moderation": "Umsjón",
|
"Moderation": "Umsjón",
|
||||||
"Widgets": "Viðmótshlutar",
|
"Widgets": "Viðmótshlutar",
|
||||||
"Room members": "Meðlimir spjallrásar",
|
"Room members": "Meðlimir spjallrásar",
|
||||||
"Threads": "Spjallþræðir",
|
|
||||||
"All rooms": "Allar spjallrásir",
|
"All rooms": "Allar spjallrásir",
|
||||||
"Ok": "Í lagi",
|
"Ok": "Í lagi",
|
||||||
"Use app": "Nota smáforrit",
|
"Use app": "Nota smáforrit",
|
||||||
|
@ -805,9 +794,7 @@
|
||||||
"HTML": "HTML",
|
"HTML": "HTML",
|
||||||
"Unknown App": "Óþekkt forrit",
|
"Unknown App": "Óþekkt forrit",
|
||||||
"%(displayName)s is typing …": "%(displayName)s er að skrifa…",
|
"%(displayName)s is typing …": "%(displayName)s er að skrifa…",
|
||||||
"Dark": "Dökkt",
|
|
||||||
"Light high contrast": "Ljóst með mikil birtuskil",
|
"Light high contrast": "Ljóst með mikil birtuskil",
|
||||||
"Light": "Ljóst",
|
|
||||||
"%(targetName)s left the room": "%(targetName)s yfirgaf spjallsvæðið",
|
"%(targetName)s left the room": "%(targetName)s yfirgaf spjallsvæðið",
|
||||||
"%(targetName)s left the room: %(reason)s": "%(targetName)s yfirgaf spjallsvæðið: %(reason)s",
|
"%(targetName)s left the room: %(reason)s": "%(targetName)s yfirgaf spjallsvæðið: %(reason)s",
|
||||||
"%(targetName)s rejected the invitation": "%(targetName)s hafnaði boðinu",
|
"%(targetName)s rejected the invitation": "%(targetName)s hafnaði boðinu",
|
||||||
|
@ -895,7 +882,6 @@
|
||||||
"Use a different passphrase?": "Nota annan lykilfrasa?",
|
"Use a different passphrase?": "Nota annan lykilfrasa?",
|
||||||
"Create account": "Stofna notandaaðgang",
|
"Create account": "Stofna notandaaðgang",
|
||||||
"Your password has been reset.": "Lykilorðið þitt hefur verið endursett.",
|
"Your password has been reset.": "Lykilorðið þitt hefur verið endursett.",
|
||||||
"Thread": "Spjallþráður",
|
|
||||||
"Show:": "Sýna:",
|
"Show:": "Sýna:",
|
||||||
"Skip for now": "Sleppa í bili",
|
"Skip for now": "Sleppa í bili",
|
||||||
"Support": "Aðstoð",
|
"Support": "Aðstoð",
|
||||||
|
@ -916,7 +902,6 @@
|
||||||
"This room is public": "Þessi spjallrás er opinber",
|
"This room is public": "Þessi spjallrás er opinber",
|
||||||
"Avatar": "Auðkennismynd",
|
"Avatar": "Auðkennismynd",
|
||||||
"Join the beta": "Taka þátt í Beta-prófunum",
|
"Join the beta": "Taka þátt í Beta-prófunum",
|
||||||
"Beta": "Beta-prófunarútgáfa",
|
|
||||||
"Move right": "Færa til hægri",
|
"Move right": "Færa til hægri",
|
||||||
"Move left": "Færa til vinstri",
|
"Move left": "Færa til vinstri",
|
||||||
"Manage & explore rooms": "Sýsla með og kanna spjallrásir",
|
"Manage & explore rooms": "Sýsla með og kanna spjallrásir",
|
||||||
|
@ -1040,7 +1025,6 @@
|
||||||
"A-Z": "A-Ö",
|
"A-Z": "A-Ö",
|
||||||
"Activity": "Virkni",
|
"Activity": "Virkni",
|
||||||
"Sort by": "Raða eftir",
|
"Sort by": "Raða eftir",
|
||||||
"Appearance": "Útlit",
|
|
||||||
"%(roomName)s does not exist.": "%(roomName)s er ekki til.",
|
"%(roomName)s does not exist.": "%(roomName)s er ekki til.",
|
||||||
"Do you want to join %(roomName)s?": "Viltu taka þátt í %(roomName)s?",
|
"Do you want to join %(roomName)s?": "Viltu taka þátt í %(roomName)s?",
|
||||||
"Start chatting": "Hefja spjall",
|
"Start chatting": "Hefja spjall",
|
||||||
|
@ -1120,8 +1104,6 @@
|
||||||
"Collapse": "Fella saman",
|
"Collapse": "Fella saman",
|
||||||
"Expand": "Fletta út",
|
"Expand": "Fletta út",
|
||||||
"Go back": "Til baka",
|
"Go back": "Til baka",
|
||||||
"Private": "Einka",
|
|
||||||
"Public": "Opinbert",
|
|
||||||
"Address": "Vistfang",
|
"Address": "Vistfang",
|
||||||
"Upload": "Senda inn",
|
"Upload": "Senda inn",
|
||||||
"Delete": "Eyða",
|
"Delete": "Eyða",
|
||||||
|
@ -1414,7 +1396,6 @@
|
||||||
"Your server": "Netþjónninn þinn",
|
"Your server": "Netþjónninn þinn",
|
||||||
"Can't find this server or its room list": "Fann ekki þennan netþjón eða spjallrásalista hans",
|
"Can't find this server or its room list": "Fann ekki þennan netþjón eða spjallrásalista hans",
|
||||||
"Sign in with single sign-on": "Skrá inn með einfaldri innskráningu (single sign-on)",
|
"Sign in with single sign-on": "Skrá inn með einfaldri innskráningu (single sign-on)",
|
||||||
"Homeserver": "Heimaþjónn",
|
|
||||||
"This address is already in use": "Þetta vistfang er nú þegar í notkun",
|
"This address is already in use": "Þetta vistfang er nú þegar í notkun",
|
||||||
"Open poll": "Opna könnun",
|
"Open poll": "Opna könnun",
|
||||||
"Poll type": "Tegund könnunar",
|
"Poll type": "Tegund könnunar",
|
||||||
|
@ -2979,7 +2960,6 @@
|
||||||
"Friends and family": "Vinir og fjölskylda",
|
"Friends and family": "Vinir og fjölskylda",
|
||||||
"We'll help you get connected.": "Við munum hjálpa þér að tengjast.",
|
"We'll help you get connected.": "Við munum hjálpa þér að tengjast.",
|
||||||
"Choose a locale": "Veldu staðfærslu",
|
"Choose a locale": "Veldu staðfærslu",
|
||||||
"Help": "Hjálp",
|
|
||||||
"Click to read topic": "Smelltu til að lesa umfjöllunarefni",
|
"Click to read topic": "Smelltu til að lesa umfjöllunarefni",
|
||||||
"Edit topic": "Breyta umfjöllunarefni",
|
"Edit topic": "Breyta umfjöllunarefni",
|
||||||
"Video call ended": "Mynddsímtali lauk",
|
"Video call ended": "Mynddsímtali lauk",
|
||||||
|
@ -3330,7 +3310,27 @@
|
||||||
"unmute": "Ekki þagga",
|
"unmute": "Ekki þagga",
|
||||||
"username": "Notandanafn",
|
"username": "Notandanafn",
|
||||||
"verification_cancelled": "Hætt við sannprófun",
|
"verification_cancelled": "Hætt við sannprófun",
|
||||||
"video": "Myndskeið"
|
"video": "Myndskeið",
|
||||||
|
"attachment": "Viðhengi",
|
||||||
|
"light": "Ljóst",
|
||||||
|
"dark": "Dökkt",
|
||||||
|
"warning": "Aðvörun",
|
||||||
|
"home": "Forsíða",
|
||||||
|
"favourites": "Eftirlæti",
|
||||||
|
"thread": "Spjallþráður",
|
||||||
|
"threads": "Spjallþræðir",
|
||||||
|
"room": "Spjallrás",
|
||||||
|
"theme": "Þema",
|
||||||
|
"name": "Heiti",
|
||||||
|
"description": "Lýsing",
|
||||||
|
"public": "Opinbert",
|
||||||
|
"private": "Einka",
|
||||||
|
"options": "Valkostir",
|
||||||
|
"appearance": "Útlit",
|
||||||
|
"homeserver": "Heimaþjónn",
|
||||||
|
"help": "Hjálp",
|
||||||
|
"beta": "Beta-prófunarútgáfa",
|
||||||
|
"labs": "Tilraunir"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Halda áfram",
|
"continue": "Halda áfram",
|
||||||
|
@ -3367,5 +3367,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Valmynd notandans"
|
"user_menu": "Valmynd notandans"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Forsíða"
|
||||||
|
}
|
||||||
|
|
|
@ -55,7 +55,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s",
|
||||||
"Register": "Registrati",
|
"Register": "Registrati",
|
||||||
"Rooms": "Stanze",
|
"Rooms": "Stanze",
|
||||||
"Warning": "Attenzione",
|
|
||||||
"Unnamed room": "Stanza senza nome",
|
"Unnamed room": "Stanza senza nome",
|
||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Call Failed": "Chiamata fallita",
|
"Call Failed": "Chiamata fallita",
|
||||||
|
@ -130,7 +129,6 @@
|
||||||
"Change Password": "Modifica password",
|
"Change Password": "Modifica password",
|
||||||
"Failed to set display name": "Impostazione nome visibile fallita",
|
"Failed to set display name": "Impostazione nome visibile fallita",
|
||||||
"Drop file here to upload": "Trascina un file qui per l'invio",
|
"Drop file here to upload": "Trascina un file qui per l'invio",
|
||||||
"Options": "Opzioni",
|
|
||||||
"Unban": "Togli ban",
|
"Unban": "Togli ban",
|
||||||
"Failed to ban user": "Ban utente fallito",
|
"Failed to ban user": "Ban utente fallito",
|
||||||
"Failed to mute user": "Impossibile silenziare l'utente",
|
"Failed to mute user": "Impossibile silenziare l'utente",
|
||||||
|
@ -148,7 +146,6 @@
|
||||||
"Invited": "Invitato/a",
|
"Invited": "Invitato/a",
|
||||||
"Filter room members": "Filtra membri della stanza",
|
"Filter room members": "Filtra membri della stanza",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (poteri %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (poteri %(powerLevelNumber)s)",
|
||||||
"Attachment": "Allegato",
|
|
||||||
"Hangup": "Riaggancia",
|
"Hangup": "Riaggancia",
|
||||||
"Voice call": "Telefonata",
|
"Voice call": "Telefonata",
|
||||||
"Video call": "Videochiamata",
|
"Video call": "Videochiamata",
|
||||||
|
@ -175,7 +172,6 @@
|
||||||
"Join Room": "Entra nella stanza",
|
"Join Room": "Entra nella stanza",
|
||||||
"Upload avatar": "Invia avatar",
|
"Upload avatar": "Invia avatar",
|
||||||
"Forget room": "Dimentica la stanza",
|
"Forget room": "Dimentica la stanza",
|
||||||
"Favourites": "Preferiti",
|
|
||||||
"Low priority": "Bassa priorità",
|
"Low priority": "Bassa priorità",
|
||||||
"Historical": "Cronologia",
|
"Historical": "Cronologia",
|
||||||
"Power level must be positive integer.": "Il livello di poteri deve essere un intero positivo.",
|
"Power level must be positive integer.": "Il livello di poteri deve essere un intero positivo.",
|
||||||
|
@ -229,7 +225,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",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)ssono entrati %(count)s volte",
|
"other": "%(severalUsers)ssono entrati %(count)s volte",
|
||||||
|
@ -338,10 +333,8 @@
|
||||||
"Unable to verify email address.": "Impossibile verificare l'indirizzo email.",
|
"Unable to verify email address.": "Impossibile verificare l'indirizzo email.",
|
||||||
"This will allow you to reset your password and receive notifications.": "Ciò ti permetterà di reimpostare la tua password e ricevere notifiche.",
|
"This will allow you to reset your password and receive notifications.": "Ciò ti permetterà di reimpostare la tua password e ricevere notifiche.",
|
||||||
"Skip": "Salta",
|
"Skip": "Salta",
|
||||||
"Name": "Nome",
|
|
||||||
"You must <a>register</a> to use this functionality": "Devi <a>registrarti</a> per usare questa funzionalità",
|
"You must <a>register</a> to use this functionality": "Devi <a>registrarti</a> per usare questa funzionalità",
|
||||||
"You must join the room to see its files": "Devi entrare nella stanza per vederne i file",
|
"You must join the room to see its files": "Devi entrare nella stanza per vederne i file",
|
||||||
"Description": "Descrizione",
|
|
||||||
"Reject invitation": "Rifiuta l'invito",
|
"Reject invitation": "Rifiuta l'invito",
|
||||||
"Are you sure you want to reject the invitation?": "Sei sicuro di volere rifiutare l'invito?",
|
"Are you sure you want to reject the invitation?": "Sei sicuro di volere rifiutare l'invito?",
|
||||||
"Failed to reject invitation": "Rifiuto dell'invito fallito",
|
"Failed to reject invitation": "Rifiuto dell'invito fallito",
|
||||||
|
@ -359,7 +352,6 @@
|
||||||
"Search failed": "Ricerca fallita",
|
"Search failed": "Ricerca fallita",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Il server potrebbe essere non disponibile, sovraccarico o la ricerca è scaduta :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Il server potrebbe essere non disponibile, sovraccarico o la ricerca è scaduta :(",
|
||||||
"No more results": "Nessun altro risultato",
|
"No more results": "Nessun altro risultato",
|
||||||
"Room": "Stanza",
|
|
||||||
"Failed to reject invite": "Rifiuto dell'invito fallito",
|
"Failed to reject invite": "Rifiuto dell'invito fallito",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Si è tentato di caricare un punto specifico nella cronologia della stanza, ma non hai l'autorizzazione per vedere il messaggio in questione.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Si è tentato di caricare un punto specifico nella cronologia della stanza, ma non hai l'autorizzazione per vedere il messaggio in questione.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Si è tentato di caricare un punto specifico nella cronologia della stanza, ma non è stato trovato.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Si è tentato di caricare un punto specifico nella cronologia della stanza, ma non è stato trovato.",
|
||||||
|
@ -375,7 +367,6 @@
|
||||||
"Import E2E room keys": "Importa chiavi E2E stanza",
|
"Import E2E room keys": "Importa chiavi E2E stanza",
|
||||||
"Cryptography": "Crittografia",
|
"Cryptography": "Crittografia",
|
||||||
"Submit debug logs": "Invia log di debug",
|
"Submit debug logs": "Invia log di debug",
|
||||||
"Labs": "Laboratori",
|
|
||||||
"Check for update": "Controlla aggiornamenti",
|
"Check for update": "Controlla aggiornamenti",
|
||||||
"Reject all %(invitedRooms)s invites": "Rifiuta tutti gli inviti da %(invitedRooms)s",
|
"Reject all %(invitedRooms)s invites": "Rifiuta tutti gli inviti da %(invitedRooms)s",
|
||||||
"Start automatically after system login": "Esegui automaticamente all'avvio del sistema",
|
"Start automatically after system login": "Esegui automaticamente all'avvio del sistema",
|
||||||
|
@ -726,7 +717,6 @@
|
||||||
"Email addresses": "Indirizzi email",
|
"Email addresses": "Indirizzi email",
|
||||||
"Phone numbers": "Numeri di telefono",
|
"Phone numbers": "Numeri di telefono",
|
||||||
"Language and region": "Lingua e regione",
|
"Language and region": "Lingua e regione",
|
||||||
"Theme": "Tema",
|
|
||||||
"Account management": "Gestione account",
|
"Account management": "Gestione account",
|
||||||
"General": "Generale",
|
"General": "Generale",
|
||||||
"Credits": "Crediti",
|
"Credits": "Crediti",
|
||||||
|
@ -1517,7 +1507,6 @@
|
||||||
"Size must be a number": "La dimensione deve essere un numero",
|
"Size must be a number": "La dimensione deve essere un numero",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "La dimensione del carattere personalizzata può solo essere tra %(min)s pt e %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "La dimensione del carattere personalizzata può solo essere tra %(min)s pt e %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Usa tra %(min)s pt e %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Usa tra %(min)s pt e %(max)s pt",
|
||||||
"Appearance": "Aspetto",
|
|
||||||
"Joins room with given address": "Accede alla stanza con l'indirizzo dato",
|
"Joins room with given address": "Accede alla stanza con l'indirizzo dato",
|
||||||
"Please verify the room ID or address and try again.": "Verifica l'ID o l'indirizzo della stanza e riprova.",
|
"Please verify the room ID or address and try again.": "Verifica l'ID o l'indirizzo della stanza e riprova.",
|
||||||
"Room ID or address of ban list": "ID o indirizzo stanza della lista ban",
|
"Room ID or address of ban list": "ID o indirizzo stanza della lista ban",
|
||||||
|
@ -1555,8 +1544,6 @@
|
||||||
"Room options": "Opzioni stanza",
|
"Room options": "Opzioni stanza",
|
||||||
"Activity": "Attività",
|
"Activity": "Attività",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Light": "Chiaro",
|
|
||||||
"Dark": "Scuro",
|
|
||||||
"Customise your appearance": "Personalizza l'aspetto",
|
"Customise your appearance": "Personalizza l'aspetto",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Le impostazioni dell'aspetto hanno effetto solo in questa sessione di %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Le impostazioni dell'aspetto hanno effetto solo in questa sessione di %(brand)s.",
|
||||||
"Looks good!": "Sembra giusta!",
|
"Looks good!": "Sembra giusta!",
|
||||||
|
@ -2046,7 +2033,6 @@
|
||||||
"Continuing without email": "Continuando senza email",
|
"Continuing without email": "Continuando senza email",
|
||||||
"Reason (optional)": "Motivo (facoltativo)",
|
"Reason (optional)": "Motivo (facoltativo)",
|
||||||
"Continue with %(provider)s": "Continua con %(provider)s",
|
"Continue with %(provider)s": "Continua con %(provider)s",
|
||||||
"Homeserver": "Homeserver",
|
|
||||||
"Server Options": "Opzioni server",
|
"Server Options": "Opzioni server",
|
||||||
"Return to call": "Torna alla chiamata",
|
"Return to call": "Torna alla chiamata",
|
||||||
"sends confetti": "invia coriandoli",
|
"sends confetti": "invia coriandoli",
|
||||||
|
@ -2209,9 +2195,7 @@
|
||||||
"Your private space": "Il tuo spazio privato",
|
"Your private space": "Il tuo spazio privato",
|
||||||
"Your public space": "Il tuo spazio pubblico",
|
"Your public space": "Il tuo spazio pubblico",
|
||||||
"Invite only, best for yourself or teams": "Solo su invito, la scelta migliore per te o i team",
|
"Invite only, best for yourself or teams": "Solo su invito, la scelta migliore per te o i team",
|
||||||
"Private": "Privato",
|
|
||||||
"Open space for anyone, best for communities": "Spazio aperto a tutti, la scelta migliore per le comunità",
|
"Open space for anyone, best for communities": "Spazio aperto a tutti, la scelta migliore per le comunità",
|
||||||
"Public": "Pubblico",
|
|
||||||
"Create a space": "Crea uno spazio",
|
"Create a space": "Crea uno spazio",
|
||||||
"Delete": "Elimina",
|
"Delete": "Elimina",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Salta in fondo alla linea temporale quando invii un messaggio",
|
"Jump to the bottom of the timeline when you send a message": "Salta in fondo alla linea temporale quando invii un messaggio",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "Prima seleziona una stanza sotto",
|
"Select a room below first": "Prima seleziona una stanza sotto",
|
||||||
"Join the beta": "Unisciti alla beta",
|
"Join the beta": "Unisciti alla beta",
|
||||||
"Leave the beta": "Abbandona la beta",
|
"Leave the beta": "Abbandona la beta",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "Vuoi invece aggiungere una nuova stanza?",
|
"Want to add a new room instead?": "Vuoi invece aggiungere una nuova stanza?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Aggiunta stanza...",
|
"one": "Aggiunta stanza...",
|
||||||
|
@ -2560,7 +2543,6 @@
|
||||||
"Are you sure you want to make this encrypted room public?": "Vuoi veramente rendere pubblica questa stanza cifrata?",
|
"Are you sure you want to make this encrypted room public?": "Vuoi veramente rendere pubblica questa stanza cifrata?",
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Per evitare questi problemi, crea una <a>nuova stanza cifrata</a> per la conversazione che vuoi avere.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Per evitare questi problemi, crea una <a>nuova stanza cifrata</a> per la conversazione che vuoi avere.",
|
||||||
"Are you sure you want to add encryption to this public room?": "Vuoi veramente aggiungere la crittografia a questa stanza pubblica?",
|
"Are you sure you want to add encryption to this public room?": "Vuoi veramente aggiungere la crittografia a questa stanza pubblica?",
|
||||||
"Thread": "Conversazione",
|
|
||||||
"The above, but in any room you are joined or invited to as well": "Quanto sopra, ma anche in qualsiasi stanza tu sia entrato/a o invitato/a",
|
"The above, but in any room you are joined or invited to as well": "Quanto sopra, ma anche in qualsiasi stanza tu sia entrato/a o invitato/a",
|
||||||
"The above, but in <Room /> as well": "Quanto sopra, ma anche in <Room />",
|
"The above, but in <Room /> as well": "Quanto sopra, ma anche in <Room />",
|
||||||
"Autoplay videos": "Auto-riproduci i video",
|
"Autoplay videos": "Auto-riproduci i video",
|
||||||
|
@ -2651,7 +2633,6 @@
|
||||||
"Unban from %(roomName)s": "Riammetti in %(roomName)s",
|
"Unban from %(roomName)s": "Riammetti in %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Potrà ancora accedere dove non sei amministratore.",
|
"They'll still be able to access whatever you're not an admin of.": "Potrà ancora accedere dove non sei amministratore.",
|
||||||
"Disinvite from %(roomName)s": "Annulla l'invito da %(roomName)s",
|
"Disinvite from %(roomName)s": "Annulla l'invito da %(roomName)s",
|
||||||
"Threads": "Conversazioni",
|
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s risposta",
|
"one": "%(count)s risposta",
|
||||||
"other": "%(count)s risposte"
|
"other": "%(count)s risposte"
|
||||||
|
@ -3315,7 +3296,6 @@
|
||||||
"Send your first message to invite <displayName/> to chat": "Invia il primo messaggio per invitare <displayName/> a parlare",
|
"Send your first message to invite <displayName/> to chat": "Invia il primo messaggio per invitare <displayName/> a parlare",
|
||||||
"Saved Items": "Elementi salvati",
|
"Saved Items": "Elementi salvati",
|
||||||
"Choose a locale": "Scegli una lingua",
|
"Choose a locale": "Scegli una lingua",
|
||||||
"Help": "Aiuto",
|
|
||||||
"Spell check": "Controllo ortografico",
|
"Spell check": "Controllo ortografico",
|
||||||
"Complete these to get the most out of %(brand)s": "Completa questi per ottenere il meglio da %(brand)s",
|
"Complete these to get the most out of %(brand)s": "Completa questi per ottenere il meglio da %(brand)s",
|
||||||
"You did it!": "Ce l'hai fatta!",
|
"You did it!": "Ce l'hai fatta!",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Requires your server to support MSC3030": "Richiede che il tuo server supporti MSC3030",
|
"Requires your server to support MSC3030": "Richiede che il tuo server supporti MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "Richiede che il tuo server supporti la versione stabile di MSC3827",
|
"Requires your server to support the stable version of MSC3827": "Richiede che il tuo server supporti la versione stabile di MSC3827",
|
||||||
"Use your account to continue.": "Usa il tuo account per continuare.",
|
"Use your account to continue.": "Usa il tuo account per continuare.",
|
||||||
"User": "Utente",
|
|
||||||
"Show avatars in user, room and event mentions": "Mostra gli avatar nelle citazioni di utenti, stanze ed eventi",
|
"Show avatars in user, room and event mentions": "Mostra gli avatar nelle citazioni di utenti, stanze ed eventi",
|
||||||
"Message from %(user)s": "Messaggio da %(user)s",
|
"Message from %(user)s": "Messaggio da %(user)s",
|
||||||
"Message in %(room)s": "Messaggio in %(room)s",
|
"Message in %(room)s": "Messaggio in %(room)s",
|
||||||
|
@ -3943,7 +3922,28 @@
|
||||||
"unmute": "Togli silenzio",
|
"unmute": "Togli silenzio",
|
||||||
"username": "Nome utente",
|
"username": "Nome utente",
|
||||||
"verification_cancelled": "Verifica annullata",
|
"verification_cancelled": "Verifica annullata",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Allegato",
|
||||||
|
"light": "Chiaro",
|
||||||
|
"dark": "Scuro",
|
||||||
|
"warning": "Attenzione",
|
||||||
|
"home": "Pagina iniziale",
|
||||||
|
"favourites": "Preferiti",
|
||||||
|
"thread": "Conversazione",
|
||||||
|
"threads": "Conversazioni",
|
||||||
|
"user": "Utente",
|
||||||
|
"room": "Stanza",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Nome",
|
||||||
|
"description": "Descrizione",
|
||||||
|
"public": "Pubblico",
|
||||||
|
"private": "Privato",
|
||||||
|
"options": "Opzioni",
|
||||||
|
"appearance": "Aspetto",
|
||||||
|
"homeserver": "Homeserver",
|
||||||
|
"help": "Aiuto",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Laboratori"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continua",
|
"continue": "Continua",
|
||||||
|
@ -3980,5 +3980,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu utente"
|
"user_menu": "Menu utente"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Pagina iniziale"
|
||||||
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
"Close": "閉じる",
|
"Close": "閉じる",
|
||||||
"Current password": "現在のパスワード",
|
"Current password": "現在のパスワード",
|
||||||
"Favourite": "お気に入り",
|
"Favourite": "お気に入り",
|
||||||
"Favourites": "お気に入り",
|
|
||||||
"Invited": "招待済",
|
"Invited": "招待済",
|
||||||
"Low priority": "低優先度",
|
"Low priority": "低優先度",
|
||||||
"Notifications": "通知",
|
"Notifications": "通知",
|
||||||
|
@ -61,7 +60,6 @@
|
||||||
"Tuesday": "火曜日",
|
"Tuesday": "火曜日",
|
||||||
"Search…": "検索…",
|
"Search…": "検索…",
|
||||||
"Saturday": "土曜日",
|
"Saturday": "土曜日",
|
||||||
"Warning": "警告",
|
|
||||||
"This Room": "このルーム",
|
"This Room": "このルーム",
|
||||||
"When I'm invited to a room": "ルームに招待されたとき",
|
"When I'm invited to a room": "ルームに招待されたとき",
|
||||||
"Resend": "再送信",
|
"Resend": "再送信",
|
||||||
|
@ -209,7 +207,6 @@
|
||||||
"On": "オン",
|
"On": "オン",
|
||||||
"Drop file here to upload": "アップロードするファイルをここにドロップしてください",
|
"Drop file here to upload": "アップロードするファイルをここにドロップしてください",
|
||||||
"This event could not be displayed": "このイベントは表示できませんでした",
|
"This event could not be displayed": "このイベントは表示できませんでした",
|
||||||
"Options": "オプション",
|
|
||||||
"Call Failed": "呼び出しに失敗しました",
|
"Call Failed": "呼び出しに失敗しました",
|
||||||
"Automatically replace plain text Emoji": "自動的にプレーンテキストの絵文字を置き換える",
|
"Automatically replace plain text Emoji": "自動的にプレーンテキストの絵文字を置き換える",
|
||||||
"Demote yourself?": "自身を降格しますか?",
|
"Demote yourself?": "自身を降格しますか?",
|
||||||
|
@ -227,7 +224,6 @@
|
||||||
"one": "他1人…"
|
"one": "他1人…"
|
||||||
},
|
},
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s(権限レベル:%(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s(権限レベル:%(powerLevelNumber)s)",
|
||||||
"Attachment": "添付ファイル",
|
|
||||||
"Hangup": "電話を切る",
|
"Hangup": "電話を切る",
|
||||||
"Voice call": "音声通話",
|
"Voice call": "音声通話",
|
||||||
"Video call": "ビデオ通話",
|
"Video call": "ビデオ通話",
|
||||||
|
@ -320,7 +316,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": "ウィジェットをポップアウト",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)sが%(count)s回参加しました",
|
"other": "%(severalUsers)sが%(count)s回参加しました",
|
||||||
|
@ -459,10 +454,8 @@
|
||||||
"Link to selected message": "選択したメッセージにリンク",
|
"Link to selected message": "選択したメッセージにリンク",
|
||||||
"Reject invitation": "招待を辞退",
|
"Reject invitation": "招待を辞退",
|
||||||
"Are you sure you want to reject the invitation?": "招待を辞退してよろしいですか?",
|
"Are you sure you want to reject the invitation?": "招待を辞退してよろしいですか?",
|
||||||
"Name": "名前",
|
|
||||||
"You must <a>register</a> to use this functionality": "この機能を使用するには<a>登録</a>する必要があります",
|
"You must <a>register</a> to use this functionality": "この機能を使用するには<a>登録</a>する必要があります",
|
||||||
"You must join the room to see its files": "ルームのファイルを表示するには、ルームに参加する必要があります",
|
"You must join the room to see its files": "ルームのファイルを表示するには、ルームに参加する必要があります",
|
||||||
"Description": "詳細",
|
|
||||||
"Failed to reject invitation": "招待を辞退できませんでした",
|
"Failed to reject invitation": "招待を辞退できませんでした",
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "このルームは公開されていません。再度参加するには、招待が必要です。",
|
"This room is not public. You will not be able to rejoin without an invite.": "このルームは公開されていません。再度参加するには、招待が必要です。",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "このルーム「%(roomName)s」から退出してよろしいですか?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "このルーム「%(roomName)s」から退出してよろしいですか?",
|
||||||
|
@ -486,7 +479,6 @@
|
||||||
"Search failed": "検索に失敗しました",
|
"Search failed": "検索に失敗しました",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "サーバーが使用できないか、オーバーロードしているか、または検索がタイムアウトした可能性があります :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "サーバーが使用できないか、オーバーロードしているか、または検索がタイムアウトした可能性があります :(",
|
||||||
"No more results": "結果がありません",
|
"No more results": "結果がありません",
|
||||||
"Room": "ルーム",
|
|
||||||
"Failed to reject invite": "招待を辞退できませんでした",
|
"Failed to reject invite": "招待を辞退できませんでした",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "このルームのタイムラインの特定の地点を読み込もうとしましたが、問題のメッセージを閲覧する権限がありません。",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "このルームのタイムラインの特定の地点を読み込もうとしましたが、問題のメッセージを閲覧する権限がありません。",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "このルームのタイムラインの特定の地点を読み込もうとしましたが、見つけられませんでした。",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "このルームのタイムラインの特定の地点を読み込もうとしましたが、見つけられませんでした。",
|
||||||
|
@ -500,7 +492,6 @@
|
||||||
"<not supported>": "<サポート対象外>",
|
"<not supported>": "<サポート対象外>",
|
||||||
"Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート",
|
"Import E2E room keys": "ルームのエンドツーエンド暗号鍵をインポート",
|
||||||
"Cryptography": "暗号",
|
"Cryptography": "暗号",
|
||||||
"Labs": "ラボ",
|
|
||||||
"Legal": "法的情報",
|
"Legal": "法的情報",
|
||||||
"Check for update": "更新を確認",
|
"Check for update": "更新を確認",
|
||||||
"Reject all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を拒否",
|
"Reject all %(invitedRooms)s invites": "%(invitedRooms)sの全ての招待を拒否",
|
||||||
|
@ -629,7 +620,6 @@
|
||||||
"Send typing notifications": "入力中通知を送信",
|
"Send typing notifications": "入力中通知を送信",
|
||||||
"Phone numbers": "電話番号",
|
"Phone numbers": "電話番号",
|
||||||
"Language and region": "言語と地域",
|
"Language and region": "言語と地域",
|
||||||
"Theme": "テーマ",
|
|
||||||
"General": "一般",
|
"General": "一般",
|
||||||
"Preferences": "環境設定",
|
"Preferences": "環境設定",
|
||||||
"Security & Privacy": "セキュリティーとプライバシー",
|
"Security & Privacy": "セキュリティーとプライバシー",
|
||||||
|
@ -855,7 +845,6 @@
|
||||||
"Service": "サービス",
|
"Service": "サービス",
|
||||||
"Summary": "概要",
|
"Summary": "概要",
|
||||||
"Document": "ドキュメント",
|
"Document": "ドキュメント",
|
||||||
"Appearance": "外観",
|
|
||||||
"Other users may not trust it": "他のユーザーはこのセッションを信頼しない可能性があります",
|
"Other users may not trust it": "他のユーザーはこのセッションを信頼しない可能性があります",
|
||||||
"Show a placeholder for removed messages": "削除されたメッセージに関する通知を表示",
|
"Show a placeholder for removed messages": "削除されたメッセージに関する通知を表示",
|
||||||
"Prompt before sending invites to potentially invalid matrix IDs": "不正の可能性があるMatrix IDに招待を送信する前に確認",
|
"Prompt before sending invites to potentially invalid matrix IDs": "不正の可能性があるMatrix IDに招待を送信する前に確認",
|
||||||
|
@ -873,8 +862,6 @@
|
||||||
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "アドレスを設定すると、他のユーザーがあなたのホームサーバー(%(localDomain)s)を通じてこのルームを見つけられるようになります。",
|
"Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "アドレスを設定すると、他のユーザーがあなたのホームサーバー(%(localDomain)s)を通じてこのルームを見つけられるようになります。",
|
||||||
"If you've joined lots of rooms, this might take a while": "多くのルームに参加している場合は、時間がかかる可能性があります",
|
"If you've joined lots of rooms, this might take a while": "多くのルームに参加している場合は、時間がかかる可能性があります",
|
||||||
"Single Sign On": "シングルサインオン",
|
"Single Sign On": "シングルサインオン",
|
||||||
"Light": "ライト",
|
|
||||||
"Dark": "ダーク",
|
|
||||||
"Font size": "フォントの大きさ",
|
"Font size": "フォントの大きさ",
|
||||||
"Use custom size": "ユーザー定義のサイズを使用",
|
"Use custom size": "ユーザー定義のサイズを使用",
|
||||||
"Use a system font": "システムフォントを使用",
|
"Use a system font": "システムフォントを使用",
|
||||||
|
@ -1815,9 +1802,7 @@
|
||||||
"Your private space": "あなたの非公開のスペース",
|
"Your private space": "あなたの非公開のスペース",
|
||||||
"Your public space": "あなたの公開スペース",
|
"Your public space": "あなたの公開スペース",
|
||||||
"Invite only, best for yourself or teams": "招待者のみ参加可能。個人やチーム向け",
|
"Invite only, best for yourself or teams": "招待者のみ参加可能。個人やチーム向け",
|
||||||
"Private": "非公開",
|
|
||||||
"Open space for anyone, best for communities": "誰でも参加できる公開スペース。コミュニティー向け",
|
"Open space for anyone, best for communities": "誰でも参加できる公開スペース。コミュニティー向け",
|
||||||
"Public": "公開",
|
|
||||||
"Create a space": "スペースを作成",
|
"Create a space": "スペースを作成",
|
||||||
"Delete": "削除",
|
"Delete": "削除",
|
||||||
"Jump to the bottom of the timeline when you send a message": "メッセージを送信する際にタイムラインの最下部に移動",
|
"Jump to the bottom of the timeline when you send a message": "メッセージを送信する際にタイムラインの最下部に移動",
|
||||||
|
@ -1841,7 +1826,6 @@
|
||||||
"Just me": "自分専用",
|
"Just me": "自分専用",
|
||||||
"Make sure the right people have access to %(name)s": "正しい参加者が%(name)sにアクセスできるようにしましょう。",
|
"Make sure the right people have access to %(name)s": "正しい参加者が%(name)sにアクセスできるようにしましょう。",
|
||||||
"Who are you working with?": "誰と使いますか?",
|
"Who are you working with?": "誰と使いますか?",
|
||||||
"Beta": "ベータ版",
|
|
||||||
"Invite to %(roomName)s": "%(roomName)sに招待",
|
"Invite to %(roomName)s": "%(roomName)sに招待",
|
||||||
"Send feedback": "フィードバックを送信",
|
"Send feedback": "フィードバックを送信",
|
||||||
"Manage & explore rooms": "ルームの管理および探索",
|
"Manage & explore rooms": "ルームの管理および探索",
|
||||||
|
@ -1984,7 +1968,6 @@
|
||||||
"This address is already in use": "このアドレスは既に使用されています",
|
"This address is already in use": "このアドレスは既に使用されています",
|
||||||
"This address is available to use": "このアドレスは使用できます",
|
"This address is available to use": "このアドレスは使用できます",
|
||||||
"Please provide an address": "アドレスを入力してください",
|
"Please provide an address": "アドレスを入力してください",
|
||||||
"Homeserver": "ホームサーバー",
|
|
||||||
"Enter a server name": "サーバー名を入力",
|
"Enter a server name": "サーバー名を入力",
|
||||||
"Add existing space": "既存のスペースを追加",
|
"Add existing space": "既存のスペースを追加",
|
||||||
"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.": "このアップグレードにより、選択したスペースのメンバーは、招待なしでこのルームにアクセスできるようになります。",
|
||||||
|
@ -2451,8 +2434,6 @@
|
||||||
"Spam or propaganda": "スパム、プロパガンダ",
|
"Spam or propaganda": "スパム、プロパガンダ",
|
||||||
"Illegal Content": "不法なコンテンツ",
|
"Illegal Content": "不法なコンテンツ",
|
||||||
"To view all keyboard shortcuts, <a>click here</a>.": "<a>ここをクリック</a>すると、全てのキーボードのショートカットを表示します。",
|
"To view all keyboard shortcuts, <a>click here</a>.": "<a>ここをクリック</a>すると、全てのキーボードのショートカットを表示します。",
|
||||||
"Thread": "スレッド",
|
|
||||||
"Threads": "スレッド",
|
|
||||||
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>暗号化されたルームを公開することは推奨されません。</b>ルームを公開すると、誰でもルームを検索、参加して、メッセージを読むことができるため、暗号化の利益を得ることができません。また、公開ルームでメッセージを暗号化すると、メッセージの送受信が遅くなります。",
|
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>暗号化されたルームを公開することは推奨されません。</b>ルームを公開すると、誰でもルームを検索、参加して、メッセージを読むことができるため、暗号化の利益を得ることができません。また、公開ルームでメッセージを暗号化すると、メッセージの送受信が遅くなります。",
|
||||||
"Are you sure you want to make this encrypted room public?": "この暗号化されたルームを公開してよろしいですか?",
|
"Are you sure you want to make this encrypted room public?": "この暗号化されたルームを公開してよろしいですか?",
|
||||||
"Unknown failure": "不明なエラー",
|
"Unknown failure": "不明なエラー",
|
||||||
|
@ -3153,7 +3134,6 @@
|
||||||
"Modal Widget": "モーダルウィジェット",
|
"Modal Widget": "モーダルウィジェット",
|
||||||
"You will no longer be able to log in": "ログインできなくなります",
|
"You will no longer be able to log in": "ログインできなくなります",
|
||||||
"Friends and family": "友達と家族",
|
"Friends and family": "友達と家族",
|
||||||
"Help": "ヘルプ",
|
|
||||||
"Minimise": "最小化",
|
"Minimise": "最小化",
|
||||||
"Underline": "下線",
|
"Underline": "下線",
|
||||||
"Italic": "斜字体",
|
"Italic": "斜字体",
|
||||||
|
@ -3740,7 +3720,27 @@
|
||||||
"unmute": "ミュート解除",
|
"unmute": "ミュート解除",
|
||||||
"username": "ユーザー名",
|
"username": "ユーザー名",
|
||||||
"verification_cancelled": "認証のキャンセル",
|
"verification_cancelled": "認証のキャンセル",
|
||||||
"video": "動画"
|
"video": "動画",
|
||||||
|
"attachment": "添付ファイル",
|
||||||
|
"light": "ライト",
|
||||||
|
"dark": "ダーク",
|
||||||
|
"warning": "警告",
|
||||||
|
"home": "ホーム",
|
||||||
|
"favourites": "お気に入り",
|
||||||
|
"thread": "スレッド",
|
||||||
|
"threads": "スレッド",
|
||||||
|
"room": "ルーム",
|
||||||
|
"theme": "テーマ",
|
||||||
|
"name": "名前",
|
||||||
|
"description": "詳細",
|
||||||
|
"public": "公開",
|
||||||
|
"private": "非公開",
|
||||||
|
"options": "オプション",
|
||||||
|
"appearance": "外観",
|
||||||
|
"homeserver": "ホームサーバー",
|
||||||
|
"help": "ヘルプ",
|
||||||
|
"beta": "ベータ版",
|
||||||
|
"labs": "ラボ"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "続行",
|
"continue": "続行",
|
||||||
|
@ -3777,5 +3777,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "ユーザーメニュー"
|
"user_menu": "ユーザーメニュー"
|
||||||
}
|
},
|
||||||
}
|
"Home": "ホーム"
|
||||||
|
}
|
||||||
|
|
|
@ -166,8 +166,6 @@
|
||||||
"%(senderName)s placed a video call.": ".i la'o zoi. %(senderName)s .zoi co'a vidvi fonjo'e",
|
"%(senderName)s placed a video call.": ".i la'o zoi. %(senderName)s .zoi co'a vidvi fonjo'e",
|
||||||
"%(senderName)s placed a video call. (not supported by this browser)": ".i la'o zoi. %(senderName)s .zoi co'a vidvi fonjo'e .i le do kibrbrauzero na kakne",
|
"%(senderName)s placed a video call. (not supported by this browser)": ".i la'o zoi. %(senderName)s .zoi co'a vidvi fonjo'e .i le do kibrbrauzero na kakne",
|
||||||
"%(senderName)s revoked the invitation for %(targetDisplayName)s to join the room.": ".i la'o zoi. %(senderName)s .zoi co'u friti le ka ziljmina le se zilbe'i kei la'o zoi. %(targetDisplayName)s .zoi",
|
"%(senderName)s revoked the invitation for %(targetDisplayName)s to join the room.": ".i la'o zoi. %(senderName)s .zoi co'u friti le ka ziljmina le se zilbe'i kei la'o zoi. %(targetDisplayName)s .zoi",
|
||||||
"Light": "carmi",
|
|
||||||
"Dark": "manku",
|
|
||||||
"You signed in to a new session without verifying it:": ".i fe le di'e se samtcise'u pu co'a jaspu vau je za'o na lacri",
|
"You signed in to a new session without verifying it:": ".i fe le di'e se samtcise'u pu co'a jaspu vau je za'o na lacri",
|
||||||
"They match": "du",
|
"They match": "du",
|
||||||
"They don't match": "na du",
|
"They don't match": "na du",
|
||||||
|
@ -379,7 +377,9 @@
|
||||||
"error": "nabmi",
|
"error": "nabmi",
|
||||||
"password": "lerpoijaspu",
|
"password": "lerpoijaspu",
|
||||||
"people": "prenu",
|
"people": "prenu",
|
||||||
"username": "judri cmene"
|
"username": "judri cmene",
|
||||||
|
"light": "carmi",
|
||||||
|
"dark": "manku"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "",
|
"continue": "",
|
||||||
|
@ -397,4 +397,4 @@
|
||||||
"start": "nu co'a co'e",
|
"start": "nu co'a co'e",
|
||||||
"start_chat": "nu co'a tavla"
|
"start_chat": "nu co'a tavla"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"Sign In": "შესვლა",
|
"Sign In": "შესვლა",
|
||||||
"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' აჭარბებს ამ ჰომსერვერის ზომის ლიმიტს ატვირთვისთვის",
|
||||||
"The file '%(fileName)s' failed to upload.": "ფაილი '%(fileName)s' ვერ აიტვირთა.",
|
"The file '%(fileName)s' failed to upload.": "ფაილი '%(fileName)s' ვერ აიტვირთა.",
|
||||||
"Attachment": "Მიმაგრებული ფაილი",
|
|
||||||
"Dismiss": "დახურვა",
|
"Dismiss": "დახურვა",
|
||||||
"This email address is already in use": "ელ. ფოსტის ეს მისამართი დაკავებულია",
|
"This email address is already in use": "ელ. ფოსტის ეს მისამართი დაკავებულია",
|
||||||
"Use Single Sign On to continue": "გასაგრძელებლად გამოიყენე ერთჯერადი ავტორიზაცია",
|
"Use Single Sign On to continue": "გასაგრძელებლად გამოიყენე ერთჯერადი ავტორიზაცია",
|
||||||
|
@ -55,6 +54,7 @@
|
||||||
"%(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": {
|
"common": {
|
||||||
"error": "შეცდომა"
|
"error": "შეცდომა",
|
||||||
|
"attachment": "Მიმაგრებული ფაილი"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,14 +39,11 @@
|
||||||
"Thank you!": "Tanemmirt!",
|
"Thank you!": "Tanemmirt!",
|
||||||
"Reason": "Taɣẓint",
|
"Reason": "Taɣẓint",
|
||||||
"Someone": "Albaɛḍ",
|
"Someone": "Albaɛḍ",
|
||||||
"Light": "Aceɛlal",
|
|
||||||
"Dark": "Aberkan",
|
|
||||||
"Add another word or two. Uncommon words are better.": "Rnu awal-nniḍen neɣ sin. Awalen imexḍa ad lhun.",
|
"Add another word or two. Uncommon words are better.": "Rnu awal-nniḍen neɣ sin. Awalen imexḍa ad lhun.",
|
||||||
"Review": "Senqed",
|
"Review": "Senqed",
|
||||||
"Later": "Ticki",
|
"Later": "Ticki",
|
||||||
"Notifications": "Ilɣa",
|
"Notifications": "Ilɣa",
|
||||||
"Close": "Mdel",
|
"Close": "Mdel",
|
||||||
"Warning": "Asmigel",
|
|
||||||
"Ok": "Ih",
|
"Ok": "Ih",
|
||||||
"Upgrade": "Leqqem",
|
"Upgrade": "Leqqem",
|
||||||
"Verify": "Senqed",
|
"Verify": "Senqed",
|
||||||
|
@ -86,7 +83,6 @@
|
||||||
"Disconnect": "Ffeɣ seg tuqqna",
|
"Disconnect": "Ffeɣ seg tuqqna",
|
||||||
"Go back": "Uɣal ɣer deffir",
|
"Go back": "Uɣal ɣer deffir",
|
||||||
"Change": "Beddel",
|
"Change": "Beddel",
|
||||||
"Theme": "Asentel",
|
|
||||||
"Profile": "Amaɣnu",
|
"Profile": "Amaɣnu",
|
||||||
"Account": "Amiḍan",
|
"Account": "Amiḍan",
|
||||||
"General": "Amatu",
|
"General": "Amatu",
|
||||||
|
@ -122,13 +118,11 @@
|
||||||
"Idle": "Arurmid",
|
"Idle": "Arurmid",
|
||||||
"Unknown": "Arussin",
|
"Unknown": "Arussin",
|
||||||
"Search": "Nadi",
|
"Search": "Nadi",
|
||||||
"Favourites": "Ismenyifen",
|
|
||||||
"Sign Up": "Jerred",
|
"Sign Up": "Jerred",
|
||||||
"Reject": "Agi",
|
"Reject": "Agi",
|
||||||
"Sort by": "Semyizwer s",
|
"Sort by": "Semyizwer s",
|
||||||
"Activity": "Armud",
|
"Activity": "Armud",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Options": "Tixtiṛiyin",
|
|
||||||
"Server error": "Tuccḍa n uqeddac",
|
"Server error": "Tuccḍa n uqeddac",
|
||||||
"Trusted": "Yettwattkal",
|
"Trusted": "Yettwattkal",
|
||||||
"Are you sure?": "Tebɣiḍ s tidet?",
|
"Are you sure?": "Tebɣiḍ s tidet?",
|
||||||
|
@ -142,7 +136,6 @@
|
||||||
"Saturday": "Sed",
|
"Saturday": "Sed",
|
||||||
"Today": "Ass-a",
|
"Today": "Ass-a",
|
||||||
"Yesterday": "Iḍelli",
|
"Yesterday": "Iḍelli",
|
||||||
"Attachment": "Taceqquft yeddan",
|
|
||||||
"Error decrypting attachment": "Tuccḍa deg uwgelhen n tceqquft yeddan",
|
"Error decrypting attachment": "Tuccḍa deg uwgelhen n tceqquft yeddan",
|
||||||
"Show all": "Sken akk",
|
"Show all": "Sken akk",
|
||||||
"Message deleted": "Izen yettwakksen",
|
"Message deleted": "Izen yettwakksen",
|
||||||
|
@ -163,7 +156,6 @@
|
||||||
"Changelog": "Aɣmis n yisnifal",
|
"Changelog": "Aɣmis n yisnifal",
|
||||||
"Removing…": "Tukksa…",
|
"Removing…": "Tukksa…",
|
||||||
"Confirm Removal": "Sentem tukksa",
|
"Confirm Removal": "Sentem tukksa",
|
||||||
"Name": "Isem",
|
|
||||||
"Sign out": "Ffeɣ seg tuqqna",
|
"Sign out": "Ffeɣ seg tuqqna",
|
||||||
"Back": "Uɣal ɣer deffir",
|
"Back": "Uɣal ɣer deffir",
|
||||||
"Send": "Azen",
|
"Send": "Azen",
|
||||||
|
@ -178,9 +170,7 @@
|
||||||
"Summary": "Agzul",
|
"Summary": "Agzul",
|
||||||
"Document": "Isemli",
|
"Document": "Isemli",
|
||||||
"Upload files": "Sali-d ifuyla",
|
"Upload files": "Sali-d ifuyla",
|
||||||
"Appearance": "Arwes",
|
|
||||||
"Source URL": "URL aɣbalu",
|
"Source URL": "URL aɣbalu",
|
||||||
"Home": "Agejdan",
|
|
||||||
"Sign in": "Qqen",
|
"Sign in": "Qqen",
|
||||||
"powered by Matrix": "s lmendad n Matrix",
|
"powered by Matrix": "s lmendad n Matrix",
|
||||||
"Code": "Tangalt",
|
"Code": "Tangalt",
|
||||||
|
@ -190,7 +180,6 @@
|
||||||
"Passwords don't match": "Awalen uffiren ur mṣadan ara",
|
"Passwords don't match": "Awalen uffiren ur mṣadan ara",
|
||||||
"Email (optional)": "Imayl (Afrayan)",
|
"Email (optional)": "Imayl (Afrayan)",
|
||||||
"Register": "Jerred",
|
"Register": "Jerred",
|
||||||
"Description": "Aglam",
|
|
||||||
"Explore rooms": "Snirem tixxamin",
|
"Explore rooms": "Snirem tixxamin",
|
||||||
"Unknown error": "Tuccḍa tarussint",
|
"Unknown error": "Tuccḍa tarussint",
|
||||||
"Logout": "Tuffɣa",
|
"Logout": "Tuffɣa",
|
||||||
|
@ -794,7 +783,6 @@
|
||||||
"Send a Direct Message": "Azen izen uslig",
|
"Send a Direct Message": "Azen izen uslig",
|
||||||
"Failed to reject invitation": "Tigtin n tinnubga ur yeddi ara",
|
"Failed to reject invitation": "Tigtin n tinnubga ur yeddi ara",
|
||||||
"Signed Out": "Yeffeɣ seg tuqqna",
|
"Signed Out": "Yeffeɣ seg tuqqna",
|
||||||
"Room": "Taxxamt",
|
|
||||||
"Failed to reject invite": "Tigtin n tinnubga ur yeddi ara",
|
"Failed to reject invite": "Tigtin n tinnubga ur yeddi ara",
|
||||||
"Switch to light mode": "Uɣal ɣer uskar aceɛlal",
|
"Switch to light mode": "Uɣal ɣer uskar aceɛlal",
|
||||||
"Switch to dark mode": "Uɣal ɣer uskar aberkan",
|
"Switch to dark mode": "Uɣal ɣer uskar aberkan",
|
||||||
|
@ -1130,7 +1118,6 @@
|
||||||
"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",
|
||||||
"Discovery": "Tagrut",
|
"Discovery": "Tagrut",
|
||||||
"Help & About": "Tallalt & Ɣef",
|
"Help & About": "Tallalt & Ɣef",
|
||||||
"Labs": "Tinarimin",
|
|
||||||
"Error adding ignored user/server": "Tuccḍa deg tmerna n useqdac/uqeddac yettwanfen",
|
"Error adding ignored user/server": "Tuccḍa deg tmerna n useqdac/uqeddac yettwanfen",
|
||||||
"Something went wrong. Please try again or view your console for hints.": "Yella wayen ur nteddu ara akken iwata, ma ulac aɣilif ales tikkelt-nniḍen neɣ senqed tadiwent-ik·im i yiwellihen.",
|
"Something went wrong. Please try again or view your console for hints.": "Yella wayen ur nteddu ara akken iwata, ma ulac aɣilif ales tikkelt-nniḍen neɣ senqed tadiwent-ik·im i yiwellihen.",
|
||||||
"Error subscribing to list": "Tuccḍa deg ujerred ɣef tebdart",
|
"Error subscribing to list": "Tuccḍa deg ujerred ɣef tebdart",
|
||||||
|
@ -1972,7 +1959,20 @@
|
||||||
"suggestions": "Isumar",
|
"suggestions": "Isumar",
|
||||||
"unmute": "Rmed imesli",
|
"unmute": "Rmed imesli",
|
||||||
"username": "Isem n useqdac",
|
"username": "Isem n useqdac",
|
||||||
"verification_cancelled": "Yefsex usenqed"
|
"verification_cancelled": "Yefsex usenqed",
|
||||||
|
"attachment": "Taceqquft yeddan",
|
||||||
|
"light": "Aceɛlal",
|
||||||
|
"dark": "Aberkan",
|
||||||
|
"warning": "Asmigel",
|
||||||
|
"home": "Agejdan",
|
||||||
|
"favourites": "Ismenyifen",
|
||||||
|
"room": "Taxxamt",
|
||||||
|
"theme": "Asentel",
|
||||||
|
"name": "Isem",
|
||||||
|
"description": "Aglam",
|
||||||
|
"options": "Tixtiṛiyin",
|
||||||
|
"appearance": "Arwes",
|
||||||
|
"labs": "Tinarimin"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Kemmel",
|
"continue": "Kemmel",
|
||||||
|
@ -2006,5 +2006,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Umuɣ n useqdac"
|
"user_menu": "Umuɣ n useqdac"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Agejdan"
|
||||||
|
}
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
"Anyone": "누구나",
|
"Anyone": "누구나",
|
||||||
"Are you sure?": "확신합니까?",
|
"Are you sure?": "확신합니까?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "%(roomName)s 방을 떠나겠습니까?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "%(roomName)s 방을 떠나겠습니까?",
|
||||||
"Attachment": "첨부 파일",
|
|
||||||
"Banned users": "출입 금지된 사용자",
|
"Banned users": "출입 금지된 사용자",
|
||||||
"Change Password": "비밀번호 바꾸기",
|
"Change Password": "비밀번호 바꾸기",
|
||||||
"Changes your display nickname": "표시 별명 변경하기",
|
"Changes your display nickname": "표시 별명 변경하기",
|
||||||
|
@ -78,14 +77,12 @@
|
||||||
"Failed to unban": "출입 금지 풀기에 실패함",
|
"Failed to unban": "출입 금지 풀기에 실패함",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "이메일 주소를 인증하지 못했습니다. 메일에 나온 주소를 눌렀는지 확인해 보세요",
|
"Failed to verify email address: make sure you clicked the link in the email": "이메일 주소를 인증하지 못했습니다. 메일에 나온 주소를 눌렀는지 확인해 보세요",
|
||||||
"Failure to create room": "방 만들기 실패",
|
"Failure to create room": "방 만들기 실패",
|
||||||
"Favourites": "즐겨찾기",
|
|
||||||
"Filter room members": "방 구성원 필터",
|
"Filter room members": "방 구성원 필터",
|
||||||
"Forget room": "방 지우기",
|
"Forget room": "방 지우기",
|
||||||
"For security, this session has been signed out. Please sign in again.": "안전을 위해서 이 세션에서 로그아웃했습니다. 다시 로그인해주세요.",
|
"For security, this session has been signed out. Please sign in again.": "안전을 위해서 이 세션에서 로그아웃했습니다. 다시 로그인해주세요.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s를 %(fromPowerLevel)s에서 %(toPowerLevel)s로",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s를 %(fromPowerLevel)s에서 %(toPowerLevel)s로",
|
||||||
"Hangup": "전화 끊기",
|
"Hangup": "전화 끊기",
|
||||||
"Historical": "기록",
|
"Historical": "기록",
|
||||||
"Home": "홈",
|
|
||||||
"Import": "가져오기",
|
"Import": "가져오기",
|
||||||
"Import E2E room keys": "종단간 암호화 방 키 불러오기",
|
"Import E2E room keys": "종단간 암호화 방 키 불러오기",
|
||||||
"Import room keys": "방 키 가져오기",
|
"Import room keys": "방 키 가져오기",
|
||||||
|
@ -98,7 +95,6 @@
|
||||||
"Sign in with": "이것으로 로그인",
|
"Sign in with": "이것으로 로그인",
|
||||||
"Join Room": "방에 참가",
|
"Join Room": "방에 참가",
|
||||||
"Jump to first unread message.": "읽지 않은 첫 메시지로 건너뜁니다.",
|
"Jump to first unread message.": "읽지 않은 첫 메시지로 건너뜁니다.",
|
||||||
"Labs": "실험실",
|
|
||||||
"Logout": "로그아웃",
|
"Logout": "로그아웃",
|
||||||
"Low priority": "중요하지 않음",
|
"Low priority": "중요하지 않음",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s님이 이후 방 구성원 모두, 초대받은 시점부터 방의 기록을 볼 수 있게 했습니다.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s님이 이후 방 구성원 모두, 초대받은 시점부터 방의 기록을 볼 수 있게 했습니다.",
|
||||||
|
@ -109,7 +105,6 @@
|
||||||
"Missing room_id in request": "요청에서 room_id가 빠짐",
|
"Missing room_id in request": "요청에서 room_id가 빠짐",
|
||||||
"Missing user_id in request": "요청에서 user_id이(가) 빠짐",
|
"Missing user_id in request": "요청에서 user_id이(가) 빠짐",
|
||||||
"Moderator": "조정자",
|
"Moderator": "조정자",
|
||||||
"Name": "이름",
|
|
||||||
"New passwords don't match": "새 비밀번호가 맞지 않음",
|
"New passwords don't match": "새 비밀번호가 맞지 않음",
|
||||||
"New passwords must match each other.": "새 비밀번호는 서로 같아야 합니다.",
|
"New passwords must match each other.": "새 비밀번호는 서로 같아야 합니다.",
|
||||||
"not specified": "지정되지 않음",
|
"not specified": "지정되지 않음",
|
||||||
|
@ -215,7 +210,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s년 %(monthName)s %(day)s일 %(weekDayName)s요일 %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(fullYear)s년 %(monthName)s %(day)s일 %(weekDayName)s요일 %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s요일, %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s요일, %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "이 서버는 전화번호 인증을 지원하지 않습니다.",
|
"This server does not support authentication with a phone number.": "이 서버는 전화번호 인증을 지원하지 않습니다.",
|
||||||
"Room": "방",
|
|
||||||
"Connectivity to the server has been lost.": "서버 연결이 끊어졌습니다.",
|
"Connectivity to the server has been lost.": "서버 연결이 끊어졌습니다.",
|
||||||
"Sent messages will be stored until your connection has returned.": "보낸 메시지는 연결이 돌아올 때까지 저장됩니다.",
|
"Sent messages will be stored until your connection has returned.": "보낸 메시지는 연결이 돌아올 때까지 저장됩니다.",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -224,7 +218,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "새 비밀번호",
|
"New Password": "새 비밀번호",
|
||||||
"Start automatically after system login": "컴퓨터를 시작할 때 자동으로 실행하기",
|
"Start automatically after system login": "컴퓨터를 시작할 때 자동으로 실행하기",
|
||||||
"Options": "옵션",
|
|
||||||
"Passphrases must match": "암호가 일치해야 함",
|
"Passphrases must match": "암호가 일치해야 함",
|
||||||
"Passphrase must not be empty": "암호를 입력해야 함",
|
"Passphrase must not be empty": "암호를 입력해야 함",
|
||||||
"Export room keys": "방 키 내보내기",
|
"Export room keys": "방 키 내보내기",
|
||||||
|
@ -272,7 +265,6 @@
|
||||||
"On": "켜기",
|
"On": "켜기",
|
||||||
"Changelog": "바뀐 점",
|
"Changelog": "바뀐 점",
|
||||||
"Waiting for response from server": "서버에서 응답을 기다리는 중",
|
"Waiting for response from server": "서버에서 응답을 기다리는 중",
|
||||||
"Warning": "경고",
|
|
||||||
"This Room": "방",
|
"This Room": "방",
|
||||||
"Resend": "다시 보내기",
|
"Resend": "다시 보내기",
|
||||||
"Messages containing my display name": "내 표시 이름이 포함된 메시지",
|
"Messages containing my display name": "내 표시 이름이 포함된 메시지",
|
||||||
|
@ -480,7 +472,6 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "%(count)s개 더..."
|
"other": "%(count)s개 더..."
|
||||||
},
|
},
|
||||||
"Description": "설명",
|
|
||||||
"Can't leave Server Notices room": "서버 알림 방을 떠날 수는 없음",
|
"Can't leave Server Notices room": "서버 알림 방을 떠날 수는 없음",
|
||||||
"This room is used for important messages from the Homeserver, so you cannot leave it.": "이 방은 홈서버로부터 중요한 메시지를 받는 데 쓰이므로 떠날 수 없습니다.",
|
"This room is used for important messages from the Homeserver, so you cannot leave it.": "이 방은 홈서버로부터 중요한 메시지를 받는 데 쓰이므로 떠날 수 없습니다.",
|
||||||
"Terms and Conditions": "이용 약관",
|
"Terms and Conditions": "이용 약관",
|
||||||
|
@ -717,7 +708,6 @@
|
||||||
"Email addresses": "이메일 주소",
|
"Email addresses": "이메일 주소",
|
||||||
"Phone numbers": "전화번호",
|
"Phone numbers": "전화번호",
|
||||||
"Language and region": "언어와 나라",
|
"Language and region": "언어와 나라",
|
||||||
"Theme": "테마",
|
|
||||||
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "이메일 주소나 전화번호로 자신을 발견할 수 있도록 ID 서버 (%(serverName)s) 서비스 약관에 동의하세요.",
|
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "이메일 주소나 전화번호로 자신을 발견할 수 있도록 ID 서버 (%(serverName)s) 서비스 약관에 동의하세요.",
|
||||||
"Account management": "계정 관리",
|
"Account management": "계정 관리",
|
||||||
"General": "기본",
|
"General": "기본",
|
||||||
|
@ -1172,7 +1162,6 @@
|
||||||
"Could not connect to identity server": "ID 서버에 연결할 수 없음",
|
"Could not connect to identity server": "ID 서버에 연결할 수 없음",
|
||||||
"Not a valid identity server (status code %(code)s)": "올바르지 않은 ID 서버 (상태 코드 %(code)s)",
|
"Not a valid identity server (status code %(code)s)": "올바르지 않은 ID 서버 (상태 코드 %(code)s)",
|
||||||
"Identity server URL must be HTTPS": "ID 서버 URL은 HTTPS이어야 함",
|
"Identity server URL must be HTTPS": "ID 서버 URL은 HTTPS이어야 함",
|
||||||
"Appearance": "모습",
|
|
||||||
"Appearance Settings only affect this %(brand)s session.": "모습 설정은 이 %(brand)s 세션에만 영향을 끼칩니다.",
|
"Appearance Settings only affect this %(brand)s session.": "모습 설정은 이 %(brand)s 세션에만 영향을 끼칩니다.",
|
||||||
"Customise your appearance": "모습 개인화하기",
|
"Customise your appearance": "모습 개인화하기",
|
||||||
"Delete avatar": "아바타 삭제",
|
"Delete avatar": "아바타 삭제",
|
||||||
|
@ -1191,7 +1180,6 @@
|
||||||
"Get notifications as set up in your <a>settings</a>": "<a>설정</a>에서 지정한 알림만 받습니다",
|
"Get notifications as set up in your <a>settings</a>": "<a>설정</a>에서 지정한 알림만 받습니다",
|
||||||
"Get notified for every message": "모든 메세지 알림을 받습니다",
|
"Get notified for every message": "모든 메세지 알림을 받습니다",
|
||||||
"You won't get any notifications": "어떤 알람도 받지 않습니다",
|
"You won't get any notifications": "어떤 알람도 받지 않습니다",
|
||||||
"Public": "공개",
|
|
||||||
"Space members": "스페이스 멤버 목록",
|
"Space members": "스페이스 멤버 목록",
|
||||||
"Private room (invite only)": "비공개 방 (초대 필요)",
|
"Private room (invite only)": "비공개 방 (초대 필요)",
|
||||||
"Private (invite only)": "비공개 (초대 필요)",
|
"Private (invite only)": "비공개 (초대 필요)",
|
||||||
|
@ -1332,7 +1320,6 @@
|
||||||
"No active call in this room": "이 방에 진행중인 통화 없음",
|
"No active call in this room": "이 방에 진행중인 통화 없음",
|
||||||
"%(senderName)s banned %(targetName)s": "%(senderName)s님이 %(targetName)s님을 강퇴함",
|
"%(senderName)s banned %(targetName)s": "%(senderName)s님이 %(targetName)s님을 강퇴함",
|
||||||
"Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message": "평문 텍스트 메시지 앞에 ┬──┬ ノ( ゜-゜ノ) 를 덧붙임",
|
"Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message": "평문 텍스트 메시지 앞에 ┬──┬ ノ( ゜-゜ノ) 를 덧붙임",
|
||||||
"Light": "라이트",
|
|
||||||
"Your current session is ready for secure messaging.": "현재 세션에서 보안 메세지를 사용할 수 있습니다.",
|
"Your current session is ready for secure messaging.": "현재 세션에서 보안 메세지를 사용할 수 있습니다.",
|
||||||
"Last activity": "최근 활동",
|
"Last activity": "최근 활동",
|
||||||
"Mark all as read": "모두 읽음으로 표시",
|
"Mark all as read": "모두 읽음으로 표시",
|
||||||
|
@ -1346,9 +1333,7 @@
|
||||||
"%(num)s hours ago": "%(num)s 시간 전",
|
"%(num)s hours ago": "%(num)s 시간 전",
|
||||||
"Spell check": "맞춤법 검사",
|
"Spell check": "맞춤법 검사",
|
||||||
"Unverified sessions": "검증되지 않은 세션들",
|
"Unverified sessions": "검증되지 않은 세션들",
|
||||||
"Threads": "스레드",
|
|
||||||
"Match system theme": "시스템 테마 사용",
|
"Match system theme": "시스템 테마 사용",
|
||||||
"Dark": "다크",
|
|
||||||
"Unverified": "검증 되지 않음",
|
"Unverified": "검증 되지 않음",
|
||||||
"Threads timeline": "스레드 타임라인",
|
"Threads timeline": "스레드 타임라인",
|
||||||
"Sessions": "세션목록",
|
"Sessions": "세션목록",
|
||||||
|
@ -1371,7 +1356,22 @@
|
||||||
"success": "성공",
|
"success": "성공",
|
||||||
"suggestions": "추천 목록",
|
"suggestions": "추천 목록",
|
||||||
"unmute": "음소거 끄기",
|
"unmute": "음소거 끄기",
|
||||||
"username": "사용자 이름"
|
"username": "사용자 이름",
|
||||||
|
"attachment": "첨부 파일",
|
||||||
|
"light": "라이트",
|
||||||
|
"dark": "다크",
|
||||||
|
"warning": "경고",
|
||||||
|
"home": "홈",
|
||||||
|
"favourites": "즐겨찾기",
|
||||||
|
"threads": "스레드",
|
||||||
|
"room": "방",
|
||||||
|
"theme": "테마",
|
||||||
|
"name": "이름",
|
||||||
|
"description": "설명",
|
||||||
|
"public": "공개",
|
||||||
|
"options": "옵션",
|
||||||
|
"appearance": "모습",
|
||||||
|
"labs": "실험실"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "계속하기",
|
"continue": "계속하기",
|
||||||
|
@ -1396,5 +1396,6 @@
|
||||||
"start_chat": "대화 시작",
|
"start_chat": "대화 시작",
|
||||||
"view_source": "소스 보기",
|
"view_source": "소스 보기",
|
||||||
"yes": "네"
|
"yes": "네"
|
||||||
}
|
},
|
||||||
}
|
"Home": "홈"
|
||||||
|
}
|
||||||
|
|
|
@ -569,7 +569,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "ມີບາງຢ່າງຜິດພາດ. ກະລຸນາລອງອີກຄັ້ງ ຫຼື ເບິ່ງ console ຂອງທ່ານເພື່ອຂໍຄຳແນະນຳ.",
|
"Something went wrong. Please try again or view your console for hints.": "ມີບາງຢ່າງຜິດພາດ. ກະລຸນາລອງອີກຄັ້ງ ຫຼື ເບິ່ງ console ຂອງທ່ານເພື່ອຂໍຄຳແນະນຳ.",
|
||||||
"Error adding ignored user/server": "ເກີດຄວາມຜິດພາດໃນການເພີ່ມຜູ້ໃຊ້/ເຊີບເວີທີ່ລະເລີຍ",
|
"Error adding ignored user/server": "ເກີດຄວາມຜິດພາດໃນການເພີ່ມຜູ້ໃຊ້/ເຊີບເວີທີ່ລະເລີຍ",
|
||||||
"Ignored/Blocked": "ບໍ່ສົນໃຈ/ຖືກບລັອກ",
|
"Ignored/Blocked": "ບໍ່ສົນໃຈ/ຖືກບລັອກ",
|
||||||
"Labs": "ຫ້ອງທົດລອງ",
|
|
||||||
"Keyboard": "ແປ້ນພິມ",
|
"Keyboard": "ແປ້ນພິມ",
|
||||||
"Clear cache and reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່",
|
"Clear cache and reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່",
|
||||||
"Your access token gives full access to your account. Do not share it with anyone.": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.",
|
"Your access token gives full access to your account. Do not share it with anyone.": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.",
|
||||||
|
@ -628,7 +627,6 @@
|
||||||
"Click to copy": "ກົດເພື່ອສຳເນົາ",
|
"Click to copy": "ກົດເພື່ອສຳເນົາ",
|
||||||
"Collapse": "ຫຍໍ້ລົງ",
|
"Collapse": "ຫຍໍ້ລົງ",
|
||||||
"Expand": "ຂະຫຍາຍ",
|
"Expand": "ຂະຫຍາຍ",
|
||||||
"Options": "ທາງເລືອກ",
|
|
||||||
"Show all rooms": "ສະແດງຫ້ອງທັງໝົດ",
|
"Show all rooms": "ສະແດງຫ້ອງທັງໝົດ",
|
||||||
"You can change these anytime.": "ທ່ານສາມາດປ່ຽນສິ່ງເຫຼົ່ານີ້ໄດ້ທຸກເວລາ.",
|
"You can change these anytime.": "ທ່ານສາມາດປ່ຽນສິ່ງເຫຼົ່ານີ້ໄດ້ທຸກເວລາ.",
|
||||||
"Add some details to help people recognise it.": "ເພີ່ມລາຍລະອຽດບາງຢ່າງເພື່ອຊ່ວຍໃຫ້ຄົນຮັບຮູ້.",
|
"Add some details to help people recognise it.": "ເພີ່ມລາຍລະອຽດບາງຢ່າງເພື່ອຊ່ວຍໃຫ້ຄົນຮັບຮູ້.",
|
||||||
|
@ -637,23 +635,18 @@
|
||||||
"Go back": "ກັບຄືນ",
|
"Go back": "ກັບຄືນ",
|
||||||
"To join a space you'll need an invite.": "ເພື່ອເຂົ້າຮ່ວມພື້ນທີ່, ທ່ານຈະຕ້ອງການເຊີນ.",
|
"To join a space you'll need an invite.": "ເພື່ອເຂົ້າຮ່ວມພື້ນທີ່, ທ່ານຈະຕ້ອງການເຊີນ.",
|
||||||
"Invite only, best for yourself or teams": "ເຊີນເທົ່ານັ້ນ, ດີທີ່ສຸດສຳລັບຕົວທ່ານເອງ ຫຼື ທີມງານ",
|
"Invite only, best for yourself or teams": "ເຊີນເທົ່ານັ້ນ, ດີທີ່ສຸດສຳລັບຕົວທ່ານເອງ ຫຼື ທີມງານ",
|
||||||
"Private": "ສ່ວນຕົວ",
|
|
||||||
"Open space for anyone, best for communities": "ເປີດພື້ນທີ່ສໍາລັບທຸກຄົນ, ດີທີ່ສຸດສໍາລັບຊຸມຊົນ",
|
"Open space for anyone, best for communities": "ເປີດພື້ນທີ່ສໍາລັບທຸກຄົນ, ດີທີ່ສຸດສໍາລັບຊຸມຊົນ",
|
||||||
"Public": "ສາທາລະນະ",
|
|
||||||
"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 ເປັນວິທີໃໝ່ໃນການຈັດກຸ່ມຫ້ອງ ແລະ ຄົນ. ທ່ານຕ້ອງການສ້າງ Space ປະເພດໃດ? ທ່ານສາມາດປ່ຽນອັນນີ້ໃນພາຍຫຼັງ.",
|
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Spaces ເປັນວິທີໃໝ່ໃນການຈັດກຸ່ມຫ້ອງ ແລະ ຄົນ. ທ່ານຕ້ອງການສ້າງ Space ປະເພດໃດ? ທ່ານສາມາດປ່ຽນອັນນີ້ໃນພາຍຫຼັງ.",
|
||||||
"Create a space": "ສ້າງພື້ນທີ່",
|
"Create a space": "ສ້າງພື້ນທີ່",
|
||||||
"Address": "ທີ່ຢູ່",
|
"Address": "ທີ່ຢູ່",
|
||||||
"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",
|
||||||
"Description": "ລາຍລະອຽດ",
|
|
||||||
"Name": "ຊື່",
|
|
||||||
"Upload": "ອັບໂຫຼດ",
|
"Upload": "ອັບໂຫຼດ",
|
||||||
"Upload avatar": "ອັບໂຫຼດອາວາຕ້າ",
|
"Upload avatar": "ອັບໂຫຼດອາວາຕ້າ",
|
||||||
"Delete": "ລຶບ",
|
"Delete": "ລຶບ",
|
||||||
"Delete avatar": "ລືບອາວາຕ້າ",
|
"Delete avatar": "ລືບອາວາຕ້າ",
|
||||||
"Space selection": "ການເລືອກພື້ນທີ່",
|
"Space selection": "ການເລືອກພື້ນທີ່",
|
||||||
"Theme": "ຫົວຂໍ້",
|
|
||||||
"Match system": "ລະບົບການຈັບຄູ່",
|
"Match system": "ລະບົບການຈັບຄູ່",
|
||||||
"More options": "ທາງເລືອກເພີ່ມເຕີມ",
|
"More options": "ທາງເລືອກເພີ່ມເຕີມ",
|
||||||
"Pin to sidebar": "ປັກໝຸດໃສ່ແຖບດ້ານຂ້າງ",
|
"Pin to sidebar": "ປັກໝຸດໃສ່ແຖບດ້ານຂ້າງ",
|
||||||
|
@ -710,7 +703,6 @@
|
||||||
"Live location error": "ສະຖານທີ່ປັດຈຸບັນຜິດພາດ",
|
"Live location error": "ສະຖານທີ່ປັດຈຸບັນຜິດພາດ",
|
||||||
"Live location ended": "ສະຖານທີ່ປັດຈຸບັນສິ້ນສຸດລົງແລ້ວ",
|
"Live location ended": "ສະຖານທີ່ປັດຈຸບັນສິ້ນສຸດລົງແລ້ວ",
|
||||||
"Join the beta": "ເຂົ້າຮ່ວມເບຕ້າ",
|
"Join the beta": "ເຂົ້າຮ່ວມເບຕ້າ",
|
||||||
"Beta": "ເບຕ້າ",
|
|
||||||
"Click for more info": "ກົດສຳລັບຂໍ້ມູນເພີ່ມເຕີມ",
|
"Click for more info": "ກົດສຳລັບຂໍ້ມູນເພີ່ມເຕີມ",
|
||||||
"This is a beta feature": "ນີ້ແມ່ນຄຸນສົມບັດເບຕ້າ",
|
"This is a beta feature": "ນີ້ແມ່ນຄຸນສົມບັດເບຕ້າ",
|
||||||
"Move right": "ຍ້າຍໄປທາງຂວາ",
|
"Move right": "ຍ້າຍໄປທາງຂວາ",
|
||||||
|
@ -796,7 +788,6 @@
|
||||||
"Server Options": "ຕົວເລືອກເຊີບເວີ",
|
"Server Options": "ຕົວເລືອກເຊີບເວີ",
|
||||||
"Sign in with single sign-on": "ເຂົ້າສູ່ລະບົບດ້ວຍການລົງຊື່ເຂົ້າໃຊ້ພຽງຄັ້ງດຽວ",
|
"Sign in with single sign-on": "ເຂົ້າສູ່ລະບົບດ້ວຍການລົງຊື່ເຂົ້າໃຊ້ພຽງຄັ້ງດຽວ",
|
||||||
"Continue with %(provider)s": "ສືບຕໍ່ກັບ %(provider)s",
|
"Continue with %(provider)s": "ສືບຕໍ່ກັບ %(provider)s",
|
||||||
"Homeserver": "Homeserver",
|
|
||||||
"Your server": "ເຊີບເວີຂອງທ່ານ",
|
"Your server": "ເຊີບເວີຂອງທ່ານ",
|
||||||
"Can't find this server or its room list": "ບໍ່ສາມາດຊອກຫາເຊີບເວີນີ້ ຫຼື ລາຍຊື່ຫ້ອງຂອງມັນໄດ້",
|
"Can't find this server or its room list": "ບໍ່ສາມາດຊອກຫາເຊີບເວີນີ້ ຫຼື ລາຍຊື່ຫ້ອງຂອງມັນໄດ້",
|
||||||
"You are not allowed to view this server's rooms list": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງລາຍຊື່ຫ້ອງຂອງເຊີບເວີນີ້",
|
"You are not allowed to view this server's rooms list": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງລາຍຊື່ຫ້ອງຂອງເຊີບເວີນີ້",
|
||||||
|
@ -939,7 +930,6 @@
|
||||||
"Failed to load timeline position": "ໂຫຼດຕໍາແໜ່ງທາມລາຍບໍ່ສຳເລັດ",
|
"Failed to load timeline position": "ໂຫຼດຕໍາແໜ່ງທາມລາຍບໍ່ສຳເລັດ",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "ພະຍາຍາມໂຫຼດຈຸດສະເພາະໃນທາມລາຍຂອງຫ້ອງນີ້, ແຕ່ບໍ່ສາມາດຊອກຫາມັນໄດ້.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "ພະຍາຍາມໂຫຼດຈຸດສະເພາະໃນທາມລາຍຂອງຫ້ອງນີ້, ແຕ່ບໍ່ສາມາດຊອກຫາມັນໄດ້.",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "ພະຍາຍາມໂຫຼດຈຸດສະເພາະຢູ່ໃນທາມລາຍຂອງຫ້ອງນີ້, ແຕ່ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງຂໍ້ຄວາມທີ່ເປັນຄໍາຖາມ.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "ພະຍາຍາມໂຫຼດຈຸດສະເພາະຢູ່ໃນທາມລາຍຂອງຫ້ອງນີ້, ແຕ່ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງຂໍ້ຄວາມທີ່ເປັນຄໍາຖາມ.",
|
||||||
"Thread": "ກະທູ້",
|
|
||||||
"Keep discussions organised with threads": "ຮັກສາການສົນທະນາທີ່ມີການຈັດລະບຽບ",
|
"Keep discussions organised with threads": "ຮັກສາການສົນທະນາທີ່ມີການຈັດລະບຽບ",
|
||||||
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>ເຄັດລັບ:</b> ໃຊ້ “%(replyInThread)s” ເມື່ອເລື່ອນໃສ່ຂໍ້ຄວາມ.",
|
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>ເຄັດລັບ:</b> ໃຊ້ “%(replyInThread)s” ເມື່ອເລື່ອນໃສ່ຂໍ້ຄວາມ.",
|
||||||
"Threads help keep your conversations on-topic and easy to track.": "ກະທູ້ຊ່ວຍໃຫ້ການສົນທະນາຂອງທ່ານຢູ່ໃນຫົວຂໍ້ ແລະ ງ່າຍຕໍ່ການຕິດຕາມ.",
|
"Threads help keep your conversations on-topic and easy to track.": "ກະທູ້ຊ່ວຍໃຫ້ການສົນທະນາຂອງທ່ານຢູ່ໃນຫົວຂໍ້ ແລະ ງ່າຍຕໍ່ການຕິດຕາມ.",
|
||||||
|
@ -1181,7 +1171,6 @@
|
||||||
"Sort by": "ຈັດຮຽງຕາມ",
|
"Sort by": "ຈັດຮຽງຕາມ",
|
||||||
"Show previews of messages": "ສະແດງຕົວຢ່າງຂອງຂໍ້ຄວາມ",
|
"Show previews of messages": "ສະແດງຕົວຢ່າງຂອງຂໍ້ຄວາມ",
|
||||||
"Show rooms with unread messages first": "ສະແດງຫ້ອງຂໍ້ຄວາມທີ່ຍັງບໍ່ທັນໄດ້ອ່ານກ່ອນ",
|
"Show rooms with unread messages first": "ສະແດງຫ້ອງຂໍ້ຄວາມທີ່ຍັງບໍ່ທັນໄດ້ອ່ານກ່ອນ",
|
||||||
"Appearance": "ຮູບລັກສະນະ",
|
|
||||||
"%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s ຖືກສົ່ງຄືນໃນຂະນະທີ່ພະຍາຍາມເຂົ້າເຖິງຫ້ອງ ຫຼື ພື້ນທີ່. ຖ້າຫາກທ່ານຄິດວ່າທ່ານກໍາລັງເຫັນຂໍ້ຄວາມນີ້ຜິດພາດ, ກະລຸນາ <issueLink>ສົ່ງບົດລາຍງານ bug</issueLink>.",
|
"%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s ຖືກສົ່ງຄືນໃນຂະນະທີ່ພະຍາຍາມເຂົ້າເຖິງຫ້ອງ ຫຼື ພື້ນທີ່. ຖ້າຫາກທ່ານຄິດວ່າທ່ານກໍາລັງເຫັນຂໍ້ຄວາມນີ້ຜິດພາດ, ກະລຸນາ <issueLink>ສົ່ງບົດລາຍງານ bug</issueLink>.",
|
||||||
"Try again later, or ask a room or space admin to check if you have access.": "ລອງໃໝ່ໃນພາຍຫຼັງ, ຫຼື ຂໍໃຫ້ຜູ້ຄຸ້ມຄອງຫ້ອງ ຫຼື ຜູ້ຄຸ້ມຄອງພື້ນທີ່ກວດເບິ່ງວ່າທ່ານມີການເຂົ້າເຖິງ ຫຼື ບໍ່.",
|
"Try again later, or ask a room or space admin to check if you have access.": "ລອງໃໝ່ໃນພາຍຫຼັງ, ຫຼື ຂໍໃຫ້ຜູ້ຄຸ້ມຄອງຫ້ອງ ຫຼື ຜູ້ຄຸ້ມຄອງພື້ນທີ່ກວດເບິ່ງວ່າທ່ານມີການເຂົ້າເຖິງ ຫຼື ບໍ່.",
|
||||||
"Force complete": "ບັງຄັບໃຫ້ສໍາເລັດ",
|
"Force complete": "ບັງຄັບໃຫ້ສໍາເລັດ",
|
||||||
|
@ -1549,9 +1538,7 @@
|
||||||
"other": "%(names)s and %(count)sຄົນອື່ນກຳລັງພິມ…"
|
"other": "%(names)s and %(count)sຄົນອື່ນກຳລັງພິມ…"
|
||||||
},
|
},
|
||||||
"%(displayName)s is typing …": "%(displayName)s ກຳລັງພິມ…",
|
"%(displayName)s is typing …": "%(displayName)s ກຳລັງພິມ…",
|
||||||
"Dark": "ມືດ",
|
|
||||||
"Light high contrast": "ແສງສະຫວ່າງຄວາມຄົມຊັດສູງ",
|
"Light high contrast": "ແສງສະຫວ່າງຄວາມຄົມຊັດສູງ",
|
||||||
"Light": "ແສງສະຫວ່າງ",
|
|
||||||
"%(senderName)s has ended a poll": "%(senderName)sໄດ້ສິ້ນສຸດການສໍາຫຼວດ",
|
"%(senderName)s has ended a poll": "%(senderName)sໄດ້ສິ້ນສຸດການສໍາຫຼວດ",
|
||||||
"%(senderName)s has started a poll - %(pollQuestion)s": "%(senderName)s ໄດ້ເລີ່ມສຳຫຼວດ - %(pollQuestion)s",
|
"%(senderName)s has started a poll - %(pollQuestion)s": "%(senderName)s ໄດ້ເລີ່ມສຳຫຼວດ - %(pollQuestion)s",
|
||||||
"Message deleted by %(name)s": "ຂໍ້ຄວາມຖືກລຶບໂດຍ %(name)s",
|
"Message deleted by %(name)s": "ຂໍ້ຄວາມຖືກລຶບໂດຍ %(name)s",
|
||||||
|
@ -2072,7 +2059,6 @@
|
||||||
"Explore room account data": "ສຳຫຼວດຂໍ້ມູນບັນຊີຫ້ອງ",
|
"Explore room account data": "ສຳຫຼວດຂໍ້ມູນບັນຊີຫ້ອງ",
|
||||||
"Explore room state": "ສຳຫຼວດສະຖານະຫ້ອງ",
|
"Explore room state": "ສຳຫຼວດສະຖານະຫ້ອງ",
|
||||||
"Send custom timeline event": "ສົ່ງລາຍແບບກຳນົດເອງ",
|
"Send custom timeline event": "ສົ່ງລາຍແບບກຳນົດເອງ",
|
||||||
"Room": "ຫ້ອງ",
|
|
||||||
"Hide my messages from new joiners": "ເຊື່ອງຂໍ້ຄວາມຂອງຂ້ອຍຈາກຜູ້ເຂົ້າໃໝ່",
|
"Hide my messages from new joiners": "ເຊື່ອງຂໍ້ຄວາມຂອງຂ້ອຍຈາກຜູ້ເຂົ້າໃໝ່",
|
||||||
"Your old messages will still be visible to people who received them, just like emails you sent in the past. Would you like to hide your sent messages from people who join rooms in the future?": "ຂໍ້ຄວາມເກົ່າຂອງທ່ານຍັງເບິ່ງເຫັນໄດ້ໂດຍຜູ້ທີ່ໄດ້ຮັບຂໍ້ຄວາມ, ຄືກັນກັບອີເມວທີ່ທ່ານສົ່ງໃນອະດີດ. ທ່ານຕ້ອງການເຊື່ອງຂໍ້ຄວາມທີ່ສົ່ງຂອງທ່ານຈາກຄົນທີ່ເຂົ້າຮ່ວມຫ້ອງໃນອະນາຄົດບໍ?",
|
"Your old messages will still be visible to people who received them, just like emails you sent in the past. Would you like to hide your sent messages from people who join rooms in the future?": "ຂໍ້ຄວາມເກົ່າຂອງທ່ານຍັງເບິ່ງເຫັນໄດ້ໂດຍຜູ້ທີ່ໄດ້ຮັບຂໍ້ຄວາມ, ຄືກັນກັບອີເມວທີ່ທ່ານສົ່ງໃນອະດີດ. ທ່ານຕ້ອງການເຊື່ອງຂໍ້ຄວາມທີ່ສົ່ງຂອງທ່ານຈາກຄົນທີ່ເຂົ້າຮ່ວມຫ້ອງໃນອະນາຄົດບໍ?",
|
||||||
"You will be removed from the identity server: your friends will no longer be able to find you with your email or phone number": "ທ່ານຈະຖືກລຶບອອກຈາກຂໍ້ມູນເຊີບເວີ: ໝູ່ຂອງທ່ານຈະບໍ່ສາມາດຊອກຫາທ່ານດ້ວຍອີເມວ ຫຼືເບີໂທລະສັບຂອງທ່ານໄດ້ອີກຕໍ່ໄປ",
|
"You will be removed from the identity server: your friends will no longer be able to find you with your email or phone number": "ທ່ານຈະຖືກລຶບອອກຈາກຂໍ້ມູນເຊີບເວີ: ໝູ່ຂອງທ່ານຈະບໍ່ສາມາດຊອກຫາທ່ານດ້ວຍອີເມວ ຫຼືເບີໂທລະສັບຂອງທ່ານໄດ້ອີກຕໍ່ໄປ",
|
||||||
|
@ -2245,7 +2231,6 @@
|
||||||
"Room members": "ສະມາຊິກຫ້ອງ",
|
"Room members": "ສະມາຊິກຫ້ອງ",
|
||||||
"Room information": "ຂໍ້ມູນຫ້ອງ",
|
"Room information": "ຂໍ້ມູນຫ້ອງ",
|
||||||
"Back to chat": "ກັບໄປທີ່ການສົນທະນາ",
|
"Back to chat": "ກັບໄປທີ່ການສົນທະນາ",
|
||||||
"Threads": "ກະທູ້",
|
|
||||||
"%(senderName)s is calling": "%(senderName)s ກຳລັງໂທຫາ",
|
"%(senderName)s is calling": "%(senderName)s ກຳລັງໂທຫາ",
|
||||||
"Waiting for answer": "ລໍຖ້າຄໍາຕອບ",
|
"Waiting for answer": "ລໍຖ້າຄໍາຕອບ",
|
||||||
"%(senderName)s started a call": "%(senderName)s ເລີ່ມໂທ",
|
"%(senderName)s started a call": "%(senderName)s ເລີ່ມໂທ",
|
||||||
|
@ -2257,7 +2242,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": "ຫ້ອງອື່ນໆ",
|
||||||
"Favourites": "ລາຍການທີ່ມັກ",
|
|
||||||
"Replying": "ກຳລັງຕອບກັບ",
|
"Replying": "ກຳລັງຕອບກັບ",
|
||||||
"Recently viewed": "ເບິ່ງເມື່ອບໍ່ດົນມານີ້",
|
"Recently viewed": "ເບິ່ງເມື່ອບໍ່ດົນມານີ້",
|
||||||
"Seen by %(count)s people": {
|
"Seen by %(count)s people": {
|
||||||
|
@ -2365,7 +2349,6 @@
|
||||||
"%(name)s declined": "%(name)s ປະຕິເສດ",
|
"%(name)s declined": "%(name)s ປະຕິເສດ",
|
||||||
"You cancelled": "ທ່ານໄດ້ຍົກເລີກ",
|
"You cancelled": "ທ່ານໄດ້ຍົກເລີກ",
|
||||||
"You declined": "ທ່ານປະຕິເສດ",
|
"You declined": "ທ່ານປະຕິເສດ",
|
||||||
"Home": "ໜ້າຫຼັກ",
|
|
||||||
"All rooms": "ຫ້ອງທັງໝົດ",
|
"All rooms": "ຫ້ອງທັງໝົດ",
|
||||||
"Failed to join": "ການເຂົ້າຮ່ວມບໍ່ສຳເລັດ",
|
"Failed to join": "ການເຂົ້າຮ່ວມບໍ່ສຳເລັດ",
|
||||||
"The person who invited you has already left, or their server is offline.": "ບຸກຄົນທີ່ເຊີນທ່ານໄດ້ອອກໄປແລ້ວ, ຫຼືເຊີບເວີຂອງເຂົາເຈົ້າອອບລາຍຢູ່.",
|
"The person who invited you has already left, or their server is offline.": "ບຸກຄົນທີ່ເຊີນທ່ານໄດ້ອອກໄປແລ້ວ, ຫຼືເຊີບເວີຂອງເຂົາເຈົ້າອອບລາຍຢູ່.",
|
||||||
|
@ -2389,7 +2372,6 @@
|
||||||
"Encryption upgrade available": "ມີການຍົກລະດັບການເຂົ້າລະຫັດ",
|
"Encryption upgrade available": "ມີການຍົກລະດັບການເຂົ້າລະຫັດ",
|
||||||
"Set up Secure Backup": "ຕັ້ງຄ່າການສໍາຮອງຂໍ້ມູນທີ່ປອດໄພ",
|
"Set up Secure Backup": "ຕັ້ງຄ່າການສໍາຮອງຂໍ້ມູນທີ່ປອດໄພ",
|
||||||
"Ok": "ຕົກລົງ",
|
"Ok": "ຕົກລົງ",
|
||||||
"Warning": "ຄຳເຕືອນ",
|
|
||||||
"Contact your <a>server admin</a>.": "ຕິດຕໍ່ <a>ຜູ້ເບິ່ງຄຸ້ມຄອງເຊີບເວີ</a> ຂອງທ່ານ.",
|
"Contact your <a>server admin</a>.": "ຕິດຕໍ່ <a>ຜູ້ເບິ່ງຄຸ້ມຄອງເຊີບເວີ</a> ຂອງທ່ານ.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "homeserver ຂອງທ່ານເກີນຂີດຈຳກັດຊັບພະຍາກອນແລ້ວ.",
|
"Your homeserver has exceeded one of its resource limits.": "homeserver ຂອງທ່ານເກີນຂີດຈຳກັດຊັບພະຍາກອນແລ້ວ.",
|
||||||
"Your homeserver has exceeded its user limit.": "ເຊີບເວີຂອງທ່ານໃຊ້ເກີນຂີດຈຳກັດແລ້ວ.",
|
"Your homeserver has exceeded its user limit.": "ເຊີບເວີຂອງທ່ານໃຊ້ເກີນຂີດຈຳກັດແລ້ວ.",
|
||||||
|
@ -2526,7 +2508,6 @@
|
||||||
"one": "%(items)s ແລະ ອີກນຶ່ງລາຍການ",
|
"one": "%(items)s ແລະ ອີກນຶ່ງລາຍການ",
|
||||||
"other": "%(items)s ແລະ %(count)s ອື່ນໆ"
|
"other": "%(items)s ແລະ %(count)s ອື່ນໆ"
|
||||||
},
|
},
|
||||||
"Attachment": "ຄັດຕິດ",
|
|
||||||
"This homeserver has exceeded one of its resource limits.": "homeserverນີ້ໃຊ້ຊັບພະຍາກອນເກີນຂີດຈຳກັດຢ່າງໃດຢ່າງໜຶ່ງ.",
|
"This homeserver has exceeded one of its resource limits.": "homeserverນີ້ໃຊ້ຊັບພະຍາກອນເກີນຂີດຈຳກັດຢ່າງໃດຢ່າງໜຶ່ງ.",
|
||||||
"This homeserver has been blocked by its administrator.": "homeserver ນີ້ຖືກບລັອກໂດຍຜູູ້ຄຸ້ມຄອງລະບົບ.",
|
"This homeserver has been blocked by its administrator.": "homeserver ນີ້ຖືກບລັອກໂດຍຜູູ້ຄຸ້ມຄອງລະບົບ.",
|
||||||
"This homeserver has hit its Monthly Active User limit.": "homeserver ນີ້ຮອດຂີດຈຳກັດຂອງຜູ້ໃຊ້ປະຈຳເດືອນແລ້ວ.",
|
"This homeserver has hit its Monthly Active User limit.": "homeserver ນີ້ຮອດຂີດຈຳກັດຂອງຜູ້ໃຊ້ປະຈຳເດືອນແລ້ວ.",
|
||||||
|
@ -3271,7 +3252,26 @@
|
||||||
"unmute": "ຍົກເລີກປິດສຽງ",
|
"unmute": "ຍົກເລີກປິດສຽງ",
|
||||||
"username": "ຊື່ຜູ້ໃຊ້",
|
"username": "ຊື່ຜູ້ໃຊ້",
|
||||||
"verification_cancelled": "ຍົກເລີກການຢັ້ງຢືນແລ້ວ",
|
"verification_cancelled": "ຍົກເລີກການຢັ້ງຢືນແລ້ວ",
|
||||||
"video": "ວິດີໂອ"
|
"video": "ວິດີໂອ",
|
||||||
|
"attachment": "ຄັດຕິດ",
|
||||||
|
"light": "ແສງສະຫວ່າງ",
|
||||||
|
"dark": "ມືດ",
|
||||||
|
"warning": "ຄຳເຕືອນ",
|
||||||
|
"home": "ໜ້າຫຼັກ",
|
||||||
|
"favourites": "ລາຍການທີ່ມັກ",
|
||||||
|
"thread": "ກະທູ້",
|
||||||
|
"threads": "ກະທູ້",
|
||||||
|
"room": "ຫ້ອງ",
|
||||||
|
"theme": "ຫົວຂໍ້",
|
||||||
|
"name": "ຊື່",
|
||||||
|
"description": "ລາຍລະອຽດ",
|
||||||
|
"public": "ສາທາລະນະ",
|
||||||
|
"private": "ສ່ວນຕົວ",
|
||||||
|
"options": "ທາງເລືອກ",
|
||||||
|
"appearance": "ຮູບລັກສະນະ",
|
||||||
|
"homeserver": "Homeserver",
|
||||||
|
"beta": "ເບຕ້າ",
|
||||||
|
"labs": "ຫ້ອງທົດລອງ"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "ສືບຕໍ່",
|
"continue": "ສືບຕໍ່",
|
||||||
|
@ -3308,5 +3308,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "ເມນູຜູ້ໃຊ້"
|
"user_menu": "ເມນູຜູ້ໃຊ້"
|
||||||
}
|
},
|
||||||
}
|
"Home": "ໜ້າຫຼັກ"
|
||||||
|
}
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Waiting for response from server": "Laukiama atsakymo iš serverio",
|
"Waiting for response from server": "Laukiama atsakymo iš serverio",
|
||||||
"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?",
|
||||||
"Operation failed": "Operacija nepavyko",
|
"Operation failed": "Operacija nepavyko",
|
||||||
"Warning": "Įspėjimas",
|
|
||||||
"This Room": "Šis pokalbių kambarys",
|
"This Room": "Šis pokalbių kambarys",
|
||||||
"Resend": "Siųsti iš naujo",
|
"Resend": "Siųsti iš naujo",
|
||||||
"Messages in one-to-one chats": "Žinutės privačiuose pokalbiuose",
|
"Messages in one-to-one chats": "Žinutės privačiuose pokalbiuose",
|
||||||
|
@ -138,12 +137,10 @@
|
||||||
"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",
|
||||||
"Options": "Parinktys",
|
|
||||||
"Failed to mute user": "Nepavyko nutildyti vartotojo",
|
"Failed to mute user": "Nepavyko nutildyti vartotojo",
|
||||||
"Are you sure?": "Ar tikrai?",
|
"Are you sure?": "Ar tikrai?",
|
||||||
"Ignore": "Ignoruoti",
|
"Ignore": "Ignoruoti",
|
||||||
"Admin Tools": "Administratoriaus įrankiai",
|
"Admin Tools": "Administratoriaus įrankiai",
|
||||||
"Attachment": "Priedas",
|
|
||||||
"Voice call": "Balso skambutis",
|
"Voice call": "Balso skambutis",
|
||||||
"Video call": "Vaizdo skambutis",
|
"Video call": "Vaizdo skambutis",
|
||||||
"Send an encrypted reply…": "Siųsti šifruotą atsakymą…",
|
"Send an encrypted reply…": "Siųsti šifruotą atsakymą…",
|
||||||
|
@ -185,7 +182,6 @@
|
||||||
"Search failed": "Paieška nepavyko",
|
"Search failed": "Paieška nepavyko",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Gali būti, kad serveris neprieinamas, perkrautas arba pasibaigė paieškai skirtas laikas :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Gali būti, kad serveris neprieinamas, perkrautas arba pasibaigė paieškai skirtas laikas :(",
|
||||||
"No more results": "Daugiau nėra jokių rezultatų",
|
"No more results": "Daugiau nėra jokių rezultatų",
|
||||||
"Room": "Kambarys",
|
|
||||||
"Failed to reject invite": "Nepavyko atmesti pakvietimo",
|
"Failed to reject invite": "Nepavyko atmesti pakvietimo",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
"other": "Įkeliamas %(filename)s ir dar %(count)s failai",
|
"other": "Įkeliamas %(filename)s ir dar %(count)s failai",
|
||||||
|
@ -275,7 +271,6 @@
|
||||||
"Demote": "Pažeminti",
|
"Demote": "Pažeminti",
|
||||||
"Share Link to User": "Dalintis nuoroda į vartotoją",
|
"Share Link to User": "Dalintis nuoroda į vartotoją",
|
||||||
"The conversation continues here.": "Pokalbis tęsiasi čia.",
|
"The conversation continues here.": "Pokalbis tęsiasi čia.",
|
||||||
"Favourites": "Mėgstami",
|
|
||||||
"Banned users": "Užblokuoti vartotojai",
|
"Banned users": "Užblokuoti vartotojai",
|
||||||
"This room is not accessible by remote Matrix servers": "Šis kambarys nėra pasiekiamas nuotoliniams Matrix serveriams",
|
"This room is not accessible by remote Matrix servers": "Šis kambarys nėra pasiekiamas nuotoliniams Matrix serveriams",
|
||||||
"Who can read history?": "Kas gali skaityti istoriją?",
|
"Who can read history?": "Kas gali skaityti istoriją?",
|
||||||
|
@ -332,7 +327,6 @@
|
||||||
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s pakeitė kambario %(roomName)s pseudoportretą",
|
"%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s pakeitė kambario %(roomName)s pseudoportretą",
|
||||||
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s pašalino kambario pseudoportretą.",
|
"%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s pašalino kambario pseudoportretą.",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s pakeitė kambario pseudoportretą į <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s pakeitė kambario pseudoportretą į <img/>",
|
||||||
"Home": "Pradžia",
|
|
||||||
"%(severalUsers)sleft %(count)s times": {
|
"%(severalUsers)sleft %(count)s times": {
|
||||||
"other": "%(severalUsers)s išėjo %(count)s kartų(-us)",
|
"other": "%(severalUsers)s išėjo %(count)s kartų(-us)",
|
||||||
"one": "%(severalUsers)s išėjo"
|
"one": "%(severalUsers)s išėjo"
|
||||||
|
@ -403,7 +397,6 @@
|
||||||
"Unable to restore backup": "Nepavyko atkurti atsarginės kopijos",
|
"Unable to restore backup": "Nepavyko atkurti atsarginės kopijos",
|
||||||
"No backup found!": "Nerasta jokios atsarginės kopijos!",
|
"No backup found!": "Nerasta jokios atsarginės kopijos!",
|
||||||
"Failed to decrypt %(failedCount)s sessions!": "Nepavyko iššifruoti %(failedCount)s seansų!",
|
"Failed to decrypt %(failedCount)s sessions!": "Nepavyko iššifruoti %(failedCount)s seansų!",
|
||||||
"Description": "Aprašas",
|
|
||||||
"Signed Out": "Atsijungta",
|
"Signed Out": "Atsijungta",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Saugumo sumetimais, šis seansas buvo atjungtas. Prisijunkite dar kartą.",
|
"For security, this session has been signed out. Please sign in again.": "Saugumo sumetimais, šis seansas buvo atjungtas. Prisijunkite dar kartą.",
|
||||||
"Failed to perform homeserver discovery": "Nepavyko atlikti serverio radimo",
|
"Failed to perform homeserver discovery": "Nepavyko atlikti serverio radimo",
|
||||||
|
@ -666,7 +659,6 @@
|
||||||
"Server name": "Serverio pavadinimas",
|
"Server name": "Serverio pavadinimas",
|
||||||
"Please enter a name for the room": "Įveskite kambario pavadinimą",
|
"Please enter a name for the room": "Įveskite kambario pavadinimą",
|
||||||
"Create a private room": "Sukurti privatų kambarį",
|
"Create a private room": "Sukurti privatų kambarį",
|
||||||
"Name": "Pavadinimas",
|
|
||||||
"Topic (optional)": "Tema (nebūtina)",
|
"Topic (optional)": "Tema (nebūtina)",
|
||||||
"Hide advanced": "Paslėpti išplėstinius",
|
"Hide advanced": "Paslėpti išplėstinius",
|
||||||
"Show advanced": "Rodyti išplėstinius",
|
"Show advanced": "Rodyti išplėstinius",
|
||||||
|
@ -792,7 +784,6 @@
|
||||||
"Theme added!": "Tema pridėta!",
|
"Theme added!": "Tema pridėta!",
|
||||||
"Custom theme URL": "Pasirinktinės temos URL",
|
"Custom theme URL": "Pasirinktinės temos URL",
|
||||||
"Add theme": "Pridėti temą",
|
"Add theme": "Pridėti temą",
|
||||||
"Theme": "Tema",
|
|
||||||
"Phone numbers": "Telefono numeriai",
|
"Phone numbers": "Telefono numeriai",
|
||||||
"Language and region": "Kalba ir regionas",
|
"Language and region": "Kalba ir regionas",
|
||||||
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Sutikite su tapatybės serverio (%(serverName)s) paslaugų teikimo sąlygomis, kad leistumėte kitiems rasti jus pagal el. pašto adresą ar telefono numerį.",
|
"Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Sutikite su tapatybės serverio (%(serverName)s) paslaugų teikimo sąlygomis, kad leistumėte kitiems rasti jus pagal el. pašto adresą ar telefono numerį.",
|
||||||
|
@ -1011,7 +1002,6 @@
|
||||||
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, jūs šiuo metu naudojate <server></server> tapatybės serverį. Jį pakeisti galite žemiau.",
|
"You are currently using <server></server> to discover and be discoverable by existing contacts you know. You can change your identity server below.": "Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, jūs šiuo metu naudojate <server></server> tapatybės serverį. Jį pakeisti galite žemiau.",
|
||||||
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Šiuo metu jūs nenaudojate tapatybės serverio. Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, pridėkite jį žemiau.",
|
"You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Šiuo metu jūs nenaudojate tapatybės serverio. Tam, kad galėtumėte rasti ir tam, kad būtumėte randamas esamų, jums žinomų kontaktų, pridėkite jį žemiau.",
|
||||||
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Atsijungimas nuo tapatybės serverio reikš, kad jūs nebebūsite randamas kitų vartotojų ir jūs nebegalėsite pakviesti kitų, naudodami jų el. paštą arba telefoną.",
|
"Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Atsijungimas nuo tapatybės serverio reikš, kad jūs nebebūsite randamas kitų vartotojų ir jūs nebegalėsite pakviesti kitų, naudodami jų el. paštą arba telefoną.",
|
||||||
"Appearance": "Išvaizda",
|
|
||||||
"Deactivate account": "Deaktyvuoti paskyrą",
|
"Deactivate account": "Deaktyvuoti paskyrą",
|
||||||
"Timeline": "Laiko juosta",
|
"Timeline": "Laiko juosta",
|
||||||
"Try scrolling up in the timeline to see if there are any earlier ones.": "Pabandykite slinkti aukštyn laiko juostoje, kad sužinotumėte, ar yra ankstesnių.",
|
"Try scrolling up in the timeline to see if there are any earlier ones.": "Pabandykite slinkti aukštyn laiko juostoje, kad sužinotumėte, ar yra ankstesnių.",
|
||||||
|
@ -1241,8 +1231,6 @@
|
||||||
"a few seconds ago": "prieš kelias sekundes",
|
"a few seconds ago": "prieš kelias sekundes",
|
||||||
"Not Trusted": "Nepatikimas",
|
"Not Trusted": "Nepatikimas",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) prisijungė prie naujo seanso jo nepatvirtinę:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) prisijungė prie naujo seanso jo nepatvirtinę:",
|
||||||
"Dark": "Tamsi",
|
|
||||||
"Light": "Šviesi",
|
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s atnaujino draudimo taisyklę, kuri sutapo su %(oldGlob)s į sutampančią su %(newGlob)s dėl %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s atnaujino draudimo taisyklę, kuri sutapo su %(oldGlob)s į sutampančią su %(newGlob)s dėl %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pakeitė taisyklę, kuri draudė serverius, sutampančius su %(oldGlob)s į sutampančius su %(newGlob)s dėl %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pakeitė taisyklę, kuri draudė serverius, sutampančius su %(oldGlob)s į sutampančius su %(newGlob)s dėl %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pakeitė taisyklę, kuri draudė kambarius, sutampančius su %(oldGlob)s į sutampančius su %(newGlob)s dėl %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pakeitė taisyklę, kuri draudė kambarius, sutampančius su %(oldGlob)s į sutampančius su %(newGlob)s dėl %(reason)s",
|
||||||
|
@ -1294,7 +1282,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "Kažkas ne taip. Bandykite dar kartą arba peržiūrėkite konsolę, kad rastumėte užuominų.",
|
"Something went wrong. Please try again or view your console for hints.": "Kažkas ne taip. Bandykite dar kartą arba peržiūrėkite konsolę, kad rastumėte užuominų.",
|
||||||
"Error adding ignored user/server": "Klaida pridedant ignoruojamą vartotoją/serverį",
|
"Error adding ignored user/server": "Klaida pridedant ignoruojamą vartotoją/serverį",
|
||||||
"Ignored/Blocked": "Ignoruojami/Blokuojami",
|
"Ignored/Blocked": "Ignoruojami/Blokuojami",
|
||||||
"Labs": "Laboratorijos",
|
|
||||||
"Legal": "Teisiniai",
|
"Legal": "Teisiniai",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Išvaizdos nustatymai įtakoja tik šį %(brand)s seansą.",
|
"Appearance Settings only affect this %(brand)s session.": "Išvaizdos nustatymai įtakoja tik šį %(brand)s seansą.",
|
||||||
"Customise your appearance": "Tinkinti savo išvaizdą",
|
"Customise your appearance": "Tinkinti savo išvaizdą",
|
||||||
|
@ -1448,7 +1435,6 @@
|
||||||
"Already have an account? <a>Sign in here</a>": "Jau turite paskyrą? <a>Prisijunkite čia</a>",
|
"Already have an account? <a>Sign in here</a>": "Jau turite paskyrą? <a>Prisijunkite čia</a>",
|
||||||
"Host account on": "Kurti paskyrą serveryje",
|
"Host account on": "Kurti paskyrą serveryje",
|
||||||
"Forgotten your password?": "Pamiršote savo slaptažodį?",
|
"Forgotten your password?": "Pamiršote savo slaptažodį?",
|
||||||
"Homeserver": "Serveris",
|
|
||||||
"New? <a>Create account</a>": "Naujas vartotojas? <a>Sukurkite paskyrą</a>",
|
"New? <a>Create account</a>": "Naujas vartotojas? <a>Sukurkite paskyrą</a>",
|
||||||
"Preparing to download logs": "Ruošiamasi parsiųsti žurnalus",
|
"Preparing to download logs": "Ruošiamasi parsiųsti žurnalus",
|
||||||
"Server Options": "Serverio Parinktys",
|
"Server Options": "Serverio Parinktys",
|
||||||
|
@ -1814,8 +1800,6 @@
|
||||||
"Jump to first invite.": "Peršokti iki pirmo pakvietimo.",
|
"Jump to first invite.": "Peršokti iki pirmo pakvietimo.",
|
||||||
"Enable guest access": "Įjungti svečių prieigą",
|
"Enable guest access": "Įjungti svečių prieigą",
|
||||||
"Invite people": "Pakviesti žmonių",
|
"Invite people": "Pakviesti žmonių",
|
||||||
"Private": "Privatus",
|
|
||||||
"Public": "Viešas",
|
|
||||||
"Address": "Adresas",
|
"Address": "Adresas",
|
||||||
"Search %(spaceName)s": "Ieškoti %(spaceName)s",
|
"Search %(spaceName)s": "Ieškoti %(spaceName)s",
|
||||||
"Delete avatar": "Ištrinti avatarą",
|
"Delete avatar": "Ištrinti avatarą",
|
||||||
|
@ -2142,7 +2126,6 @@
|
||||||
"You ended the call": "Baigėte skambutį",
|
"You ended the call": "Baigėte skambutį",
|
||||||
"Room members": "Kambario nariai",
|
"Room members": "Kambario nariai",
|
||||||
"Back to chat": "Grįžti į pokalbį",
|
"Back to chat": "Grįžti į pokalbį",
|
||||||
"Threads": "Temos",
|
|
||||||
"%(senderName)s ended the call": "%(senderName)s baigė skambutį",
|
"%(senderName)s ended the call": "%(senderName)s baigė skambutį",
|
||||||
"Other rooms": "Kiti kambariai",
|
"Other rooms": "Kiti kambariai",
|
||||||
"All rooms": "Visi kambariai",
|
"All rooms": "Visi kambariai",
|
||||||
|
@ -2489,7 +2472,24 @@
|
||||||
"unmute": "Atšaukti nutildymą",
|
"unmute": "Atšaukti nutildymą",
|
||||||
"username": "Vartotojo vardas",
|
"username": "Vartotojo vardas",
|
||||||
"verification_cancelled": "Patvirtinimas atšauktas",
|
"verification_cancelled": "Patvirtinimas atšauktas",
|
||||||
"video": "Vaizdo įrašas"
|
"video": "Vaizdo įrašas",
|
||||||
|
"attachment": "Priedas",
|
||||||
|
"light": "Šviesi",
|
||||||
|
"dark": "Tamsi",
|
||||||
|
"warning": "Įspėjimas",
|
||||||
|
"home": "Pradžia",
|
||||||
|
"favourites": "Mėgstami",
|
||||||
|
"threads": "Temos",
|
||||||
|
"room": "Kambarys",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Pavadinimas",
|
||||||
|
"description": "Aprašas",
|
||||||
|
"public": "Viešas",
|
||||||
|
"private": "Privatus",
|
||||||
|
"options": "Parinktys",
|
||||||
|
"appearance": "Išvaizda",
|
||||||
|
"homeserver": "Serveris",
|
||||||
|
"labs": "Laboratorijos"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Tęsti",
|
"continue": "Tęsti",
|
||||||
|
@ -2521,5 +2521,6 @@
|
||||||
"start_chat": "Pradėti pokalbį",
|
"start_chat": "Pradėti pokalbį",
|
||||||
"view_source": "Peržiūrėti šaltinį",
|
"view_source": "Peržiūrėti šaltinį",
|
||||||
"yes": "Taip"
|
"yes": "Taip"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Pradžia"
|
||||||
|
}
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
"Are you sure?": "Vai tiešām to vēlaties?",
|
"Are you sure?": "Vai tiešām to vēlaties?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Vai tiešām vēlaties pamest istabu: '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Vai tiešām vēlaties pamest istabu: '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "Vai tiešām vēlaties noraidīt šo uzaicinājumu?",
|
"Are you sure you want to reject the invitation?": "Vai tiešām vēlaties noraidīt šo uzaicinājumu?",
|
||||||
"Attachment": "Pielikums",
|
|
||||||
"Banned users": "Lietotāji, kuriem liegta pieeja",
|
"Banned users": "Lietotāji, kuriem liegta pieeja",
|
||||||
"Bans user with given id": "Liedz pieeju lietotājam ar norādīto id",
|
"Bans user with given id": "Liedz pieeju lietotājam ar norādīto id",
|
||||||
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "Neizdodas savienoties ar bāzes serveri. Pārbaudi tīkla savienojumu un pārliecinies, ka <a> bāzes servera SSL sertifikāts</a> ir uzticams, kā arī pārlūkā instalētie paplašinājumi nebloķē pieprasījumus.",
|
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "Neizdodas savienoties ar bāzes serveri. Pārbaudi tīkla savienojumu un pārliecinies, ka <a> bāzes servera SSL sertifikāts</a> ir uzticams, kā arī pārlūkā instalētie paplašinājumi nebloķē pieprasījumus.",
|
||||||
|
@ -68,14 +67,12 @@
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Neizdevās apstiprināt e-pasta adresi: jāpārliecinās, ka ir atvērta e-pasta ziņojumā esošā saite",
|
"Failed to verify email address: make sure you clicked the link in the email": "Neizdevās apstiprināt e-pasta adresi: jāpārliecinās, ka ir atvērta e-pasta ziņojumā esošā saite",
|
||||||
"Failure to create room": "Neizdevās izveidot istabu",
|
"Failure to create room": "Neizdevās izveidot istabu",
|
||||||
"Favourite": "Izlase",
|
"Favourite": "Izlase",
|
||||||
"Favourites": "Izlase",
|
|
||||||
"Filter room members": "Atfiltrēt istabas dalībniekus",
|
"Filter room members": "Atfiltrēt istabas dalībniekus",
|
||||||
"Forget room": "Aizmirst istabu",
|
"Forget room": "Aizmirst istabu",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Drošības nolūkos šī sesija ir pārtraukta. Lūdzu, pieraksties par jaunu.",
|
"For security, this session has been signed out. Please sign in again.": "Drošības nolūkos šī sesija ir pārtraukta. Lūdzu, pieraksties par jaunu.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s no %(fromPowerLevel)s uz %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s no %(fromPowerLevel)s uz %(toPowerLevel)s",
|
||||||
"Hangup": "Beigt zvanu",
|
"Hangup": "Beigt zvanu",
|
||||||
"Historical": "Bijušie",
|
"Historical": "Bijušie",
|
||||||
"Home": "Mājup",
|
|
||||||
"Import": "Importēt",
|
"Import": "Importēt",
|
||||||
"Import E2E room keys": "Importēt E2E istabas atslēgas",
|
"Import E2E room keys": "Importēt E2E istabas atslēgas",
|
||||||
"Incorrect username and/or password.": "Nepareizs lietotājvārds un/vai parole.",
|
"Incorrect username and/or password.": "Nepareizs lietotājvārds un/vai parole.",
|
||||||
|
@ -87,7 +84,6 @@
|
||||||
"Sign in with": "Pierakstīties ar",
|
"Sign in with": "Pierakstīties ar",
|
||||||
"Join Room": "Pievienoties istabai",
|
"Join Room": "Pievienoties istabai",
|
||||||
"Jump to first unread message.": "Pāriet uz pirmo neizlasīto ziņu.",
|
"Jump to first unread message.": "Pāriet uz pirmo neizlasīto ziņu.",
|
||||||
"Labs": "Izmēģinājumu lauciņš",
|
|
||||||
"Logout": "Izrakstīties",
|
"Logout": "Izrakstīties",
|
||||||
"Low priority": "Zema prioritāte",
|
"Low priority": "Zema prioritāte",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem no brīža, kad tie tika uzaicināti.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem no brīža, kad tie tika uzaicināti.",
|
||||||
|
@ -98,7 +94,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",
|
||||||
"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.",
|
||||||
"not specified": "nav noteikts",
|
"not specified": "nav noteikts",
|
||||||
|
@ -219,12 +214,10 @@
|
||||||
"Dec": "Dec.",
|
"Dec": "Dec.",
|
||||||
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s nomainīja istabas avataru uz <img/>",
|
"%(senderDisplayName)s changed the room avatar to <img/>": "%(senderDisplayName)s nomainīja istabas avataru uz <img/>",
|
||||||
"This server does not support authentication with a phone number.": "Šis serveris neatbalsta autentifikāciju pēc telefona numura.",
|
"This server does not support authentication with a phone number.": "Šis serveris neatbalsta autentifikāciju pēc telefona numura.",
|
||||||
"Room": "Istaba",
|
|
||||||
"Connectivity to the server has been lost.": "Savienojums ar serveri pārtrūka.",
|
"Connectivity to the server has been lost.": "Savienojums ar serveri pārtrūka.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Sūtītās ziņas tiks saglabātas līdz brīdim, kad savienojums tiks atjaunots.",
|
"Sent messages will be stored until your connection has returned.": "Sūtītās ziņas tiks saglabātas līdz brīdim, kad savienojums tiks atjaunots.",
|
||||||
"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",
|
||||||
"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",
|
||||||
"Export room keys": "Eksportēt istabas atslēgas",
|
"Export room keys": "Eksportēt istabas atslēgas",
|
||||||
|
@ -274,7 +267,6 @@
|
||||||
"Automatically replace plain text Emoji": "Automātiski aizstāt vienkāršā teksta emocijzīmes",
|
"Automatically replace plain text Emoji": "Automātiski aizstāt vienkāršā teksta emocijzīmes",
|
||||||
"%(widgetName)s widget added by %(senderName)s": "%(senderName)s pievienoja %(widgetName)s vidžetu",
|
"%(widgetName)s widget added by %(senderName)s": "%(senderName)s pievienoja %(widgetName)s vidžetu",
|
||||||
"%(widgetName)s widget removed by %(senderName)s": "%(senderName)s dzēsa vidžetu %(widgetName)s",
|
"%(widgetName)s widget removed by %(senderName)s": "%(senderName)s dzēsa vidžetu %(widgetName)s",
|
||||||
"Warning": "Brīdinājums",
|
|
||||||
"Send": "Sūtīt",
|
"Send": "Sūtīt",
|
||||||
"Unnamed room": "Nenosaukta istaba",
|
"Unnamed room": "Nenosaukta istaba",
|
||||||
"Call Failed": "Zvans neizdevās",
|
"Call Failed": "Zvans neizdevās",
|
||||||
|
@ -396,7 +388,6 @@
|
||||||
"other": "%(severalUsers)sizmainīja savu lietotājvārdu %(count)s reizes",
|
"other": "%(severalUsers)sizmainīja savu lietotājvārdu %(count)s reizes",
|
||||||
"one": "%(severalUsers)sizmainīja savu lietotājvārdu"
|
"one": "%(severalUsers)sizmainīja savu lietotājvārdu"
|
||||||
},
|
},
|
||||||
"Description": "Apraksts",
|
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Šī istaba nav publiska un jūs nevarēsiet atkārtoti pievienoties bez uzaicinājuma.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Šī istaba nav publiska un jūs nevarēsiet atkārtoti pievienoties bez uzaicinājuma.",
|
||||||
"Old cryptography data detected": "Tika uzieti novecojuši šifrēšanas dati",
|
"Old cryptography data detected": "Tika uzieti novecojuši šifrēšanas dati",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Uzieti dati no vecākas %(brand)s versijas. Tas novedīs pie \"end-to-end\" šifrēšanas problēmām vecākajā versijā. Šajā versijā nevar tikt atšifrēti ziņojumi, kuri radīti izmantojot vecākajā versijā \"end-to-end\" šifrētas ziņas. Tas var arī novest pie ziņapmaiņas, kas veikta ar šo versiju, neizdošanās. Ja rodas ķibeles, izraksties un par jaunu pieraksties sistēmā. Lai saglabātu ziņu vēsturi, eksportē un tad importē savas šifrēšanas atslēgas.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Uzieti dati no vecākas %(brand)s versijas. Tas novedīs pie \"end-to-end\" šifrēšanas problēmām vecākajā versijā. Šajā versijā nevar tikt atšifrēti ziņojumi, kuri radīti izmantojot vecākajā versijā \"end-to-end\" šifrētas ziņas. Tas var arī novest pie ziņapmaiņas, kas veikta ar šo versiju, neizdošanās. Ja rodas ķibeles, izraksties un par jaunu pieraksties sistēmā. Lai saglabātu ziņu vēsturi, eksportē un tad importē savas šifrēšanas atslēgas.",
|
||||||
|
@ -536,7 +527,6 @@
|
||||||
"Show rooms with unread messages first": "Rādīt istabas ar nelasītām ziņām augšpusē",
|
"Show rooms with unread messages first": "Rādīt istabas ar nelasītām ziņām augšpusē",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Izskata iestatījumi attiecas vienīgi uz %(brand)s sesiju.",
|
"Appearance Settings only affect this %(brand)s session.": "Izskata iestatījumi attiecas vienīgi uz %(brand)s sesiju.",
|
||||||
"Customise your appearance": "Pielāgot izskatu",
|
"Customise your appearance": "Pielāgot izskatu",
|
||||||
"Appearance": "Izskats",
|
|
||||||
"Activity": "Aktivitātes",
|
"Activity": "Aktivitātes",
|
||||||
"Sort by": "Kārtot pēc",
|
"Sort by": "Kārtot pēc",
|
||||||
"List options": "Saraksta opcijas",
|
"List options": "Saraksta opcijas",
|
||||||
|
@ -1042,7 +1032,6 @@
|
||||||
"Verifying this device will mark it as trusted, and users who have verified with you will trust this device.": "Verificējot šo ierīci, tā tiks atzīmēta kā uzticama, un ierīci verificējušie lietotāji tai uzticēsies.",
|
"Verifying this device will mark it as trusted, and users who have verified with you will trust this device.": "Verificējot šo ierīci, tā tiks atzīmēta kā uzticama, un ierīci verificējušie lietotāji tai uzticēsies.",
|
||||||
"Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Verificējot šo lietotāju, tā sesija tiks atzīmēta kā uzticama, kā arī jūsu sesija viņiem tiks atzīmēta kā uzticama.",
|
"Verifying this user will mark their session as trusted, and also mark your session as trusted to them.": "Verificējot šo lietotāju, tā sesija tiks atzīmēta kā uzticama, kā arī jūsu sesija viņiem tiks atzīmēta kā uzticama.",
|
||||||
"Removing…": "Dzēš…",
|
"Removing…": "Dzēš…",
|
||||||
"Homeserver": "Bāzes serveris",
|
|
||||||
"Use the <a>Desktop app</a> to see all encrypted files": "Lietojiet <a>Desktop lietotni</a>, lai apskatītu visus šifrētos failus",
|
"Use the <a>Desktop app</a> to see all encrypted files": "Lietojiet <a>Desktop lietotni</a>, lai apskatītu visus šifrētos failus",
|
||||||
"Room ID": "Istabas ID",
|
"Room ID": "Istabas ID",
|
||||||
"edited": "rediģēts",
|
"edited": "rediģēts",
|
||||||
|
@ -1162,8 +1151,6 @@
|
||||||
"Send stickers into this room": "Iesūtīt stikerus šajā istabā",
|
"Send stickers into this room": "Iesūtīt stikerus šajā istabā",
|
||||||
"Remain on your screen while running": "Darbības laikā paliek uz ekrāna",
|
"Remain on your screen while running": "Darbības laikā paliek uz ekrāna",
|
||||||
"Remain on your screen when viewing another room, when running": "Darbības laikā paliek uz ekrāna, kad tiek skatīta cita istaba",
|
"Remain on your screen when viewing another room, when running": "Darbības laikā paliek uz ekrāna, kad tiek skatīta cita istaba",
|
||||||
"Dark": "Tumša",
|
|
||||||
"Light": "Gaiša",
|
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pārjaunoja lieguma noteikumu šablonu %(oldGlob)s uz šablonu %(newGlob)s dēļ %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s pārjaunoja lieguma noteikumu šablonu %(oldGlob)s uz šablonu %(newGlob)s dēļ %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kas liedza pieeju serveriem, kas atbilst pazīmei %(oldGlob)s, ar atbilstošu pazīmei %(newGlob)s dēļ %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s aizstāja noteikumu, kas liedza pieeju serveriem, kas atbilst pazīmei %(oldGlob)s, ar atbilstošu pazīmei %(newGlob)s dēļ %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s izmainīja noteikumu, kurš liedz pieeju istabām, kas atbilst %(oldGlob)s pazīmei pret %(newGlob)s dēļ %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s izmainīja noteikumu, kurš liedz pieeju istabām, kas atbilst %(oldGlob)s pazīmei pret %(newGlob)s dēļ %(reason)s",
|
||||||
|
@ -1554,7 +1541,6 @@
|
||||||
"Code blocks": "Koda bloki",
|
"Code blocks": "Koda bloki",
|
||||||
"Displaying time": "Laika attēlošana",
|
"Displaying time": "Laika attēlošana",
|
||||||
"Keyboard shortcuts": "Īsinājumtaustiņi",
|
"Keyboard shortcuts": "Īsinājumtaustiņi",
|
||||||
"Theme": "Tēma",
|
|
||||||
"Custom theme URL": "Pielāgotas tēmas URL",
|
"Custom theme URL": "Pielāgotas tēmas URL",
|
||||||
"Theme added!": "Tēma pievienota!",
|
"Theme added!": "Tēma pievienota!",
|
||||||
"Enter a new identity server": "Ievadiet jaunu identitāšu serveri",
|
"Enter a new identity server": "Ievadiet jaunu identitāšu serveri",
|
||||||
|
@ -1570,7 +1556,6 @@
|
||||||
"Enable guest access": "Iespējot piekļuvi viesiem",
|
"Enable guest access": "Iespējot piekļuvi viesiem",
|
||||||
"Invite people": "Uzaicināt cilvēkus",
|
"Invite people": "Uzaicināt cilvēkus",
|
||||||
"Show all rooms": "Rādīt visas istabas",
|
"Show all rooms": "Rādīt visas istabas",
|
||||||
"Public": "Publiska",
|
|
||||||
"Corn": "Kukurūza",
|
"Corn": "Kukurūza",
|
||||||
"Show previews/thumbnails for images": "Rādīt attēlu priekšskatījumus/sīktēlus",
|
"Show previews/thumbnails for images": "Rādīt attēlu priekšskatījumus/sīktēlus",
|
||||||
"Show hidden events in timeline": "Rādīt slēptos notikumus laika skalā",
|
"Show hidden events in timeline": "Rādīt slēptos notikumus laika skalā",
|
||||||
|
@ -1802,7 +1787,22 @@
|
||||||
"suggestions": "Ieteikumi",
|
"suggestions": "Ieteikumi",
|
||||||
"unmute": "Pārtraukt apklusināšanu",
|
"unmute": "Pārtraukt apklusināšanu",
|
||||||
"username": "Lietotājvārds",
|
"username": "Lietotājvārds",
|
||||||
"verification_cancelled": "Verificēšana atcelta"
|
"verification_cancelled": "Verificēšana atcelta",
|
||||||
|
"attachment": "Pielikums",
|
||||||
|
"light": "Gaiša",
|
||||||
|
"dark": "Tumša",
|
||||||
|
"warning": "Brīdinājums",
|
||||||
|
"home": "Mājup",
|
||||||
|
"favourites": "Izlase",
|
||||||
|
"room": "Istaba",
|
||||||
|
"theme": "Tēma",
|
||||||
|
"name": "Nosaukums",
|
||||||
|
"description": "Apraksts",
|
||||||
|
"public": "Publiska",
|
||||||
|
"options": "Opcijas",
|
||||||
|
"appearance": "Izskats",
|
||||||
|
"homeserver": "Bāzes serveris",
|
||||||
|
"labs": "Izmēģinājumu lauciņš"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Turpināt",
|
"continue": "Turpināt",
|
||||||
|
@ -1832,5 +1832,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Lietotāja izvēlne"
|
"user_menu": "Lietotāja izvēlne"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Mājup"
|
||||||
|
}
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"On": "ഓണ്",
|
"On": "ഓണ്",
|
||||||
"Changelog": "മാറ്റങ്ങളുടെ നാള്വഴി",
|
"Changelog": "മാറ്റങ്ങളുടെ നാള്വഴി",
|
||||||
"Waiting for response from server": "സെര്വറില് നിന്നുള്ള പ്രതികരണത്തിന് കാക്കുന്നു",
|
"Waiting for response from server": "സെര്വറില് നിന്നുള്ള പ്രതികരണത്തിന് കാക്കുന്നു",
|
||||||
"Warning": "മുന്നറിയിപ്പ്",
|
|
||||||
"This Room": "ഈ മുറി",
|
"This Room": "ഈ മുറി",
|
||||||
"Noisy": "ഉച്ചത്തില്",
|
"Noisy": "ഉച്ചത്തില്",
|
||||||
"Messages containing my display name": "എന്റെ പേര് അടങ്ങിയിരിക്കുന്ന സന്ദേശങ്ങള്ക്ക്",
|
"Messages containing my display name": "എന്റെ പേര് അടങ്ങിയിരിക്കുന്ന സന്ദേശങ്ങള്ക്ക്",
|
||||||
|
@ -67,7 +66,8 @@
|
||||||
"common": {
|
"common": {
|
||||||
"error": "എറര്",
|
"error": "എറര്",
|
||||||
"mute": "നിശ്ശബ്ദം",
|
"mute": "നിശ്ശബ്ദം",
|
||||||
"settings": "സജ്ജീകരണങ്ങള്"
|
"settings": "സജ്ജീകരണങ്ങള്",
|
||||||
|
"warning": "മുന്നറിയിപ്പ്"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "മുന്നോട്ട്",
|
"continue": "മുന്നോട്ട്",
|
||||||
|
@ -78,4 +78,4 @@
|
||||||
"start_chat": "ചാറ്റ് തുടങ്ങുക",
|
"start_chat": "ചാറ്റ് തുടങ്ങുക",
|
||||||
"view_source": "സോഴ്സ് കാണുക"
|
"view_source": "സോഴ്സ് കാണുക"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -205,8 +205,6 @@
|
||||||
"Phone numbers": "Telefonnumre",
|
"Phone numbers": "Telefonnumre",
|
||||||
"Account": "Konto",
|
"Account": "Konto",
|
||||||
"Language and region": "Språk og område",
|
"Language and region": "Språk og område",
|
||||||
"Theme": "Tema",
|
|
||||||
"Warning": "Advarsel",
|
|
||||||
"General": "Generelt",
|
"General": "Generelt",
|
||||||
"Legal": "Juridisk",
|
"Legal": "Juridisk",
|
||||||
"Credits": "Takk til",
|
"Credits": "Takk til",
|
||||||
|
@ -254,11 +252,9 @@
|
||||||
"Direct Messages": "Direktemeldinger",
|
"Direct Messages": "Direktemeldinger",
|
||||||
"Rooms": "Rom",
|
"Rooms": "Rom",
|
||||||
"Sign Up": "Registrer deg",
|
"Sign Up": "Registrer deg",
|
||||||
"Options": "Innstillinger",
|
|
||||||
"All Rooms": "Alle rom",
|
"All Rooms": "Alle rom",
|
||||||
"Search…": "Søk …",
|
"Search…": "Søk …",
|
||||||
"Got it": "Jeg forstår",
|
"Got it": "Jeg forstår",
|
||||||
"Attachment": "Vedlegg",
|
|
||||||
"Download %(text)s": "Last ned %(text)s",
|
"Download %(text)s": "Last ned %(text)s",
|
||||||
"Show all": "Vis alt",
|
"Show all": "Vis alt",
|
||||||
"Copied!": "Kopiert!",
|
"Copied!": "Kopiert!",
|
||||||
|
@ -285,7 +281,6 @@
|
||||||
"Unavailable": "Ikke tilgjengelig",
|
"Unavailable": "Ikke tilgjengelig",
|
||||||
"Changelog": "Endringslogg",
|
"Changelog": "Endringslogg",
|
||||||
"Confirm Removal": "Bekreft fjerning",
|
"Confirm Removal": "Bekreft fjerning",
|
||||||
"Name": "Navn",
|
|
||||||
"Sign out": "Logg ut",
|
"Sign out": "Logg ut",
|
||||||
"Unknown error": "Ukjent feil",
|
"Unknown error": "Ukjent feil",
|
||||||
"Incorrect password": "Feil passord",
|
"Incorrect password": "Feil passord",
|
||||||
|
@ -304,7 +299,6 @@
|
||||||
"Summary": "Oppsummering",
|
"Summary": "Oppsummering",
|
||||||
"Document": "Dokument",
|
"Document": "Dokument",
|
||||||
"Cancel All": "Avbryt alt",
|
"Cancel All": "Avbryt alt",
|
||||||
"Home": "Hjem",
|
|
||||||
"Sign in": "Logg inn",
|
"Sign in": "Logg inn",
|
||||||
"Code": "Kode",
|
"Code": "Kode",
|
||||||
"Submit": "Send",
|
"Submit": "Send",
|
||||||
|
@ -313,11 +307,9 @@
|
||||||
"Enter password": "Skriv inn passord",
|
"Enter password": "Skriv inn passord",
|
||||||
"Enter username": "Skriv inn brukernavn",
|
"Enter username": "Skriv inn brukernavn",
|
||||||
"Confirm": "Bekreft",
|
"Confirm": "Bekreft",
|
||||||
"Description": "Beskrivelse",
|
|
||||||
"Logout": "Logg ut",
|
"Logout": "Logg ut",
|
||||||
"View": "Vis",
|
"View": "Vis",
|
||||||
"Explore rooms": "Se alle rom",
|
"Explore rooms": "Se alle rom",
|
||||||
"Room": "Rom",
|
|
||||||
"Guest": "Gjest",
|
"Guest": "Gjest",
|
||||||
"Go Back": "Gå tilbake",
|
"Go Back": "Gå tilbake",
|
||||||
"Your password has been reset.": "Passordet ditt har blitt tilbakestilt.",
|
"Your password has been reset.": "Passordet ditt har blitt tilbakestilt.",
|
||||||
|
@ -881,8 +873,6 @@
|
||||||
"Jump to read receipt": "Hopp til lesekvitteringen",
|
"Jump to read receipt": "Hopp til lesekvitteringen",
|
||||||
"Mention": "Nevn",
|
"Mention": "Nevn",
|
||||||
"Dismiss read marker and jump to bottom": "Avføy lesekvitteringen og hopp ned til bunnen",
|
"Dismiss read marker and jump to bottom": "Avføy lesekvitteringen og hopp ned til bunnen",
|
||||||
"Light": "Lys",
|
|
||||||
"Dark": "Mørk",
|
|
||||||
"Verify your other session using one of the options below.": "Verifiser den andre økten din med en av metodene nedenfor.",
|
"Verify your other session using one of the options below.": "Verifiser den andre økten din med en av metodene nedenfor.",
|
||||||
"Use a few words, avoid common phrases": "Bruk noen få ord, unngå vanlig fraser",
|
"Use a few words, avoid common phrases": "Bruk noen få ord, unngå vanlig fraser",
|
||||||
"Ok": "OK",
|
"Ok": "OK",
|
||||||
|
@ -893,12 +883,10 @@
|
||||||
"wait and try again later": "vent og prøv igjen senere",
|
"wait and try again later": "vent og prøv igjen senere",
|
||||||
"Size must be a number": "Størrelsen må være et nummer",
|
"Size must be a number": "Størrelsen må være et nummer",
|
||||||
"Customise your appearance": "Tilpass utseendet du bruker",
|
"Customise your appearance": "Tilpass utseendet du bruker",
|
||||||
"Labs": "Laboratoriet",
|
|
||||||
"eg: @bot:* or example.org": "f.eks.: @bot:* eller example.org",
|
"eg: @bot:* or example.org": "f.eks.: @bot:* eller example.org",
|
||||||
"To link to this room, please add an address.": "For å lenke til dette rommet, vennligst legg til en adresse.",
|
"To link to this room, please add an address.": "For å lenke til dette rommet, vennligst legg til en adresse.",
|
||||||
"Remove %(phone)s?": "Vil du fjerne %(phone)s?",
|
"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",
|
|
||||||
"Sort by": "Sorter etter",
|
"Sort by": "Sorter etter",
|
||||||
"Activity": "Aktivitet",
|
"Activity": "Aktivitet",
|
||||||
"A-Z": "A-Å",
|
"A-Z": "A-Å",
|
||||||
|
@ -939,7 +927,6 @@
|
||||||
"other": "Last opp %(count)s andre filer",
|
"other": "Last opp %(count)s andre filer",
|
||||||
"one": "Last opp %(count)s annen fil"
|
"one": "Last opp %(count)s annen fil"
|
||||||
},
|
},
|
||||||
"Appearance": "Utseende",
|
|
||||||
"Keys restored": "Nøklene ble gjenopprettet",
|
"Keys restored": "Nøklene ble gjenopprettet",
|
||||||
"Reject invitation": "Avslå invitasjonen",
|
"Reject invitation": "Avslå invitasjonen",
|
||||||
"Start authentication": "Begynn autentisering",
|
"Start authentication": "Begynn autentisering",
|
||||||
|
@ -1076,7 +1063,6 @@
|
||||||
"Show stickers button": "Vis klistremerkeknappen",
|
"Show stickers button": "Vis klistremerkeknappen",
|
||||||
"Recently visited rooms": "Nylig besøkte rom",
|
"Recently visited rooms": "Nylig besøkte rom",
|
||||||
"Edit devices": "Rediger enheter",
|
"Edit devices": "Rediger enheter",
|
||||||
"Homeserver": "Hjemmetjener",
|
|
||||||
"Add existing room": "Legg til et eksisterende rom",
|
"Add existing room": "Legg til et eksisterende rom",
|
||||||
"Invite to this space": "Inviter til dette området",
|
"Invite to this space": "Inviter til dette området",
|
||||||
"Send message": "Send melding",
|
"Send message": "Send melding",
|
||||||
|
@ -1111,8 +1097,6 @@
|
||||||
"Invite to %(spaceName)s": "Inviter til %(spaceName)s",
|
"Invite to %(spaceName)s": "Inviter til %(spaceName)s",
|
||||||
"Random": "Tilfeldig",
|
"Random": "Tilfeldig",
|
||||||
"unknown person": "ukjent person",
|
"unknown person": "ukjent person",
|
||||||
"Public": "Offentlig",
|
|
||||||
"Private": "Privat",
|
|
||||||
"Click to copy": "Klikk for å kopiere",
|
"Click to copy": "Klikk for å kopiere",
|
||||||
"Share invite link": "Del invitasjonslenke",
|
"Share invite link": "Del invitasjonslenke",
|
||||||
"Leave space": "Forlat området",
|
"Leave space": "Forlat området",
|
||||||
|
@ -1463,7 +1447,6 @@
|
||||||
"Retry all": "Prøv alle igjen",
|
"Retry all": "Prøv alle igjen",
|
||||||
"Play": "Spill av",
|
"Play": "Spill av",
|
||||||
"Pause": "Pause",
|
"Pause": "Pause",
|
||||||
"Beta": "Beta",
|
|
||||||
"Report": "Rapporter",
|
"Report": "Rapporter",
|
||||||
"Sent": "Sendt",
|
"Sent": "Sendt",
|
||||||
"Sending": "Sender",
|
"Sending": "Sender",
|
||||||
|
@ -1473,10 +1456,8 @@
|
||||||
"Zoom in": "Forstørr",
|
"Zoom in": "Forstørr",
|
||||||
"Zoom out": "Forminske",
|
"Zoom out": "Forminske",
|
||||||
"Add reaction": "Legg til reaksjon",
|
"Add reaction": "Legg til reaksjon",
|
||||||
"Thread": "Tråd",
|
|
||||||
"Downloading": "Laster ned",
|
"Downloading": "Laster ned",
|
||||||
"Connection failed": "Tilkobling mislyktes",
|
"Connection failed": "Tilkobling mislyktes",
|
||||||
"Threads": "Tråder",
|
|
||||||
"Send a sticker": "Send et klistremerke",
|
"Send a sticker": "Send et klistremerke",
|
||||||
"Keyboard shortcuts": "Tastatursnarveier",
|
"Keyboard shortcuts": "Tastatursnarveier",
|
||||||
"Global": "Globalt",
|
"Global": "Globalt",
|
||||||
|
@ -1555,7 +1536,26 @@
|
||||||
"suggestions": "Forslag",
|
"suggestions": "Forslag",
|
||||||
"unmute": "Opphev demp",
|
"unmute": "Opphev demp",
|
||||||
"username": "Brukernavn",
|
"username": "Brukernavn",
|
||||||
"verification_cancelled": "Verifiseringen ble avbrutt"
|
"verification_cancelled": "Verifiseringen ble avbrutt",
|
||||||
|
"attachment": "Vedlegg",
|
||||||
|
"light": "Lys",
|
||||||
|
"dark": "Mørk",
|
||||||
|
"warning": "Advarsel",
|
||||||
|
"home": "Hjem",
|
||||||
|
"favourites": "Favoritter",
|
||||||
|
"thread": "Tråd",
|
||||||
|
"threads": "Tråder",
|
||||||
|
"room": "Rom",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Navn",
|
||||||
|
"description": "Beskrivelse",
|
||||||
|
"public": "Offentlig",
|
||||||
|
"private": "Privat",
|
||||||
|
"options": "Innstillinger",
|
||||||
|
"appearance": "Utseende",
|
||||||
|
"homeserver": "Hjemmetjener",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Laboratoriet"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Fortsett",
|
"continue": "Fortsett",
|
||||||
|
@ -1589,5 +1589,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Brukermeny"
|
"user_menu": "Brukermeny"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Hjem"
|
||||||
|
}
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"An error has occurred.": "Er is een fout opgetreden.",
|
"An error has occurred.": "Er is een fout opgetreden.",
|
||||||
"Are you sure?": "Weet je het zeker?",
|
"Are you sure?": "Weet je het zeker?",
|
||||||
"Are you sure you want to reject the invitation?": "Weet je zeker dat je de uitnodiging wilt weigeren?",
|
"Are you sure you want to reject the invitation?": "Weet je zeker dat je de uitnodiging wilt weigeren?",
|
||||||
"Attachment": "Bijlage",
|
|
||||||
"Banned users": "Verbannen personen",
|
"Banned users": "Verbannen personen",
|
||||||
"Bans user with given id": "Verbant de persoon met de gegeven ID",
|
"Bans user with given id": "Verbant de persoon met de gegeven ID",
|
||||||
"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>.": "Kan geen verbinding maken met de homeserver via HTTP wanneer er een HTTPS-URL in je browserbalk staat. Gebruik HTTPS of <a>schakel onveilige scripts in</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>.": "Kan geen verbinding maken met de homeserver via HTTP wanneer er een HTTPS-URL in je browserbalk staat. Gebruik HTTPS of <a>schakel onveilige scripts in</a>.",
|
||||||
|
@ -50,7 +49,6 @@
|
||||||
"Search": "Zoeken",
|
"Search": "Zoeken",
|
||||||
"Failed to change password. Is your password correct?": "Wijzigen van wachtwoord is mislukt. Is je wachtwoord juist?",
|
"Failed to change password. Is your password correct?": "Wijzigen van wachtwoord is mislukt. Is je wachtwoord juist?",
|
||||||
"Moderator": "Moderator",
|
"Moderator": "Moderator",
|
||||||
"Name": "Naam",
|
|
||||||
"not specified": "niet opgegeven",
|
"not specified": "niet opgegeven",
|
||||||
"<not supported>": "<niet ondersteund>",
|
"<not supported>": "<niet ondersteund>",
|
||||||
"No display name": "Geen weergavenaam",
|
"No display name": "Geen weergavenaam",
|
||||||
|
@ -117,14 +115,12 @@
|
||||||
"Failed to unban": "Ontbannen mislukt",
|
"Failed to unban": "Ontbannen mislukt",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Kan het e-mailadres niet verifiëren: zorg ervoor dat je de koppeling in de e-mail hebt aangeklikt",
|
"Failed to verify email address: make sure you clicked the link in the email": "Kan het e-mailadres niet verifiëren: zorg ervoor dat je de koppeling in de e-mail hebt aangeklikt",
|
||||||
"Failure to create room": "Aanmaken van kamer is mislukt",
|
"Failure to create room": "Aanmaken van kamer is mislukt",
|
||||||
"Favourites": "Favorieten",
|
|
||||||
"Filter room members": "Kamerleden filteren",
|
"Filter room members": "Kamerleden filteren",
|
||||||
"Forget room": "Kamer vergeten",
|
"Forget room": "Kamer vergeten",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Wegens veiligheidsredenen is deze sessie uitgelogd. Log opnieuw in.",
|
"For security, this session has been signed out. Please sign in again.": "Wegens veiligheidsredenen is deze sessie uitgelogd. Log opnieuw in.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s van %(fromPowerLevel)s naar %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s van %(fromPowerLevel)s naar %(toPowerLevel)s",
|
||||||
"Hangup": "Ophangen",
|
"Hangup": "Ophangen",
|
||||||
"Historical": "Historisch",
|
"Historical": "Historisch",
|
||||||
"Home": "Home",
|
|
||||||
"Import": "Inlezen",
|
"Import": "Inlezen",
|
||||||
"Import E2E room keys": "E2E-kamersleutels importeren",
|
"Import E2E room keys": "E2E-kamersleutels importeren",
|
||||||
"Incorrect username and/or password.": "Onjuiste inlognaam en/of wachtwoord.",
|
"Incorrect username and/or password.": "Onjuiste inlognaam en/of wachtwoord.",
|
||||||
|
@ -136,7 +132,6 @@
|
||||||
"Sign in with": "Inloggen met",
|
"Sign in with": "Inloggen met",
|
||||||
"Join Room": "Kamer toetreden",
|
"Join Room": "Kamer toetreden",
|
||||||
"Jump to first unread message.": "Spring naar het eerste ongelezen bericht.",
|
"Jump to first unread message.": "Spring naar het eerste ongelezen bericht.",
|
||||||
"Labs": "Labs",
|
|
||||||
"Logout": "Uitloggen",
|
"Logout": "Uitloggen",
|
||||||
"Low priority": "Lage prioriteit",
|
"Low priority": "Lage prioriteit",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s heeft de toekomstige kamergeschiedenis zichtbaar gemaakt voor alle leden, vanaf het moment dat ze uitgenodigd zijn.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s heeft de toekomstige kamergeschiedenis zichtbaar gemaakt voor alle leden, vanaf het moment dat ze uitgenodigd zijn.",
|
||||||
|
@ -214,7 +209,6 @@
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Het ziet er naar uit dat je bestanden aan het uploaden bent, weet je zeker dat je wil afsluiten?",
|
"You seem to be uploading files, are you sure you want to quit?": "Het ziet er naar uit dat je bestanden aan het uploaden bent, weet je zeker dat je wil afsluiten?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Je zal deze veranderingen niet terug kunnen draaien, omdat je de persoon tot je eigen machtsniveau promoveert.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Je zal deze veranderingen niet terug kunnen draaien, omdat je de persoon tot je eigen machtsniveau promoveert.",
|
||||||
"This server does not support authentication with a phone number.": "Deze server biedt geen ondersteuning voor authenticatie met een telefoonnummer.",
|
"This server does not support authentication with a phone number.": "Deze server biedt geen ondersteuning voor authenticatie met een telefoonnummer.",
|
||||||
"Room": "Kamer",
|
|
||||||
"Connectivity to the server has been lost.": "De verbinding met de server is verbroken.",
|
"Connectivity to the server has been lost.": "De verbinding met de server is verbroken.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Verstuurde berichten zullen opgeslagen worden totdat je verbinding hersteld is.",
|
"Sent messages will be stored until your connection has returned.": "Verstuurde berichten zullen opgeslagen worden totdat je verbinding hersteld is.",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -223,7 +217,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",
|
||||||
"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",
|
||||||
"Export room keys": "Kamersleutels exporteren",
|
"Export room keys": "Kamersleutels exporteren",
|
||||||
|
@ -408,10 +401,8 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "En %(count)s meer…"
|
"other": "En %(count)s meer…"
|
||||||
},
|
},
|
||||||
"Description": "Omschrijving",
|
|
||||||
"Old cryptography data detected": "Oude cryptografiegegevens gedetecteerd",
|
"Old cryptography data detected": "Oude cryptografiegegevens gedetecteerd",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Er zijn gegevens van een oudere versie van %(brand)s gevonden, die problemen veroorzaakt hebben met de eind-tot-eind-versleuteling in de oude versie. Onlangs vanuit de oude versie verzonden eind-tot-eind-versleutelde berichten zijn mogelijk onontsleutelbaar in deze versie. Ook kunnen berichten die met deze versie uitgewisseld zijn falen. Mocht je problemen ervaren, log dan opnieuw in. Exporteer je sleutels en importeer ze weer om je berichtgeschiedenis te behouden.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Er zijn gegevens van een oudere versie van %(brand)s gevonden, die problemen veroorzaakt hebben met de eind-tot-eind-versleuteling in de oude versie. Onlangs vanuit de oude versie verzonden eind-tot-eind-versleutelde berichten zijn mogelijk onontsleutelbaar in deze versie. Ook kunnen berichten die met deze versie uitgewisseld zijn falen. Mocht je problemen ervaren, log dan opnieuw in. Exporteer je sleutels en importeer ze weer om je berichtgeschiedenis te behouden.",
|
||||||
"Warning": "Let op",
|
|
||||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "Let op dat je inlogt bij de %(hs)s-server, niet matrix.org.",
|
"Please note you are logging into the %(hs)s server, not matrix.org.": "Let op dat je inlogt bij de %(hs)s-server, niet matrix.org.",
|
||||||
"Ignores a user, hiding their messages from you": "Negeert een persoon, waardoor de berichten ervan onzichtbaar voor jou worden",
|
"Ignores a user, hiding their messages from you": "Negeert een persoon, waardoor de berichten ervan onzichtbaar voor jou worden",
|
||||||
"Stops ignoring a user, showing their messages going forward": "Stopt het negeren van een persoon, hierdoor worden de berichten van de persoon weer zichtbaar",
|
"Stops ignoring a user, showing their messages going forward": "Stopt het negeren van een persoon, hierdoor worden de berichten van de persoon weer zichtbaar",
|
||||||
|
@ -675,7 +666,6 @@
|
||||||
"Email addresses": "E-mailadressen",
|
"Email addresses": "E-mailadressen",
|
||||||
"Phone numbers": "Telefoonnummers",
|
"Phone numbers": "Telefoonnummers",
|
||||||
"Language and region": "Taal en regio",
|
"Language and region": "Taal en regio",
|
||||||
"Theme": "Thema",
|
|
||||||
"Account management": "Accountbeheer",
|
"Account management": "Accountbeheer",
|
||||||
"General": "Algemeen",
|
"General": "Algemeen",
|
||||||
"Legal": "Juridisch",
|
"Legal": "Juridisch",
|
||||||
|
@ -1403,8 +1393,6 @@
|
||||||
"Your homeserver has exceeded its user limit.": "Jouw homeserver heeft het maximaal aantal personen overschreden.",
|
"Your homeserver has exceeded its user limit.": "Jouw homeserver heeft het maximaal aantal personen overschreden.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Jouw homeserver heeft een van zijn limieten overschreden.",
|
"Your homeserver has exceeded one of its resource limits.": "Jouw homeserver heeft een van zijn limieten overschreden.",
|
||||||
"Ok": "Oké",
|
"Ok": "Oké",
|
||||||
"Light": "Helder",
|
|
||||||
"Dark": "Donker",
|
|
||||||
"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",
|
||||||
|
@ -1693,7 +1681,6 @@
|
||||||
"%(creator)s created this DM.": "%(creator)s maakte deze directe chat.",
|
"%(creator)s created this DM.": "%(creator)s maakte deze directe chat.",
|
||||||
"Switch to dark mode": "Naar donkere modus wisselen",
|
"Switch to dark mode": "Naar donkere modus wisselen",
|
||||||
"Switch to light mode": "Naar lichte modus wisselen",
|
"Switch to light mode": "Naar lichte modus wisselen",
|
||||||
"Appearance": "Weergave",
|
|
||||||
"All settings": "Instellingen",
|
"All settings": "Instellingen",
|
||||||
"Error removing address": "Fout bij verwijderen van adres",
|
"Error removing address": "Fout bij verwijderen van adres",
|
||||||
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Er is een fout opgetreden bij het verwijderen van dit adres. Deze bestaat mogelijk niet meer, of er is een tijdelijke fout opgetreden.",
|
"There was an error removing that address. It may no longer exist or a temporary error occurred.": "Er is een fout opgetreden bij het verwijderen van dit adres. Deze bestaat mogelijk niet meer, of er is een tijdelijke fout opgetreden.",
|
||||||
|
@ -1784,7 +1771,6 @@
|
||||||
"Looks good": "Ziet er goed uit",
|
"Looks good": "Ziet er goed uit",
|
||||||
"Enter a server name": "Geef een servernaam",
|
"Enter a server name": "Geef een servernaam",
|
||||||
"Continue with %(provider)s": "Doorgaan met %(provider)s",
|
"Continue with %(provider)s": "Doorgaan met %(provider)s",
|
||||||
"Homeserver": "Homeserver",
|
|
||||||
"Server Options": "Server opties",
|
"Server Options": "Server opties",
|
||||||
"This address is already in use": "Dit adres is al in gebruik",
|
"This address is already in use": "Dit adres is al in gebruik",
|
||||||
"This address is available to use": "Dit adres kan worden gebruikt",
|
"This address is available to use": "Dit adres kan worden gebruikt",
|
||||||
|
@ -2208,9 +2194,7 @@
|
||||||
"Your private space": "Jouw privé space",
|
"Your private space": "Jouw privé space",
|
||||||
"Your public space": "Jouw publieke space",
|
"Your public space": "Jouw publieke space",
|
||||||
"Invite only, best for yourself or teams": "Alleen op uitnodiging, geschikt voor jezelf of teams",
|
"Invite only, best for yourself or teams": "Alleen op uitnodiging, geschikt voor jezelf of teams",
|
||||||
"Private": "Privé",
|
|
||||||
"Open space for anyone, best for communities": "Publieke space voor iedereen, geschikt voor gemeenschappen",
|
"Open space for anyone, best for communities": "Publieke space voor iedereen, geschikt voor gemeenschappen",
|
||||||
"Public": "Publiek",
|
|
||||||
"Create a space": "Space maken",
|
"Create a space": "Space maken",
|
||||||
"Delete": "Verwijderen",
|
"Delete": "Verwijderen",
|
||||||
"This homeserver has been blocked by its administrator.": "Deze homeserver is geblokkeerd door jouw beheerder.",
|
"This homeserver has been blocked by its administrator.": "Deze homeserver is geblokkeerd door jouw beheerder.",
|
||||||
|
@ -2300,7 +2284,6 @@
|
||||||
"Select a room below first": "Start met selecteren van een kamer hieronder",
|
"Select a room below first": "Start met selecteren van een kamer hieronder",
|
||||||
"Join the beta": "Beta inschakelen",
|
"Join the beta": "Beta inschakelen",
|
||||||
"Leave the beta": "Beta verlaten",
|
"Leave the beta": "Beta verlaten",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "Wil je anders een nieuwe kamer toevoegen?",
|
"Want to add a new room instead?": "Wil je anders een nieuwe kamer toevoegen?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "Kamer toevoegen...",
|
"one": "Kamer toevoegen...",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Om deze problemen te voorkomen, maak een <a>nieuwe versleutelde kamer</a> voor de gesprekken die je wil voeren.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Om deze problemen te voorkomen, maak een <a>nieuwe versleutelde kamer</a> voor de gesprekken die je wil voeren.",
|
||||||
"Are you sure you want to add encryption to this public room?": "Weet je zeker dat je versleuteling wil inschakelen voor deze publieke kamer?",
|
"Are you sure you want to add encryption to this public room?": "Weet je zeker dat je versleuteling wil inschakelen voor deze publieke kamer?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "Kruiselings ondertekenen is klaar, maar de sleutels zijn nog niet geback-upt.",
|
"Cross-signing is ready but keys are not backed up.": "Kruiselings ondertekenen is klaar, maar de sleutels zijn nog niet geback-upt.",
|
||||||
"Thread": "Draad",
|
|
||||||
"The above, but in <Room /> as well": "Het bovenstaande, maar ook in <Room />",
|
"The above, but in <Room /> as well": "Het bovenstaande, maar ook in <Room />",
|
||||||
"The above, but in any room you are joined or invited to as well": "Het bovenstaande, maar in elke kamer waar je aan deelneemt en voor uitgenodigd bent",
|
"The above, but in any room you are joined or invited to as well": "Het bovenstaande, maar in elke kamer waar je aan deelneemt en voor uitgenodigd bent",
|
||||||
"Autoplay videos": "Videos automatisch afspelen",
|
"Autoplay videos": "Videos automatisch afspelen",
|
||||||
|
@ -2639,7 +2621,6 @@
|
||||||
"Unban from %(roomName)s": "Ontban van %(roomName)s",
|
"Unban from %(roomName)s": "Ontban van %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Ze zullen nog steeds toegang hebben tot alles waar je geen beheerder van bent.",
|
"They'll still be able to access whatever you're not an admin of.": "Ze zullen nog steeds toegang hebben tot alles waar je geen beheerder van bent.",
|
||||||
"Disinvite from %(roomName)s": "Uitnodiging intrekken voor %(roomName)s",
|
"Disinvite from %(roomName)s": "Uitnodiging intrekken voor %(roomName)s",
|
||||||
"Threads": "Threads",
|
|
||||||
"Create poll": "Poll aanmaken",
|
"Create poll": "Poll aanmaken",
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s reactie",
|
"one": "%(count)s reactie",
|
||||||
|
@ -3325,7 +3306,6 @@
|
||||||
"Download %(brand)s Desktop": "%(brand)s Desktop downloaden",
|
"Download %(brand)s Desktop": "%(brand)s Desktop downloaden",
|
||||||
"Download %(brand)s": "%(brand)s downloaden",
|
"Download %(brand)s": "%(brand)s downloaden",
|
||||||
"Choose a locale": "Kies een landinstelling",
|
"Choose a locale": "Kies een landinstelling",
|
||||||
"Help": "Help",
|
|
||||||
"Spell check": "Spellingscontrole",
|
"Spell check": "Spellingscontrole",
|
||||||
"Complete these to get the most out of %(brand)s": "Voltooi deze om het meeste uit %(brand)s te halen",
|
"Complete these to get the most out of %(brand)s": "Voltooi deze om het meeste uit %(brand)s te halen",
|
||||||
"You did it!": "Het is je gelukt!",
|
"You did it!": "Het is je gelukt!",
|
||||||
|
@ -3546,7 +3526,27 @@
|
||||||
"unmute": "Niet dempen",
|
"unmute": "Niet dempen",
|
||||||
"username": "Inlognaam",
|
"username": "Inlognaam",
|
||||||
"verification_cancelled": "Verificatie geannuleerd",
|
"verification_cancelled": "Verificatie geannuleerd",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Bijlage",
|
||||||
|
"light": "Helder",
|
||||||
|
"dark": "Donker",
|
||||||
|
"warning": "Let op",
|
||||||
|
"home": "Home",
|
||||||
|
"favourites": "Favorieten",
|
||||||
|
"thread": "Draad",
|
||||||
|
"threads": "Threads",
|
||||||
|
"room": "Kamer",
|
||||||
|
"theme": "Thema",
|
||||||
|
"name": "Naam",
|
||||||
|
"description": "Omschrijving",
|
||||||
|
"public": "Publiek",
|
||||||
|
"private": "Privé",
|
||||||
|
"options": "Opties",
|
||||||
|
"appearance": "Weergave",
|
||||||
|
"homeserver": "Homeserver",
|
||||||
|
"help": "Help",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Labs"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Doorgaan",
|
"continue": "Doorgaan",
|
||||||
|
@ -3583,5 +3583,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Persoonsmenu"
|
"user_menu": "Persoonsmenu"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Home"
|
||||||
|
}
|
||||||
|
|
|
@ -135,7 +135,6 @@
|
||||||
"Noisy": "Bråkete",
|
"Noisy": "Bråkete",
|
||||||
"Drop file here to upload": "Slipp ein fil her for å lasta opp",
|
"Drop file here to upload": "Slipp ein fil her for å lasta opp",
|
||||||
"This event could not be displayed": "Denne hendingen kunne ikkje visast",
|
"This event could not be displayed": "Denne hendingen kunne ikkje visast",
|
||||||
"Options": "Innstillingar",
|
|
||||||
"Unban": "Slepp inn att",
|
"Unban": "Slepp inn att",
|
||||||
"Failed to ban user": "Fekk ikkje til å stenge ute brukaren",
|
"Failed to ban user": "Fekk ikkje til å stenge ute brukaren",
|
||||||
"Demote yourself?": "Senke ditt eige tilgangsnivå?",
|
"Demote yourself?": "Senke ditt eige tilgangsnivå?",
|
||||||
|
@ -157,7 +156,6 @@
|
||||||
},
|
},
|
||||||
"Invited": "Invitert",
|
"Invited": "Invitert",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (tilgangsnivå %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (tilgangsnivå %(powerLevelNumber)s)",
|
||||||
"Attachment": "Vedlegg",
|
|
||||||
"Hangup": "Legg på",
|
"Hangup": "Legg på",
|
||||||
"Voice call": "Talesamtale",
|
"Voice call": "Talesamtale",
|
||||||
"Video call": "Videosamtale",
|
"Video call": "Videosamtale",
|
||||||
|
@ -189,7 +187,6 @@
|
||||||
"Forget room": "Gløym rom",
|
"Forget room": "Gløym rom",
|
||||||
"Search": "Søk",
|
"Search": "Søk",
|
||||||
"Share room": "Del rom",
|
"Share room": "Del rom",
|
||||||
"Favourites": "Yndlingar",
|
|
||||||
"Rooms": "Rom",
|
"Rooms": "Rom",
|
||||||
"Low priority": "Låg prioritet",
|
"Low priority": "Låg prioritet",
|
||||||
"System Alerts": "Systemvarsel",
|
"System Alerts": "Systemvarsel",
|
||||||
|
@ -264,12 +261,10 @@
|
||||||
"What's new?": "Kva er nytt?",
|
"What's new?": "Kva er nytt?",
|
||||||
"Error encountered (%(errorDetail)s).": "Noko gjekk gale (%(errorDetail)s).",
|
"Error encountered (%(errorDetail)s).": "Noko gjekk gale (%(errorDetail)s).",
|
||||||
"No update available.": "Inga oppdatering er tilgjengeleg.",
|
"No update available.": "Inga oppdatering er tilgjengeleg.",
|
||||||
"Warning": "Åtvaring",
|
|
||||||
"Delete Widget": "Slett Widgeten",
|
"Delete Widget": "Slett Widgeten",
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Å sletta ein widget fjernar den for alle brukarane i rommet. Er du sikker på at du vil sletta denne widgeten?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Å sletta ein widget fjernar den for alle brukarane i rommet. Er du sikker på at du vil sletta denne widgeten?",
|
||||||
"Delete widget": "Slett widgeten",
|
"Delete widget": "Slett widgeten",
|
||||||
"Create new room": "Lag nytt rom",
|
"Create new room": "Lag nytt rom",
|
||||||
"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",
|
||||||
"one": "%(severalUsers)s kom inn"
|
"one": "%(severalUsers)s kom inn"
|
||||||
|
@ -411,10 +406,8 @@
|
||||||
"Source URL": "Kjelde-URL",
|
"Source URL": "Kjelde-URL",
|
||||||
"All messages": "Alle meldingar",
|
"All messages": "Alle meldingar",
|
||||||
"Low Priority": "Lågrett",
|
"Low Priority": "Lågrett",
|
||||||
"Name": "Namn",
|
|
||||||
"You must <a>register</a> to use this functionality": "Du må <a>melda deg inn</a> for å bruka denne funksjonen",
|
"You must <a>register</a> to use this functionality": "Du må <a>melda deg inn</a> for å bruka denne funksjonen",
|
||||||
"You must join the room to see its files": "Du må fare inn i rommet for å sjå filene dets",
|
"You must join the room to see its files": "Du må fare inn i rommet for å sjå filene dets",
|
||||||
"Description": "Skildring",
|
|
||||||
"Failed to reject invitation": "Fekk ikkje til å seia nei til innbyding",
|
"Failed to reject invitation": "Fekk ikkje til å seia nei til innbyding",
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Dette rommet er ikkje offentleg. Du kjem ikkje til å kunna koma inn att utan ei innbyding.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Dette rommet er ikkje offentleg. Du kjem ikkje til å kunna koma inn att utan ei innbyding.",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Er du sikker på at du vil forlate rommet '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Er du sikker på at du vil forlate rommet '%(roomName)s'?",
|
||||||
|
@ -437,7 +430,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Det ser ut til at du er i ein samtale, er du sikker på at du vil avslutte?",
|
"You seem to be in a call, are you sure you want to quit?": "Det ser ut til at du er i ein samtale, er du sikker på at du vil avslutte?",
|
||||||
"Search failed": "Søket feila",
|
"Search failed": "Søket feila",
|
||||||
"No more results": "Ingen fleire resultat",
|
"No more results": "Ingen fleire resultat",
|
||||||
"Room": "Rom",
|
|
||||||
"Failed to reject invite": "Fekk ikkje til å avstå invitasjonen",
|
"Failed to reject invite": "Fekk ikkje til å avstå invitasjonen",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Prøvde å laste eit bestemt punkt i rommet sin historikk, men du har ikkje lov til å sjå den spesifike meldingen.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Prøvde å laste eit bestemt punkt i rommet sin historikk, men du har ikkje lov til å sjå den spesifike meldingen.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Prøvde å lasta eit bestemt punkt i rommet sin historikk, men klarde ikkje å finna det.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Prøvde å lasta eit bestemt punkt i rommet sin historikk, men klarde ikkje å finna det.",
|
||||||
|
@ -451,7 +443,6 @@
|
||||||
"<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",
|
||||||
"Cryptography": "Kryptografi",
|
"Cryptography": "Kryptografi",
|
||||||
"Labs": "Labben",
|
|
||||||
"Check for update": "Sjå etter oppdateringar",
|
"Check for update": "Sjå etter oppdateringar",
|
||||||
"Reject all %(invitedRooms)s invites": "Kanseller alle invitasjonar frå %(invitedRooms)s",
|
"Reject all %(invitedRooms)s invites": "Kanseller alle invitasjonar frå %(invitedRooms)s",
|
||||||
"Start automatically after system login": "Start automatisk etter systeminnlogging",
|
"Start automatically after system login": "Start automatisk etter systeminnlogging",
|
||||||
|
@ -800,7 +791,6 @@
|
||||||
"Enable audible notifications for this session": "Aktiver høyrbare varslingar for denne økta",
|
"Enable audible notifications for this session": "Aktiver høyrbare varslingar for denne økta",
|
||||||
"Custom theme URL": "Tilpassa tema-URL",
|
"Custom theme URL": "Tilpassa tema-URL",
|
||||||
"Add theme": "Legg til tema",
|
"Add theme": "Legg til tema",
|
||||||
"Theme": "Tema",
|
|
||||||
"Credits": "Bidragsytarar",
|
"Credits": "Bidragsytarar",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>, eller start ein samtale med vår bot ved å bruke knappen under.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For hjelp med å bruka %(brand)s, klikk <a>her</a>, eller start ein samtale med vår bot ved å bruke knappen under.",
|
||||||
|
@ -904,9 +894,6 @@
|
||||||
"System font name": "Namn på skrifttype",
|
"System font name": "Namn på skrifttype",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Tilpassa skriftstorleik må vere mellom %(min)s og %(max)s punkt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Tilpassa skriftstorleik må vere mellom %(min)s og %(max)s punkt",
|
||||||
"Font size": "Skriftstorleik",
|
"Font size": "Skriftstorleik",
|
||||||
"Dark": "Mørkt tema",
|
|
||||||
"Light": "Lyst tema",
|
|
||||||
"Appearance": "Utsjånad",
|
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Innstillingane gjeld berre for denne %(brand)s-økta.",
|
"Appearance Settings only affect this %(brand)s session.": "Innstillingane gjeld berre for denne %(brand)s-økta.",
|
||||||
"Customise your appearance": "Tilpass utsjånad",
|
"Customise your appearance": "Tilpass utsjånad",
|
||||||
"Change notification settings": "Endra varslingsinnstillingar",
|
"Change notification settings": "Endra varslingsinnstillingar",
|
||||||
|
@ -1076,7 +1063,20 @@
|
||||||
"report_a_bug": "Send inn feilrapport",
|
"report_a_bug": "Send inn feilrapport",
|
||||||
"settings": "Innstillingar",
|
"settings": "Innstillingar",
|
||||||
"success": "Suksess",
|
"success": "Suksess",
|
||||||
"unmute": "Fjern demping"
|
"unmute": "Fjern demping",
|
||||||
|
"attachment": "Vedlegg",
|
||||||
|
"light": "Lyst tema",
|
||||||
|
"dark": "Mørkt tema",
|
||||||
|
"warning": "Åtvaring",
|
||||||
|
"home": "Heim",
|
||||||
|
"favourites": "Yndlingar",
|
||||||
|
"room": "Rom",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Namn",
|
||||||
|
"description": "Skildring",
|
||||||
|
"options": "Innstillingar",
|
||||||
|
"appearance": "Utsjånad",
|
||||||
|
"labs": "Labben"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Fortset",
|
"continue": "Fortset",
|
||||||
|
@ -1096,5 +1096,6 @@
|
||||||
"save": "Lagra",
|
"save": "Lagra",
|
||||||
"start_chat": "Start samtale",
|
"start_chat": "Start samtale",
|
||||||
"view_source": "Sjå Kjelda"
|
"view_source": "Sjå Kjelda"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Heim"
|
||||||
|
}
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
"Unnamed room": "Sala sens nom",
|
"Unnamed room": "Sala sens nom",
|
||||||
"Search": "Recercar",
|
"Search": "Recercar",
|
||||||
"Share room": "Partejar la sala",
|
"Share room": "Partejar la sala",
|
||||||
"Favourites": "Favorits",
|
|
||||||
"Rooms": "Salas",
|
"Rooms": "Salas",
|
||||||
"Low priority": "Febla prioritat",
|
"Low priority": "Febla prioritat",
|
||||||
"System Alerts": "Alèrtas sistèma",
|
"System Alerts": "Alèrtas sistèma",
|
||||||
|
@ -35,7 +34,6 @@
|
||||||
"Reject": "Regetar",
|
"Reject": "Regetar",
|
||||||
"Reject & Ignore user": "Regetar e ignorar",
|
"Reject & Ignore user": "Regetar e ignorar",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s existís pas.",
|
"%(roomName)s does not exist.": "%(roomName)s existís pas.",
|
||||||
"Options": "Opcions",
|
|
||||||
"This Room": "Aquesta sala",
|
"This Room": "Aquesta sala",
|
||||||
"All Rooms": "Totas les salas",
|
"All Rooms": "Totas les salas",
|
||||||
"Search…": "Cercar…",
|
"Search…": "Cercar…",
|
||||||
|
@ -79,8 +77,6 @@
|
||||||
"Usage": "Usatge",
|
"Usage": "Usatge",
|
||||||
"Thank you!": "Mercés !",
|
"Thank you!": "Mercés !",
|
||||||
"Reason": "Rason",
|
"Reason": "Rason",
|
||||||
"Light": "Clar",
|
|
||||||
"Dark": "Escur",
|
|
||||||
"Review": "Reveire",
|
"Review": "Reveire",
|
||||||
"Notifications": "Notificacions",
|
"Notifications": "Notificacions",
|
||||||
"Close": "Tampar",
|
"Close": "Tampar",
|
||||||
|
@ -127,7 +123,6 @@
|
||||||
"Disconnect": "Se desconnectar",
|
"Disconnect": "Se desconnectar",
|
||||||
"Go back": "Precedent",
|
"Go back": "Precedent",
|
||||||
"Change": "Cambiar",
|
"Change": "Cambiar",
|
||||||
"Theme": "Tèma",
|
|
||||||
"Profile": "Perfil",
|
"Profile": "Perfil",
|
||||||
"Account": "Compte",
|
"Account": "Compte",
|
||||||
"General": "General",
|
"General": "General",
|
||||||
|
@ -166,7 +161,6 @@
|
||||||
"Strikethrough": "Raiat",
|
"Strikethrough": "Raiat",
|
||||||
"Historical": "Istoric",
|
"Historical": "Istoric",
|
||||||
"Sign Up": "S’inscriure",
|
"Sign Up": "S’inscriure",
|
||||||
"Appearance": "Aparéncia",
|
|
||||||
"Sort by": "Triar per",
|
"Sort by": "Triar per",
|
||||||
"Activity": "Activitat",
|
"Activity": "Activitat",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
|
@ -188,7 +182,6 @@
|
||||||
"Saturday": "Dissabte",
|
"Saturday": "Dissabte",
|
||||||
"Today": "Uèi",
|
"Today": "Uèi",
|
||||||
"Yesterday": "Ièr",
|
"Yesterday": "Ièr",
|
||||||
"Attachment": "Pèça junta",
|
|
||||||
"Show image": "Afichar l'imatge",
|
"Show image": "Afichar l'imatge",
|
||||||
"Show all": "O mostrar tot",
|
"Show all": "O mostrar tot",
|
||||||
"Failed to copy": "Impossible de copiar",
|
"Failed to copy": "Impossible de copiar",
|
||||||
|
@ -212,7 +205,6 @@
|
||||||
"Unavailable": "Pas disponible",
|
"Unavailable": "Pas disponible",
|
||||||
"Changelog": "Istoric dels cambiaments (Changelog)",
|
"Changelog": "Istoric dels cambiaments (Changelog)",
|
||||||
"Removing…": "Supression en cors…",
|
"Removing…": "Supression en cors…",
|
||||||
"Name": "Escais",
|
|
||||||
"Sign out": "Se desconnectar",
|
"Sign out": "Se desconnectar",
|
||||||
"Back": "Precedenta",
|
"Back": "Precedenta",
|
||||||
"Send": "Mandar",
|
"Send": "Mandar",
|
||||||
|
@ -229,7 +221,6 @@
|
||||||
"Summary": "Resumit",
|
"Summary": "Resumit",
|
||||||
"Document": "Document",
|
"Document": "Document",
|
||||||
"Upload files": "Mandar de fichièrs",
|
"Upload files": "Mandar de fichièrs",
|
||||||
"Home": "Dorsièr personal",
|
|
||||||
"Sign in": "Connexion",
|
"Sign in": "Connexion",
|
||||||
"Away": "Absent",
|
"Away": "Absent",
|
||||||
"Submit": "Mandar",
|
"Submit": "Mandar",
|
||||||
|
@ -238,12 +229,10 @@
|
||||||
"Phone": "Telefòn",
|
"Phone": "Telefòn",
|
||||||
"Passwords don't match": "Los senhals correspondon pas",
|
"Passwords don't match": "Los senhals correspondon pas",
|
||||||
"Register": "S'enregistrar",
|
"Register": "S'enregistrar",
|
||||||
"Description": "descripcion",
|
|
||||||
"Unknown error": "Error desconeguda",
|
"Unknown error": "Error desconeguda",
|
||||||
"Logout": "Desconnexion",
|
"Logout": "Desconnexion",
|
||||||
"View": "Visualizacion",
|
"View": "Visualizacion",
|
||||||
"Search failed": "La recèrca a fracassat",
|
"Search failed": "La recèrca a fracassat",
|
||||||
"Room": "Sala",
|
|
||||||
"Feedback": "Comentaris",
|
"Feedback": "Comentaris",
|
||||||
"Incorrect password": "Senhal incorrècte",
|
"Incorrect password": "Senhal incorrècte",
|
||||||
"Commands": "Comandas",
|
"Commands": "Comandas",
|
||||||
|
@ -283,7 +272,18 @@
|
||||||
"success": "Succès",
|
"success": "Succès",
|
||||||
"suggestions": "Prepausicions",
|
"suggestions": "Prepausicions",
|
||||||
"unmute": "Restablir lo son",
|
"unmute": "Restablir lo son",
|
||||||
"username": "Nom d'_utilizaire"
|
"username": "Nom d'_utilizaire",
|
||||||
|
"attachment": "Pèça junta",
|
||||||
|
"light": "Clar",
|
||||||
|
"dark": "Escur",
|
||||||
|
"home": "Dorsièr personal",
|
||||||
|
"favourites": "Favorits",
|
||||||
|
"room": "Sala",
|
||||||
|
"theme": "Tèma",
|
||||||
|
"name": "Escais",
|
||||||
|
"description": "descripcion",
|
||||||
|
"options": "Opcions",
|
||||||
|
"appearance": "Aparéncia"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Contunhar",
|
"continue": "Contunhar",
|
||||||
|
@ -305,5 +305,6 @@
|
||||||
"start_chat": "Començar una discussion",
|
"start_chat": "Començar una discussion",
|
||||||
"view_source": "Veire la font",
|
"view_source": "Veire la font",
|
||||||
"yes": "Òc"
|
"yes": "Òc"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Dorsièr personal"
|
||||||
|
}
|
||||||
|
|
|
@ -5,11 +5,9 @@
|
||||||
"Something went wrong!": "Coś poszło nie tak!",
|
"Something went wrong!": "Coś poszło nie tak!",
|
||||||
"Incorrect password": "Nieprawidłowe hasło",
|
"Incorrect password": "Nieprawidłowe hasło",
|
||||||
"Unknown error": "Nieznany błąd",
|
"Unknown error": "Nieznany błąd",
|
||||||
"Options": "Opcje",
|
|
||||||
"New Password": "Nowe hasło",
|
"New Password": "Nowe hasło",
|
||||||
"Create new room": "Utwórz nowy pokój",
|
"Create new room": "Utwórz nowy pokój",
|
||||||
"Cancel": "Anuluj",
|
"Cancel": "Anuluj",
|
||||||
"Room": "Pokój",
|
|
||||||
"Jan": "Sty",
|
"Jan": "Sty",
|
||||||
"Feb": "Lut",
|
"Feb": "Lut",
|
||||||
"Mar": "Mar",
|
"Mar": "Mar",
|
||||||
|
@ -40,7 +38,6 @@
|
||||||
"Microphone": "Mikrofon",
|
"Microphone": "Mikrofon",
|
||||||
"Camera": "Kamera",
|
"Camera": "Kamera",
|
||||||
"Are you sure?": "Czy jesteś pewien?",
|
"Are you sure?": "Czy jesteś pewien?",
|
||||||
"Attachment": "Załącznik",
|
|
||||||
"Banned users": "Zbanowani użytkownicy",
|
"Banned users": "Zbanowani użytkownicy",
|
||||||
"Change Password": "Zmień Hasło",
|
"Change Password": "Zmień Hasło",
|
||||||
"Close": "Zamknij",
|
"Close": "Zamknij",
|
||||||
|
@ -113,14 +110,12 @@
|
||||||
"Failed to unban": "Nie udało się odbanować",
|
"Failed to unban": "Nie udało się odbanować",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "Nie udało się zweryfikować adresu e-mail: upewnij się że kliknąłeś w link w e-mailu",
|
"Failed to verify email address: make sure you clicked the link in the email": "Nie udało się zweryfikować adresu e-mail: upewnij się że kliknąłeś w link w e-mailu",
|
||||||
"Failure to create room": "Nie udało się stworzyć pokoju",
|
"Failure to create room": "Nie udało się stworzyć pokoju",
|
||||||
"Favourites": "Ulubione",
|
|
||||||
"Filter room members": "Filtruj członków pokoju",
|
"Filter room members": "Filtruj członków pokoju",
|
||||||
"Forget room": "Zapomnij pokój",
|
"Forget room": "Zapomnij pokój",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Ze względów bezpieczeństwa ta sesja została wylogowana. Zaloguj się jeszcze raz.",
|
"For security, this session has been signed out. Please sign in again.": "Ze względów bezpieczeństwa ta sesja została wylogowana. Zaloguj się jeszcze raz.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s z %(fromPowerLevel)s na %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s z %(fromPowerLevel)s na %(toPowerLevel)s",
|
||||||
"Deops user with given id": "Usuwa prawa administratora użytkownikowi o danym ID",
|
"Deops user with given id": "Usuwa prawa administratora użytkownikowi o danym ID",
|
||||||
"Hangup": "Rozłącz",
|
"Hangup": "Rozłącz",
|
||||||
"Home": "Strona główna",
|
|
||||||
"Import": "Importuj",
|
"Import": "Importuj",
|
||||||
"Import E2E room keys": "Importuj klucze pokoju E2E",
|
"Import E2E room keys": "Importuj klucze pokoju E2E",
|
||||||
"Incorrect username and/or password.": "Nieprawidłowa nazwa użytkownika i/lub hasło.",
|
"Incorrect username and/or password.": "Nieprawidłowa nazwa użytkownika i/lub hasło.",
|
||||||
|
@ -132,7 +127,6 @@
|
||||||
"Sign in with": "Zaloguj się używając",
|
"Sign in with": "Zaloguj się używając",
|
||||||
"Join Room": "Dołącz do pokoju",
|
"Join Room": "Dołącz do pokoju",
|
||||||
"Jump to first unread message.": "Przeskocz do pierwszej nieprzeczytanej wiadomości.",
|
"Jump to first unread message.": "Przeskocz do pierwszej nieprzeczytanej wiadomości.",
|
||||||
"Labs": "Laboratoria",
|
|
||||||
"Publish this room to the public in %(domain)s's room directory?": "Czy opublikować ten pokój dla ogółu w spisie pokojów domeny %(domain)s?",
|
"Publish this room to the public in %(domain)s's room directory?": "Czy opublikować ten pokój dla ogółu w spisie pokojów domeny %(domain)s?",
|
||||||
"Logout": "Wyloguj",
|
"Logout": "Wyloguj",
|
||||||
"Low priority": "Niski priorytet",
|
"Low priority": "Niski priorytet",
|
||||||
|
@ -144,7 +138,6 @@
|
||||||
"Missing room_id in request": "Brakujące room_id w żądaniu",
|
"Missing room_id in request": "Brakujące room_id w żądaniu",
|
||||||
"Missing user_id in request": "Brakujące user_id w żądaniu",
|
"Missing user_id in request": "Brakujące user_id w żądaniu",
|
||||||
"Moderator": "Moderator",
|
"Moderator": "Moderator",
|
||||||
"Name": "Nazwa",
|
|
||||||
"New passwords don't match": "Nowe hasła nie zgadzają się",
|
"New passwords don't match": "Nowe hasła nie zgadzają się",
|
||||||
"New passwords must match each other.": "Nowe hasła muszą się zgadzać.",
|
"New passwords must match each other.": "Nowe hasła muszą się zgadzać.",
|
||||||
"not specified": "nieokreślony",
|
"not specified": "nieokreślony",
|
||||||
|
@ -310,7 +303,6 @@
|
||||||
"Changelog": "Dziennik zmian",
|
"Changelog": "Dziennik zmian",
|
||||||
"Waiting for response from server": "Czekam na odpowiedź serwera",
|
"Waiting for response from server": "Czekam na odpowiedź serwera",
|
||||||
"Failed to send logs: ": "Nie udało się wysłać dzienników: ",
|
"Failed to send logs: ": "Nie udało się wysłać dzienników: ",
|
||||||
"Warning": "Ostrzeżenie",
|
|
||||||
"This Room": "Ten pokój",
|
"This Room": "Ten pokój",
|
||||||
"Resend": "Wyślij jeszcze raz",
|
"Resend": "Wyślij jeszcze raz",
|
||||||
"Messages containing my display name": "Wiadomości zawierające moją wyświetlaną nazwę",
|
"Messages containing my display name": "Wiadomości zawierające moją wyświetlaną nazwę",
|
||||||
|
@ -396,7 +388,6 @@
|
||||||
"Share User": "Udostępnij użytkownika",
|
"Share User": "Udostępnij użytkownika",
|
||||||
"Share Room Message": "Udostępnij wiadomość w pokoju",
|
"Share Room Message": "Udostępnij wiadomość w pokoju",
|
||||||
"Link to selected message": "Link do zaznaczonej wiadomości",
|
"Link to selected message": "Link do zaznaczonej wiadomości",
|
||||||
"Description": "Opis",
|
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Ten pokój nie jest publiczny. Nie będziesz w stanie do niego dołączyć bez zaproszenia.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Ten pokój nie jest publiczny. Nie będziesz w stanie do niego dołączyć bez zaproszenia.",
|
||||||
"Can't leave Server Notices room": "Nie można opuścić pokoju powiadomień serwera",
|
"Can't leave Server Notices room": "Nie można opuścić pokoju powiadomień serwera",
|
||||||
"This room is used for important messages from the Homeserver, so you cannot leave it.": "Ten pokój jest używany do ważnych wiadomości z serwera domowego, więc nie możesz go opuścić.",
|
"This room is used for important messages from the Homeserver, so you cannot leave it.": "Ten pokój jest używany do ważnych wiadomości z serwera domowego, więc nie możesz go opuścić.",
|
||||||
|
@ -638,7 +629,6 @@
|
||||||
"Email addresses": "Adresy e-mail",
|
"Email addresses": "Adresy e-mail",
|
||||||
"Phone numbers": "Numery telefonów",
|
"Phone numbers": "Numery telefonów",
|
||||||
"Language and region": "Język i region",
|
"Language and region": "Język i region",
|
||||||
"Theme": "Motyw",
|
|
||||||
"Account management": "Zarządzanie kontem",
|
"Account management": "Zarządzanie kontem",
|
||||||
"Bug reporting": "Zgłaszanie błędów",
|
"Bug reporting": "Zgłaszanie błędów",
|
||||||
"Versions": "Wersje",
|
"Versions": "Wersje",
|
||||||
|
@ -1052,10 +1042,7 @@
|
||||||
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potwierdź dodanie tego adresu e-mail przez użycie pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
"Confirm adding this email address by using Single Sign On to prove your identity.": "Potwierdź dodanie tego adresu e-mail przez użycie pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
||||||
"Single Sign On": "Pojedyncze logowanie",
|
"Single Sign On": "Pojedyncze logowanie",
|
||||||
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potwierdź dodanie tego numeru telefonu przy użyciu pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
"Confirm adding this phone number by using Single Sign On to prove your identity.": "Potwierdź dodanie tego numeru telefonu przy użyciu pojedynczego logowania, aby potwierdzić swoją tożsamość.",
|
||||||
"Light": "Jasny",
|
|
||||||
"Dark": "Ciemny",
|
|
||||||
"Font size": "Rozmiar czcionki",
|
"Font size": "Rozmiar czcionki",
|
||||||
"Appearance": "Wygląd",
|
|
||||||
"Show rooms with unread messages first": "Pokazuj najpierw pokoje z nieprzeczytanymi wiadomościami",
|
"Show rooms with unread messages first": "Pokazuj najpierw pokoje z nieprzeczytanymi wiadomościami",
|
||||||
"Show previews of messages": "Pokazuj podglądy wiadomości",
|
"Show previews of messages": "Pokazuj podglądy wiadomości",
|
||||||
"Sort by": "Sortuj według",
|
"Sort by": "Sortuj według",
|
||||||
|
@ -1692,7 +1679,6 @@
|
||||||
"Your access token gives full access to your account. Do not share it with anyone.": "Twój token dostępu daje pełen dostęp do Twojego konta. Nie dziel się nim z nikim.",
|
"Your access token gives full access to your account. Do not share it with anyone.": "Twój token dostępu daje pełen dostęp do Twojego konta. Nie dziel się nim z nikim.",
|
||||||
"Avatar": "Awatar",
|
"Avatar": "Awatar",
|
||||||
"Leave the beta": "Opuść betę",
|
"Leave the beta": "Opuść betę",
|
||||||
"Beta": "Beta",
|
|
||||||
"Move right": "Przenieś w prawo",
|
"Move right": "Przenieś w prawo",
|
||||||
"Move left": "Przenieś w lewo",
|
"Move left": "Przenieś w lewo",
|
||||||
"Join the beta": "Dołącz do bety",
|
"Join the beta": "Dołącz do bety",
|
||||||
|
@ -1804,7 +1790,6 @@
|
||||||
"Back to thread": "Wróć do wątku",
|
"Back to thread": "Wróć do wątku",
|
||||||
"Room members": "Członkowie pokoju",
|
"Room members": "Członkowie pokoju",
|
||||||
"Back to chat": "Wróć do chatu",
|
"Back to chat": "Wróć do chatu",
|
||||||
"Threads": "Wątki",
|
|
||||||
"* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s",
|
"* %(senderName)s %(emote)s": "* %(senderName)s %(emote)s",
|
||||||
"Other rooms": "Inne pokoje",
|
"Other rooms": "Inne pokoje",
|
||||||
"%(deviceId)s from %(ip)s": "%(deviceId)s z %(ip)s",
|
"%(deviceId)s from %(ip)s": "%(deviceId)s z %(ip)s",
|
||||||
|
@ -2055,7 +2040,6 @@
|
||||||
"Video rooms are always-on VoIP channels embedded within a room in %(brand)s.": "Pokoje wideo są stale dostępnymi kanałami VoIP osadzonymi w pokoju w %(brand)s.",
|
"Video rooms are always-on VoIP channels embedded within a room in %(brand)s.": "Pokoje wideo są stale dostępnymi kanałami VoIP osadzonymi w pokoju w %(brand)s.",
|
||||||
"Send your first message to invite <displayName/> to chat": "Wyślij pierwszą wiadomość, aby zaprosić <displayName/> do rozmowy",
|
"Send your first message to invite <displayName/> to chat": "Wyślij pierwszą wiadomość, aby zaprosić <displayName/> do rozmowy",
|
||||||
"Spell check": "Sprawdzanie pisowni",
|
"Spell check": "Sprawdzanie pisowni",
|
||||||
"Help": "Pomoc",
|
|
||||||
"Download %(brand)s Desktop": "Pobierz %(brand)s Desktop",
|
"Download %(brand)s Desktop": "Pobierz %(brand)s Desktop",
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Android": "Android",
|
"Android": "Android",
|
||||||
|
@ -2123,9 +2107,7 @@
|
||||||
"Your public space": "Twoja publiczna przestrzeń",
|
"Your public space": "Twoja publiczna przestrzeń",
|
||||||
"To join a space you'll need an invite.": "Wymagane jest zaproszenie, aby dołączyć do przestrzeni.",
|
"To join a space you'll need an invite.": "Wymagane jest zaproszenie, aby dołączyć do przestrzeni.",
|
||||||
"Invite only, best for yourself or teams": "Tylko na zaproszenie, najlepsza dla siebie lub zespołów",
|
"Invite only, best for yourself or teams": "Tylko na zaproszenie, najlepsza dla siebie lub zespołów",
|
||||||
"Private": "Prywatna",
|
|
||||||
"Open space for anyone, best for communities": "Przestrzeń otwarta dla każdego, najlepsza dla społeczności",
|
"Open space for anyone, best for communities": "Przestrzeń otwarta dla każdego, najlepsza dla społeczności",
|
||||||
"Public": "Publiczna",
|
|
||||||
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Przestrzenie to nowy sposób na grupowanie pokojów i osób. Jaki rodzaj przestrzeni chcesz utworzyć? Możesz zmienić to później.",
|
"Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Przestrzenie to nowy sposób na grupowanie pokojów i osób. Jaki rodzaj przestrzeni chcesz utworzyć? Możesz zmienić to później.",
|
||||||
"Create a space": "Utwórz przestrzeń",
|
"Create a space": "Utwórz przestrzeń",
|
||||||
"Address": "Adres",
|
"Address": "Adres",
|
||||||
|
@ -2376,7 +2358,6 @@
|
||||||
"No identity access token found": "Nie znaleziono tokena dostępu tożsamości",
|
"No identity access token found": "Nie znaleziono tokena dostępu tożsamości",
|
||||||
"Identity server not set": "Serwer tożsamości nie jest ustawiony",
|
"Identity server not set": "Serwer tożsamości nie jest ustawiony",
|
||||||
"You held the call <a>Resume</a>": "Zawieszono rozmowę <a>Wznów</a>",
|
"You held the call <a>Resume</a>": "Zawieszono rozmowę <a>Wznów</a>",
|
||||||
"User": "Użytkownik",
|
|
||||||
"Sorry — this call is currently full": "Przepraszamy — to połączenie jest już zapełnione",
|
"Sorry — this call is currently full": "Przepraszamy — to połączenie jest już zapełnione",
|
||||||
"Show NSFW content": "Pokaż zawartość NSFW",
|
"Show NSFW content": "Pokaż zawartość NSFW",
|
||||||
"Rust cryptography implementation": "Implementacja kryptografii Rust",
|
"Rust cryptography implementation": "Implementacja kryptografii Rust",
|
||||||
|
@ -2564,7 +2545,6 @@
|
||||||
"Space home": "Przestrzeń główna",
|
"Space home": "Przestrzeń główna",
|
||||||
"About homeservers": "O serwerach domowych",
|
"About homeservers": "O serwerach domowych",
|
||||||
"Other homeserver": "Inne serwery domowe",
|
"Other homeserver": "Inne serwery domowe",
|
||||||
"Homeserver": "Serwer domowy",
|
|
||||||
"Home options": "Opcje głównej",
|
"Home options": "Opcje głównej",
|
||||||
"Home is useful for getting an overview of everything.": "Strona główna to przydatne miejsce dla podsumowania wszystkiego.",
|
"Home is useful for getting an overview of everything.": "Strona główna to przydatne miejsce dla podsumowania wszystkiego.",
|
||||||
"For best security, verify your sessions and sign out from any session that you don't recognize or use anymore.": "Dla najlepszego bezpieczeństwa, zweryfikuj swoje sesje i wyloguj się ze wszystkich sesji, których nie rozpoznajesz lub nie używasz.",
|
"For best security, verify your sessions and sign out from any session that you don't recognize or use anymore.": "Dla najlepszego bezpieczeństwa, zweryfikuj swoje sesje i wyloguj się ze wszystkich sesji, których nie rozpoznajesz lub nie używasz.",
|
||||||
|
@ -3746,7 +3726,6 @@
|
||||||
"Decrypted source unavailable": "Rozszyfrowane źródło niedostępne",
|
"Decrypted source unavailable": "Rozszyfrowane źródło niedostępne",
|
||||||
"Decrypted event source": "Rozszyfrowane wydarzenie źródłowe",
|
"Decrypted event source": "Rozszyfrowane wydarzenie źródłowe",
|
||||||
"Got an account? <a>Sign in</a>": "Posiadasz już konto? <a>Zaloguj się</a>",
|
"Got an account? <a>Sign in</a>": "Posiadasz już konto? <a>Zaloguj się</a>",
|
||||||
"Thread": "Wątek",
|
|
||||||
"Keep discussions organised with threads": "Organizuj dyskusje za pomocą wątków",
|
"Keep discussions organised with threads": "Organizuj dyskusje za pomocą wątków",
|
||||||
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>Tip:</b> Użyj “%(replyInThread)s” najeżdżając na wiadomość.",
|
"<b>Tip:</b> Use “%(replyInThread)s” when hovering over a message.": "<b>Tip:</b> Użyj “%(replyInThread)s” najeżdżając na wiadomość.",
|
||||||
"Threads help keep your conversations on-topic and easy to track.": "Dzięki wątkom Twoje rozmowy są zorganizowane i łatwe do śledzenia.",
|
"Threads help keep your conversations on-topic and easy to track.": "Dzięki wątkom Twoje rozmowy są zorganizowane i łatwe do śledzenia.",
|
||||||
|
@ -3920,7 +3899,28 @@
|
||||||
"unmute": "Wyłącz wyciszenie",
|
"unmute": "Wyłącz wyciszenie",
|
||||||
"username": "Nazwa użytkownika",
|
"username": "Nazwa użytkownika",
|
||||||
"verification_cancelled": "Weryfikacja anulowana",
|
"verification_cancelled": "Weryfikacja anulowana",
|
||||||
"video": "Wideo"
|
"video": "Wideo",
|
||||||
|
"attachment": "Załącznik",
|
||||||
|
"light": "Jasny",
|
||||||
|
"dark": "Ciemny",
|
||||||
|
"warning": "Ostrzeżenie",
|
||||||
|
"home": "Strona główna",
|
||||||
|
"favourites": "Ulubione",
|
||||||
|
"thread": "Wątek",
|
||||||
|
"threads": "Wątki",
|
||||||
|
"user": "Użytkownik",
|
||||||
|
"room": "Pokój",
|
||||||
|
"theme": "Motyw",
|
||||||
|
"name": "Nazwa",
|
||||||
|
"description": "Opis",
|
||||||
|
"public": "Publiczna",
|
||||||
|
"private": "Prywatna",
|
||||||
|
"options": "Opcje",
|
||||||
|
"appearance": "Wygląd",
|
||||||
|
"homeserver": "Serwer domowy",
|
||||||
|
"help": "Pomoc",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Laboratoria"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Kontynuuj",
|
"continue": "Kontynuuj",
|
||||||
|
@ -3957,5 +3957,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu użytkownika"
|
"user_menu": "Menu użytkownika"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Strona główna"
|
||||||
|
}
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"Failed to reject invitation": "Falha ao tentar rejeitar convite",
|
"Failed to reject invitation": "Falha ao tentar rejeitar convite",
|
||||||
"Failed to unban": "Não foi possível desfazer o banimento",
|
"Failed to unban": "Não foi possível desfazer o banimento",
|
||||||
"Favourite": "Favorito",
|
"Favourite": "Favorito",
|
||||||
"Favourites": "Favoritos",
|
|
||||||
"Filter room members": "Filtrar integrantes da sala",
|
"Filter room members": "Filtrar integrantes da sala",
|
||||||
"Forget room": "Esquecer sala",
|
"Forget room": "Esquecer sala",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Por questões de segurança, esta sessão foi encerrada. Por gentileza conecte-se novamente.",
|
"For security, this session has been signed out. Please sign in again.": "Por questões de segurança, esta sessão foi encerrada. Por gentileza conecte-se novamente.",
|
||||||
|
@ -33,11 +32,9 @@
|
||||||
"Invalid Email Address": "Endereço de email inválido",
|
"Invalid Email Address": "Endereço de email inválido",
|
||||||
"Invites user with given id to current room": "Convidar usuários com um dado identificador para esta sala",
|
"Invites user with given id to current room": "Convidar usuários com um dado identificador para esta sala",
|
||||||
"Sign in with": "Quero entrar",
|
"Sign in with": "Quero entrar",
|
||||||
"Labs": "Laboratório",
|
|
||||||
"Logout": "Sair",
|
"Logout": "Sair",
|
||||||
"Low priority": "Baixa prioridade",
|
"Low priority": "Baixa prioridade",
|
||||||
"Moderator": "Moderador/a",
|
"Moderator": "Moderador/a",
|
||||||
"Name": "Nome",
|
|
||||||
"New passwords must match each other.": "Novas palavras-passe devem coincidir.",
|
"New passwords must match each other.": "Novas palavras-passe devem coincidir.",
|
||||||
"Notifications": "Notificações",
|
"Notifications": "Notificações",
|
||||||
"<not supported>": "<não suportado>",
|
"<not supported>": "<não suportado>",
|
||||||
|
@ -133,7 +130,6 @@
|
||||||
"one": "e um outro..."
|
"one": "e um outro..."
|
||||||
},
|
},
|
||||||
"Are you sure?": "Você tem certeza?",
|
"Are you sure?": "Você tem certeza?",
|
||||||
"Attachment": "Anexo",
|
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s de %(monthName)s de %(fullYear)s às %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s de %(monthName)s de %(fullYear)s às %(time)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ão consigo conectar ao servidor padrão através de HTTP quando uma URL HTTPS está na barra de endereços do seu navegador. Use HTTPS ou então <a>habilite scripts não seguros no seu navegador</a>.",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Não consigo conectar ao servidor padrão através de HTTP quando uma URL HTTPS está na barra de endereços do seu navegador. Use HTTPS ou então <a>habilite scripts não seguros no seu navegador</a>.",
|
||||||
"Change Password": "Alterar Palavra-Passe",
|
"Change Password": "Alterar Palavra-Passe",
|
||||||
|
@ -163,7 +159,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Parece que você está em uma chamada. Tem certeza que quer sair?",
|
"You seem to be in a call, are you sure you want to quit?": "Parece que você está em uma chamada. Tem certeza que quer sair?",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Parece que você está enviando arquivos. Tem certeza que quer sair?",
|
"You seem to be uploading files, are you sure you want to quit?": "Parece que você está enviando arquivos. Tem certeza que quer sair?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Você não poderá desfazer esta mudança, pois estará dando a este(a) usuário(a) o mesmo nível de permissões que você.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Você não poderá desfazer esta mudança, pois estará dando a este(a) usuário(a) o mesmo nível de permissões que você.",
|
||||||
"Room": "Sala",
|
|
||||||
"Cancel": "Cancelar",
|
"Cancel": "Cancelar",
|
||||||
"Always show message timestamps": "Sempre mostrar as datas das mensagens",
|
"Always show message timestamps": "Sempre mostrar as datas das mensagens",
|
||||||
"Authentication": "Autenticação",
|
"Authentication": "Autenticação",
|
||||||
|
@ -177,7 +172,6 @@
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar os horários em formato de 12h (p.ex: 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar os horários em formato de 12h (p.ex: 2:30pm)",
|
||||||
"Warning!": "Atenção!",
|
"Warning!": "Atenção!",
|
||||||
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
|
||||||
"Options": "Opções",
|
|
||||||
"Passphrases must match": "As frases-passe devem coincidir",
|
"Passphrases must match": "As frases-passe devem coincidir",
|
||||||
"Passphrase must not be empty": "A frase-passe não pode estar vazia",
|
"Passphrase must not be empty": "A frase-passe não pode estar vazia",
|
||||||
"Export room keys": "Exportar chaves de sala",
|
"Export room keys": "Exportar chaves de sala",
|
||||||
|
@ -250,7 +244,6 @@
|
||||||
"Close": "Fechar",
|
"Close": "Fechar",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
"Unnamed Room": "Sala sem nome",
|
"Unnamed Room": "Sala sem nome",
|
||||||
"Home": "Início",
|
|
||||||
"Something went wrong!": "Algo deu errado!",
|
"Something went wrong!": "Algo deu errado!",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nível de permissão %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nível de permissão %(powerLevelNumber)s)",
|
||||||
"Accept": "Aceitar",
|
"Accept": "Aceitar",
|
||||||
|
@ -279,7 +272,6 @@
|
||||||
"%(widgetName)s widget modified by %(senderName)s": "Widget %(widgetName)s modificado por %(senderName)s",
|
"%(widgetName)s widget modified by %(senderName)s": "Widget %(widgetName)s modificado por %(senderName)s",
|
||||||
"Ignore": "Ignorar",
|
"Ignore": "Ignorar",
|
||||||
"Ignored user": "Utilizador ignorado",
|
"Ignored user": "Utilizador ignorado",
|
||||||
"Description": "Descrição",
|
|
||||||
"Unknown": "Desconhecido",
|
"Unknown": "Desconhecido",
|
||||||
"Unignore": "Deixar de ignorar",
|
"Unignore": "Deixar de ignorar",
|
||||||
"You are now ignoring %(userId)s": "Está agora a ignorar %(userId)s",
|
"You are now ignoring %(userId)s": "Está agora a ignorar %(userId)s",
|
||||||
|
@ -298,7 +290,6 @@
|
||||||
"On": "Ativado",
|
"On": "Ativado",
|
||||||
"Changelog": "Histórico de alterações",
|
"Changelog": "Histórico de alterações",
|
||||||
"Waiting for response from server": "À espera de resposta do servidor",
|
"Waiting for response from server": "À espera de resposta do servidor",
|
||||||
"Warning": "Aviso",
|
|
||||||
"This Room": "Esta sala",
|
"This Room": "Esta sala",
|
||||||
"Resend": "Reenviar",
|
"Resend": "Reenviar",
|
||||||
"Messages containing my display name": "Mensagens contendo o meu nome público",
|
"Messages containing my display name": "Mensagens contendo o meu nome público",
|
||||||
|
@ -752,7 +743,16 @@
|
||||||
"settings": "Configurações",
|
"settings": "Configurações",
|
||||||
"success": "Sucesso",
|
"success": "Sucesso",
|
||||||
"unmute": "Tirar do mudo",
|
"unmute": "Tirar do mudo",
|
||||||
"username": "Nome de utilizador"
|
"username": "Nome de utilizador",
|
||||||
|
"attachment": "Anexo",
|
||||||
|
"warning": "Aviso",
|
||||||
|
"home": "Início",
|
||||||
|
"favourites": "Favoritos",
|
||||||
|
"room": "Sala",
|
||||||
|
"name": "Nome",
|
||||||
|
"description": "Descrição",
|
||||||
|
"options": "Opções",
|
||||||
|
"labs": "Laboratório"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continuar",
|
"continue": "Continuar",
|
||||||
|
@ -768,5 +768,6 @@
|
||||||
"save": "Salvar",
|
"save": "Salvar",
|
||||||
"start_chat": "Iniciar conversa",
|
"start_chat": "Iniciar conversa",
|
||||||
"view_source": "Ver a fonte"
|
"view_source": "Ver a fonte"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Início"
|
||||||
|
}
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"Failed to reject invitation": "Falha ao tentar recusar o convite",
|
"Failed to reject invitation": "Falha ao tentar recusar o convite",
|
||||||
"Failed to unban": "Não foi possível remover o banimento",
|
"Failed to unban": "Não foi possível remover o banimento",
|
||||||
"Favourite": "Favoritar",
|
"Favourite": "Favoritar",
|
||||||
"Favourites": "Favoritos",
|
|
||||||
"Filter room members": "Pesquisar participantes da sala",
|
"Filter room members": "Pesquisar participantes da sala",
|
||||||
"Forget room": "Esquecer sala",
|
"Forget room": "Esquecer sala",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Por questões de segurança, esta sessão foi encerrada. Por gentileza conecte-se novamente.",
|
"For security, this session has been signed out. Please sign in again.": "Por questões de segurança, esta sessão foi encerrada. Por gentileza conecte-se novamente.",
|
||||||
|
@ -33,11 +32,9 @@
|
||||||
"Invalid Email Address": "Endereço de e-mail inválido",
|
"Invalid Email Address": "Endereço de e-mail inválido",
|
||||||
"Invites user with given id to current room": "Convida o usuário com o ID especificado para esta sala",
|
"Invites user with given id to current room": "Convida o usuário com o ID especificado para esta sala",
|
||||||
"Sign in with": "Entrar com",
|
"Sign in with": "Entrar com",
|
||||||
"Labs": "Laboratório",
|
|
||||||
"Logout": "Sair",
|
"Logout": "Sair",
|
||||||
"Low priority": "Baixa prioridade",
|
"Low priority": "Baixa prioridade",
|
||||||
"Moderator": "Moderador/a",
|
"Moderator": "Moderador/a",
|
||||||
"Name": "Nome",
|
|
||||||
"New passwords must match each other.": "As novas senhas informadas precisam ser idênticas.",
|
"New passwords must match each other.": "As novas senhas informadas precisam ser idênticas.",
|
||||||
"Notifications": "Notificações",
|
"Notifications": "Notificações",
|
||||||
"<not supported>": "<não suportado>",
|
"<not supported>": "<não suportado>",
|
||||||
|
@ -133,7 +130,6 @@
|
||||||
"other": "e %(count)s outros..."
|
"other": "e %(count)s outros..."
|
||||||
},
|
},
|
||||||
"Are you sure?": "Você tem certeza?",
|
"Are you sure?": "Você tem certeza?",
|
||||||
"Attachment": "Anexo",
|
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s de %(monthName)s de %(fullYear)s às %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s de %(monthName)s de %(fullYear)s às %(time)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>.": "Uma conexão com o servidor local via HTTP não pode ser estabelecida se a barra de endereços do navegador contiver um endereço HTTPS. Use HTTPS ou, em vez disso, permita ao navegador executar <a>scripts não seguros</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>.": "Uma conexão com o servidor local via HTTP não pode ser estabelecida se a barra de endereços do navegador contiver um endereço HTTPS. Use HTTPS ou, em vez disso, permita ao navegador executar <a>scripts não seguros</a>.",
|
||||||
"Change Password": "Alterar senha",
|
"Change Password": "Alterar senha",
|
||||||
|
@ -163,7 +159,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Parece que você está em uma chamada. Tem certeza que quer sair?",
|
"You seem to be in a call, are you sure you want to quit?": "Parece que você está em uma chamada. Tem certeza que quer sair?",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Parece que você está enviando arquivos. Tem certeza que quer sair?",
|
"You seem to be uploading files, are you sure you want to quit?": "Parece que você está enviando arquivos. Tem certeza que quer sair?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Você não poderá desfazer essa alteração, pois está promovendo o usuário ao mesmo nível de permissão que você.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Você não poderá desfazer essa alteração, pois está promovendo o usuário ao mesmo nível de permissão que você.",
|
||||||
"Room": "Sala",
|
|
||||||
"Cancel": "Cancelar",
|
"Cancel": "Cancelar",
|
||||||
"Always show message timestamps": "Sempre mostrar as datas das mensagens",
|
"Always show message timestamps": "Sempre mostrar as datas das mensagens",
|
||||||
"Authentication": "Autenticação",
|
"Authentication": "Autenticação",
|
||||||
|
@ -177,7 +172,6 @@
|
||||||
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar os horários em formato de 12h (p.ex: 2:30pm)",
|
"Show timestamps in 12 hour format (e.g. 2:30pm)": "Mostrar os horários em formato de 12h (p.ex: 2:30pm)",
|
||||||
"Warning!": "Atenção!",
|
"Warning!": "Atenção!",
|
||||||
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
|
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
|
||||||
"Options": "Opções",
|
|
||||||
"Passphrases must match": "As senhas têm que ser iguais",
|
"Passphrases must match": "As senhas têm que ser iguais",
|
||||||
"Passphrase must not be empty": "A frase não pode estar em branco",
|
"Passphrase must not be empty": "A frase não pode estar em branco",
|
||||||
"Export room keys": "Exportar chaves de sala",
|
"Export room keys": "Exportar chaves de sala",
|
||||||
|
@ -231,7 +225,6 @@
|
||||||
"You have <a>disabled</a> URL previews by default.": "Você <a>desativou</a> pré-visualizações de links por padrão.",
|
"You have <a>disabled</a> URL previews by default.": "Você <a>desativou</a> pré-visualizações de links por padrão.",
|
||||||
"You have <a>enabled</a> URL previews by default.": "Você <a>ativou</a> pré-visualizações de links por padrão.",
|
"You have <a>enabled</a> URL previews by default.": "Você <a>ativou</a> pré-visualizações de links por padrão.",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
"Home": "Home",
|
|
||||||
"Uploading %(filename)s": "Enviando o arquivo %(filename)s",
|
"Uploading %(filename)s": "Enviando o arquivo %(filename)s",
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
"one": "Enviando o arquivo %(filename)s e %(count)s outros arquivos",
|
"one": "Enviando o arquivo %(filename)s e %(count)s outros arquivos",
|
||||||
|
@ -407,10 +400,8 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "E %(count)s mais..."
|
"other": "E %(count)s mais..."
|
||||||
},
|
},
|
||||||
"Description": "Descrição",
|
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Esta sala não é pública. Você não poderá voltar sem ser convidada/o.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Esta sala não é pública. Você não poderá voltar sem ser convidada/o.",
|
||||||
"Old cryptography data detected": "Dados de criptografia antigos foram detectados",
|
"Old cryptography data detected": "Dados de criptografia antigos foram detectados",
|
||||||
"Warning": "Atenção",
|
|
||||||
"Check for update": "Verificar atualizações",
|
"Check for update": "Verificar atualizações",
|
||||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "Note que você está se conectando ao servidor %(hs)s, e não ao servidor matrix.org.",
|
"Please note you are logging into the %(hs)s server, not matrix.org.": "Note que você está se conectando ao servidor %(hs)s, e não ao servidor matrix.org.",
|
||||||
"Define the power level of a user": "Define o nível de permissões de um usuário",
|
"Define the power level of a user": "Define o nível de permissões de um usuário",
|
||||||
|
@ -724,7 +715,6 @@
|
||||||
"Email addresses": "Endereços de e-mail",
|
"Email addresses": "Endereços de e-mail",
|
||||||
"Phone numbers": "Números de Telefone",
|
"Phone numbers": "Números de Telefone",
|
||||||
"Language and region": "Idioma e região",
|
"Language and region": "Idioma e região",
|
||||||
"Theme": "Tema",
|
|
||||||
"Account management": "Gerenciamento da Conta",
|
"Account management": "Gerenciamento da Conta",
|
||||||
"General": "Geral",
|
"General": "Geral",
|
||||||
"Credits": "Licenças",
|
"Credits": "Licenças",
|
||||||
|
@ -851,8 +841,6 @@
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania salas que correspondiam a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania salas que correspondiam a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania servidores que correspondiam a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania servidores que correspondiam a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania o que correspondia a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s alterou uma regra que bania o que correspondia a %(oldGlob)s para corresponder a %(newGlob)s devido à %(reason)s",
|
||||||
"Light": "Claro",
|
|
||||||
"Dark": "Escuro",
|
|
||||||
"You signed in to a new session without verifying it:": "Você entrou em uma nova sessão sem confirmá-la:",
|
"You signed in to a new session without verifying it:": "Você entrou em uma nova sessão sem confirmá-la:",
|
||||||
"Verify your other session using one of the options below.": "Confirme suas outras sessões usando uma das opções abaixo.",
|
"Verify your other session using one of the options below.": "Confirme suas outras sessões usando uma das opções abaixo.",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) entrou em uma nova sessão sem confirmá-la:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) entrou em uma nova sessão sem confirmá-la:",
|
||||||
|
@ -1275,7 +1263,6 @@
|
||||||
"Reject & Ignore user": "Recusar e bloquear usuário",
|
"Reject & Ignore user": "Recusar e bloquear usuário",
|
||||||
"You're previewing %(roomName)s. Want to join it?": "Você está visualizando %(roomName)s. Deseja participar?",
|
"You're previewing %(roomName)s. Want to join it?": "Você está visualizando %(roomName)s. Deseja participar?",
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s não pode ser visualizado. Deseja participar?",
|
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s não pode ser visualizado. Deseja participar?",
|
||||||
"Appearance": "Aparência",
|
|
||||||
"Show rooms with unread messages first": "Mostrar salas não lidas em primeiro",
|
"Show rooms with unread messages first": "Mostrar salas não lidas em primeiro",
|
||||||
"Show previews of messages": "Mostrar pré-visualizações de mensagens",
|
"Show previews of messages": "Mostrar pré-visualizações de mensagens",
|
||||||
"Sort by": "Classificar por",
|
"Sort by": "Classificar por",
|
||||||
|
@ -2063,7 +2050,6 @@
|
||||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Apenas um aviso: se você não adicionar um e-mail e depois esquecer sua senha, poderá <b>perder permanentemente o acesso à sua conta</b>.",
|
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Apenas um aviso: se você não adicionar um e-mail e depois esquecer sua senha, poderá <b>perder permanentemente o acesso à sua conta</b>.",
|
||||||
"Continuing without email": "Continuar sem e-mail",
|
"Continuing without email": "Continuar sem e-mail",
|
||||||
"Continue with %(provider)s": "Continuar com %(provider)s",
|
"Continue with %(provider)s": "Continuar com %(provider)s",
|
||||||
"Homeserver": "Servidor local",
|
|
||||||
"Server Options": "Opções do servidor",
|
"Server Options": "Opções do servidor",
|
||||||
"Reason (optional)": "Motivo (opcional)",
|
"Reason (optional)": "Motivo (opcional)",
|
||||||
"Call failed because webcam or microphone could not be accessed. Check that:": "A chamada falhou porque a câmera ou o microfone não puderam ser acessados. Verifique se:",
|
"Call failed because webcam or microphone could not be accessed. Check that:": "A chamada falhou porque a câmera ou o microfone não puderam ser acessados. Verifique se:",
|
||||||
|
@ -2162,8 +2148,6 @@
|
||||||
"Skip for now": "Ignorar por enquanto",
|
"Skip for now": "Ignorar por enquanto",
|
||||||
"Random": "Aleatório",
|
"Random": "Aleatório",
|
||||||
"Welcome to <name/>": "Boas-vindas ao <name/>",
|
"Welcome to <name/>": "Boas-vindas ao <name/>",
|
||||||
"Private": "Privado",
|
|
||||||
"Public": "Público",
|
|
||||||
"Delete": "Excluir",
|
"Delete": "Excluir",
|
||||||
"This homeserver has been blocked by its administrator.": "Este servidor local foi bloqueado pelo seu administrador.",
|
"This homeserver has been blocked by its administrator.": "Este servidor local foi bloqueado pelo seu administrador.",
|
||||||
"You're already in a call with this person.": "Você já está em uma chamada com essa pessoa.",
|
"You're already in a call with this person.": "Você já está em uma chamada com essa pessoa.",
|
||||||
|
@ -2551,7 +2535,6 @@
|
||||||
"Files": "Arquivos",
|
"Files": "Arquivos",
|
||||||
"Close this widget to view it in this panel": "Feche este widget para visualizá-lo neste painel",
|
"Close this widget to view it in this panel": "Feche este widget para visualizá-lo neste painel",
|
||||||
"Unpin this widget to view it in this panel": "Solte este widget para visualizá-lo neste painel",
|
"Unpin this widget to view it in this panel": "Solte este widget para visualizá-lo neste painel",
|
||||||
"Threads": "Tópicos",
|
|
||||||
"Chat": "Bate-papo",
|
"Chat": "Bate-papo",
|
||||||
"Yours, or the other users' session": "A sua ou a sessão de outros usuários",
|
"Yours, or the other users' session": "A sua ou a sessão de outros usuários",
|
||||||
"Yours, or the other users' internet connection": "A sua ou a conexão de Internet de outros usuários",
|
"Yours, or the other users' internet connection": "A sua ou a conexão de Internet de outros usuários",
|
||||||
|
@ -2863,7 +2846,24 @@
|
||||||
"unmute": "Tirar do mudo",
|
"unmute": "Tirar do mudo",
|
||||||
"username": "Nome de usuário",
|
"username": "Nome de usuário",
|
||||||
"verification_cancelled": "Confirmação cancelada",
|
"verification_cancelled": "Confirmação cancelada",
|
||||||
"video": "Vídeo"
|
"video": "Vídeo",
|
||||||
|
"attachment": "Anexo",
|
||||||
|
"light": "Claro",
|
||||||
|
"dark": "Escuro",
|
||||||
|
"warning": "Atenção",
|
||||||
|
"home": "Home",
|
||||||
|
"favourites": "Favoritos",
|
||||||
|
"threads": "Tópicos",
|
||||||
|
"room": "Sala",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Nome",
|
||||||
|
"description": "Descrição",
|
||||||
|
"public": "Público",
|
||||||
|
"private": "Privado",
|
||||||
|
"options": "Opções",
|
||||||
|
"appearance": "Aparência",
|
||||||
|
"homeserver": "Servidor local",
|
||||||
|
"labs": "Laboratório"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Continuar",
|
"continue": "Continuar",
|
||||||
|
@ -2898,5 +2898,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu do usuário"
|
"user_menu": "Menu do usuário"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Home"
|
||||||
|
}
|
||||||
|
|
|
@ -75,4 +75,4 @@
|
||||||
"action": {
|
"action": {
|
||||||
"ok": "OK"
|
"ok": "OK"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
"Failed to reject invitation": "Не удалось отклонить приглашение",
|
"Failed to reject invitation": "Не удалось отклонить приглашение",
|
||||||
"Failed to unban": "Не удалось разблокировать",
|
"Failed to unban": "Не удалось разблокировать",
|
||||||
"Favourite": "Избранное",
|
"Favourite": "Избранное",
|
||||||
"Favourites": "Избранные",
|
|
||||||
"Filter room members": "Поиск по участникам",
|
"Filter room members": "Поиск по участникам",
|
||||||
"Forget room": "Забыть комнату",
|
"Forget room": "Забыть комнату",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Для обеспечения безопасности ваш сеанс был завершён. Пожалуйста, войдите снова.",
|
"For security, this session has been signed out. Please sign in again.": "Для обеспечения безопасности ваш сеанс был завершён. Пожалуйста, войдите снова.",
|
||||||
|
@ -29,11 +28,9 @@
|
||||||
"Invalid Email Address": "Недопустимый email",
|
"Invalid Email Address": "Недопустимый email",
|
||||||
"Invites user with given id to current room": "Приглашает пользователя с заданным ID в текущую комнату",
|
"Invites user with given id to current room": "Приглашает пользователя с заданным ID в текущую комнату",
|
||||||
"Sign in with": "Войти с помощью",
|
"Sign in with": "Войти с помощью",
|
||||||
"Labs": "Лаборатория",
|
|
||||||
"Logout": "Выйти",
|
"Logout": "Выйти",
|
||||||
"Low priority": "Маловажные",
|
"Low priority": "Маловажные",
|
||||||
"Moderator": "Модератор",
|
"Moderator": "Модератор",
|
||||||
"Name": "Название",
|
|
||||||
"New passwords must match each other.": "Новые пароли должны совпадать.",
|
"New passwords must match each other.": "Новые пароли должны совпадать.",
|
||||||
"Notifications": "Уведомления",
|
"Notifications": "Уведомления",
|
||||||
"<not supported>": "<не поддерживается>",
|
"<not supported>": "<не поддерживается>",
|
||||||
|
@ -112,7 +109,6 @@
|
||||||
"Authentication": "Аутентификация",
|
"Authentication": "Аутентификация",
|
||||||
"%(items)s and %(lastItem)s": "%(items)s и %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s и %(lastItem)s",
|
||||||
"An error has occurred.": "Произошла ошибка.",
|
"An error has occurred.": "Произошла ошибка.",
|
||||||
"Attachment": "Вложение",
|
|
||||||
"Change Password": "Сменить пароль",
|
"Change Password": "Сменить пароль",
|
||||||
"Command error": "Ошибка команды",
|
"Command error": "Ошибка команды",
|
||||||
"Confirm password": "Подтвердите пароль",
|
"Confirm password": "Подтвердите пароль",
|
||||||
|
@ -155,7 +151,6 @@
|
||||||
"This phone number is already in use": "Этот номер телефона уже используется",
|
"This phone number is already in use": "Этот номер телефона уже используется",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Похоже, вы сейчас отправляете файлы. Уверены, что хотите выйти?",
|
"You seem to be uploading files, are you sure you want to quit?": "Похоже, вы сейчас отправляете файлы. Уверены, что хотите выйти?",
|
||||||
"%(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",
|
||||||
"Room": "Комната",
|
|
||||||
"Cancel": "Отмена",
|
"Cancel": "Отмена",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Не удается подключиться к домашнему серверу через HTTP, так как в адресной строке браузера указан адрес HTTPS. Используйте HTTPS или <a>включите небезопасные скрипты</a>.",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "Не удается подключиться к домашнему серверу через HTTP, так как в адресной строке браузера указан адрес HTTPS. Используйте HTTPS или <a>включите небезопасные скрипты</a>.",
|
||||||
"Dismiss": "Закрыть",
|
"Dismiss": "Закрыть",
|
||||||
|
@ -198,7 +193,6 @@
|
||||||
"You have <a>enabled</a> URL previews by default.": "Предпросмотр ссылок по умолчанию <a>включен</a> для вас.",
|
"You have <a>enabled</a> URL previews by default.": "Предпросмотр ссылок по умолчанию <a>включен</a> для вас.",
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Звонок не завершён. Уверены, что хотите выйти?",
|
"You seem to be in a call, are you sure you want to quit?": "Звонок не завершён. Уверены, что хотите выйти?",
|
||||||
"You 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.": "Вы не сможете отменить это действие, так как этот пользователь получит уровень прав, равный вашему.",
|
||||||
"Options": "Дополнительно",
|
|
||||||
"Passphrases must match": "Мнемонические фразы должны совпадать",
|
"Passphrases must match": "Мнемонические фразы должны совпадать",
|
||||||
"Passphrase must not be empty": "Мнемоническая фраза не может быть пустой",
|
"Passphrase must not be empty": "Мнемоническая фраза не может быть пустой",
|
||||||
"Export room keys": "Экспорт ключей комнаты",
|
"Export room keys": "Экспорт ключей комнаты",
|
||||||
|
@ -240,7 +234,6 @@
|
||||||
"You must <a>register</a> to use this functionality": "Вы должны <a>зарегистрироваться</a>, чтобы использовать эту функцию",
|
"You must <a>register</a> to use this functionality": "Вы должны <a>зарегистрироваться</a>, чтобы использовать эту функцию",
|
||||||
"New Password": "Новый пароль",
|
"New Password": "Новый пароль",
|
||||||
"Something went wrong!": "Что-то пошло не так!",
|
"Something went wrong!": "Что-то пошло не так!",
|
||||||
"Home": "Главная",
|
|
||||||
"Accept": "Принять",
|
"Accept": "Принять",
|
||||||
"Admin Tools": "Инструменты администратора",
|
"Admin Tools": "Инструменты администратора",
|
||||||
"Close": "Закрыть",
|
"Close": "Закрыть",
|
||||||
|
@ -286,7 +279,6 @@
|
||||||
"Stops ignoring a user, showing their messages going forward": "Прекращает игнорирование пользователя, показывая их будущие сообщения",
|
"Stops ignoring a user, showing their messages going forward": "Прекращает игнорирование пользователя, показывая их будущие сообщения",
|
||||||
"Ignores a user, hiding their messages from you": "Игнорирует пользователя, скрывая сообщения от вас",
|
"Ignores a user, hiding their messages from you": "Игнорирует пользователя, скрывая сообщения от вас",
|
||||||
"Banned by %(displayName)s": "Заблокирован(а) %(displayName)s",
|
"Banned by %(displayName)s": "Заблокирован(а) %(displayName)s",
|
||||||
"Description": "Описание",
|
|
||||||
"Jump to read receipt": "Перейти к последнему прочтённому",
|
"Jump to read receipt": "Перейти к последнему прочтённому",
|
||||||
"Message Pinning": "Закреплённые сообщения",
|
"Message Pinning": "Закреплённые сообщения",
|
||||||
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s изменил(а) закреплённые сообщения в этой комнате.",
|
"%(senderName)s changed the pinned messages for the room.": "%(senderName)s изменил(а) закреплённые сообщения в этой комнате.",
|
||||||
|
@ -411,7 +403,6 @@
|
||||||
"expand": "развернуть",
|
"expand": "развернуть",
|
||||||
"Old cryptography data detected": "Обнаружены старые криптографические данные",
|
"Old cryptography data detected": "Обнаружены старые криптографические данные",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Обнаружены данные из более старой версии %(brand)s. Это приведет к сбою криптографии в более ранней версии. В этой версии не могут быть расшифрованы сообщения, которые использовались недавно при использовании старой версии. Это также может привести к сбою обмена сообщениями с этой версией. Если возникают неполадки, выйдите и снова войдите в систему. Чтобы сохранить журнал сообщений, экспортируйте и повторно импортируйте ключи.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Обнаружены данные из более старой версии %(brand)s. Это приведет к сбою криптографии в более ранней версии. В этой версии не могут быть расшифрованы сообщения, которые использовались недавно при использовании старой версии. Это также может привести к сбою обмена сообщениями с этой версией. Если возникают неполадки, выйдите и снова войдите в систему. Чтобы сохранить журнал сообщений, экспортируйте и повторно импортируйте ключи.",
|
||||||
"Warning": "Внимание",
|
|
||||||
"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.": "После понижения своих привилегий вы не сможете это отменить. Если вы являетесь последним привилегированным пользователем в этой комнате, выдать права кому-либо заново будет невозможно.",
|
"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.": "После понижения своих привилегий вы не сможете это отменить. Если вы являетесь последним привилегированным пользователем в этой комнате, выдать права кому-либо заново будет невозможно.",
|
||||||
"Send an encrypted reply…": "Отправить зашифрованный ответ…",
|
"Send an encrypted reply…": "Отправить зашифрованный ответ…",
|
||||||
"Send an encrypted message…": "Отправить зашифрованное сообщение…",
|
"Send an encrypted message…": "Отправить зашифрованное сообщение…",
|
||||||
|
@ -594,7 +585,6 @@
|
||||||
"Email addresses": "Адреса электронной почты",
|
"Email addresses": "Адреса электронной почты",
|
||||||
"Phone numbers": "Телефонные номера",
|
"Phone numbers": "Телефонные номера",
|
||||||
"Language and region": "Язык и регион",
|
"Language and region": "Язык и регион",
|
||||||
"Theme": "Тема",
|
|
||||||
"Account management": "Управление учётной записью",
|
"Account management": "Управление учётной записью",
|
||||||
"Chat with %(brand)s Bot": "Чат с ботом %(brand)s",
|
"Chat with %(brand)s Bot": "Чат с ботом %(brand)s",
|
||||||
"Help & About": "Помощь и о программе",
|
"Help & About": "Помощь и о программе",
|
||||||
|
@ -1389,8 +1379,6 @@
|
||||||
"For extra security, verify this user by checking a one-time code on both of your devices.": "Для дополнительной безопасности подтвердите этого пользователя, сравнив одноразовый код на ваших устройствах.",
|
"For extra security, verify this user by checking a one-time code on both of your devices.": "Для дополнительной безопасности подтвердите этого пользователя, сравнив одноразовый код на ваших устройствах.",
|
||||||
"Start verification again from their profile.": "Начните подтверждение заново в профиле пользователя.",
|
"Start verification again from their profile.": "Начните подтверждение заново в профиле пользователя.",
|
||||||
"Send a Direct Message": "Отправить личное сообщение",
|
"Send a Direct Message": "Отправить личное сообщение",
|
||||||
"Light": "Светлая",
|
|
||||||
"Dark": "Темная",
|
|
||||||
"Recent Conversations": "Недавние Диалоги",
|
"Recent Conversations": "Недавние Диалоги",
|
||||||
"a key signature": "отпечаток ключа",
|
"a key signature": "отпечаток ключа",
|
||||||
"Upload completed": "Отправка успешно завершена",
|
"Upload completed": "Отправка успешно завершена",
|
||||||
|
@ -1439,7 +1427,6 @@
|
||||||
"Please verify the room ID or address and try again.": "Проверьте ID комнаты или адрес и попробуйте снова.",
|
"Please verify the room ID or address and try again.": "Проверьте ID комнаты или адрес и попробуйте снова.",
|
||||||
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Администратор вашего сервера отключил сквозное шифрование по умолчанию в приватных комнатах и диалогах.",
|
"Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Администратор вашего сервера отключил сквозное шифрование по умолчанию в приватных комнатах и диалогах.",
|
||||||
"Explore Public Rooms": "Просмотреть публичные комнаты",
|
"Explore Public Rooms": "Просмотреть публичные комнаты",
|
||||||
"Appearance": "Внешний вид",
|
|
||||||
"Show rooms with unread messages first": "Комнаты с непрочитанными сообщениями в начале",
|
"Show rooms with unread messages first": "Комнаты с непрочитанными сообщениями в начале",
|
||||||
"Show previews of messages": "Показывать последнее сообщение",
|
"Show previews of messages": "Показывать последнее сообщение",
|
||||||
"Sort by": "Сортировать",
|
"Sort by": "Сортировать",
|
||||||
|
@ -1755,7 +1742,6 @@
|
||||||
"Other homeserver": "Другой домашний сервер",
|
"Other homeserver": "Другой домашний сервер",
|
||||||
"Server Options": "Параметры сервера",
|
"Server Options": "Параметры сервера",
|
||||||
"Decline All": "Отклонить все",
|
"Decline All": "Отклонить все",
|
||||||
"Homeserver": "Домашний сервер",
|
|
||||||
"Approve": "Согласиться",
|
"Approve": "Согласиться",
|
||||||
"Approve widget permissions": "Одобрить разрешения виджета",
|
"Approve widget permissions": "Одобрить разрешения виджета",
|
||||||
"Send stickers into your active room": "Отправить стикеры в активную комнату",
|
"Send stickers into your active room": "Отправить стикеры в активную комнату",
|
||||||
|
@ -2203,9 +2189,7 @@
|
||||||
"Your private space": "Ваше приватное пространство",
|
"Your private space": "Ваше приватное пространство",
|
||||||
"Your public space": "Ваше публичное пространство",
|
"Your public space": "Ваше публичное пространство",
|
||||||
"Invite only, best for yourself or teams": "Только по приглашениям, лучший вариант для себя или команды",
|
"Invite only, best for yourself or teams": "Только по приглашениям, лучший вариант для себя или команды",
|
||||||
"Private": "Приватное",
|
|
||||||
"Open space for anyone, best for communities": "Открытое пространство для всех, лучший вариант для сообществ",
|
"Open space for anyone, best for communities": "Открытое пространство для всех, лучший вариант для сообществ",
|
||||||
"Public": "Публичное",
|
|
||||||
"Create a space": "Создать пространство",
|
"Create a space": "Создать пространство",
|
||||||
"Delete": "Удалить",
|
"Delete": "Удалить",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Перейти к нижней части временной шкалы, когда вы отправляете сообщение",
|
"Jump to the bottom of the timeline when you send a message": "Перейти к нижней части временной шкалы, когда вы отправляете сообщение",
|
||||||
|
@ -2293,7 +2277,6 @@
|
||||||
"Avatar": "Аватар",
|
"Avatar": "Аватар",
|
||||||
"Join the beta": "Присоединиться к бета-версии",
|
"Join the beta": "Присоединиться к бета-версии",
|
||||||
"Leave the beta": "Покинуть бета-версию",
|
"Leave the beta": "Покинуть бета-версию",
|
||||||
"Beta": "Бета",
|
|
||||||
"Manage & explore rooms": "Управление и список комнат",
|
"Manage & explore rooms": "Управление и список комнат",
|
||||||
"Add space": "Добавить пространство",
|
"Add space": "Добавить пространство",
|
||||||
"Report": "Сообщить",
|
"Report": "Сообщить",
|
||||||
|
@ -2632,7 +2615,6 @@
|
||||||
"It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "Похоже, у вас нет бумажного ключа, или других сеансов, с которыми вы могли бы свериться. В этом сеансе вы не сможете получить доступ к старым зашифрованным сообщениям. Чтобы подтвердить свою личность в этом сеансе, вам нужно будет сбросить свои ключи шифрования.",
|
"It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "Похоже, у вас нет бумажного ключа, или других сеансов, с которыми вы могли бы свериться. В этом сеансе вы не сможете получить доступ к старым зашифрованным сообщениям. Чтобы подтвердить свою личность в этом сеансе, вам нужно будет сбросить свои ключи шифрования.",
|
||||||
"Really reset verification keys?": "Действительно сбросить ключи подтверждения?",
|
"Really reset verification keys?": "Действительно сбросить ключи подтверждения?",
|
||||||
"Create poll": "Создать опрос",
|
"Create poll": "Создать опрос",
|
||||||
"Thread": "Обсуждение",
|
|
||||||
"Reply to thread…": "Ответить на обсуждение…",
|
"Reply to thread…": "Ответить на обсуждение…",
|
||||||
"Reply to encrypted thread…": "Ответить на зашифрованное обсуждение…",
|
"Reply to encrypted thread…": "Ответить на зашифрованное обсуждение…",
|
||||||
"Updating spaces... (%(progress)s out of %(count)s)": {
|
"Updating spaces... (%(progress)s out of %(count)s)": {
|
||||||
|
@ -2659,7 +2641,6 @@
|
||||||
"Downloading": "Загрузка",
|
"Downloading": "Загрузка",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Они по-прежнему смогут получить доступ ко всему, где вы не являетесь администратором.",
|
"They'll still be able to access whatever you're not an admin of.": "Они по-прежнему смогут получить доступ ко всему, где вы не являетесь администратором.",
|
||||||
"Disinvite from %(roomName)s": "Отменить приглашение из %(roomName)s",
|
"Disinvite from %(roomName)s": "Отменить приглашение из %(roomName)s",
|
||||||
"Threads": "Обсуждения",
|
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s ответ",
|
"one": "%(count)s ответ",
|
||||||
"other": "%(count)s ответов"
|
"other": "%(count)s ответов"
|
||||||
|
@ -3338,7 +3319,6 @@
|
||||||
"Online community members": "Участники сообщества в сети",
|
"Online community members": "Участники сообщества в сети",
|
||||||
"You're in": "Вы в",
|
"You're in": "Вы в",
|
||||||
"Choose a locale": "Выберите регион",
|
"Choose a locale": "Выберите регион",
|
||||||
"Help": "Помощь",
|
|
||||||
"You need to have the right permissions in order to share locations in this room.": "У вас должны быть определённые разрешения, чтобы делиться местоположениями в этой комнате.",
|
"You need to have the right permissions in order to share locations in this room.": "У вас должны быть определённые разрешения, чтобы делиться местоположениями в этой комнате.",
|
||||||
"You don't have permission to share locations": "У вас недостаточно прав для публикации местоположений",
|
"You don't have permission to share locations": "У вас недостаточно прав для публикации местоположений",
|
||||||
"Send your first message to invite <displayName/> to chat": "Отправьте свое первое сообщение, чтобы пригласить <displayName/> в чат",
|
"Send your first message to invite <displayName/> to chat": "Отправьте свое первое сообщение, чтобы пригласить <displayName/> в чат",
|
||||||
|
@ -3627,7 +3607,27 @@
|
||||||
"unmute": "Вернуть право речи",
|
"unmute": "Вернуть право речи",
|
||||||
"username": "Псевдоним",
|
"username": "Псевдоним",
|
||||||
"verification_cancelled": "Подтверждение отменено",
|
"verification_cancelled": "Подтверждение отменено",
|
||||||
"video": "Видео"
|
"video": "Видео",
|
||||||
|
"attachment": "Вложение",
|
||||||
|
"light": "Светлая",
|
||||||
|
"dark": "Темная",
|
||||||
|
"warning": "Внимание",
|
||||||
|
"home": "Главная",
|
||||||
|
"favourites": "Избранные",
|
||||||
|
"thread": "Обсуждение",
|
||||||
|
"threads": "Обсуждения",
|
||||||
|
"room": "Комната",
|
||||||
|
"theme": "Тема",
|
||||||
|
"name": "Название",
|
||||||
|
"description": "Описание",
|
||||||
|
"public": "Публичное",
|
||||||
|
"private": "Приватное",
|
||||||
|
"options": "Дополнительно",
|
||||||
|
"appearance": "Внешний вид",
|
||||||
|
"homeserver": "Домашний сервер",
|
||||||
|
"help": "Помощь",
|
||||||
|
"beta": "Бета",
|
||||||
|
"labs": "Лаборатория"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Продолжить",
|
"continue": "Продолжить",
|
||||||
|
@ -3664,5 +3664,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Меню пользователя"
|
"user_menu": "Меню пользователя"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Главная"
|
||||||
|
}
|
||||||
|
|
|
@ -97,7 +97,6 @@
|
||||||
"Failed to set display name": "Nepodarilo sa nastaviť zobrazované meno",
|
"Failed to set display name": "Nepodarilo sa nastaviť zobrazované meno",
|
||||||
"Authentication": "Overenie",
|
"Authentication": "Overenie",
|
||||||
"Drop file here to upload": "Pretiahnutím sem nahráte súbor",
|
"Drop file here to upload": "Pretiahnutím sem nahráte súbor",
|
||||||
"Options": "Možnosti",
|
|
||||||
"Unban": "Povoliť vstup",
|
"Unban": "Povoliť vstup",
|
||||||
"Failed to ban user": "Nepodarilo sa zakázať používateľa",
|
"Failed to ban user": "Nepodarilo sa zakázať používateľa",
|
||||||
"Failed to mute user": "Nepodarilo sa umlčať používateľa",
|
"Failed to mute user": "Nepodarilo sa umlčať používateľa",
|
||||||
|
@ -116,7 +115,6 @@
|
||||||
"Invited": "Pozvaní",
|
"Invited": "Pozvaní",
|
||||||
"Filter room members": "Filtrovať členov v miestnosti",
|
"Filter room members": "Filtrovať členov v miestnosti",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (oprávnenie %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (oprávnenie %(powerLevelNumber)s)",
|
||||||
"Attachment": "Príloha",
|
|
||||||
"Hangup": "Zavesiť",
|
"Hangup": "Zavesiť",
|
||||||
"Voice call": "Hlasový hovor",
|
"Voice call": "Hlasový hovor",
|
||||||
"Video call": "Video hovor",
|
"Video call": "Video hovor",
|
||||||
|
@ -136,7 +134,6 @@
|
||||||
"Upload avatar": "Nahrať obrázok",
|
"Upload avatar": "Nahrať obrázok",
|
||||||
"Forget room": "Zabudnúť miestnosť",
|
"Forget room": "Zabudnúť miestnosť",
|
||||||
"Search": "Hľadať",
|
"Search": "Hľadať",
|
||||||
"Favourites": "Obľúbené",
|
|
||||||
"Rooms": "Miestnosti",
|
"Rooms": "Miestnosti",
|
||||||
"Low priority": "Nízka priorita",
|
"Low priority": "Nízka priorita",
|
||||||
"Historical": "Historické",
|
"Historical": "Historické",
|
||||||
|
@ -195,7 +192,6 @@
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Týmto vymažete widget pre všetkých používateľov v tejto miestnosti. Ste si istí, že chcete vymazať tento widget?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "Týmto vymažete widget pre všetkých používateľov v tejto miestnosti. Ste si istí, že chcete vymazať tento widget?",
|
||||||
"Delete widget": "Vymazať widget",
|
"Delete widget": "Vymazať widget",
|
||||||
"Create new room": "Vytvoriť novú miestnosť",
|
"Create new room": "Vytvoriť novú miestnosť",
|
||||||
"Home": "Domov",
|
|
||||||
"%(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": {
|
||||||
"other": "%(severalUsers)s%(count)s krát vstúpili",
|
"other": "%(severalUsers)s%(count)s krát vstúpili",
|
||||||
|
@ -300,10 +296,8 @@
|
||||||
"Unable to verify email address.": "Nie je možné overiť emailovú adresu.",
|
"Unable to verify email address.": "Nie je možné overiť emailovú adresu.",
|
||||||
"This will allow you to reset your password and receive notifications.": "Toto vám umožní obnoviť si heslo a prijímať oznámenia emailom.",
|
"This will allow you to reset your password and receive notifications.": "Toto vám umožní obnoviť si heslo a prijímať oznámenia emailom.",
|
||||||
"Skip": "Preskočiť",
|
"Skip": "Preskočiť",
|
||||||
"Name": "Názov",
|
|
||||||
"You must <a>register</a> to use this functionality": "Aby ste mohli použiť túto vlastnosť, musíte byť <a>zaregistrovaný</a>",
|
"You must <a>register</a> to use this functionality": "Aby ste mohli použiť túto vlastnosť, musíte byť <a>zaregistrovaný</a>",
|
||||||
"You must join the room to see its files": "Aby ste si mohli zobraziť zoznam súborov, musíte vstúpiť do miestnosti",
|
"You must join the room to see its files": "Aby ste si mohli zobraziť zoznam súborov, musíte vstúpiť do miestnosti",
|
||||||
"Description": "Popis",
|
|
||||||
"Reject invitation": "Odmietnuť pozvanie",
|
"Reject invitation": "Odmietnuť pozvanie",
|
||||||
"Are you sure you want to reject the invitation?": "Ste si istí, že chcete odmietnuť toto pozvanie?",
|
"Are you sure you want to reject the invitation?": "Ste si istí, že chcete odmietnuť toto pozvanie?",
|
||||||
"Failed to reject invitation": "Nepodarilo sa odmietnuť pozvanie",
|
"Failed to reject invitation": "Nepodarilo sa odmietnuť pozvanie",
|
||||||
|
@ -318,7 +312,6 @@
|
||||||
"Search failed": "Hľadanie zlyhalo",
|
"Search failed": "Hľadanie zlyhalo",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Server môže byť nedostupný, preťažený, alebo vypršal časový limit hľadania :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Server môže byť nedostupný, preťažený, alebo vypršal časový limit hľadania :(",
|
||||||
"No more results": "Žiadne ďalšie výsledky",
|
"No more results": "Žiadne ďalšie výsledky",
|
||||||
"Room": "Miestnosť",
|
|
||||||
"Failed to reject invite": "Nepodarilo sa odmietnuť pozvanie",
|
"Failed to reject invite": "Nepodarilo sa odmietnuť pozvanie",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Pri pokuse načítať konkrétny bod v histórii tejto miestnosti sa vyskytla chyba, nemáte povolenie na zobrazenie zodpovedajúcej správy.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Pri pokuse načítať konkrétny bod v histórii tejto miestnosti sa vyskytla chyba, nemáte povolenie na zobrazenie zodpovedajúcej správy.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Pokus o načítanie konkrétneho bodu na časovej osi tejto miestnosti, ale nepodarilo sa ho nájsť.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Pokus o načítanie konkrétneho bodu na časovej osi tejto miestnosti, ale nepodarilo sa ho nájsť.",
|
||||||
|
@ -339,7 +332,6 @@
|
||||||
"<not supported>": "<nepodporované>",
|
"<not supported>": "<nepodporované>",
|
||||||
"Import E2E room keys": "Importovať end-to-end šifrovacie kľúče miestnosti",
|
"Import E2E room keys": "Importovať end-to-end šifrovacie kľúče miestnosti",
|
||||||
"Cryptography": "Kryptografia",
|
"Cryptography": "Kryptografia",
|
||||||
"Labs": "Experimenty",
|
|
||||||
"Check for update": "Skontrolovať dostupnosť aktualizácie",
|
"Check for update": "Skontrolovať dostupnosť aktualizácie",
|
||||||
"Reject all %(invitedRooms)s invites": "Odmietnuť všetky %(invitedRooms)s pozvania",
|
"Reject all %(invitedRooms)s invites": "Odmietnuť všetky %(invitedRooms)s pozvania",
|
||||||
"Start automatically after system login": "Spustiť automaticky po prihlásení do systému",
|
"Start automatically after system login": "Spustiť automaticky po prihlásení do systému",
|
||||||
|
@ -409,7 +401,6 @@
|
||||||
"collapse": "zbaliť",
|
"collapse": "zbaliť",
|
||||||
"expand": "rozbaliť",
|
"expand": "rozbaliť",
|
||||||
"Old cryptography data detected": "Nájdené zastaralé kryptografické údaje",
|
"Old cryptography data detected": "Nájdené zastaralé kryptografické údaje",
|
||||||
"Warning": "Upozornenie",
|
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
||||||
"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.": "Túto zmenu nebudete môcť vrátiť späť, pretože sa degradujete, a ak ste posledným privilegovaným používateľom v miestnosti, nebude možné získať oprávnenia späť.",
|
"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.": "Túto zmenu nebudete môcť vrátiť späť, pretože sa degradujete, a ak ste posledným privilegovaným používateľom v miestnosti, nebude možné získať oprávnenia späť.",
|
||||||
"Send an encrypted reply…": "Odoslať šifrovanú odpoveď…",
|
"Send an encrypted reply…": "Odoslať šifrovanú odpoveď…",
|
||||||
|
@ -724,7 +715,6 @@
|
||||||
"Email addresses": "Emailové adresy",
|
"Email addresses": "Emailové adresy",
|
||||||
"Phone numbers": "Telefónne čísla",
|
"Phone numbers": "Telefónne čísla",
|
||||||
"Language and region": "Jazyk a región",
|
"Language and region": "Jazyk a región",
|
||||||
"Theme": "Vzhľad",
|
|
||||||
"Account management": "Správa účtu",
|
"Account management": "Správa účtu",
|
||||||
"General": "Všeobecné",
|
"General": "Všeobecné",
|
||||||
"Credits": "Poďakovanie",
|
"Credits": "Poďakovanie",
|
||||||
|
@ -1062,8 +1052,6 @@
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Na vašom domovskom serveri bol prekročený jeden z limitov systémových zdrojov.",
|
"Your homeserver has exceeded one of its resource limits.": "Na vašom domovskom serveri bol prekročený jeden z limitov systémových zdrojov.",
|
||||||
"Contact your <a>server admin</a>.": "Kontaktujte svojho <a>administrátora serveru</a>.",
|
"Contact your <a>server admin</a>.": "Kontaktujte svojho <a>administrátora serveru</a>.",
|
||||||
"Ok": "Ok",
|
"Ok": "Ok",
|
||||||
"Light": "Svetlý",
|
|
||||||
"Dark": "Tmavý",
|
|
||||||
"Ask your %(brand)s admin to check <a>your config</a> for incorrect or duplicate entries.": "Požiadajte správcu vášho %(brand)su, aby skontroloval <a>vašu konfiguráciu</a>. Pravdepodobne obsahuje chyby alebo duplikáty.",
|
"Ask your %(brand)s admin to check <a>your config</a> for incorrect or duplicate entries.": "Požiadajte správcu vášho %(brand)su, aby skontroloval <a>vašu konfiguráciu</a>. Pravdepodobne obsahuje chyby alebo duplikáty.",
|
||||||
"You joined the call": "Pridali ste sa do hovoru",
|
"You joined the call": "Pridali ste sa do hovoru",
|
||||||
"%(senderName)s joined the call": "%(senderName)s sa pridal/a do hovoru",
|
"%(senderName)s joined the call": "%(senderName)s sa pridal/a do hovoru",
|
||||||
|
@ -1175,7 +1163,6 @@
|
||||||
"Discovery options will appear once you have added an email above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní e-mailovej adresy vyššie.",
|
"Discovery options will appear once you have added an email above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní e-mailovej adresy vyššie.",
|
||||||
"Discovery options will appear once you have added a phone number above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní telefónneho čísla vyššie.",
|
"Discovery options will appear once you have added a phone number above.": "Možnosti nastavenia verejného profilu sa objavia po pridaní telefónneho čísla vyššie.",
|
||||||
"No recently visited rooms": "Žiadne nedávno navštívené miestnosti",
|
"No recently visited rooms": "Žiadne nedávno navštívené miestnosti",
|
||||||
"Appearance": "Vzhľad",
|
|
||||||
"Show rooms with unread messages first": "Najprv ukázať miestnosti s neprečítanými správami",
|
"Show rooms with unread messages first": "Najprv ukázať miestnosti s neprečítanými správami",
|
||||||
"All rooms": "Všetky miestnosti",
|
"All rooms": "Všetky miestnosti",
|
||||||
"Hide advanced": "Skryť pokročilé možnosti",
|
"Hide advanced": "Skryť pokročilé možnosti",
|
||||||
|
@ -1668,19 +1655,16 @@
|
||||||
"Sidebar": "Bočný panel",
|
"Sidebar": "Bočný panel",
|
||||||
"Downloading": "Preberanie",
|
"Downloading": "Preberanie",
|
||||||
"Show:": "Zobraziť:",
|
"Show:": "Zobraziť:",
|
||||||
"Threads": "Vlákna",
|
|
||||||
"Stop": "Zastaviť",
|
"Stop": "Zastaviť",
|
||||||
"MB": "MB",
|
"MB": "MB",
|
||||||
"JSON": "JSON",
|
"JSON": "JSON",
|
||||||
"HTML": "HTML",
|
"HTML": "HTML",
|
||||||
"Thread": "Vlákno",
|
|
||||||
"Results": "Výsledky",
|
"Results": "Výsledky",
|
||||||
"More": "Viac",
|
"More": "Viac",
|
||||||
"Decrypting": "Dešifrovanie",
|
"Decrypting": "Dešifrovanie",
|
||||||
"Collapse": "Zbaliť",
|
"Collapse": "Zbaliť",
|
||||||
"Visibility": "Viditeľnosť",
|
"Visibility": "Viditeľnosť",
|
||||||
"Sent": "Odoslané",
|
"Sent": "Odoslané",
|
||||||
"Beta": "Beta",
|
|
||||||
"Connecting": "Pripájanie",
|
"Connecting": "Pripájanie",
|
||||||
"Play": "Prehrať",
|
"Play": "Prehrať",
|
||||||
"Pause": "Pozastaviť",
|
"Pause": "Pozastaviť",
|
||||||
|
@ -1693,7 +1677,6 @@
|
||||||
"Value:": "Hodnota:",
|
"Value:": "Hodnota:",
|
||||||
"Level": "Úroveň",
|
"Level": "Úroveň",
|
||||||
"Setting:": "Nastavenie:",
|
"Setting:": "Nastavenie:",
|
||||||
"Homeserver": "Domovský server",
|
|
||||||
"Approve": "Schváliť",
|
"Approve": "Schváliť",
|
||||||
"Comment": "Komentár",
|
"Comment": "Komentár",
|
||||||
"Unpin": "Odopnúť",
|
"Unpin": "Odopnúť",
|
||||||
|
@ -1755,7 +1738,6 @@
|
||||||
"Upgrade private room": "Aktualizovať súkromnú miestnosť",
|
"Upgrade private room": "Aktualizovať súkromnú miestnosť",
|
||||||
"Create a private room": "Vytvoriť súkromnú miestnosť",
|
"Create a private room": "Vytvoriť súkromnú miestnosť",
|
||||||
"Master private key:": "Hlavný súkromný kľúč:",
|
"Master private key:": "Hlavný súkromný kľúč:",
|
||||||
"Private": "Súkromný",
|
|
||||||
"Your private space": "Váš súkromný priestor",
|
"Your private space": "Váš súkromný priestor",
|
||||||
"This space is not public. You will not be able to rejoin without an invite.": "Tento priestor nie je verejný. Bez pozvánky sa doň nebudete môcť opätovne pripojiť.",
|
"This space is not public. You will not be able to rejoin without an invite.": "Tento priestor nie je verejný. Bez pozvánky sa doň nebudete môcť opätovne pripojiť.",
|
||||||
"Explore Public Rooms": "Preskúmať verejné miestnosti",
|
"Explore Public Rooms": "Preskúmať verejné miestnosti",
|
||||||
|
@ -1767,7 +1749,6 @@
|
||||||
"Join public room": "Pripojiť sa k verejnej miestnosti",
|
"Join public room": "Pripojiť sa k verejnej miestnosti",
|
||||||
"Explore public rooms": "Preskúmajte verejné miestnosti",
|
"Explore public rooms": "Preskúmajte verejné miestnosti",
|
||||||
"Are you sure you want to add encryption to this public room?": "Ste si istí, že chcete pridať šifrovanie do tejto verejnej miestnosti?",
|
"Are you sure you want to add encryption to this public room?": "Ste si istí, že chcete pridať šifrovanie do tejto verejnej miestnosti?",
|
||||||
"Public": "Verejný",
|
|
||||||
"Leave some rooms": "Opustiť niektoré miestnosti",
|
"Leave some rooms": "Opustiť niektoré miestnosti",
|
||||||
"Leave all rooms": "Opustiť všetky miestnosti",
|
"Leave all rooms": "Opustiť všetky miestnosti",
|
||||||
"Don't leave any rooms": "Neopustiť žiadne miestnosti",
|
"Don't leave any rooms": "Neopustiť žiadne miestnosti",
|
||||||
|
@ -3356,7 +3337,6 @@
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Download %(brand)s Desktop": "Stiahnuť %(brand)s Desktop",
|
"Download %(brand)s Desktop": "Stiahnuť %(brand)s Desktop",
|
||||||
"Download %(brand)s": "Stiahnuť %(brand)s",
|
"Download %(brand)s": "Stiahnuť %(brand)s",
|
||||||
"Help": "Pomocník",
|
|
||||||
"Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutie odosielania potvrdení o prečítaní.",
|
"Your server doesn't support disabling sending read receipts.": "Váš server nepodporuje vypnutie odosielania potvrdení o prečítaní.",
|
||||||
"Share your activity and status with others.": "Zdieľajte svoju aktivitu a stav s ostatnými.",
|
"Share your activity and status with others.": "Zdieľajte svoju aktivitu a stav s ostatnými.",
|
||||||
"Presence": "Prítomnosť",
|
"Presence": "Prítomnosť",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "V súčasnosti sa dá povoliť len prostredníctvom súboru config.json",
|
"Can currently only be enabled via config.json": "V súčasnosti sa dá povoliť len prostredníctvom súboru config.json",
|
||||||
"Requires your server to support MSC3030": "Vyžaduje, aby váš server podporoval MSC3030",
|
"Requires your server to support MSC3030": "Vyžaduje, aby váš server podporoval MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "Vyžaduje, aby váš server podporoval stabilnú verziu MSC3827",
|
"Requires your server to support the stable version of MSC3827": "Vyžaduje, aby váš server podporoval stabilnú verziu MSC3827",
|
||||||
"User": "Používateľ",
|
|
||||||
"Show avatars in user, room and event mentions": "Zobraziť obrázky profilov v zmienkach o používateľoch, miestnostiach a udalostiach",
|
"Show avatars in user, room and event mentions": "Zobraziť obrázky profilov v zmienkach o používateľoch, miestnostiach a udalostiach",
|
||||||
"Message from %(user)s": "Správa od %(user)s",
|
"Message from %(user)s": "Správa od %(user)s",
|
||||||
"Message in %(room)s": "Správa v %(room)s",
|
"Message in %(room)s": "Správa v %(room)s",
|
||||||
|
@ -3938,7 +3917,28 @@
|
||||||
"unmute": "Zrušiť stlmenie",
|
"unmute": "Zrušiť stlmenie",
|
||||||
"username": "Meno používateľa",
|
"username": "Meno používateľa",
|
||||||
"verification_cancelled": "Overovanie zrušené",
|
"verification_cancelled": "Overovanie zrušené",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Príloha",
|
||||||
|
"light": "Svetlý",
|
||||||
|
"dark": "Tmavý",
|
||||||
|
"warning": "Upozornenie",
|
||||||
|
"home": "Domov",
|
||||||
|
"favourites": "Obľúbené",
|
||||||
|
"thread": "Vlákno",
|
||||||
|
"threads": "Vlákna",
|
||||||
|
"user": "Používateľ",
|
||||||
|
"room": "Miestnosť",
|
||||||
|
"theme": "Vzhľad",
|
||||||
|
"name": "Názov",
|
||||||
|
"description": "Popis",
|
||||||
|
"public": "Verejný",
|
||||||
|
"private": "Súkromný",
|
||||||
|
"options": "Možnosti",
|
||||||
|
"appearance": "Vzhľad",
|
||||||
|
"homeserver": "Domovský server",
|
||||||
|
"help": "Pomocník",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Experimenty"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Pokračovať",
|
"continue": "Pokračovať",
|
||||||
|
@ -3975,5 +3975,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Používateľské menu"
|
"user_menu": "Používateľské menu"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Domov"
|
||||||
|
}
|
||||||
|
|
|
@ -58,10 +58,10 @@
|
||||||
"Sun": "Ned",
|
"Sun": "Ned",
|
||||||
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Datoteka '%(fileName)s' je večja od omejitve, nastavljene na strežniku",
|
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Datoteka '%(fileName)s' je večja od omejitve, nastavljene na strežniku",
|
||||||
"The file '%(fileName)s' failed to upload.": "Datoteka '%(fileName)s' se ni uspešno naložila.",
|
"The file '%(fileName)s' failed to upload.": "Datoteka '%(fileName)s' se ni uspešno naložila.",
|
||||||
"Attachment": "Priponka",
|
|
||||||
"Unable to load! Check your network connectivity and try again.": "Napaka pri nalaganju! Preverite vašo povezavo in poskusite ponovno.",
|
"Unable to load! Check your network connectivity and try again.": "Napaka pri nalaganju! Preverite vašo povezavo in poskusite ponovno.",
|
||||||
"common": {
|
"common": {
|
||||||
"analytics": "Analitika",
|
"analytics": "Analitika",
|
||||||
"error": "Napaka"
|
"error": "Napaka",
|
||||||
|
"attachment": "Priponka"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,6 @@
|
||||||
"Waiting for response from server": "Po pritet për përgjigje nga shërbyesi",
|
"Waiting for response from server": "Po pritet për përgjigje nga shërbyesi",
|
||||||
"Failed to change password. Is your password correct?": "S’u arrit të ndryshohej fjalëkalimi. A është i saktë fjalëkalimi juaj?",
|
"Failed to change password. Is your password correct?": "S’u arrit të ndryshohej fjalëkalimi. A është i saktë fjalëkalimi juaj?",
|
||||||
"Failed to send logs: ": "S’u arrit të dërgoheshin regjistra: ",
|
"Failed to send logs: ": "S’u arrit të dërgoheshin regjistra: ",
|
||||||
"Warning": "Sinjalizim",
|
|
||||||
"This Room": "Këtë Dhomë",
|
"This Room": "Këtë Dhomë",
|
||||||
"Resend": "Ridërgoje",
|
"Resend": "Ridërgoje",
|
||||||
"Messages in one-to-one chats": "Mesazhe në fjalosje tek për tek",
|
"Messages in one-to-one chats": "Mesazhe në fjalosje tek për tek",
|
||||||
|
@ -154,7 +153,6 @@
|
||||||
"This room has no local addresses": "Kjo dhomë s’ka adresë vendore",
|
"This room has no local addresses": "Kjo dhomë s’ka adresë vendore",
|
||||||
"URL Previews": "Paraparje URL-sh",
|
"URL Previews": "Paraparje URL-sh",
|
||||||
"Drop file here to upload": "Hidheni kartelën këtu që të ngarkohet",
|
"Drop file here to upload": "Hidheni kartelën këtu që të ngarkohet",
|
||||||
"Options": "Mundësi",
|
|
||||||
"Unban": "Hiqja dëbimin",
|
"Unban": "Hiqja dëbimin",
|
||||||
"Are you sure?": "Jeni i sigurt?",
|
"Are you sure?": "Jeni i sigurt?",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "S’do të jeni në gjendje ta zhbëni këtë ndryshim, ngaqë po e promovoni përdoruesin të ketë të njëjtën shkallë pushteti si ju vetë.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "S’do të jeni në gjendje ta zhbëni këtë ndryshim, ngaqë po e promovoni përdoruesin të ketë të njëjtën shkallë pushteti si ju vetë.",
|
||||||
|
@ -167,7 +165,6 @@
|
||||||
"one": "dhe një tjetër…"
|
"one": "dhe një tjetër…"
|
||||||
},
|
},
|
||||||
"Filter room members": "Filtroni anëtarë dhome",
|
"Filter room members": "Filtroni anëtarë dhome",
|
||||||
"Attachment": "Bashkëngjitje",
|
|
||||||
"Voice call": "Thirrje audio",
|
"Voice call": "Thirrje audio",
|
||||||
"Video call": "Thirrje video",
|
"Video call": "Thirrje video",
|
||||||
"Send an encrypted reply…": "Dërgoni një përgjigje të fshehtëzuar…",
|
"Send an encrypted reply…": "Dërgoni një përgjigje të fshehtëzuar…",
|
||||||
|
@ -187,7 +184,6 @@
|
||||||
"Join Room": "Hyni në dhomë",
|
"Join Room": "Hyni në dhomë",
|
||||||
"Upload avatar": "Ngarkoni avatar",
|
"Upload avatar": "Ngarkoni avatar",
|
||||||
"Forget room": "Harroje dhomën",
|
"Forget room": "Harroje dhomën",
|
||||||
"Favourites": "Të parapëlqyer",
|
|
||||||
"Low priority": "Me përparësi të ulët",
|
"Low priority": "Me përparësi të ulët",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s s’ekziston.",
|
"%(roomName)s does not exist.": "%(roomName)s s’ekziston.",
|
||||||
"Banned by %(displayName)s": "Dëbuar nga %(displayName)s",
|
"Banned by %(displayName)s": "Dëbuar nga %(displayName)s",
|
||||||
|
@ -208,7 +204,6 @@
|
||||||
"Sign in": "Hyni",
|
"Sign in": "Hyni",
|
||||||
"Something went wrong!": "Diçka shkoi ters!",
|
"Something went wrong!": "Diçka shkoi ters!",
|
||||||
"Create new room": "Krijoni dhomë të re",
|
"Create new room": "Krijoni dhomë të re",
|
||||||
"Home": "Kreu",
|
|
||||||
"were invited %(count)s times": {
|
"were invited %(count)s times": {
|
||||||
"one": "janë ftuar",
|
"one": "janë ftuar",
|
||||||
"other": "janë ftuar %(count)s herë"
|
"other": "janë ftuar %(count)s herë"
|
||||||
|
@ -251,9 +246,7 @@
|
||||||
"This doesn't appear to be a valid email address": "Kjo s’duket se është adresë email e vlefshme",
|
"This doesn't appear to be a valid email address": "Kjo s’duket se është adresë email e vlefshme",
|
||||||
"Verification Pending": "Verifikim Në Pritje të Miratimit",
|
"Verification Pending": "Verifikim Në Pritje të Miratimit",
|
||||||
"Skip": "Anashkaloje",
|
"Skip": "Anashkaloje",
|
||||||
"Name": "Emër",
|
|
||||||
"You must <a>register</a> to use this functionality": "Që të përdorni këtë funksion, duhet të <a>regjistroheni</a>",
|
"You must <a>register</a> to use this functionality": "Që të përdorni këtë funksion, duhet të <a>regjistroheni</a>",
|
||||||
"Description": "Përshkrim",
|
|
||||||
"Reject invitation": "Hidheni tej ftesën",
|
"Reject invitation": "Hidheni tej ftesën",
|
||||||
"Are you sure you want to reject the invitation?": "Jeni i sigurt se doni të hidhet tej kjo ftesë?",
|
"Are you sure you want to reject the invitation?": "Jeni i sigurt se doni të hidhet tej kjo ftesë?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Jeni i sigurt se doni të dilni nga dhoma '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Jeni i sigurt se doni të dilni nga dhoma '%(roomName)s'?",
|
||||||
|
@ -263,7 +256,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Duket se jeni në një thirrje, jeni i sigurt se doni të dilet?",
|
"You seem to be in a call, are you sure you want to quit?": "Duket se jeni në një thirrje, jeni i sigurt se doni të dilet?",
|
||||||
"Search failed": "Kërkimi shtoi",
|
"Search failed": "Kërkimi shtoi",
|
||||||
"No more results": "Jo më tepër përfundime",
|
"No more results": "Jo më tepër përfundime",
|
||||||
"Room": "Dhomë",
|
|
||||||
"Uploading %(filename)s and %(count)s others": {
|
"Uploading %(filename)s and %(count)s others": {
|
||||||
"other": "Po ngarkohet %(filename)s dhe %(count)s të tjera",
|
"other": "Po ngarkohet %(filename)s dhe %(count)s të tjera",
|
||||||
"one": "Po ngarkohet %(filename)s dhe %(count)s tjetër"
|
"one": "Po ngarkohet %(filename)s dhe %(count)s tjetër"
|
||||||
|
@ -644,7 +636,6 @@
|
||||||
"Email addresses": "Adresa email",
|
"Email addresses": "Adresa email",
|
||||||
"Phone numbers": "Numra telefonash",
|
"Phone numbers": "Numra telefonash",
|
||||||
"Language and region": "Gjuhë dhe rajon",
|
"Language and region": "Gjuhë dhe rajon",
|
||||||
"Theme": "Temë",
|
|
||||||
"Account management": "Administrim llogarish",
|
"Account management": "Administrim llogarish",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni <a>këtu</a>, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.",
|
||||||
|
@ -1229,7 +1220,6 @@
|
||||||
"Other users may not trust it": "Përdorues të tjerë mund të mos e besojnë",
|
"Other users may not trust it": "Përdorues të tjerë mund të mos e besojnë",
|
||||||
"Later": "Më vonë",
|
"Later": "Më vonë",
|
||||||
"Cross-signing private keys:": "Kyçe privatë për <em>cross-signing</em>:",
|
"Cross-signing private keys:": "Kyçe privatë për <em>cross-signing</em>:",
|
||||||
"Labs": "Labs",
|
|
||||||
"Complete": "E plotë",
|
"Complete": "E plotë",
|
||||||
"This room is end-to-end encrypted": "Kjo dhomë është e fshehtëzuar skaj-më-skaj",
|
"This room is end-to-end encrypted": "Kjo dhomë është e fshehtëzuar skaj-më-skaj",
|
||||||
"Everyone in this room is verified": "Gjithkush në këtë dhomë është verifikuar",
|
"Everyone in this room is verified": "Gjithkush në këtë dhomë është verifikuar",
|
||||||
|
@ -1515,7 +1505,6 @@
|
||||||
"Size must be a number": "Madhësia duhet të jetë një numër",
|
"Size must be a number": "Madhësia duhet të jetë një numër",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "Madhësia vetjake për shkronjat mund të jetë vetëm mes vlerave %(min)s pt dhe %(max)s pt",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "Madhësia vetjake për shkronjat mund të jetë vetëm mes vlerave %(min)s pt dhe %(max)s pt",
|
||||||
"Use between %(min)s pt and %(max)s pt": "Përdor me %(min)s pt dhe %(max)s pt",
|
"Use between %(min)s pt and %(max)s pt": "Përdor me %(min)s pt dhe %(max)s pt",
|
||||||
"Appearance": "Dukje",
|
|
||||||
"Joins room with given address": "Hyhet në dhomën me adresën e dhënë",
|
"Joins room with given address": "Hyhet në dhomën me adresën e dhënë",
|
||||||
"Your homeserver has exceeded its user limit.": "Shërbyesi juaj Home ka tejkaluar kufijtë e tij të përdorimit.",
|
"Your homeserver has exceeded its user limit.": "Shërbyesi juaj Home ka tejkaluar kufijtë e tij të përdorimit.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Shërbyesi juaj Home ka tejkaluar një nga kufijtë e tij të burimeve.",
|
"Your homeserver has exceeded one of its resource limits.": "Shërbyesi juaj Home ka tejkaluar një nga kufijtë e tij të burimeve.",
|
||||||
|
@ -1552,8 +1541,6 @@
|
||||||
"one": "Shfaq %(count)s tjetër"
|
"one": "Shfaq %(count)s tjetër"
|
||||||
},
|
},
|
||||||
"Room options": "Mundësi dhome",
|
"Room options": "Mundësi dhome",
|
||||||
"Light": "E çelët",
|
|
||||||
"Dark": "E errët",
|
|
||||||
"Customise your appearance": "Përshtatni dukjen tuaj",
|
"Customise your appearance": "Përshtatni dukjen tuaj",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Rregullimet e Dukjes prekin vetëm këtë sesion %(brand)s.",
|
"Appearance Settings only affect this %(brand)s session.": "Rregullimet e Dukjes prekin vetëm këtë sesion %(brand)s.",
|
||||||
"Activity": "Veprimtari",
|
"Activity": "Veprimtari",
|
||||||
|
@ -2060,7 +2047,6 @@
|
||||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Që mos thoni nuk e dinim, nëse s’shtoni një email dhe harroni fjalëkalimin tuaj, mund <b>të humbi përgjithmonë hyrjen në llogarinë tuaj</b>.",
|
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "Që mos thoni nuk e dinim, nëse s’shtoni një email dhe harroni fjalëkalimin tuaj, mund <b>të humbi përgjithmonë hyrjen në llogarinë tuaj</b>.",
|
||||||
"Continuing without email": "Vazhdim pa email",
|
"Continuing without email": "Vazhdim pa email",
|
||||||
"Continue with %(provider)s": "Vazhdo me %(provider)s",
|
"Continue with %(provider)s": "Vazhdo me %(provider)s",
|
||||||
"Homeserver": "Shërbyes Home",
|
|
||||||
"Server Options": "Mundësi Shërbyesi",
|
"Server Options": "Mundësi Shërbyesi",
|
||||||
"Hold": "Mbaje",
|
"Hold": "Mbaje",
|
||||||
"Resume": "Rimerre",
|
"Resume": "Rimerre",
|
||||||
|
@ -2203,9 +2189,7 @@
|
||||||
"Your private space": "Hapësira juaj private",
|
"Your private space": "Hapësira juaj private",
|
||||||
"Your public space": "Hapësira juaj publike",
|
"Your public space": "Hapësira juaj publike",
|
||||||
"Invite only, best for yourself or teams": "Vetëm me ftesa, më e mira për ju dhe ekipe",
|
"Invite only, best for yourself or teams": "Vetëm me ftesa, më e mira për ju dhe ekipe",
|
||||||
"Private": "Private",
|
|
||||||
"Open space for anyone, best for communities": "Hapësirë e hapët për këdo, më e mira për bashkësi",
|
"Open space for anyone, best for communities": "Hapësirë e hapët për këdo, më e mira për bashkësi",
|
||||||
"Public": "Publike",
|
|
||||||
"Create a space": "Krijoni një hapësirë",
|
"Create a space": "Krijoni një hapësirë",
|
||||||
"Delete": "Fshije",
|
"Delete": "Fshije",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Kalo te fundi i rrjedhës kohore, kur dërgoni një mesazh",
|
"Jump to the bottom of the timeline when you send a message": "Kalo te fundi i rrjedhës kohore, kur dërgoni një mesazh",
|
||||||
|
@ -2294,7 +2278,6 @@
|
||||||
"Select a room below first": "Së pari, përzgjidhni më poshtë një dhomë",
|
"Select a room below first": "Së pari, përzgjidhni më poshtë një dhomë",
|
||||||
"Join the beta": "Merrni pjesë te beta",
|
"Join the beta": "Merrni pjesë te beta",
|
||||||
"Leave the beta": "Braktiseni beta-n",
|
"Leave the beta": "Braktiseni beta-n",
|
||||||
"Beta": "Beta",
|
|
||||||
"You may contact me if you have any follow up questions": "Mund të lidheni me mua, nëse keni pyetje të mëtejshme",
|
"You may contact me if you have any follow up questions": "Mund të lidheni me mua, nëse keni pyetje të mëtejshme",
|
||||||
"To leave the beta, visit your settings.": "Që të braktisni beta-n, vizitoni rregullimet tuaja.",
|
"To leave the beta, visit your settings.": "Që të braktisni beta-n, vizitoni rregullimet tuaja.",
|
||||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Platforma dhe emri juaj i përdoruesit do të mbahen shënim, për të na ndihmuar t’i përdorim përshtypjet tuaja sa më shumë që të mundemi.",
|
"Your platform and username will be noted to help us use your feedback as much as we can.": "Platforma dhe emri juaj i përdoruesit do të mbahen shënim, për të na ndihmuar t’i përdorim përshtypjet tuaja sa më shumë që të mundemi.",
|
||||||
|
@ -2555,7 +2538,6 @@
|
||||||
"<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>Nuk rekomandohet të bëhen publike dhoma të fshehtëzuara.</b> Kjo do të thoshte se cilido mund të gjejë dhe hyjë te dhoma, pra cilido mund të lexojë mesazhet. S’do të përfitoni asnjë nga të mirat e fshehtëzimit. Fshehtëzimi i mesazheve në një dhomë publike do ta ngadalësojë marrjen dhe dërgimin e tyre.",
|
"<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>Nuk rekomandohet të bëhen publike dhoma të fshehtëzuara.</b> Kjo do të thoshte se cilido mund të gjejë dhe hyjë te dhoma, pra cilido mund të lexojë mesazhet. S’do të përfitoni asnjë nga të mirat e fshehtëzimit. Fshehtëzimi i mesazheve në një dhomë publike do ta ngadalësojë marrjen dhe dërgimin e tyre.",
|
||||||
"Are you sure you want to make this encrypted room public?": "Jeni i sigurt se doni ta bëni publike këtë dhomë të fshehtëzuar?",
|
"Are you sure you want to make this encrypted room public?": "Jeni i sigurt se doni ta bëni publike këtë dhomë të fshehtëzuar?",
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Për të shmangur këto probleme, krijoni një <a>dhomë të re të fshehtëzuar</a> për bisedën që keni në plan të bëni.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "Për të shmangur këto probleme, krijoni një <a>dhomë të re të fshehtëzuar</a> për bisedën që keni në plan të bëni.",
|
||||||
"Thread": "Rrjedhë",
|
|
||||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Për të shmangur këto probleme, krijoni për bisedën që keni në plan një <a>dhomë të re publike</a>.",
|
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Për të shmangur këto probleme, krijoni për bisedën që keni në plan një <a>dhomë të re publike</a>.",
|
||||||
"The above, but in <Room /> as well": "Atë më sipër, por edhe te <Room />",
|
"The above, but in <Room /> as well": "Atë më sipër, por edhe te <Room />",
|
||||||
"The above, but in any room you are joined or invited to as well": "Atë më sipër, por edhe në çfarëdo dhome ku keni hyrë ose jeni ftuar",
|
"The above, but in any room you are joined or invited to as well": "Atë më sipër, por edhe në çfarëdo dhome ku keni hyrë ose jeni ftuar",
|
||||||
|
@ -2654,7 +2636,6 @@
|
||||||
"Unban from %(roomName)s": "Hiqja dëbimin prej %(roomName)s",
|
"Unban from %(roomName)s": "Hiqja dëbimin prej %(roomName)s",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "Do të jenë prapë në gjendje të hyjnë kudo ku nuk jeni përgjegjës.",
|
"They'll still be able to access whatever you're not an admin of.": "Do të jenë prapë në gjendje të hyjnë kudo ku nuk jeni përgjegjës.",
|
||||||
"Disinvite from %(roomName)s": "Hiqja ftesën për %(roomName)s",
|
"Disinvite from %(roomName)s": "Hiqja ftesën për %(roomName)s",
|
||||||
"Threads": "Rrjedha",
|
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s përgjigje",
|
"one": "%(count)s përgjigje",
|
||||||
"other": "%(count)s përgjigje"
|
"other": "%(count)s përgjigje"
|
||||||
|
@ -3363,7 +3344,6 @@
|
||||||
"Get it on Google Play": "Merreni nga Google Play",
|
"Get it on Google Play": "Merreni nga Google Play",
|
||||||
"Android": "Android",
|
"Android": "Android",
|
||||||
"iOS": "iOS",
|
"iOS": "iOS",
|
||||||
"Help": "Ndihmë",
|
|
||||||
"Video call ended": "Thirrja video përfundoi",
|
"Video call ended": "Thirrja video përfundoi",
|
||||||
"Room info": "Hollësi dhome",
|
"Room info": "Hollësi dhome",
|
||||||
"Underline": "Të nënvizuara",
|
"Underline": "Të nënvizuara",
|
||||||
|
@ -3752,7 +3732,6 @@
|
||||||
"Use your account to continue.": "Që të vazhdohet, përdorni llogarinë tuaj.",
|
"Use your account to continue.": "Që të vazhdohet, përdorni llogarinë tuaj.",
|
||||||
"Message from %(user)s": "Mesazh nga %(user)s",
|
"Message from %(user)s": "Mesazh nga %(user)s",
|
||||||
"Message in %(room)s": "Mesazh në %(room)s",
|
"Message in %(room)s": "Mesazh në %(room)s",
|
||||||
"User": "Përdorues",
|
|
||||||
"Log out and back in to disable": "Që të çaktivizohet, dilni dhe rihyni në llogari",
|
"Log out and back in to disable": "Që të çaktivizohet, dilni dhe rihyni në llogari",
|
||||||
"Can currently only be enabled via config.json": "Aktualisht mund të aktivizohet vetëm përmes config.json-it",
|
"Can currently only be enabled via config.json": "Aktualisht mund të aktivizohet vetëm përmes config.json-it",
|
||||||
"Show avatars in user, room and event mentions": "Shfaq avatarë në përmendje përdoruesish, dhomash dhe aktesh",
|
"Show avatars in user, room and event mentions": "Shfaq avatarë në përmendje përdoruesish, dhomash dhe aktesh",
|
||||||
|
@ -3831,7 +3810,28 @@
|
||||||
"unmute": "Ktheji zërin",
|
"unmute": "Ktheji zërin",
|
||||||
"username": "Emër përdoruesi",
|
"username": "Emër përdoruesi",
|
||||||
"verification_cancelled": "Verifikimi u anulua",
|
"verification_cancelled": "Verifikimi u anulua",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Bashkëngjitje",
|
||||||
|
"light": "E çelët",
|
||||||
|
"dark": "E errët",
|
||||||
|
"warning": "Sinjalizim",
|
||||||
|
"home": "Kreu",
|
||||||
|
"favourites": "Të parapëlqyer",
|
||||||
|
"thread": "Rrjedhë",
|
||||||
|
"threads": "Rrjedha",
|
||||||
|
"user": "Përdorues",
|
||||||
|
"room": "Dhomë",
|
||||||
|
"theme": "Temë",
|
||||||
|
"name": "Emër",
|
||||||
|
"description": "Përshkrim",
|
||||||
|
"public": "Publike",
|
||||||
|
"private": "Private",
|
||||||
|
"options": "Mundësi",
|
||||||
|
"appearance": "Dukje",
|
||||||
|
"homeserver": "Shërbyes Home",
|
||||||
|
"help": "Ndihmë",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Labs"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Vazhdo",
|
"continue": "Vazhdo",
|
||||||
|
@ -3868,5 +3868,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu përdoruesi"
|
"user_menu": "Menu përdoruesi"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Kreu"
|
||||||
|
}
|
||||||
|
|
|
@ -109,7 +109,6 @@
|
||||||
"Authentication": "Идентификација",
|
"Authentication": "Идентификација",
|
||||||
"Failed to set display name": "Нисам успео да поставим приказно име",
|
"Failed to set display name": "Нисам успео да поставим приказно име",
|
||||||
"Drop file here to upload": "Превуци датотеку овде да би је отпремио",
|
"Drop file here to upload": "Превуци датотеку овде да би је отпремио",
|
||||||
"Options": "Опције",
|
|
||||||
"Unban": "Скини забрану",
|
"Unban": "Скини забрану",
|
||||||
"Failed to ban user": "Неуспех при забрањивању приступа кориснику",
|
"Failed to ban user": "Неуспех при забрањивању приступа кориснику",
|
||||||
"Failed to mute user": "Неуспех при пригушивању корисника",
|
"Failed to mute user": "Неуспех при пригушивању корисника",
|
||||||
|
@ -129,7 +128,6 @@
|
||||||
"Invited": "Позван",
|
"Invited": "Позван",
|
||||||
"Filter room members": "Филтрирај чланове собе",
|
"Filter room members": "Филтрирај чланове собе",
|
||||||
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (снага %(powerLevelNumber)s)",
|
"%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (снага %(powerLevelNumber)s)",
|
||||||
"Attachment": "Прилог",
|
|
||||||
"Hangup": "Спусти слушалицу",
|
"Hangup": "Спусти слушалицу",
|
||||||
"Voice call": "Гласовни позив",
|
"Voice call": "Гласовни позив",
|
||||||
"Video call": "Видео позив",
|
"Video call": "Видео позив",
|
||||||
|
@ -160,7 +158,6 @@
|
||||||
"Upload avatar": "Отпреми аватар",
|
"Upload avatar": "Отпреми аватар",
|
||||||
"Forget room": "Заборави собу",
|
"Forget room": "Заборави собу",
|
||||||
"Search": "Претрага",
|
"Search": "Претрага",
|
||||||
"Favourites": "Омиљено",
|
|
||||||
"Rooms": "Собе",
|
"Rooms": "Собе",
|
||||||
"Low priority": "Ниска важност",
|
"Low priority": "Ниска важност",
|
||||||
"Historical": "Историја",
|
"Historical": "Историја",
|
||||||
|
@ -221,7 +218,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": "Направи нову собу",
|
||||||
"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": {
|
||||||
"other": "%(severalUsers)s су ушли %(count)s пута",
|
"other": "%(severalUsers)s су ушли %(count)s пута",
|
||||||
|
@ -329,10 +325,8 @@
|
||||||
"Unable to verify email address.": "Не могу да проверим мејл адресу.",
|
"Unable to verify email address.": "Не могу да проверим мејл адресу.",
|
||||||
"This will allow you to reset your password and receive notifications.": "Ово омогућава поновно постављање лозинке и примање обавештења.",
|
"This will allow you to reset your password and receive notifications.": "Ово омогућава поновно постављање лозинке и примање обавештења.",
|
||||||
"Skip": "Прескочи",
|
"Skip": "Прескочи",
|
||||||
"Name": "Име",
|
|
||||||
"You must <a>register</a> to use this functionality": "Морате се <a>регистровати</a> да бисте користили ову могућност",
|
"You must <a>register</a> to use this functionality": "Морате се <a>регистровати</a> да бисте користили ову могућност",
|
||||||
"You must join the room to see its files": "Морате приступити соби да бисте видели њене датотеке",
|
"You must join the room to see its files": "Морате приступити соби да бисте видели њене датотеке",
|
||||||
"Description": "Опис",
|
|
||||||
"Reject invitation": "Одбиј позивницу",
|
"Reject invitation": "Одбиј позивницу",
|
||||||
"Are you sure you want to reject the invitation?": "Да ли сте сигурни да желите одбити позивницу?",
|
"Are you sure you want to reject the invitation?": "Да ли сте сигурни да желите одбити позивницу?",
|
||||||
"Failed to reject invitation": "Нисам успео да одбијем позивницу",
|
"Failed to reject invitation": "Нисам успео да одбијем позивницу",
|
||||||
|
@ -346,7 +340,6 @@
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Ова соба није јавна. Нећете моћи да поново приступите без позивнице.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Ова соба није јавна. Нећете моћи да поново приступите без позивнице.",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Подаци из старијег издања %(brand)s-а су нађени. Ово ће узроковати лош рад шифровања с краја на крај у старијем издању. Размењене поруке које су шифроване с краја на крај у старијем издању је можда немогуће дешифровати у овом издању. Такође, ово може узроковати неуспешно размењивање порука са овим издањем. Ако доживите проблеме, одјавите се и пријавите се поново. Да бисте задржали историјат поруке, извезите па поново увезите ваше кључеве.",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "Подаци из старијег издања %(brand)s-а су нађени. Ово ће узроковати лош рад шифровања с краја на крај у старијем издању. Размењене поруке које су шифроване с краја на крај у старијем издању је можда немогуће дешифровати у овом издању. Такође, ово може узроковати неуспешно размењивање порука са овим издањем. Ако доживите проблеме, одјавите се и пријавите се поново. Да бисте задржали историјат поруке, извезите па поново увезите ваше кључеве.",
|
||||||
"Logout": "Одјава",
|
"Logout": "Одјава",
|
||||||
"Warning": "Упозорење",
|
|
||||||
"Connectivity to the server has been lost.": "Веза ка серверу је прекинута.",
|
"Connectivity to the server has been lost.": "Веза ка серверу је прекинута.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Послате поруке биће сачуване док се веза не успостави поново.",
|
"Sent messages will be stored until your connection has returned.": "Послате поруке биће сачуване док се веза не успостави поново.",
|
||||||
"You seem to be uploading files, are you sure you want to quit?": "Изгледа да отпремате датотеке. Да ли сте сигурни да желите изаћи?",
|
"You seem to be uploading files, are you sure you want to quit?": "Изгледа да отпремате датотеке. Да ли сте сигурни да желите изаћи?",
|
||||||
|
@ -354,7 +347,6 @@
|
||||||
"Search failed": "Претрага је неуспешна",
|
"Search failed": "Претрага је неуспешна",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Сервер је можда недоступан, преоптерећен или је истекло време претраживања :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Сервер је можда недоступан, преоптерећен или је истекло време претраживања :(",
|
||||||
"No more results": "Нема више резултата",
|
"No more results": "Нема више резултата",
|
||||||
"Room": "Соба",
|
|
||||||
"Failed to reject invite": "Нисам успео да одбацим позивницу",
|
"Failed to reject invite": "Нисам успео да одбацим позивницу",
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Покушао сам да учитам одређену тачку у временској линији ове собе али ви немате овлашћења за преглед наведене поруке.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Покушао сам да учитам одређену тачку у временској линији ове собе али ви немате овлашћења за преглед наведене поруке.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Покушао сам да учитам одређену тачку у временској линији ове собе али нисам могао да је нађем.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Покушао сам да учитам одређену тачку у временској линији ове собе али нисам могао да је нађем.",
|
||||||
|
@ -370,7 +362,6 @@
|
||||||
"<not supported>": "<није подржано>",
|
"<not supported>": "<није подржано>",
|
||||||
"Import E2E room keys": "Увези E2E кључеве собе",
|
"Import E2E room keys": "Увези E2E кључеве собе",
|
||||||
"Cryptography": "Криптографија",
|
"Cryptography": "Криптографија",
|
||||||
"Labs": "Лабораторије",
|
|
||||||
"Check for update": "Провери да ли има ажурирања",
|
"Check for update": "Провери да ли има ажурирања",
|
||||||
"Reject all %(invitedRooms)s invites": "Одбиј све позивнице за собе %(invitedRooms)s",
|
"Reject all %(invitedRooms)s invites": "Одбиј све позивнице за собе %(invitedRooms)s",
|
||||||
"Start automatically after system login": "Самостално покрећи након пријаве на систем",
|
"Start automatically after system login": "Самостално покрећи након пријаве на систем",
|
||||||
|
@ -607,8 +598,6 @@
|
||||||
"General failure": "Општа грешка",
|
"General failure": "Општа грешка",
|
||||||
"Go Back": "Назад",
|
"Go Back": "Назад",
|
||||||
"Send a bug report with logs": "Пошаљи извештај о грешци са записницима",
|
"Send a bug report with logs": "Пошаљи извештај о грешци са записницима",
|
||||||
"Light": "Светла",
|
|
||||||
"Dark": "Тамна",
|
|
||||||
"a few seconds ago": "пре неколико секунди",
|
"a few seconds ago": "пре неколико секунди",
|
||||||
"about a minute ago": "пре једног минута",
|
"about a minute ago": "пре једног минута",
|
||||||
"%(num)s minutes ago": "пре %(num)s минута",
|
"%(num)s minutes ago": "пре %(num)s минута",
|
||||||
|
@ -629,7 +618,6 @@
|
||||||
"Theme added!": "Тема додата!",
|
"Theme added!": "Тема додата!",
|
||||||
"Custom theme URL": "Адреса прилагођене теме",
|
"Custom theme URL": "Адреса прилагођене теме",
|
||||||
"Add theme": "Додај тему",
|
"Add theme": "Додај тему",
|
||||||
"Theme": "Тема",
|
|
||||||
"Customise your appearance": "Прилагодите изглед",
|
"Customise your appearance": "Прилагодите изглед",
|
||||||
"Appearance Settings only affect this %(brand)s session.": "Подешавања изгледа се примењују само на %(brand)s сесију.",
|
"Appearance Settings only affect this %(brand)s session.": "Подешавања изгледа се примењују само на %(brand)s сесију.",
|
||||||
"Help & About": "Помоћ и подаци о програму",
|
"Help & About": "Помоћ и подаци о програму",
|
||||||
|
@ -640,7 +628,6 @@
|
||||||
"Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона",
|
"Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона",
|
||||||
"Send a reply…": "Пошаљи одговор…",
|
"Send a reply…": "Пошаљи одговор…",
|
||||||
"No recently visited rooms": "Нема недавно посећених соба",
|
"No recently visited rooms": "Нема недавно посећених соба",
|
||||||
"Appearance": "Изглед",
|
|
||||||
"Show rooms with unread messages first": "Прво прикажи собе са непрочитаним порукама",
|
"Show rooms with unread messages first": "Прво прикажи собе са непрочитаним порукама",
|
||||||
"Show previews of messages": "Прикажи прегледе порука",
|
"Show previews of messages": "Прикажи прегледе порука",
|
||||||
"Sort by": "Поређај по",
|
"Sort by": "Поређај по",
|
||||||
|
@ -949,7 +936,6 @@
|
||||||
"Click the button below to confirm adding this phone number.": "Кликните на дугме испод за потврду додавања броја телефона.",
|
"Click the button below to confirm adding this phone number.": "Кликните на дугме испод за потврду додавања броја телефона.",
|
||||||
"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.": "Потврдите додавање броја телефона помоћу јединствене пријаве да докажете свој идентитет.",
|
||||||
"Homeserver": "Домаћи сервер",
|
|
||||||
"Your homeserver": "Ваш домаћи сервер",
|
"Your homeserver": "Ваш домаћи сервер",
|
||||||
"Your homeserver does not support cross-signing.": "Ваш домаћи сервер не подржава међу-потписивање.",
|
"Your homeserver does not support cross-signing.": "Ваш домаћи сервер не подржава међу-потписивање.",
|
||||||
"Please contact your homeserver administrator.": "Контактирајте администратора вашег сервера.",
|
"Please contact your homeserver administrator.": "Контактирајте администратора вашег сервера.",
|
||||||
|
@ -1316,7 +1302,21 @@
|
||||||
"success": "Успех",
|
"success": "Успех",
|
||||||
"suggestions": "Предлози",
|
"suggestions": "Предлози",
|
||||||
"unmute": "Појачај",
|
"unmute": "Појачај",
|
||||||
"username": "Корисничко име"
|
"username": "Корисничко име",
|
||||||
|
"attachment": "Прилог",
|
||||||
|
"light": "Светла",
|
||||||
|
"dark": "Тамна",
|
||||||
|
"warning": "Упозорење",
|
||||||
|
"home": "Почетна",
|
||||||
|
"favourites": "Омиљено",
|
||||||
|
"room": "Соба",
|
||||||
|
"theme": "Тема",
|
||||||
|
"name": "Име",
|
||||||
|
"description": "Опис",
|
||||||
|
"options": "Опције",
|
||||||
|
"appearance": "Изглед",
|
||||||
|
"homeserver": "Домаћи сервер",
|
||||||
|
"labs": "Лабораторије"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Настави",
|
"continue": "Настави",
|
||||||
|
@ -1341,5 +1341,6 @@
|
||||||
"save": "Сачувај",
|
"save": "Сачувај",
|
||||||
"start_chat": "Започни разговор",
|
"start_chat": "Започни разговор",
|
||||||
"view_source": "Погледај извор"
|
"view_source": "Погледај извор"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Почетна"
|
||||||
|
}
|
||||||
|
|
|
@ -72,7 +72,6 @@
|
||||||
"Upload Failed": "Prenos datoteke na server nije uspio",
|
"Upload Failed": "Prenos datoteke na server nije uspio",
|
||||||
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Datoteka '%(fileName)s' premašuje maksimalnu veličinu za prijenose privatnog/javnog servera koji koristite",
|
"The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Datoteka '%(fileName)s' premašuje maksimalnu veličinu za prijenose privatnog/javnog servera koji koristite",
|
||||||
"The file '%(fileName)s' failed to upload.": "Prenos datoteke '%(fileName)s' nije uspio.",
|
"The file '%(fileName)s' failed to upload.": "Prenos datoteke '%(fileName)s' nije uspio.",
|
||||||
"Attachment": "Prilog",
|
|
||||||
"Click the button below to confirm adding this phone number.": "Kliknite taster ispod da biste potvrdili dodavanje telefonskog broja.",
|
"Click the button below to confirm adding this phone number.": "Kliknite taster ispod da biste potvrdili dodavanje telefonskog broja.",
|
||||||
"Confirm adding phone number": "Potvrdite dodavanje telefonskog broja",
|
"Confirm adding phone number": "Potvrdite dodavanje telefonskog broja",
|
||||||
"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.",
|
||||||
|
@ -95,6 +94,7 @@
|
||||||
"Use Ctrl + Enter to send a message": "Koristi Ctrl + Enter za slanje poruke",
|
"Use Ctrl + Enter to send a message": "Koristi Ctrl + Enter za slanje poruke",
|
||||||
"User is already in the room": "Korisnik je već u sobi",
|
"User is already in the room": "Korisnik je već u sobi",
|
||||||
"common": {
|
"common": {
|
||||||
"error": "Greška"
|
"error": "Greška",
|
||||||
|
"attachment": "Prilog"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
"Are you sure you want to reject the invitation?": "Är du säker på att du vill avböja inbjudan?",
|
"Are you sure you want to reject the invitation?": "Är du säker på att du vill avböja inbjudan?",
|
||||||
"Banned users": "Bannade användare",
|
"Banned users": "Bannade användare",
|
||||||
"Bans user with given id": "Bannar användaren med givet ID",
|
"Bans user with given id": "Bannar användaren med givet ID",
|
||||||
"Attachment": "Bilaga",
|
|
||||||
"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>.": "Kan inte ansluta till en hemserver via HTTP då adressen i webbläsaren är HTTPS. Använd HTTPS, eller <a>aktivera osäkra skript</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>.": "Kan inte ansluta till en hemserver via HTTP då adressen i webbläsaren är HTTPS. Använd HTTPS, eller <a>aktivera osäkra skript</a>.",
|
||||||
"Change Password": "Byt lösenord",
|
"Change Password": "Byt lösenord",
|
||||||
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s bytte rummets namn till %(roomName)s.",
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s bytte rummets namn till %(roomName)s.",
|
||||||
|
@ -70,14 +69,12 @@
|
||||||
"Close": "Stäng",
|
"Close": "Stäng",
|
||||||
"Enter passphrase": "Ange lösenfras",
|
"Enter passphrase": "Ange lösenfras",
|
||||||
"Failure to create room": "Misslyckades att skapa rummet",
|
"Failure to create room": "Misslyckades att skapa rummet",
|
||||||
"Favourites": "Favoriter",
|
|
||||||
"Filter room members": "Filtrera rumsmedlemmar",
|
"Filter room members": "Filtrera rumsmedlemmar",
|
||||||
"Forget room": "Glöm bort rum",
|
"Forget room": "Glöm bort rum",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Av säkerhetsskäl har den här sessionen loggats ut. Vänligen logga in igen.",
|
"For security, this session has been signed out. Please sign in again.": "Av säkerhetsskäl har den här sessionen loggats ut. Vänligen logga in igen.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s från %(fromPowerLevel)s till %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s från %(fromPowerLevel)s till %(toPowerLevel)s",
|
||||||
"Hangup": "Lägg på",
|
"Hangup": "Lägg på",
|
||||||
"Historical": "Historiska",
|
"Historical": "Historiska",
|
||||||
"Home": "Hem",
|
|
||||||
"Import": "Importera",
|
"Import": "Importera",
|
||||||
"Import E2E room keys": "Importera rumskrypteringsnycklar",
|
"Import E2E room keys": "Importera rumskrypteringsnycklar",
|
||||||
"Incorrect username and/or password.": "Fel användarnamn och/eller lösenord.",
|
"Incorrect username and/or password.": "Fel användarnamn och/eller lösenord.",
|
||||||
|
@ -89,7 +86,6 @@
|
||||||
"Sign in with": "Logga in med",
|
"Sign in with": "Logga in med",
|
||||||
"Join Room": "Gå med i rum",
|
"Join Room": "Gå med i rum",
|
||||||
"Jump to first unread message.": "Hoppa till första olästa meddelandet.",
|
"Jump to first unread message.": "Hoppa till första olästa meddelandet.",
|
||||||
"Labs": "Experiment",
|
|
||||||
"Logout": "Logga ut",
|
"Logout": "Logga ut",
|
||||||
"Low priority": "Låg prioritet",
|
"Low priority": "Låg prioritet",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar från att de bjöds in.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar från att de bjöds in.",
|
||||||
|
@ -99,7 +95,6 @@
|
||||||
"Missing room_id in request": "room_id saknas i förfrågan",
|
"Missing room_id in request": "room_id saknas i förfrågan",
|
||||||
"Missing user_id in request": "user_id saknas i förfrågan",
|
"Missing user_id in request": "user_id saknas i förfrågan",
|
||||||
"Moderator": "Moderator",
|
"Moderator": "Moderator",
|
||||||
"Name": "Namn",
|
|
||||||
"New passwords don't match": "De nya lösenorden matchar inte",
|
"New passwords don't match": "De nya lösenorden matchar inte",
|
||||||
"New passwords must match each other.": "De nya lösenorden måste matcha.",
|
"New passwords must match each other.": "De nya lösenorden måste matcha.",
|
||||||
"not specified": "inte specificerad",
|
"not specified": "inte specificerad",
|
||||||
|
@ -199,7 +194,6 @@
|
||||||
"On": "På",
|
"On": "På",
|
||||||
"Changelog": "Ändringslogg",
|
"Changelog": "Ändringslogg",
|
||||||
"Waiting for response from server": "Väntar på svar från servern",
|
"Waiting for response from server": "Väntar på svar från servern",
|
||||||
"Warning": "Varning",
|
|
||||||
"This Room": "Det här rummet",
|
"This Room": "Det här rummet",
|
||||||
"Noisy": "Högljudd",
|
"Noisy": "Högljudd",
|
||||||
"Messages containing my display name": "Meddelanden som innehåller mitt visningsnamn",
|
"Messages containing my display name": "Meddelanden som innehåller mitt visningsnamn",
|
||||||
|
@ -343,7 +337,6 @@
|
||||||
"You seem to be in a call, are you sure you want to quit?": "Du verkar vara i ett samtal, är du säker på att du vill avsluta?",
|
"You seem to be in a call, are you sure you want to quit?": "Du verkar vara i ett samtal, är du säker på att du vill avsluta?",
|
||||||
"Connectivity to the server has been lost.": "Anslutning till servern har brutits.",
|
"Connectivity to the server has been lost.": "Anslutning till servern har brutits.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Skickade meddelanden kommer att lagras tills anslutningen är tillbaka.",
|
"Sent messages will be stored until your connection has returned.": "Skickade meddelanden kommer att lagras tills anslutningen är tillbaka.",
|
||||||
"Room": "Rum",
|
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Försökte ladda en viss punkt i det här rummets tidslinje, men du är inte behörig att visa det aktuella meddelandet.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Försökte ladda en viss punkt i det här rummets tidslinje, men du är inte behörig att visa det aktuella meddelandet.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Försökte ladda en specifik punkt i det här rummets tidslinje, men kunde inte hitta den.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Försökte ladda en specifik punkt i det här rummets tidslinje, men kunde inte hitta den.",
|
||||||
"Unable to remove contact information": "Kunde inte ta bort kontaktuppgifter",
|
"Unable to remove contact information": "Kunde inte ta bort kontaktuppgifter",
|
||||||
|
@ -363,7 +356,6 @@
|
||||||
"Import room keys": "Importera rumsnycklar",
|
"Import room keys": "Importera rumsnycklar",
|
||||||
"File to import": "Fil att importera",
|
"File to import": "Fil att importera",
|
||||||
"Drop file here to upload": "Släpp en fil här för att ladda upp",
|
"Drop file here to upload": "Släpp en fil här för att ladda upp",
|
||||||
"Options": "Alternativ",
|
|
||||||
"Replying": "Svarar",
|
"Replying": "Svarar",
|
||||||
"Banned by %(displayName)s": "Bannad av %(displayName)s",
|
"Banned by %(displayName)s": "Bannad av %(displayName)s",
|
||||||
"Muted Users": "Dämpade användare",
|
"Muted Users": "Dämpade användare",
|
||||||
|
@ -458,7 +450,6 @@
|
||||||
"expand": "fäll ut",
|
"expand": "fäll ut",
|
||||||
"<a>In reply to</a> <pill>": "<a>Som svar på</a> <pill>",
|
"<a>In reply to</a> <pill>": "<a>Som svar på</a> <pill>",
|
||||||
"Mirror local video feed": "Spegla den lokala videoströmmen",
|
"Mirror local video feed": "Spegla den lokala videoströmmen",
|
||||||
"Description": "Beskrivning",
|
|
||||||
"Something went wrong!": "Något gick fel!",
|
"Something went wrong!": "Något gick fel!",
|
||||||
"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.": "Du kommer inte att kunna ångra den här ändringen eftersom du degraderar dig själv. Om du är den sista privilegierade användaren i rummet blir det omöjligt att återfå behörigheter.",
|
"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.": "Du kommer inte att kunna ångra den här ändringen eftersom du degraderar dig själv. Om du är den sista privilegierade användaren i rummet blir det omöjligt att återfå behörigheter.",
|
||||||
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kommer inte att kunna ångra den här ändringen eftersom du höjer användaren till samma behörighetsnivå som dig själv.",
|
"You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Du kommer inte att kunna ångra den här ändringen eftersom du höjer användaren till samma behörighetsnivå som dig själv.",
|
||||||
|
@ -672,7 +663,6 @@
|
||||||
"Email addresses": "E-postadresser",
|
"Email addresses": "E-postadresser",
|
||||||
"Phone numbers": "Telefonnummer",
|
"Phone numbers": "Telefonnummer",
|
||||||
"Language and region": "Språk och region",
|
"Language and region": "Språk och region",
|
||||||
"Theme": "Tema",
|
|
||||||
"Account management": "Kontohantering",
|
"Account management": "Kontohantering",
|
||||||
"General": "Allmänt",
|
"General": "Allmänt",
|
||||||
"Credits": "Medverkande",
|
"Credits": "Medverkande",
|
||||||
|
@ -1102,8 +1092,6 @@
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s ändrade en regel som bannade rum som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s ändrade en regel som bannade rum som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s ändrade en regel som bannade servrar som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s ändrade en regel som bannade servrar som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s uppdaterade en bannregel som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s uppdaterade en bannregel som matchade %(oldGlob)s till att matcha %(newGlob)s på grund av %(reason)s",
|
||||||
"Light": "Ljust",
|
|
||||||
"Dark": "Mörkt",
|
|
||||||
"You signed in to a new session without verifying it:": "Du loggade in i en ny session utan att verifiera den:",
|
"You signed in to a new session without verifying it:": "Du loggade in i en ny session utan att verifiera den:",
|
||||||
"Verify your other session using one of the options below.": "Verifiera din andra session med ett av alternativen nedan.",
|
"Verify your other session using one of the options below.": "Verifiera din andra session med ett av alternativen nedan.",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) loggade in i en ny session utan att verifiera den:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) loggade in i en ny session utan att verifiera den:",
|
||||||
|
@ -1307,7 +1295,6 @@
|
||||||
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Använd en identitetsserver i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
"Use an identity server in Settings to receive invites directly in %(brand)s.": "Använd en identitetsserver i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
||||||
"Share this email in Settings to receive invites directly in %(brand)s.": "Dela denna e-postadress i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
"Share this email in Settings to receive invites directly in %(brand)s.": "Dela denna e-postadress i inställningarna för att motta inbjudningar direkt i %(brand)s.",
|
||||||
"Reject & Ignore user": "Avvisa och ignorera användare",
|
"Reject & Ignore user": "Avvisa och ignorera användare",
|
||||||
"Appearance": "Utseende",
|
|
||||||
"Show rooms with unread messages first": "Visa rum med olästa meddelanden först",
|
"Show rooms with unread messages first": "Visa rum med olästa meddelanden först",
|
||||||
"Show previews of messages": "Visa förhandsgranskningar av meddelanden",
|
"Show previews of messages": "Visa förhandsgranskningar av meddelanden",
|
||||||
"Sort by": "Sortera efter",
|
"Sort by": "Sortera efter",
|
||||||
|
@ -2004,7 +1991,6 @@
|
||||||
"Send stickers to this room as you": "Skicka dekaler till det här rummet som dig",
|
"Send stickers to this room as you": "Skicka dekaler till det här rummet som dig",
|
||||||
"Reason (optional)": "Orsak (valfritt)",
|
"Reason (optional)": "Orsak (valfritt)",
|
||||||
"Continue with %(provider)s": "Fortsätt med %(provider)s",
|
"Continue with %(provider)s": "Fortsätt med %(provider)s",
|
||||||
"Homeserver": "Hemserver",
|
|
||||||
"Server Options": "Serveralternativ",
|
"Server Options": "Serveralternativ",
|
||||||
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
"Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": {
|
||||||
"one": "Cacha på ett säkert sätt krypterade meddelanden lokalt för att de ska visas i sökresultat, och använd %(size)s för att lagra meddelanden från %(rooms)s rum.",
|
"one": "Cacha på ett säkert sätt krypterade meddelanden lokalt för att de ska visas i sökresultat, och använd %(size)s för att lagra meddelanden från %(rooms)s rum.",
|
||||||
|
@ -2207,9 +2193,7 @@
|
||||||
"Your private space": "Ditt privata utrymme",
|
"Your private space": "Ditt privata utrymme",
|
||||||
"Your public space": "Ditt offentliga utrymme",
|
"Your public space": "Ditt offentliga utrymme",
|
||||||
"Invite only, best for yourself or teams": "Endast inbjudan, bäst för dig själv eller team",
|
"Invite only, best for yourself or teams": "Endast inbjudan, bäst för dig själv eller team",
|
||||||
"Private": "Privat",
|
|
||||||
"Open space for anyone, best for communities": "Öppna utrymmet för alla, bäst för gemenskaper",
|
"Open space for anyone, best for communities": "Öppna utrymmet för alla, bäst för gemenskaper",
|
||||||
"Public": "Offentligt",
|
|
||||||
"Create a space": "Skapa ett utrymme",
|
"Create a space": "Skapa ett utrymme",
|
||||||
"Delete": "Radera",
|
"Delete": "Radera",
|
||||||
"Jump to the bottom of the timeline when you send a message": "Hoppa till botten av tidslinjen när du skickar ett meddelande",
|
"Jump to the bottom of the timeline when you send a message": "Hoppa till botten av tidslinjen när du skickar ett meddelande",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "Välj ett rum nedan först",
|
"Select a room below first": "Välj ett rum nedan först",
|
||||||
"Join the beta": "Gå med i betan",
|
"Join the beta": "Gå med i betan",
|
||||||
"Leave the beta": "Lämna betan",
|
"Leave the beta": "Lämna betan",
|
||||||
"Beta": "Beta",
|
|
||||||
"You may contact me if you have any follow up questions": "Ni kan kontakta mig om ni har vidare frågor",
|
"You may contact me if you have any follow up questions": "Ni kan kontakta mig om ni har vidare frågor",
|
||||||
"To leave the beta, visit your settings.": "För att lämna betan, besök dina inställningar.",
|
"To leave the beta, visit your settings.": "För att lämna betan, besök dina inställningar.",
|
||||||
"Your platform and username will be noted to help us use your feedback as much as we can.": "Din plattform och ditt användarnamn kommer att noteras för att hjälpa oss att använda din återkoppling så mycket vi kan.",
|
"Your platform and username will be noted to help us use your feedback as much as we can.": "Din plattform och ditt användarnamn kommer att noteras för att hjälpa oss att använda din återkoppling så mycket vi kan.",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "För att undvika dessa problem, skapa ett <a>nytt krypterat rum</a> för konversationen du planerar att ha.",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "För att undvika dessa problem, skapa ett <a>nytt krypterat rum</a> för konversationen du planerar att ha.",
|
||||||
"Are you sure you want to add encryption to this public room?": "Är du säker på att du vill lägga till kryptering till det här offentliga rummet?",
|
"Are you sure you want to add encryption to this public room?": "Är du säker på att du vill lägga till kryptering till det här offentliga rummet?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "Korssignering är klart, men nycklarna är inte säkerhetskopierade än.",
|
"Cross-signing is ready but keys are not backed up.": "Korssignering är klart, men nycklarna är inte säkerhetskopierade än.",
|
||||||
"Thread": "Tråd",
|
|
||||||
"Autoplay videos": "Autospela videor",
|
"Autoplay videos": "Autospela videor",
|
||||||
"Autoplay GIFs": "Autospela GIF:ar",
|
"Autoplay GIFs": "Autospela GIF:ar",
|
||||||
"The above, but in <Room /> as well": "Det ovanstående, men i <Room /> också",
|
"The above, but in <Room /> as well": "Det ovanstående, men i <Room /> också",
|
||||||
|
@ -2619,7 +2601,6 @@
|
||||||
"They'll still be able to access whatever you're not an admin of.": "De kommer fortfarande kunna komma åt saker du inte är admin för.",
|
"They'll still be able to access whatever you're not an admin of.": "De kommer fortfarande kunna komma åt saker du inte är admin för.",
|
||||||
"Disinvite from %(roomName)s": "Häv inbjudan från %(roomName)s",
|
"Disinvite from %(roomName)s": "Häv inbjudan från %(roomName)s",
|
||||||
"Export chat": "Exportera chatt",
|
"Export chat": "Exportera chatt",
|
||||||
"Threads": "Trådar",
|
|
||||||
"Create poll": "Skapa omröstning",
|
"Create poll": "Skapa omröstning",
|
||||||
"%(count)s reply": {
|
"%(count)s reply": {
|
||||||
"one": "%(count)s svar",
|
"one": "%(count)s svar",
|
||||||
|
@ -3462,7 +3443,6 @@
|
||||||
"Download %(brand)s Desktop": "Ladda ner %(brand)s skrivbord",
|
"Download %(brand)s Desktop": "Ladda ner %(brand)s skrivbord",
|
||||||
"Choose a locale": "Välj en lokalisering",
|
"Choose a locale": "Välj en lokalisering",
|
||||||
"<w>WARNING:</w> <description/>": "<w>VARNING:</w> <description/>",
|
"<w>WARNING:</w> <description/>": "<w>VARNING:</w> <description/>",
|
||||||
"Help": "Hjälp",
|
|
||||||
"Error downloading image": "Fel vid nedladdning av bild",
|
"Error downloading image": "Fel vid nedladdning av bild",
|
||||||
"Unable to show image due to error": "Kunde inte visa bild på grund av fel",
|
"Unable to show image due to error": "Kunde inte visa bild på grund av fel",
|
||||||
"Video call ended": "Videosamtal avslutades",
|
"Video call ended": "Videosamtal avslutades",
|
||||||
|
@ -3742,7 +3722,6 @@
|
||||||
"An error occurred when updating your notification preferences. Please try to toggle your option again.": "Ett fel uppstod när du uppdaterade dina aviseringsinställningar. Pröva att växla alternativet igen.",
|
"An error occurred when updating your notification preferences. Please try to toggle your option again.": "Ett fel uppstod när du uppdaterade dina aviseringsinställningar. Pröva att växla alternativet igen.",
|
||||||
"Verify Session": "Verifiera session",
|
"Verify Session": "Verifiera session",
|
||||||
"Ignore (%(counter)s)": "Ignorera (%(counter)s)",
|
"Ignore (%(counter)s)": "Ignorera (%(counter)s)",
|
||||||
"User": "Användare",
|
|
||||||
"Log out and back in to disable": "Logga ut och in igen för att inaktivera",
|
"Log out and back in to disable": "Logga ut och in igen för att inaktivera",
|
||||||
"View poll": "Visa omröstning",
|
"View poll": "Visa omröstning",
|
||||||
"There are no past polls for the past %(count)s days. Load more polls to view polls for previous months": {
|
"There are no past polls for the past %(count)s days. Load more polls to view polls for previous months": {
|
||||||
|
@ -3878,7 +3857,28 @@
|
||||||
"unmute": "Avtysta",
|
"unmute": "Avtysta",
|
||||||
"username": "Användarnamn",
|
"username": "Användarnamn",
|
||||||
"verification_cancelled": "Verifiering avbruten",
|
"verification_cancelled": "Verifiering avbruten",
|
||||||
"video": "Video"
|
"video": "Video",
|
||||||
|
"attachment": "Bilaga",
|
||||||
|
"light": "Ljust",
|
||||||
|
"dark": "Mörkt",
|
||||||
|
"warning": "Varning",
|
||||||
|
"home": "Hem",
|
||||||
|
"favourites": "Favoriter",
|
||||||
|
"thread": "Tråd",
|
||||||
|
"threads": "Trådar",
|
||||||
|
"user": "Användare",
|
||||||
|
"room": "Rum",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "Namn",
|
||||||
|
"description": "Beskrivning",
|
||||||
|
"public": "Offentligt",
|
||||||
|
"private": "Privat",
|
||||||
|
"options": "Alternativ",
|
||||||
|
"appearance": "Utseende",
|
||||||
|
"homeserver": "Hemserver",
|
||||||
|
"help": "Hjälp",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Experiment"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Fortsätt",
|
"continue": "Fortsätt",
|
||||||
|
@ -3915,5 +3915,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Användarmeny"
|
"user_menu": "Användarmeny"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Hem"
|
||||||
|
}
|
||||||
|
|
|
@ -53,7 +53,6 @@
|
||||||
"Today": "இன்று",
|
"Today": "இன்று",
|
||||||
"Yesterday": "நேற்று",
|
"Yesterday": "நேற்று",
|
||||||
"No update available.": "எந்த புதுப்பிப்பும் இல்லை.",
|
"No update available.": "எந்த புதுப்பிப்பும் இல்லை.",
|
||||||
"Warning": "எச்சரிக்கை",
|
|
||||||
"Thank you!": "உங்களுக்கு நன்றி",
|
"Thank you!": "உங்களுக்கு நன்றி",
|
||||||
"Back": "பின்",
|
"Back": "பின்",
|
||||||
"Event sent!": "நிகழ்வு அனுப்பப்பட்டது",
|
"Event sent!": "நிகழ்வு அனுப்பப்பட்டது",
|
||||||
|
@ -138,7 +137,8 @@
|
||||||
"common": {
|
"common": {
|
||||||
"analytics": "பகுப்பாய்வு",
|
"analytics": "பகுப்பாய்வு",
|
||||||
"error": "பிழை",
|
"error": "பிழை",
|
||||||
"mute": "முடக்கு"
|
"mute": "முடக்கு",
|
||||||
|
"warning": "எச்சரிக்கை"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "தொடரவும்",
|
"continue": "தொடரவும்",
|
||||||
|
@ -149,4 +149,4 @@
|
||||||
"remove": "நீக்கு",
|
"remove": "நீக்கு",
|
||||||
"view_source": "மூலத்தைக் காட்டு"
|
"view_source": "மூலத்தைக் காட்டு"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
"Are you sure?": "మీరు చెప్పేది నిజమా?",
|
"Are you sure?": "మీరు చెప్పేది నిజమా?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "మీరు ఖచ్చితంగా గది '%(roomName)s' వదిలివేయాలనుకుంటున్నారా?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "మీరు ఖచ్చితంగా గది '%(roomName)s' వదిలివేయాలనుకుంటున్నారా?",
|
||||||
"Are you sure you want to reject the invitation?": "మీరు ఖచ్చితంగా ఆహ్వానాన్ని తిరస్కరించాలనుకుంటున్నారా?",
|
"Are you sure you want to reject the invitation?": "మీరు ఖచ్చితంగా ఆహ్వానాన్ని తిరస్కరించాలనుకుంటున్నారా?",
|
||||||
"Attachment": "జోడింపు",
|
|
||||||
"Banned users": "నిషేధించిన వినియోగదారులు",
|
"Banned users": "నిషేధించిన వినియోగదారులు",
|
||||||
"Bans user with given id": "ఇచ్చిన ఐడి తో వినియోగదారుని నిషేధించారు",
|
"Bans user with given id": "ఇచ్చిన ఐడి తో వినియోగదారుని నిషేధించారు",
|
||||||
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "గృహనిర్వాహకులకు కనెక్ట్ చేయలేరు - దయచేసి మీ కనెక్టివిటీని తనిఖీ చేయండి, మీ <a> 1 హోమరుసు యొక్క ఎస్ఎస్ఎల్ సర్టిఫికేట్ </a> 2 ని విశ్వసనీయపరుచుకొని, బ్రౌజర్ పొడిగింపు అభ్యర్థనలను నిరోధించబడదని నిర్ధారించుకోండి.",
|
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "గృహనిర్వాహకులకు కనెక్ట్ చేయలేరు - దయచేసి మీ కనెక్టివిటీని తనిఖీ చేయండి, మీ <a> 1 హోమరుసు యొక్క ఎస్ఎస్ఎల్ సర్టిఫికేట్ </a> 2 ని విశ్వసనీయపరుచుకొని, బ్రౌజర్ పొడిగింపు అభ్యర్థనలను నిరోధించబడదని నిర్ధారించుకోండి.",
|
||||||
|
@ -88,7 +87,6 @@
|
||||||
"On": "వేయుము",
|
"On": "వేయుము",
|
||||||
"Changelog": "మార్పు వివరణ",
|
"Changelog": "మార్పు వివరణ",
|
||||||
"Source URL": "మూల URL",
|
"Source URL": "మూల URL",
|
||||||
"Warning": "హెచ్చరిక",
|
|
||||||
"Noisy": "శబ్దం",
|
"Noisy": "శబ్దం",
|
||||||
"Messages containing my display name": "నా ప్రదర్శన పేరును కలిగి ఉన్న సందేశాలు",
|
"Messages containing my display name": "నా ప్రదర్శన పేరును కలిగి ఉన్న సందేశాలు",
|
||||||
"Messages in one-to-one chats": "సందేశాలు నుండి ఒకరికి ఒకటి మాటామంతి",
|
"Messages in one-to-one chats": "సందేశాలు నుండి ఒకరికి ఒకటి మాటామంతి",
|
||||||
|
@ -125,7 +123,9 @@
|
||||||
"common": {
|
"common": {
|
||||||
"error": "లోపం",
|
"error": "లోపం",
|
||||||
"mute": "నిశబ్ధము",
|
"mute": "నిశబ్ధము",
|
||||||
"settings": "అమరికలు"
|
"settings": "అమరికలు",
|
||||||
|
"attachment": "జోడింపు",
|
||||||
|
"warning": "హెచ్చరిక"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "కొనసాగించు",
|
"continue": "కొనసాగించు",
|
||||||
|
@ -133,4 +133,4 @@
|
||||||
"leave": "వదిలి",
|
"leave": "వదిలి",
|
||||||
"remove": "తొలగించు"
|
"remove": "తొలగించు"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
"Download %(text)s": "ดาวน์โหลด %(text)s",
|
"Download %(text)s": "ดาวน์โหลด %(text)s",
|
||||||
"Emoji": "อีโมจิ",
|
"Emoji": "อีโมจิ",
|
||||||
"Low priority": "ความสำคัญต่ำ",
|
"Low priority": "ความสำคัญต่ำ",
|
||||||
"Name": "ชื่อ",
|
|
||||||
"Profile": "โปรไฟล์",
|
"Profile": "โปรไฟล์",
|
||||||
"Reason": "เหตุผล",
|
"Reason": "เหตุผล",
|
||||||
"Register": "ลงทะเบียน",
|
"Register": "ลงทะเบียน",
|
||||||
|
@ -41,7 +40,6 @@
|
||||||
"Are you sure?": "คุณแน่ใจหรือไม่?",
|
"Are you sure?": "คุณแน่ใจหรือไม่?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "คุณแน่ใจหรือว่าต้องการจะออกจากห้อง '%(roomName)s'?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "คุณแน่ใจหรือว่าต้องการจะออกจากห้อง '%(roomName)s'?",
|
||||||
"Are you sure you want to reject the invitation?": "คุณแน่ใจหรือว่าต้องการจะปฏิเสธคำเชิญ?",
|
"Are you sure you want to reject the invitation?": "คุณแน่ใจหรือว่าต้องการจะปฏิเสธคำเชิญ?",
|
||||||
"Attachment": "ไฟล์แนบ",
|
|
||||||
"Banned users": "ผู้ใช้ที่ถูกแบน",
|
"Banned users": "ผู้ใช้ที่ถูกแบน",
|
||||||
"Bans user with given id": "ผู้ใช้และ id ที่ถูกแบน",
|
"Bans user with given id": "ผู้ใช้และ id ที่ถูกแบน",
|
||||||
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s เปลี่ยนชื่อห้องไปเป็น %(roomName)s",
|
"%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s เปลี่ยนชื่อห้องไปเป็น %(roomName)s",
|
||||||
|
@ -66,7 +64,6 @@
|
||||||
"Failed to unban": "การถอนแบนล้มเหลว",
|
"Failed to unban": "การถอนแบนล้มเหลว",
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "การยืนยันอีเมลล้มเหลว: กรุณาตรวจสอบว่าคุณคลิกลิงก์ในอีเมลแล้ว",
|
"Failed to verify email address: make sure you clicked the link in the email": "การยืนยันอีเมลล้มเหลว: กรุณาตรวจสอบว่าคุณคลิกลิงก์ในอีเมลแล้ว",
|
||||||
"Failure to create room": "การสร้างห้องล้มเหลว",
|
"Failure to create room": "การสร้างห้องล้มเหลว",
|
||||||
"Favourites": "รายการโปรด",
|
|
||||||
"Filter room members": "กรองสมาชิกห้อง",
|
"Filter room members": "กรองสมาชิกห้อง",
|
||||||
"Forget room": "ลืมห้อง",
|
"Forget room": "ลืมห้อง",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s จาก %(fromPowerLevel)s ไปเป็น %(toPowerLevel)s",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s จาก %(fromPowerLevel)s ไปเป็น %(toPowerLevel)s",
|
||||||
|
@ -82,7 +79,6 @@
|
||||||
"Sign in with": "เข้าสู่ระบบด้วย",
|
"Sign in with": "เข้าสู่ระบบด้วย",
|
||||||
"Join Room": "เข้าร่วมห้อง",
|
"Join Room": "เข้าร่วมห้อง",
|
||||||
"Jump to first unread message.": "ข้ามไปยังข้อความแรกที่ยังไม่ได้อ่าน",
|
"Jump to first unread message.": "ข้ามไปยังข้อความแรกที่ยังไม่ได้อ่าน",
|
||||||
"Labs": "ห้องทดลอง",
|
|
||||||
"Logout": "ออกจากระบบ",
|
"Logout": "ออกจากระบบ",
|
||||||
"Missing user_id in request": "ไม่พบ user_id ในคำขอ",
|
"Missing user_id in request": "ไม่พบ user_id ในคำขอ",
|
||||||
"Moderator": "ผู้ช่วยดูแล",
|
"Moderator": "ผู้ช่วยดูแล",
|
||||||
|
@ -163,9 +159,7 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s %(day)s %(monthName)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s %(day)s %(monthName)s %(time)s",
|
||||||
"%(weekDayName)s, %(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",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"Room": "ห้อง",
|
|
||||||
"New Password": "รหัสผ่านใหม่",
|
"New Password": "รหัสผ่านใหม่",
|
||||||
"Options": "ตัวเลือก",
|
|
||||||
"Export room keys": "ส่งออกกุณแจห้อง",
|
"Export room keys": "ส่งออกกุณแจห้อง",
|
||||||
"Confirm passphrase": "ยืนยันรหัสผ่าน",
|
"Confirm passphrase": "ยืนยันรหัสผ่าน",
|
||||||
"Import room keys": "นำเข้ากุณแจห้อง",
|
"Import room keys": "นำเข้ากุณแจห้อง",
|
||||||
|
@ -177,7 +171,6 @@
|
||||||
"Add": "เพิ่ม",
|
"Add": "เพิ่ม",
|
||||||
"Accept": "ยอมรับ",
|
"Accept": "ยอมรับ",
|
||||||
"Close": "ปิด",
|
"Close": "ปิด",
|
||||||
"Home": "เมนูหลัก",
|
|
||||||
"Unnamed Room": "ห้องที่ยังไม่ได้ตั้งชื่อ",
|
"Unnamed Room": "ห้องที่ยังไม่ได้ตั้งชื่อ",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
"one": "(~%(count)s ผลลัพท์)",
|
"one": "(~%(count)s ผลลัพท์)",
|
||||||
|
@ -206,7 +199,6 @@
|
||||||
"On": "เปิด",
|
"On": "เปิด",
|
||||||
"Changelog": "บันทึกการเปลี่ยนแปลง",
|
"Changelog": "บันทึกการเปลี่ยนแปลง",
|
||||||
"Waiting for response from server": "กำลังรอการตอบสนองจากเซิร์ฟเวอร์",
|
"Waiting for response from server": "กำลังรอการตอบสนองจากเซิร์ฟเวอร์",
|
||||||
"Warning": "คำเตือน",
|
|
||||||
"This Room": "ห้องนี้",
|
"This Room": "ห้องนี้",
|
||||||
"Resend": "ส่งใหม่",
|
"Resend": "ส่งใหม่",
|
||||||
"Messages containing my display name": "ข้อความที่มีชื่อของฉัน",
|
"Messages containing my display name": "ข้อความที่มีชื่อของฉัน",
|
||||||
|
@ -463,7 +455,15 @@
|
||||||
"settings": "การตั้งค่า",
|
"settings": "การตั้งค่า",
|
||||||
"success": "สำเร็จ",
|
"success": "สำเร็จ",
|
||||||
"unmute": "เปิดเสียง",
|
"unmute": "เปิดเสียง",
|
||||||
"username": "ชื่อผู้ใช้"
|
"username": "ชื่อผู้ใช้",
|
||||||
|
"attachment": "ไฟล์แนบ",
|
||||||
|
"warning": "คำเตือน",
|
||||||
|
"home": "เมนูหลัก",
|
||||||
|
"favourites": "รายการโปรด",
|
||||||
|
"room": "ห้อง",
|
||||||
|
"name": "ชื่อ",
|
||||||
|
"options": "ตัวเลือก",
|
||||||
|
"labs": "ห้องทดลอง"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "ดำเนินการต่อ",
|
"continue": "ดำเนินการต่อ",
|
||||||
|
@ -481,5 +481,6 @@
|
||||||
"save": "บันทึก",
|
"save": "บันทึก",
|
||||||
"start_chat": "เริ่มแชท",
|
"start_chat": "เริ่มแชท",
|
||||||
"view_source": "ดูซอร์ส"
|
"view_source": "ดูซอร์ส"
|
||||||
}
|
},
|
||||||
}
|
"Home": "เมนูหลัก"
|
||||||
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
"Are you sure?": "Emin misiniz ?",
|
"Are you sure?": "Emin misiniz ?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "'%(roomName)s' odasından ayrılmak istediğinize emin misiniz ?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "'%(roomName)s' odasından ayrılmak istediğinize emin misiniz ?",
|
||||||
"Are you sure you want to reject the invitation?": "Daveti reddetmek istediğinizden emin misiniz ?",
|
"Are you sure you want to reject the invitation?": "Daveti reddetmek istediğinizden emin misiniz ?",
|
||||||
"Attachment": "Ek Dosya",
|
|
||||||
"Banned users": "Yasaklanan(Banlanan) Kullanıcılar",
|
"Banned users": "Yasaklanan(Banlanan) Kullanıcılar",
|
||||||
"Bans user with given id": "Yasaklanan(Banlanan) Kullanıcılar , ID'leri ile birlikte",
|
"Bans user with given id": "Yasaklanan(Banlanan) Kullanıcılar , ID'leri ile birlikte",
|
||||||
"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.": "Ana Sunucu'ya bağlanılamıyor - lütfen bağlantınızı kontrol edin ,<a> Ana Sunucu SSL sertifikanızın </a> güvenilir olduğundan ve bir tarayıcı uzantısının istekleri engellemiyor olduğundan emin olun.",
|
"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.": "Ana Sunucu'ya bağlanılamıyor - lütfen bağlantınızı kontrol edin ,<a> Ana Sunucu SSL sertifikanızın </a> güvenilir olduğundan ve bir tarayıcı uzantısının istekleri engellemiyor olduğundan emin olun.",
|
||||||
|
@ -70,14 +69,12 @@
|
||||||
"Failed to verify email address: make sure you clicked the link in the email": "E-posta adresi doğrulanamadı: E-postadaki bağlantıya tıkladığınızdan emin olun",
|
"Failed to verify email address: make sure you clicked the link in the email": "E-posta adresi doğrulanamadı: E-postadaki bağlantıya tıkladığınızdan emin olun",
|
||||||
"Failure to create room": "Oda oluşturulamadı",
|
"Failure to create room": "Oda oluşturulamadı",
|
||||||
"Favourite": "Favori",
|
"Favourite": "Favori",
|
||||||
"Favourites": "Favoriler",
|
|
||||||
"Filter room members": "Oda üyelerini Filtrele",
|
"Filter room members": "Oda üyelerini Filtrele",
|
||||||
"Forget room": "Odayı Unut",
|
"Forget room": "Odayı Unut",
|
||||||
"For security, this session has been signed out. Please sign in again.": "Güvenlik için , bu oturuma çıkış yapıldı . Lütfen tekrar oturum açın.",
|
"For security, this session has been signed out. Please sign in again.": "Güvenlik için , bu oturuma çıkış yapıldı . Lütfen tekrar oturum açın.",
|
||||||
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s %(fromPowerLevel)s den %(toPowerLevel)s ' ye",
|
"%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s %(fromPowerLevel)s den %(toPowerLevel)s ' ye",
|
||||||
"Hangup": "Sorun",
|
"Hangup": "Sorun",
|
||||||
"Historical": "Tarihi",
|
"Historical": "Tarihi",
|
||||||
"Home": "Ev",
|
|
||||||
"Import": "İçe Aktar",
|
"Import": "İçe Aktar",
|
||||||
"Import E2E room keys": "Uçtan uca Oda Anahtarlarını İçe Aktar",
|
"Import E2E room keys": "Uçtan uca Oda Anahtarlarını İçe Aktar",
|
||||||
"Incorrect username and/or password.": "Yanlış kullanıcı adı ve / veya şifre.",
|
"Incorrect username and/or password.": "Yanlış kullanıcı adı ve / veya şifre.",
|
||||||
|
@ -89,7 +86,6 @@
|
||||||
"Sign in with": "Şununla giriş yap",
|
"Sign in with": "Şununla giriş yap",
|
||||||
"Join Room": "Odaya Katıl",
|
"Join Room": "Odaya Katıl",
|
||||||
"Jump to first unread message.": "İlk okunmamış iletiye atla.",
|
"Jump to first unread message.": "İlk okunmamış iletiye atla.",
|
||||||
"Labs": "Laboratuarlar",
|
|
||||||
"Logout": "Çıkış Yap",
|
"Logout": "Çıkış Yap",
|
||||||
"Low priority": "Düşük öncelikli",
|
"Low priority": "Düşük öncelikli",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gelecekte oda geçmişini görünür yaptı Tüm oda üyeleri , davet edildiği noktadan.",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s gelecekte oda geçmişini görünür yaptı Tüm oda üyeleri , davet edildiği noktadan.",
|
||||||
|
@ -100,7 +96,6 @@
|
||||||
"Missing room_id in request": "İstekte eksik room_id",
|
"Missing room_id in request": "İstekte eksik room_id",
|
||||||
"Missing user_id in request": "İstekte user_id eksik",
|
"Missing user_id in request": "İstekte user_id eksik",
|
||||||
"Moderator": "Moderatör",
|
"Moderator": "Moderatör",
|
||||||
"Name": "İsim",
|
|
||||||
"New passwords don't match": "Yeni şifreler uyuşmuyor",
|
"New passwords don't match": "Yeni şifreler uyuşmuyor",
|
||||||
"New passwords must match each other.": "Yeni şifreler birbirleriyle eşleşmelidir.",
|
"New passwords must match each other.": "Yeni şifreler birbirleriyle eşleşmelidir.",
|
||||||
"not specified": "Belirtilmemiş",
|
"not specified": "Belirtilmemiş",
|
||||||
|
@ -210,7 +205,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "Hafta - %(weekDayName)s , %(day)s -%(monthName)s -%(fullYear)s , %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "Hafta - %(weekDayName)s , %(day)s -%(monthName)s -%(fullYear)s , %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "Bu sunucu bir telefon numarası ile kimlik doğrulamayı desteklemez.",
|
"This server does not support authentication with a phone number.": "Bu sunucu bir telefon numarası ile kimlik doğrulamayı desteklemez.",
|
||||||
"Room": "Oda",
|
|
||||||
"Connectivity to the server has been lost.": "Sunucuyla olan bağlantı kesildi.",
|
"Connectivity to the server has been lost.": "Sunucuyla olan bağlantı kesildi.",
|
||||||
"Sent messages will be stored until your connection has returned.": "Gönderilen iletiler bağlantınız geri gelene kadar saklanacak.",
|
"Sent messages will be stored until your connection has returned.": "Gönderilen iletiler bağlantınız geri gelene kadar saklanacak.",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -221,7 +215,6 @@
|
||||||
"Create new room": "Yeni Oda Oluştur",
|
"Create new room": "Yeni Oda Oluştur",
|
||||||
"New Password": "Yeni Şifre",
|
"New Password": "Yeni Şifre",
|
||||||
"Start automatically after system login": "Sisteme giriş yaptıktan sonra otomatik başlat",
|
"Start automatically after system login": "Sisteme giriş yaptıktan sonra otomatik başlat",
|
||||||
"Options": "Seçenekler",
|
|
||||||
"Passphrases must match": "Şifrenin eşleşmesi gerekir",
|
"Passphrases must match": "Şifrenin eşleşmesi gerekir",
|
||||||
"Passphrase must not be empty": "Şifrenin boş olmaması gerekir",
|
"Passphrase must not be empty": "Şifrenin boş olmaması gerekir",
|
||||||
"Export room keys": "Oda anahtarlarını dışa aktar",
|
"Export room keys": "Oda anahtarlarını dışa aktar",
|
||||||
|
@ -485,7 +478,6 @@
|
||||||
"Confirm": "Doğrula",
|
"Confirm": "Doğrula",
|
||||||
"Phone (optional)": "Telefon (opsiyonel)",
|
"Phone (optional)": "Telefon (opsiyonel)",
|
||||||
"Couldn't load page": "Sayfa yüklenemiyor",
|
"Couldn't load page": "Sayfa yüklenemiyor",
|
||||||
"Description": "Tanım",
|
|
||||||
"Old cryptography data detected": "Eski kriptolama verisi tespit edildi",
|
"Old cryptography data detected": "Eski kriptolama verisi tespit edildi",
|
||||||
"Verification Request": "Doğrulama Talebi",
|
"Verification Request": "Doğrulama Talebi",
|
||||||
"View": "Görüntüle",
|
"View": "Görüntüle",
|
||||||
|
@ -637,9 +629,7 @@
|
||||||
"Email addresses": "E-posta adresleri",
|
"Email addresses": "E-posta adresleri",
|
||||||
"Phone numbers": "Telefon numaraları",
|
"Phone numbers": "Telefon numaraları",
|
||||||
"Language and region": "Dil ve bölge",
|
"Language and region": "Dil ve bölge",
|
||||||
"Theme": "Tema",
|
|
||||||
"Account management": "Hesap yönetimi",
|
"Account management": "Hesap yönetimi",
|
||||||
"Warning": "Uyarı",
|
|
||||||
"General": "Genel",
|
"General": "Genel",
|
||||||
"Discovery": "Keşfet",
|
"Discovery": "Keşfet",
|
||||||
"Legal": "Yasal",
|
"Legal": "Yasal",
|
||||||
|
@ -1236,8 +1226,6 @@
|
||||||
"Send a bug report with logs": "Günlükler (log) ile hata raporu gönderin",
|
"Send a bug report with logs": "Günlükler (log) ile hata raporu gönderin",
|
||||||
"Opens chat with the given user": "Belirtilen kullanıcı ile sohbet başlatır",
|
"Opens chat with the given user": "Belirtilen kullanıcı ile sohbet başlatır",
|
||||||
"Sends a message to the given user": "Belirtilen kullanıcıya ileti gönderir",
|
"Sends a message to the given user": "Belirtilen kullanıcıya ileti gönderir",
|
||||||
"Light": "Aydınlık",
|
|
||||||
"Dark": "Karanlık",
|
|
||||||
"You signed in to a new session without verifying it:": "Yeni bir oturuma, doğrulamadan oturum açtınız:",
|
"You signed in to a new session without verifying it:": "Yeni bir oturuma, doğrulamadan oturum açtınız:",
|
||||||
"Verify your other session using one of the options below.": "Diğer oturumunuzu aşağıdaki seçeneklerden birini kullanarak doğrulayın.",
|
"Verify your other session using one of the options below.": "Diğer oturumunuzu aşağıdaki seçeneklerden birini kullanarak doğrulayın.",
|
||||||
"Your homeserver has exceeded its user limit.": "Homeserver'ınız kullanıcı limitini aştı.",
|
"Your homeserver has exceeded its user limit.": "Homeserver'ınız kullanıcı limitini aştı.",
|
||||||
|
@ -1757,7 +1745,6 @@
|
||||||
"Hold": "Beklet",
|
"Hold": "Beklet",
|
||||||
"Resume": "Devam et",
|
"Resume": "Devam et",
|
||||||
"Approve": "Onayla",
|
"Approve": "Onayla",
|
||||||
"Homeserver": "Ana sunucu",
|
|
||||||
"Information": "Bilgi",
|
"Information": "Bilgi",
|
||||||
"Ctrl": "Ctrl",
|
"Ctrl": "Ctrl",
|
||||||
"Shift": "Shift",
|
"Shift": "Shift",
|
||||||
|
@ -1768,7 +1755,6 @@
|
||||||
"Categories": "Kategoriler",
|
"Categories": "Kategoriler",
|
||||||
"Accepting…": "Kabul ediliyor…",
|
"Accepting…": "Kabul ediliyor…",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Appearance": "Görünüm",
|
|
||||||
"Room avatar": "Oda avatarı",
|
"Room avatar": "Oda avatarı",
|
||||||
"Room options": "Oda ayarları",
|
"Room options": "Oda ayarları",
|
||||||
"Forget Room": "Odayı unut",
|
"Forget Room": "Odayı unut",
|
||||||
|
@ -2000,7 +1986,21 @@
|
||||||
"suggestions": "Öneriler",
|
"suggestions": "Öneriler",
|
||||||
"unmute": "Sesi aç",
|
"unmute": "Sesi aç",
|
||||||
"username": "Kullanıcı Adı",
|
"username": "Kullanıcı Adı",
|
||||||
"verification_cancelled": "Doğrulama iptal edildi"
|
"verification_cancelled": "Doğrulama iptal edildi",
|
||||||
|
"attachment": "Ek Dosya",
|
||||||
|
"light": "Aydınlık",
|
||||||
|
"dark": "Karanlık",
|
||||||
|
"warning": "Uyarı",
|
||||||
|
"home": "Ev",
|
||||||
|
"favourites": "Favoriler",
|
||||||
|
"room": "Oda",
|
||||||
|
"theme": "Tema",
|
||||||
|
"name": "İsim",
|
||||||
|
"description": "Tanım",
|
||||||
|
"options": "Seçenekler",
|
||||||
|
"appearance": "Görünüm",
|
||||||
|
"homeserver": "Ana sunucu",
|
||||||
|
"labs": "Laboratuarlar"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Devam Et",
|
"continue": "Devam Et",
|
||||||
|
@ -2032,5 +2032,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Kullanıcı menüsü"
|
"user_menu": "Kullanıcı menüsü"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Ev"
|
||||||
|
}
|
||||||
|
|
|
@ -69,12 +69,10 @@
|
||||||
"Email": "Imayl",
|
"Email": "Imayl",
|
||||||
"Go": "Ddu",
|
"Go": "Ddu",
|
||||||
"Send": "Azen",
|
"Send": "Azen",
|
||||||
"Name": "Isem",
|
|
||||||
"Flags": "Icenyalen",
|
"Flags": "Icenyalen",
|
||||||
"Join": "Lkem",
|
"Join": "Lkem",
|
||||||
"edited": "infel",
|
"edited": "infel",
|
||||||
"Copied!": "inɣel!",
|
"Copied!": "inɣel!",
|
||||||
"Home": "Asnubeg",
|
|
||||||
"Search…": "Arezzu…",
|
"Search…": "Arezzu…",
|
||||||
"A-Z": "A-Ẓ",
|
"A-Z": "A-Ẓ",
|
||||||
"Reject": "Agy",
|
"Reject": "Agy",
|
||||||
|
@ -88,7 +86,6 @@
|
||||||
"Ignore": "Nexxel",
|
"Ignore": "Nexxel",
|
||||||
"None": "Walu",
|
"None": "Walu",
|
||||||
"Account": "Amiḍan",
|
"Account": "Amiḍan",
|
||||||
"Theme": "Asgum",
|
|
||||||
"Algorithm:": "Talguritmit:",
|
"Algorithm:": "Talguritmit:",
|
||||||
"Profile": "Ifres",
|
"Profile": "Ifres",
|
||||||
"Folder": "Asdaw",
|
"Folder": "Asdaw",
|
||||||
|
@ -121,7 +118,6 @@
|
||||||
"Guest": "Anebgi",
|
"Guest": "Anebgi",
|
||||||
"Ok": "Wax",
|
"Ok": "Wax",
|
||||||
"Notifications": "Tineɣmisin",
|
"Notifications": "Tineɣmisin",
|
||||||
"Dark": "Adeɣmum",
|
|
||||||
"Usage": "Asemres",
|
"Usage": "Asemres",
|
||||||
"Feb": "Bṛa",
|
"Feb": "Bṛa",
|
||||||
"Jan": "Yen",
|
"Jan": "Yen",
|
||||||
|
@ -129,7 +125,11 @@
|
||||||
"about": "Xef",
|
"about": "Xef",
|
||||||
"error": "Tazgelt",
|
"error": "Tazgelt",
|
||||||
"people": "Midden",
|
"people": "Midden",
|
||||||
"settings": "Tisɣal"
|
"settings": "Tisɣal",
|
||||||
|
"dark": "Adeɣmum",
|
||||||
|
"home": "Asnubeg",
|
||||||
|
"theme": "Asgum",
|
||||||
|
"name": "Isem"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Kemmel",
|
"continue": "Kemmel",
|
||||||
|
@ -141,5 +141,6 @@
|
||||||
"reply": "Rar",
|
"reply": "Rar",
|
||||||
"save": "Ḥḍu",
|
"save": "Ḥḍu",
|
||||||
"yes": "Yah"
|
"yes": "Yah"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Asnubeg"
|
||||||
|
}
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
"Admin Tools": "Засоби адміністрування",
|
"Admin Tools": "Засоби адміністрування",
|
||||||
"No Microphones detected": "Мікрофон не виявлено",
|
"No Microphones detected": "Мікрофон не виявлено",
|
||||||
"No Webcams detected": "Вебкамеру не виявлено",
|
"No Webcams detected": "Вебкамеру не виявлено",
|
||||||
"Favourites": "Вибрані",
|
|
||||||
"No media permissions": "Немає медіадозволів",
|
"No media permissions": "Немає медіадозволів",
|
||||||
"You may need to manually permit %(brand)s to access your microphone/webcam": "Можливо, вам треба дозволити %(brand)s використання мікрофону/камери вручну",
|
"You may need to manually permit %(brand)s to access your microphone/webcam": "Можливо, вам треба дозволити %(brand)s використання мікрофону/камери вручну",
|
||||||
"Default Device": "Уставний пристрій",
|
"Default Device": "Уставний пристрій",
|
||||||
|
@ -38,7 +37,6 @@
|
||||||
"Are you sure?": "Ви впевнені?",
|
"Are you sure?": "Ви впевнені?",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Ви впевнені, що хочете вийти з «%(roomName)s»?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Ви впевнені, що хочете вийти з «%(roomName)s»?",
|
||||||
"Are you sure you want to reject the invitation?": "Ви впевнені, що хочете відхилити запрошення?",
|
"Are you sure you want to reject the invitation?": "Ви впевнені, що хочете відхилити запрошення?",
|
||||||
"Attachment": "Прикріплення",
|
|
||||||
"Banned users": "Заблоковані користувачі",
|
"Banned users": "Заблоковані користувачі",
|
||||||
"Bans user with given id": "Блокує користувача з указаним ID",
|
"Bans user with given id": "Блокує користувача з указаним ID",
|
||||||
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "Не вдалося під'єднатися до домашнього сервера — перевірте з'єднання, переконайтесь, що ваш <a>SSL-сертифікат домашнього сервера</a> довірений і що розширення браузера не блокує запити.",
|
"Can't connect to homeserver - please check your connectivity, ensure your <a>homeserver's SSL certificate</a> is trusted, and that a browser extension is not blocking requests.": "Не вдалося під'єднатися до домашнього сервера — перевірте з'єднання, переконайтесь, що ваш <a>SSL-сертифікат домашнього сервера</a> довірений і що розширення браузера не блокує запити.",
|
||||||
|
@ -65,7 +63,6 @@
|
||||||
"Changelog": "Журнал змін",
|
"Changelog": "Журнал змін",
|
||||||
"Waiting for response from server": "Очікується відповідь від сервера",
|
"Waiting for response from server": "Очікується відповідь від сервера",
|
||||||
"Failed to send logs: ": "Не вдалося надіслати журнали: ",
|
"Failed to send logs: ": "Не вдалося надіслати журнали: ",
|
||||||
"Warning": "Попередження",
|
|
||||||
"This Room": "Ця кімната",
|
"This Room": "Ця кімната",
|
||||||
"Noisy": "Шумно",
|
"Noisy": "Шумно",
|
||||||
"Messages containing my display name": "Повідомлення з моїм псевдонімом",
|
"Messages containing my display name": "Повідомлення з моїм псевдонімом",
|
||||||
|
@ -229,7 +226,6 @@
|
||||||
"Failed to set display name": "Не вдалося налаштувати псевдонім",
|
"Failed to set display name": "Не вдалося налаштувати псевдонім",
|
||||||
"Drop file here to upload": "Перетягніть сюди файл, щоб вивантажити",
|
"Drop file here to upload": "Перетягніть сюди файл, щоб вивантажити",
|
||||||
"This event could not be displayed": "Неможливо показати цю подію",
|
"This event could not be displayed": "Неможливо показати цю подію",
|
||||||
"Options": "Параметри",
|
|
||||||
"Unban": "Розблокувати",
|
"Unban": "Розблокувати",
|
||||||
"Failed to ban user": "Не вдалося заблокувати користувача",
|
"Failed to ban user": "Не вдалося заблокувати користувача",
|
||||||
"Demote yourself?": "Зменшити свої повноваження?",
|
"Demote yourself?": "Зменшити свої повноваження?",
|
||||||
|
@ -370,7 +366,6 @@
|
||||||
"Search failed": "Пошук не вдався",
|
"Search failed": "Пошук не вдався",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Сервер може бути недосяжним, перевантаженим або запит на пошук застарів :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Сервер може бути недосяжним, перевантаженим або запит на пошук застарів :(",
|
||||||
"No more results": "Інших результатів нема",
|
"No more results": "Інших результатів нема",
|
||||||
"Room": "Кімната",
|
|
||||||
"Failed to reject invite": "Не вдалось відхилити запрошення",
|
"Failed to reject invite": "Не вдалось відхилити запрошення",
|
||||||
"You have %(count)s unread notifications in a prior version of this room.": {
|
"You have %(count)s unread notifications in a prior version of this room.": {
|
||||||
"other": "Ви маєте %(count)s непрочитаних сповіщень у попередній версії цієї кімнати.",
|
"other": "Ви маєте %(count)s непрочитаних сповіщень у попередній версії цієї кімнати.",
|
||||||
|
@ -443,8 +438,6 @@
|
||||||
"%(senderName)s created a rule banning users matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування користувачів зі збігом з %(glob)s через %(reason)s",
|
"%(senderName)s created a rule banning users matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування користувачів зі збігом з %(glob)s через %(reason)s",
|
||||||
"%(senderName)s created a rule banning rooms matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування кімнат зі збігом з %(glob)s через %(reason)s",
|
"%(senderName)s created a rule banning rooms matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування кімнат зі збігом з %(glob)s через %(reason)s",
|
||||||
"%(senderName)s created a rule banning servers matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування серверів зі збігом з %(glob)s через %(reason)s",
|
"%(senderName)s created a rule banning servers matching %(glob)s for %(reason)s": "%(senderName)s створює правило блокування серверів зі збігом з %(glob)s через %(reason)s",
|
||||||
"Light": "Світла",
|
|
||||||
"Dark": "Темна",
|
|
||||||
"You signed in to a new session without verifying it:": "Ви увійшли в новий сеанс, не звіривши його:",
|
"You signed in to a new session without verifying it:": "Ви увійшли в новий сеанс, не звіривши його:",
|
||||||
"Verify your other session using one of the options below.": "Звірте інший сеанс за допомогою одного з варіантів знизу.",
|
"Verify your other session using one of the options below.": "Звірте інший сеанс за допомогою одного з варіантів знизу.",
|
||||||
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) починає новий сеанс без його звірення:",
|
"%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) починає новий сеанс без його звірення:",
|
||||||
|
@ -544,7 +537,6 @@
|
||||||
"FAQ": "ЧаПи",
|
"FAQ": "ЧаПи",
|
||||||
"Versions": "Версії",
|
"Versions": "Версії",
|
||||||
"%(brand)s version:": "Версія %(brand)s:",
|
"%(brand)s version:": "Версія %(brand)s:",
|
||||||
"Labs": "Лабораторія",
|
|
||||||
"Ignored/Blocked": "Ігноровані/Заблоковані",
|
"Ignored/Blocked": "Ігноровані/Заблоковані",
|
||||||
"Error adding ignored user/server": "Помилка при додаванні ігнорованого користувача/сервера",
|
"Error adding ignored user/server": "Помилка при додаванні ігнорованого користувача/сервера",
|
||||||
"Something went wrong. Please try again or view your console for hints.": "Щось пішло не так. Спробуйте знову, або пошукайте підказки в консолі.",
|
"Something went wrong. Please try again or view your console for hints.": "Щось пішло не так. Спробуйте знову, або пошукайте підказки в консолі.",
|
||||||
|
@ -707,7 +699,6 @@
|
||||||
"Filter room members": "Відфільтрувати учасників кімнати",
|
"Filter room members": "Відфільтрувати учасників кімнати",
|
||||||
"Voice call": "Голосовий виклик",
|
"Voice call": "Голосовий виклик",
|
||||||
"Video call": "Відеовиклик",
|
"Video call": "Відеовиклик",
|
||||||
"Appearance": "Вигляд",
|
|
||||||
"Show rooms with unread messages first": "Спочатку показувати кімнати з непрочитаними повідомленнями",
|
"Show rooms with unread messages first": "Спочатку показувати кімнати з непрочитаними повідомленнями",
|
||||||
"Show previews of messages": "Показувати попередній перегляд повідомлень",
|
"Show previews of messages": "Показувати попередній перегляд повідомлень",
|
||||||
"Sort by": "Упорядкувати за",
|
"Sort by": "Упорядкувати за",
|
||||||
|
@ -1428,7 +1419,6 @@
|
||||||
"Remove recent messages by %(user)s": "Вилучити останні повідомлення від %(user)s",
|
"Remove recent messages by %(user)s": "Вилучити останні повідомлення від %(user)s",
|
||||||
"Remove recent messages": "Видалити останні повідомлення",
|
"Remove recent messages": "Видалити останні повідомлення",
|
||||||
"Edit devices": "Керувати пристроями",
|
"Edit devices": "Керувати пристроями",
|
||||||
"Home": "Домівка",
|
|
||||||
"New here? <a>Create an account</a>": "Вперше тут? <a>Створіть обліковий запис</a>",
|
"New here? <a>Create an account</a>": "Вперше тут? <a>Створіть обліковий запис</a>",
|
||||||
"Server Options": "Опції сервера",
|
"Server Options": "Опції сервера",
|
||||||
"Verify your identity to access encrypted messages and prove your identity to others.": "Підтвердьте свою особу, щоб отримати доступ до зашифрованих повідомлень і довести свою справжність іншим.",
|
"Verify your identity to access encrypted messages and prove your identity to others.": "Підтвердьте свою особу, щоб отримати доступ до зашифрованих повідомлень і довести свою справжність іншим.",
|
||||||
|
@ -1441,7 +1431,6 @@
|
||||||
"Sign in with SSO": "Увійти за допомогою SSO",
|
"Sign in with SSO": "Увійти за допомогою SSO",
|
||||||
"Sign in": "Увійти",
|
"Sign in": "Увійти",
|
||||||
"Got an account? <a>Sign in</a>": "Маєте обліковий запис? <a>Увійти</a>",
|
"Got an account? <a>Sign in</a>": "Маєте обліковий запис? <a>Увійти</a>",
|
||||||
"Homeserver": "Домашній сервер",
|
|
||||||
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s відкріплює повідомлення з цієї кімнати. Перегляньте всі прикріплені повідомлення.",
|
"%(senderName)s unpinned a message from this room. See all pinned messages.": "%(senderName)s відкріплює повідомлення з цієї кімнати. Перегляньте всі прикріплені повідомлення.",
|
||||||
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s відкріплює <a>повідомлення</a> з цієї кімнати. Перегляньте всі <b>прикріплені повідомлення</b>.",
|
"%(senderName)s unpinned <a>a message</a> from this room. See all <b>pinned messages</b>.": "%(senderName)s відкріплює <a>повідомлення</a> з цієї кімнати. Перегляньте всі <b>прикріплені повідомлення</b>.",
|
||||||
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s прикріплює повідомлення до цієї кімнати. Перегляньте всі прикріплені повідомлення.",
|
"%(senderName)s pinned a message to this room. See all pinned messages.": "%(senderName)s прикріплює повідомлення до цієї кімнати. Перегляньте всі прикріплені повідомлення.",
|
||||||
|
@ -1589,7 +1578,6 @@
|
||||||
"Spaces": "Простори",
|
"Spaces": "Простори",
|
||||||
"Custom level": "Власний рівень",
|
"Custom level": "Власний рівень",
|
||||||
"To leave the beta, visit your settings.": "Щоб вийти з бета-тестування, перейдіть до налаштувань.",
|
"To leave the beta, visit your settings.": "Щоб вийти з бета-тестування, перейдіть до налаштувань.",
|
||||||
"Beta": "Бета",
|
|
||||||
"Leave the beta": "Вийти з бета-тестування",
|
"Leave the beta": "Вийти з бета-тестування",
|
||||||
"[number]": "[цифра]",
|
"[number]": "[цифра]",
|
||||||
"Upload a file": "Вивантажити файл",
|
"Upload a file": "Вивантажити файл",
|
||||||
|
@ -1749,15 +1737,11 @@
|
||||||
"Your public space": "Ваш загальнодоступний простір",
|
"Your public space": "Ваш загальнодоступний простір",
|
||||||
"Go back": "Назад",
|
"Go back": "Назад",
|
||||||
"Invite only, best for yourself or teams": "Лише за запрошенням, найкраще для себе чи для команди",
|
"Invite only, best for yourself or teams": "Лише за запрошенням, найкраще для себе чи для команди",
|
||||||
"Private": "Приватний",
|
|
||||||
"Open space for anyone, best for communities": "Відкритий простір для будь-кого, найкраще для спільнот",
|
"Open space for anyone, best for communities": "Відкритий простір для будь-кого, найкраще для спільнот",
|
||||||
"Public": "Загальнодоступний",
|
|
||||||
"Create a space": "Створити простір",
|
"Create a space": "Створити простір",
|
||||||
"Address": "Адреса",
|
"Address": "Адреса",
|
||||||
"e.g. my-space": "наприклад, мій-простір",
|
"e.g. my-space": "наприклад, мій-простір",
|
||||||
"Please enter a name for the space": "Будь ласка, введіть назву простору",
|
"Please enter a name for the space": "Будь ласка, введіть назву простору",
|
||||||
"Description": "Опис",
|
|
||||||
"Name": "Назва",
|
|
||||||
"Delete": "Видалити",
|
"Delete": "Видалити",
|
||||||
"Delete avatar": "Видалити аватар",
|
"Delete avatar": "Видалити аватар",
|
||||||
"Your server isn't responding to some <a>requests</a>.": "Ваш сервер не відповідає на деякі <a>запити</a>.",
|
"Your server isn't responding to some <a>requests</a>.": "Ваш сервер не відповідає на деякі <a>запити</a>.",
|
||||||
|
@ -2064,7 +2048,6 @@
|
||||||
"Home is useful for getting an overview of everything.": "Домівка надає загальний огляд усього.",
|
"Home is useful for getting an overview of everything.": "Домівка надає загальний огляд усього.",
|
||||||
"Spaces to show": "Показувати такі простори",
|
"Spaces to show": "Показувати такі простори",
|
||||||
"Sidebar": "Бічна панель",
|
"Sidebar": "Бічна панель",
|
||||||
"Theme": "Тема",
|
|
||||||
"Pin to sidebar": "Закріплення на бічній панелі",
|
"Pin to sidebar": "Закріплення на бічній панелі",
|
||||||
"Quick settings": "Швидкі налаштування",
|
"Quick settings": "Швидкі налаштування",
|
||||||
"Home options": "Параметри домівки",
|
"Home options": "Параметри домівки",
|
||||||
|
@ -2073,7 +2056,6 @@
|
||||||
"View in room": "Дивитися в кімнаті",
|
"View in room": "Дивитися в кімнаті",
|
||||||
"Copy link to thread": "Копіювати посилання на гілку",
|
"Copy link to thread": "Копіювати посилання на гілку",
|
||||||
"Thread options": "Параметри гілки",
|
"Thread options": "Параметри гілки",
|
||||||
"Threads": "Гілки",
|
|
||||||
"Reply to thread…": "Відповісти в гілці…",
|
"Reply to thread…": "Відповісти в гілці…",
|
||||||
"Reply to encrypted thread…": "Відповісти в зашифрованій гілці…",
|
"Reply to encrypted thread…": "Відповісти в зашифрованій гілці…",
|
||||||
"Reply in thread": "Відповісти у гілці",
|
"Reply in thread": "Відповісти у гілці",
|
||||||
|
@ -2186,7 +2168,6 @@
|
||||||
"Are you sure you want to make this encrypted room public?": "Точно зробити цю зашифровану кімнату загальнодоступною?",
|
"Are you sure you want to make this encrypted room public?": "Точно зробити цю зашифровану кімнату загальнодоступною?",
|
||||||
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Не варто робити зашифровані кімнати загальнодоступними.</b> Будь-хто зможе знайти кімнату, приєднатись і читати повідомлення. Ви не отримаєте переваг шифрування. Зашифровані повідомлення в загальнодоступній кімнаті отримуватимуться й надсилатимуться повільніше.",
|
"<b>It's not recommended to make encrypted rooms public.</b> It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "<b>Не варто робити зашифровані кімнати загальнодоступними.</b> Будь-хто зможе знайти кімнату, приєднатись і читати повідомлення. Ви не отримаєте переваг шифрування. Зашифровані повідомлення в загальнодоступній кімнаті отримуватимуться й надсилатимуться повільніше.",
|
||||||
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Щоб уникнути цих проблем, створіть <a>нову загальнодоступну кімнату</a> для розмови, яку плануєте.",
|
"To avoid these issues, create a <a>new public room</a> for the conversation you plan to have.": "Щоб уникнути цих проблем, створіть <a>нову загальнодоступну кімнату</a> для розмови, яку плануєте.",
|
||||||
"Thread": "Гілка",
|
|
||||||
"Role in <RoomName/>": "Роль у <RoomName/>",
|
"Role in <RoomName/>": "Роль у <RoomName/>",
|
||||||
"Select the roles required to change various parts of the space": "Оберіть ролі, потрібні для зміни різних частин простору",
|
"Select the roles required to change various parts of the space": "Оберіть ролі, потрібні для зміни різних частин простору",
|
||||||
"To join a space you'll need an invite.": "Щоб приєднатись до простору, вам потрібне запрошення.",
|
"To join a space you'll need an invite.": "Щоб приєднатись до простору, вам потрібне запрошення.",
|
||||||
|
@ -3346,7 +3327,6 @@
|
||||||
"It’s what you’re here for, so lets get to it": "Це те, заради чого ви тут, тож перейдемо до цього",
|
"It’s what you’re here for, so lets get to it": "Це те, заради чого ви тут, тож перейдемо до цього",
|
||||||
"Find and invite your friends": "Знайдіть і запросіть своїх друзів",
|
"Find and invite your friends": "Знайдіть і запросіть своїх друзів",
|
||||||
"You made it!": "Ви це зробили!",
|
"You made it!": "Ви це зробили!",
|
||||||
"Help": "Довідка",
|
|
||||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play і логотип Google Play є товарними знаками Google LLC.",
|
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play і логотип Google Play є товарними знаками Google LLC.",
|
||||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® і логотип Apple® є товарними знаками Apple Inc.",
|
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® і логотип Apple® є товарними знаками Apple Inc.",
|
||||||
"Get it on F-Droid": "Отримати з F-Droid",
|
"Get it on F-Droid": "Отримати з F-Droid",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "Наразі можна ввімкнути лише через config.json",
|
"Can currently only be enabled via config.json": "Наразі можна ввімкнути лише через config.json",
|
||||||
"Requires your server to support MSC3030": "Потрібно, щоб ваш сервер підтримував MSC3030",
|
"Requires your server to support MSC3030": "Потрібно, щоб ваш сервер підтримував MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "Потрібно, щоб ваш сервер підтримував стабільну версію MSC3827",
|
"Requires your server to support the stable version of MSC3827": "Потрібно, щоб ваш сервер підтримував стабільну версію MSC3827",
|
||||||
"User": "Користувач",
|
|
||||||
"Show avatars in user, room and event mentions": "Показувати аватари у згадках користувачів, кімнат і подій",
|
"Show avatars in user, room and event mentions": "Показувати аватари у згадках користувачів, кімнат і подій",
|
||||||
"Message from %(user)s": "Повідомлення від %(user)s",
|
"Message from %(user)s": "Повідомлення від %(user)s",
|
||||||
"Message in %(room)s": "Повідомлення в %(room)s",
|
"Message in %(room)s": "Повідомлення в %(room)s",
|
||||||
|
@ -3938,7 +3917,28 @@
|
||||||
"unmute": "Розтишити",
|
"unmute": "Розтишити",
|
||||||
"username": "Ім'я користувача",
|
"username": "Ім'я користувача",
|
||||||
"verification_cancelled": "Звірка скасована",
|
"verification_cancelled": "Звірка скасована",
|
||||||
"video": "Відео"
|
"video": "Відео",
|
||||||
|
"attachment": "Прикріплення",
|
||||||
|
"light": "Світла",
|
||||||
|
"dark": "Темна",
|
||||||
|
"warning": "Попередження",
|
||||||
|
"home": "Домівка",
|
||||||
|
"favourites": "Вибрані",
|
||||||
|
"thread": "Гілка",
|
||||||
|
"threads": "Гілки",
|
||||||
|
"user": "Користувач",
|
||||||
|
"room": "Кімната",
|
||||||
|
"theme": "Тема",
|
||||||
|
"name": "Назва",
|
||||||
|
"description": "Опис",
|
||||||
|
"public": "Загальнодоступний",
|
||||||
|
"private": "Приватний",
|
||||||
|
"options": "Параметри",
|
||||||
|
"appearance": "Вигляд",
|
||||||
|
"homeserver": "Домашній сервер",
|
||||||
|
"help": "Довідка",
|
||||||
|
"beta": "Бета",
|
||||||
|
"labs": "Лабораторія"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Продовжити",
|
"continue": "Продовжити",
|
||||||
|
@ -3975,5 +3975,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Користувацьке меню"
|
"user_menu": "Користувацьке меню"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Домівка"
|
||||||
|
}
|
||||||
|
|
|
@ -199,7 +199,6 @@
|
||||||
"Sign In": "Đăng nhập",
|
"Sign In": "Đăng nhập",
|
||||||
"Explore rooms": "Khám phá các phòng",
|
"Explore rooms": "Khám phá các phòng",
|
||||||
"Create Account": "Tạo tài khoản",
|
"Create Account": "Tạo tài khoản",
|
||||||
"Theme": "Chủ đề",
|
|
||||||
"Ignore": "Tảng lờ",
|
"Ignore": "Tảng lờ",
|
||||||
"Bug reporting": "Báo cáo lỗi",
|
"Bug reporting": "Báo cáo lỗi",
|
||||||
"Vietnam": "Việt Nam",
|
"Vietnam": "Việt Nam",
|
||||||
|
@ -485,7 +484,6 @@
|
||||||
"Avatar": "Avatar",
|
"Avatar": "Avatar",
|
||||||
"Join the beta": "Tham gia phiên bản beta",
|
"Join the beta": "Tham gia phiên bản beta",
|
||||||
"Leave the beta": "Rời khỏi bản beta",
|
"Leave the beta": "Rời khỏi bản beta",
|
||||||
"Beta": "Beta",
|
|
||||||
"Move right": "Đi sang phải",
|
"Move right": "Đi sang phải",
|
||||||
"Move left": "Di chuyển sang trái",
|
"Move left": "Di chuyển sang trái",
|
||||||
"Revoke permissions": "Thu hồi quyền",
|
"Revoke permissions": "Thu hồi quyền",
|
||||||
|
@ -743,7 +741,6 @@
|
||||||
"You don't have permission": "Bạn không có quyền",
|
"You don't have permission": "Bạn không có quyền",
|
||||||
"Drop file here to upload": "Thả tệp vào đây để tải lên",
|
"Drop file here to upload": "Thả tệp vào đây để tải lên",
|
||||||
"Failed to reject invite": "Không thể từ chối lời mời",
|
"Failed to reject invite": "Không thể từ chối lời mời",
|
||||||
"Room": "Phòng",
|
|
||||||
"No more results": "Không còn kết quả nào nữa",
|
"No more results": "Không còn kết quả nào nữa",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "Máy chủ có thể không khả dụng, quá tải hoặc hết thời gian tìm kiếm :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "Máy chủ có thể không khả dụng, quá tải hoặc hết thời gian tìm kiếm :(",
|
||||||
"Search failed": "Tìm kiếm không thành công",
|
"Search failed": "Tìm kiếm không thành công",
|
||||||
|
@ -880,7 +877,6 @@
|
||||||
},
|
},
|
||||||
"Sign in with single sign-on": "Đăng nhập bằng đăng nhập một lần",
|
"Sign in with single sign-on": "Đăng nhập bằng đăng nhập một lần",
|
||||||
"Continue with %(provider)s": "Tiếp tục với %(provider)s",
|
"Continue with %(provider)s": "Tiếp tục với %(provider)s",
|
||||||
"Homeserver": "Máy chủ",
|
|
||||||
"Join millions for free on the largest public server": "Tham gia hàng triệu máy chủ công cộng miễn phí lớn nhất",
|
"Join millions for free on the largest public server": "Tham gia hàng triệu máy chủ công cộng miễn phí lớn nhất",
|
||||||
"Server Options": "Tùy chọn máy chủ",
|
"Server Options": "Tùy chọn máy chủ",
|
||||||
"This address is already in use": "Địa chỉ này đã được sử dụng",
|
"This address is already in use": "Địa chỉ này đã được sử dụng",
|
||||||
|
@ -1147,7 +1143,6 @@
|
||||||
"Error decrypting attachment": "Lỗi khi giải mã tệp đính kèm",
|
"Error decrypting attachment": "Lỗi khi giải mã tệp đính kèm",
|
||||||
"Download %(text)s": "Tải xuống %(text)s",
|
"Download %(text)s": "Tải xuống %(text)s",
|
||||||
"Message Actions": "Hành động tin nhắn",
|
"Message Actions": "Hành động tin nhắn",
|
||||||
"Thread": "Chủ đề",
|
|
||||||
"Error processing audio message": "Lỗi khi xử lý tin nhắn âm thanh",
|
"Error processing audio message": "Lỗi khi xử lý tin nhắn âm thanh",
|
||||||
"The encryption used by this room isn't supported.": "Mã hóa mà phòng này sử dụng không được hỗ trợ.",
|
"The encryption used by this room isn't supported.": "Mã hóa mà phòng này sử dụng không được hỗ trợ.",
|
||||||
"Encryption not enabled": "Mã hóa không được bật",
|
"Encryption not enabled": "Mã hóa không được bật",
|
||||||
|
@ -1304,7 +1299,6 @@
|
||||||
"Sort by": "Sắp xếp theo",
|
"Sort by": "Sắp xếp theo",
|
||||||
"Show previews of messages": "Hiển thị bản xem trước của tin nhắn",
|
"Show previews of messages": "Hiển thị bản xem trước của tin nhắn",
|
||||||
"Show rooms with unread messages first": "Hiển thị các phòng có tin nhắn chưa đọc trước",
|
"Show rooms with unread messages first": "Hiển thị các phòng có tin nhắn chưa đọc trước",
|
||||||
"Appearance": "Giao diện",
|
|
||||||
"%(roomName)s is not accessible at this time.": "Không thể truy cập %(roomName)s vào lúc này.",
|
"%(roomName)s is not accessible at this time.": "Không thể truy cập %(roomName)s vào lúc này.",
|
||||||
"%(roomName)s does not exist.": "%(roomName)s không tồn tại.",
|
"%(roomName)s does not exist.": "%(roomName)s không tồn tại.",
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "Không thể xem trước %(roomName)s. Bạn có muốn tham gia nó không?",
|
"%(roomName)s can't be previewed. Do you want to join it?": "Không thể xem trước %(roomName)s. Bạn có muốn tham gia nó không?",
|
||||||
|
@ -1344,7 +1338,6 @@
|
||||||
"Create new room": "Tạo phòng mới",
|
"Create new room": "Tạo phòng mới",
|
||||||
"Add room": "Thêm phòng",
|
"Add room": "Thêm phòng",
|
||||||
"Rooms": "Phòng",
|
"Rooms": "Phòng",
|
||||||
"Favourites": "Yêu thích",
|
|
||||||
"Search": "Tìm kiếm",
|
"Search": "Tìm kiếm",
|
||||||
"Show Widgets": "Hiển thị widget",
|
"Show Widgets": "Hiển thị widget",
|
||||||
"Hide Widgets": "Ẩn widget",
|
"Hide Widgets": "Ẩn widget",
|
||||||
|
@ -1517,7 +1510,6 @@
|
||||||
"Something went wrong. Please try again or view your console for hints.": "Đã xảy ra lỗi. Vui lòng thử lại hoặc xem bảng điều khiển của bạn để biết gợi ý.",
|
"Something went wrong. Please try again or view your console for hints.": "Đã xảy ra lỗi. Vui lòng thử lại hoặc xem bảng điều khiển của bạn để biết gợi ý.",
|
||||||
"Error adding ignored user/server": "Lỗi khi thêm người dùng / máy chủ bị bỏ qua",
|
"Error adding ignored user/server": "Lỗi khi thêm người dùng / máy chủ bị bỏ qua",
|
||||||
"Ignored/Blocked": "Bị bỏ qua / bị chặn",
|
"Ignored/Blocked": "Bị bỏ qua / bị chặn",
|
||||||
"Labs": "Chức năng thí nghiệm",
|
|
||||||
"Clear cache and reload": "Xóa bộ nhớ cache và tải lại",
|
"Clear cache and reload": "Xóa bộ nhớ cache và tải lại",
|
||||||
"Your access token gives full access to your account. Do not share it with anyone.": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.",
|
"Your access token gives full access to your account. Do not share it with anyone.": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.",
|
||||||
"Access Token": "Token truy cập",
|
"Access Token": "Token truy cập",
|
||||||
|
@ -1612,7 +1604,6 @@
|
||||||
"You can only pin up to %(count)s widgets": {
|
"You can only pin up to %(count)s widgets": {
|
||||||
"other": "Bạn chỉ có thể ghim tối đa %(count)s widget"
|
"other": "Bạn chỉ có thể ghim tối đa %(count)s widget"
|
||||||
},
|
},
|
||||||
"Threads": "Chủ đề",
|
|
||||||
"Pinned messages": "Tin nhắn đã ghim",
|
"Pinned messages": "Tin nhắn đã ghim",
|
||||||
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Nếu bạn có quyền, hãy mở menu trên bất kỳ tin nhắn nào và chọn Ghim <b>Pin</b> để dán chúng vào đây.",
|
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.": "Nếu bạn có quyền, hãy mở menu trên bất kỳ tin nhắn nào và chọn Ghim <b>Pin</b> để dán chúng vào đây.",
|
||||||
"Nothing pinned, yet": "Chưa có gì được ghim",
|
"Nothing pinned, yet": "Chưa có gì được ghim",
|
||||||
|
@ -1699,10 +1690,8 @@
|
||||||
"Copied!": "Đã sao chép!",
|
"Copied!": "Đã sao chép!",
|
||||||
"Click to copy": "Bấm để sao chép",
|
"Click to copy": "Bấm để sao chép",
|
||||||
"Spaces": "Không gian",
|
"Spaces": "Không gian",
|
||||||
"Options": "Tùy chọn",
|
|
||||||
"All rooms": "Tất cả các phòng",
|
"All rooms": "Tất cả các phòng",
|
||||||
"Show all rooms": "Hiển thị tất cả các phòng",
|
"Show all rooms": "Hiển thị tất cả các phòng",
|
||||||
"Home": "Nhà",
|
|
||||||
"You can change these anytime.": "Bạn có thể thay đổi những điều này bất cứ lúc nào.",
|
"You can change these anytime.": "Bạn có thể thay đổi những điều này bất cứ lúc nào.",
|
||||||
"Add some details to help people recognise it.": "Thêm một số chi tiết để giúp mọi người nhận ra nó.",
|
"Add some details to help people recognise it.": "Thêm một số chi tiết để giúp mọi người nhận ra nó.",
|
||||||
"Your private space": "Space riêng tư của bạn",
|
"Your private space": "Space riêng tư của bạn",
|
||||||
|
@ -1710,16 +1699,12 @@
|
||||||
"Go back": "Quay lại",
|
"Go back": "Quay lại",
|
||||||
"To join a space you'll need an invite.": "Để tham gia vào một space, bạn sẽ cần một lời mời.",
|
"To join a space you'll need an invite.": "Để tham gia vào một space, bạn sẽ cần một lời mời.",
|
||||||
"Invite only, best for yourself or teams": "Chỉ mời, tốt nhất cho bản thân hoặc các đội",
|
"Invite only, best for yourself or teams": "Chỉ mời, tốt nhất cho bản thân hoặc các đội",
|
||||||
"Private": "Riêng tư",
|
|
||||||
"Open space for anyone, best for communities": "Tạo space cho mọi người, tốt nhất cho cộng đồng",
|
"Open space for anyone, best for communities": "Tạo space cho mọi người, tốt nhất cho cộng đồng",
|
||||||
"Public": "Công cộng",
|
|
||||||
"Create a space": "Tạo một Space",
|
"Create a space": "Tạo một Space",
|
||||||
"Address": "Địa chỉ",
|
"Address": "Địa chỉ",
|
||||||
"e.g. my-space": "ví dụ như my-space",
|
"e.g. my-space": "ví dụ như my-space",
|
||||||
"Please enter a name for the space": "Vui lòng nhập tên cho Space",
|
"Please enter a name for the space": "Vui lòng nhập tên cho Space",
|
||||||
"Search %(spaceName)s": "Tìm kiếm %(spaceName)s",
|
"Search %(spaceName)s": "Tìm kiếm %(spaceName)s",
|
||||||
"Description": "Sự mô tả",
|
|
||||||
"Name": "Tên",
|
|
||||||
"Upload": "Tải lên",
|
"Upload": "Tải lên",
|
||||||
"Upload avatar": "Tải lên hình đại diện",
|
"Upload avatar": "Tải lên hình đại diện",
|
||||||
"Delete": "Xoá",
|
"Delete": "Xoá",
|
||||||
|
@ -1985,7 +1970,6 @@
|
||||||
"Encryption upgrade available": "Nâng cấp mã hóa có sẵn",
|
"Encryption upgrade available": "Nâng cấp mã hóa có sẵn",
|
||||||
"Set up Secure Backup": "Thiết lập Sao lưu Bảo mật",
|
"Set up Secure Backup": "Thiết lập Sao lưu Bảo mật",
|
||||||
"Ok": "OK",
|
"Ok": "OK",
|
||||||
"Warning": "Cảnh báo",
|
|
||||||
"Contact your <a>server admin</a>.": "Liên hệ với <a>quản trị viên máy chủ</a> của bạn.",
|
"Contact your <a>server admin</a>.": "Liên hệ với <a>quản trị viên máy chủ</a> của bạn.",
|
||||||
"Your homeserver has exceeded one of its resource limits.": "Máy chủ của bạn đã vượt quá một trong các giới hạn tài nguyên của nó.",
|
"Your homeserver has exceeded one of its resource limits.": "Máy chủ của bạn đã vượt quá một trong các giới hạn tài nguyên của nó.",
|
||||||
"Your homeserver has exceeded its user limit.": "Máy chủ của bạn đã vượt quá giới hạn người dùng của nó.",
|
"Your homeserver has exceeded its user limit.": "Máy chủ của bạn đã vượt quá giới hạn người dùng của nó.",
|
||||||
|
@ -2038,7 +2022,6 @@
|
||||||
"%(num)s minutes ago": "%(num)s phút trước",
|
"%(num)s minutes ago": "%(num)s phút trước",
|
||||||
"about a minute ago": "khoảng một phút trước",
|
"about a minute ago": "khoảng một phút trước",
|
||||||
"a few seconds ago": "vài giây trước",
|
"a few seconds ago": "vài giây trước",
|
||||||
"Attachment": "Tập tin đính kèm",
|
|
||||||
"This homeserver has been blocked by its administrator.": "Máy chủ này đã bị chặn bởi quản trị viên của nó.",
|
"This homeserver has been blocked by its administrator.": "Máy chủ này đã bị chặn bởi quản trị viên của nó.",
|
||||||
"Ask your %(brand)s admin to check <a>your config</a> for incorrect or duplicate entries.": "Yêu cầu quản trị viên %(brand)s của bạn kiểm tra <a>your config</a> để tìm các mục nhập sai hoặc trùng lặp.",
|
"Ask your %(brand)s admin to check <a>your config</a> for incorrect or duplicate entries.": "Yêu cầu quản trị viên %(brand)s của bạn kiểm tra <a>your config</a> để tìm các mục nhập sai hoặc trùng lặp.",
|
||||||
"See <b>%(msgtype)s</b> messages posted to your active room": "Xem thông báo <b>%(msgtype)s</b> được đăng lên phòng hoạt động của bạn",
|
"See <b>%(msgtype)s</b> messages posted to your active room": "Xem thông báo <b>%(msgtype)s</b> được đăng lên phòng hoạt động của bạn",
|
||||||
|
@ -2102,8 +2085,6 @@
|
||||||
"Send stickers into this room": "Gửi sticker cảm xúc vào phòng này",
|
"Send stickers into this room": "Gửi sticker cảm xúc vào phòng này",
|
||||||
"Remain on your screen while running": "Ở lại màn hình của bạn trong khi chạy",
|
"Remain on your screen while running": "Ở lại màn hình của bạn trong khi chạy",
|
||||||
"Remain on your screen when viewing another room, when running": "Giữ màn hình của bạn khi đang xem phòng khác, khi đang chạy chương trình khác",
|
"Remain on your screen when viewing another room, when running": "Giữ màn hình của bạn khi đang xem phòng khác, khi đang chạy chương trình khác",
|
||||||
"Dark": "Tối",
|
|
||||||
"Light": "Sáng",
|
|
||||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã cập nhật quy tắc cấm khớp %(oldGlob)s sang %(newGlob)s cho %(reason)s",
|
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã cập nhật quy tắc cấm khớp %(oldGlob)s sang %(newGlob)s cho %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã thay đổi một quy tắc cấm các máy chủ khớp với %(oldGlob)s để khớp với %(newGlob)s vì %(reason)s",
|
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã thay đổi một quy tắc cấm các máy chủ khớp với %(oldGlob)s để khớp với %(newGlob)s vì %(reason)s",
|
||||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã thay đổi quy tắc cấm các phòng khớp với %(oldGlob)s thành khớp với %(newGlob)s vì %(reason)s",
|
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s": "%(senderName)s đã thay đổi quy tắc cấm các phòng khớp với %(oldGlob)s thành khớp với %(newGlob)s vì %(reason)s",
|
||||||
|
@ -3072,7 +3053,6 @@
|
||||||
"Find friends": "Tìm bạn bè",
|
"Find friends": "Tìm bạn bè",
|
||||||
"Find and invite your friends": "Tìm và mời bạn bè",
|
"Find and invite your friends": "Tìm và mời bạn bè",
|
||||||
"Log out and back in to disable": "Đăng xuất và đăng nhập lại để vô hiệu hóa",
|
"Log out and back in to disable": "Đăng xuất và đăng nhập lại để vô hiệu hóa",
|
||||||
"User": "Người dùng",
|
|
||||||
"Requires compatible homeserver.": "Cần máy chủ nhà tương thích.",
|
"Requires compatible homeserver.": "Cần máy chủ nhà tương thích.",
|
||||||
"Low bandwidth mode": "Chế độ băng thông thấp",
|
"Low bandwidth mode": "Chế độ băng thông thấp",
|
||||||
"Record the client name, version, and url to recognise sessions more easily in session manager": "Ghi lại tên phần mềm máy khách, phiên bản, và đường dẫn để nhận diện các phiên dễ dàng hơn trong trình quản lý phiên",
|
"Record the client name, version, and url to recognise sessions more easily in session manager": "Ghi lại tên phần mềm máy khách, phiên bản, và đường dẫn để nhận diện các phiên dễ dàng hơn trong trình quản lý phiên",
|
||||||
|
@ -3544,7 +3524,6 @@
|
||||||
"Explore room account data": "Xem thông tin tài khoản trong phòng",
|
"Explore room account data": "Xem thông tin tài khoản trong phòng",
|
||||||
"Message from %(user)s": "Tin nhắn từ %(user)s",
|
"Message from %(user)s": "Tin nhắn từ %(user)s",
|
||||||
"Get it on F-Droid": "Tải trên F-Droid",
|
"Get it on F-Droid": "Tải trên F-Droid",
|
||||||
"Help": "Hỗ trợ",
|
|
||||||
"Unable to load map": "Không thể tải bản đồ",
|
"Unable to load map": "Không thể tải bản đồ",
|
||||||
"Poll type": "Hình thức bỏ phiếu",
|
"Poll type": "Hình thức bỏ phiếu",
|
||||||
"Show: Matrix rooms": "Hiện: Phòng Matrix",
|
"Show: Matrix rooms": "Hiện: Phòng Matrix",
|
||||||
|
@ -3641,7 +3620,28 @@
|
||||||
"unmute": "Bật tiếng",
|
"unmute": "Bật tiếng",
|
||||||
"username": "Tên đăng nhập",
|
"username": "Tên đăng nhập",
|
||||||
"verification_cancelled": "Đã hủy xác thực",
|
"verification_cancelled": "Đã hủy xác thực",
|
||||||
"video": "Truyền hình"
|
"video": "Truyền hình",
|
||||||
|
"attachment": "Tập tin đính kèm",
|
||||||
|
"light": "Sáng",
|
||||||
|
"dark": "Tối",
|
||||||
|
"warning": "Cảnh báo",
|
||||||
|
"home": "Nhà",
|
||||||
|
"favourites": "Yêu thích",
|
||||||
|
"thread": "Chủ đề",
|
||||||
|
"threads": "Chủ đề",
|
||||||
|
"user": "Người dùng",
|
||||||
|
"room": "Phòng",
|
||||||
|
"theme": "Chủ đề",
|
||||||
|
"name": "Tên",
|
||||||
|
"description": "Sự mô tả",
|
||||||
|
"public": "Công cộng",
|
||||||
|
"private": "Riêng tư",
|
||||||
|
"options": "Tùy chọn",
|
||||||
|
"appearance": "Giao diện",
|
||||||
|
"homeserver": "Máy chủ",
|
||||||
|
"help": "Hỗ trợ",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "Chức năng thí nghiệm"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Tiếp tục",
|
"continue": "Tiếp tục",
|
||||||
|
@ -3678,5 +3678,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "Menu người dùng"
|
"user_menu": "Menu người dùng"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Nhà"
|
||||||
|
}
|
||||||
|
|
|
@ -325,7 +325,6 @@
|
||||||
"Email addresses": "E-mailadressn",
|
"Email addresses": "E-mailadressn",
|
||||||
"Phone numbers": "Telefongnumero’s",
|
"Phone numbers": "Telefongnumero’s",
|
||||||
"Language and region": "Toale en regio",
|
"Language and region": "Toale en regio",
|
||||||
"Theme": "Thema",
|
|
||||||
"Account management": "Accountbeheer",
|
"Account management": "Accountbeheer",
|
||||||
"Deactivate Account": "Account deactiveern",
|
"Deactivate Account": "Account deactiveern",
|
||||||
"General": "Algemeen",
|
"General": "Algemeen",
|
||||||
|
@ -341,7 +340,6 @@
|
||||||
"FAQ": "VGV",
|
"FAQ": "VGV",
|
||||||
"Versions": "Versies",
|
"Versions": "Versies",
|
||||||
"%(brand)s version:": "%(brand)s-versie:",
|
"%(brand)s version:": "%(brand)s-versie:",
|
||||||
"Labs": "Experimenteel",
|
|
||||||
"Notifications": "Meldiengn",
|
"Notifications": "Meldiengn",
|
||||||
"Start automatically after system login": "Automatisch startn achter systeemanmeldienge",
|
"Start automatically after system login": "Automatisch startn achter systeemanmeldienge",
|
||||||
"Preferences": "Instelliengn",
|
"Preferences": "Instelliengn",
|
||||||
|
@ -469,7 +467,6 @@
|
||||||
"Forget room": "Gesprek vergeetn",
|
"Forget room": "Gesprek vergeetn",
|
||||||
"Search": "Zoekn",
|
"Search": "Zoekn",
|
||||||
"Share room": "Gesprek deeln",
|
"Share room": "Gesprek deeln",
|
||||||
"Favourites": "Favorietn",
|
|
||||||
"Rooms": "Gesprekkn",
|
"Rooms": "Gesprekkn",
|
||||||
"Low priority": "Leige prioriteit",
|
"Low priority": "Leige prioriteit",
|
||||||
"Historical": "Historisch",
|
"Historical": "Historisch",
|
||||||
|
@ -531,8 +528,6 @@
|
||||||
"Saturday": "Zoaterdag",
|
"Saturday": "Zoaterdag",
|
||||||
"Today": "Vandoage",
|
"Today": "Vandoage",
|
||||||
"Yesterday": "Gistern",
|
"Yesterday": "Gistern",
|
||||||
"Options": "Opties",
|
|
||||||
"Attachment": "Byloage",
|
|
||||||
"Error decrypting attachment": "Foute by ’t ountsleutern van de byloage",
|
"Error decrypting attachment": "Foute by ’t ountsleutern van de byloage",
|
||||||
"Decrypt %(text)s": "%(text)s ountsleutern",
|
"Decrypt %(text)s": "%(text)s ountsleutern",
|
||||||
"Download %(text)s": "%(text)s downloadn",
|
"Download %(text)s": "%(text)s downloadn",
|
||||||
|
@ -556,7 +551,6 @@
|
||||||
"What's new?": "Wuk es ’t er nieuw?",
|
"What's new?": "Wuk es ’t er nieuw?",
|
||||||
"Error encountered (%(errorDetail)s).": "’t Es e foute ipgetreedn (%(errorDetail)s).",
|
"Error encountered (%(errorDetail)s).": "’t Es e foute ipgetreedn (%(errorDetail)s).",
|
||||||
"No update available.": "Geen update beschikboar.",
|
"No update available.": "Geen update beschikboar.",
|
||||||
"Warning": "Let ip",
|
|
||||||
"Delete Widget": "Widget verwydern",
|
"Delete Widget": "Widget verwydern",
|
||||||
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "E widget verwydern doet da voor alle gebruukers in dit gesprek. Zy je zeker da je deze widget wil verwydern?",
|
"Deleting a widget removes it for all users in this room. Are you sure you want to delete this widget?": "E widget verwydern doet da voor alle gebruukers in dit gesprek. Zy je zeker da je deze widget wil verwydern?",
|
||||||
"Delete widget": "Widget verwydern",
|
"Delete widget": "Widget verwydern",
|
||||||
|
@ -760,7 +754,6 @@
|
||||||
"All messages": "Alle berichtn",
|
"All messages": "Alle berichtn",
|
||||||
"Favourite": "Favoriet",
|
"Favourite": "Favoriet",
|
||||||
"Low Priority": "Leige prioriteit",
|
"Low Priority": "Leige prioriteit",
|
||||||
"Home": "Thuus",
|
|
||||||
"Sign in": "Anmeldn",
|
"Sign in": "Anmeldn",
|
||||||
"powered by Matrix": "meuglik gemakt deur Matrix",
|
"powered by Matrix": "meuglik gemakt deur Matrix",
|
||||||
"This homeserver would like to make sure you are not a robot.": "Deze thuusserver wil geirn weetn of da je gy geen robot zyt.",
|
"This homeserver would like to make sure you are not a robot.": "Deze thuusserver wil geirn weetn of da je gy geen robot zyt.",
|
||||||
|
@ -796,7 +789,6 @@
|
||||||
"You must <a>register</a> to use this functionality": "Je moe je <a>registreern</a> vo deze functie te gebruukn",
|
"You must <a>register</a> to use this functionality": "Je moe je <a>registreern</a> vo deze functie te gebruukn",
|
||||||
"You must join the room to see its files": "Je moe tout ’t gesprek toetreedn vo de bestandn te kunn zien",
|
"You must join the room to see its files": "Je moe tout ’t gesprek toetreedn vo de bestandn te kunn zien",
|
||||||
"Upload avatar": "Avatar iploadn",
|
"Upload avatar": "Avatar iploadn",
|
||||||
"Description": "Beschryvienge",
|
|
||||||
"Failed to reject invitation": "Weigern van d’uutnodigienge is mislukt",
|
"Failed to reject invitation": "Weigern van d’uutnodigienge is mislukt",
|
||||||
"This room is not public. You will not be able to rejoin without an invite.": "Dit gesprek is nie openboar. Zounder uutnodigienge goa je nie were kunn toetreedn.",
|
"This room is not public. You will not be able to rejoin without an invite.": "Dit gesprek is nie openboar. Zounder uutnodigienge goa je nie were kunn toetreedn.",
|
||||||
"Are you sure you want to leave the room '%(roomName)s'?": "Zy je zeker da je wilt deuregoan uut ’t gesprek ‘%(roomName)s’?",
|
"Are you sure you want to leave the room '%(roomName)s'?": "Zy je zeker da je wilt deuregoan uut ’t gesprek ‘%(roomName)s’?",
|
||||||
|
@ -821,7 +813,6 @@
|
||||||
"Search failed": "Zoekn mislukt",
|
"Search failed": "Zoekn mislukt",
|
||||||
"Server may be unavailable, overloaded, or search timed out :(": "De server is misschiens ounbereikboar of overbelast, of ’t zoekn deurdege te lank :(",
|
"Server may be unavailable, overloaded, or search timed out :(": "De server is misschiens ounbereikboar of overbelast, of ’t zoekn deurdege te lank :(",
|
||||||
"No more results": "Geen resultoatn nie mi",
|
"No more results": "Geen resultoatn nie mi",
|
||||||
"Room": "Gesprek",
|
|
||||||
"Failed to reject invite": "Weigern van d’uutnodigienge is mislukt",
|
"Failed to reject invite": "Weigern van d’uutnodigienge is mislukt",
|
||||||
"You have %(count)s unread notifications in a prior version of this room.": {
|
"You have %(count)s unread notifications in a prior version of this room.": {
|
||||||
"other": "J’èt %(count)s oungeleezn meldiengn in e voorgoande versie van dit gesprek.",
|
"other": "J’èt %(count)s oungeleezn meldiengn in e voorgoande versie van dit gesprek.",
|
||||||
|
@ -867,7 +858,6 @@
|
||||||
"Notify the whole room": "Loat dit an gans ’t groepsgesprek weetn",
|
"Notify the whole room": "Loat dit an gans ’t groepsgesprek weetn",
|
||||||
"Room Notification": "Groepsgespreksmeldienge",
|
"Room Notification": "Groepsgespreksmeldienge",
|
||||||
"Users": "Gebruukers",
|
"Users": "Gebruukers",
|
||||||
"Name": "Noame",
|
|
||||||
"Session ID": "Sessie-ID",
|
"Session ID": "Sessie-ID",
|
||||||
"Passphrases must match": "Paswoordn moetn overeenkommn",
|
"Passphrases must match": "Paswoordn moetn overeenkommn",
|
||||||
"Passphrase must not be empty": "Paswoord meug nie leeg zyn",
|
"Passphrase must not be empty": "Paswoord meug nie leeg zyn",
|
||||||
|
@ -1000,7 +990,17 @@
|
||||||
"settings": "Instelliengn",
|
"settings": "Instelliengn",
|
||||||
"success": "Gereed",
|
"success": "Gereed",
|
||||||
"unmute": "Nie dempn",
|
"unmute": "Nie dempn",
|
||||||
"username": "Gebruukersnoame"
|
"username": "Gebruukersnoame",
|
||||||
|
"attachment": "Byloage",
|
||||||
|
"warning": "Let ip",
|
||||||
|
"home": "Thuus",
|
||||||
|
"favourites": "Favorietn",
|
||||||
|
"room": "Gesprek",
|
||||||
|
"theme": "Thema",
|
||||||
|
"name": "Noame",
|
||||||
|
"description": "Beschryvienge",
|
||||||
|
"options": "Opties",
|
||||||
|
"labs": "Experimenteel"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "Verdergoan",
|
"continue": "Verdergoan",
|
||||||
|
@ -1022,5 +1022,6 @@
|
||||||
"start_chat": "Gesprek beginn",
|
"start_chat": "Gesprek beginn",
|
||||||
"view_source": "Bron bekykn",
|
"view_source": "Bron bekykn",
|
||||||
"yes": "Joak"
|
"yes": "Joak"
|
||||||
}
|
},
|
||||||
}
|
"Home": "Thuus"
|
||||||
|
}
|
||||||
|
|
|
@ -24,7 +24,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": "邮箱验证失败:请确保你已点击邮件中的链接",
|
||||||
"Failure to create room": "创建房间失败",
|
"Failure to create room": "创建房间失败",
|
||||||
"Favourite": "收藏",
|
"Favourite": "收藏",
|
||||||
"Favourites": "收藏夹",
|
|
||||||
"Filter room members": "过滤房间成员",
|
"Filter room members": "过滤房间成员",
|
||||||
"Forget room": "忘记房间",
|
"Forget room": "忘记房间",
|
||||||
"For security, this session has been signed out. Please sign in again.": "出于安全考虑,此会话已被注销。请重新登录。",
|
"For security, this session has been signed out. Please sign in again.": "出于安全考虑,此会话已被注销。请重新登录。",
|
||||||
|
@ -63,7 +62,6 @@
|
||||||
"Always show message timestamps": "总是显示消息时间戳",
|
"Always show message timestamps": "总是显示消息时间戳",
|
||||||
"A new password must be entered.": "必须输入新密码。",
|
"A new password must be entered.": "必须输入新密码。",
|
||||||
"An error has occurred.": "发生了一个错误。",
|
"An error has occurred.": "发生了一个错误。",
|
||||||
"Attachment": "附件",
|
|
||||||
"Banned users": "被封禁的用户",
|
"Banned users": "被封禁的用户",
|
||||||
"Confirm password": "确认密码",
|
"Confirm password": "确认密码",
|
||||||
"Join Room": "加入房间",
|
"Join Room": "加入房间",
|
||||||
|
@ -101,7 +99,6 @@
|
||||||
"Custom level": "自定义级别",
|
"Custom level": "自定义级别",
|
||||||
"Enter passphrase": "输入口令词组",
|
"Enter passphrase": "输入口令词组",
|
||||||
"Export": "导出",
|
"Export": "导出",
|
||||||
"Home": "主页",
|
|
||||||
"Import": "导入",
|
"Import": "导入",
|
||||||
"Incorrect username and/or password.": "用户名或密码错误。",
|
"Incorrect username and/or password.": "用户名或密码错误。",
|
||||||
"Invited": "已邀请",
|
"Invited": "已邀请",
|
||||||
|
@ -110,7 +107,6 @@
|
||||||
"Missing room_id in request": "请求中缺少room_id",
|
"Missing room_id in request": "请求中缺少room_id",
|
||||||
"Missing user_id in request": "请求中缺少user_id",
|
"Missing user_id in request": "请求中缺少user_id",
|
||||||
"Moderator": "协管员",
|
"Moderator": "协管员",
|
||||||
"Name": "名称",
|
|
||||||
"New passwords don't match": "两次输入的新密码不符",
|
"New passwords don't match": "两次输入的新密码不符",
|
||||||
"not specified": "未指定",
|
"not specified": "未指定",
|
||||||
"Notifications": "通知",
|
"Notifications": "通知",
|
||||||
|
@ -127,7 +123,6 @@
|
||||||
"unknown error code": "未知错误代码",
|
"unknown error code": "未知错误代码",
|
||||||
"Account": "账户",
|
"Account": "账户",
|
||||||
"Add": "添加",
|
"Add": "添加",
|
||||||
"Labs": "实验室",
|
|
||||||
"Logout": "登出",
|
"Logout": "登出",
|
||||||
"Low priority": "低优先级",
|
"Low priority": "低优先级",
|
||||||
"No more results": "没有更多结果",
|
"No more results": "没有更多结果",
|
||||||
|
@ -142,10 +137,8 @@
|
||||||
"Warning!": "警告!",
|
"Warning!": "警告!",
|
||||||
"You must <a>register</a> to use this functionality": "你必须 <a>注册</a> 以使用此功能",
|
"You must <a>register</a> to use this functionality": "你必须 <a>注册</a> 以使用此功能",
|
||||||
"You need to be logged in.": "你需要登录。",
|
"You need to be logged in.": "你需要登录。",
|
||||||
"Room": "房间",
|
|
||||||
"Connectivity to the server has been lost.": "到服务器的连接已经丢失。",
|
"Connectivity to the server has been lost.": "到服务器的连接已经丢失。",
|
||||||
"New Password": "新密码",
|
"New Password": "新密码",
|
||||||
"Options": "选项",
|
|
||||||
"Passphrases must match": "口令词组必须匹配",
|
"Passphrases must match": "口令词组必须匹配",
|
||||||
"Passphrase must not be empty": "口令词组不能为空",
|
"Passphrase must not be empty": "口令词组不能为空",
|
||||||
"Export room keys": "导出房间密钥",
|
"Export room keys": "导出房间密钥",
|
||||||
|
@ -312,8 +305,6 @@
|
||||||
},
|
},
|
||||||
"collapse": "折叠",
|
"collapse": "折叠",
|
||||||
"expand": "展开",
|
"expand": "展开",
|
||||||
"Description": "描述",
|
|
||||||
"Warning": "警告",
|
|
||||||
"Room Notification": "房间通知",
|
"Room Notification": "房间通知",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(monthName)s %(day)s %(time)s,%(weekDayName)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(monthName)s %(day)s %(time)s,%(weekDayName)s",
|
||||||
|
@ -697,7 +688,6 @@
|
||||||
"Email addresses": "电子邮箱地址",
|
"Email addresses": "电子邮箱地址",
|
||||||
"Phone numbers": "电话号码",
|
"Phone numbers": "电话号码",
|
||||||
"Language and region": "语言与地区",
|
"Language and region": "语言与地区",
|
||||||
"Theme": "主题",
|
|
||||||
"Account management": "账户管理",
|
"Account management": "账户管理",
|
||||||
"General": "通用",
|
"General": "通用",
|
||||||
"Credits": "感谢",
|
"Credits": "感谢",
|
||||||
|
@ -925,8 +915,6 @@
|
||||||
"Joins room with given address": "使用指定地址加入房间",
|
"Joins room with given address": "使用指定地址加入房间",
|
||||||
"Are you sure you want to cancel entering passphrase?": "你确定要取消输入口令词组吗?",
|
"Are you sure you want to cancel entering passphrase?": "你确定要取消输入口令词组吗?",
|
||||||
"Go Back": "后退",
|
"Go Back": "后退",
|
||||||
"Light": "浅色",
|
|
||||||
"Dark": "深色",
|
|
||||||
"You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以注册,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
"You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以注册,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
||||||
"You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以重置密码,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
"You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以重置密码,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
||||||
"You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以登录,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
"You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "你可以登录,但部分功能在身份服务器重新上线之前不可用。如果持续看到此警告,请检查配置或联系服务器管理员。",
|
||||||
|
@ -1180,7 +1168,6 @@
|
||||||
"Reject & Ignore user": "拒绝并忽略用户",
|
"Reject & Ignore user": "拒绝并忽略用户",
|
||||||
"You're previewing %(roomName)s. Want to join it?": "你正在预览 %(roomName)s。想加入吗?",
|
"You're previewing %(roomName)s. Want to join it?": "你正在预览 %(roomName)s。想加入吗?",
|
||||||
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s 不能被预览。你想加入吗?",
|
"%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s 不能被预览。你想加入吗?",
|
||||||
"Appearance": "外观",
|
|
||||||
"Show rooms with unread messages first": "优先显示有未读消息的房间",
|
"Show rooms with unread messages first": "优先显示有未读消息的房间",
|
||||||
"Show previews of messages": "显示消息预览",
|
"Show previews of messages": "显示消息预览",
|
||||||
"Sort by": "排序",
|
"Sort by": "排序",
|
||||||
|
@ -1723,8 +1710,6 @@
|
||||||
"Your private space": "你的私有空间",
|
"Your private space": "你的私有空间",
|
||||||
"Your public space": "你的公共空间",
|
"Your public space": "你的公共空间",
|
||||||
"Invite only, best for yourself or teams": "仅邀请,适合你自己或团队",
|
"Invite only, best for yourself or teams": "仅邀请,适合你自己或团队",
|
||||||
"Private": "私有",
|
|
||||||
"Public": "公共",
|
|
||||||
"Delete": "删除",
|
"Delete": "删除",
|
||||||
"Dial pad": "拨号盘",
|
"Dial pad": "拨号盘",
|
||||||
"There was an error looking up the phone number": "查询电话号码时发生错误",
|
"There was an error looking up the phone number": "查询电话号码时发生错误",
|
||||||
|
@ -1798,7 +1783,6 @@
|
||||||
"Create a new room": "创建新房间",
|
"Create a new room": "创建新房间",
|
||||||
"Spaces": "空间",
|
"Spaces": "空间",
|
||||||
"Continue with %(provider)s": "使用 %(provider)s 继续",
|
"Continue with %(provider)s": "使用 %(provider)s 继续",
|
||||||
"Homeserver": "家服务器",
|
|
||||||
"Server Options": "服务器选项",
|
"Server Options": "服务器选项",
|
||||||
"Information": "信息",
|
"Information": "信息",
|
||||||
"Not encrypted": "未加密",
|
"Not encrypted": "未加密",
|
||||||
|
@ -2290,7 +2274,6 @@
|
||||||
"Avatar": "头像",
|
"Avatar": "头像",
|
||||||
"Join the beta": "加入beta",
|
"Join the beta": "加入beta",
|
||||||
"Leave the beta": "离开beta",
|
"Leave the beta": "离开beta",
|
||||||
"Beta": "beta",
|
|
||||||
"Start audio stream": "开始音频流",
|
"Start audio stream": "开始音频流",
|
||||||
"Failed to start livestream": "开始流直播失败",
|
"Failed to start livestream": "开始流直播失败",
|
||||||
"Unable to start audio streaming.": "无法开始音频流媒体。",
|
"Unable to start audio streaming.": "无法开始音频流媒体。",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "为避免这些问题,请为计划中的对话创建一个<a>新的加密房间</a>。",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "为避免这些问题,请为计划中的对话创建一个<a>新的加密房间</a>。",
|
||||||
"Are you sure you want to add encryption to this public room?": "你确定要为此公开房间开启加密吗?",
|
"Are you sure you want to add encryption to this public room?": "你确定要为此公开房间开启加密吗?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "交叉签名已就绪,但尚未备份密钥。",
|
"Cross-signing is ready but keys are not backed up.": "交叉签名已就绪,但尚未备份密钥。",
|
||||||
"Thread": "消息列",
|
|
||||||
"The above, but in <Room /> as well": "以上,但也包括 <Room />",
|
"The above, but in <Room /> as well": "以上,但也包括 <Room />",
|
||||||
"The above, but in any room you are joined or invited to as well": "以上,但也包括你加入或被邀请的任何房间中",
|
"The above, but in any room you are joined or invited to as well": "以上,但也包括你加入或被邀请的任何房间中",
|
||||||
"Autoplay videos": "自动播放视频",
|
"Autoplay videos": "自动播放视频",
|
||||||
|
@ -2645,7 +2627,6 @@
|
||||||
},
|
},
|
||||||
"Loading new room": "正在加载新房间",
|
"Loading new room": "正在加载新房间",
|
||||||
"Upgrading room": "正在升级房间",
|
"Upgrading room": "正在升级房间",
|
||||||
"Threads": "消息列",
|
|
||||||
"Disinvite from %(roomName)s": "取消邀请加入 %(roomName)s",
|
"Disinvite from %(roomName)s": "取消邀请加入 %(roomName)s",
|
||||||
"Show:": "显示:",
|
"Show:": "显示:",
|
||||||
"Shows all threads from current room": "显示当前房间的所有消息列",
|
"Shows all threads from current room": "显示当前房间的所有消息列",
|
||||||
|
@ -3202,7 +3183,6 @@
|
||||||
"Your profile": "你的用户资料",
|
"Your profile": "你的用户资料",
|
||||||
"Set up your profile": "设置你的用户资料",
|
"Set up your profile": "设置你的用户资料",
|
||||||
"Download apps": "下载应用",
|
"Download apps": "下载应用",
|
||||||
"Help": "帮助",
|
|
||||||
"Results are only revealed when you end the poll": "结果仅在你结束投票后展示",
|
"Results are only revealed when you end the poll": "结果仅在你结束投票后展示",
|
||||||
"Voters see results as soon as they have voted": "投票者一投完票就能看到结果",
|
"Voters see results as soon as they have voted": "投票者一投完票就能看到结果",
|
||||||
"Closed poll": "封闭式投票",
|
"Closed poll": "封闭式投票",
|
||||||
|
@ -3530,7 +3510,27 @@
|
||||||
"unmute": "取消静音",
|
"unmute": "取消静音",
|
||||||
"username": "用户名",
|
"username": "用户名",
|
||||||
"verification_cancelled": "验证已取消",
|
"verification_cancelled": "验证已取消",
|
||||||
"video": "视频"
|
"video": "视频",
|
||||||
|
"attachment": "附件",
|
||||||
|
"light": "浅色",
|
||||||
|
"dark": "深色",
|
||||||
|
"warning": "警告",
|
||||||
|
"home": "主页",
|
||||||
|
"favourites": "收藏夹",
|
||||||
|
"thread": "消息列",
|
||||||
|
"threads": "消息列",
|
||||||
|
"room": "房间",
|
||||||
|
"theme": "主题",
|
||||||
|
"name": "名称",
|
||||||
|
"description": "描述",
|
||||||
|
"public": "公共",
|
||||||
|
"private": "私有",
|
||||||
|
"options": "选项",
|
||||||
|
"appearance": "外观",
|
||||||
|
"homeserver": "家服务器",
|
||||||
|
"help": "帮助",
|
||||||
|
"beta": "beta",
|
||||||
|
"labs": "实验室"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "继续",
|
"continue": "继续",
|
||||||
|
@ -3567,5 +3567,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "用户菜单"
|
"user_menu": "用户菜单"
|
||||||
}
|
},
|
||||||
}
|
"Home": "主页"
|
||||||
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
"An error has occurred.": "出現一個錯誤。",
|
"An error has occurred.": "出現一個錯誤。",
|
||||||
"Are you sure?": "您確定嗎?",
|
"Are you sure?": "您確定嗎?",
|
||||||
"Are you sure you want to reject the invitation?": "您確認要拒絕邀請嗎?",
|
"Are you sure you want to reject the invitation?": "您確認要拒絕邀請嗎?",
|
||||||
"Attachment": "附件",
|
|
||||||
"Banned users": "被封鎖的使用者",
|
"Banned users": "被封鎖的使用者",
|
||||||
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "當瀏覽器網址列使用的是 HTTPS 網址時,不能使用 HTTP 連線到家伺服器。請改用 HTTPS 連線或<a>允許不安全的指令碼</a>。",
|
"Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or <a>enable unsafe scripts</a>.": "當瀏覽器網址列使用的是 HTTPS 網址時,不能使用 HTTP 連線到家伺服器。請改用 HTTPS 連線或<a>允許不安全的指令碼</a>。",
|
||||||
"Change Password": "變更密碼",
|
"Change Password": "變更密碼",
|
||||||
|
@ -39,7 +38,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": "電子郵件地址驗證失敗:請確認您已點擊郵件中的連結",
|
||||||
"Failure to create room": "無法建立聊天室",
|
"Failure to create room": "無法建立聊天室",
|
||||||
"Favourite": "加入我的最愛",
|
"Favourite": "加入我的最愛",
|
||||||
"Favourites": "我的最愛",
|
|
||||||
"Filter room members": "過濾聊天室成員",
|
"Filter room members": "過濾聊天室成員",
|
||||||
"Forget room": "忘記聊天室",
|
"Forget room": "忘記聊天室",
|
||||||
"For security, this session has been signed out. Please sign in again.": "因為安全因素,此工作階段已被登出。請重新登入。",
|
"For security, this session has been signed out. Please sign in again.": "因為安全因素,此工作階段已被登出。請重新登入。",
|
||||||
|
@ -128,13 +126,11 @@
|
||||||
"Enter passphrase": "輸入安全密語",
|
"Enter passphrase": "輸入安全密語",
|
||||||
"Export": "匯出",
|
"Export": "匯出",
|
||||||
"Failed to change power level": "無法變更權限等級",
|
"Failed to change power level": "無法變更權限等級",
|
||||||
"Home": "首頁",
|
|
||||||
"Import": "匯入",
|
"Import": "匯入",
|
||||||
"Incorrect username and/or password.": "使用者名稱和/或密碼不正確。",
|
"Incorrect username and/or password.": "使用者名稱和/或密碼不正確。",
|
||||||
"Invited": "已邀請",
|
"Invited": "已邀請",
|
||||||
"Invites user with given id to current room": "邀請指定 ID 的使用者到目前的聊天室",
|
"Invites user with given id to current room": "邀請指定 ID 的使用者到目前的聊天室",
|
||||||
"Sign in with": "登入使用",
|
"Sign in with": "登入使用",
|
||||||
"Labs": "實驗室",
|
|
||||||
"Logout": "登出",
|
"Logout": "登出",
|
||||||
"Low priority": "低優先度",
|
"Low priority": "低優先度",
|
||||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s 將未來的聊天室紀錄顯示給所有成員,從他們被邀請開始。",
|
"%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s 將未來的聊天室紀錄顯示給所有成員,從他們被邀請開始。",
|
||||||
|
@ -145,7 +141,6 @@
|
||||||
"Missing room_id in request": "請求中缺少 room_id",
|
"Missing room_id in request": "請求中缺少 room_id",
|
||||||
"Missing user_id in request": "請求中缺少 user_id",
|
"Missing user_id in request": "請求中缺少 user_id",
|
||||||
"Moderator": "版主",
|
"Moderator": "版主",
|
||||||
"Name": "名稱",
|
|
||||||
"New passwords don't match": "新密碼不相符",
|
"New passwords don't match": "新密碼不相符",
|
||||||
"New passwords must match each other.": "新密碼必須互相相符。",
|
"New passwords must match each other.": "新密碼必須互相相符。",
|
||||||
"not specified": "未指定",
|
"not specified": "未指定",
|
||||||
|
@ -220,7 +215,6 @@
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(fullYear)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(fullYear)s %(time)s",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"This server does not support authentication with a phone number.": "這個伺服器不支援以電話號碼認證。",
|
"This server does not support authentication with a phone number.": "這個伺服器不支援以電話號碼認證。",
|
||||||
"Room": "聊天室",
|
|
||||||
"Connectivity to the server has been lost.": "對伺服器的連線已中斷。",
|
"Connectivity to the server has been lost.": "對伺服器的連線已中斷。",
|
||||||
"Sent messages will be stored until your connection has returned.": "傳送的訊息會在您的連線恢復前先儲存起來。",
|
"Sent messages will be stored until your connection has returned.": "傳送的訊息會在您的連線恢復前先儲存起來。",
|
||||||
"(~%(count)s results)": {
|
"(~%(count)s results)": {
|
||||||
|
@ -229,7 +223,6 @@
|
||||||
},
|
},
|
||||||
"New Password": "新密碼",
|
"New Password": "新密碼",
|
||||||
"Start automatically after system login": "在系統登入後自動開始",
|
"Start automatically after system login": "在系統登入後自動開始",
|
||||||
"Options": "選項",
|
|
||||||
"Passphrases must match": "安全密語必須相符",
|
"Passphrases must match": "安全密語必須相符",
|
||||||
"Passphrase must not be empty": "安全密語不能為空",
|
"Passphrase must not be empty": "安全密語不能為空",
|
||||||
"Export room keys": "匯出聊天室金鑰",
|
"Export room keys": "匯出聊天室金鑰",
|
||||||
|
@ -406,10 +399,8 @@
|
||||||
"And %(count)s more...": {
|
"And %(count)s more...": {
|
||||||
"other": "與更多 %(count)s 個…"
|
"other": "與更多 %(count)s 個…"
|
||||||
},
|
},
|
||||||
"Description": "描述",
|
|
||||||
"Old cryptography data detected": "偵測到舊的加密資料",
|
"Old cryptography data detected": "偵測到舊的加密資料",
|
||||||
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "偵測到來自舊版 %(brand)s 的資料。這將會造成舊版的端對端加密失敗。在此版本中使用最近在舊版本交換的金鑰可能無法解密訊息。這也會造成與此版本的訊息交換失敗。若您遇到問題,請登出並重新登入。要保留訊息歷史,請匯出並重新匯入您的金鑰。",
|
"Data from an older version of %(brand)s has been detected. This will have caused end-to-end cryptography to malfunction in the older version. End-to-end encrypted messages exchanged recently whilst using the older version may not be decryptable in this version. This may also cause messages exchanged with this version to fail. If you experience problems, log out and back in again. To retain message history, export and re-import your keys.": "偵測到來自舊版 %(brand)s 的資料。這將會造成舊版的端對端加密失敗。在此版本中使用最近在舊版本交換的金鑰可能無法解密訊息。這也會造成與此版本的訊息交換失敗。若您遇到問題,請登出並重新登入。要保留訊息歷史,請匯出並重新匯入您的金鑰。",
|
||||||
"Warning": "警告",
|
|
||||||
"Please note you are logging into the %(hs)s server, not matrix.org.": "請注意,您正在登入 %(hs)s 伺服器,不是 matrix.org。",
|
"Please note you are logging into the %(hs)s server, not matrix.org.": "請注意,您正在登入 %(hs)s 伺服器,不是 matrix.org。",
|
||||||
"Ignores a user, hiding their messages from you": "忽略使用者,從您這裡隱藏他們的訊息",
|
"Ignores a user, hiding their messages from you": "忽略使用者,從您這裡隱藏他們的訊息",
|
||||||
"Stops ignoring a user, showing their messages going forward": "停止忽略使用者,顯示他們的訊息",
|
"Stops ignoring a user, showing their messages going forward": "停止忽略使用者,顯示他們的訊息",
|
||||||
|
@ -646,7 +637,6 @@
|
||||||
"Email addresses": "電子郵件地址",
|
"Email addresses": "電子郵件地址",
|
||||||
"Phone numbers": "電話號碼",
|
"Phone numbers": "電話號碼",
|
||||||
"Language and region": "語言與區域",
|
"Language and region": "語言與區域",
|
||||||
"Theme": "主題",
|
|
||||||
"Account management": "帳號管理",
|
"Account management": "帳號管理",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "若需 %(brand)s 的使用說明,請點擊<a>這裡</a>。",
|
"For help with using %(brand)s, click <a>here</a>.": "若需 %(brand)s 的使用說明,請點擊<a>這裡</a>。",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "對於使用 %(brand)s 的說明,點選<a>這裡</a>或是使用下面的按鈕開始與我們的聊天機器人聊天。",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "對於使用 %(brand)s 的說明,點選<a>這裡</a>或是使用下面的按鈕開始與我們的聊天機器人聊天。",
|
||||||
|
@ -1515,7 +1505,6 @@
|
||||||
"Size must be a number": "大小必須為數字",
|
"Size must be a number": "大小必須為數字",
|
||||||
"Custom font size can only be between %(min)s pt and %(max)s pt": "自訂字型大小僅能為 %(min)s 點至 %(max)s 點間",
|
"Custom font size can only be between %(min)s pt and %(max)s pt": "自訂字型大小僅能為 %(min)s 點至 %(max)s 點間",
|
||||||
"Use between %(min)s pt and %(max)s pt": "使用 %(min)s 點至 %(max)s 點間",
|
"Use between %(min)s pt and %(max)s pt": "使用 %(min)s 點至 %(max)s 點間",
|
||||||
"Appearance": "外觀",
|
|
||||||
"Joins room with given address": "以指定的位址加入聊天室",
|
"Joins room with given address": "以指定的位址加入聊天室",
|
||||||
"Please verify the room ID or address and try again.": "請確認聊天室 ID 或位址後,再試一次。",
|
"Please verify the room ID or address and try again.": "請確認聊天室 ID 或位址後,再試一次。",
|
||||||
"Room ID or address of ban list": "聊天室 ID 或位址的封鎖清單",
|
"Room ID or address of ban list": "聊天室 ID 或位址的封鎖清單",
|
||||||
|
@ -1553,8 +1542,6 @@
|
||||||
"Room options": "聊天室選項",
|
"Room options": "聊天室選項",
|
||||||
"Activity": "訊息順序",
|
"Activity": "訊息順序",
|
||||||
"A-Z": "A-Z",
|
"A-Z": "A-Z",
|
||||||
"Light": "亮色",
|
|
||||||
"Dark": "暗色",
|
|
||||||
"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 工作階段。",
|
||||||
"Looks good!": "看起來真棒!",
|
"Looks good!": "看起來真棒!",
|
||||||
|
@ -2065,7 +2052,6 @@
|
||||||
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "請注意,如果您不新增電子郵件且忘記密碼,您將<b>永遠失去對您帳號的存取權</b>。",
|
"Just a heads up, if you don't add an email and forget your password, you could <b>permanently lose access to your account</b>.": "請注意,如果您不新增電子郵件且忘記密碼,您將<b>永遠失去對您帳號的存取權</b>。",
|
||||||
"Continuing without email": "不使用電子郵件來繼續",
|
"Continuing without email": "不使用電子郵件來繼續",
|
||||||
"Continue with %(provider)s": "使用下列帳號繼續:%(provider)s",
|
"Continue with %(provider)s": "使用下列帳號繼續:%(provider)s",
|
||||||
"Homeserver": "家伺服器",
|
|
||||||
"Server Options": "伺服器選項",
|
"Server Options": "伺服器選項",
|
||||||
"Reason (optional)": "理由(選擇性)",
|
"Reason (optional)": "理由(選擇性)",
|
||||||
"Invalid URL": "無效網址",
|
"Invalid URL": "無效網址",
|
||||||
|
@ -2209,9 +2195,7 @@
|
||||||
"Your private space": "您的私密聊天空間",
|
"Your private space": "您的私密聊天空間",
|
||||||
"Your public space": "您的公開聊天空間",
|
"Your public space": "您的公開聊天空間",
|
||||||
"Invite only, best for yourself or teams": "邀請制,適用於您自己或團隊使用",
|
"Invite only, best for yourself or teams": "邀請制,適用於您自己或團隊使用",
|
||||||
"Private": "私密",
|
|
||||||
"Open space for anyone, best for communities": "對所有人開放的聊天空間,最適合社群",
|
"Open space for anyone, best for communities": "對所有人開放的聊天空間,最適合社群",
|
||||||
"Public": "公開",
|
|
||||||
"Create a space": "建立聊天空間",
|
"Create a space": "建立聊天空間",
|
||||||
"Delete": "刪除",
|
"Delete": "刪除",
|
||||||
"Jump to the bottom of the timeline when you send a message": "傳送訊息時,跳到時間軸底部",
|
"Jump to the bottom of the timeline when you send a message": "傳送訊息時,跳到時間軸底部",
|
||||||
|
@ -2302,7 +2286,6 @@
|
||||||
"Select a room below first": "首先選取一個聊天室",
|
"Select a room below first": "首先選取一個聊天室",
|
||||||
"Join the beta": "加入 Beta 測試",
|
"Join the beta": "加入 Beta 測試",
|
||||||
"Leave the beta": "離開 Beta 測試",
|
"Leave the beta": "離開 Beta 測試",
|
||||||
"Beta": "Beta",
|
|
||||||
"Want to add a new room instead?": "想要新增新聊天室嗎?",
|
"Want to add a new room instead?": "想要新增新聊天室嗎?",
|
||||||
"Adding rooms... (%(progress)s out of %(count)s)": {
|
"Adding rooms... (%(progress)s out of %(count)s)": {
|
||||||
"one": "正在新增聊天室…",
|
"one": "正在新增聊天室…",
|
||||||
|
@ -2561,7 +2544,6 @@
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "為了避免這些問題,請為您計畫中的對話建立<a>新的加密聊天室</a>。",
|
"To avoid these issues, create a <a>new encrypted room</a> for the conversation you plan to have.": "為了避免這些問題,請為您計畫中的對話建立<a>新的加密聊天室</a>。",
|
||||||
"Are you sure you want to add encryption to this public room?": "您確定您要在此公開聊天室新增加密?",
|
"Are you sure you want to add encryption to this public room?": "您確定您要在此公開聊天室新增加密?",
|
||||||
"Cross-signing is ready but keys are not backed up.": "已準備好交叉簽署但金鑰未備份。",
|
"Cross-signing is ready but keys are not backed up.": "已準備好交叉簽署但金鑰未備份。",
|
||||||
"Thread": "討論串",
|
|
||||||
"The above, but in <Room /> as well": "以上,但也在 <Room /> 中",
|
"The above, but in <Room /> as well": "以上,但也在 <Room /> 中",
|
||||||
"The above, but in any room you are joined or invited to as well": "以上,但在任何您已加入或被邀請的聊天室中",
|
"The above, but in any room you are joined or invited to as well": "以上,但在任何您已加入或被邀請的聊天室中",
|
||||||
"Autoplay videos": "自動播放影片",
|
"Autoplay videos": "自動播放影片",
|
||||||
|
@ -2648,7 +2630,6 @@
|
||||||
"Unban from %(roomName)s": "從 %(roomName)s 取消封鎖",
|
"Unban from %(roomName)s": "從 %(roomName)s 取消封鎖",
|
||||||
"They'll still be able to access whatever you're not an admin of.": "他們仍然可以存取您不是管理員的任何地方。",
|
"They'll still be able to access whatever you're not an admin of.": "他們仍然可以存取您不是管理員的任何地方。",
|
||||||
"Disinvite from %(roomName)s": "拒絕來自 %(roomName)s 的邀請",
|
"Disinvite from %(roomName)s": "拒絕來自 %(roomName)s 的邀請",
|
||||||
"Threads": "討論串",
|
|
||||||
"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 個)"
|
||||||
|
@ -3346,7 +3327,6 @@
|
||||||
"It’s what you’re here for, so lets get to it": "這就是您來這裡的目的,所以讓我們開始吧",
|
"It’s what you’re here for, so lets get to it": "這就是您來這裡的目的,所以讓我們開始吧",
|
||||||
"Find and invite your friends": "尋找並邀請您的朋友",
|
"Find and invite your friends": "尋找並邀請您的朋友",
|
||||||
"You made it!": "您做到了!",
|
"You made it!": "您做到了!",
|
||||||
"Help": "說明",
|
|
||||||
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。",
|
"Google Play and the Google Play logo are trademarks of Google LLC.": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。",
|
||||||
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® 與 Apple logo® 是 Apple Inc 的註冊商標。",
|
"App Store® and the Apple logo® are trademarks of Apple Inc.": "App Store® 與 Apple logo® 是 Apple Inc 的註冊商標。",
|
||||||
"Get it on F-Droid": "在 F-Droid 上取得",
|
"Get it on F-Droid": "在 F-Droid 上取得",
|
||||||
|
@ -3767,7 +3747,6 @@
|
||||||
"Can currently only be enabled via config.json": "目前僅能透過 config.json 啟用",
|
"Can currently only be enabled via config.json": "目前僅能透過 config.json 啟用",
|
||||||
"Requires your server to support MSC3030": "您的伺服器必須支援 MSC3030",
|
"Requires your server to support MSC3030": "您的伺服器必須支援 MSC3030",
|
||||||
"Requires your server to support the stable version of MSC3827": "您的伺服器必須支援穩定版本的 MSC3827",
|
"Requires your server to support the stable version of MSC3827": "您的伺服器必須支援穩定版本的 MSC3827",
|
||||||
"User": "使用者",
|
|
||||||
"Show avatars in user, room and event mentions": "在使用者、聊天室與事件提及中顯示大頭貼",
|
"Show avatars in user, room and event mentions": "在使用者、聊天室與事件提及中顯示大頭貼",
|
||||||
"Message from %(user)s": "來自 %(user)s 的訊息",
|
"Message from %(user)s": "來自 %(user)s 的訊息",
|
||||||
"Message in %(room)s": "%(room)s 中的訊息",
|
"Message in %(room)s": "%(room)s 中的訊息",
|
||||||
|
@ -3938,7 +3917,28 @@
|
||||||
"unmute": "解除靜音",
|
"unmute": "解除靜音",
|
||||||
"username": "使用者名稱",
|
"username": "使用者名稱",
|
||||||
"verification_cancelled": "驗證已取消",
|
"verification_cancelled": "驗證已取消",
|
||||||
"video": "影片"
|
"video": "影片",
|
||||||
|
"attachment": "附件",
|
||||||
|
"light": "亮色",
|
||||||
|
"dark": "暗色",
|
||||||
|
"warning": "警告",
|
||||||
|
"home": "首頁",
|
||||||
|
"favourites": "我的最愛",
|
||||||
|
"thread": "討論串",
|
||||||
|
"threads": "討論串",
|
||||||
|
"user": "使用者",
|
||||||
|
"room": "聊天室",
|
||||||
|
"theme": "主題",
|
||||||
|
"name": "名稱",
|
||||||
|
"description": "描述",
|
||||||
|
"public": "公開",
|
||||||
|
"private": "私密",
|
||||||
|
"options": "選項",
|
||||||
|
"appearance": "外觀",
|
||||||
|
"homeserver": "家伺服器",
|
||||||
|
"help": "說明",
|
||||||
|
"beta": "Beta",
|
||||||
|
"labs": "實驗室"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"continue": "繼續",
|
"continue": "繼續",
|
||||||
|
@ -3975,5 +3975,6 @@
|
||||||
},
|
},
|
||||||
"a11y": {
|
"a11y": {
|
||||||
"user_menu": "使用者選單"
|
"user_menu": "使用者選單"
|
||||||
}
|
},
|
||||||
}
|
"Home": "首頁"
|
||||||
|
}
|
||||||
|
|
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