diff --git a/cypress/e2e/timeline/timeline.spec.ts b/cypress/e2e/timeline/timeline.spec.ts index 42e23a2bc49..2b5cda64835 100644 --- a/cypress/e2e/timeline/timeline.spec.ts +++ b/cypress/e2e/timeline/timeline.spec.ts @@ -197,10 +197,10 @@ describe("Timeline", () => { cy.get(".mx_GenericEventListSummary").within(() => { // Click "expand" link button - cy.findByRole("button", { name: "expand" }).click(); + cy.findByRole("button", { name: "Expand" }).click(); // Assert that the "expand" link button worked - cy.findByRole("button", { name: "collapse" }).should("exist"); + cy.findByRole("button", { name: "Collapse" }).should("exist"); }); cy.get(".mx_MainSplit").percySnapshotElement("Expanded GELS on IRC layout", { percyCSS }); @@ -224,10 +224,10 @@ describe("Timeline", () => { cy.get(".mx_GenericEventListSummary").within(() => { // Click "expand" link button - cy.findByRole("button", { name: "expand" }).click(); + cy.findByRole("button", { name: "Expand" }).click(); // Assert that the "expand" link button worked - cy.findByRole("button", { name: "collapse" }).should("exist"); + cy.findByRole("button", { name: "Collapse" }).should("exist"); }); cy.get(".mx_MainSplit").percySnapshotElement("Expanded GELS on modern layout", { percyCSS }); @@ -247,10 +247,10 @@ describe("Timeline", () => { cy.get(".mx_GenericEventListSummary").within(() => { // Click "expand" link button - cy.findByRole("button", { name: "expand" }).click(); + cy.findByRole("button", { name: "Expand" }).click(); // Assert that the "expand" link button worked - cy.findByRole("button", { name: "collapse" }).should("exist"); + cy.findByRole("button", { name: "Collapse" }).should("exist"); }); // Make sure spacer is not visible on bubble layout @@ -270,10 +270,10 @@ describe("Timeline", () => { .realHover() .findByRole("toolbar", { name: "Message Actions" }) .should("be.visible"); - cy.findByRole("button", { name: "collapse" }).click(); + cy.findByRole("button", { name: "Collapse" }).click(); // Assert that "collapse" link button worked - cy.findByRole("button", { name: "expand" }).should("exist"); + cy.findByRole("button", { name: "Expand" }).should("exist"); }); // Save snapshot of collapsed generic event list summary on bubble layout @@ -292,7 +292,7 @@ describe("Timeline", () => { }); // Click "expand" link button - cy.get(".mx_GenericEventListSummary").findByRole("button", { name: "expand" }).click(); + cy.get(".mx_GenericEventListSummary").findByRole("button", { name: "Expand" }).click(); // Check the event line has margin instead of inset property // cf. _EventTile.pcss @@ -388,7 +388,7 @@ describe("Timeline", () => { // 2. Alignment of expanded GELS and messages // Click "expand" link button - cy.get(".mx_GenericEventListSummary").findByRole("button", { name: "expand" }).click(); + cy.get(".mx_GenericEventListSummary").findByRole("button", { name: "Expand" }).click(); // Check inline start spacing of info line on expanded GELS cy.get(".mx_EventTile[data-layout=irc].mx_EventTile_info:first-of-type .mx_EventTile_line") // See: _EventTile.pcss diff --git a/res/css/views/elements/_GenericEventListSummary.pcss b/res/css/views/elements/_GenericEventListSummary.pcss index cfb62d0d37b..f05a15b44d2 100644 --- a/res/css/views/elements/_GenericEventListSummary.pcss +++ b/res/css/views/elements/_GenericEventListSummary.pcss @@ -31,6 +31,11 @@ limitations under the License. } } + .mx_GenericEventListSummary_toggle { + // We reuse a title cased translation + text-transform: lowercase; + } + &[data-layout="irc"], &[data-layout="group"] { .mx_GenericEventListSummary_toggle { diff --git a/src/AddThreepid.ts b/src/AddThreepid.ts index bc9958cb6df..37cd1e78aae 100644 --- a/src/AddThreepid.ts +++ b/src/AddThreepid.ts @@ -226,7 +226,7 @@ export default class AddThreepid { [SSOAuthEntry.PHASE_POSTAUTH]: { title: _t("Confirm adding email"), body: _t("Click the button below to confirm adding this email address."), - continueText: _t("Confirm"), + continueText: _t("action|confirm"), continueKind: "primary", }, }; @@ -329,7 +329,7 @@ export default class AddThreepid { [SSOAuthEntry.PHASE_POSTAUTH]: { title: _t("Confirm adding phone number"), body: _t("Click the button below to confirm adding this phone number."), - continueText: _t("Confirm"), + continueText: _t("action|confirm"), continueKind: "primary", }, }; diff --git a/src/AsyncWrapper.tsx b/src/AsyncWrapper.tsx index c0162ad95d0..901699a3597 100644 --- a/src/AsyncWrapper.tsx +++ b/src/AsyncWrapper.tsx @@ -80,7 +80,7 @@ export default class AsyncWrapper extends React.Component { {_t("Unable to load! Check your network connectivity and try again.")} diff --git a/src/IdentityAuthClient.tsx b/src/IdentityAuthClient.tsx index 78dc1ea0af8..a596156addf 100644 --- a/src/IdentityAuthClient.tsx +++ b/src/IdentityAuthClient.tsx @@ -151,7 +151,7 @@ export default class IdentityAuthClient {

{_t("Only continue if you trust the owner of the server.")}

), - button: _t("Trust"), + button: _t("action|trust"), }); const [confirmed] = await finished; if (confirmed) { diff --git a/src/MatrixClientPeg.ts b/src/MatrixClientPeg.ts index 5c750702113..517d264597e 100644 --- a/src/MatrixClientPeg.ts +++ b/src/MatrixClientPeg.ts @@ -212,7 +212,7 @@ class MatrixClientPegClass implements IMatrixClientPeg { description: _t( "This may be caused by having the app open in multiple tabs or due to clearing browser data.", ), - button: _t("Reload"), + button: _t("action|reload"), }); const [reload] = await finished; if (!reload) return; diff --git a/src/SecurityManager.ts b/src/SecurityManager.ts index 16cd300b7a5..45b3d220020 100644 --- a/src/SecurityManager.ts +++ b/src/SecurityManager.ts @@ -76,7 +76,7 @@ async function confirmToDismiss(): Promise { description: _t("Are you sure you want to cancel entering passphrase?"), danger: false, button: _t("Go Back"), - cancelButton: _t("Cancel"), + cancelButton: _t("action|cancel"), }).finished; return !sure; } diff --git a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx index 1ab58b715e1..bb7b78e5718 100644 --- a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx +++ b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx @@ -309,7 +309,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent
@@ -660,7 +660,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent @@ -718,7 +718,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent @@ -837,7 +837,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent diff --git a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx index eaa4d19de20..3a1d89a414e 100644 --- a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx +++ b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.tsx @@ -220,7 +220,7 @@ export default class ExportE2eKeysDialog extends React.Component disabled={disableForm} /> diff --git a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx index dbc3c6cff70..b65e104170d 100644 --- a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx +++ b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.tsx @@ -191,7 +191,7 @@ export default class ImportE2eKeysDialog extends React.Component disabled={!this.state.enableSubmit || disableForm} /> diff --git a/src/components/structures/MatrixChat.tsx b/src/components/structures/MatrixChat.tsx index 1c88b2bcd19..9d99f3e39f7 100644 --- a/src/components/structures/MatrixChat.tsx +++ b/src/components/structures/MatrixChat.tsx @@ -1597,7 +1597,7 @@ export default class MatrixChat extends React.PureComponent { ), button: _t("Review terms and conditions"), - cancelButton: _t("Dismiss"), + cancelButton: _t("action|dismiss"), onFinished: (confirmed) => { if (confirmed) { const wnd = window.open(consentUri, "_blank")!; @@ -2098,7 +2098,7 @@ export default class MatrixChat extends React.PureComponent {
- {_t("Logout")} + {_t("action|logout")}
diff --git a/src/components/structures/SpaceHierarchy.tsx b/src/components/structures/SpaceHierarchy.tsx index d2cb218f4a3..565a48ea7f8 100644 --- a/src/components/structures/SpaceHierarchy.tsx +++ b/src/components/structures/SpaceHierarchy.tsx @@ -163,13 +163,13 @@ const Tile: React.FC = ({ onFocus={onFocus} tabIndex={isActive ? 0 : -1} > - {_t("View")} + {_t("action|view")} ); } else { button = ( - {_t("Join")} + {_t("action|join")} ); } diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.tsx b/src/components/views/auth/InteractiveAuthEntryComponents.tsx index 7926de2593b..09c0cbd8f94 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.tsx +++ b/src/components/views/auth/InteractiveAuthEntryComponents.tsx @@ -396,7 +396,7 @@ export class TermsAuthEntry extends React.Component - {_t("Accept")} + {_t("action|accept")} ); } @@ -868,7 +868,7 @@ export class SSOAuthEntry extends React.Component - {_t("Cancel")} + {_t("action|cancel")} ); if (this.state.phase === SSOAuthEntry.PHASE_PREAUTH) { @@ -880,7 +880,7 @@ export class SSOAuthEntry extends React.Component - {this.props.continueText || _t("Confirm")} + {this.props.continueText || _t("action|confirm")} ); } diff --git a/src/components/views/auth/LoginWithQRFlow.tsx b/src/components/views/auth/LoginWithQRFlow.tsx index d970da637a9..19204f18231 100644 --- a/src/components/views/auth/LoginWithQRFlow.tsx +++ b/src/components/views/auth/LoginWithQRFlow.tsx @@ -54,7 +54,7 @@ export default class LoginWithQRFlow extends React.Component { private cancelButton = (): JSX.Element => ( - {_t("Cancel")} + {_t("action|cancel")} ); @@ -156,7 +156,7 @@ export default class LoginWithQRFlow extends React.Component { kind="primary_outline" onClick={this.handleClick(Click.Decline)} > - {_t("Cancel")} + {_t("action|cancel")} = ({ initialFocusedBeacon, roomId, matr onClick={onFinished} data-testid="beacon-view-dialog-fallback-close" > - {_t("Close")} + {_t("action|close")} )} diff --git a/src/components/views/beacon/OwnBeaconStatus.tsx b/src/components/views/beacon/OwnBeaconStatus.tsx index f4cec89a167..d41b881deef 100644 --- a/src/components/views/beacon/OwnBeaconStatus.tsx +++ b/src/components/views/beacon/OwnBeaconStatus.tsx @@ -65,7 +65,7 @@ const OwnBeaconStatus: React.FC> = ({ beacon, className="mx_OwnBeaconStatus_button mx_OwnBeaconStatus_destructiveButton" disabled={stoppingInProgress} > - {_t("Stop")} + {_t("action|stop")} )} {hasLocationPublishError && ( diff --git a/src/components/views/beacon/RoomCallBanner.tsx b/src/components/views/beacon/RoomCallBanner.tsx index 2f27b0cfdd5..27df9e22742 100644 --- a/src/components/views/beacon/RoomCallBanner.tsx +++ b/src/components/views/beacon/RoomCallBanner.tsx @@ -77,7 +77,7 @@ const RoomCallBannerInner: React.FC = ({ roomId, call }) => - {_t("Join")} + {_t("action|join")} ); diff --git a/src/components/views/beacon/RoomLiveShareWarning.tsx b/src/components/views/beacon/RoomLiveShareWarning.tsx index 1c14624964d..541e2329d0c 100644 --- a/src/components/views/beacon/RoomLiveShareWarning.tsx +++ b/src/components/views/beacon/RoomLiveShareWarning.tsx @@ -111,7 +111,7 @@ const RoomLiveShareWarningInner: React.FC = ({ l element="button" disabled={stoppingInProgress} > - {hasError ? _t("action|retry") : _t("Stop")} + {hasError ? _t("action|retry") : _t("action|stop")} {hasLocationPublishError && (
- + diff --git a/src/components/views/dialogs/ChangelogDialog.tsx b/src/components/views/dialogs/ChangelogDialog.tsx index f44a092e391..e907ecd5897 100644 --- a/src/components/views/dialogs/ChangelogDialog.tsx +++ b/src/components/views/dialogs/ChangelogDialog.tsx @@ -119,7 +119,7 @@ export default class ChangelogDialog extends React.Component { ); diff --git a/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx b/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx index fc2ab91c39c..e2743c37b03 100644 --- a/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx +++ b/src/components/views/dialogs/ConfirmWipeDeviceDialog.tsx @@ -52,7 +52,7 @@ export default class ConfirmWipeDeviceDialog extends React.Component { primaryButton={_t("Clear all data")} onPrimaryButtonClick={this.onConfirm} primaryButtonClass="danger" - cancelButton={_t("Cancel")} + cancelButton={_t("action|cancel")} onCancel={this.onDecline} /> diff --git a/src/components/views/dialogs/CreateSubspaceDialog.tsx b/src/components/views/dialogs/CreateSubspaceDialog.tsx index 815dc595d64..cd8f1e67b4d 100644 --- a/src/components/views/dialogs/CreateSubspaceDialog.tsx +++ b/src/components/views/dialogs/CreateSubspaceDialog.tsx @@ -188,7 +188,7 @@ const CreateSubspaceDialog: React.FC = ({ space, onAddExistingSpaceClick
onFinished(false)}> - {_t("Cancel")} + {_t("action|cancel")} {busy ? _t("Adding…") : _t("Add")} diff --git a/src/components/views/dialogs/ExportDialog.tsx b/src/components/views/dialogs/ExportDialog.tsx index b1bb05eb22b..e007f41e19e 100644 --- a/src/components/views/dialogs/ExportDialog.tsx +++ b/src/components/views/dialogs/ExportDialog.tsx @@ -312,7 +312,7 @@ const ExportDialog: React.FC = ({ room, onFinished }) => { >

{_t("Are you sure you want to stop exporting your data? If you do, you'll need to start over.")}

= ({ room, onFinished }) => {

{exportProgressText}

= ({ Modal.createDialog(InfoDialog, { title, description: _t("Feedback sent! Thanks, we appreciate it!"), - button: _t("Close"), + button: _t("action|close"), hasCloseButton: false, fixedWidth: false, }); diff --git a/src/components/views/dialogs/InteractiveAuthDialog.tsx b/src/components/views/dialogs/InteractiveAuthDialog.tsx index 4faa6746376..fbb57148939 100644 --- a/src/components/views/dialogs/InteractiveAuthDialog.tsx +++ b/src/components/views/dialogs/InteractiveAuthDialog.tsx @@ -105,7 +105,7 @@ export default class InteractiveAuthDialog extends React.Component extends React.Component{this.state.authError.message || this.state.authError.toString()}
- {_t("Dismiss")} + {_t("action|dismiss")} ); diff --git a/src/components/views/dialogs/InviteDialog.tsx b/src/components/views/dialogs/InviteDialog.tsx index cea25422a6a..f3d49378c57 100644 --- a/src/components/views/dialogs/InviteDialog.tsx +++ b/src/components/views/dialogs/InviteDialog.tsx @@ -1419,7 +1419,7 @@ export default class InviteDialog extends React.PureComponent - {_t("Cancel")} + {_t("action|cancel")}
= ({ room, selected = [], {inviteOnlyWarning}
onFinished()}> - {_t("Cancel")} + {_t("action|cancel")} onFinished(Array.from(newSelected))}> - {_t("Confirm")} + {_t("action|confirm")}
diff --git a/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx b/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx index 53c0d5bc3de..cc074f47d2a 100644 --- a/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx +++ b/src/components/views/dialogs/RoomUpgradeWarningDialog.tsx @@ -173,9 +173,9 @@ export default class RoomUpgradeWarningDialog extends React.Component ); diff --git a/src/components/views/dialogs/ScrollableBaseModal.tsx b/src/components/views/dialogs/ScrollableBaseModal.tsx index 5ffdfafb712..21da033da42 100644 --- a/src/components/views/dialogs/ScrollableBaseModal.tsx +++ b/src/components/views/dialogs/ScrollableBaseModal.tsx @@ -104,7 +104,7 @@ export default abstract class ScrollableBaseModal<
{this.renderContent()}
- {this.state.cancelLabel ?? _t("Cancel")} + {this.state.cancelLabel ?? _t("action|cancel")} { primaryButton={_t("Reset event store")} onPrimaryButtonClick={this.props.onFinished.bind(null, true)} primaryButtonClass="danger" - cancelButton={_t("Cancel")} + cancelButton={_t("action|cancel")} onCancel={this.props.onFinished.bind(null, false)} /> diff --git a/src/components/views/dialogs/SetEmailDialog.tsx b/src/components/views/dialogs/SetEmailDialog.tsx index 09be9323ff9..43ba5b9e8c2 100644 --- a/src/components/views/dialogs/SetEmailDialog.tsx +++ b/src/components/views/dialogs/SetEmailDialog.tsx @@ -179,7 +179,7 @@ export default class SetEmailDialog extends React.Component { value={_t("action|continue")} onClick={this.onSubmit} /> - +
); diff --git a/src/components/views/dialogs/TermsDialog.tsx b/src/components/views/dialogs/TermsDialog.tsx index 0ab525910d8..1ef4c667f23 100644 --- a/src/components/views/dialogs/TermsDialog.tsx +++ b/src/components/views/dialogs/TermsDialog.tsx @@ -205,7 +205,7 @@ export default class TermsDialog extends React.PureComponent{_t("Service")} {_t("Summary")} {_t("Document")} - {_t("Accept")} + {_t("action|accept")} {rows} diff --git a/src/components/views/dialogs/UploadConfirmDialog.tsx b/src/components/views/dialogs/UploadConfirmDialog.tsx index a2203f30cbb..a98752ef32a 100644 --- a/src/components/views/dialogs/UploadConfirmDialog.tsx +++ b/src/components/views/dialogs/UploadConfirmDialog.tsx @@ -123,7 +123,7 @@ export default class UploadConfirmDialog extends React.Component { = ({
{hasOpenedLogoutLink ? ( onFinished(true)}> - {_t("Close")} + {_t("action|close")} ) : ( <> onFinished(false)}> - {_t("Cancel")} + {_t("action|cancel")} - {_t("Upload")} + {_t("action|upload")}
diff --git a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx index 5e95e5ba72c..027dd7705d9 100644 --- a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx +++ b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.tsx @@ -52,7 +52,7 @@ export default class ConfirmDestroyCrossSigningDialog extends React.Component diff --git a/src/components/views/dialogs/security/CreateCrossSigningDialog.tsx b/src/components/views/dialogs/security/CreateCrossSigningDialog.tsx index 916efab8506..0a55fc6de4e 100644 --- a/src/components/views/dialogs/security/CreateCrossSigningDialog.tsx +++ b/src/components/views/dialogs/security/CreateCrossSigningDialog.tsx @@ -120,7 +120,7 @@ export default class CreateCrossSigningDialog extends React.PureComponent = ({ initialText = "", initialFilter = n onClick={listener} tabIndex={-1} > - {showViewButton ? _t("View") : _t("Join")} + {showViewButton ? _t("action|view") : _t("action|join")} } aria-labelledby={`mx_SpotlightDialog_button_result_${result.publicRoom.room_id}_name`} diff --git a/src/components/views/elements/DesktopCapturerSourcePicker.tsx b/src/components/views/elements/DesktopCapturerSourcePicker.tsx index 70ed050d6f9..83ece950347 100644 --- a/src/components/views/elements/DesktopCapturerSourcePicker.tsx +++ b/src/components/views/elements/DesktopCapturerSourcePicker.tsx @@ -166,7 +166,7 @@ export default class DesktopCapturerSourcePicker extends React.Component { className={this.props.cancelButtonClass} disabled={this.props.disabled} > - {this.props.cancelButton || _t("Cancel")} + {this.props.cancelButton || _t("action|cancel")} ); } diff --git a/src/components/views/elements/GenericEventListSummary.tsx b/src/components/views/elements/GenericEventListSummary.tsx index f9668c2ca46..a93d1c238ab 100644 --- a/src/components/views/elements/GenericEventListSummary.tsx +++ b/src/components/views/elements/GenericEventListSummary.tsx @@ -130,7 +130,7 @@ const GenericEventListSummary: React.FC = ({ onClick={toggleExpanded} aria-expanded={expanded} > - {expanded ? _t("collapse") : _t("expand")} + {expanded ? _t("action|collapse") : _t("action|expand")} {body} diff --git a/src/components/views/elements/ImageView.tsx b/src/components/views/elements/ImageView.tsx index 81c6d61e56c..b321af996fd 100644 --- a/src/components/views/elements/ImageView.tsx +++ b/src/components/views/elements/ImageView.tsx @@ -571,7 +571,7 @@ export default class ImageView extends React.Component { {contextMenuButton} {this.renderContextMenu()} diff --git a/src/components/views/elements/PollCreateDialog.tsx b/src/components/views/elements/PollCreateDialog.tsx index 16c8a69b586..1de444d42a0 100644 --- a/src/components/views/elements/PollCreateDialog.tsx +++ b/src/components/views/elements/PollCreateDialog.tsx @@ -177,7 +177,7 @@ export default class PollCreateDialog extends ScrollableBaseModal { if (!tryAgain) { this.cancel(); diff --git a/src/components/views/elements/ServerPicker.tsx b/src/components/views/elements/ServerPicker.tsx index d5fabc2eaee..d5bc7d39c1d 100644 --- a/src/components/views/elements/ServerPicker.tsx +++ b/src/components/views/elements/ServerPicker.tsx @@ -50,7 +50,7 @@ const onHelpClick = (): void => { "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.", { brand }, ), - button: _t("Dismiss"), + button: _t("action|dismiss"), hasCloseButton: false, fixedWidth: false, }, diff --git a/src/components/views/elements/UseCaseSelection.tsx b/src/components/views/elements/UseCaseSelection.tsx index 2f7f171fad4..d8679ef300f 100644 --- a/src/components/views/elements/UseCaseSelection.tsx +++ b/src/components/views/elements/UseCaseSelection.tsx @@ -78,7 +78,7 @@ export function UseCaseSelection({ onFinished }: Props): JSX.Element {
setSelected(UseCase.Skip)}> - {_t("Skip")} + {_t("action|skip")}
diff --git a/src/components/views/location/ShareDialogButtons.tsx b/src/components/views/location/ShareDialogButtons.tsx index e2826602152..c502bf5c3ee 100644 --- a/src/components/views/location/ShareDialogButtons.tsx +++ b/src/components/views/location/ShareDialogButtons.tsx @@ -44,7 +44,7 @@ const ShareDialogButtons: React.FC = ({ onBack, onCancel, displayBack }) diff --git a/src/components/views/location/shareLocation.ts b/src/components/views/location/shareLocation.ts index 08fd31ac10d..eeda324477b 100644 --- a/src/components/views/location/shareLocation.ts +++ b/src/components/views/location/shareLocation.ts @@ -87,7 +87,7 @@ const getDefaultErrorParams = ( brand: SdkConfig.get().brand, }), button: _t("Try again"), - cancelButton: _t("Cancel"), + cancelButton: _t("action|cancel"), onFinished: (tryAgain: boolean) => { if (tryAgain) { openMenu(); diff --git a/src/components/views/messages/CallEvent.tsx b/src/components/views/messages/CallEvent.tsx index 01dc2afbaeb..19d6af1640f 100644 --- a/src/components/views/messages/CallEvent.tsx +++ b/src/components/views/messages/CallEvent.tsx @@ -129,9 +129,9 @@ const ActiveLoadedCallEvent = forwardRef(({ mxE const [buttonText, buttonKind, onButtonClick] = useMemo(() => { switch (connectionState) { case ConnectionState.Disconnected: - return [_t("Join"), "primary", connect]; + return [_t("action|join"), "primary", connect]; case ConnectionState.Connecting: - return [_t("Join"), "primary", null]; + return [_t("action|join"), "primary", null]; case ConnectionState.Connected: return [_t("action|leave"), "danger", disconnect]; case ConnectionState.Disconnecting: @@ -189,7 +189,7 @@ export const CallEvent = forwardRef(({ mxEvent }, ref) => { mxEvent={mxEvent} call={null} participatingMembers={[]} - buttonText={_t("Join")} + buttonText={_t("action|join")} buttonKind="primary" onButtonClick={null} /> diff --git a/src/components/views/messages/LegacyCallEvent.tsx b/src/components/views/messages/LegacyCallEvent.tsx index 555745b20c1..a79a2701b33 100644 --- a/src/components/views/messages/LegacyCallEvent.tsx +++ b/src/components/views/messages/LegacyCallEvent.tsx @@ -144,7 +144,7 @@ export default class LegacyCallEvent extends React.PureComponent onClick={this.props.callEventGrouper.answerCall} kind="primary" > - {_t("Accept")} + {_t("action|accept")} {this.props.timestamp} diff --git a/src/components/views/messages/MKeyVerificationRequest.tsx b/src/components/views/messages/MKeyVerificationRequest.tsx index 7903c0c57a9..3bf84f8f282 100644 --- a/src/components/views/messages/MKeyVerificationRequest.tsx +++ b/src/components/views/messages/MKeyVerificationRequest.tsx @@ -173,7 +173,7 @@ export default class MKeyVerificationRequest extends React.Component { {_t("action|decline")} - {_t("Accept")} + {_t("action|accept")} ); diff --git a/src/components/views/messages/MessageActionBar.tsx b/src/components/views/messages/MessageActionBar.tsx index 5f1e7f27dce..9599da399b4 100644 --- a/src/components/views/messages/MessageActionBar.tsx +++ b/src/components/views/messages/MessageActionBar.tsx @@ -404,7 +404,7 @@ export default class MessageActionBar extends React.PureComponent = forwardRef( data-testid="base-card-close-button" className="mx_BaseCard_close" onClick={onClose} - title={closeLabel || _t("Close")} + title={closeLabel || _t("action|close")} /> ); } diff --git a/src/components/views/right_panel/RoomSummaryCard.tsx b/src/components/views/right_panel/RoomSummaryCard.tsx index f47a2bdffe3..c8f42c9d150 100644 --- a/src/components/views/right_panel/RoomSummaryCard.tsx +++ b/src/components/views/right_panel/RoomSummaryCard.tsx @@ -162,7 +162,7 @@ const AppRow: React.FC = ({ app, room }) => { WidgetLayoutStore.instance.moveToContainer(room, app, Container.Center); }; - const maximiseTitle = isMaximised ? _t("Close") : _t("Maximise"); + const maximiseTitle = isMaximised ? _t("action|close") : _t("Maximise"); let openTitle = ""; if (isPinned) { diff --git a/src/components/views/right_panel/UserInfo.tsx b/src/components/views/right_panel/UserInfo.tsx index bee914b5148..ed2dacc32d7 100644 --- a/src/components/views/right_panel/UserInfo.tsx +++ b/src/components/views/right_panel/UserInfo.tsx @@ -1483,7 +1483,7 @@ const BasicUserInfo: React.FC<{ } }} > - {_t("Verify")} + {_t("action|verify")} ); @@ -1716,7 +1716,7 @@ const UserInfo: React.FC = ({ user, room, onClose, phase = RightPanelPha if (phase === RightPanelPhases.EncryptionPanel) { const verificationRequest = (props as React.ComponentProps).verificationRequest; if (verificationRequest && verificationRequest.pending) { - closeLabel = _t("Cancel"); + closeLabel = _t("action|cancel"); } } diff --git a/src/components/views/room_settings/RoomProfileSettings.tsx b/src/components/views/room_settings/RoomProfileSettings.tsx index e0e9aeb5651..d0af87bbb49 100644 --- a/src/components/views/room_settings/RoomProfileSettings.tsx +++ b/src/components/views/room_settings/RoomProfileSettings.tsx @@ -226,7 +226,7 @@ export default class RoomProfileSettings extends React.Component profileSettingsButtons = (
- {_t("Cancel")} + {_t("action|cancel")} {_t("action|save")} diff --git a/src/components/views/rooms/EditMessageComposer.tsx b/src/components/views/rooms/EditMessageComposer.tsx index fd9151ce1c5..015a9f8209c 100644 --- a/src/components/views/rooms/EditMessageComposer.tsx +++ b/src/components/views/rooms/EditMessageComposer.tsx @@ -487,7 +487,7 @@ class EditMessageComposer extends React.Component
- {_t("Cancel")} + {_t("action|cancel")} {_t("action|save")} diff --git a/src/components/views/rooms/LinkPreviewGroup.tsx b/src/components/views/rooms/LinkPreviewGroup.tsx index a87e91fb521..bc031a8c629 100644 --- a/src/components/views/rooms/LinkPreviewGroup.tsx +++ b/src/components/views/rooms/LinkPreviewGroup.tsx @@ -58,7 +58,7 @@ const LinkPreviewGroup: React.FC = ({ links, mxEvent, onCancelClick, onH toggleButton = ( {expanded - ? _t("Collapse") + ? _t("action|collapse") : _t("Show %(count)s other previews", { count: previews.length - showPreviews.length })} ); diff --git a/src/components/views/rooms/RoomPreviewBar.tsx b/src/components/views/rooms/RoomPreviewBar.tsx index 2db7f35b04e..8aa2eca24d3 100644 --- a/src/components/views/rooms/RoomPreviewBar.tsx +++ b/src/components/views/rooms/RoomPreviewBar.tsx @@ -349,7 +349,7 @@ export default class RoomPreviewBar extends React.Component { } if (opts.canJoin) { title = _t("Join the room to participate"); - primaryActionLabel = _t("Join"); + primaryActionLabel = _t("action|join"); primaryActionHandler = () => { ModuleRunner.instance.invoke(RoomViewLifecycle.JoinFromRoomPreview, this.props.roomId); }; @@ -524,7 +524,7 @@ export default class RoomPreviewBar extends React.Component { } else { title = _t("Do you want to join %(roomName)s?", { roomName }); subTitle = [avatar, _t(" invited you", {}, { userName: () => inviterElement })]; - primaryActionLabel = _t("Accept"); + primaryActionLabel = _t("action|accept"); } const myUserId = MatrixClientPeg.safeGet().getSafeUserId(); @@ -541,7 +541,7 @@ export default class RoomPreviewBar extends React.Component { } primaryActionHandler = this.props.onJoinClick; - secondaryActionLabel = _t("Reject"); + secondaryActionLabel = _t("action|reject"); secondaryActionHandler = this.props.onRejectClick; if (this.props.onRejectAndIgnoreClick) { diff --git a/src/components/views/rooms/RoomPreviewCard.tsx b/src/components/views/rooms/RoomPreviewCard.tsx index 0d4311e0cc3..cbb556859c1 100644 --- a/src/components/views/rooms/RoomPreviewCard.tsx +++ b/src/components/views/rooms/RoomPreviewCard.tsx @@ -121,7 +121,7 @@ const RoomPreviewCard: FC = ({ room, onJoinButtonClicked, onRejectButton onRejectButtonClicked(); }} > - {_t("Reject")} + {_t("action|reject")} = ({ room, onJoinButtonClicked, onRejectButton onJoinButtonClicked(); }} > - {_t("Accept")} + {_t("action|accept")} ); @@ -147,7 +147,7 @@ const RoomPreviewCard: FC = ({ room, onJoinButtonClicked, onRejectButton }} disabled={cannotJoin} > - {_t("Join")} + {_t("action|join")} ); } diff --git a/src/components/views/rooms/SearchBar.tsx b/src/components/views/rooms/SearchBar.tsx index d171ad06282..ca0dee5dfab 100644 --- a/src/components/views/rooms/SearchBar.tsx +++ b/src/components/views/rooms/SearchBar.tsx @@ -135,7 +135,7 @@ export default class SearchBar extends React.Component {
diff --git a/src/components/views/rooms/ThirdPartyMemberInfo.tsx b/src/components/views/rooms/ThirdPartyMemberInfo.tsx index b8682e27515..1b2b9386b40 100644 --- a/src/components/views/rooms/ThirdPartyMemberInfo.tsx +++ b/src/components/views/rooms/ThirdPartyMemberInfo.tsx @@ -145,7 +145,7 @@ export default class ThirdPartyMemberInfo extends React.Component {scopeHeader}
- +

{this.state.displayName}

diff --git a/src/components/views/rooms/VoiceRecordComposerTile.tsx b/src/components/views/rooms/VoiceRecordComposerTile.tsx index 78043dc6a76..067cd3f6d4e 100644 --- a/src/components/views/rooms/VoiceRecordComposerTile.tsx +++ b/src/components/views/rooms/VoiceRecordComposerTile.tsx @@ -294,7 +294,7 @@ export default class VoiceRecordComposerTile extends React.PureComponent ); diff --git a/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx b/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx index 17fffbe34b4..d79094e565f 100644 --- a/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx +++ b/src/components/views/rooms/wysiwyg_composer/components/EditionButtons.tsx @@ -33,7 +33,7 @@ export function EditionButtons({ return (
- {_t("Cancel")} + {_t("action|cancel")} {_t("action|save")} diff --git a/src/components/views/settings/AddPrivilegedUsers.tsx b/src/components/views/settings/AddPrivilegedUsers.tsx index 90e212aa88f..8c71a8bd037 100644 --- a/src/components/views/settings/AddPrivilegedUsers.tsx +++ b/src/components/views/settings/AddPrivilegedUsers.tsx @@ -98,7 +98,7 @@ export const AddPrivilegedUsers: React.FC = ({ room, de onClick={null} data-testid="add-privileged-users-submit-button" > - {_t("Apply")} + {_t("action|apply")} diff --git a/src/components/views/settings/AvatarSetting.tsx b/src/components/views/settings/AvatarSetting.tsx index a64b33b4a38..4aaadc2acff 100644 --- a/src/components/views/settings/AvatarSetting.tsx +++ b/src/components/views/settings/AvatarSetting.tsx @@ -94,7 +94,7 @@ const AvatarSetting: React.FC = ({ avatarUrl, avatarAltText, avatarName, {avatarElement} ); diff --git a/src/components/views/settings/account/PhoneNumbers.tsx b/src/components/views/settings/account/PhoneNumbers.tsx index d883d2a3471..4b027e171df 100644 --- a/src/components/views/settings/account/PhoneNumbers.tsx +++ b/src/components/views/settings/account/PhoneNumbers.tsx @@ -109,7 +109,7 @@ export class ExistingPhoneNumber extends React.Component - {_t("Cancel")} + {_t("action|cancel")}
); diff --git a/src/components/views/settings/devices/DeviceDetailHeading.tsx b/src/components/views/settings/devices/DeviceDetailHeading.tsx index 5879abfd2ba..8a28c85fd42 100644 --- a/src/components/views/settings/devices/DeviceDetailHeading.tsx +++ b/src/components/views/settings/devices/DeviceDetailHeading.tsx @@ -117,7 +117,7 @@ const DeviceNameEditor: React.FC void }> = ({ devic data-testid="device-rename-cancel-cta" disabled={isLoading} > - {_t("Cancel")} + {_t("action|cancel")} {isLoading && }
diff --git a/src/components/views/settings/devices/FilteredDeviceList.tsx b/src/components/views/settings/devices/FilteredDeviceList.tsx index 805e62a54a6..2b74d88613e 100644 --- a/src/components/views/settings/devices/FilteredDeviceList.tsx +++ b/src/components/views/settings/devices/FilteredDeviceList.tsx @@ -344,7 +344,7 @@ export const FilteredDeviceList = forwardRef( onClick={() => setSelectedDeviceIds([])} className="mx_FilteredDeviceList_headerButton" > - {_t("Cancel")} + {_t("action|cancel")}
) : ( diff --git a/src/components/views/settings/discovery/EmailAddresses.tsx b/src/components/views/settings/discovery/EmailAddresses.tsx index 3f3dd106aad..f8b5ca83b67 100644 --- a/src/components/views/settings/discovery/EmailAddresses.tsx +++ b/src/components/views/settings/discovery/EmailAddresses.tsx @@ -208,7 +208,7 @@ export class EmailAddress extends React.Component - {_t("Share")} + {_t("action|share")} ); } diff --git a/src/components/views/settings/discovery/PhoneNumbers.tsx b/src/components/views/settings/discovery/PhoneNumbers.tsx index d1002111d09..3a67061cbf2 100644 --- a/src/components/views/settings/discovery/PhoneNumbers.tsx +++ b/src/components/views/settings/discovery/PhoneNumbers.tsx @@ -216,7 +216,7 @@ export class PhoneNumber extends React.Component - {_t("Share")} + {_t("action|share")} ); } diff --git a/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx b/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx index 42099681fc0..7ac0bc64b1c 100644 --- a/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx +++ b/src/components/views/settings/tabs/room/NotificationSettingsTab.tsx @@ -269,7 +269,7 @@ export default class NotificationsSettingsTab extends React.Component - {_t("Reset")} + {_t("action|reset")}
diff --git a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx index 53fb1da10d7..2567cef4d45 100644 --- a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.tsx @@ -166,7 +166,7 @@ export default class MjolnirUserSettingsTab extends React.Component<{}, IState> {renderRules(list.userRules)}
), - button: _t("Close"), + button: _t("action|close"), hasCancelButton: false, }); } diff --git a/src/components/views/settings/tabs/user/SessionManagerTab.tsx b/src/components/views/settings/tabs/user/SessionManagerTab.tsx index 56b852db8d6..5315b4c994b 100644 --- a/src/components/views/settings/tabs/user/SessionManagerTab.tsx +++ b/src/components/views/settings/tabs/user/SessionManagerTab.tsx @@ -54,7 +54,7 @@ const confirmSignOut = async (sessionsToSignOutCount: number): Promise

), - cancelButton: _t("Cancel"), + cancelButton: _t("action|cancel"), button: _t("Sign out"), }); const [confirmed] = await finished; diff --git a/src/components/views/spaces/SpaceBasicSettings.tsx b/src/components/views/spaces/SpaceBasicSettings.tsx index 4b51cfa7a88..be38dcc065d 100644 --- a/src/components/views/spaces/SpaceBasicSettings.tsx +++ b/src/components/views/spaces/SpaceBasicSettings.tsx @@ -69,7 +69,7 @@ export const SpaceAvatar: React.FC - {_t("Delete")} + {_t("action|delete")} ); @@ -86,7 +86,7 @@ export const SpaceAvatar: React.FC - {_t("Upload")} + {_t("action|upload")} ); diff --git a/src/components/views/spaces/SpacePanel.tsx b/src/components/views/spaces/SpacePanel.tsx index 308b69c6b53..575f840a352 100644 --- a/src/components/views/spaces/SpacePanel.tsx +++ b/src/components/views/spaces/SpacePanel.tsx @@ -240,7 +240,7 @@ const CreateSpaceButton: React.FC { setPanelCollapsed(!isPanelCollapsed)} - title={isPanelCollapsed ? _t("Expand") : _t("Collapse")} + title={isPanelCollapsed ? _t("action|expand") : _t("action|collapse")} tooltip={
- {isPanelCollapsed ? _t("Expand") : _t("Collapse")} + {isPanelCollapsed ? _t("action|expand") : _t("action|collapse")}
{IS_MAC diff --git a/src/components/views/spaces/SpaceSettingsGeneralTab.tsx b/src/components/views/spaces/SpaceSettingsGeneralTab.tsx index 94c55495bc6..36c7e6024af 100644 --- a/src/components/views/spaces/SpaceSettingsGeneralTab.tsx +++ b/src/components/views/spaces/SpaceSettingsGeneralTab.tsx @@ -119,7 +119,7 @@ const SpaceSettingsGeneralTab: React.FC = ({ matrixClient: cli, space }) disabled={busy || !(avatarChanged || nameChanged || topicChanged)} kind="link" > - {_t("Cancel")} + {_t("action|cancel")} {busy ? _t("Saving…") : _t("Save Changes")} diff --git a/src/components/views/spaces/SpaceTreeLevel.tsx b/src/components/views/spaces/SpaceTreeLevel.tsx index 9bf759b08a5..58bbb656c77 100644 --- a/src/components/views/spaces/SpaceTreeLevel.tsx +++ b/src/components/views/spaces/SpaceTreeLevel.tsx @@ -348,7 +348,7 @@ export class SpaceItem extends React.PureComponent { className="mx_SpaceButton_toggleCollapse" onClick={this.toggleCollapse} tabIndex={-1} - aria-label={collapsed ? _t("Expand") : _t("Collapse")} + aria-label={collapsed ? _t("action|expand") : _t("action|collapse")} /> ) : null; diff --git a/src/components/views/terms/InlineTermsAgreement.tsx b/src/components/views/terms/InlineTermsAgreement.tsx index a737358bf0f..6460ba44489 100644 --- a/src/components/views/terms/InlineTermsAgreement.tsx +++ b/src/components/views/terms/InlineTermsAgreement.tsx @@ -105,7 +105,7 @@ export default class InlineTermsAgreement extends React.Component{introText}
this.togglePolicy(i)} checked={policy.checked}> - {_t("Accept")} + {_t("action|accept")}
, diff --git a/src/components/views/verification/VerificationShowSas.tsx b/src/components/views/verification/VerificationShowSas.tsx index fd24acef9fc..7abdabb08a1 100644 --- a/src/components/views/verification/VerificationShowSas.tsx +++ b/src/components/views/verification/VerificationShowSas.tsx @@ -146,7 +146,7 @@ export default class VerificationShowSas extends React.Component
{_t("Unable to find a supported verification method.")} - {_t("Cancel")} + {_t("action|cancel")}
); diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index aae17f865fc..167d8cbd169 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -284,7 +284,7 @@ export const Lobby: FC = ({ room, joinCallButtonDisabledTooltip, con kind="primary" disabled={connecting || joinCallButtonDisabledTooltip !== undefined} onClick={onConnectClick} - label={_t("Join")} + label={_t("action|join")} tooltip={connecting ? _t("Connecting") : joinCallButtonDisabledTooltip} alignment={Alignment.Bottom} /> diff --git a/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx b/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx index aedb8e2d599..71996152231 100644 --- a/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx +++ b/src/components/views/voip/LegacyCallView/LegacyCallViewHeader.tsx @@ -94,7 +94,7 @@ const LegacyCallViewHeader: React.FC = ({ return (
- {_t("Call")} + {_t("action|call")}
); diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index d7213b7b7d7..b073192ae48 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -1,9 +1,6 @@ { "Something went wrong!": "هناك خطأ ما!", - "Cancel": "إلغاء", - "Close": "إغلاق", "Create new room": "إنشاء غرفة جديدة", - "Dismiss": "أهمِل", "Failed to change password. Is your password correct?": "فشلت عملية تعديل الكلمة السرية. هل كلمتك السرية صحيحة ؟", "Warning": "تنبيه", "Send": "إرسال", @@ -13,7 +10,6 @@ "Unavailable": "غير متوفر", "All Rooms": "كل الغُرف", "All messages": "كل الرسائل", - "Update": "تحديث", "What's New": "آخِر المُستجدّات", "Toolbox": "علبة الأدوات", "Collecting logs": "تجميع السجلات", @@ -34,7 +30,6 @@ "Single Sign On": "الولوج الموحّد", "Confirm adding email": "أكّد إضافة البريد الإلكتروني", "Click the button below to confirm adding this email address.": "انقر الزر بالأسفل لتأكيد إضافة عنوان البريد الإلكتروني هذا.", - "Confirm": "أكّد", "Add Email Address": "أضِف بريدًا إلكترونيًا", "Confirm adding this phone number by using Single Sign On to prove your identity.": "أكّد إضافتك لرقم الهاتف هذا باستعمال الولوج الموحّد لإثبات هويّتك.", "Confirm adding phone number": "أكّد إضافة رقم الهاتف", @@ -85,7 +80,6 @@ "Identity server has no terms of service": "ليس لخادوم الهويّة أيّ شروط خدمة", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "يطلب هذا الإجراء الوصول إلى خادوم الهويّات المبدئيللتثبّت من عنوان البريد الإلكتروني أو رقم الهاتف، ولكن ليس للخادوم أيّ شروط خدمة.", "Only continue if you trust the owner of the server.": "لا تُواصل لو لم تكن تثق بمالك الخادوم.", - "Trust": "أثق به", "%(name)s is requesting verification": "يطلب %(name)s التثبّت", "%(brand)s does not have permission to send you notifications - please check your browser settings": "لا يملك %(brand)s التصريح لإرسال التنبيهات. من فضلك تحقّق من إعدادات المتصفح", "%(brand)s was not given permission to send notifications - please try again": "لم تقدّم التصريح اللازم كي يُرسل %(brand)s التنبيهات. من فضلك أعِد المحاولة", @@ -255,7 +249,6 @@ "expand": "توسيع", "collapse": "تضييق", "Please create a new issue on GitHub so that we can investigate this bug.": "الرجاء إنشاء إشكال جديد على GitHub حتى نتمكن من التحقيق في هذا الخطأ.", - "Join": "انضم", "This version of %(brand)s does not support searching encrypted messages": "لا يدعم هذا الإصدار من %(brand)s البحث في الرسائل المشفرة", "This version of %(brand)s does not support viewing some encrypted files": "لا يدعم هذا الإصدار من %(brand)s s عرض بعض الملفات المشفرة", "Use the Desktop app to search encrypted messages": "استخدم تطبيق سطح المكتب للبحث في الرسائل المشفرة", @@ -425,7 +418,6 @@ "%(roomName)s can't be previewed. Do you want to join it?": "لا يمكن معاينة %(roomName)s. هل تريد الانضمام إليها؟", "You're previewing %(roomName)s. Want to join it?": "أنت تعاين %(roomName)s. تريد الانضمام إليها؟", "Reject & Ignore user": "رفض الدعوة وتجاهل الداعي", - "Reject": "رفض", " invited you": " دعاك", "Do you want to join %(roomName)s?": "هل تريد أن تنضم إلى %(roomName)s؟", "Start chatting": "ابدأ المحادثة", @@ -738,7 +730,6 @@ "not found": "لم يعثر عليه", "in memory": "في الذاكرة", "Cross-signing public keys:": "المفاتيح العامة للتوقيع المتبادل:", - "Reset": "إعادة تعيين", "Set up": "تأسيس", "Cross-signing is not set up.": "لم يتم إعداد التوقيع المتبادل.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "يحتوي حسابك على هوية توقيع متبادل في وحدة تخزين سرية ، لكن هذا الاتصال لم يثق به بعد.", @@ -757,7 +748,6 @@ "Show more": "أظهر أكثر", "Show less": "أظهر أقل", "This bridge is managed by .": "هذا الجسر يديره .", - "Upload": "رفع", "Accept to continue:": "قبول للمتابعة:", "Your server isn't responding to some requests.": "خادمك لا يتجاوب مع بعض الطلبات.", "Dog": "كلب", @@ -777,7 +767,6 @@ "You've successfully verified this user.": "لقد نجحت في التحقق من هذا المستخدم.", "Verified!": "تم التحقق!", "The other party cancelled the verification.": "ألغى الطرف الآخر التحقق.", - "Accept": "قبول", "Unknown caller": "متصل غير معروف", "This is your list of users/servers you have blocked - don't leave the room!": "هذه قائمتك للمستخدمين / الخوادم التي حظرت - لا تغادر الغرفة!", "My Ban List": "قائمة الحظر", @@ -876,7 +865,6 @@ "Revoke": "إبطال", "Unable to revoke sharing for phone number": "تعذر إبطال مشاركة رقم الهاتف", "Discovery options will appear once you have added an email above.": "ستظهر خيارات الاكتشاف بمجرد إضافة بريد إلكتروني أعلاه.", - "Share": "مشاركة", "Complete": "تام", "Verify the link in your inbox": "تحقق من الرابط في بريدك الوارد", "Unable to verify email address.": "تعذر التحقق من عنوان البريد الإلكتروني.", @@ -983,8 +971,6 @@ "Server or user ID to ignore": "الخادم أو معرف المستخدم المطلوب تجاهله", "Personal ban list": "قائمة الحظر الشخصية", "Safeguard against losing access to encrypted messages & data": "حماية ضد فقدان الوصول إلى الرسائل والبيانات المشفرة", - "Verify": "تحقق", - "Upgrade": "ترقية", "Verify this session": "تحقق من هذا الاتصال", "Encryption upgrade available": "ترقية التشفير متاحة", "Set up Secure Backup": "أعد النسخ الاحتياطي الآمن", @@ -1325,7 +1311,6 @@ "decline": "رفض", "done": "تم", "edit": "تعديل", - "enable": "ممكن", "invite": "دعوة", "invites_list": "دعوات", "leave_room": "اترك الغرفة", @@ -1339,6 +1324,20 @@ "start": "بداية", "start_chat": "ابدأ محادثة", "view_source": "انظر المصدر", - "yes": "نعم" + "yes": "نعم", + "reject": "رفض", + "confirm": "أكّد", + "dismiss": "أهمِل", + "trust": "أثق به", + "cancel": "إلغاء", + "join": "انضم", + "close": "إغلاق", + "accept": "قبول", + "upgrade": "ترقية", + "verify": "تحقق", + "update": "تحديث", + "upload": "رفع", + "reset": "إعادة تعيين", + "share": "مشاركة" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index 90d2377c26d..0255cba663a 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -69,7 +69,6 @@ "%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s": "%(userId)s üçün %(fromPowerLevel)s-dan %(toPowerLevel)s-lə", "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s hüquqların səviyyələrini dəyişdirdi %(powerLevelDiffText)s.", "Always show message timestamps": "Həmişə mesajların göndərilməsi vaxtını göstərmək", - "Accept": "Qəbul etmək", "Incorrect verification code": "Təsdiq etmənin səhv kodu", "Phone": "Telefon", "New passwords don't match": "Yeni şifrlər uyğun gəlmir", @@ -115,7 +114,6 @@ "Who can read history?": "Kim tarixi oxuya bilər?", "Permissions": "Girişin hüquqları", "Advanced": "Təfərrüatlar", - "Close": "Bağlamaq", "Sunday": "Bazar", "Friday": "Cümə", "Today": "Bu gün", @@ -124,7 +122,6 @@ "Sign in with": "Seçmək", "Register": "Qeydiyyatdan keçmək", "What's New": "Nə dəyişdi", - "Update": "Yeniləmək", "Create new room": "Otağı yaratmaq", "Home": "Başlanğıc", "%(items)s and %(lastItem)s": "%(items)s və %(lastItem)s", @@ -141,7 +138,6 @@ "Name": "Ad", "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.", - "Logout": "Çıxmaq", "Notifications": "Xəbərdarlıqlar", "Connectivity to the server has been lost.": "Serverlə əlaqə itirilmişdir.", "Sent messages will be stored until your connection has returned.": "Hələ ki serverlə əlaqə bərpa olmayacaq, göndərilmiş mesajlar saxlanacaq.", @@ -176,7 +172,6 @@ "AM": "12:00", "Unnamed Room": "Adı açıqlanmayan otaq", "Unable to load! Check your network connectivity and try again.": "Yükləmək olmur! Şəbəkə bağlantınızı yoxlayın və yenidən cəhd edin.", - "Dismiss": "Nəzərə almayın", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s-un sizə bildiriş göndərmək icazəsi yoxdur - brauzerinizin parametrlərini yoxlayın", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s bildiriş göndərmək üçün icazə verilmədi - lütfən yenidən cəhd edin", "This email address was not found": "Bu e-poçt ünvanı tapılmadı", @@ -211,7 +206,6 @@ "Identity server has no terms of service": "Şəxsiyyət serverinin xidmət şərtləri yoxdur", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Bu hərəkət e-poçt ünvanı və ya telefon nömrəsini təsdiqləmək üçün standart şəxsiyyət serverinə girməyi tələb edir, lakin serverdə heç bir xidmət şəraiti yoxdur.", "Only continue if you trust the owner of the server.": "Yalnız server sahibinə etibar etsəniz davam edin.", - "Trust": "Etibar", "Custom (%(level)s)": "Xüsusi (%(level)s)", "Room %(roomId)s not visible": "Otaq %(roomId)s görünmür", "Messages": "Mesajlar", @@ -254,6 +248,12 @@ "leave_room": "Otağı tərk etmək", "ok": "OK", "remove": "Silmək", - "start_chat": "Çata başlamaq" + "start_chat": "Çata başlamaq", + "dismiss": "Nəzərə almayın", + "trust": "Etibar", + "close": "Bağlamaq", + "accept": "Qəbul etmək", + "update": "Yeniləmək", + "logout": "Çıxmaq" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/be.json b/src/i18n/strings/be.json index 177fc579c20..6ad9e7e1f21 100644 --- a/src/i18n/strings/be.json +++ b/src/i18n/strings/be.json @@ -1,12 +1,9 @@ { - "Reject": "Адхіліць", "Failed to forget room %(errCode)s": "Не атрымалася забыць пакой %(errCode)s", "All messages": "Усе паведамленні", "Notification targets": "Мэты апавяшчэння", "Favourite": "Улюбёнае", - "Dismiss": "Aдхіліць", "Failed to add tag %(tagName)s to room": "Не атрымалася дадаць %(tagName)s ў пакоі", - "Close": "Зачыніць", "Notifications": "Апавяшчэнні", "Low Priority": "Нізкі прыярытэт", "Noisy": "Шумна", @@ -25,6 +22,9 @@ "action": { "leave": "Пакінуць", "quote": "Цытата", - "remove": "Выдалiць" + "remove": "Выдалiць", + "reject": "Адхіліць", + "dismiss": "Aдхіліць", + "close": "Зачыніць" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 15c64295e2d..7c2a3a68dbb 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -1,11 +1,8 @@ { "Operation failed": "Операцията е неуспешна", "Search": "Търсене", - "Dismiss": "Затвори", "powered by Matrix": "базирано на Matrix", "Warning": "Предупреждение", - "Close": "Затвори", - "Cancel": "Отказ", "Send": "Изпрати", "Failed to change password. Is your password correct?": "Неуспешна промяна. Правилно ли сте въвели Вашата парола?", "Sun": "нд.", @@ -108,7 +105,6 @@ "Enable inline URL previews by default": "Включване по подразбиране на URL прегледи", "Enable URL previews for this room (only affects you)": "Включване на URL прегледи за тази стая (засяга само Вас)", "Enable URL previews by default for participants in this room": "Включване по подразбиране на URL прегледи за участници в тази стая", - "Accept": "Приеми", "Incorrect verification code": "Неправилен код за потвърждение", "Submit": "Изпрати", "Phone": "Телефон", @@ -334,7 +330,6 @@ "Tried to load a specific point in this room's timeline, but was unable to find it.": "Беше направен опит да се зареди конкретна точка в хронологията на тази стая, но не я намери.", "Unable to remove contact information": "Неуспешно премахване на информацията за контакти", "This will allow you to reset your password and receive notifications.": "Това ще Ви позволи да възстановите Вашата парола и да получавате известия.", - "Skip": "Пропусни", "Name": "Име", "You must register to use this functionality": "Трябва да се регистрирате, за да използвате тази функционалност", "You must join the room to see its files": "Трябва да се присъедините към стаята, за да видите файловете, които съдържа", @@ -347,7 +342,6 @@ "Old cryptography data detected": "Бяха открити стари криптографски данни", "Signed Out": "Излязохте", "For security, this session has been signed out. Please sign in again.": "Поради мерки за сигурност, тази сесия е прекратена. Моля, влезте отново.", - "Logout": "Излез", "Sign out": "Изход", "Connectivity to the server has been lost.": "Връзката със сървъра е изгубена.", "Sent messages will be stored until your connection has returned.": "Изпратените съобщения ще бъдат запаметени докато връзката Ви се възвърне.", @@ -430,7 +424,6 @@ "Notification targets": "Устройства, получаващи известия", "Today": "Днес", "Friday": "Петък", - "Update": "Актуализиране", "On": "Вкл.", "Changelog": "Списък на промените", "Waiting for response from server": "Изчакване на отговор от сървъра", @@ -450,7 +443,6 @@ "Developer Tools": "Инструменти за разработчика", "Preparing to send logs": "Подготовка за изпращане на логове", "Saturday": "Събота", - "Reject": "Отхвърли", "Monday": "Понеделник", "Toolbox": "Инструменти", "Collecting logs": "Събиране на логове", @@ -677,13 +669,11 @@ "Room avatar": "Снимка на стаята", "Room Name": "Име на стаята", "Room Topic": "Тема на стаята", - "Join": "Присъедини се", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Потвърди потребителя и го маркирай като доверен. Доверяването на потребители Ви дава допълнително спокойствие при използване на съобщения шифровани от край-до-край.", "Incoming Verification Request": "Входяща заявка за потвърждение", "Go back": "Върни се", "Email (optional)": "Имейл (незадължително)", "Phone (optional)": "Телефон (незадължително)", - "Confirm": "Потвърди", "Join millions for free on the largest public server": "Присъединете се безплатно към милиони други на най-големия публичен сървър", "Other": "Други", "Guest": "Гост", @@ -833,7 +823,6 @@ "Your browser likely removed this data when running low on disk space.": "Най-вероятно браузърът Ви е премахнал тези данни поради липса на дисково пространство.", "Upload files (%(current)s of %(total)s)": "Качване на файлове (%(current)s от %(total)s)", "Upload files": "Качи файлове", - "Upload": "Качи", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Файлът е прекалено голям за да се качи. Максималният допустим размер е %(limit)s, докато този файл е %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Тези файлове са прекалено големи за да се качат. Максималният допустим размер е %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Някои файлове са прекалено големи за да се качат. Максималният допустим размер е %(limit)s.", @@ -877,7 +866,6 @@ "Uploaded sound": "Качен звук", "Sounds": "Звуци", "Notification sound": "Звук за уведомление", - "Reset": "Нулирай", "Set a new custom sound": "Настрой нов собствен звук", "Browse": "Избор", "This room has already been upgraded.": "Тази стая вече е била обновена.", @@ -972,7 +960,6 @@ "Unable to revoke sharing for email address": "Неуспешно оттегляне на споделянето на имейл адреса", "Unable to share email address": "Неуспешно споделяне на имейл адрес", "Revoke": "Оттегли", - "Share": "Сподели", "Discovery options will appear once you have added an email above.": "Опциите за откриване ще се покажат след като добавите имейл адрес по-горе.", "Unable to revoke sharing for phone number": "Неуспешно оттегляне на споделянето на телефонен номер", "Unable to share phone number": "Неуспешно споделяне на телефонен номер", @@ -1031,7 +1018,6 @@ "Report Content to Your Homeserver Administrator": "Докладвай съдържание до администратора на сървъра", "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "Докладването на съобщението ще изпрати уникалният номер на събитието (event ID) до администратора на сървъра. Ако съобщенията в стаята са шифровани, администратора няма да може да прочете текста им или да види снимките или файловете.", "Send report": "Изпрати доклад", - "View": "Виж", "Explore rooms": "Открий стаи", "Verify the link in your inbox": "Потвърдете линка във вашата пощенска кутия", "Complete": "Завърши", @@ -1049,7 +1035,6 @@ "Add Email Address": "Добави имейл адрес", "Add Phone Number": "Добави телефонен номер", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Това действие изисква връзка със сървъра за самоличност за валидиране на имейл адреса или телефонния номер, но сървърът не предоставя условия за ползване.", - "Trust": "Довери се", "Show previews/thumbnails for images": "Показвай преглед (умален размер) на снимки", "You should remove your personal data from identity server before disconnecting. Unfortunately, identity server is currently offline or cannot be reached.": "Би било добре да премахнете личните си данни от сървъра за самоличност преди прекъсване на връзката. За съжаление, сървърът за самоличност в момента не е достъпен.", "You should:": "Ще е добре да:", @@ -1185,7 +1170,6 @@ "one": "1 потвърдена сесия" }, "Messages in this room are end-to-end encrypted.": "Съобщенията в тази стая са шифровани от край-до-край.", - "Verify": "Потвърди", "You have ignored this user, so their message is hidden. Show anyways.": "Игнорирали сте този потребител, така че съобщението им е скрито. Покажи така или иначе.", "Any of the following data may be shared:": "Следните данни може да бъдат споделени:", "Your display name": "Вашето име", @@ -1207,7 +1191,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Обновяването на стая е действие за напреднали и обикновено се препоръчва когато стаята е нестабилна поради бъгове, липсващи функции или проблеми със сигурността.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Това обикновено влия само на това как стаята се обработва на сървъра. Ако имате проблеми с %(brand)s, съобщете за проблем.", "You'll upgrade this room from to .": "Ще обновите стаята от до .", - "Upgrade": "Обнови", "Remove for everyone": "Премахни за всички", "Country Dropdown": "Падащо меню за избор на държава", "Verification Request": "Заявка за потвърждение", @@ -1996,7 +1979,6 @@ "Invite people": "Покани хора", "Share invite link": "Сподели връзка с покана", "Click to copy": "Натиснете за копиране", - "Delete": "Изтрий", "Please enter a name for the space": "Моля, въведете име на пространството", "Create a space": "Създаване на пространство", "Add some details to help people recognise it.": "Добавете някои подробности, за да помогнете на хората да го разпознаят.", @@ -2102,7 +2084,6 @@ "disable": "Изключи", "done": "Готово", "edit": "Редактирай", - "enable": "Включи", "forgot_password": "Забравена парола?", "invite": "Покани", "invites_list": "Покани", @@ -2121,9 +2102,27 @@ "start": "Започни", "start_chat": "Започни чат", "view_source": "Прегледай източника", - "yes": "Да" + "yes": "Да", + "reject": "Отхвърли", + "confirm": "Потвърди", + "dismiss": "Затвори", + "trust": "Довери се", + "cancel": "Отказ", + "join": "Присъедини се", + "close": "Затвори", + "accept": "Приеми", + "upgrade": "Обнови", + "verify": "Потвърди", + "update": "Актуализиране", + "delete": "Изтрий", + "upload": "Качи", + "reset": "Нулирай", + "share": "Сподели", + "skip": "Пропусни", + "logout": "Излез", + "view": "Виж" }, "a11y": { "user_menu": "Потребителско меню" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/bs.json b/src/i18n/strings/bs.json index a7891ebdcdf..6cb3cd4ebfc 100644 --- a/src/i18n/strings/bs.json +++ b/src/i18n/strings/bs.json @@ -1,7 +1,9 @@ { - "Dismiss": "Odbaci", "Create Account": "Otvori račun", "Sign In": "Prijavite se", "Explore rooms": "Istražite sobe", - "Identity server": "Identifikacioni Server" + "Identity server": "Identifikacioni Server", + "action": { + "dismiss": "Odbaci" + } } diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index 2ad83a1a21e..5558ae337b8 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -6,13 +6,10 @@ "Camera": "Càmera", "Advanced": "Avançat", "Always show message timestamps": "Mostra sempre la marca de temps del missatge", - "Cancel": "Cancel·la", - "Close": "Tanca", "Create new room": "Crea una sala nova", "Failed to forget room %(errCode)s": "No s'ha pogut oblidar la sala %(errCode)s", "Favourite": "Favorit", "Failed to change password. Is your password correct?": "S'ha produït un error en canviar la contrasenya. És correcta la teva contrasenya?", - "Dismiss": "Omet", "Notifications": "Notificacions", "unknown error code": "codi d'error desconegut", "Operation failed": "No s'ha pogut realitzar l'operació", @@ -110,7 +107,6 @@ "Enable inline URL previews by default": "Activa per defecte la vista prèvia d'URL en línia", "Enable URL previews for this room (only affects you)": "Activa la vista prèvia d'URL d'aquesta sala (no afecta altres usuaris)", "Enable URL previews by default for participants in this room": "Activa per defecte la vista prèvia d'URL per als participants d'aquesta sala", - "Accept": "Accepta", "Incorrect verification code": "El codi de verificació és incorrecte", "Submit": "Envia", "Phone": "Telèfon", @@ -335,7 +331,6 @@ "Unable to add email address": "No s'ha pogut afegir el correu electrònic", "Unable to verify email address.": "No s'ha pogut verificar el correu electrònic.", "This will allow you to reset your password and receive notifications.": "Això us permetrà restablir la vostra contrasenya i rebre notificacions.", - "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.", "Name": "Nom", "You must register to use this functionality": "Per poder utilitzar aquesta funcionalitat has de registrar-te", @@ -349,7 +344,6 @@ "For security, this session has been signed out. Please sign in again.": "Per seguretat, aquesta sessió s'ha tancat. Torna a iniciar la sessió.", "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.", - "Logout": "Surt", "Warning": "Avís", "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.", @@ -387,7 +381,6 @@ "Notification targets": "Objectius de les notificacions", "Today": "Avui", "Friday": "Divendres", - "Update": "Actualitzar", "What's New": "Novetats", "On": "Engegat", "Changelog": "Registre de canvis", @@ -410,7 +403,6 @@ "Developer Tools": "Eines de desenvolupador", "Preparing to send logs": "Preparant l'enviament de logs", "Saturday": "Dissabte", - "Reject": "Rebutja", "Monday": "Dilluns", "Toolbox": "Caixa d'eines", "Collecting logs": "S'estan recopilant els registres", @@ -511,7 +503,6 @@ "Show read receipts sent by other users": "Mostra les confirmacions de lectura enviades pels altres usuaris", "Enable big emoji in chat": "Activa Emojis grans en xats", "Send analytics data": "Envia dades d'anàlisi", - "Upload": "Puja", "Email addresses": "Adreces de correu electrònic", "Phone numbers": "Números de telèfon", "Language and region": "Idioma i regió", @@ -568,7 +559,6 @@ "Use your account or create a new one to continue.": "Utilitza el teu compte o crea'n un de nou per continuar.", "Sign In or Create Account": "Inicia sessió o Crea un compte", "%(name)s is requesting verification": "%(name)s està demanant verificació", - "Trust": "Confiança", "Only continue if you trust the owner of the server.": "Continua, només, si confies amb el propietari del servidor.", "Identity server has no terms of service": "El servidor d'identitat no disposa de condicions de servei", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Aquesta acció necessita accedir al servidor d'identitat predeterminat per validar una adreça de correu electrònic o un número de telèfon, però el servidor no disposa de condicions de servei.", @@ -618,7 +608,6 @@ "Click the button below to confirm adding this phone number.": "Fes clic al botó de sota per confirmar l'addició d'aquest número de telèfon.", "Confirm adding phone number": "Confirma l'addició del número de telèfon", "Add Email Address": "Afegeix una adreça de correu electrònic", - "Confirm": "Confirma", "Click the button below to confirm adding this email address.": "Fes clic al botó de sota per confirmar l'addició d'aquesta adreça de correu electrònic.", "Unable to access webcam / microphone": "No s'ha pogut accedir a la càmera web / micròfon", "Unable to access microphone": "No s'ha pogut accedir al micròfon", @@ -656,6 +645,17 @@ "reply": "Respon", "save": "Desa", "start_chat": "Inicia un xat", - "view_source": "Mostra el codi" + "view_source": "Mostra el codi", + "reject": "Rebutja", + "confirm": "Confirma", + "dismiss": "Omet", + "trust": "Confiança", + "cancel": "Cancel·la", + "close": "Tanca", + "accept": "Accepta", + "update": "Actualitzar", + "upload": "Puja", + "skip": "Omet", + "logout": "Surt" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index 94ba6b750ef..13dfb1951b5 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -1,11 +1,9 @@ { - "Close": "Zavřít", "Favourites": "Oblíbené", "Filter room members": "Najít člena místnosti", "Historical": "Historické", "Home": "Domov", "Jump to first unread message.": "Přejít na první nepřečtenou zprávu.", - "Logout": "Odhlásit se", "Low priority": "Nízká priorita", "Notifications": "Oznámení", "Rooms": "Místnosti", @@ -34,15 +32,12 @@ "Create new room": "Vytvořit novou místnost", "Options": "Volby", "Register": "Zaregistrovat", - "Cancel": "Storno", "Favourite": "Oblíbené", "Failed to change password. Is your password correct?": "Nepodařilo se změnit heslo. Zadáváte své heslo správně?", "Operation failed": "Operace se nezdařila", "unknown error code": "neznámý kód chyby", "Failed to forget room %(errCode)s": "Nepodařilo se zapomenout místnost %(errCode)s", - "Dismiss": "Zavřít", "powered by Matrix": "používá protokol Matrix", - "Accept": "Přijmout", "Account": "Účet", "Add": "Přidat", "Admin": "Správce", @@ -379,7 +374,6 @@ "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.": "Pokud jste se v minulosti již přihlásili s novější verzi programu %(brand)s, vaše relace nemusí být kompatibilní s touto verzí. Zavřete prosím toto okno a přihlaste se znovu pomocí nové verze.", "Please check your email and click on the link it contains. Once this is done, click continue.": "Zkontrolujte svou e-mailovou schránku a klepněte na odkaz ve zprávě, kterou jsme vám poslali. V případě, že jste to už udělali, klepněte na tlačítko Pokračovat.", "This will allow you to reset your password and receive notifications.": "Toto vám umožní obnovit si heslo a přijímat oznámení e-mailem.", - "Skip": "Přeskočit", "You must register to use this functionality": "Pro využívání této funkce se zaregistrujte", "You must join the room to see its files": "Pro zobrazení souborů musíte do místnosti vstoupit", "Description": "Popis", @@ -416,7 +410,6 @@ "Notification targets": "Cíle oznámení", "Today": "Dnes", "Friday": "Pátek", - "Update": "Aktualizovat", "What's New": "Co je nového", "On": "Zapnout", "Changelog": "Seznam změn", @@ -435,7 +428,6 @@ "Developer Tools": "Nástroje pro vývojáře", "Saturday": "Sobota", "Messages in one-to-one chats": "Přímé zprávy", - "Reject": "Odmítnout", "Monday": "Pondělí", "Toolbox": "Sada nástrojů", "Collecting logs": "Sběr záznamů", @@ -721,7 +713,6 @@ "Main address": "Hlavní adresa", "This room is a continuation of another conversation.": "Tato místost je pokračováním jiné konverzace.", "Click here to see older messages.": "Klepnutím zobrazíte starší zprávy.", - "Join": "Vstoupit", "The following users may not exist": "Následující uživatel možná neexistuje", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Nepovedlo se najít profily následujících Matrix ID - chcete je stejně pozvat?", "Invite anyway and never warn me again": "Stejně je pozvat a nikdy mě nevarujte znovu", @@ -771,7 +762,6 @@ "Change": "Změnit", "Email (optional)": "E-mail (nepovinné)", "Phone (optional)": "Telefonní číslo (nepovinné)", - "Confirm": "Potvrdit", "Join millions for free on the largest public server": "Přidejte k miliónům registrovaným na největším veřejném serveru", "Other": "Další možnosti", "Couldn't load page": "Nepovedlo se načíst stránku", @@ -863,7 +853,6 @@ "Your browser likely removed this data when running low on disk space.": "Prohlížeč data možná smazal aby ušetřil místo na disku.", "Upload files (%(current)s of %(total)s)": "Nahrát soubory (%(current)s z %(total)s)", "Upload files": "Nahrát soubory", - "Upload": "Nahrát", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Tento soubor je příliš velký. Limit na velikost je %(limit)s, ale soubor má %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Tyto soubory jsou příliš velké. Limit je %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Některé soubory jsou příliš velké. Limit je %(limit)s.", @@ -898,7 +887,6 @@ "Uploaded sound": "Zvuk nahrán", "Sounds": "Zvuky", "Notification sound": "Zvuk oznámení", - "Reset": "Resetovat", "Set a new custom sound": "Nastavit vlastní zvuk", "Browse": "Procházet", "Cannot reach homeserver": "Nelze se připojit k domovskému serveru", @@ -971,7 +959,6 @@ "Add Email Address": "Přidat e-mailovou adresu", "Add Phone Number": "Přidat telefonní číslo", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Tato akce vyžaduje přístup k výchozímu serveru identity aby šlo ověřit e-mail a telefon, ale server nemá podmínky použití.", - "Trust": "Důvěra", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "Show previews/thumbnails for images": "Zobrazovat náhledy obrázků", "You should remove your personal data from identity server before disconnecting. Unfortunately, identity server is currently offline or cannot be reached.": "Před odpojením byste měli smazat osobní údaje ze serveru identit . Bohužel, server je offline nebo neodpovídá.", @@ -996,7 +983,6 @@ "Verify the link in your inbox": "Ověřte odkaz v e-mailové schránce", "Complete": "Dokončit", "Revoke": "Zneplatnit", - "Share": "Sdílet", "Discovery options will appear once you have added an email above.": "Možnosti nastavení veřejného profilu se objeví po přidání e-mailové adresy výše.", "Unable to revoke sharing for phone number": "Nepovedlo se zrušit sdílení telefonního čísla", "Unable to share phone number": "Nepovedlo se nasdílet telefonní číslo", @@ -1083,7 +1069,6 @@ "Resend %(unsentCount)s reaction(s)": "Poslat %(unsentCount)s reakcí znovu", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Na domovském serveru chybí veřejný klíč pro captcha. Nahlaste to prosím správci serveru.", "%(creator)s created and configured the room.": "%(creator)s vytvořil(a) a nakonfiguroval(a) místnost.", - "View": "Zobrazit", "Explore rooms": "Procházet místnosti", "Jump to first unread room.": "Přejít na první nepřečtenou místnost.", "Jump to first invite.": "Přejít na první pozvánku.", @@ -1166,7 +1151,6 @@ "Trusted": "Důvěryhodné", "Not trusted": "Nedůvěryhodné", "Messages in this room are end-to-end encrypted.": "Zprávy jsou v této místnosti koncově šifrované.", - "Verify": "Ověřit", "You have ignored this user, so their message is hidden. Show anyways.": "Tohoto uživatele ignorujete, takže jsou jeho zprávy skryté. Přesto zobrazit.", "Any of the following data may be shared:": "Následující data můžou být sdílena:", "Your display name": "Vaše zobrazované jméno", @@ -1187,7 +1171,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Upgradování místnosti je pokročilá operace a je doporučeno jí provést pokud je místnost nestabilní kvůli chybám, chybějícím funkcím nebo zranitelnostem.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Toto obvykle ovlivňuje pouze zpracovávání místnosti na serveru. Pokud máte problém s %(brand)sem, nahlaste nám ho prosím.", "You'll upgrade this room from to .": "Místnost bude povýšena z verze na verzi .", - "Upgrade": "Aktualizovat", "Remove for everyone": "Odstranit pro všechny", "Verification Request": "Požadavek na ověření", "Unable to set up secret storage": "Nepovedlo se nastavit bezpečné úložiště", @@ -2210,7 +2193,6 @@ "This homeserver has been blocked by its administrator.": "Tento domovský server byl zablokován jeho správcem.", "You're already in a call with this person.": "S touto osobou již telefonujete.", "Already in call": "Již máte hovor", - "Delete": "Smazat", "Original event source": "Původní zdroj události", "Decrypted event source": "Dešifrovaný zdroj události", "Save Changes": "Uložit změny", @@ -2380,8 +2362,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Zveřejněné adresy může použít kdokoli na jakémkoli serveru, aby se připojil k vašemu prostoru.", "This space has no local addresses": "Tento prostor nemá žádné místní adresy", "Space information": "Informace o prostoru", - "Collapse": "Sbalit", - "Expand": "Rozbalit", "Recommended for public spaces.": "Doporučeno pro veřejné prostory.", "Allow people to preview your space before they join.": "Umožněte lidem prohlédnout si váš prostor ještě předtím, než se připojí.", "Preview Space": "Nahlédnout do prostoru", @@ -2597,7 +2577,6 @@ "Select from the options below to export chats from your timeline": "Vyberte jednu z níže uvedených možností pro export chatů z časové osy", "Export Chat": "Exportovat chat", "Exporting your data": "Exportování dat", - "Stop": "Zastavit", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Opravdu chcete ukončit export dat? Pokud ano, budete muset začít znovu.", "Your export was successful. Find it in your Downloads folder.": "Váš export proběhl úspěšně. Najdete jej ve složce pro stažené soubory.", "The export was cancelled successfully": "Export byl úspěšně zrušen", @@ -2944,7 +2923,6 @@ "Jump to start of the composer": "Přejít na začátek editoru", "Navigate to previous message to edit": "Přejít na předchozí zprávu, kterou chcete upravit", "Internal room ID": "Interní ID místnosti", - "Call": "Hovor", "Group all your rooms that aren't part of a space in one place.": "Seskupte všechny místnosti, které nejsou součástí prostoru, na jednom místě.", "Group all your people in one place.": "Seskupte všechny své kontakty na jednom místě.", "Group all your favourite rooms and people in one place.": "Seskupte všechny své oblíbené místnosti a osoby na jednom místě.", @@ -3588,7 +3566,6 @@ "Re-enter email address": "Zadejte znovu e-mailovou adresu", "Wrong email address?": "Špatná e-mailová adresa?", "Hide notification dot (only display counters badges)": "Skrýt tečku oznámení (zobrazit pouze odznaky čítačů)", - "Apply": "Použít", "Search users in this room…": "Hledání uživatelů v této místnosti…", "Give one or multiple users in this room more privileges": "Přidělit jednomu nebo více uživatelům v této místnosti více oprávnění", "Add privileged users": "Přidat oprávněné uživatele", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Při pokusu o vyhledání a přechod na zadané datum došlo k chybě sítě. Váš domovský server může být nefunkční nebo došlo jen k dočasnému problému s internetovým připojením. Zkuste to prosím znovu. Pokud tento problém přetrvává, obraťte se na správce domovského serveru.", "Poll history": "Historie hlasování", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Uživatel (%(user)s) nebyl pozván do %(roomId)s, ale nástroj pro pozvání nezaznamenal žádnou chybu", - "Reload": "Znovu načíst", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "To může být způsobeno otevřením aplikace na více kartách nebo vymazáním dat prohlížeče.", "Database unexpectedly closed": "Databáze byla neočekávaně uzavřena", "Mute room": "Ztlumit místnost", @@ -3955,7 +3931,6 @@ "disable": "Zakázat", "done": "Hotovo", "edit": "Upravit", - "enable": "Povolit", "forgot_password": "Zapomenuté heslo?", "forward": "Přeposlat", "invite": "Pozvat", @@ -3976,9 +3951,33 @@ "start": "Začít", "start_chat": "Zahájit konverzaci", "view_source": "Zobrazit zdroj", - "yes": "Ano" + "yes": "Ano", + "reject": "Odmítnout", + "confirm": "Potvrdit", + "dismiss": "Zavřít", + "trust": "Důvěra", + "reload": "Znovu načíst", + "cancel": "Storno", + "stop": "Zastavit", + "join": "Vstoupit", + "close": "Zavřít", + "accept": "Přijmout", + "upgrade": "Aktualizovat", + "verify": "Ověřit", + "update": "Aktualizovat", + "call": "Hovor", + "delete": "Smazat", + "upload": "Nahrát", + "collapse": "Sbalit", + "apply": "Použít", + "reset": "Resetovat", + "share": "Sdílet", + "skip": "Přeskočit", + "logout": "Odhlásit se", + "view": "Zobrazit", + "expand": "Rozbalit" }, "a11y": { "user_menu": "Uživatelská nabídka" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/cy.json b/src/i18n/strings/cy.json index 33be38e7845..ce17f39d81e 100644 --- a/src/i18n/strings/cy.json +++ b/src/i18n/strings/cy.json @@ -6,7 +6,9 @@ "Add Phone Number": "Ychwanegu Rhif Ffôn", "Sign In": "Mewngofnodi", "Create Account": "Creu Cyfrif", - "Dismiss": "Wfftio", "Explore rooms": "Archwilio Ystafelloedd", - "Identity server": "Gweinydd Adnabod" + "Identity server": "Gweinydd Adnabod", + "action": { + "dismiss": "Wfftio" + } } diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index 6211b37b922..765b0924998 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -34,10 +34,7 @@ "Notifications": "Notifikationer", "unknown error code": "Ukendt fejlkode", "Search": "Søg", - "Dismiss": "Afvis", "powered by Matrix": "Drevet af Matrix", - "Close": "Luk", - "Cancel": "Afbryd", "Failed to forget room %(errCode)s": "Kunne ikke glemme rummet %(errCode)s", "Register": "Registrér", "Unnamed room": "Unavngivet rum", @@ -109,7 +106,6 @@ "Notification targets": "Meddelelsesmål", "Today": "I dag", "Friday": "Fredag", - "Update": "Opdater", "What's New": "Hvad er nyt", "On": "Tændt", "Changelog": "Ændringslog", @@ -131,7 +127,6 @@ "Tuesday": "Tirsdag", "Event sent!": "Begivenhed sendt!", "Saturday": "Lørdag", - "Reject": "Afvis", "Monday": "Mandag", "Toolbox": "Værktøjer", "Collecting logs": "Indsamler logfiler", @@ -294,7 +289,6 @@ "Single Sign On": "Engangs login", "Confirm adding email": "Bekræft tilføjelse af email", "Click the button below to confirm adding this email address.": "Klik på knappen herunder for at bekræfte tilføjelsen af denne email adresse.", - "Confirm": "Bekræft", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Bekræft tilføjelsen af dette telefonnummer ved at bruge Single Sign On til at bevise din identitet.", "Confirm adding phone number": "Bekræft tilføjelse af telefonnummer", "Click the button below to confirm adding this phone number.": "Klik på knappen herunder for at bekræfte tilføjelsen af dette telefonnummer.", @@ -306,7 +300,6 @@ "Identity server has no terms of service": "Identity serveren har ingen terms of service", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Denne handling kræver adgang til default identitets serveren for at validere en email adresse eller et telefonnummer, men serveren har ingen terms of service.", "Only continue if you trust the owner of the server.": "Fortsæt kun hvis du stoler på ejeren af denne server.", - "Trust": "Tillid", "%(name)s is requesting verification": "%(name)s beder om verifikation", "Sign In or Create Account": "Log ind eller Opret bruger", "Use your account or create a new one to continue.": "Brug din konto eller opret en ny for at fortsætte.", @@ -364,7 +357,6 @@ "Show less": "Vis mindre", "Passwords don't match": "Adgangskoderne matcher ikke", "Confirm password": "Bekræft adgangskode", - "Reset": "Nulstil", "Enter password": "Indtast adgangskode", "Add a new server": "Tilføj en ny server", "Matrix": "Matrix", @@ -377,7 +369,6 @@ "%(senderName)s started a call": "%(senderName)s startede et opkald", "You started a call": "Du startede et opkald", "Verified!": "Bekræftet!", - "Accept": "Accepter", "Profile picture": "Profil billede", "Categories": "Kategorier", "Checking server": "Tjekker server", @@ -720,6 +711,15 @@ "remove": "Fjern", "reply": "Besvar", "save": "Gem", - "view_source": "Se Kilde" + "view_source": "Se Kilde", + "reject": "Afvis", + "confirm": "Bekræft", + "dismiss": "Afvis", + "trust": "Tillid", + "cancel": "Afbryd", + "close": "Luk", + "accept": "Accepter", + "update": "Opdater", + "reset": "Nulstil" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index f8be3ea1427..2798d14a818 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -37,7 +37,6 @@ "Import E2E room keys": "E2E-Raumschlüssel importieren", "Invalid Email Address": "Ungültige E-Mail-Adresse", "Sign in with": "Anmelden mit", - "Logout": "Abmelden", "Moderator": "Moderator", "Notifications": "Benachrichtigungen", "": "", @@ -157,7 +156,6 @@ "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.", "Room": "Raum", - "Cancel": "Abbrechen", "Failed to load timeline position": "Laden der Verlaufsposition fehlgeschlagen", "%(items)s and %(lastItem)s": "%(items)s und %(lastItem)s", "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(day)s. %(monthName)s %(fullYear)s %(time)s", @@ -189,7 +187,6 @@ "Unknown error": "Unbekannter Fehler", "Incorrect password": "Ungültiges Passwort", "Unable to restore session": "Sitzungswiederherstellung fehlgeschlagen", - "Dismiss": "Ausblenden", "Token incorrect": "Token fehlerhaft", "Please enter the code it contains:": "Bitte gib den darin enthaltenen Code ein:", "powered by Matrix": "Betrieben mit Matrix", @@ -242,10 +239,8 @@ "New Password": "Neues Passwort", "Something went wrong!": "Etwas ist schiefgelaufen!", "Home": "Startseite", - "Accept": "Annehmen", "Admin Tools": "Administrationswerkzeuge", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate 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 SSL-Zertifikat deines Heimservers vertraut wird und dass Anfragen nicht durch eine Browser-Erweiterung blockiert werden.", - "Close": "Schließen", "No display name": "Kein Anzeigename", "%(roomName)s does not exist.": "%(roomName)s existiert nicht.", "%(roomName)s is not accessible at this time.": "Auf %(roomName)s kann momentan nicht zugegriffen werden.", @@ -261,7 +256,6 @@ "Authentication check failed: incorrect password?": "Authentifizierung fehlgeschlagen: Falsches Passwort?", "Do you want to set an email address?": "Möchtest du eine E-Mail-Adresse setzen?", "This will allow you to reset your password and receive notifications.": "Dies ermöglicht es dir, dein Passwort zurückzusetzen und Benachrichtigungen zu empfangen.", - "Skip": "Überspringen", "Check for update": "Nach Aktualisierung suchen", "Delete widget": "Widget entfernen", "Define the power level of a user": "Berechtigungsstufe einers Benutzers setzen", @@ -430,7 +424,6 @@ "Notification targets": "Benachrichtigungsziele", "Today": "Heute", "Friday": "Freitag", - "Update": "Aktualisieren", "What's New": "Was ist neu", "On": "An", "Changelog": "Änderungsprotokoll", @@ -451,7 +444,6 @@ "Developer Tools": "Entwicklungswerkzeuge", "Preparing to send logs": "Senden von Protokolldateien wird vorbereitet", "Saturday": "Samstag", - "Reject": "Ablehnen", "Monday": "Montag", "Toolbox": "Werkzeugkasten", "Collecting logs": "Protokolle werden abgerufen", @@ -747,7 +739,6 @@ "Room avatar": "Raumbild", "Room Name": "Raumname", "Room Topic": "Raumthema", - "Join": "Betreten", "Incoming Verification Request": "Eingehende Verifikationsanfrage", "Are you sure? You will lose your encrypted messages if your keys are not backed up properly.": "Bist du sicher? Du wirst alle deine verschlüsselten Nachrichten verlieren, wenn deine Schlüssel nicht gut gesichert sind.", "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "Verschlüsselte Nachrichten sind mit Ende-zu-Ende-Verschlüsselung gesichert. Nur du und der/die Empfänger haben die Schlüssel um diese Nachrichten zu lesen.", @@ -769,7 +760,6 @@ "Change": "Ändern", "Email (optional)": "E-Mail-Adresse (optional)", "Phone (optional)": "Telefon (optional)", - "Confirm": "Bestätigen", "Other": "Sonstiges", "Couldn't load page": "Konnte Seite nicht laden", "Guest": "Gast", @@ -833,7 +823,6 @@ "Unexpected error resolving homeserver configuration": "Ein unerwarteter Fehler ist beim Laden der Heim-Server-Konfiguration aufgetreten", "The user's homeserver does not support the version of the room.": "Die Raumversion wird vom Heim-Server des Benutzers nicht unterstützt.", "Show hidden events in timeline": "Versteckte Ereignisse im Verlauf anzeigen", - "Reset": "Zurücksetzen", "Sign Up": "Registrieren", "Sign In": "Anmelden", "Reason: %(reason)s": "Grund: %(reason)s", @@ -845,7 +834,6 @@ "GitHub issue": "\"Issue\" auf Github", "Upload files": "Dateien hochladen", "Upload all": "Alle hochladen", - "Upload": "Hochladen", "Cancel All": "Alle abbrechen", "Upload Error": "Fehler beim Hochladen", "Enter password": "Passwort eingeben", @@ -880,10 +868,8 @@ "Changes the avatar of the current room": "Ändert das Icon vom Raum", "Deactivate account": "Benutzerkonto deaktivieren", "Show previews/thumbnails for images": "Vorschauen für Bilder", - "View": "Öffnen", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Diese Handlung erfordert es, auf den Standard-Identitäts-Server zuzugreifen, um eine E-Mail-Adresse oder Telefonnummer zu validieren, aber der Server hat keine Nutzungsbedingungen.", "Only continue if you trust the owner of the server.": "Fahre nur fort, wenn du den Server-Betreibenden vertraust.", - "Trust": "Vertrauen", "Custom (%(level)s)": "Benutzerdefiniert (%(level)s)", "Sends a message as plain text, without interpreting it as markdown": "Sendet eine Nachricht als Klartext, ohne sie als Markdown darzustellen", "Use an identity server to invite by email. Manage in Settings.": "Verwende einen Identitäts-Server, um per E-Mail einladen zu können. Lege einen in den Einstellungen fest.", @@ -921,7 +907,6 @@ "Lock": "Schloss", "Later": "Später", "Review": "Überprüfen", - "Verify": "Verifizieren", "not found": "nicht gefunden", "Manage": "Verwalten", "Securely cache encrypted messages locally for them to appear in search results.": "Speichere verschlüsselte Nachrichten lokal, sodass sie deinen Suchergebnissen erscheinen können.", @@ -1183,7 +1168,6 @@ "Verify your other session using one of the options below.": "Verifiziere deine andere Sitzung mit einer der folgenden Optionen.", "You signed in to a new session without verifying it:": "Du hast dich in einer neuen Sitzung angemeldet ohne sie zu verifizieren:", "Other users may not trust it": "Andere Benutzer vertrauen ihr vielleicht nicht", - "Upgrade": "Aktualisieren", "Your homeserver does not support cross-signing.": "Dein Heim-Server unterstützt keine Quersignierung.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Dein Konto hat eine Quersignaturidentität im sicheren Speicher, der von dieser Sitzung jedoch noch nicht vertraut wird.", "unexpected type": "unbekannter Typ", @@ -1214,7 +1198,6 @@ "Verify the link in your inbox": "Verifiziere den Link in deinem Posteingang", "Complete": "Abschließen", "Revoke": "Widerrufen", - "Share": "Teilen", "You have not verified this user.": "Du hast diesen Nutzer nicht verifiziert.", "Everyone in this room is verified": "Alle in diesem Raum sind verifiziert", "Mod": "Moderator", @@ -2172,7 +2155,6 @@ "Private": "Privat", "Public": "Öffentlich", "Create a space": "Neuen Space erstellen", - "Delete": "Löschen", "This homeserver has been blocked by its administrator.": "Dieser Heim-Server wurde von seiner Administration geblockt.", "You're already in a call with this person.": "Du bist schon in einem Anruf mit dieser Person.", "Already in call": "Schon im Anruf", @@ -2378,8 +2360,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Veröffentlichte Adressen erlauben jedem, den Space zu betreten.", "This space has no local addresses": "Dieser Space hat keine lokale Adresse", "Space information": "Information über den Space", - "Collapse": "Verbergen", - "Expand": "Ausklappen", "Recommended for public spaces.": "Empfohlen für öffentliche Spaces.", "Allow people to preview your space before they join.": "Personen können den Space vor dem Betreten erkunden.", "Preview Space": "Space-Vorschau erlauben", @@ -2606,7 +2586,6 @@ "Format": "Format", "Export Chat": "Unterhaltung exportieren", "Exporting your data": "Deine Daten werden exportiert", - "Stop": "Beenden", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Willst du das Exportieren deiner Daten wirklich abbrechen? Falls ja, musst du komplett von neu beginnen.", "Your export was successful. Find it in your Downloads folder.": "Export erfolgreich. Du kannst ihn in deinem Download-Verzeichnis finden.", "The export was cancelled successfully": "Exportieren abgebrochen", @@ -2949,7 +2928,6 @@ "Group all your favourite rooms and people in one place.": "Gruppiere all deine favorisierten Unterhaltungen an einem Ort.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Mit Spaces kannst du deine Unterhaltungen organisieren. Neben Spaces, in denen du dich befindest, kannst du dir auch dynamische anzeigen lassen.", "IRC (Experimental)": "IRC (Experimentell)", - "Call": "Anruf", "Redo edit": "Änderung wiederherstellen", "Undo edit": "Änderung revidieren", "Jump to last message": "Zur letzten Nachricht springen", @@ -3589,7 +3567,6 @@ "Wrong email address?": "Falsche E-Mail-Adresse?", "Hide notification dot (only display counters badges)": "Benachrichtigungspunkt ausblenden (nur Zähler zeigen)", "Add privileged users": "Berechtigten Benutzer hinzufügen", - "Apply": "Anwenden", "Search users in this room…": "Benutzer im Raum suchen …", "Give one or multiple users in this room more privileges": "Einem oder mehreren Benutzern im Raum mehr Berechtigungen geben", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Aus Sicherheits- und Datenschutzgründen, wird die Nutzung von verschlüsselungsfähigen Matrix-Anwendungen empfohlen.", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Während des Versuchs, zum Datum zu springen, trat ein Netzwerkfehler auf. Möglicherweise ist dein Heim-Server nicht erreichbar oder es liegt ein temporäres Problem mit deiner Internetverbindung vor. Bitte versuche es erneut. Falls dieser Fehler weiterhin auftritt, kontaktiere bitte deine Heim-Server-Administration.", "Poll history": "Umfrageverlauf", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Der Benutzer (%(user)s) wurde nicht in %(roomId)s eingeladen, aber das Einladungsprogramm meldete keinen Fehler", - "Reload": "Neu laden", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Dies wurde eventuell durch das Öffnen der App in mehreren Tabs oder das Löschen der Browser-Daten verursacht.", "Database unexpectedly closed": "Datenbank unerwartet geschlossen", "Mute room": "Raum stumm stellen", @@ -3955,7 +3931,6 @@ "disable": "Deaktivieren", "done": "Fertig", "edit": "Bearbeiten", - "enable": "Aktivieren", "forgot_password": "Passwort vergessen?", "forward": "Weiterleiten", "invite": "Einladen", @@ -3976,9 +3951,33 @@ "start": "Starte", "start_chat": "Unterhaltung beginnen", "view_source": "Rohdaten anzeigen", - "yes": "Ja" + "yes": "Ja", + "reject": "Ablehnen", + "confirm": "Bestätigen", + "dismiss": "Ausblenden", + "trust": "Vertrauen", + "reload": "Neu laden", + "cancel": "Abbrechen", + "stop": "Beenden", + "join": "Betreten", + "close": "Schließen", + "accept": "Annehmen", + "upgrade": "Aktualisieren", + "verify": "Verifizieren", + "update": "Aktualisieren", + "call": "Anruf", + "delete": "Löschen", + "upload": "Hochladen", + "collapse": "Verbergen", + "apply": "Anwenden", + "reset": "Zurücksetzen", + "share": "Teilen", + "skip": "Überspringen", + "logout": "Abmelden", + "view": "Öffnen", + "expand": "Ausklappen" }, "a11y": { "user_menu": "Benutzermenü" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index 9ed7ff48c6d..cfaa53e5f92 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -68,7 +68,6 @@ "Sign in with": "Συνδεθείτε με", "Jump to first unread message.": "Πηγαίνετε στο πρώτο μη αναγνωσμένο μήνυμα.", "Labs": "Πειραματικά", - "Logout": "Αποσύνδεση", "Low priority": "Χαμηλής προτεραιότητας", "Command error": "Σφάλμα εντολής", "Commands": "Εντολές", @@ -94,11 +93,7 @@ "Someone": "Κάποιος", "This email address is already in use": "Η διεύθυνση ηλ. αλληλογραφίας χρησιμοποιείται ήδη", "This email address was not found": "Δεν βρέθηκε η διεύθυνση ηλ. αλληλογραφίας", - "Cancel": "Ακύρωση", - "Dismiss": "Απόρριψη", - "Close": "Κλείσιμο", "Create new room": "Δημιουργία νέου δωματίου", - "Accept": "Αποδοχή", "Add": "Προσθήκη", "Admin Tools": "Εργαλεία διαχειριστή", "No media permissions": "Χωρίς δικαιώματα πολυμέσων", @@ -260,14 +255,12 @@ "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?": "Θα μεταφερθείτε σε έναν ιστότοπου τρίτου για να πραγματοποιηθεί η πιστοποίηση του λογαριασμού σας με το %(integrationsUrl)s. Θα θέλατε να συνεχίσετε;", "Do you want to set an email address?": "Θέλετε να ορίσετε μια διεύθυνση ηλεκτρονικής αλληλογραφίας;", "This will allow you to reset your password and receive notifications.": "Αυτό θα σας επιτρέψει να επαναφέρετε τον κωδικό πρόσβαση σας και θα μπορείτε να λαμβάνετε ειδοποιήσεις.", - "Skip": "Παράβλεψη", "Check for update": "Έλεγχος για ενημέρωση", "Sunday": "Κυριακή", "Failed to add tag %(tagName)s to room": "Δεν ήταν δυνατή η προσθήκη της ετικέτας %(tagName)s στο δωμάτιο", "Notification targets": "Στόχοι ειδοποιήσεων", "Today": "Σήμερα", "Friday": "Παρασκευή", - "Update": "Ενημέρωση", "On": "Ενεργό", "Changelog": "Αλλαγές", "Waiting for response from server": "Αναμονή απάντησης από τον διακομιστή", @@ -286,7 +279,6 @@ "Tuesday": "Τρίτη", "Unnamed room": "Ανώνυμο δωμάτιο", "Saturday": "Σάββατο", - "Reject": "Απόρριψη", "Monday": "Δευτέρα", "Collecting logs": "Συγκέντρωση πληροφοριών", "All Rooms": "Όλα τα δωμάτια", @@ -347,7 +339,6 @@ "Identity server has no terms of service": "Ο διακομιστής ταυτοποίησης δεν έχει όρους χρήσης", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Αυτή η δράση απαιτεί την πρόσβαση στο προκαθορισμένο διακομιστή ταυτοποίησης για να επιβεβαιώσει μια διεύθυνση ηλ. ταχυδρομείου ή αριθμό τηλεφώνου, αλλά ο διακομιστής δεν έχει όρους χρήσης.", "Only continue if you trust the owner of the server.": "Συνεχίστε μόνο εάν εμπιστεύεστε τον ιδιοκτήτη του διακομιστή.", - "Trust": "Εμπιστοσύνη", "Unable to load! Check your network connectivity and try again.": "Αδυναμία φόρτωσης! Ελέγξτε την σύνδεση του δικτύου και προσπαθήστε ξανά.", "Missing roomId.": "Λείπει η ταυτότητα δωματίου.", "Messages": "Μηνύματα", @@ -366,7 +357,6 @@ "Your %(brand)s is misconfigured": "Οι παράμετροι του %(brand)s σας είναι λανθασμένα ρυθμισμένοι", "Explore rooms": "Εξερευνήστε δωμάτια", "Click the button below to confirm adding this phone number.": "Πιέστε το κουμπί από κάτω για να επιβεβαίωσετε την προσθήκη του τηλεφωνικού αριθμού.", - "Confirm": "Επιβεβαίωση", "Use custom size": "Χρησιμοποιήστε προσαρμοσμένο μέγεθος", "Font size": "Μέγεθος γραμματοσειράς", "Render LaTeX maths in messages": "Εμφανίστε μαθηματικά LaTeX σε μηνύματα", @@ -865,7 +855,6 @@ "You have not verified this user.": "Δεν έχετε επαληθεύσει αυτόν τον χρήστη.", "This user has not verified all of their sessions.": "Αυτός ο χρήστης δεν έχει επαληθεύσει όλες τις συνεδρίες του.", "Phone Number": "Αριθμός Τηλεφώνου", - "Share": "Διαμοιρασμός", "Revoke": "Ανάκληση", "Complete": "Ολοκληρώθηκε", "Verify the link in your inbox": "Επαληθεύστε τον σύνδεσμο στα εισερχόμενα σας", @@ -907,7 +896,6 @@ "Upgrading room": "Αναβάθμιση δωματίου", "Space members": "Μέλη χώρου", "not found": "δε βρέθηκε", - "Reset": "Επαναφορά", "Passwords don't match": "Οι κωδικοί πρόσβασης δεν ταιριάζουν", "Space options": "Επιλογές χώρου", "Recommended for public spaces.": "Προτείνεται για δημόσιους χώρους.", @@ -933,8 +921,6 @@ "Failed to copy": "Αποτυχία αντιγραφής", "Copied!": "Αντιγράφηκε!", "Click to copy": "Κλικ για αντιγραφή", - "Collapse": "Σύμπτυξη", - "Expand": "Επέκταση", "Show all rooms": "Εμφάνιση όλων των δωματίων", "Developer mode": "Λειτουργία για προγραμματιστές", "Show all rooms in Home": "Εμφάνιση όλων των δωματίων στην Αρχική", @@ -1172,8 +1158,6 @@ "New login. Was this you?": "Νέα σύνδεση. Ήσουν εσύ;", "Other users may not trust it": "Άλλοι χρήστες μπορεί να μην το εμπιστεύονται", "Safeguard against losing access to encrypted messages & data": "Προστατευτείτε από την απώλεια πρόσβασης σε κρυπτογραφημένα μηνύματα και δεδομένα", - "Verify": "Επαλήθευση", - "Upgrade": "Αναβάθμιση", "Verify this session": "Επαληθεύστε αυτήν τη συνεδρία", "Encryption upgrade available": "Διατίθεται αναβάθμιση κρυπτογράφησης", "Set up Secure Backup": "Ρυθμίστε το αντίγραφο ασφαλείας", @@ -1190,7 +1174,6 @@ "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "Μοιραστείτε ανώνυμα δεδομένα για να μας βοηθήσετε να εντοπίσουμε προβλήματα. Τίποτα προσωπικό. Χωρίς τρίτους. Μάθετε περισσότερα", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Έχετε συμφωνήσει να μοιραστείτε ανώνυμα δεδομένα χρήσης μαζί μας. Ενημερώνουμε τον τρόπο που λειτουργεί.", "Help improve %(analyticsOwner)s": "Βοηθήστε στη βελτίωση του %(analyticsOwner)s", - "Stop": "Παύση", "That's fine": "Είναι εντάξει", "File Attached": "Tο αρχείο επισυνάφθηκε", "Surround selected text when typing special characters": "Περιτριγυριστείτε το επιλεγμένο κείμενο κατά την πληκτρολόγηση ειδικών χαρακτήρων", @@ -1275,7 +1258,6 @@ "You've successfully verified this user.": "Επαληθεύσατε με επιτυχία αυτόν τον χρήστη.", "Verified!": "Επαληθεύτηκε!", "The other party cancelled the verification.": "Το άλλο μέρος ακύρωσε την επαλήθευση.", - "Call": "Κλήση", "%(name)s on hold": "%(name)s σε αναμονή", "Return to call": "Επιστροφή στην κλήση", "More": "Περισσότερα", @@ -1393,8 +1375,6 @@ "Please enter a name for the space": "Εισαγάγετε ένα όνομα για το χώρο", "Search %(spaceName)s": "Αναζήτηση %(spaceName)s", "Description": "Περιγραφή", - "Upload": "Μεταφόρτωση", - "Delete": "Διαγραφή", "Delete avatar": "Διαγραφή avatar", "Space selection": "Επιλογή χώρου", "Theme": "Θέμα", @@ -1992,7 +1972,6 @@ "one": "1 μη αναγνωσμένη αναφορά.", "other": "%(count)s μη αναγνωσμένα μηνύματα συμπεριλαμβανομένων των αναφορών." }, - "Join": "Συμμετοχή", "Copy room link": "Αντιγραφή συνδέσμου δωματίου", "Forget Room": "Ξεχάστε το δωμάτιο", "Notification options": "Επιλογές ειδοποίησης", @@ -2665,7 +2644,6 @@ "Retry all": "Επανάληψη όλων", "Delete all": "Διαγραφή όλων", "Some of your messages have not been sent": "Μερικά από τα μηνύματα σας δεν έχουν αποσταλεί", - "View": "Προβολή", "You have no visible notifications.": "Δεν έχετε ορατές ειδοποιήσεις.", "Verification requested": "Ζητήθηκε επαλήθευση", "Search spaces": "Αναζήτηση χώρων", @@ -3266,7 +3244,6 @@ "disable": "Απενεργοποίηση", "done": "Τέλος", "edit": "Επεξεργασία", - "enable": "Ενεργοποίηση", "forgot_password": "Ξεχάσατε τον κωδικό;", "forward": "Προώθηση", "invite": "Πρόσκληση", @@ -3287,9 +3264,31 @@ "start": "Έναρξη", "start_chat": "Έναρξη συνομιλίας", "view_source": "Προβολή κώδικα", - "yes": "Ναι" + "yes": "Ναι", + "reject": "Απόρριψη", + "confirm": "Επιβεβαίωση", + "dismiss": "Απόρριψη", + "trust": "Εμπιστοσύνη", + "cancel": "Ακύρωση", + "stop": "Παύση", + "join": "Συμμετοχή", + "close": "Κλείσιμο", + "accept": "Αποδοχή", + "upgrade": "Αναβάθμιση", + "verify": "Επαλήθευση", + "update": "Ενημέρωση", + "call": "Κλήση", + "delete": "Διαγραφή", + "upload": "Μεταφόρτωση", + "collapse": "Σύμπτυξη", + "reset": "Επαναφορά", + "share": "Διαμοιρασμός", + "skip": "Παράβλεψη", + "logout": "Αποσύνδεση", + "view": "Προβολή", + "expand": "Επέκταση" }, "a11y": { "user_menu": "Μενού χρήστη" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 2ba3b39d439..e847ae95903 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -8,7 +8,6 @@ "Single Sign On": "Single Sign On", "Confirm adding email": "Confirm adding email", "Click the button below to confirm adding this email address.": "Click the button below to confirm adding this email address.", - "Confirm": "Confirm", "Add Email Address": "Add Email Address", "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", "The add / bind with MSISDN flow is misconfigured": "The add / bind with MSISDN flow is misconfigured", @@ -46,7 +45,6 @@ "room_name": "Room name" }, "Unable to load! Check your network connectivity and try again.": "Unable to load! Check your network connectivity and try again.", - "Dismiss": "Dismiss", "Attachment": "Attachment", "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", @@ -69,7 +67,6 @@ "Identity server has no terms of service": "Identity server has no terms of service", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.", "Only continue if you trust the owner of the server.": "Only continue if you trust the owner of the server.", - "Trust": "Trust", "Call Failed": "Call Failed", "User Busy": "User Busy", "The user you called is busy.": "The user you called is busy.", @@ -85,7 +82,6 @@ "continue": "Continue", "leave_room": "Leave room", "no": "No", - "enable": "Enable", "learn_more": "Learn more", "yes": "Yes", "decline": "Decline", @@ -96,6 +92,7 @@ "quote": "Quote", "start_chat": "Start chat", "invites_list": "Invites", + "reject": "Reject", "leave": "Leave", "start": "Start", "view_source": "View Source", @@ -110,7 +107,30 @@ "next": "Next", "forward": "Forward", "copy_link": "Copy link", - "disable": "Disable" + "disable": "Disable", + "confirm": "Confirm", + "dismiss": "Dismiss", + "trust": "Trust", + "reload": "Reload", + "cancel": "Cancel", + "stop": "Stop", + "join": "Join", + "close": "Close", + "accept": "Accept", + "upgrade": "Upgrade", + "verify": "Verify", + "update": "Update", + "call": "Call", + "delete": "Delete", + "upload": "Upload", + "collapse": "Collapse", + "apply": "Apply", + "reset": "Reset", + "share": "Share", + "skip": "Skip", + "logout": "Logout", + "view": "View", + "expand": "Expand" }, "Unable to access microphone": "Unable to access microphone", "Call failed because microphone could not be accessed. Check that a microphone is plugged in and set up correctly.": "Call failed because microphone could not be accessed. Check that a microphone is plugged in and set up correctly.", @@ -144,7 +164,6 @@ "User is not logged in": "User is not logged in", "Database unexpectedly closed": "Database unexpectedly closed", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "This may be caused by having the app open in multiple tabs or due to clearing browser data.", - "Reload": "Reload", "Empty room": "Empty room", "%(user1)s and %(user2)s": "%(user1)s and %(user2)s", "%(user)s and %(count)s others": { @@ -198,7 +217,6 @@ "Cancel entering passphrase?": "Cancel entering passphrase?", "Are you sure you want to cancel entering passphrase?": "Are you sure you want to cancel entering passphrase?", "Go Back": "Go Back", - "Cancel": "Cancel", "Setting up keys": "Setting up keys", "Sends the given message as a spoiler": "Sends the given message as a spoiler", "Prepends ¯\\_(ツ)_/¯ to a plain-text message": "Prepends ¯\\_(ツ)_/¯ to a plain-text message", @@ -643,7 +661,6 @@ "Fetching events…": "Fetching events…", "Creating output…": "Creating output…", "That's fine": "That's fine", - "Stop": "Stop", "You previously consented to share anonymous usage data with us. We're updating how that works.": "You previously consented to share anonymous usage data with us. We're updating how that works.", "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More", "Help improve %(analyticsOwner)s": "Help improve %(analyticsOwner)s", @@ -654,17 +671,14 @@ "Don't miss a reply": "Don't miss a reply", "Notifications": "Notifications", "Enable desktop notifications": "Enable desktop notifications", - "Join": "Join", "Unknown room": "Unknown room", "Video call started": "Video call started", - "Close": "Close", "Sound on": "Sound on", "Silence call": "Silence call", "Notifications silenced": "Notifications silenced", "Unknown caller": "Unknown caller", "Voice call": "Voice call", "Video call": "Video call", - "Accept": "Accept", "Use app for a better experience": "Use app for a better experience", "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.", "Use app": "Use app", @@ -676,15 +690,12 @@ "Set up Secure Backup": "Set up Secure Backup", "Encryption upgrade available": "Encryption upgrade available", "Verify this session": "Verify this session", - "Upgrade": "Upgrade", - "Verify": "Verify", "Safeguard against losing access to encrypted messages & data": "Safeguard against losing access to encrypted messages & data", "Other users may not trust it": "Other users may not trust it", "New login. Was this you?": "New login. Was this you?", "Yes, it was me": "Yes, it was me", "What's new?": "What's new?", "What's New": "What's New", - "Update": "Update", "Update %(brand)s": "Update %(brand)s", "New version of %(brand)s is available": "New version of %(brand)s is available", "Guest": "Guest", @@ -976,7 +987,6 @@ "Pin": "Pin", "Return to call": "Return to call", "%(name)s on hold": "%(name)s on hold", - "Call": "Call", "The other party cancelled the verification.": "The other party cancelled the verification.", "Verified!": "Verified!", "You've successfully verified this user.": "You've successfully verified this user.", @@ -1025,9 +1035,7 @@ "Theme": "Theme", "Space selection": "Space selection", "Delete avatar": "Delete avatar", - "Delete": "Delete", "Upload avatar": "Upload avatar", - "Upload": "Upload", "Name": "Name", "Description": "Description", "Search %(spaceName)s": "Search %(spaceName)s", @@ -1049,8 +1057,6 @@ "Creating…": "Creating…", "Show all rooms": "Show all rooms", "Options": "Options", - "Expand": "Expand", - "Collapse": "Collapse", "Click to copy": "Click to copy", "Copied!": "Copied!", "Failed to copy": "Failed to copy", @@ -1084,7 +1090,6 @@ "Add privileged users": "Add privileged users", "Give one or multiple users in this room more privileges": "Give one or multiple users in this room more privileges", "Search users in this room…": "Search users in this room…", - "Apply": "Apply", "This bridge was provisioned by .": "This bridge was provisioned by .", "This bridge is managed by .": "This bridge is managed by .", "Workspace: ": "Workspace: ", @@ -1104,7 +1109,6 @@ "Cross-signing is ready but keys are not backed up.": "Cross-signing is ready but keys are not backed up.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.", "Cross-signing is not set up.": "Cross-signing is not set up.", - "Reset": "Reset", "Cross-signing public keys:": "Cross-signing public keys:", "in memory": "in memory", "not found": "not found", @@ -1552,7 +1556,6 @@ "Verify the link in your inbox": "Verify the link in your inbox", "Complete": "Complete", "Revoke": "Revoke", - "Share": "Share", "Discovery options will appear once you have added an email above.": "Discovery options will appear once you have added an email above.", "Unable to revoke sharing for phone number": "Unable to revoke sharing for phone number", "Unable to share phone number": "Unable to share phone number", @@ -1878,7 +1881,6 @@ "Start chatting": "Start chatting", "Do you want to join %(roomName)s?": "Do you want to join %(roomName)s?", " invited you": " invited you", - "Reject": "Reject", "Reject & Ignore user": "Reject & Ignore user", "You're previewing %(roomName)s. Want to join it?": "You're previewing %(roomName)s. Want to join it?", "%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s can't be previewed. Do you want to join it?", @@ -2535,7 +2537,6 @@ "You're in": "You're in", "Who will you chat to the most?": "Who will you chat to the most?", "We'll help you get connected.": "We'll help you get connected.", - "Skip": "Skip", "Friends and family": "Friends and family", "Coworkers and teams": "Coworkers and teams", "Online community members": "Online community members", @@ -2982,7 +2983,6 @@ "Public spaces": "Public spaces", "Use \"%(query)s\" to search": "Use \"%(query)s\" to search", "Search for": "Search for", - "View": "View", "Spaces you're in": "Spaces you're in", "Failed to query public rooms": "Failed to query public rooms", "Failed to query public spaces": "Failed to query public spaces", @@ -3301,7 +3301,6 @@ "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.": "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.", "Verification requested": "Verification requested", - "Logout": "Logout", "%(creator)s created this DM.": "%(creator)s created this DM.", "%(creator)s created and configured the room.": "%(creator)s created and configured the room.", "You're all caught up": "You're all caught up", diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index 791ff9ab2f7..be0b7840545 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -95,7 +95,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", "Publish this room to the public in %(domain)s's room directory?": "Publish this room to the public in %(domain)s's room directory?", - "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 made future room history visible to all room members, from the point they are invited.", "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s made future room history visible to all room members, from the point they joined.", @@ -207,7 +206,6 @@ "Room": "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.", - "Cancel": "Cancel", "Start automatically after system login": "Start automatically after system login", "Banned by %(displayName)s": "Banned by %(displayName)s", "Options": "Options", @@ -229,7 +227,6 @@ "Incorrect password": "Incorrect password", "Unable to restore session": "Unable to restore session", "If you have previously used a more recent version of %(brand)s, your session may be incompatible with this version. Close this window and return to the more recent version.": "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.", - "Dismiss": "Dismiss", "Token incorrect": "Token incorrect", "Please enter the code it contains:": "Please enter the code it contains:", "powered by Matrix": "powered by Matrix", @@ -244,11 +241,9 @@ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s changed the room avatar to ", "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removed the room avatar.", "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s changed the avatar for %(roomName)s", - "Accept": "Accept", "Add": "Add", "Admin Tools": "Admin Tools", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.", - "Close": "Close", "Create new room": "Create new room", "Home": "Home", "No display name": "No display name", @@ -274,7 +269,6 @@ "Authentication check failed: incorrect password?": "Authentication check failed: incorrect password?", "Do you want to set an email address?": "Do you want to set an 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", "Check for update": "Check for update", "Define the power level of a user": "Define the power level of a user", "Enable automatic language detection for syntax highlighting": "Enable automatic language detection for syntax highlighting", @@ -291,7 +285,6 @@ "Notification targets": "Notification targets", "Today": "Today", "Friday": "Friday", - "Update": "Update", "What's New": "What's New", "On": "On", "Changelog": "Changelog", @@ -311,7 +304,6 @@ "Search…": "Search…", "Unnamed room": "Unnamed room", "Saturday": "Saturday", - "Reject": "Reject", "Monday": "Monday", "Collecting logs": "Collecting logs", "All Rooms": "All Rooms", @@ -378,7 +370,6 @@ "Messages": "Messages", "Actions": "Actions", "Other": "Other", - "Confirm": "Confirm", "Add Email Address": "Add Email Address", "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.", "Confirm adding phone number": "Confirm adding phone number", @@ -391,7 +382,6 @@ "Identity server has no terms of service": "Identity server has no terms of service", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.", "Only continue if you trust the owner of the server.": "Only continue if you trust the owner of the server.", - "Trust": "Trust", "%(name)s is requesting verification": "%(name)s is requesting verification", "Sign In or Create Account": "Sign In or Create Account", "Use your account or create a new one to continue.": "Use your account or create a new one to continue.", @@ -454,6 +444,16 @@ "remove": "Remove", "save": "Save", "start_chat": "Start chat", - "view_source": "View Source" + "view_source": "View Source", + "reject": "Reject", + "confirm": "Confirm", + "dismiss": "Dismiss", + "trust": "Trust", + "cancel": "Cancel", + "close": "Close", + "accept": "Accept", + "update": "Update", + "skip": "Skip", + "logout": "Logout" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index d689eaa3e37..40837d188fa 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -94,7 +94,6 @@ "Enable inline URL previews by default": "Ŝalti entekstan antaŭrigardon al retadresoj", "Enable URL previews for this room (only affects you)": "Ŝalti URL-antaŭrigardon en ĉi tiu ĉambro (nur por vi)", "Enable URL previews by default for participants in this room": "Ŝalti URL-antaŭrigardon por anoj de ĉi tiu ĉambro", - "Accept": "Akcepti", "Incorrect verification code": "Malĝusta kontrola kodo", "Submit": "Sendi", "Phone": "Telefono", @@ -183,9 +182,7 @@ "Members only (since they joined)": "Nur ĉambranoj (ekde la aliĝo)", "Permissions": "Permesoj", "Advanced": "Altnivela", - "Cancel": "Nuligi", "Jump to first unread message.": "Salti al unua nelegita mesaĝo.", - "Close": "Fermi", "not specified": "nespecifita", "This room has no local addresses": "Ĉi tiu ĉambro ne havas lokajn adresojn", "You have enabled URL previews by default.": "Vi ŝaltis implicitajn antaŭrigardojn al retpaĝoj.", @@ -204,7 +201,6 @@ "Copied!": "Kopiita!", "Failed to copy": "Malsukcesis kopii", "Add an Integration": "Aldoni kunigon", - "Dismiss": "Rezigni", "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?", @@ -326,7 +322,6 @@ "Unable to add email address": "Ne povas aldoni retpoŝtadreson", "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.", - "Skip": "Preterpasi", "Name": "Nomo", "You must register to use this functionality": "Vi devas registriĝî 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", @@ -338,7 +333,6 @@ "Signed Out": "Adiaŭinta", "Old cryptography data detected": "Malnovaj datumoj de ĉifroteĥnikaro troviĝis", "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.": "Datumoj el malnova versio de %(brand)s troviĝis. Ĉi tio malfunkciigos tutvojan ĉifradon en la malnova versio. Tutvoje ĉifritaj mesaĝoj interŝanĝitaj freŝtempe per la malnova versio eble ne malĉifreblos. Tio povas kaŭzi malsukceson ankaŭ al mesaĝoj interŝanĝitaj kun tiu ĉi versio. Se vin trafos problemoj, adiaŭu kaj resalutu. Por reteni mesaĝan historion, elportu kaj reenportu viajn ŝlosilojn.", - "Logout": "Adiaŭi", "Connectivity to the server has been lost.": "Konekto al la servilo perdiĝis.", "Sent messages will be stored until your connection has returned.": "Senditaj mesaĝoj konserviĝos ĝis via konekto refunkcios.", "You seem to be uploading files, are you sure you want to quit?": "Ŝajne vi alŝutas dosierojn nun; ĉu vi tamen volas foriri?", @@ -422,7 +416,6 @@ "Notification targets": "Celoj de sciigoj", "Today": "Hodiaŭ", "Friday": "Vendredo", - "Update": "Ĝisdatigi", "What's New": "Kio novas", "On": "Jes", "Changelog": "Protokolo de ŝanĝoj", @@ -442,7 +435,6 @@ "Search…": "Serĉi…", "Event sent!": "Okazo sendiĝis!", "Saturday": "Sabato", - "Reject": "Rifuzi", "Monday": "Lundo", "Toolbox": "Ilaro", "Collecting logs": "Kolektante protokolon", @@ -627,7 +619,6 @@ "Room avatar": "Profilbildo de ĉambro", "Room Name": "Nomo de ĉambro", "Room Topic": "Temo de ĉambro", - "Join": "Aliĝi", "Invite anyway": "Tamen inviti", "Updating %(brand)s": "Ĝisdatigante %(brand)s", "Go back": "Reen iri", @@ -641,7 +632,6 @@ "Change": "Ŝanĝi", "Email (optional)": "Retpoŝto (malnepra)", "Phone (optional)": "Telefono (malnepra)", - "Confirm": "Konfirmi", "Other": "Alia", "Couldn't load page": "Ne povis enlegi paĝon", "Guest": "Gasto", @@ -777,7 +767,6 @@ "Upload files (%(current)s of %(total)s)": "Alŝuti dosierojn (%(current)s el %(total)s)", "Upload files": "Alŝuti dosierojn", "Upload all": "Alŝuti ĉiujn", - "Upload": "Alŝuti", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Ĉi tiu dosiero tro grandas por alŝuto. La grandolimo estas %(limit)s sed la dosiero grandas %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Ĉi tiuj dosieroj tro grandas por alŝuto. La grandolimo estas %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Iuj dosieroj tro grandas por alŝuto. La grandolimo estas %(limit)s.", @@ -920,7 +909,6 @@ "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Se vi ne forigis la rehavan metodon, eble atakanto provas aliri vian konton. Vi tuj ŝanĝu la pasvorton de via konto, kaj agordu novan rehavan metodon en la agordoj.", "Use a longer keyboard pattern with more turns": "Uzu pli longan tekston kun plia varieco", "Unable to load key backup status": "Ne povas enlegi staton de ŝlosila savkopio", - "Reset": "Restarigi", "Demote yourself?": "Ĉu malrangaltigi vin mem?", "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.": "Vi ne povos malfari tiun ŝanĝon, ĉar vi malrangaltigas vin mem; se vi estas la lasta povohava uzanto en la ĉambro, estos neeble vian povon rehavi.", "Demote": "Malrangaltigi", @@ -1009,12 +997,10 @@ "Italics": "Kursive", "Strikethrough": "Trastrekite", "Code block": "Kodujo", - "View": "Rigardo", "Explore rooms": "Esplori ĉambrojn", "Add Email Address": "Aldoni retpoŝtadreson", "Add Phone Number": "Aldoni telefonnumeron", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ĉi tiu ago bezonas atingi la norman identigan servilon por kontroli retpoŝtadreson aŭ telefonnumeron, sed la servilo ne havas uzokondiĉojn.", - "Trust": "Fido", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "Show previews/thumbnails for images": "Montri antaŭrigardojn/bildetojn por bildoj", "You should remove your personal data from identity server before disconnecting. Unfortunately, identity server is currently offline or cannot be reached.": "Vi forigu viajn personajn datumojn de identiga servilo antaŭ ol vi malkonektiĝos. Bedaŭrinde, identiga servilo estas nuntempe eksterreta kaj ne eblas ĝin atingi.", @@ -1032,7 +1018,6 @@ "Verify the link in your inbox": "Kontrolu la ligilon en via ricevujo", "Complete": "Fini", "Revoke": "Senvalidigi", - "Share": "Havigi", "Discovery options will appear once you have added an email above.": "Eltrovaj agordoj aperos kiam vi aldonos supre retpoŝtadreson.", "Unable to revoke sharing for phone number": "Ne povas senvalidigi havigadon je telefonnumero", "Unable to share phone number": "Ne povas havigi telefonnumeron", @@ -1152,8 +1137,6 @@ "Lock": "Seruro", "Other users may not trust it": "Aliaj uzantoj eble ne kredas ĝin", "Later": "Pli poste", - "Verify": "Kontroli", - "Upgrade": "Gradaltigi", "Cannot connect to integration manager": "Ne povas konektiĝi al kunigilo", "The integration manager is offline or it cannot reach your homeserver.": "La kunigilo estas eksterreta aŭ ne povas atingi vian hejmservilon.", "This room is end-to-end encrypted": "Ĉi tiu ĉambro uzas tutvojan ĉifradon", @@ -2148,7 +2131,6 @@ "%(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.", "Public": "Publika", - "Delete": "Forigi", "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.", "Already in call": "Jam vokanta", @@ -2441,8 +2423,6 @@ "Error saving notification preferences": "Eraris konservado de preferoj pri sciigoj", "Messages containing keywords": "Mesaĝoj enhavantaj ĉefvortojn", "Message bubbles": "Mesaĝaj vezikoj", - "Collapse": "Maletendi", - "Expand": "Etendi", "Recommended for public spaces.": "Rekomendita por publikaj aroj.", "Allow people to preview your space before they join.": "Povigi personojn antaŭrigardi vian aron antaŭ aliĝo.", "To publish an address, it needs to be set as a local address first.": "Por ke adreso publikiĝu, ĝi unue devas esti loka adreso.", @@ -2848,7 +2828,6 @@ "Send read receipts": "Sendi legitajn kvitanojn", "New group call experience": "La nova grupvoka sperto", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Vi antaŭe konsentis kunhavigi anonimajn uzdatumojn kun ni. Ni ĝisdatigas kiel tio funkcias.", - "Stop": "Fini", "That's fine": "Tio estas bone", "Export successful!": "Eksporto sukcesa!", "Error fetching file": "Eraro alportante dosieron", @@ -2933,7 +2912,6 @@ "disable": "Malŝalti", "done": "Fini", "edit": "Redakti", - "enable": "Ŝalti", "forgot_password": "Ĉu forgesis pasvorton?", "forward": "Plusendi", "invite": "Inviti", @@ -2954,9 +2932,30 @@ "start": "Komenci", "start_chat": "Komenci babilon", "view_source": "Vidi fonton", - "yes": "Jes" + "yes": "Jes", + "reject": "Rifuzi", + "confirm": "Konfirmi", + "dismiss": "Rezigni", + "trust": "Fido", + "cancel": "Nuligi", + "stop": "Fini", + "join": "Aliĝi", + "close": "Fermi", + "accept": "Akcepti", + "upgrade": "Gradaltigi", + "verify": "Kontroli", + "update": "Ĝisdatigi", + "delete": "Forigi", + "upload": "Alŝuti", + "collapse": "Maletendi", + "reset": "Restarigi", + "share": "Havigi", + "skip": "Preterpasi", + "logout": "Adiaŭi", + "view": "Rigardo", + "expand": "Etendi" }, "a11y": { "user_menu": "Menuo de uzanto" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index 46946e2d895..4a95d2e60eb 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -67,9 +67,7 @@ "Sign in with": "Iniciar sesión con", "Join Room": "Unirme a la sala", "Labs": "Experimentos", - "Logout": "Cerrar sesión", "Low priority": "Prioridad baja", - "Accept": "Aceptar", "Add": "Añadir", "Admin Tools": "Herramientas de administración", "No Microphones detected": "Micrófono no detectado", @@ -78,7 +76,6 @@ "Microphone": "Micrófono", "Camera": "Cámara", "Anyone": "Todos", - "Close": "Cerrar", "Custom level": "Nivel personalizado", "Enter passphrase": "Introducir frase de contraseña", "Export": "Exportar", @@ -168,11 +165,8 @@ "This doesn't appear to be a valid email address": "Esto no parece un e-mail váido", "This phone number is already in use": "Este número de teléfono ya está en uso", "This room is not accessible by remote Matrix servers": "Esta sala no es accesible desde otros servidores de Matrix", - "Cancel": "Cancelar", - "Dismiss": "Omitir", "powered by Matrix": "con el poder de Matrix", "unknown error code": "Código de error desconocido", - "Skip": "Omitir", "Do you want to set an email address?": "¿Quieres poner una dirección de correo electrónico?", "This will allow you to reset your password and receive notifications.": "Esto te permitirá reiniciar tu contraseña y recibir notificaciones.", "Authentication check failed: incorrect password?": "La verificación de autenticación falló: ¿contraseña incorrecta?", @@ -247,7 +241,6 @@ "Notification targets": "Destinos de notificaciones", "Today": "Hoy", "Friday": "Viernes", - "Update": "Actualizar", "What's New": "Novedades", "On": "Encendido", "Changelog": "Registro de cambios", @@ -270,7 +263,6 @@ "Preparing to send logs": "Preparando para enviar registros", "Unnamed room": "Sala sin nombre", "Saturday": "Sábado", - "Reject": "Rechazar", "Monday": "Lunes", "Toolbox": "Caja de herramientas", "Collecting logs": "Recolectando registros", @@ -715,7 +707,6 @@ "Main address": "Dirección principal", "Room avatar": "Avatar de la sala", "Room Name": "Nombre de sala", - "Join": "Unirse", "The following users may not exist": "Puede que estos usuarios no existan", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "No se pudieron encontrar perfiles para los IDs Matrix listados a continuación, ¿Quieres invitarles igualmente?", "Invite anyway and never warn me again": "Invitar igualmente, y no preguntar más en el futuro", @@ -776,7 +767,6 @@ "Identity server has no terms of service": "El servidor de identidad no tiene términos de servicio", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Esta acción necesita acceder al servidor de identidad por defecto para validar un correo o un teléfono, pero el servidor no tiene términos de servicio.", "Only continue if you trust the owner of the server.": "Continúa solamente si confías en el propietario del servidor.", - "Trust": "Confiar", "Custom (%(level)s)": "Personalizado (%(level)s)", "Error upgrading room": "Fallo al mejorar la sala", "Double check that your server supports the room version chosen and try again.": "Asegúrate de que tu servidor es compatible con la versión de sala elegida y prueba de nuevo.", @@ -825,10 +815,7 @@ "To be secure, do this in person or use a trusted way to communicate.": "Para mayor seguridad, haz esto en persona o usando una forma de comunicación de confianza.", "Lock": "Bloquear", "Other users may not trust it": "Puede que otros usuarios no confíen en ella", - "Upgrade": "Actualizar", - "Verify": "Verificar", "Later": "Más tarde", - "Upload": "Enviar", "Show less": "Ver menos", "Show more": "Ver más", "in memory": "en memoria", @@ -989,7 +976,6 @@ "Your email address hasn't been verified yet": "Tu dirección de email no ha sido verificada", "Verify the link in your inbox": "Verifica el enlace en tu bandeja de entrada", "Complete": "Completar", - "Share": "Compartir", "Remove %(email)s?": "¿Eliminar %(email)s?", "This backup is trusted because it has been restored on this session": "Esta copia de seguridad es de confianza porque ha sido restaurada en esta sesión", "Your keys are not being backed up from this session.": "No se está haciendo una copia de seguridad de tus claves en esta sesión.", @@ -1009,7 +995,6 @@ "Single Sign On": "Single Sign On", "Confirm adding email": "Confirmar un nuevo correo electrónico", "Click the button below to confirm adding this email address.": "Haz clic en el botón de abajo para confirmar esta nueva dirección de correo electrónico.", - "Confirm": "Confirmar", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirma el nuevo número de teléfono usando SSO para probar tu identidad.", "Confirm adding phone number": "Confirmar nuevo número de teléfono", "Click the button below to confirm adding this phone number.": "Haz clic en el botón de abajo para confirmar este nuevo número de teléfono.", @@ -1102,7 +1087,6 @@ "This room is bridging messages to the following platforms. Learn more.": "Esta sala está haciendo puente con las siguientes plataformas. Aprende más.", "Bridges": "Puentes", "Uploaded sound": "Sonido subido", - "Reset": "Restablecer", "Unable to revoke sharing for email address": "No se logró revocar el compartir para la dirección de correo electrónico", "Unable to share email address": "No se logró compartir la dirección de correo electrónico", "Click the link in the email you received to verify and then click continue again.": "Haz clic en el enlace del correo electrónico para verificar, y luego nuevamente haz clic en continuar.", @@ -1400,7 +1384,6 @@ "Explore Public Rooms": "Explora las salas públicas", "Create a Group Chat": "Crea un grupo", "%(creator)s created and configured the room.": "Sala creada y configurada por %(creator)s.", - "View": "Ver", "Explore rooms": "Explorar salas", "Jump to first invite.": "Salte a la primera invitación.", "Add room": "Añadir una sala", @@ -2213,7 +2196,6 @@ "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", - "Delete": "Borrar", "This homeserver has been blocked by its administrator.": "Este servidor base ha sido bloqueado por su administración.", "You're already in a call with this person.": "Ya estás en una llamada con esta persona.", "This room is suggested as a good one to join": "Unirse a esta sala está sugerido", @@ -2383,8 +2365,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Los espacios publicados pueden usarse por cualquiera, independientemente de su servidor base.", "This space has no local addresses": "Este espacio no tiene direcciones locales", "Space information": "Información del espacio", - "Collapse": "Encoger", - "Expand": "Expandir", "Recommended for public spaces.": "Recomendado para espacios públicos.", "Allow people to preview your space before they join.": "Permitir que se pueda ver una vista previa del espacio antes de unirse a él.", "Preview Space": "Previsualizar espacio", @@ -2599,7 +2579,6 @@ "Include Attachments": "Incluir archivos adjuntos", "Size Limit": "Límite de tamaño", "Format": "Formato", - "Stop": "Parar", "MB": "MB", "In reply to this message": "En respuesta a este mensaje", "Export chat": "Exportar conversación", @@ -2940,7 +2919,6 @@ "Last week": "Última semana", "Internal room ID": "ID interna de la sala", "IRC (Experimental)": "IRC (en pruebas)", - "Call": "Llamar", "This is a beta feature": "Esta funcionalidad está en beta", "Feedback sent! Thanks, we appreciate it!": "¡Opinión enviada! Gracias, te lo agradecemos.", "%(oneUser)ssent %(count)s hidden messages": { @@ -3568,7 +3546,6 @@ "Feeling experimental? Try out our latest ideas in development. These features are not finalised; they may be unstable, may change, or may be dropped altogether. Learn more.": "¿Te apetece probar cosas experimentales? Aquí encontrarás nuestras ideas en desarrollo. No están terminadas, pueden ser inestables, cambiar o dejar de estar disponibles. Más información.", "What's next for %(brand)s? Labs are the best way to get things early, test out new features and help shape them before they actually launch.": "¿Qué novedades se esperan en %(brand)s? La sección de experimentos es la mejor manera de ver las cosas antes de que se publiquen, probar nuevas funcionalidades y ayudar a mejorarlas antes de su lanzamiento.", "Upcoming features": "Funcionalidades futuras", - "Apply": "Aplicar", "Search users in this room…": "Buscar usuarios en esta sala…", "Give one or multiple users in this room more privileges": "Otorga a uno o más usuarios privilegios especiales en esta sala", "Add privileged users": "Añadir usuarios privilegiados", @@ -3668,7 +3645,6 @@ "WARNING: session already verified, but keys do NOT MATCH!": "ADVERTENCIA: la sesión ya está verificada, pero las claves NO COINCIDEN", "iframe has no src attribute": "el iframe no tiene atributo src", "Use your account to continue.": "Usa tu cuenta para configurar.", - "Reload": "Recargar", "Database unexpectedly closed": "La base de datos se ha cerrado de forma inesperada", "Identity server not set": "Servidor de identidad no configurado", "Homeserver is %(homeserverUrl)s": "El servidor base es %(homeserverUrl)s", @@ -3756,7 +3732,6 @@ "disable": "Desactivar", "done": "Listo", "edit": "Editar", - "enable": "Activar", "forgot_password": "¿Has olvidado tu contraseña?", "forward": "Reenviar", "invite": "Invitar", @@ -3777,9 +3752,33 @@ "start": "Empezar", "start_chat": "Empezar una conversación", "view_source": "Ver fuente", - "yes": "Sí" + "yes": "Sí", + "reject": "Rechazar", + "confirm": "Confirmar", + "dismiss": "Omitir", + "trust": "Confiar", + "reload": "Recargar", + "cancel": "Cancelar", + "stop": "Parar", + "join": "Unirse", + "close": "Cerrar", + "accept": "Aceptar", + "upgrade": "Actualizar", + "verify": "Verificar", + "update": "Actualizar", + "call": "Llamar", + "delete": "Borrar", + "upload": "Enviar", + "collapse": "Encoger", + "apply": "Aplicar", + "reset": "Restablecer", + "share": "Compartir", + "skip": "Omitir", + "logout": "Cerrar sesión", + "view": "Ver", + "expand": "Expandir" }, "a11y": { "user_menu": "Menú del Usuario" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index 45da45f446e..e5b6cc2ef25 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -1,14 +1,11 @@ { "This email address is already in use": "See e-posti aadress on juba kasutusel", "This phone number is already in use": "See telefoninumber on juba kasutusel", - "Confirm": "Kinnita", "Add Email Address": "Lisa e-posti aadress", "Failed to verify email address: make sure you clicked the link in the email": "E-posti aadressi kontrollimine ei õnnestunud: palun vaata, et sa kindlasti klõpsisid saabunud kirjas olnud viidet", "Unable to load! Check your network connectivity and try again.": "Laadimine ei õnnestunud! Kontrolli oma võrguühendust ja proovi uuesti.", - "Dismiss": "Loobu", "Call Failed": "Kõne ebaõnnestus", "Call failed due to misconfigured server": "Kõne ebaõnnestus valesti seadistatud serveri tõttu", - "Cancel": "Loobu", "Send": "Saada", "Jan": "jaan", "Feb": "veeb", @@ -63,7 +60,6 @@ "Today": "Täna", "Yesterday": "Eile", "Create new room": "Loo uus jututuba", - "Join": "Liitu", "Please create a new issue on GitHub so that we can investigate this bug.": "Selle vea uurimiseks palun loo uus veateade meie GitHub'is.", "collapse": "ahenda", "expand": "laienda", @@ -215,7 +211,6 @@ "Submit logs": "Saada rakenduse logid", "Something went wrong!": "Midagi läks nüüd valesti!", "What's New": "Meie uudised", - "Update": "Uuenda", "What's new?": "Mida on meil uut?", "Your server": "Sinu server", "Matrix": "Matrix", @@ -273,7 +268,6 @@ "Identity server has no terms of service": "Isikutuvastusserveril puuduvad kasutustingimused", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "E-posti aadressi või telefoninumbri kontrolliks see tegevus eeldab päringut vaikimisi isikutuvastusserverisse , aga sellel serveril puuduvad kasutustingimused.", "Only continue if you trust the owner of the server.": "Jätka vaid siis, kui sa usaldad serveri omanikku.", - "Trust": "Usalda", "%(name)s is requesting verification": "%(name)s soovib verifitseerimist", "Securely cache encrypted messages locally for them to appear in search results.": "Turvaliselt puhverda krüptitud sõnumid kohalikku arvutisse ja võimalda kasutada neid otsingus.", "%(brand)s is missing some components required for securely caching encrypted messages locally. If you'd like to experiment with this feature, build a custom %(brand)s Desktop with search components added.": "%(brand)s'is on puudu need komponendid, mis võimaldavad otsida kohalikest turvaliselt puhverdatud krüptitud sõnumitest. Kui sa tahaksid sellist funktsionaalsust katsetada, siis pead kompileerima %(brand)s'i variandi, kus need komponendid on lisatud.", @@ -361,7 +355,6 @@ "%(creator)s created and configured the room.": "%(creator)s lõi ja seadistas jututoa.", "How fast should messages be downloaded.": "Kui kiiresti peaksime sõnumeid alla laadima.", "Error downloading theme information.": "Viga teema teabefaili allalaadimisel.", - "Close": "Sulge", "Drop file here to upload": "Faili üleslaadimiseks lohista ta siia", "This user has not verified all of their sessions.": "See kasutaja ei ole verifitseerinud kõiki oma sessioone.", "You have not verified this user.": "Sa ei ole seda kasutajat verifitseerinud.", @@ -394,7 +387,6 @@ "%(senderDisplayName)s changed the room name from %(oldRoomName)s to %(newRoomName)s.": "%(senderDisplayName)s muutis jututoa vana nime %(oldRoomName)s uueks nimeks %(newRoomName)s.", "%(senderDisplayName)s changed the room name to %(roomName)s.": "%(senderDisplayName)s muutis jututoa nimeks %(roomName)s.", "Show info about bridges in room settings": "Näita jututoa seadistustes teavet sõnumisildade kohta", - "Upload": "Laadi üles", "General": "Üldist", "Notifications": "Teavitused", "Security & Privacy": "Turvalisus ja privaatsus", @@ -514,7 +506,6 @@ "Always show message timestamps": "Alati näita sõnumite ajatempleid", "Manually verify all remote sessions": "Verifitseeri käsitsi kõik välised sessioonid", "Collecting app version information": "Kogun teavet rakenduse versiooni kohta", - "Accept": "Võta vastu", "The other party cancelled the verification.": "Teine osapool tühistas verifitseerimise.", "Verified!": "Verifitseeritud!", "You've successfully verified this user.": "Sa oled edukalt verifitseerinud selle kasutaja.", @@ -598,8 +589,6 @@ "Review": "Vaata üle", "Other users may not trust it": "Teised kasutajad ei pruugi seda usaldada", "Set up": "Võta kasutusele", - "Upgrade": "Uuenda", - "Verify": "Verifitseeri", "Accept to continue:": "Jätkamiseks nõustu 'ga:", "Show less": "Näita vähem", "Show more": "Näita rohkem", @@ -656,8 +645,6 @@ "Notify the whole room": "Teavita kogu jututuba", "Users": "Kasutajad", "Terms and Conditions": "Kasutustingimused", - "Logout": "Logi välja", - "View": "Näita", "You can't send any messages until you review and agree to our terms and conditions.": "Sa ei saa saata ühtego sõnumit enne, kui oled läbi lugenud ja nõustunud meie kasutustingimustega.", "Couldn't load page": "Lehe laadimine ei õnnestunud", "You must register to use this functionality": "Selle funktsionaalsuse kasutamiseks pead sa registreeruma", @@ -712,7 +699,6 @@ "Start chatting": "Alusta vestlust", "Do you want to join %(roomName)s?": "Kas sa soovid liitud jututoaga %(roomName)s?", " invited you": " kutsus sind", - "Reject": "Hülga", "You're previewing %(roomName)s. Want to join it?": "Sa vaatad jututoa %(roomName)s eelvaadet. Kas soovid sellega liituda?", "%(roomName)s can't be previewed. Do you want to join it?": "Jututoal %(roomName)s puudub eelvaate võimalus. Kas sa soovid sellega liituda?", "%(roomName)s does not exist.": "Jututuba %(roomName)s ei ole olemas.", @@ -737,7 +723,6 @@ "Verify the link in your inbox": "Verifitseeri klõpsides viidet saabunud e-kirjas", "Complete": "Valmis", "Revoke": "Tühista", - "Share": "Jaga", "Session already verified!": "Sessioon on juba verifitseeritud!", "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "HOIATUS: VÕTMETE VERIFITSEERIMINE EI ÕNNESTUNUD! Kasutaja %(userId)s ja sessiooni %(deviceId)s allkirjastamise võti on „%(fprint)s“, aga see ei vasta antud sõrmejäljele „%(fingerprint)s“. See võib tähendada, et sinu kasutatavad ühendused võivad olla kolmanda osapoole poolt vahelt lõigatud!", "Verified key": "Verifitseeritud võti", @@ -783,7 +768,6 @@ "Preparing to send logs": "Valmistun logikirjete saatmiseks", "Failed to send logs: ": "Logikirjete saatmine ei õnnestunud: ", "Verify session": "Verifitseeri sessioon", - "Skip": "Jäta vahele", "Token incorrect": "Vigane tunnusluba", "%(oneUser)schanged their name %(count)s times": { "one": "Kasutaja %(oneUser)s muutis oma nime", @@ -867,7 +851,6 @@ "Uploaded sound": "Üleslaaditud heli", "Sounds": "Helid", "Notification sound": "Teavitusheli", - "Reset": "Taasta algolek", "Set a new custom sound": "Seadista uus kohandatud heli", "were invited %(count)s times": { "other": "said kutse %(count)s korda", @@ -2198,7 +2181,6 @@ "Open space for anyone, best for communities": "Avaliku ligipääsuga kogukonnakeskus", "Public": "Avalik", "Create a space": "Loo kogukonnakeskus", - "Delete": "Kustuta", "Jump to the bottom of the timeline when you send a message": "Sõnumi saatmiseks hüppa ajajoone lõppu", "%(count)s members": { "other": "%(count)s liiget", @@ -2381,8 +2363,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Avaldatud aadresse saab igaüks igast serverist kasutada liitumiseks sinu kogukonnakeskusega.", "This space has no local addresses": "Sellel kogukonnakeskusel puuduvad kohalikud aadressid", "Space information": "Kogukonnakeskuse teave", - "Collapse": "ahenda", - "Expand": "laienda", "Recommended for public spaces.": "Soovitame avalike kogukonnakeskuste puhul.", "Allow people to preview your space before they join.": "Luba huvilistel enne liitumist näha kogukonnakeskuse eelvaadet.", "Preview Space": "Kogukonnakeskuse eelvaade", @@ -2598,7 +2578,6 @@ "Select from the options below to export chats from your timeline": "Kui soovid oma ajajoonelt mõnda vestlust eksportida, siis vali tingimused alljärgnevalt", "Export Chat": "Ekspordi vestlus", "Exporting your data": "Ekspordin sinu andmeid", - "Stop": "Peata", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Kas sa oled kindel, et soovid oma andmete eksporti katkestada? Kui nii toimid, siis pead hiljem uuesti alustama.", "Your export was successful. Find it in your Downloads folder.": "Sinu andmete eksport õnnestus. Faili leiad tavapärasest allalaadimiste kaustast.", "The export was cancelled successfully": "Ekspordi tühistamine õnnestus", @@ -3116,7 +3095,6 @@ "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s toimib nutiseadme veebibrauseris kastseliselt. Parima kasutajakogemuse ja uusima funktsionaalsuse jaoks kasuta meie rakendust.", "Force complete": "Sunni lõpetama", "": "", - "Call": "Helista", "%(errcode)s was returned while trying to access the room or space. If you think you're seeing this message in error, please submit a bug report.": "Astumisel jututuppa või liitumisel kogukonnaga tekkis viga %(errcode)s. Kui sa arvad, et sellise põhjusega viga ei tohiks tekkida, siis palun koosta veateade.", "Try again later, or ask a room or space admin to check if you have access.": "Proovi hiljem uuesti või küsi jututoa või kogukonna haldurilt, kas sul on ligipääs olemas.", "This room or space is not accessible at this time.": "See jututuba või kogukond pole hetkel ligipääsetav.", @@ -3588,7 +3566,6 @@ "Re-enter email address": "Sisesta e-posti aadress uuesti", "Wrong email address?": "Kas e-posti aadress pole õige?", "Hide notification dot (only display counters badges)": "Peida teavituse täpp (ja näita loendure)", - "Apply": "Rakenda", "Search users in this room…": "Vali kasutajad sellest jututoast…", "Give one or multiple users in this room more privileges": "Lisa selles jututoas ühele või mitmele kasutajale täiendavaid õigusi", "Add privileged users": "Lisa kasutajatele täiendavaid õigusi", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Valitud kuupäeva vaate otsimisel ja avamisel tekkis võrguühenduse viga. Kas näiteks sinu koduserver hetkel ei tööta või on ajutisi katkestusi sinu internetiühenduses. Palun proovi mõne aja pärast uuesti. Kui viga kordub veel hiljemgi, siis palun suhtle oma koduserveri haldajaga.", "Poll history": "Küsitluste ajalugu", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Kasutaja %(user)s siiski ei saanud kutset %(roomId)s jututuppa, kuid kutse saatja liides ei kuvanud ka viga", - "Reload": "Laadi uuesti", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "See võib olla seotud asjaoluga, et rakendus on avatud mitmes brauseriaknas korraga või brauseri andmete kustutamise tõttu.", "Database unexpectedly closed": "Andmebaasiühendus sulgus ootamatult", "Match default setting": "Sobita vaikimisi seadistusega", @@ -3950,7 +3926,6 @@ "disable": "Lülita välja", "done": "Valmis", "edit": "Muuda", - "enable": "Võta kasutusele", "forgot_password": "Kas unustasid oma salasõna?", "forward": "Edasta", "invite": "Kutsu", @@ -3971,9 +3946,33 @@ "start": "Alusta", "start_chat": "Alusta vestlust", "view_source": "Vaata lähtekoodi", - "yes": "Jah" + "yes": "Jah", + "reject": "Hülga", + "confirm": "Kinnita", + "dismiss": "Loobu", + "trust": "Usalda", + "reload": "Laadi uuesti", + "cancel": "Loobu", + "stop": "Peata", + "join": "Liitu", + "close": "Sulge", + "accept": "Võta vastu", + "upgrade": "Uuenda", + "verify": "Verifitseeri", + "update": "Uuenda", + "call": "Helista", + "delete": "Kustuta", + "upload": "Laadi üles", + "collapse": "ahenda", + "apply": "Rakenda", + "reset": "Taasta algolek", + "share": "Jaga", + "skip": "Jäta vahele", + "logout": "Logi välja", + "view": "Näita", + "expand": "laienda" }, "a11y": { "user_menu": "Kasutajamenüü" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index ef90882a64d..1917896fe8a 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -1,6 +1,4 @@ { - "Accept": "Onartu", - "Close": "Itxi", "Create new room": "Sortu gela berria", "Failed to change password. Is your password correct?": "Pasahitza aldatzean huts egin du. Zuzena da pasahitza?", "Failed to forget room %(errCode)s": "Huts egin du %(errCode)s gela ahaztean", @@ -9,7 +7,6 @@ "Operation failed": "Eragiketak huts egin du", "Search": "Bilatu", "unknown error code": "errore kode ezezaguna", - "Dismiss": "Baztertu", "powered by Matrix": "Matrix-ekin egina", "Room": "Gela", "Historical": "Historiala", @@ -21,7 +18,6 @@ "Join Room": "Elkartu gelara", "Register": "Eman izena", "Submit": "Bidali", - "Skip": "Saltatu", "Return to login screen": "Itzuli saio hasierarako pantailara", "Email address": "E-mail helbidea", "The email address linked to your account must be entered.": "Zure kontura gehitutako e-mail helbidea sartu behar da.", @@ -34,7 +30,6 @@ "Unban": "Debekua kendu", "Connectivity to the server has been lost.": "Zerbitzariarekin konexioa galdu da.", "You do not have permission to post to this room": "Ez duzu gela honetara mezuak bidaltzeko baimenik", - "Logout": "Amaitu saioa", "Filter room members": "Iragazi gelako kideak", "Email": "E-mail", "Phone": "Telefonoa", @@ -276,7 +271,6 @@ "%(widgetName)s widget modified by %(senderName)s": "%(widgetName)s trepeta aldatu du %(senderName)s erabiltzaileak", "Copied!": "Kopiatuta!", "Failed to copy": "Kopiak huts egin du", - "Cancel": "Utzi", "Ignore": "Ezikusi", "Unignore": "Ez ezikusi", "You are now ignoring %(userId)s": "%(userId)s ezikusten ari zara", @@ -430,7 +424,6 @@ "Notification targets": "Jakinarazpenen helburuak", "Today": "Gaur", "Friday": "Ostirala", - "Update": "Eguneratu", "What's New": "Zer dago berri", "On": "Bai", "Changelog": "Aldaketa-egunkaria", @@ -451,7 +444,6 @@ "Event sent!": "Gertaera bidalita!", "Preparing to send logs": "Egunkariak bidaltzeko prestatzen", "Saturday": "Larunbata", - "Reject": "Baztertu", "Monday": "Astelehena", "Toolbox": "Tresna-kutxa", "Collecting logs": "Egunkariak biltzen", @@ -687,7 +679,6 @@ "Change": "Aldatu", "Email (optional)": "E-mail (aukerakoa)", "Phone (optional)": "Telefonoa (aukerakoa)", - "Confirm": "Berretsi", "Join millions for free on the largest public server": "Elkartu milioika pertsonekin dohain hasiera zerbitzari publiko handienean", "Other": "Beste bat", "Couldn't load page": "Ezin izan da orria kargatu", @@ -718,7 +709,6 @@ "Ignored users": "Ezikusitako erabiltzaileak", "Voice & Video": "Ahotsa eta bideoa", "Main address": "Helbide nagusia", - "Join": "Elkartu", "Your password has been reset.": "Zure pasahitza berrezarri da.", "Create account": "Sortu kontua", "Recovery Method Removed": "Berreskuratze metodoa kendu da", @@ -842,7 +832,6 @@ "Uploaded sound": "Igotako soinua", "Sounds": "Soinuak", "Notification sound": "Jakinarazpen soinua", - "Reset": "Berrezarri", "Set a new custom sound": "Ezarri soinu pertsonalizatua", "Browse": "Arakatu", "Join the conversation with an account": "Elkartu elkarrizketara kontu batekin", @@ -874,7 +863,6 @@ "Missing session data": "Saioaren datuak falta dira", "Upload files (%(current)s of %(total)s)": "Igo fitxategiak (%(current)s / %(total)s)", "Upload files": "Igo fitxategiak", - "Upload": "Igo", "Upload %(count)s other files": { "other": "Igo beste %(count)s fitxategiak", "one": "Igo beste fitxategi %(count)s" @@ -964,7 +952,6 @@ "Unable to revoke sharing for email address": "Ezin izan da partekatzea indargabetu e-mail helbidearentzat", "Unable to share email address": "Ezin izan da e-mail helbidea partekatu", "Revoke": "Indargabetu", - "Share": "Partekatu", "Discovery options will appear once you have added an email above.": "Aurkitze aukerak behin goian e-mail helbide bat gehitu duzunean agertuko dira.", "Unable to revoke sharing for phone number": "Ezin izan da partekatzea indargabetu telefono zenbakiarentzat", "Unable to share phone number": "Ezin izan da telefono zenbakia partekatu", @@ -1062,7 +1049,6 @@ "Document": "Dokumentua", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Captcha-ren gako publikoa falta da hasiera-zerbitzariaren konfigurazioan. Eman honen berri hasiera-zerbitzariaren administratzaileari.", "%(creator)s created and configured the room.": "%(creator)s erabiltzaileak gela sortu eta konfiguratu du.", - "View": "Ikusi", "Explore rooms": "Arakatu gelak", "Emoji Autocomplete": "Emoji osatze automatikoa", "Notification Autocomplete": "Jakinarazpen osatze automatikoa", @@ -1093,7 +1079,6 @@ "Jump to first invite.": "Jauzi lehen gonbidapenera.", "Command Autocomplete": "Aginduak auto-osatzea", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ekintza honek lehenetsitako identitate-zerbitzaria atzitzea eskatzen du, e-mail helbidea edo telefono zenbakia balioztatzeko, baina zerbitzariak ez du erabilera baldintzarik.", - "Trust": "Jo fidagarritzat", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "Message Actions": "Mezu-ekintzak", "You verified %(name)s": "%(name)s egiaztatu duzu", @@ -1146,7 +1131,6 @@ "Trusted": "Konfiantzazkoa", "Not trusted": "Ez konfiantzazkoa", "Messages in this room are end-to-end encrypted.": "Gela honetako mezuak muturretik muturrera zifratuta daude.", - "Verify": "Egiaztatu", "You have ignored this user, so their message is hidden. Show anyways.": "Erabiltzaile hau ezikusi duzu, beraz bere mezua ezkutatuta dago. Erakutsi hala ere.", "Any of the following data may be shared:": "Datu hauetako edozein partekatu daiteke:", "Your display name": "Zure pantaila-izena", @@ -1204,7 +1188,6 @@ "Upgrade public room": "Eguneratu gela publikoa", "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Gela eguneratzea ekintza aurreratu bat da eta akatsen, falta diren ezaugarrien, edo segurtasun arazoen erruz gela ezegonkorra denean aholkatzen da.", "You'll upgrade this room from to .": "Gela hau bertsiotik bertsiora eguneratuko duzu.", - "Upgrade": "Eguneratu", "Unable to set up secret storage": "Ezin izan da biltegi sekretua ezarri", "Language Dropdown": "Hizkuntza menua", "Country Dropdown": "Herrialde menua", @@ -1612,7 +1595,6 @@ "disable": "Desgaitu", "done": "Egina", "edit": "Editatu", - "enable": "Gaitu", "invite": "Gonbidatu", "invites_list": "Gonbidapenak", "leave": "Atera", @@ -1630,9 +1612,26 @@ "start": "Hasi", "start_chat": "Hasi txata", "view_source": "Ikusi iturria", - "yes": "Bai" + "yes": "Bai", + "reject": "Baztertu", + "confirm": "Berretsi", + "dismiss": "Baztertu", + "trust": "Jo fidagarritzat", + "cancel": "Utzi", + "join": "Elkartu", + "close": "Itxi", + "accept": "Onartu", + "upgrade": "Eguneratu", + "verify": "Egiaztatu", + "update": "Eguneratu", + "upload": "Igo", + "reset": "Berrezarri", + "share": "Partekatu", + "skip": "Saltatu", + "logout": "Amaitu saioa", + "view": "Ikusi" }, "a11y": { "user_menu": "Erabiltzailea-menua" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index ff541db2ee2..df695c0a328 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -5,7 +5,6 @@ "Notification targets": "هدف‌های آگاه‌سازی", "Today": "امروز", "Friday": "آدینه", - "Update": "به‌روز رسانی", "Notifications": "آگاهی‌ها", "What's New": "چه خبر", "On": "روشن", @@ -24,12 +23,9 @@ "No update available.": "هیچ به روزرسانی جدیدی موجود نیست.", "Noisy": "پرسروصدا", "Collecting app version information": "درحال جمع‌آوری اطلاعات نسخه‌ی برنامه", - "Cancel": "لغو", "Tuesday": "سه‌شنبه", "Unnamed room": "گپ نام‌گذاری نشده", - "Dismiss": "نادیده بگیر", "Saturday": "شنبه", - "Reject": "پس زدن", "Monday": "دوشنبه", "Collecting logs": "درحال جمع‌آوری گزارش‌ها", "Search": "جستجو", @@ -43,7 +39,6 @@ "Messages containing my display name": "پیام‌های حاوی نمای‌نامِ من", "What's new?": "چه خبر؟", "When I'm invited to a room": "وقتی من به گپی دعوت میشوم", - "Close": "بستن", "Invite to this room": "دعوت به این گپ", "You cannot delete this message. (%(code)s)": "شما نمی‌توانید این پیام را پاک کنید. (%(code)s)", "Thursday": "پنج‌شنبه", @@ -60,7 +55,6 @@ "Use Single Sign On to continue": "برای ادامه، از ورود یکپارچه استفاده کنید", "Single Sign On": "ورود یکپارچه", "Confirm adding email": "تأیید افزودن رایانامه", - "Confirm": "تأیید", "Add Email Address": "افزودن نشانی رایانامه", "Confirm adding phone number": "تأیید افزودن شماره تلفن", "Add Phone Number": "افزودن شماره تلفن", @@ -71,8 +65,6 @@ "Encryption upgrade available": "ارتقای رمزنگاری ممکن است", "Verify this session": "تأیید این نشست", "Set up": "برپایی", - "Upgrade": "ارتقا", - "Verify": "تأیید", "Guest": "مهمان", "Confirm adding this email address by using Single Sign On to prove your identity.": "برای تأیید هویتتان، این نشانی رایانامه را با ورود یکپارچه تأیید کنید.", "Click the button below to confirm adding this email address.": "برای تأیید افزودن این نشانی رایانامه، دکمهٔ زیر را بزنید.", @@ -128,7 +120,6 @@ "Hangup": "قطع", "For security, this session has been signed out. Please sign in again.": "برای امنیت، این نشست نامعتبر شده است. لطفاً دوباره وارد سیستم شوید.", "We couldn't log you in": "نتوانستیم شما را وارد کنیم", - "Trust": "اعتماد کن", "Only continue if you trust the owner of the server.": "تنها در صورتی که به صاحب سرور اطمینان دارید، ادامه دهید.", "Identity server has no terms of service": "سرور هویت هیچگونه شرایط خدمات ندارد", "Unnamed Room": "اتاق بدون نام", @@ -1300,7 +1291,6 @@ "expand": "گشودن", "collapse": "بستن", "Please create a new issue on GitHub so that we can investigate this bug.": "لطفا در GitHub یک مسئله جدید ایجاد کنید تا بتوانیم این اشکال را بررسی کنیم.", - "Join": "پیوستن", "Enter passphrase": "عبارت امنیتی را وارد کنید", "Confirm passphrase": "عبارت امنیتی را تائید کنید", "This version of %(brand)s does not support searching encrypted messages": "این نسخه از %(brand)s از جستجوی پیام های رمزگذاری شده پشتیبانی نمی کند", @@ -1351,7 +1341,6 @@ "one": "%(severalUsers)s عضو شدند", "other": "%(severalUsers)s%(count)s مرتبه عضو شده‌اند" }, - "Skip": "بیخیال", "Import": "واردکردن (Import)", "Export": "استخراج (Export)", "Space": "فضای کاری", @@ -1660,8 +1649,6 @@ "Please enter a name for the space": "لطفا یک نام برای محیط وارد کنید", "Description": "توضیحات", "Name": "نام", - "Upload": "بارگذاری", - "Delete": "پاک‌کردن", "Accept to continue:": "برای ادامه را بپذیرید:", "Your server isn't responding to some requests.": "سرور شما به بعضی درخواست‌ها پاسخ نمی‌دهد.", "Pin": "سنجاق", @@ -1746,7 +1733,6 @@ "The other party cancelled the verification.": "طرف مقابل فرآیند تائید را لغو کرد.", "Play": "اجرا کردن", "Pause": "متوقف‌کردن", - "Accept": "پذیرفتن", "Unknown caller": "تماس‌گیرنده‌ی ناشناس", "Dial pad": "صفحه شماره‌گیری", "There was an error looking up the phone number": "هنگام یافتن شماره تلفن خطایی رخ داد", @@ -1958,9 +1944,7 @@ "Sending": "در حال ارسال", "Retry all": "همه را دوباره امتحان کنید", "Delete all": "حذف همه", - "View": "مشاهده", "You have no visible notifications.": "اعلان قابل مشاهده‌ای ندارید.", - "Logout": "خروج", "Verification requested": "درخواست تائید", "Old cryptography data detected": "داده‌های رمزنگاری قدیمی شناسایی شد", "Review terms and conditions": "مرور شرایط و ضوابط", @@ -1979,7 +1963,6 @@ "Welcome %(name)s": "%(name)s خوش‌آمدید", "Add a photo so people know it's you.": "برای اینکه بقیه شما را بشناسند، یک تصویر اضافه کنید.", "Great, that'll help people know it's you": "احسنت، با این کار شما به سایر افراد کمک می‌کنید که شما را بشناسند", - "Reset": "بازراه‌اندازی", "Cross-signing is not set up.": "امضاء متقابل تنظیم نشده‌است.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "حساب کاربری شما یک هویت برای امضاء متقابل در حافظه‌ی نهان دارد، اما این هویت هنوز توسط این نشست تائید نشده‌است.", "Cross-signing is ready for use.": "امضاء متقابل برای استفاده در دسترس است.", @@ -2052,7 +2035,6 @@ "Hold": "نگه‌داشتن", "Resume": "ادامه", "Appearance": "شکل و ظاهر", - "Share": "اشتراک‌گذاری", "Revoke": "برگرداندن", "Complete": "تکمیل", "Verify the link in your inbox": "لینک موجود در صندوق دریافت خود را تائید کنید", @@ -2479,7 +2461,6 @@ "Unknown room": "اتاق ناشناس", "Help improve %(analyticsOwner)s": "بهتر کردن راهنمای کاربری %(analyticsOwner)s", "You previously consented to share anonymous usage data with us. We're updating how that works.": "شما به ارسال گزارش چگونگی استفاده از سرویس رضایت داده بودید. ما نحوه استفاده از این اطلاعات را بروز میکنیم.", - "Stop": "توقف", "That's fine": "بسیارعالی", "File Attached": "فایل ضمیمه شد", "Export successful!": "استخراج موفق!", @@ -2569,7 +2550,6 @@ "Use your account to continue.": "برای ادامه از حساب خود استفاده کنید.", "Open poll": "باز کردن نظرسنجی", "Identity server not set": "سرور هویت تنظیم نشده است", - "Reload": "بارگذاری مجدد", "Alternatively, you can try to use the public server at , but this will not be as reliable, and it will share your IP address with that server. You can also manage this in Settings.": "از طرف دیگر، می‌توانید سعی کنید از سرور عمومی در استفاده کنید، اما این به آن اندازه قابل اعتماد نخواهد بود و آدرس IP شما را با آن سرور به اشتراک می‌گذارد. شما همچنین می توانید این قابلیت را در تنظیمات مدیریت کنید.", "Try using %(server)s": "سعی کنید از %(server)s استفاده کنید", "Keyboard shortcuts": "میانبرهای صفحه کلید", @@ -2605,7 +2585,6 @@ "disable": "غیرفعال‌کردن", "done": "انجام شد", "edit": "ویرایش", - "enable": "فعال کن", "forgot_password": "فراموشی گذرواژه", "invite": "دعوت", "invites_list": "دعوت‌ها", @@ -2625,9 +2604,29 @@ "start": "شروع", "start_chat": "شروع چت", "view_source": "دیدن منبع", - "yes": "بله" + "yes": "بله", + "reject": "پس زدن", + "confirm": "تأیید", + "dismiss": "نادیده بگیر", + "trust": "اعتماد کن", + "reload": "بارگذاری مجدد", + "cancel": "لغو", + "stop": "توقف", + "join": "پیوستن", + "close": "بستن", + "accept": "پذیرفتن", + "upgrade": "ارتقا", + "verify": "تأیید", + "update": "به‌روز رسانی", + "delete": "پاک‌کردن", + "upload": "بارگذاری", + "reset": "بازراه‌اندازی", + "share": "اشتراک‌گذاری", + "skip": "بیخیال", + "logout": "خروج", + "view": "مشاهده" }, "a11y": { "user_menu": "منوی کاربر" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index d3a53cfaa5a..0d482a6109e 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -1,9 +1,5 @@ { - "Accept": "Hyväksy", - "Cancel": "Peruuta", - "Close": "Sulje", "Create new room": "Luo uusi huone", - "Dismiss": "Hylkää", "Failed to forget room %(errCode)s": "Huoneen unohtaminen epäonnistui %(errCode)s", "Favourite": "Suosikki", "Notifications": "Ilmoitukset", @@ -84,7 +80,6 @@ "Join Room": "Liity huoneeseen", "Jump to first unread message.": "Hyppää ensimmäiseen lukemattomaan viestiin.", "Labs": "Laboratorio", - "Logout": "Kirjaudu ulos", "Low priority": "Matala prioriteetti", "Moderator": "Valvoja", "Name": "Nimi", @@ -244,7 +239,6 @@ "Authentication check failed: incorrect password?": "Autentikointi epäonnistui: virheellinen salasana?", "Do you want to set an email address?": "Haluatko asettaa sähköpostiosoitteen?", "This will allow you to reset your password and receive notifications.": "Tämä sallii sinun uudelleenalustaa salasanasi ja vastaanottaa ilmoituksia.", - "Skip": "Ohita", "Delete widget": "Poista sovelma", "Unable to create widget.": "Sovelman luominen epäonnistui.", "You will not be able to undo this change as you are promoting the user to have the same power level as yourself.": "Et voi kumota tätä muutosta, koska olet ylentämässä käyttäjää samalle oikeustasolle kuin itsesi.", @@ -414,7 +408,6 @@ "Notification targets": "Ilmoituksen kohteet", "Today": "Tänään", "Friday": "Perjantai", - "Update": "Päivitä", "What's New": "Mitä uutta", "On": "Päällä", "Changelog": "Muutosloki", @@ -433,7 +426,6 @@ "Search…": "Haku…", "Developer Tools": "Kehittäjätyökalut", "Saturday": "Lauantai", - "Reject": "Hylkää", "Monday": "Maanantai", "Toolbox": "Työkalut", "Collecting logs": "Haetaan lokeja", @@ -618,7 +610,6 @@ "Preparing to send logs": "Valmistaudutaan lokien lähettämiseen", "Invite anyway": "Kutsu silti", "Invite anyway and never warn me again": "Kutsu silti, äläkä varoita minua enää uudelleen", - "Join": "Liity", "Click here to see older messages.": "Napsauta tästä nähdäksesi vanhemmat viestit.", "This room is a continuation of another conversation.": "Tämä huone on jatkumo toisesta keskustelusta.", "The conversation continues here.": "Keskustelu jatkuu täällä.", @@ -778,7 +769,6 @@ "Please review and accept the policies of this homeserver:": "Tarkistathan tämän kotipalvelimen käytännöt:", "Code": "Koodi", "Change": "Muuta", - "Confirm": "Varmista", "Join millions for free on the largest public server": "Liity ilmaiseksi miljoonien joukkoon suurimmalla julkisella palvelimella", "Other": "Muut", "Can't leave Server Notices room": "Palvelinilmoitushuonetta ei voitu jättää", @@ -904,7 +894,6 @@ "Uploaded sound": "Asetettu ääni", "Sounds": "Äänet", "Notification sound": "Ilmoitusääni", - "Reset": "Palauta alkutilaan", "Set a new custom sound": "Aseta uusi mukautettu ääni", "Browse": "Selaa", "Use lowercase letters, numbers, dashes and underscores only": "Käytä ainoastaan pieniä kirjaimia, numeroita, yhdysviivoja ja alaviivoja", @@ -916,7 +905,6 @@ "Message edits": "Viestin muokkaukset", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Tämän huoneen päivittäminen edellyttää huoneen nykyisen instanssin sulkemista ja uuden huoneen luomista sen tilalle. Jotta tämä kävisi huoneen jäsenten kannalta mahdollisimman sujuvasti, teemme seuraavaa:", "Upload all": "Lähetä kaikki palvelimelle", - "Upload": "Lähetä", "Show all": "Näytä kaikki", "%(severalUsers)smade no changes %(count)s times": { "other": "%(severalUsers)s eivät tehneet muutoksia %(count)s kertaa", @@ -951,7 +939,6 @@ "Always show the window menu bar": "Näytä aina ikkunan valikkorivi", "Unable to revoke sharing for email address": "Sähköpostiosoitteen jakamista ei voi perua", "Unable to share email address": "Sähköpostiosoitetta ei voi jakaa", - "Share": "Jaa", "Unable to share phone number": "Puhelinnumeroa ei voi jakaa", "Checking server": "Tarkistetaan palvelinta", "Disconnect from the identity server ?": "Katkaise yhteys identiteettipalvelimeen ?", @@ -1014,7 +1001,6 @@ "Report Content to Your Homeserver Administrator": "Ilmoita sisällöstä kotipalvelimesi ylläpitäjälle", "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "Tämän viestin ilmoittaminen lähettää sen yksilöllisen tapahtumatunnuksen (event ID) kotipalvelimesi ylläpitäjälle. Jos tämän huoneen viestit on salattu, kotipalvelimesi ylläpitäjä ei voi lukea viestin tekstiä tai nähdä tiedostoja tai kuvia.", "Send report": "Lähetä ilmoitus", - "View": "Näytä", "Explore rooms": "Selaa huoneita", "Unable to revoke sharing for phone number": "Puhelinnumeron jakamista ei voi kumota", "Deactivate user?": "Poista käyttäjä pysyvästi?", @@ -1100,7 +1086,6 @@ "Using this widget may share data with %(widgetDomain)s.": "Tämän sovelman käyttäminen voi jakaa tietoja verkkotunnukselle %(widgetDomain)s.", "Widget added by": "Sovelman lisäsi", "This widget may use cookies.": "Tämä sovelma saattaa käyttää evästeitä.", - "Trust": "Luota", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Voit käyttää identiteettipalvelinta lähettääksesi sähköpostikutsuja. Napsauta Jatka käyttääksesi oletuspalvelinta (%(defaultIdentityServerName)s) tai syötä eri palvelin asetuksissa.", "Use an identity server to invite by email. Manage in Settings.": "Voit käyttää identiteettipalvelinta sähköpostikutsujen lähettämiseen.", "Match system theme": "Käytä järjestelmän teemaa", @@ -1139,7 +1124,6 @@ "This client does not support end-to-end encryption.": "Tämä asiakasohjelma ei tue päästä päähän -salausta.", "Messages in this room are not end-to-end encrypted.": "Tämän huoneen viestit eivät ole päästä päähän -salattuja.", "Messages in this room are end-to-end encrypted.": "Tämän huoneen viestit ovat päästä päähän -salattuja.", - "Verify": "Varmenna", "You have ignored this user, so their message is hidden. Show anyways.": "Olet sivuuttanut tämän käyttäjän, joten hänen viestinsä on piilotettu. Näytä silti.", "You verified %(name)s": "Varmensit käyttäjän %(name)s", "You cancelled verifying %(name)s": "Peruutit käyttäjän %(name)s varmennuksen", @@ -1207,7 +1191,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Huoneen päivittäminen on monimutkainen toimenpide ja yleensä sitä suositellaan, kun huone on epävakaa bugien, puuttuvien ominaisuuksien tai tietoturvaongelmien takia.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Tämä yleensä vaikuttaa siihen, miten huonetta käsitellään palvelimella. Jos sinulla on ongelmia %(brand)stisi kanssa, ilmoita virheestä.", "You'll upgrade this room from to .": "Olat päivittämässä tätä huonetta versiosta versioon .", - "Upgrade": "Päivitä", "Country Dropdown": "Maapudotusvalikko", "Unable to set up secret storage": "Salavaraston käyttöönotto epäonnistui", "Show more": "Näytä lisää", @@ -2084,7 +2067,6 @@ "You can change these anytime.": "Voit muuttaa näitä koska tahansa.", "Private": "Yksityinen", "Public": "Julkinen", - "Delete": "Poista", "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", "This homeserver has been blocked by its administrator.": "Tämä kotipalvelin on ylläpitäjänsä estämä.", @@ -2177,7 +2159,6 @@ "Message preview": "Viestin esikatselu", "Sent": "Lähetetty", "Include Attachments": "Sisällytä liitteet", - "Stop": "Pysäytä", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Oletko varma, että haluat lopettaa tietojen viennin? Jos lopetat, joudut aloittamaan alusta.", "Export Successful": "Vienti onnistui", "Number of messages": "Viestien määrä", @@ -2225,8 +2206,6 @@ "Anyone can find and join.": "Kuka tahansa voi löytää ja liittyä.", "Only invited people can join.": "Vain kutsutut ihmiset voivat liittyä.", "Space options": "Avaruuden valinnat", - "Collapse": "Supista", - "Expand": "Laajenna", "Recommended for public spaces.": "Suositeltu julkisiin avaruuksiin.", "Guests can join a space without having an account.": "Vieraat voivat liittyä avaruuteen ilman tiliä.", "Enable guest access": "Ota käyttöön vieraiden pääsy", @@ -2934,7 +2913,6 @@ }, "Cross-signing is ready but keys are not backed up.": "Ristiinvarmennus on valmis, mutta avaimia ei ole varmuuskopioitu.", "Search %(spaceName)s": "Etsi %(spaceName)s", - "Call": "Soita", "Dial": "Yhdistä", "Messaging": "Viestintä", "Back to thread": "Takaisin ketjuun", @@ -3330,7 +3308,6 @@ "This session doesn't support encryption and thus can't be verified.": "Tämä istunto ei tue salausta, joten sitä ei voi vahvistaa.", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Parhaan tietoturvan ja yksityisyyden vuoksi on suositeltavaa käyttää salausta tukevia Matrix-asiakasohjelmistoja.", "Upcoming features": "Tulevat ominaisuudet", - "Apply": "Toteuta", "Search users in this room…": "Etsi käyttäjiä tästä huoneesta…", "Requires compatible homeserver.": "Vaatii yhteensopivan kotipalvelimen.", "Under active development.": "Aktiivisen kehityksen kohteena.", @@ -3499,7 +3476,6 @@ "Send %(msgtype)s messages as you in your active room": "Lähetä %(msgtype)s-viestejä itsenäsi aktiiviseen huoneeseesi", "Send %(msgtype)s messages as you in this room": "Lähetä %(msgtype)s-viestejä itsenäsi tähän huoneeseen", "%(oldDisplayName)s changed their display name and profile picture": "%(oldDisplayName)s vaihtoi näyttönimensä ja profiilikuvansa", - "Reload": "Lataa uudelleen", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Tämä voi johtua siitä, että sovellus on auki useissa välilehdissä tai selaimen tietojen tyhjentämisestä.", "Database unexpectedly closed": "Tietokanta sulkeutui odottamattomasti", "Identity server not set": "Identiteettipalvelinta ei ole asetettu", @@ -3549,7 +3525,6 @@ "disable": "Poista käytöstä", "done": "Valmis", "edit": "Muokkaa", - "enable": "Ota käyttöön", "forgot_password": "Unohtuiko salasana?", "forward": "Välitä", "invite": "Kutsu", @@ -3570,9 +3545,33 @@ "start": "Aloita", "start_chat": "Aloita keskustelu", "view_source": "Näytä lähdekoodi", - "yes": "Kyllä" + "yes": "Kyllä", + "reject": "Hylkää", + "confirm": "Varmista", + "dismiss": "Hylkää", + "trust": "Luota", + "reload": "Lataa uudelleen", + "cancel": "Peruuta", + "stop": "Pysäytä", + "join": "Liity", + "close": "Sulje", + "accept": "Hyväksy", + "upgrade": "Päivitä", + "verify": "Varmenna", + "update": "Päivitä", + "call": "Soita", + "delete": "Poista", + "upload": "Lähetä", + "collapse": "Supista", + "apply": "Toteuta", + "reset": "Palauta alkutilaan", + "share": "Jaa", + "skip": "Ohita", + "logout": "Kirjaudu ulos", + "view": "Näytä", + "expand": "Laajenna" }, "a11y": { "user_menu": "Käyttäjän valikko" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index ec2079ccca3..8e612eb6bf3 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -65,7 +65,6 @@ "Sign in with": "Se connecter avec", "Join Room": "Rejoindre le salon", "Labs": "Expérimental", - "Logout": "Se déconnecter", "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 joined.": "%(senderName)s a rendu l’historique visible à tous les membres du salon, à partir de leur arrivée.", @@ -175,7 +174,6 @@ "Room": "Salon", "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.", - "Cancel": "Annuler", "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s a supprimé le nom du salon.", "Passphrases must match": "Les phrases secrètes doivent être identiques", "Passphrase must not be empty": "Le mot de passe ne peut pas être vide", @@ -195,7 +193,6 @@ "Incorrect password": "Mot de passe incorrect", "Unable to restore session": "Impossible de restaurer la session", "If you have previously used a more recent version of %(brand)s, your session may be incompatible with this version. Close this window and return to the more recent version.": "Si vous avez utilisé une version plus récente de %(brand)s précédemment, votre session risque d’être incompatible avec cette version. Fermez cette fenêtre et retournez à la version plus récente.", - "Dismiss": "Ignorer", "Token incorrect": "Jeton incorrect", "Please enter the code it contains:": "Merci de saisir le code qu’il contient :", "powered by Matrix": "propulsé par Matrix", @@ -240,9 +237,7 @@ "Create new room": "Créer un nouveau salon", "New Password": "Nouveau mot de passe", "Something went wrong!": "Quelque chose s’est mal déroulé !", - "Accept": "Accepter", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Impossible de se connecter au serveur d’accueil - veuillez vérifier votre connexion, assurez-vous que le certificat SSL de votre serveur d’accueil est un certificat de confiance, et qu’aucune extension du navigateur ne bloque les requêtes.", - "Close": "Fermer", "No display name": "Pas de nom d’affichage", "%(roomName)s does not exist.": "%(roomName)s n’existe pas.", "%(roomName)s is not accessible at this time.": "%(roomName)s n’est pas joignable pour le moment.", @@ -259,7 +254,6 @@ "Authentication check failed: incorrect password?": "Erreur d’authentification : mot de passe incorrect ?", "Do you want to set an email address?": "Souhaitez-vous configurer une adresse e-mail ?", "This will allow you to reset your password and receive notifications.": "Ceci vous permettra de réinitialiser votre mot de passe et de recevoir des notifications.", - "Skip": "Passer", "Check for update": "Rechercher une mise à jour", "Delete widget": "Supprimer le widget", "Define the power level of a user": "Définir le rang d’un utilisateur", @@ -430,7 +424,6 @@ "Notification targets": "Appareils recevant les notifications", "Today": "Aujourd’hui", "Friday": "Vendredi", - "Update": "Mettre à jour", "What's New": "Nouveautés", "On": "Activé", "Changelog": "Journal des modifications", @@ -450,7 +443,6 @@ "Search…": "Rechercher…", "Developer Tools": "Outils de développement", "Saturday": "Samedi", - "Reject": "Rejeter", "Monday": "Lundi", "Toolbox": "Boîte à outils", "Collecting logs": "Récupération des journaux", @@ -677,13 +669,11 @@ "Room avatar": "Avatar du salon", "Room Name": "Nom du salon", "Room Topic": "Sujet du salon", - "Join": "Rejoindre", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Vérifier cet utilisateur pour le marquer comme fiable. Faire confiance aux utilisateurs vous permet d’être tranquille lorsque vous utilisez des messages chiffrés de bout en bout.", "Incoming Verification Request": "Demande de vérification entrante", "Go back": "Revenir en arrière", "Email (optional)": "E-mail (facultatif)", "Phone (optional)": "Téléphone (facultatif)", - "Confirm": "Confirmer", "Join millions for free on the largest public server": "Rejoignez des millions d’utilisateurs gratuitement sur le plus grand serveur public", "Other": "Autre", "Guest": "Visiteur", @@ -838,7 +828,6 @@ "Your browser likely removed this data when running low on disk space.": "Votre navigateur a sûrement supprimé ces données car il restait peu d’espace sur le disque.", "Upload files (%(current)s of %(total)s)": "Envoi des fichiers (%(current)s sur %(total)s)", "Upload files": "Envoyer les fichiers", - "Upload": "Envoyer", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Le fichier est trop lourd pour être envoyé. La taille limite est de %(limit)s mais la taille de ce fichier est de %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Ces fichiers sont trop lourds pour être envoyés. La taille limite des fichiers est de %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Certains fichiers sont trop lourds pour être envoyés. La taille limite des fichiers est de %(limit)s.", @@ -900,7 +889,6 @@ "Uploaded sound": "Son téléchargé", "Sounds": "Sons", "Notification sound": "Son de notification", - "Reset": "Réinitialiser", "Set a new custom sound": "Définir un nouveau son personnalisé", "Browse": "Parcourir", "Cannot reach homeserver": "Impossible de joindre le serveur d’accueil", @@ -959,7 +947,6 @@ "Unable to revoke sharing for email address": "Impossible de révoquer le partage pour l’adresse e-mail", "Unable to share email address": "Impossible de partager l’adresse e-mail", "Revoke": "Révoquer", - "Share": "Partager", "Discovery options will appear once you have added an email above.": "Les options de découverte apparaîtront quand vous aurez ajouté une adresse e-mail ci-dessus.", "Unable to revoke sharing for phone number": "Impossible de révoquer le partage pour le numéro de téléphone", "Unable to share phone number": "Impossible de partager le numéro de téléphone", @@ -1027,7 +1014,6 @@ "one": "Supprimer 1 message" }, "Remove recent messages": "Supprimer les messages récents", - "View": "Afficher", "Explore rooms": "Parcourir les salons", "Verify the link in your inbox": "Vérifiez le lien dans votre boîte de réception", "Complete": "Terminer", @@ -1095,7 +1081,6 @@ "Room %(name)s": "Salon %(name)s", "Unread messages.": "Messages non lus.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Cette action nécessite l’accès au serveur d’identité par défaut afin de valider une adresse e-mail ou un numéro de téléphone, mais le serveur n’a aucune condition de service.", - "Trust": "Faire confiance", "Message Actions": "Actions de message", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "You verified %(name)s": "Vous avez vérifié %(name)s", @@ -1140,7 +1125,6 @@ "Trusted": "Fiable", "Not trusted": "Non fiable", "Messages in this room are end-to-end encrypted.": "Les messages dans ce salon sont chiffrés de bout en bout.", - "Verify": "Vérifier", "Any of the following data may be shared:": "Les données suivants peuvent être partagées :", "Your display name": "Votre nom d’affichage", "Your user ID": "Votre identifiant utilisateur", @@ -1174,7 +1158,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "La mise à niveau d’un salon est une action avancée et qui est généralement recommandée quand un salon est instable à cause d’anomalies, de fonctionnalités manquantes ou de failles de sécurité.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Cela n’affecte généralement que la façon dont le salon est traité sur le serveur. Si vous avez des problèmes avec votre %(brand)s, signalez une anomalie.", "You'll upgrade this room from to .": "Vous allez mettre à niveau ce salon de vers .", - "Upgrade": "Mettre à niveau", " wants to chat": " veut discuter", "Start chatting": "Commencer à discuter", "Cross-signing public keys:": "Clés publiques de signature croisée :", @@ -2212,7 +2195,6 @@ "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", - "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", "This homeserver has been blocked by its administrator.": "Ce serveur d’accueil a été bloqué par son administrateur.", "You're already in a call with this person.": "Vous êtes déjà en cours d’appel avec cette personne.", @@ -2380,8 +2362,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Les adresses publiées peuvent être utilisées par tout le monde sur tous les serveurs pour rejoindre votre espace.", "This space has no local addresses": "Cet espace n’a pas d’adresse locale", "Space information": "Informations de l’espace", - "Collapse": "Réduire", - "Expand": "Développer", "Recommended for public spaces.": "Recommandé pour les espaces publics.", "Allow people to preview your space before they join.": "Permettre aux personnes d’avoir un aperçu de l’espace avant de le rejoindre.", "Preview Space": "Aperçu de l’espace", @@ -2597,7 +2577,6 @@ "Select from the options below to export chats from your timeline": "Sélectionner les options ci-dessous pour exporter les conversations de votre historique", "Export Chat": "Exporter la conversation", "Exporting your data": "Export de vos données", - "Stop": "Arrêter", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Êtes vous sûr de vouloir arrêter l’export de vos données ? Si vous le fait, vous devrez recommencer depuis le début.", "Your export was successful. Find it in your Downloads folder.": "Votre export est réussi. Vous le trouverez dans votre dossier Téléchargements.", "The export was cancelled successfully": "Cet export a été annulé avec succès", @@ -2930,7 +2909,6 @@ "Group all your favourite rooms and people in one place.": "Regroupez tous vos salons et personnes préférés au même endroit.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Les espaces permettent de regrouper des salons et des personnes. En plus de ceux auxquels vous participez, vous pouvez également utiliser des espaces prédéfinis.", "IRC (Experimental)": "IRC (Expérimental)", - "Call": "Appel", "Internal room ID": "Identifiant interne du salon", "Group all your rooms that aren't part of a space in one place.": "Regroupe tous les salons n’appartenant pas à un espace au même endroit.", "Previous autocomplete suggestion": "Précédente suggestion d’autocomplétion", @@ -3591,7 +3569,6 @@ "This session doesn't support encryption and thus can't be verified.": "Cette session ne prend pas en charge le chiffrement, elle ne peut donc pas être vérifiée.", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Pour de meilleures sécurité et confidentialité, il est recommandé d’utiliser des clients Matrix qui prennent en charge le chiffrement.", "You won't be able to participate in rooms where encryption is enabled when using this session.": "Vous ne pourrez pas participer aux salons qui ont activé le chiffrement en utilisant cette session.", - "Apply": "Appliquer", "Search users in this room…": "Chercher des utilisateurs dans ce salon…", "Give one or multiple users in this room more privileges": "Donne plus de privilèges à un ou plusieurs utilisateurs de ce salon", "Add privileged users": "Ajouter des utilisateurs privilégiés", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Une erreur réseau s’est produite en tentant de chercher et d’aller à la date choisie. Votre serveur d’accueil est peut-être hors-ligne, ou bien c’est un problème temporaire avec connexion Internet. Veuillez réessayer. Si cela persiste, veuillez contacter l’administrateur de votre serveur d’accueil.", "Poll history": "Historique des sondages", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "L’utilisateur (%(user)s) n’a finalement pas été invité dans %(roomId)s mais aucune erreur n’a été fournie par la routine d’invitation", - "Reload": "Recharger", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Cela peut être causé par l’application ouverte dans plusieurs onglets, ou après un nettoyage des données du navigateur.", "Database unexpectedly closed": "La base de données s’est fermée de manière inattendue", "Mute room": "Salon muet", @@ -3950,7 +3926,6 @@ "disable": "Désactiver", "done": "Terminé", "edit": "Modifier", - "enable": "Activer", "forgot_password": "Mot de passe oublié ?", "forward": "Transférer", "invite": "Inviter", @@ -3971,9 +3946,33 @@ "start": "Commencer", "start_chat": "Commencer une conversation privée", "view_source": "Voir la source", - "yes": "Oui" + "yes": "Oui", + "reject": "Rejeter", + "confirm": "Confirmer", + "dismiss": "Ignorer", + "trust": "Faire confiance", + "reload": "Recharger", + "cancel": "Annuler", + "stop": "Arrêter", + "join": "Rejoindre", + "close": "Fermer", + "accept": "Accepter", + "upgrade": "Mettre à niveau", + "verify": "Vérifier", + "update": "Mettre à jour", + "call": "Appel", + "delete": "Supprimer", + "upload": "Envoyer", + "collapse": "Réduire", + "apply": "Appliquer", + "reset": "Réinitialiser", + "share": "Partager", + "skip": "Passer", + "logout": "Se déconnecter", + "view": "Afficher", + "expand": "Développer" }, "a11y": { "user_menu": "Menu utilisateur" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index c12d1f97157..e5bc0612c0f 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -68,7 +68,6 @@ "Spaces": "Spásanna", "Private": "Príobháideach", "Public": "Poiblí", - "Delete": "Bain amach", "Value:": "Luach:", "Level": "Leibhéal", "Caution:": "Faichill:", @@ -304,25 +303,20 @@ "Go": "Téigh", "Cross-signing": "Cros-síniú", "Unencrypted": "Gan chriptiú", - "Upgrade": "Uasghrádaigh", - "Verify": "Cinntigh", "Trusted": "Dílis", "Subscribe": "Liostáil", "Unsubscribe": "Díliostáil", "None": "Níl aon cheann", - "Trust": "Cuir muinín i", "Flags": "Bratacha", "Symbols": "Siombailí", "Objects": "Rudaí", "Activities": "Gníomhaíochtaí", "Document": "Cáipéis", "Complete": "Críochnaigh", - "View": "Amharc", "Strikethrough": "Líne a chur trí", "Italics": "Iodálach", "Bold": "Trom", "Disconnect": "Dícheangail", - "Share": "Roinn le", "Revoke": "Cúlghair", "Discovery": "Aimsiú", "Actions": "Gníomhartha", @@ -337,7 +331,6 @@ "Commands": "Ordú", "Guest": "Cuairteoir", "Room": "Seomra", - "Logout": "Logáil amach", "Description": "Cuntas", "Other": "Eile", "Change": "Athraigh", @@ -348,10 +341,8 @@ "Home": "Tús", "Favourite": "Cuir mar ceanán", "Resend": "Athsheol", - "Upload": "Uaslódáil", "Summary": "Achoimre", "Service": "Seirbhís", - "Skip": "Léim", "Refresh": "Athnuaigh", "Toolbox": "Uirlisí", "Back": "Ar Ais", @@ -373,9 +364,7 @@ "%(severalUsers)sjoined %(count)s times": { "one": "Tháinig %(severalUsers)s isteach" }, - "Join": "Téigh isteach", "Warning": "Rabhadh", - "Update": "Uasdátaigh", "edited": "curtha in eagar", "Copied!": "Cóipeáilte!", "Attachment": "Ceangaltán", @@ -391,7 +380,6 @@ "Sunday": "Dé Domhnaigh", "Stickerpack": "Pacáiste greamáin", "Search…": "Cuardaigh…", - "Reject": "Diúltaigh", "Re-join": "Téigh ar ais isteach", "Historical": "Stairiúil", "Rooms": "Seomraí", @@ -417,7 +405,6 @@ "Call invitation": "Nuair a fhaighim cuireadh glaoigh", "Collecting logs": "ag Bailiú logaí", "Invited": "Le cuireadh", - "Close": "Dún", "Mention": "Luaigh", "Demote": "Bain ceadanna", "Encrypted": "Criptithe", @@ -426,7 +413,6 @@ "Permissions": "Ceadanna", "Unban": "Bain an cosc", "Browse": "Brabhsáil", - "Reset": "Athshocraigh", "Sounds": "Fuaimeanna", "Camera": "Ceamara", "Microphone": "Micreafón", @@ -511,9 +497,7 @@ "Lion": "Leon", "Cat": "Cat", "Dog": "Madra", - "Cancel": "Cuir ar ceal", "Verified!": "Deimhnithe!", - "Accept": "Glac", "Someone": "Duine éigin", "Reason": "Cúis", "Usage": "Úsáid", @@ -549,7 +533,6 @@ "Confirm adding phone number": "Deimhnigh an uimhir ghutháin nua", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Deimhnigh an uimhir ghutháin seo le SSO mar cruthúnas céannachta.", "Add Email Address": "Cuir seoladh ríomhphoist", - "Confirm": "Deimhnigh", "Click the button below to confirm adding this email address.": "Cliceáil an cnaipe thíos chun an seoladh ríomhphoist nua a dheimhniú.", "Confirm adding email": "Deimhnigh an seoladh ríomhphoist nua", "Single Sign On": "Single Sign On", @@ -557,7 +540,6 @@ "Explore rooms": "Breathnaigh thart ar na seomraí", "Create Account": "Déan cuntas a chruthú", "Sign In": "Sínigh Isteach", - "Dismiss": "Cuir uait", "Use Single Sign On to continue": "Lean ar aghaidh le SSO", "This phone number is already in use": "Úsáidtear an uimhir ghutháin seo chean féin", "This email address is already in use": "Úsáidtear an seoladh ríomhphoist seo chean féin", @@ -590,8 +572,6 @@ "[number]": "[uimhir]", "Report": "Tuairiscigh", "Disagree": "Easaontaigh", - "Collapse": "Cumaisc", - "Expand": "Leath", "Visibility": "Léargas", "Address": "Seoladh", "Sent": "Seolta", @@ -715,7 +695,6 @@ "disable": "Cuir as feidhm", "done": "Críochnaithe", "edit": "Cuir in eagar", - "enable": "Tosaigh", "forgot_password": "An nDearna tú dearmad ar do fhocal faire?", "forward": "Seol ar aghaidh", "invite": "Tabhair cuireadh", @@ -733,6 +712,26 @@ "save": "Sábháil", "start": "Tosaigh", "start_chat": "Tosaigh comhrá", - "yes": "Tá" + "yes": "Tá", + "reject": "Diúltaigh", + "confirm": "Deimhnigh", + "dismiss": "Cuir uait", + "trust": "Cuir muinín i", + "cancel": "Cuir ar ceal", + "join": "Téigh isteach", + "close": "Dún", + "accept": "Glac", + "upgrade": "Uasghrádaigh", + "verify": "Cinntigh", + "update": "Uasdátaigh", + "delete": "Bain amach", + "upload": "Uaslódáil", + "collapse": "Cumaisc", + "reset": "Athshocraigh", + "share": "Roinn le", + "skip": "Léim", + "logout": "Logáil amach", + "view": "Amharc", + "expand": "Leath" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index 5e32546e39f..1d50a693ae6 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -90,7 +90,6 @@ "Enable inline URL previews by default": "Activar por defecto as vistas previas en liña de URL", "Enable URL previews for this room (only affects you)": "Activar vista previa de URL nesta sala (só che afecta a ti)", "Enable URL previews by default for participants in this room": "Activar a vista previa de URL por defecto para as participantes nesta sala", - "Accept": "Aceptar", "Incorrect verification code": "Código de verificación incorrecto", "Submit": "Enviar", "Phone": "Teléfono", @@ -183,9 +182,7 @@ "Members only (since they joined)": "Só participantes (desde que se uniron)", "Permissions": "Permisos", "Advanced": "Avanzado", - "Cancel": "Cancelar", "Jump to first unread message.": "Ir a primeira mensaxe non lida.", - "Close": "Pechar", "not specified": "non indicado", "This room has no local addresses": "Esta sala non ten enderezos locais", "You have enabled URL previews by default.": "Activou a vista previa de URL por defecto.", @@ -206,7 +203,6 @@ "Failed to copy": "Fallo ao copiar", "Add an Integration": "Engadir unha integración", "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?": "Vai ser redirixido a unha web de terceiros para poder autenticar a súa conta e así utilizar %(integrationsUrl)s. Quere continuar?", - "Dismiss": "Rexeitar", "Token incorrect": "Testemuño incorrecto", "A text message has been sent to %(msisdn)s": "Enviouse unha mensaxe de texto a %(msisdn)s", "Please enter the code it contains:": "Por favor introduza o código que contén:", @@ -328,7 +324,6 @@ "Unable to add email address": "Non se puido engadir enderezo de correo", "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.", - "Skip": "Saltar", "Name": "Nome", "You must register to use this functionality": "Debe rexistrarse para utilizar esta función", "You must join the room to see its files": "Debes unirte a sala para ver os seus ficheiros", @@ -340,7 +335,6 @@ "Signed Out": "Desconectada", "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", - "Logout": "Saír", "Warning": "Aviso", "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.", @@ -430,7 +424,6 @@ "Notification targets": "Obxectivos das notificacións", "Today": "Hoxe", "Friday": "Venres", - "Update": "Actualizar", "What's New": "Que hai de novo", "On": "On", "Changelog": "Rexistro de cambios", @@ -452,7 +445,6 @@ "Developer Tools": "Ferramentas para desenvolver", "Preparing to send logs": "Preparándose para enviar informe", "Saturday": "Sábado", - "Reject": "Rexeitar", "Monday": "Luns", "Toolbox": "Ferramentas", "Collecting logs": "Obtendo rexistros", @@ -525,7 +517,6 @@ "Single Sign On": "Single Sign On", "Confirm adding email": "Confirma novo email", "Click the button below to confirm adding this email address.": "Preme no botón inferior para confirmar que queres engadir o email.", - "Confirm": "Confirmar", "Add Email Address": "Engadir email", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirma que queres engadir este teléfono usando Single Sign On como proba de identidade.", "Confirm adding phone number": "Confirma a adición do teléfono", @@ -559,7 +550,6 @@ "Identity server has no terms of service": "O servidor de identidade non ten termos dos servizo", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Esta acción precisa acceder ao servidor de indentidade para validar o enderezo de email ou o número de teléfono, pero o servidor non publica os seus termos do servizo.", "Only continue if you trust the owner of the server.": "Continúa se realmente confías no dono do servidor.", - "Trust": "Confiar", "%(name)s is requesting verification": "%(name)s está pedindo a verificación", "Use your account or create a new one to continue.": "Usa a túa conta ou crea unha nova para continuar.", "Create Account": "Crear conta", @@ -746,8 +736,6 @@ "Contact your server admin.": "Contacta coa administración.", "Ok": "Ok", "Set up": "Configurar", - "Upgrade": "Mellorar", - "Verify": "Verificar", "Other users may not trust it": "Outras usuarias poderían non confiar", "Render simple counters in room header": "Mostrar contadores simples na cabeceira da sala", "Subscribing to a ban list will cause you to join it!": "Subscribíndote a unha lista de bloqueo fará que te unas a ela!", @@ -759,7 +747,6 @@ "Do you want to join %(roomName)s?": "Queres unirte a %(roomName)s?", "You're previewing %(roomName)s. Want to join it?": "Vista previa de %(roomName)s. Queres unirte?", "%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s non ten vista previa. Queres unirte?", - "Join": "Únete", "Join millions for free on the largest public server": "Únete a millóns de persoas gratuitamente no maior servidor público", "Match system theme": "Imitar o aspecto do sistema", "Invalid theme schema.": "Esquema do decorado incorrecto.", @@ -879,7 +866,6 @@ "Folder": "Cartafol", "Pin": "Pin", "Accept to continue:": "Acepta para continuar:", - "Upload": "Subir", "This bridge was provisioned by .": "Esta ponte está proporcionada por .", "This bridge is managed by .": "Esta ponte está xestionada por .", "Show less": "Mostrar menos", @@ -1024,7 +1010,6 @@ "Uploaded sound": "Audio subido", "Sounds": "Audios", "Notification sound": "Ton de notificación", - "Reset": "Restablecer", "Set a new custom sound": "Establecer novo ton personalizado", "Browse": "Buscar", "Change room avatar": "Cambiar avatar da sala", @@ -1061,7 +1046,6 @@ "Verify the link in your inbox": "Verifica a ligazón na túa caixa de correo", "Complete": "Completar", "Revoke": "Revogar", - "Share": "Compartir", "Discovery options will appear once you have added an email above.": "As opcións de descubrimento aparecerán após ti engadas un email.", "Unable to revoke sharing for phone number": "Non se puido revogar a compartición do número de teléfono", "Unable to share phone number": "Non se puido compartir o número de teléfono", @@ -1455,7 +1439,6 @@ "Welcome to %(appName)s": "Benvida a %(appName)s", "Send a Direct Message": "Envía unha Mensaxe Directa", "Create a Group Chat": "Crear unha Conversa en Grupo", - "View": "Vista", "Jump to first unread room.": "Vaite a primeira sala non lida.", "Jump to first invite.": "Vai ó primeiro convite.", "You have %(count)s unread notifications in a prior version of this room.": { @@ -2213,7 +2196,6 @@ "Open space for anyone, best for communities": "Espazo aberto para calquera, mellor para comunidades", "Public": "Público", "Create a space": "Crear un espazo", - "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", "This homeserver has been blocked by its administrator.": "O servidor de inicio foi bloqueado pola súa administración.", "You're already in a call with this person.": "Xa estás nunha conversa con esta persoa.", @@ -2398,8 +2380,6 @@ "An error occurred whilst saving your notification preferences.": "Algo fallou ao gardar as túas preferencias de notificación.", "Error saving notification preferences": "Erro ao gardar os axustes de notificación", "Messages containing keywords": "Mensaxes coas palabras chave", - "Collapse": "Pechar", - "Expand": "Despregar", "Recommended for public spaces.": "Recomendado para espazos públicos.", "Allow people to preview your space before they join.": "Permitir que sexa visible o espazo antes de unirte a el.", "Preview Space": "Vista previa do Espazo", @@ -2605,7 +2585,6 @@ "Select from the options below to export chats from your timeline": "Elixe entre as opcións seguintes para exportar a túa cronoloxía", "Export Chat": "Exportar chat", "Exporting your data": "Exportando os teus datos", - "Stop": "Deter", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Tes a certeza de querer deter a exportación de datos? Se é así, terás que volver a iniciala.", "Your export was successful. Find it in your Downloads folder.": "A exportación foi correcta. Atoparala no cartafol de Descargas.", "The export was cancelled successfully": "Cancelouse con éxito a exportación", @@ -2904,7 +2883,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Agardando a que verifiques o teu outro dispositivo, %(deviceName)s %(deviceId)s …", "Verify this device by confirming the following number appears on its screen.": "Verifica este dispositivo confirmando que o seguinte número aparece na pantalla.", "Confirm the emoji below are displayed on both devices, in the same order:": "Confirma que os emoji inferiores se mostran nos dous dispositivos, na mesma orde:", - "Call": "Chamar", "Dial": "Marcar", "Automatically send debug logs on decryption errors": "Envía automáticamente rexistro de depuración se hai erros no cifrado", "Show join/leave messages (invites/removes/bans unaffected)": "Mostrar unirse/saír (convites/eliminacións/vetos non afectados)", @@ -3475,7 +3453,6 @@ "disable": "Desactivar", "done": "Feito", "edit": "Editar", - "enable": "Activar", "forgot_password": "Esqueceches o contrasinal?", "forward": "Reenviar", "invite": "Convidar", @@ -3496,9 +3473,31 @@ "start": "Comezar", "start_chat": "Iniciar conversa", "view_source": "Ver fonte", - "yes": "Si" + "yes": "Si", + "reject": "Rexeitar", + "confirm": "Confirmar", + "dismiss": "Rexeitar", + "trust": "Confiar", + "cancel": "Cancelar", + "stop": "Deter", + "join": "Únete", + "close": "Pechar", + "accept": "Aceptar", + "upgrade": "Mellorar", + "verify": "Verificar", + "update": "Actualizar", + "call": "Chamar", + "delete": "Eliminar", + "upload": "Subir", + "collapse": "Pechar", + "reset": "Restablecer", + "share": "Compartir", + "skip": "Saltar", + "logout": "Saír", + "view": "Vista", + "expand": "Despregar" }, "a11y": { "user_menu": "Menú de usuaria" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index 36e4c04a1e4..c2156214742 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -34,10 +34,7 @@ "Rooms": "חדרים", "Operation failed": "פעולה נכשלה", "Search": "חפש", - "Dismiss": "התעלם", "powered by Matrix": "מופעל ע\"י Matrix", - "Close": "סגור", - "Cancel": "ביטול", "Send": "שלח", "Failed to change password. Is your password correct?": "שינוי הסיסמה נכשל. האם הסיסמה שלך נכונה?", "unknown error code": "קוד שגיאה לא מוכר", @@ -50,7 +47,6 @@ "Notification targets": "יעדי התראה", "Today": "היום", "Friday": "שישי", - "Update": "עדכון", "What's New": "מה חדש", "On": "התראה", "Changelog": "דו\"ח שינויים", @@ -71,7 +67,6 @@ "Event sent!": "ארוע נשלח!", "Preparing to send logs": "מתכונן לשלוח יומנים", "Saturday": "שבת", - "Reject": "דחה", "Monday": "שני", "Toolbox": "תיבת כלים", "Collecting logs": "אוסף יומנים לנפוי שגיאה (דבאג)", @@ -106,7 +101,6 @@ "Confirm adding phone number": "אישור הוספת מספר טלפון", "Confirm adding this phone number by using Single Sign On to prove your identity.": "אשר הוספת מספר טלפון על ידי כניסה חד שלבית לאימות חשבונכם.", "Add Email Address": "הוספת כתובת מייל", - "Confirm": "אישור", "Click the button below to confirm adding this email address.": "לחץ על הכפתור בכדי לאשר הוספה של כתובת מייל הזו.", "Confirm adding email": "אשר הוספת כתובת מייל", "Single Sign On": "כניסה חד שלבית", @@ -228,7 +222,6 @@ "%(brand)s was not given permission to send notifications - please try again": "%(brand)s לא נתנו הרשאות לשלוח התרעות - אנא נסו שוב", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s אין אישור לשלוח אליכם הודעות - אנא בדקו את הרשאות הדפדפן", "%(name)s is requesting verification": "%(name)s מבקש אימות", - "Trust": "לבטוח", "Andorra": "אנדורה", "Bangladesh": "בנגלדש", "Bahrain": "בחריין", @@ -702,7 +695,6 @@ "not found": "לא נמצא", "in memory": "בזכרון", "Cross-signing public keys:": "מפתחות ציבוריים של חתימה צולבת:", - "Reset": "אתחל", "Set up": "הגדר", "Cross-signing is not set up.": "חתימה צולבת אינה מוגדרת עדיין.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "לחשבונך זהות חתימה צולבת באחסון סודי, אך הפגישה זו אינה מהימנה עדיין.", @@ -721,7 +713,6 @@ "Show less": "הצג פחות", "This bridge is managed by .": "הגשר הזה מנוהל על ידי משתמש .", "This bridge was provisioned by .": "הגשר הזה נוצר על ידי משתמש .", - "Upload": "העלאה", "Accept to continue:": "קבל להמשך:", "Your server isn't responding to some requests.": "השרת שלכם אינו מגיב לבקשות מסויימות בקשות.", "Pin": "נעץ", @@ -804,7 +795,6 @@ "You've successfully verified this user.": "המשתמש הזה אומת בהצלחה.", "Verified!": "אומת!", "The other party cancelled the verification.": "הצד השני ביטל את האימות.", - "Accept": "קבל", "Unknown caller": "מתקשר לא ידוע", "%(name)s on hold": "%(name)s במצב המתנה", "You held the call Switch": "שמם את השיחה על המתנה להחליף", @@ -891,8 +881,6 @@ "New login. Was this you?": "כניסה חדשה. האם זה אתם?", "Other users may not trust it": "יתכן משתמשים אחרים לא יבטחו בזה", "Safeguard against losing access to encrypted messages & data": "שמור מפני איבוד גישה אל הודעות ומידע מוצפן", - "Verify": "אימות", - "Upgrade": "שדרג", "Verify this session": "אשרו את ההתחברות הזאת", "Encryption upgrade available": "שדרוג הצפנה קיים", "Set up Secure Backup": "צור גיבוי מאובטח", @@ -959,7 +947,6 @@ "Reason (optional)": "סיבה (לא חובה)", "Confirm Removal": "אשר הסרה", "Removing…": "מסיר…", - "Skip": "דלג", "Email address": "כתובת דוא\"ל", "Unable to load commit detail: %(msg)s": "לא ניתן לטעון את פרטי ההתחייבות: %(msg)s", "If there is additional context that would help in analysing the issue, such as what you were doing at the time, room IDs, user IDs, etc., please include those things here.": "אם ישנו הקשר נוסף שיעזור לניתוח הבעיה, כגון מה שעשיתם באותו זמן, תעודות זהות, מזהי משתמש וכו ', אנא כללו את הדברים כאן.", @@ -1101,7 +1088,6 @@ "collapse": "אחד", "expand": "הרחב", "Please create a new issue on GitHub so that we can investigate this bug.": "אנא צור בעיה חדשה ב- GitHub כדי שנוכל לחקור את הבאג הזה.", - "Join": "הצטרפות", "This version of %(brand)s does not support searching encrypted messages": "גרסה זו של %(brand)s אינה תומכת בחיפוש הודעות מוצפנות", "This version of %(brand)s does not support viewing some encrypted files": "גרסה זו של %(brand)s אינה תומכת בצפייה בקבצים מוצפנים מסוימים", "Use the Desktop app to search encrypted messages": "השתמשו ב אפליקציית שולחן העבודה לחיפוש הודעות מוצפנות", @@ -1370,7 +1356,6 @@ "Unable to share phone number": "לא ניתן לשתף מספר טלפון", "Unable to revoke sharing for phone number": "לא ניתן לבטל את השיתוף למספר טלפון", "Discovery options will appear once you have added an email above.": "אפשרויות גילוי יופיעו לאחר הוספת דוא\"ל לעיל.", - "Share": "לשתף", "Revoke": "לשלול", "Complete": "מושלם", "Verify the link in your inbox": "אמת את הקישור בתיבת הדואר הנכנס שלך", @@ -2078,11 +2063,9 @@ "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "ההודעה שלך לא נשלחה מכיוון ששרת הבית הזה חרג ממגבלת המשאבים. אנא פנה למנהל השירות שלך כדי להמשיך להשתמש בשירות.", "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "ההודעה שלך לא נשלחה מכיוון ששרת הבתים הזה הגיע למגבלת המשתמשים הפעילים החודשיים שלה. אנא פנה למנהל השירות שלך כדי להמשיך להשתמש בשירות.", "You can't send any messages until you review and agree to our terms and conditions.": "אינך יכול לשלוח שום הודעה עד שתבדוק ותסכים ל התנאים וההגבלות שלנו .", - "View": "צפה", "You have no visible notifications.": "אין לך התראות גלויות.", "%(creator)s created and configured the room.": "%(creator)s יצר/ה והגדיר/ה את החדר.", "%(creator)s created this DM.": "%(creator)s יצר את DM הזה.", - "Logout": "יציאה", "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. זה יגרום לתקלה בקריפטוגרפיה מקצה לקצה בגרסה הישנה יותר. הודעות מוצפנות מקצה לקצה שהוחלפו לאחרונה בעת השימוש בגרסה הישנה עשויות שלא להיות ניתנות לפענוח בגירסה זו. זה עלול גם לגרום להודעות שהוחלפו עם גרסה זו להיכשל. אם אתה נתקל בבעיות, צא וחזור שוב. כדי לשמור על היסטוריית ההודעות, ייצא וייבא מחדש את המפתחות שלך.", "Old cryptography data detected": "נתגלו נתוני הצפנה ישנים", "Terms and Conditions": "תנאים והגבלות", @@ -2194,7 +2177,6 @@ "Back to chat": "חזרה לצ'אט", "Threads": "שרשורים", "Sound on": "צליל דולק", - "Stop": "עצור", "That's fine": "זה בסדר", "File Attached": "מצורף קובץ", "Export successful!": "הייצוא הצליח!", @@ -2235,13 +2217,10 @@ "Save Changes": "שמור שינוייים", "Click to copy": "לחץ להעתקה", "Show all rooms": "הצג את כל החדרים", - "Collapse": "הִתמוֹטְטוּת", - "Expand": "להרחיב", "Private": "פרטי", "Public": "ציבורי", "Create a space": "צור מרחב עבודה", "Address": "כתובת", - "Delete": "מחק", "Pin to sidebar": "הצמד לסרגל הצד", "More options": "אפשרויות נוספות", "Quick settings": "הגדרות מהירות", @@ -2698,7 +2677,6 @@ "Pinned": "הודעות נעוצות", "Nothing pinned, yet": "אין הודעות נעוצות, לבינתיים", "Files": "קבצים", - "Reload": "טעינה מחדש", "%(seconds)ss left": "נשארו %(seconds)s שניות", "%(minutes)sm %(seconds)ss left": "נשארו %(minutes)s דקות ו-%(seconds)s שניות", "%(hours)sh %(minutes)sm %(seconds)ss left": "נשארו %(hours)s שעות, %(minutes)s דקות ו-%(seconds)s שניות", @@ -2749,7 +2727,6 @@ "disable": "השבת", "done": "סיום", "edit": "ערוך", - "enable": "אפשר", "forgot_password": "שכחת את הסיסמה?", "forward": "קדימה", "invite": "הזמן", @@ -2770,9 +2747,31 @@ "start": "התחל", "start_chat": "התחל שיחה", "view_source": "הצג מקור", - "yes": "כן" + "yes": "כן", + "reject": "דחה", + "confirm": "אישור", + "dismiss": "התעלם", + "trust": "לבטוח", + "reload": "טעינה מחדש", + "cancel": "ביטול", + "stop": "עצור", + "join": "הצטרפות", + "close": "סגור", + "accept": "קבל", + "upgrade": "שדרג", + "verify": "אימות", + "update": "עדכון", + "delete": "מחק", + "upload": "העלאה", + "collapse": "הִתמוֹטְטוּת", + "reset": "אתחל", + "share": "לשתף", + "skip": "דלג", + "logout": "יציאה", + "view": "צפה", + "expand": "להרחיב" }, "a11y": { "user_menu": "תפריט משתמש" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index 2863e44c5aa..144e1172ccb 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -4,7 +4,6 @@ "This email address is already in use": "यह ईमेल आईडी पहले से इस्तेमाल में है", "This phone number is already in use": "यह फ़ोन नंबर पहले से इस्तेमाल में है", "Failed to verify email address: make sure you clicked the link in the email": "ईमेल आईडी सत्यापित नही हो पाया: कृपया सुनिश्चित कर लें कि आपने ईमेल में मौजूद लिंक पर क्लिक किया है", - "Dismiss": "खारिज", "powered by Matrix": "मैट्रिक्स द्वारा संचालित", "Call Failed": "कॉल विफल", "You cannot place a call with yourself.": "आप अपने साथ कॉल नहीं कर सकते हैं।", @@ -123,7 +122,6 @@ "When I'm invited to a room": "जब मुझे एक रूम में आमंत्रित किया जाता है", "Call invitation": "कॉल आमंत्रण", "Messages sent by bot": "रोबॉट द्वारा भेजे गए संदेश", - "Accept": "स्वीकार", "Incorrect verification code": "गलत सत्यापन कोड", "Submit": "जमा करें", "Phone": "फ़ोन", @@ -195,7 +193,6 @@ "Mention": "उल्लेख", "Share Link to User": "उपयोगकर्ता को लिंक साझा करें", "Admin Tools": "व्यवस्थापक उपकरण", - "Close": "बंद", "and %(count)s others...": { "other": "और %(count)s अन्य ...", "one": "और एक अन्य..." @@ -256,7 +253,6 @@ "Prompt before sending invites to potentially invalid matrix IDs": "संभावित अवैध मैट्रिक्स आईडी को निमंत्रण भेजने से पहले सूचित करें", "Messages containing my username": "मेरे उपयोगकर्ता नाम वाले संदेश", "The other party cancelled the verification.": "दूसरे पक्ष ने सत्यापन रद्द कर दिया।", - "Cancel": "रद्द", "Verified!": "सत्यापित!", "You've successfully verified this user.": "आपने इस उपयोगकर्ता को सफलतापूर्वक सत्यापित कर लिया है।", "Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "इस उपयोगकर्ता के सुरक्षित संदेश एंड-टू-एंड एन्क्रिप्टेड हैं और तीसरे पक्ष द्वारा पढ़ने में सक्षम नहीं हैं।", @@ -566,7 +562,6 @@ "Try again": "पुनः प्रयास करे", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "हमने ब्राउज़र से यह याद रखने के लिए कहा कि आप किस होमसर्वर का उपयोग आपको साइन इन करने के लिए करते हैं, लेकिन दुर्भाग्य से आपका ब्राउज़र इसे भूल गया है। साइन इन पेज पर जाएं और फिर से कोशिश करें.", "We couldn't log you in": "हम आपको लॉग इन नहीं कर सके", - "Trust": "विश्वास", "Only continue if you trust the owner of the server.": "केवल तभी जारी रखें जब आप सर्वर के स्वामी पर भरोसा करते हैं।", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "इस क्रिया के लिए ईमेल पते या फ़ोन नंबर को मान्य करने के लिए डिफ़ॉल्ट पहचान सर्वर तक पहुँचने की आवश्यकता है, लेकिन सर्वर के पास सेवा की कोई शर्तें नहीं हैं।", "Identity server has no terms of service": "पहचान सर्वर की सेवा की कोई शर्तें नहीं हैं", @@ -608,7 +603,6 @@ "Confirm adding phone number": "फ़ोन नंबर जोड़ने की पुष्टि करें", "Confirm adding this phone number by using Single Sign On to prove your identity.": "अपनी पहचान साबित करने के लिए सिंगल साइन ऑन का उपयोग करके इस फ़ोन नंबर को जोड़ने की पुष्टि करें।", "Add Email Address": "ईमेल पता जोड़ें", - "Confirm": "पुष्टि", "Click the button below to confirm adding this email address.": "इस ईमेल पते को जोड़ने की पुष्टि करने के लिए नीचे दिए गए बटन पर क्लिक करें।", "Confirm adding email": "ईमेल जोड़ने की पुष्टि करें", "Single Sign On": "केवल हस्ताक्षर के ऊपर", @@ -632,6 +626,12 @@ "ok": "ठीक", "remove": "हटाए", "save": "अमुकनाम्ना", - "yes": "हाँ" + "yes": "हाँ", + "confirm": "पुष्टि", + "dismiss": "खारिज", + "trust": "विश्वास", + "cancel": "रद्द", + "close": "बंद", + "accept": "स्वीकार" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/hr.json b/src/i18n/strings/hr.json index fdf9b599caa..eb79fab4d72 100644 --- a/src/i18n/strings/hr.json +++ b/src/i18n/strings/hr.json @@ -2,7 +2,6 @@ "This email address is already in use": "Ova email adresa se već koristi", "This phone number is already in use": "Ovaj broj telefona se već koristi", "Failed to verify email address: make sure you clicked the link in the email": "Nismo u mogućnosti verificirati Vašu email adresu. Provjerite dali ste kliknuli link u mailu", - "Dismiss": "Odbaci", "France": "Francuska", "Finland": "Finska", "Fiji": "Fiji", @@ -90,7 +89,6 @@ "Try again": "Pokušaj ponovo", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "Tražili smo od preglednika da zapamti koji kućni poslužitelj koristite za prijavu, ali ga je Vaš preglednik nažalost zaboravio. Idite na stranicu za prijavu i pokušajte ponovo.", "We couldn't log you in": "Nismo Vas mogli ulogirati", - "Trust": "Vjeruj", "Only continue if you trust the owner of the server.": "Nastavite samo ako vjerujete vlasniku poslužitelja.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ova radnja zahtijeva pristup zadanom poslužitelju identiteta radi provjere adrese e-pošte ili telefonskog broja, no poslužitelj nema nikakve uvjete usluge.", "Identity server has no terms of service": "Poslužitelj identiteta nema uvjete usluge", @@ -157,7 +155,6 @@ "Click the button below to confirm adding this phone number.": "Kliknite gumb ispod da biste potvrdili dodavanje ovog telefonskog broja.", "Confirm adding phone number": "Potvrdite dodavanje telefonskog broja", "Add Email Address": "Dodaj email adresu", - "Confirm": "Potvrdi", "Click the button below to confirm adding this email address.": "Kliknite gumb ispod da biste potvrdili dodavanje ove email adrese.", "Confirm adding email": "Potvrdite dodavanje email adrese", "Integration manager": "Upravitelj integracijama", @@ -169,6 +166,9 @@ }, "action": { "continue": "Nastavi", - "ok": "OK" + "ok": "OK", + "confirm": "Potvrdi", + "dismiss": "Odbaci", + "trust": "Vjeruj" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 3b671cd98ef..df70c986461 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -1,14 +1,11 @@ { - "Cancel": "Mégse", "Search": "Keresés", - "Dismiss": "Eltüntetés", "Failed to forget room %(errCode)s": "A szobát nem sikerült elfelejtetni: %(errCode)s", "Favourite": "Kedvencnek jelölés", "Notifications": "Értesítések", "Operation failed": "Sikertelen művelet", "powered by Matrix": "a gépházban: Matrix", "unknown error code": "ismeretlen hibakód", - "Accept": "Elfogadás", "Account": "Fiók", "Add": "Hozzáadás", "Admin": "Admin", @@ -25,7 +22,6 @@ "Authentication": "Azonosítás", "Failed to change password. Is your password correct?": "Nem sikerült megváltoztatni a jelszót. Helyesen írta be a jelszavát?", "Create new room": "Új szoba létrehozása", - "Close": "Bezárás", "%(items)s and %(lastItem)s": "%(items)s és %(lastItem)s", "and %(count)s others...": { "other": "és még: %(count)s ...", @@ -97,7 +93,6 @@ "Join Room": "Belépés a szobába", "Jump to first unread message.": "Ugrás az első olvasatlan üzenetre.", "Labs": "Labor", - "Logout": "Kilépé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 joined.": "%(senderName)s láthatóvá tette a szoba új üzeneteit minden szobatagnak, a csatlakozásuk idejétől kezdve.", @@ -260,7 +255,6 @@ "This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt.": "Ezzel a folyamattal lehetőséged van betölteni a titkosítási kulcsokat amiket egy másik Matrix kliensből mentettél ki. Ez után minden üzenetet vissza tudsz fejteni amit a másik kliens tudott.", "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.": "Ha egy újabb %(brand)s verziót használt, akkor valószínűleg ez a munkamenet nem lesz kompatibilis vele. Zárja be az ablakot és térjen vissza az újabb verzióhoz.", "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?": "Azonosítás céljából egy harmadik félhez leszel irányítva (%(integrationsUrl)s). Folytatod?", - "Skip": "Kihagy", "Check for update": "Frissítések keresése", "Delete widget": "Kisalkalmazás törlése", "Define the power level of a user": "A felhasználó szintjének meghatározása", @@ -430,7 +424,6 @@ "Notification targets": "Értesítések célpontja", "Today": "Ma", "Friday": "Péntek", - "Update": "Frissítés", "What's New": "Újdonságok", "On": "Be", "Changelog": "Változások", @@ -451,7 +444,6 @@ "Developer Tools": "Fejlesztői eszközök", "Preparing to send logs": "Előkészülés napló küldéshez", "Saturday": "Szombat", - "Reject": "Elutasítás", "Monday": "Hétfő", "Toolbox": "Eszköztár", "Collecting logs": "Naplók összegyűjtése", @@ -676,13 +668,11 @@ "Room avatar": "Szoba profilképe", "Room Name": "Szoba neve", "Room Topic": "Szoba témája", - "Join": "Csatlakozás", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Ellenőrizd ezt a felhasználót, hogy megbízhatónak lehessen tekinteni. Megbízható felhasználók további nyugalmat jelenthetnek ha végpontól végpontig titkosítást használsz.", "Incoming Verification Request": "Bejövő Hitelesítési Kérés", "Go back": "Vissza", "Email (optional)": "E-mail (nem kötelező)", "Phone (optional)": "Telefonszám (nem kötelező)", - "Confirm": "Megerősítés", "Join millions for free on the largest public server": "Csatlakozzon több millió felhasználóhoz ingyen a legnagyobb nyilvános szerveren", "Other": "Egyéb", "Guest": "Vendég", @@ -838,7 +828,6 @@ "Your browser likely removed this data when running low on disk space.": "A böngésző valószínűleg törölte ezeket az adatokat, amikor lecsökkent a szabad lemezterület.", "Upload files (%(current)s of %(total)s)": "Fájlok feltöltése (%(current)s / %(total)s)", "Upload files": "Fájlok feltöltése", - "Upload": "Feltöltés", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Ez a fájl túl nagy, hogy fel lehessen tölteni. A fájlméret korlátja %(limit)s, de a fájl %(sizeOfThisFile)s méretű.", "These files are too large to upload. The file size limit is %(limit)s.": "A fájl túl nagy a feltöltéshez. A fájlméret korlátja %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Néhány fájl túl nagy, hogy fel lehessen tölteni. A fájlméret korlátja %(limit)s.", @@ -905,7 +894,6 @@ "Uploaded sound": "Feltöltött hang", "Sounds": "Hangok", "Notification sound": "Értesítési hang", - "Reset": "Visszaállítás", "Set a new custom sound": "Új egyénii hang beállítása", "Browse": "Böngészés", "Use lowercase letters, numbers, dashes and underscores only": "Csak kisbetűt, számokat, kötőjeleket és aláhúzásokat használj", @@ -973,7 +961,6 @@ "Unable to revoke sharing for email address": "Az e-mail cím megosztását nem sikerült visszavonni", "Unable to share email address": "Az e-mail címet nem sikerült megosztani", "Revoke": "Visszavon", - "Share": "Megosztás", "Discovery options will appear once you have added an email above.": "Felkutatási beállítások megjelennek amint hozzáadtál egy e-mail címet alább.", "Unable to revoke sharing for phone number": "A telefonszám megosztást nem sikerült visszavonni", "Unable to share phone number": "A telefonszámot nem sikerült megosztani", @@ -1027,7 +1014,6 @@ "Remove recent messages": "Friss üzenetek törlése", "Error changing power level requirement": "A szükséges hozzáférési szint megváltoztatása nem sikerült", "An error occurred changing the room's power level requirements. Ensure you have sufficient permissions and try again.": "Hiba történt a szobához szükséges hozzáférési szint megváltoztatása során. Ellenőrizze, hogy megvan-e hozzá a megfelelő jogosultsága, és próbálja újra.", - "View": "Megtekintés", "Explore rooms": "Szobák felderítése", "Verify the link in your inbox": "Ellenőrizd a hivatkozást a bejövő leveleid között", "Complete": "Kiegészít", @@ -1095,7 +1081,6 @@ "Room %(name)s": "Szoba: %(name)s", "Unread messages.": "Olvasatlan üzenetek.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ez a művelet az e-mail-cím vagy telefonszám ellenőrzése miatt hozzáférést igényel a(z) alapértelmezett azonosítási kiszolgálójához, de a kiszolgálónak nincsenek felhasználási feltételei.", - "Trust": "Megbízom benne", "Message Actions": "Üzenet Műveletek", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "You verified %(name)s": "Ellenőrizte: %(name)s", @@ -1140,7 +1125,6 @@ "Trusted": "Megbízható", "Not trusted": "Megbízhatatlan", "Messages in this room are end-to-end encrypted.": "Az üzenetek a szobában végponttól végpontig titkosítottak.", - "Verify": "Ellenőrzés", "Any of the following data may be shared:": "Az alábbi adatok közül bármelyik megosztásra kerülhet:", "Your display name": "Saját megjelenítendő neve", "Your user ID": "Saját felhasználói azonosítója", @@ -1174,7 +1158,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "A szoba frissítése nem egyszerű művelet, általában a szoba hibás működése, hiányzó funkció vagy biztonsági sérülékenység esetén javasolt.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Ez általában a szoba kiszolgálóoldali kezelésében jelent változást. Ha a(z) %(brand)s kliensben tapasztal problémát, akkor küldjön egy hibajelentést.", "You'll upgrade this room from to .": " verzióról verzióra fogja fejleszteni a szobát.", - "Upgrade": "Fejlesztés", " wants to chat": " csevegni szeretne", "Start chatting": "Beszélgetés elkezdése", "Cross-signing public keys:": "Az eszközök közti hitelesítés nyilvános kulcsai:", @@ -2213,7 +2196,6 @@ "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", - "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", "This homeserver has been blocked by its administrator.": "A Matrix-kiszolgálót a rendszergazda zárolta.", "You're already in a call with this person.": "Már hívásban van ezzel a személlyel.", @@ -2405,8 +2387,6 @@ "Please provide an address": "Kérem adja meg a címet", "This space has no local addresses": "Ennek a térnek nincs helyi címe", "Space information": "Tér információi", - "Collapse": "Összecsukás", - "Expand": "Kibontás", "Recommended for public spaces.": "A nyilvános terekhez ajánlott.", "Allow people to preview your space before they join.": "A tér előnézetének engedélyezése a belépés előtt.", "Preview Space": "Tér előnézete", @@ -2596,7 +2576,6 @@ "Format": "Formátum", "Export Chat": "Beszélgetés exportálása", "Exporting your data": "Adatai exportálása", - "Stop": "Leállítás", "The export was cancelled successfully": "Az exportálás sikeresen félbeszakítva", "Export Successful": "Exportálás sikeres", "MB": "MB", @@ -2936,7 +2915,6 @@ "Internal room ID": "Belső szobaazonosító", "Group all your people in one place.": "Csoportosítsa az összes ismerősét egy helyre.", "Group all your favourite rooms and people in one place.": "Csoportosítsa az összes kedvenc szobáját és ismerősét egy helyre.", - "Call": "Hívás", "IRC (Experimental)": "IRC (kísérleti)", "Navigate to previous message in composer history": "Előző üzenetre navigálás a szerkesztőben", "Navigate to next message in composer history": "Következő üzenetre navigálás a szerkesztőben", @@ -3573,7 +3551,6 @@ "Early previews": "Lehetőségek korai megjelenítése", "What's next for %(brand)s? Labs are the best way to get things early, test out new features and help shape them before they actually launch.": "Mi várható a(z) %(brand)s fejlesztésében? A labor a legjobb hely az új dolgok kipróbálásához, visszajelzés adásához és a funkciók éles indulás előtti kialakításában történő segítséghez.", "Upcoming features": "Készülő funkciók", - "Apply": "Alkalmaz", "Search users in this room…": "Felhasználók keresése a szobában…", "Give one or multiple users in this room more privileges": "Több jog adása egy vagy több felhasználónak a szobában", "Add privileged users": "Privilegizált felhasználók hozzáadása", @@ -3787,7 +3764,6 @@ "Start DM anyway": "Közvetlen beszélgetés indítása mindenképpen", "Start DM anyway and never warn me again": "Közvetlen beszélgetés indítása mindenképpen és később se figyelmeztessen", "Unable to find profiles for the Matrix IDs listed below - would you like to start a DM anyway?": "Nem található fiók profil az alábbi Matrix azonosítókhoz - mégis a közvetlen csevegés elindítása mellett dönt?", - "Reload": "Újratöltés", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Ez lehet attól, hogy az alkalmazás több lapon is nyitva van, vagy hogy a böngészőadatok törölve lettek.", "Database unexpectedly closed": "Az adatbázis váratlanul lezárult", "Formatting": "Formázás", @@ -3854,7 +3830,6 @@ "disable": "Tiltás", "done": "Kész", "edit": "Szerkeszt", - "enable": "Engedélyezés", "forgot_password": "Elfelejtetted a jelszót?", "forward": "Továbbítás", "invite": "Meghívás", @@ -3875,9 +3850,33 @@ "start": "Indít", "start_chat": "Csevegés indítása", "view_source": "Forrás megjelenítése", - "yes": "Igen" + "yes": "Igen", + "reject": "Elutasítás", + "confirm": "Megerősítés", + "dismiss": "Eltüntetés", + "trust": "Megbízom benne", + "reload": "Újratöltés", + "cancel": "Mégse", + "stop": "Leállítás", + "join": "Csatlakozás", + "close": "Bezárás", + "accept": "Elfogadás", + "upgrade": "Fejlesztés", + "verify": "Ellenőrzés", + "update": "Frissítés", + "call": "Hívás", + "delete": "Törlés", + "upload": "Feltöltés", + "collapse": "Összecsukás", + "apply": "Alkalmaz", + "reset": "Visszaállítás", + "share": "Megosztás", + "skip": "Kihagy", + "logout": "Kilépés", + "view": "Megtekintés", + "expand": "Kibontás" }, "a11y": { "user_menu": "Felhasználói menü" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index a861a0ed661..650f2a5d868 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -1,5 +1,4 @@ { - "Accept": "Terima", "Account": "Akun", "Add": "Tambahkan", "No Microphones detected": "Tidak ada mikrofon terdeteksi", @@ -10,7 +9,6 @@ "An error has occurred.": "Telah terjadi kesalahan.", "Are you sure you want to reject the invitation?": "Anda yakin menolak undangannya?", "Change Password": "Ubah Kata Sandi", - "Close": "Tutup", "Commands": "Perintah", "Confirm password": "Konfirmasi kata sandi", "Current password": "Kata sandi sekarang", @@ -30,7 +28,6 @@ "Invalid Email Address": "Alamat Email Tidak Absah", "Invited": "Diundang", "Sign in with": "Masuk dengan", - "Logout": "Keluar", "Low priority": "Prioritas rendah", "Name": "Nama", "New passwords don't match": "Kata sandi baru tidak cocok", @@ -106,8 +103,6 @@ "Messages sent by bot": "Pesan dikirim oleh bot", "Notification targets": "Target notifikasi", "Today": "Hari Ini", - "Dismiss": "Abaikan", - "Update": "Perbarui", "Notifications": "Notifikasi", "What's New": "Apa Yang Baru", "On": "Nyala", @@ -131,7 +126,6 @@ "Unnamed room": "Ruang tanpa nama", "Friday": "Jumat", "Saturday": "Sabtu", - "Reject": "Tolak", "Monday": "Senin", "Collecting logs": "Mengumpulkan catatan", "Failed to forget room %(errCode)s": "Gagal melupakan ruangan %(errCode)s", @@ -143,7 +137,6 @@ "Call invitation": "Undangan panggilan", "What's new?": "Apa yang baru?", "When I'm invited to a room": "Ketika saya diundang ke ruangan", - "Cancel": "Batalkan", "Invite to this room": "Undang ke ruangan ini", "Thursday": "Kamis", "Back": "Kembali", @@ -526,7 +519,6 @@ "Try again": "Coba lagi", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "Kami menanyakan browser ini untuk mengingat homeserver apa yang Anda gunakan untuk membantu Anda masuk, tetapi sayangnya browser ini melupakannya. Pergi ke halaman masuk dan coba lagi.", "We couldn't log you in": "Kami tidak dapat memasukkan Anda", - "Trust": "Percayakan", "Only continue if you trust the owner of the server.": "Hanya lanjutkan jika Anda mempercayai pemilik server ini.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Aksi ini memerlukan mengakses server identitas bawaan untuk memvalidasi sebuah alamat email atau nomor telepon, tetapi server ini tidak memiliki syarat layanan apa pun.", "Identity server has no terms of service": "Identitas server ini tidak memiliki syarat layanan", @@ -571,7 +563,6 @@ "Confirm adding phone number": "Konfirmasi penambahan nomor telepon", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Konfirmasi penambahan nomor telepon ini dengan menggunakan Single Sign On untuk membuktikan identitas Anda.", "Add Email Address": "Tambahkan Alamat Email", - "Confirm": "Konfirmasi", "Click the button below to confirm adding this email address.": "Klik tombol di bawah untuk mengkonfirmasi penambahan alamat email ini.", "Confirm adding email": "Konfirmasi penambahan email", "Single Sign On": "Single Sign On", @@ -580,7 +571,6 @@ "Toolbox": "Kotak Peralatan", "expand": "buka", "collapse": "tutup", - "Join": "Bergabung", "Code": "Kode", "Refresh": "Muat Ulang", "%(oneUser)sleft %(count)s times": { @@ -613,7 +603,6 @@ "Emoji": "Emoji", "Room": "Ruangan", "Phone": "Ponsel", - "Skip": "Lewat", "Historical": "Riwayat", "Idle": "Idle", "Online": "Daring", @@ -689,24 +678,18 @@ "Folder": "Map", "Scissors": "Gunting", "Cancelling…": "Membatalkan…", - "Verify": "Lakukan verifikasi", - "Upgrade": "Tingkatkan", "Ok": "Ok", "Success!": "Berhasil!", - "View": "Pratinjau", "Summary": "Kesimpulan", "Service": "Layanan", "Notes": "Nota", "edited": "diedit", "Re-join": "Bergabung Ulang", - "Share": "Bagikan", "Browse": "Jelajahi", "Sounds": "Suara", "Credits": "Kredit", "Discovery": "Penemuan", "Change": "Ubah", - "Reset": "Atur Ulang", - "Upload": "Unggah", "Pin": "Pin", "Headphones": "Headphone", "Anchor": "Jangkar", @@ -930,7 +913,6 @@ "Disagree": "Tidak Setuju", "Sent": "Terkirim", "Format": "Format", - "Stop": "Berhenti", "MB": "MB", "Custom level": "Tingkat kustom", "Decrypting": "Mendekripsi", @@ -942,8 +924,6 @@ "Global": "Global", "Keyword": "Kata kunci", "Rename": "Ubah Nama", - "Collapse": "Tutup", - "Expand": "Buka", "Visibility": "Visibilitas", "Address": "Alamat", "Hangup": "Akhiri", @@ -964,7 +944,6 @@ "Spaces": "Space", "Private": "Privat", "Public": "Publik", - "Delete": "Hapus", "Connecting": "Menghubungkan", "%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s menghapus peraturan pencekalan pengguna yang berisi %(glob)s", "Message deleted by %(name)s": "Pesan dihapus oleh %(name)s", @@ -2950,7 +2929,6 @@ "Group all your favourite rooms and people in one place.": "Kelompokkan semua ruangan dan orang favorit Anda di satu tempat.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Space adalah cara untuk mengelompokkan ruangan dan orang. Di sampingnya space yang Anda berada, Anda dapat menggunakan space yang sudah dibuat.", "IRC (Experimental)": "IRC (Eksperimental)", - "Call": "Panggil", "Toggle hidden event visibility": "Alih visibilitas peristiwa tersembunyi", "Redo edit": "Ulangi editan", "Force complete": "Selesaikan dengan paksa", @@ -3591,7 +3569,6 @@ "This session doesn't support encryption and thus can't be verified.": "Sesi ini tidak mendukung enkripsi dan tidak dapat diverifikasi.", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Untuk keamanan dan privasi yang terbaik, kami merekomendasikan menggunakan klien Matrix yang mendukung enkripsi.", "You won't be able to participate in rooms where encryption is enabled when using this session.": "Anda tidak akan dapat berpartisipasi dalam ruangan di mana enkripsi diaktifkan ketika menggunakan sesi ini.", - "Apply": "Terapkan", "Search users in this room…": "Cari pengguna di ruangan ini…", "Give one or multiple users in this room more privileges": "Berikan satu atau beberapa pengguna dalam ruangan ini lebih banyak izin", "Add privileged users": "Tambahkan pengguna yang diizinkan", @@ -3784,7 +3761,6 @@ "Mute room": "Bisukan ruangan", "Match default setting": "Sesuai dengan pengaturan bawaan", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Pengguna (%(user)s) akhirnya tidak diundang ke %(roomId)s tetapi tidak ada kesalahan yang diberikan dari utilitas pengundang", - "Reload": "Muat ulang", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Ini mungkin terjadi karena memiliki aplikasinya terbuka di beberapa tab atau karena menghapus data peramban.", "Database unexpectedly closed": "Basis data ditutup secara tidak terduga", "Start DM anyway": "Mulai percakapan langsung saja", @@ -3955,7 +3931,6 @@ "disable": "Nonaktifkan", "done": "Selesai", "edit": "Edit", - "enable": "Aktifkan", "forgot_password": "Lupa kata sandi?", "forward": "Teruskan", "invite": "Undang", @@ -3976,9 +3951,33 @@ "start": "Mulai", "start_chat": "Mulai obrolan", "view_source": "Tampilkan Sumber", - "yes": "Ya" + "yes": "Ya", + "reject": "Tolak", + "confirm": "Konfirmasi", + "dismiss": "Abaikan", + "trust": "Percayakan", + "reload": "Muat ulang", + "cancel": "Batalkan", + "stop": "Berhenti", + "join": "Bergabung", + "close": "Tutup", + "accept": "Terima", + "upgrade": "Tingkatkan", + "verify": "Lakukan verifikasi", + "update": "Perbarui", + "call": "Panggil", + "delete": "Hapus", + "upload": "Unggah", + "collapse": "Tutup", + "apply": "Terapkan", + "reset": "Atur Ulang", + "share": "Bagikan", + "skip": "Lewat", + "logout": "Keluar", + "view": "Pratinjau", + "expand": "Buka" }, "a11y": { "user_menu": "Menu pengguna" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index a24ec1d3bfd..4341389cac1 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -61,7 +61,6 @@ "When I'm invited to a room": "Þegar mér er boðið á spjallrás", "Call invitation": "Boð um þátttöku í símtali", "Messages sent by bot": "Skilaboð send af vélmennum", - "Accept": "Samþykkja", "Submit": "Senda inn", "Phone": "Sími", "Add": "Bæta við", @@ -119,9 +118,7 @@ "Search…": "Leita…", "This Room": "Þessi spjallrás", "All Rooms": "Allar spjallrásir", - "Cancel": "Hætta við", "Jump to first unread message.": "Fara í fyrstu ólesnu skilaboðin.", - "Close": "Loka", "not specified": "ekki tilgreint", "Sunday": "Sunnudagur", "Monday": "Mánudagur", @@ -134,7 +131,6 @@ "Yesterday": "Í gær", "Error decrypting attachment": "Villa við afkóðun viðhengis", "Copied!": "Afritað!", - "Dismiss": "Hunsa", "Code": "Kóði", "powered by Matrix": "keyrt með Matrix", "Email address": "Tölvupóstfang", @@ -142,7 +138,6 @@ "Register": "Nýskrá", "Something went wrong!": "Eitthvað fór úrskeiðis!", "What's New": "Nýtt á döfinni", - "Update": "Uppfæra", "What's new?": "Hvað er nýtt á döfinni?", "Error encountered (%(errorDetail)s).": "Villa fannst (%(errorDetail)s).", "No update available.": "Engin uppfærsla tiltæk.", @@ -174,19 +169,16 @@ "Invalid Email Address": "Ógilt tölvupóstfang", "Verification Pending": "Sannvottun í bið", "Please check your email and click on the link it contains. Once this is done, click continue.": "Skoðaðu tölvupóstinn þinn og smelltu á tengilinn sem hann inniheldur. Þegar því er lokið skaltu smella á að halda áfram.", - "Skip": "Sleppa", "Failed to change password. Is your password correct?": "Mistókst að breyta lykilorðinu. Er lykilorðið rétt?", "You cannot delete this message. (%(code)s)": "Þú getur ekki eytt þessum skilaboðum. (%(code)s)", "Resend": "Endursenda", "Source URL": "Upprunaslóð", "All messages": "Öll skilaboð", - "Reject": "Hafna", "Low Priority": "Lítill forgangur", "Name": "Heiti", "Description": "Lýsing", "Signed Out": "Skráð/ur út", "Terms and Conditions": "Skilmálar og kvaðir", - "Logout": "Útskráning", "Invite to this room": "Bjóða inn á þessa spjallrás", "Notifications": "Tilkynningar", "Connectivity to the server has been lost.": "Tenging við vefþjón hefur rofnað.", @@ -407,26 +399,21 @@ "Add Email Address": "Bæta við tölvupóstfangi", "Click the button below to confirm adding this email address.": "Smelltu á hnappinn hér að neðan til að staðfesta að bæta við þessu netfangi.", "Confirm adding email": "Staðfestu að bæta við tölvupósti", - "Upgrade": "Uppfæra", - "Verify": "Sannreyna", "Trusted": "Treyst", "Subscribe": "Skrá", "Unsubscribe": "Afskrá", "None": "Ekkert", "Ignored/Blocked": "Hunsað/Hindrað", - "Trust": "Treysta", "Flags": "Fánar", "Symbols": "Tákn", "Objects": "Hlutir", "Activities": "Afþreying", "Document": "Skjal", "Complete": "Fullklára", - "View": "Skoða", "Strikethrough": "Yfirstrikletrað", "Italics": "Skáletrað", "Bold": "Feitletrað", "Disconnect": "Aftengjast", - "Share": "Deila", "Revoke": "Afturkalla", "Discovery": "Uppgötvun", "Actions": "Aðgerðir", @@ -435,7 +422,6 @@ "Service": "Þjónusta", "Removing…": "Er að fjarlægja…", "Browse": "Skoða", - "Reset": "Endursetja", "Sounds": "Hljóð", "edited": "breytti", "Re-join": "Taka þátt aftur", @@ -465,8 +451,6 @@ "Dog": "Hundur", "Guest": "Gestur", "Other": "Annað", - "Confirm": "Staðfesta", - "Join": "Taka þátt", "Encrypted": "Dulritað", "Encryption": "Dulritun", "Timeline": "Tímalína", @@ -773,7 +757,6 @@ "Afghanistan": "Afganistan", "United States": "Bandaríkin", "United Kingdom": "Stóra Bretland", - "Call": "Símtal", "More": "Meira", "Dialpad": "Talnaborð", "Connecting": "Tengist", @@ -795,7 +778,6 @@ "Use app": "Nota smáforrit", "Later": "Seinna", "Review": "Yfirfara", - "Stop": "Stöðva", "That's fine": "Það er í góðu", "Topic: %(topic)s": "Umfjöllunarefni: %(topic)s", "Current Timeline": "Núverandi tímalína", @@ -1117,14 +1099,10 @@ "Leave Space": "Yfirgefa svæði", "Save Changes": "Vista breytingar", "Click to copy": "Smelltu til að afrita", - "Collapse": "Fella saman", - "Expand": "Fletta út", "Go back": "Til baka", "Private": "Einka", "Public": "Opinbert", "Address": "Vistfang", - "Upload": "Senda inn", - "Delete": "Eyða", "Delete avatar": "Eyða auðkennismynd", "Space selection": "Val svæðis", "More options": "Fleiri valkostir", @@ -3204,7 +3182,6 @@ "Connection": "Tenging", "Video settings": "Myndstillingar", "Voice settings": "Raddstillingar", - "Apply": "Virkja", "Search users in this room…": "Leita að notendum á þessari spjallrás…", "Complete these to get the most out of %(brand)s": "Kláraðu þetta til að fá sem mest út úr %(brand)s", "You did it!": "Þú kláraðir þetta!", @@ -3342,7 +3319,6 @@ "disable": "Gera óvirkt", "done": "Lokið", "edit": "Breyta", - "enable": "Virkja", "forgot_password": "Gleymt lykilorð?", "forward": "Áfram", "invite": "Bjóða", @@ -3363,9 +3339,32 @@ "start": "Byrja", "start_chat": "Hefja spjall", "view_source": "Skoða frumkóða", - "yes": "Já" + "yes": "Já", + "reject": "Hafna", + "confirm": "Staðfesta", + "dismiss": "Hunsa", + "trust": "Treysta", + "cancel": "Hætta við", + "stop": "Stöðva", + "join": "Taka þátt", + "close": "Loka", + "accept": "Samþykkja", + "upgrade": "Uppfæra", + "verify": "Sannreyna", + "update": "Uppfæra", + "call": "Símtal", + "delete": "Eyða", + "upload": "Senda inn", + "collapse": "Fella saman", + "apply": "Virkja", + "reset": "Endursetja", + "share": "Deila", + "skip": "Sleppa", + "logout": "Útskráning", + "view": "Skoða", + "expand": "Fletta út" }, "a11y": { "user_menu": "Valmynd notandans" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index 61eebadd0ee..c2297529661 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -5,10 +5,7 @@ "powered by Matrix": "offerto da Matrix", "Search": "Cerca", "unknown error code": "codice errore sconosciuto", - "Cancel": "Annulla", - "Close": "Chiudi", "Create new room": "Crea una nuova stanza", - "Dismiss": "Chiudi", "Favourite": "Preferito", "Failed to change password. Is your password correct?": "Modifica password fallita. La tua password è corretta?", "Account": "Account", @@ -115,7 +112,6 @@ "Enable inline URL previews by default": "Attiva le anteprime URL in modo predefinito", "Enable URL previews for this room (only affects you)": "Attiva le anteprime URL in questa stanza (riguarda solo te)", "Enable URL previews by default for participants in this room": "Attiva le anteprime URL in modo predefinito per i partecipanti in questa stanza", - "Accept": "Accetta", "Incorrect verification code": "Codice di verifica sbagliato", "Submit": "Invia", "Phone": "Telefono", @@ -337,7 +333,6 @@ "Unable to add email address": "Impossibile aggiungere 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.", - "Skip": "Salta", "Name": "Nome", "You must register to use this functionality": "Devi registrarti per usare questa funzionalità", "You must join the room to see its files": "Devi entrare nella stanza per vederne i file", @@ -351,7 +346,6 @@ "For security, this session has been signed out. Please sign in again.": "Per sicurezza questa sessione è stata disconnessa. Accedi di nuovo.", "Old cryptography data detected": "Rilevati dati di crittografia obsoleti", "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.": "Sono stati rilevati dati da una vecchia versione di %(brand)s. Ciò avrà causato malfunzionamenti della crittografia end-to-end nella vecchia versione. I messaggi cifrati end-to-end scambiati di recente usando la vecchia versione potrebbero essere indecifrabili in questa versione. Anche i messaggi scambiati con questa versione possono fallire. Se riscontri problemi, disconnettiti e riaccedi. Per conservare la cronologia, esporta e re-importa le tue chiavi.", - "Logout": "Disconnetti", "Connectivity to the server has been lost.": "Connessione al server persa.", "Sent messages will be stored until your connection has returned.": "I messaggi inviati saranno salvati fino al ritorno della connessione.", "You seem to be uploading files, are you sure you want to quit?": "Sembra che tu stia inviando file, sei sicuro di volere uscire?", @@ -427,7 +421,6 @@ "Notification targets": "Obiettivi di notifica", "Today": "Oggi", "Friday": "Venerdì", - "Update": "Aggiornamento", "On": "Acceso", "Changelog": "Cambiamenti", "Waiting for response from server": "In attesa di una risposta dal server", @@ -448,7 +441,6 @@ "Developer Tools": "Strumenti per sviluppatori", "Preparing to send logs": "Preparazione invio dei log", "Saturday": "Sabato", - "Reject": "Rifiuta", "Monday": "Lunedì", "Toolbox": "Strumenti", "Collecting logs": "Sto recuperando i log", @@ -781,7 +773,6 @@ "Room avatar": "Avatar della stanza", "Room Name": "Nome stanza", "Room Topic": "Argomento stanza", - "Join": "Entra", "Power level": "Livello poteri", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Verifica questo utente per contrassegnarlo come affidabile. La fiducia degli utenti offre una maggiore tranquillità quando si utilizzano messaggi cifrati end-to-end.", "Incoming Verification Request": "Richiesta di verifica in arrivo", @@ -796,7 +787,6 @@ "Change": "Cambia", "Email (optional)": "Email (facoltativa)", "Phone (optional)": "Telefono (facoltativo)", - "Confirm": "Conferma", "Join millions for free on the largest public server": "Unisciti gratis a milioni nel più grande server pubblico", "Other": "Altro", "Couldn't load page": "Caricamento pagina fallito", @@ -868,7 +858,6 @@ "Your browser likely removed this data when running low on disk space.": "Probabilmente il tuo browser ha rimosso questi dati per mancanza di spazio su disco.", "Upload files (%(current)s of %(total)s)": "Invio dei file (%(current)s di %(total)s)", "Upload files": "Invia i file", - "Upload": "Carica", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Questo file è troppo grande da inviare. Il limite di dimensione è %(limit)s ma questo file è di %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Questi file sono troppo grandi da inviare. Il limite di dimensione è %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Alcuni file sono troppo grandi da inviare. Il limite di dimensione è %(limit)s.", @@ -900,7 +889,6 @@ "Uploaded sound": "Suono inviato", "Sounds": "Suoni", "Notification sound": "Suoni di notifica", - "Reset": "Ripristina", "Set a new custom sound": "Imposta un nuovo suono personalizzato", "Browse": "Sfoglia", "Cannot reach homeserver": "Impossibile raggiungere l'homeserver", @@ -967,7 +955,6 @@ "Unable to revoke sharing for email address": "Impossibile revocare la condivisione dell'indirizzo email", "Unable to share email address": "Impossibile condividere l'indirizzo email", "Revoke": "Revoca", - "Share": "Condividi", "Discovery options will appear once you have added an email above.": "Le opzioni di scoperta appariranno dopo aver aggiunto un'email sopra.", "Unable to revoke sharing for phone number": "Impossibile revocare la condivisione del numero di telefono", "Unable to share phone number": "Impossibile condividere il numero di telefono", @@ -1042,7 +1029,6 @@ "Report Content to Your Homeserver Administrator": "Segnala il contenuto all'amministratore dell'homeserver", "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "La segnalazione di questo messaggio invierà il suo 'ID evento' univoco all'amministratore del tuo homeserver. Se i messaggi della stanza sono cifrati, l'amministratore non potrà leggere il messaggio o vedere file e immagini.", "Send report": "Invia segnalazione", - "View": "Vedi", "Explore rooms": "Esplora stanze", "Show previews/thumbnails for images": "Mostra anteprime/miniature per le immagini", "Clear cache and reload": "Svuota la cache e ricarica", @@ -1139,7 +1125,6 @@ "Trusted": "Fidato", "Not trusted": "Non fidato", "Messages in this room are end-to-end encrypted.": "I messaggi in questa stanza sono cifrati end-to-end.", - "Verify": "Verifica", "Any of the following data may be shared:": "Possono essere condivisi tutti i seguenti dati:", "Your display name": "Il tuo nome visualizzato", "Your user ID": "Il tuo ID utente", @@ -1158,7 +1143,6 @@ "Integrations are disabled": "Le integrazioni sono disattivate", "Integrations not allowed": "Integrazioni non permesse", "Remove for everyone": "Rimuovi per tutti", - "Trust": "Fidati", "Manage integrations": "Gestisci integrazioni", "Ignored/Blocked": "Ignorati/Bloccati", "Verification Request": "Richiesta verifica", @@ -1175,7 +1159,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Aggiornare una stanza è un'azione avanzata ed è consigliabile quando una stanza non è stabile a causa di errori, funzioni mancanti o vulnerabilità di sicurezza.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Solitamente ciò influisce solo come la stanza viene elaborata sul server. Se stai riscontrando problemi con il tuo %(brand)s, segnala un errore.", "You'll upgrade this room from to .": "Aggiornerai questa stanza dalla alla .", - "Upgrade": "Aggiorna", "%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s ha rimosso la regola che bandisce utenti corrispondenti a %(glob)s", "%(senderName)s removed the rule banning rooms matching %(glob)s": "%(senderName)s ha rimosso la regola che bandisce stanze corrispondenti a %(glob)s", "%(senderName)s removed the rule banning servers matching %(glob)s": "%(senderName)s ha rimosso la regola che bandisce server corrispondenti a %(glob)s", @@ -2213,7 +2196,6 @@ "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", - "Delete": "Elimina", "Jump to the bottom of the timeline when you send a message": "Salta in fondo alla linea temporale quando invii un messaggio", "This homeserver has been blocked by its administrator.": "Questo homeserver è stato bloccato dal suo amministratore.", "You're already in a call with this person.": "Sei già in una chiamata con questa persona.", @@ -2360,8 +2342,6 @@ "Please provide an address": "Inserisci un indirizzo", "This space has no local addresses": "Questo spazio non ha indirizzi locali", "Space information": "Informazioni spazio", - "Collapse": "Riduci", - "Expand": "Espandi", "Preview Space": "Anteprima spazio", "Decide who can view and join %(spaceName)s.": "Decidi chi può vedere ed entrare in %(spaceName)s.", "Visibility": "Visibilità", @@ -2615,7 +2595,6 @@ "Select from the options below to export chats from your timeline": "Seleziona dalle opzioni sotto per esportare le chat dalla linea temporale", "Export Chat": "Esporta conversazione", "Exporting your data": "Esportazione dei dati", - "Stop": "Ferma", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Vuoi davvero fermare l'esportazione dei dati? Se lo fai, dovrai ricominciare da capo.", "Your export was successful. Find it in your Downloads folder.": "Esportazione riuscita. La puoi trovare nella cartella Download.", "The export was cancelled successfully": "Esportazione annullata correttamente", @@ -2944,7 +2923,6 @@ "Navigate to previous message to edit": "Vai al precedente messaggio da modificare", "Navigate to next message to edit": "Vai al prossimo messaggio da modificare", "Internal room ID": "ID interno stanza", - "Call": "Chiama", "Group all your rooms that aren't part of a space in one place.": "Raggruppa tutte le tue stanze che non fanno parte di uno spazio in un unico posto.", "Group all your people in one place.": "Raggruppa tutte le tue persone in un unico posto.", "Group all your favourite rooms and people in one place.": "Raggruppa tutte le tue stanze e persone preferite in un unico posto.", @@ -3590,7 +3568,6 @@ "This session doesn't support encryption and thus can't be verified.": "Questa sessione non supporta la crittografia, perciò non può essere verificata.", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Per maggiore sicurezza e privacy, è consigliabile usare i client di Matrix che supportano la crittografia.", "You won't be able to participate in rooms where encryption is enabled when using this session.": "Non potrai partecipare in stanze dove la crittografia è attiva mentre usi questa sessione.", - "Apply": "Applica", "Search users in this room…": "Cerca utenti in questa stanza…", "Give one or multiple users in this room more privileges": "Dai più privilegi a uno o più utenti in questa stanza", "Add privileged users": "Aggiungi utenti privilegiati", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Si è verificato un errore di rete tentando di trovare e saltare alla data scelta. Il tuo homeserver potrebbe essere irraggiungibile o c'è stato un problema temporaneo con la tua connessione. Riprova. Se persiste, contatta l'amministratore del tuo homeserver.", "Poll history": "Cronologia sondaggi", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "L'utente (%(user)s) non è stato segnato come invitato in %(roomId)s, ma non c'è stato alcun errore dall'utilità di invito", - "Reload": "Ricarica", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Potrebbe essere causato dall'apertura dell'app in schede multiple o dalla cancellazione dei dati del browser.", "Database unexpectedly closed": "Database chiuso inaspettatamente", "Mute room": "Silenzia stanza", @@ -3955,7 +3931,6 @@ "disable": "Disattiva", "done": "Fatto", "edit": "Modifica", - "enable": "Attiva", "forgot_password": "Hai dimenticato la password?", "forward": "Inoltra", "invite": "Invita", @@ -3976,9 +3951,33 @@ "start": "Inizia", "start_chat": "Inizia una chat", "view_source": "Visualizza sorgente", - "yes": "Sì" + "yes": "Sì", + "reject": "Rifiuta", + "confirm": "Conferma", + "dismiss": "Chiudi", + "trust": "Fidati", + "reload": "Ricarica", + "cancel": "Annulla", + "stop": "Ferma", + "join": "Entra", + "close": "Chiudi", + "accept": "Accetta", + "upgrade": "Aggiorna", + "verify": "Verifica", + "update": "Aggiornamento", + "call": "Chiama", + "delete": "Elimina", + "upload": "Carica", + "collapse": "Riduci", + "apply": "Applica", + "reset": "Ripristina", + "share": "Condividi", + "skip": "Salta", + "logout": "Disconnetti", + "view": "Vedi", + "expand": "Espandi" }, "a11y": { "user_menu": "Menu utente" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 286a87f9267..d529e3ed599 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -1,14 +1,12 @@ { "Anyone": "誰でも", "Change Password": "パスワードを変更", - "Close": "閉じる", "Current password": "現在のパスワード", "Favourite": "お気に入り", "Favourites": "お気に入り", "Invited": "招待済", "Low priority": "低優先度", "Notifications": "通知", - "Cancel": "キャンセル", "Create new room": "新しいルームを作成", "Search": "検索", "New Password": "新しいパスワード", @@ -24,7 +22,6 @@ "Camera": "カメラ", "Are you sure?": "よろしいですか?", "Operation failed": "操作に失敗しました", - "Dismiss": "閉じる", "powered by Matrix": "powered by Matrix", "Submit debug logs": "デバッグログを送信", "Online": "オンライン", @@ -67,7 +64,6 @@ "Resend": "再送信", "Messages containing my display name": "自身の表示名を含むメッセージ", "Notification targets": "通知対象", - "Update": "更新", "Failed to send logs: ": "ログの送信に失敗しました: ", "Unavailable": "使用できません", "Source URL": "ソースのURL", @@ -76,7 +72,6 @@ "Back": "戻る", "Event sent!": "イベントを送信しました!", "Preparing to send logs": "ログを送信する準備をしています", - "Reject": "拒否", "Toolbox": "ツールボックス", "State Key": "ステートキー", "Send logs": "ログを送信", @@ -192,7 +187,6 @@ "Enable URL previews for this room (only affects you)": "このルームのURLプレビューを有効にする(あなたにのみ適用)", "Enable URL previews by default for participants in this room": "このルームの参加者のために既定でURLプレビューを有効にする", "Enable widget screenshots on supported widgets": "サポートされているウィジェットで、ウィジェットのスクリーンショットを有効にする", - "Accept": "同意", "Incorrect verification code": "認証コードが誤っています", "Submit": "送信", "Phone": "電話", @@ -451,7 +445,6 @@ "Unable to add email address": "メールアドレスを追加できません", "Unable to verify email address.": "メールアドレスを確認できません。", "This will allow you to reset your password and receive notifications.": "パスワードをリセットして通知を受け取れるようになります。", - "Skip": "スキップ", "Share Room": "ルームを共有", "Link to most recent message": "最新のメッセージにリンク", "Share User": "ユーザーを共有", @@ -475,7 +468,6 @@ "Review terms and conditions": "利用規約を確認", "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の古いバージョンのデータを検出しました。これにより、古いバージョンではエンドツーエンドの暗号化が機能しなくなります。古いバージョンを使用している間に最近交換されたエンドツーエンドの暗号化されたメッセージは、このバージョンでは復号化できません。また、このバージョンで交換されたメッセージが失敗することもあります。問題が発生した場合は、ログアウトして再度ログインしてください。メッセージ履歴を保持するには、鍵をエクスポートして再インポートしてください。", - "Logout": "ログアウト", "You can't send any messages until you review and agree to our terms and conditions.": "利用規約 を確認して同意するまでは、いかなるメッセージも送信できません。", "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "このホームサーバーが月間アクティブユーザー制限を超えたため、メッセージを送信できませんでした。サービスを引き続き使用するには、サービスの管理者にお問い合わせください。", "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "このホームサーバーがリソース制限を超えたため、メッセージを送信できませんでした。サービスを引き続き使用するには、サービスの管理者にお問い合わせください。", @@ -599,7 +591,6 @@ "%(senderDisplayName)s made the room invite only.": "%(senderDisplayName)sがこのルームを「招待者のみ参加可能」に変更しました。", "%(senderDisplayName)s has allowed guests to join the room.": "%(senderDisplayName)sがこのルームへのゲストによる参加を許可しました。", "Only continue if you trust the owner of the server.": "サーバーの所有者を信頼する場合のみ続行してください。", - "Trust": "信頼", "Use an identity server to invite by email. Manage in Settings.": "IDサーバーを使用し、メールで招待。設定画面で管理。", "%(senderDisplayName)s changed the join rule to %(rule)s": "%(senderDisplayName)sが参加ルールを「%(rule)s」に変更しました。", "%(senderDisplayName)s has prevented guests from joining the room.": "%(senderDisplayName)sがこのルームへのゲストによる参加を拒否しました。", @@ -639,7 +630,6 @@ "Room Addresses": "ルームのアドレス", "Sounds": "音", "Notification sound": "通知音", - "Reset": "リセット", "Set a new custom sound": "カスタム音を設定", "Browse": "参照", "Roles & Permissions": "役割と権限", @@ -649,7 +639,6 @@ "Encrypted": "暗号化", "Email Address": "メールアドレス", "Main address": "メインアドレス", - "Join": "参加", "Create a private room": "非公開ルームを作成", "Topic (optional)": "トピック(任意)", "Hide advanced": "高度な設定を非表示にする", @@ -724,7 +713,6 @@ "Never send encrypted messages to unverified sessions in this room from this session": "このセッションでは、このルームの未認証のセッションに対して暗号化されたメッセージを送信しない", "Encrypted messages in one-to-one chats": "1対1のチャットでの暗号化されたメッセージ", "Encrypted messages in group chats": "グループチャットでの暗号化されたメッセージ", - "Upload": "アップロード", "Enable desktop notifications for this session": "このセッションでデスクトップ通知を有効にする", "Email addresses": "メールアドレス", "This room is end-to-end encrypted": "このルームはエンドツーエンドで暗号化されています", @@ -759,7 +747,6 @@ "Unknown Command": "不明なコマンド", "Unrecognised command: %(commandText)s": "認識されていないコマンド:%(commandText)s", "Send as message": "メッセージとして送信", - "Confirm": "承認", "Enable audible notifications for this session": "このセッションで音声通知を有効にする", "Enable encryption?": "暗号化を有効にしますか?", "Once enabled, encryption for a room cannot be disabled. Messages sent in an encrypted room cannot be seen by the server, only by the participants of the room. Enabling encryption may prevent many bots and bridges from working correctly. Learn more about encryption.": "一度有効にしたルームの暗号化は無効にすることはできません。暗号化されたルームで送信されたメッセージは、サーバーからは閲覧できず、そのルームのメンバーだけが閲覧できます。暗号化を有効にすると、多くのボットやブリッジが正常に動作しなくなる可能性があります。暗号化についての詳細はこちらをご覧ください。", @@ -771,8 +758,6 @@ "Not Trusted": "信頼されていません", "Later": "後で", "Review": "確認", - "Upgrade": "アップグレード", - "Verify": "認証", "Trusted": "信頼済", "Not trusted": "信頼されていません", "%(count)s verified sessions": { @@ -1086,7 +1071,6 @@ "Unable to share phone number": "電話番号を共有できません", "Unable to revoke sharing for phone number": "電話番号の共有を取り消せません", "Discovery options will appear once you have added an email above.": "上でメールアドレスを追加すると、発見可能に設定するメールアドレスを選択できるようになります。", - "Share": "共有", "Revoke": "取り消す", "Complete": "完了", "Verify the link in your inbox": "受信したメールの認証リンクを開いてください", @@ -1819,7 +1803,6 @@ "Open space for anyone, best for communities": "誰でも参加できる公開スペース。コミュニティー向け", "Public": "公開", "Create a space": "スペースを作成", - "Delete": "削除", "Jump to the bottom of the timeline when you send a message": "メッセージを送信する際にタイムラインの最下部に移動", "This homeserver has been blocked by its administrator.": "このホームサーバーは管理者によりブロックされています。", "You're already in a call with this person.": "既にこの人と通話中です。", @@ -2041,7 +2024,6 @@ "Previous autocomplete suggestion": "前の自動補完の候補", "Next autocomplete suggestion": "次の自動補完の候補", "Expand map": "地図を開く", - "Expand": "展開", "Expand room list section": "ルーム一覧のセクションを展開", "Collapse room list section": "ルーム一覧のセクションを折りたたむ", "Automatically send debug logs when key backup is not functioning": "鍵のバックアップが機能していない際に、自動的にデバッグログを送信", @@ -2306,7 +2288,6 @@ "Remove from room": "ルームから追放", "Failed to remove user": "ユーザーの追放に失敗しました", "Success!": "成功しました!", - "Collapse": "折りたたむ", "Comment": "コメント", "Information": "情報", "Restore": "復元", @@ -2409,7 +2390,6 @@ "Invalid URL": "不正なURL", "The server is offline.": "サーバーはオフラインです。", "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "匿名のデータを共有すると、問題の特定に役立ちます。個人情報の収集や、第三者とのデータ共有はありません。詳細を確認", - "Stop": "停止", "JSON": "JSON", "HTML": "HTML", "Generating a ZIP": "ZIPファイルを生成しています", @@ -2583,7 +2563,6 @@ "Moderation": "モデレート", "Space selection": "スペースの選択", "Looks good!": "問題ありません!", - "View": "表示", "Zoom out": "縮小", "Backspace": "バックスペース", "Unnamed Space": "名前のないスペース", @@ -2686,7 +2665,6 @@ "other": "%(severalUsers)sが%(count)s件の非表示のメッセージを送信しました" }, "Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "アンケートを終了してよろしいですか?投票を締め切り、最終結果を表示します。", - "Call": "通話", "Your camera is still enabled": "カメラがまだ有効です", "Your camera is turned off": "カメラが無効です", "Sends the given message with a space themed effect": "メッセージを宇宙のテーマのエフェクトと共に送信", @@ -3398,7 +3376,6 @@ "30s forward": "30秒進める", "30s backward": "30秒戻す", "Change layout": "レイアウトを変更", - "Apply": "適用", "Cancelled": "キャンセル済", "Create a link": "リンクを作成", "Edit link": "リンクを編集", @@ -3752,7 +3729,6 @@ "disable": "無効にする", "done": "完了", "edit": "編集", - "enable": "有効にする", "forgot_password": "パスワードを忘れましたか?", "forward": "転送", "invite": "招待", @@ -3773,9 +3749,32 @@ "start": "開始", "start_chat": "チャットを開始", "view_source": "ソースコードを表示", - "yes": "はい" + "yes": "はい", + "reject": "拒否", + "confirm": "承認", + "dismiss": "閉じる", + "trust": "信頼", + "cancel": "キャンセル", + "stop": "停止", + "join": "参加", + "close": "閉じる", + "accept": "同意", + "upgrade": "アップグレード", + "verify": "認証", + "update": "更新", + "call": "通話", + "delete": "削除", + "upload": "アップロード", + "collapse": "折りたたむ", + "apply": "適用", + "reset": "リセット", + "share": "共有", + "skip": "スキップ", + "logout": "ログアウト", + "view": "表示", + "expand": "展開" }, "a11y": { "user_menu": "ユーザーメニュー" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index a8f4f9a9abe..6ec78063034 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -119,7 +119,6 @@ "When I'm invited to a room": "nu da friti le ka ziljmina lo se zilbe'i kei do", "Call invitation": "nu da co'a fonjo'e do", "Messages sent by bot": "nu da zilbe'i fi pa sampre", - "Accept": "nu fonjo'e", "Incorrect verification code": ".i na'e drani ke lacri lerpoi", "Submit": "nu zilbe'i", "Phone": "fonxa", @@ -228,7 +227,6 @@ "Bell": "janbe", "Headphones": "selsnapra", "Pin": "pijne", - "Upload": "nu kibdu'a", "Send an encrypted reply…": "nu pa mifra be pa jai te spuda cu zilbe'i", "Send a reply…": "nu pa jai te spuda cu zilbe'i", "Send an encrypted message…": "nu pa mifra be pa notci cu zilbe'i", @@ -286,10 +284,8 @@ "Waiting for %(displayName)s to verify…": ".i ca'o denpa lo nu la'o zoi. %(displayName)s .zoi mo'u co'a lacri", "Cancelling…": ".i ca'o co'u co'e", "To be secure, do this in person or use a trusted way to communicate.": ".i lo nu marji penmi vau ja pilno pa se lacri lo nu tavla cu sarcu lo nu snura", - "Close": "nu zilmipri", "Ok": "je'e", "Verify this session": "nu co'a lacri le se samtcise'u", - "Verify": "nu co'a lacri", "What's New": "notci le du'u cnino", "You joined the call": ".i do mo'u co'a fonjo'e", "%(senderName)s joined the call": ".i la'o zoi. %(senderName)s .zoi mo'u co'a fonjo'e", @@ -331,7 +327,6 @@ "one": ".i samtcise'u %(count)s da" }, "Hide sessions": "nu ro se samtcise'u cu zilmipri", - "Logout": "nu co'u jaspu", "For help with using %(brand)s, click here or start a chat with our bot using the button below.": ".i gi je lo nu samcu'a le dei cei'i gi lo nu co'a tavla le sampre cu tadji lo nu facki le du'u tadji lo nu pilno la'o zoi. %(brand)s .zoi", "This room is end-to-end encrypted": ".i ro zilbe'i be fo le cei'i cu mifra", "Everyone in this room is verified": ".i do lacri ro pagbu be le se zilbe'i", @@ -356,7 +351,6 @@ "In reply to ": ".i nu spuda tu'a la'o zoi. .zoi", "Show less": "nu viska so'u da", "Unable to share email address": ".i da nabmi fi lo nu jungau le du'u samymri judri", - "Share": "nu jungau", "Unable to share phone number": ".i da nabmi fi lo nu jungau le du'u fonjudri", "Edit message": "nu basti fi le ka notci", "Share room": "nu jungau fi le du'u ve zilbe'i", @@ -373,7 +367,6 @@ "Download %(text)s": "nu kibycpa la'o zoi. %(text)s .zoi", "Explore rooms": "nu facki le du'u ve zilbe'i", "Create Account": "nu pa re'u co'a jaspu", - "Dismiss": "nu mipri", "common": { "analytics": "lanli datni", "error": "nabmi", @@ -395,6 +388,13 @@ "retry": "nu za'u re'u troci", "save": "nu co'a vreji", "start": "nu co'a co'e", - "start_chat": "nu co'a tavla" + "start_chat": "nu co'a tavla", + "dismiss": "nu mipri", + "close": "nu zilmipri", + "accept": "nu fonjo'e", + "verify": "nu co'a lacri", + "upload": "nu kibdu'a", + "share": "nu jungau", + "logout": "nu co'u jaspu" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 81db2d4edbd..5f4e6b04eef 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -6,12 +6,10 @@ "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "ფაილი '%(fileName)s' აჭარბებს ამ ჰომსერვერის ზომის ლიმიტს ატვირთვისთვის", "The file '%(fileName)s' failed to upload.": "ფაილი '%(fileName)s' ვერ აიტვირთა.", "Attachment": "Მიმაგრებული ფაილი", - "Dismiss": "დახურვა", "This email address is already in use": "ელ. ფოსტის ეს მისამართი დაკავებულია", "Use Single Sign On to continue": "გასაგრძელებლად გამოიყენე ერთჯერადი ავტორიზაცია", "Confirm adding email": "დაადასტურე ელ.ფოსტის დამატება", "Click the button below to confirm adding this email address.": "ელ. ფოსტის ამ მისამართის დამატება დაადასტურე ღილაკზე დაჭერით.", - "Confirm": "დადასტურება", "Add Email Address": "ელ. ფოსტის მისამართის დამატება", "Failed to verify email address: make sure you clicked the link in the email": "ელ. ფოსტის მისამართის ვერიფიკაცია ვერ მოხერხდა: დარწმუნდი, რომ დააჭირე ბმულს ელ. ფოსტის წერილში", "Confirm adding this phone number by using Single Sign On to prove your identity.": "ამ ტელეფონის ნომრის დასადასტურებლად გამოიყენე ერთჯერადი ავტორიზაცია, საკუთარი იდენტობის დასადასტურებლად.", @@ -56,5 +54,9 @@ "Feb": "თებ", "common": { "error": "შეცდომა" + }, + "action": { + "confirm": "დადასტურება", + "dismiss": "დახურვა" } } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index f78589d480b..cd94287ee24 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -1,8 +1,5 @@ { - "Confirm": "Sentem", - "Dismiss": "Agwi", "Permission Required": "Tasiregt tlaq", - "Cancel": "Sefsex", "Sun": "Iṭij", "Mon": "Ari", "Tue": "Ara", @@ -24,7 +21,6 @@ "Dec": "Duj", "PM": "MD", "AM": "FT", - "Trust": "Ittkel", "Create Account": "Rnu amiḍan", "Sign In": "Kcem", "Default": "Amezwer", @@ -45,15 +41,10 @@ "Review": "Senqed", "Later": "Ticki", "Notifications": "Ilɣa", - "Close": "Mdel", "Warning": "Asmigel", "Ok": "Ih", - "Upgrade": "Leqqem", - "Verify": "Senqed", "What's New": "D acu-t umaynut", - "Update": "Leqqem", "Font size": "Tuɣzi n tsefsit", - "Accept": "Qbel", "Cat": "Amcic", "Lion": "Izem", "Rabbit": "Awtul", @@ -70,7 +61,6 @@ "Anchor": "Tamdeyt", "Headphones": "Wennez", "Folder": "Akaram", - "Upload": "Sali", "Show less": "Sken-d drus", "Show more": "Sken-d ugar", "Warning!": "Ɣur-k·m!", @@ -105,14 +95,12 @@ "Microphone": "Asawaḍ", "Camera": "Takamiṛatt", "Sounds": "Imesla", - "Reset": "Wennez", "Browse": "Inig", "Default role": "Tamlilt tamzwert", "Permissions": "Tisirag", "Anyone": "Yal yiwen", "Encryption": "Awgelhen", "Complete": "Yemmed", - "Share": "Bḍu", "Verification code": "Tangalt n usenqed", "Add": "Rnu", "Email Address": "Tansa n yimayl", @@ -124,7 +112,6 @@ "Search": "Nadi", "Favourites": "Ismenyifen", "Sign Up": "Jerred", - "Reject": "Agi", "Sort by": "Semyizwer s", "Activity": "Armud", "A-Z": "A-Z", @@ -154,7 +141,6 @@ "Flags": "Anayen", "Categories": "Taggayin", "More options": "Ugar n textiṛiyin", - "Join": "Rnu", "collapse": "fneẓ", "Server name": "Isem n uqeddac", "Close dialog": "Mdel adiwenni", @@ -172,7 +158,6 @@ "Send report": "Azen aneqqis", "Refresh": "Smiren", "Email address": "Tansa n yimayl", - "Skip": "Zgel", "Terms of Service": "Tiwtilin n useqdec", "Service": "Ameẓlu", "Summary": "Agzul", @@ -193,8 +178,6 @@ "Description": "Aglam", "Explore rooms": "Snirem tixxamin", "Unknown error": "Tuccḍa tarussint", - "Logout": "Tuffɣa", - "View": "Sken", "Guest": "Anerzaf", "Feedback": "Takti", "Your password has been reset.": "Awal uffir-inek/inem yettuwennez.", @@ -1982,7 +1965,6 @@ "disable": "Sens", "done": "Immed", "edit": "Ẓreg", - "enable": "Rmed", "forgot_password": "Tettuḍ awal uffir?", "invite": "Nced", "invites_list": "Inced-d", @@ -2002,9 +1984,26 @@ "start": "Bdu", "start_chat": "Bdu adiwenni", "view_source": "Wali aɣbalu", - "yes": "Ih" + "yes": "Ih", + "reject": "Agi", + "confirm": "Sentem", + "dismiss": "Agwi", + "trust": "Ittkel", + "cancel": "Sefsex", + "join": "Rnu", + "close": "Mdel", + "accept": "Qbel", + "upgrade": "Leqqem", + "verify": "Senqed", + "update": "Leqqem", + "upload": "Sali", + "reset": "Wennez", + "share": "Bḍu", + "skip": "Zgel", + "logout": "Tuffɣa", + "view": "Sken" }, "a11y": { "user_menu": "Umuɣ n useqdac" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index a3d866c8c23..21e38d94ca0 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -1,13 +1,9 @@ { - "Cancel": "취소", - "Close": "닫기", "Create new room": "새 방 만들기", - "Dismiss": "버리기", "Notifications": "알림", "powered by Matrix": "Matrix의 지원을 받음", "Search": "찾기", "unknown error code": "알 수 없는 오류 코드", - "Accept": "수락", "Account": "계정", "Add": "추가", "Admin": "관리자", @@ -99,7 +95,6 @@ "Join Room": "방에 참가", "Jump to first unread message.": "읽지 않은 첫 메시지로 건너뜁니다.", "Labs": "실험실", - "Logout": "로그아웃", "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 joined.": "%(senderName)s님이 이후 방 구성원 모두, 들어온 시점부터 방의 기록을 볼 수 있게 했습니다.", @@ -261,13 +256,11 @@ "Authentication check failed: incorrect password?": "인증 확인 실패: 비밀번호를 틀리셨나요?", "Do you want to set an email address?": "이메일 주소를 설정하시겠어요?", "This will allow you to reset your password and receive notifications.": "이렇게 하면 비밀번호를 다시 설정하고 알림을 받을 수 있습니다.", - "Skip": "건너뛰기", "Sunday": "일요일", "Messages sent by bot": "봇에게 받은 메시지", "Notification targets": "알림 대상", "Today": "오늘", "Friday": "금요일", - "Update": "업데이트", "What's New": "새로운 점", "On": "켜기", "Changelog": "바뀐 점", @@ -289,7 +282,6 @@ "Developer Tools": "개발자 도구", "Unnamed room": "이름 없는 방", "Saturday": "토요일", - "Reject": "거절하기", "Monday": "월요일", "Toolbox": "도구 상자", "Collecting logs": "로그 수집 중", @@ -755,7 +747,6 @@ "Uploaded sound": "업로드된 소리", "Sounds": "소리", "Notification sound": "알림 소리", - "Reset": "되돌리기", "Set a new custom sound": "새 맞춤 소리 설정", "Browse": "찾기", "Change room avatar": "방 아바타 변경", @@ -784,7 +775,6 @@ "Unable to revoke sharing for email address": "이메일 주소 공유를 취소할 수 없음", "Unable to share email address": "이메일 주소를 공유할 수 없음", "Revoke": "취소", - "Share": "공유", "Discovery options will appear once you have added an email above.": "위에 이메일을 추가하면 검색 옵션에 나타납니다.", "Unable to revoke sharing for phone number": "전화번호 공유를 취소할 수 없음", "Unable to share phone number": "전화번호를 공유할 수 없음", @@ -833,7 +823,6 @@ "reacted with %(shortName)s": "%(shortName)s으로 리액션함", "Edited at %(date)s. Click to view edits.": "%(date)s에 편집함. 클릭해서 편집 보기.", "edited": "편집됨", - "Join": "참가", "Rotate Left": "왼쪽으로 회전", "Rotate Right": "오른쪽으로 회전", "%(severalUsers)shad their invitations withdrawn %(count)s times": { @@ -903,7 +892,6 @@ "Upload files (%(current)s of %(total)s)": "파일 업로드 (총 %(total)s개 중 %(current)s개)", "Upload files": "파일 업로드", "Upload all": "전부 업로드", - "Upload": "업로드", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "이 파일은 업로드하기에 너무 큽니다. 파일 크기 한도는 %(limit)s이지만 이 파일은 %(sizeOfThisFile)s입니다.", "These files are too large to upload. The file size limit is %(limit)s.": "이 파일들은 업로드하기에 너무 큽니다. 파일 크기 한도는 %(limit)s입니다.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "일부 파일이 업로드하기에 너무 큽니다. 파일 크기 한도는 %(limit)s입니다.", @@ -936,7 +924,6 @@ "Enter username": "사용자 이름 입력", "Some characters not allowed": "일부 문자는 허용할 수 없습니다", "Email (optional)": "이메일 (선택)", - "Confirm": "확인", "Phone (optional)": "전화 (선택)", "Join millions for free on the largest public server": "가장 넓은 공개 서버에 수 백 만명이 무료로 등록함", "Couldn't load page": "페이지를 불러올 수 없음", @@ -1026,7 +1013,6 @@ "one": "1개의 메시지 삭제" }, "Remove recent messages": "최근 메시지 삭제", - "View": "보기", "Explore rooms": "방 검색", "Please fill why you're reporting.": "왜 신고하는 지 이유를 적어주세요.", "Report Content to Your Homeserver Administrator": "홈서버 관리자에게 내용 신고하기", @@ -1094,7 +1080,6 @@ "Room %(name)s": "%(name)s 방", "Unread messages.": "읽지 않은 메시지.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "이 작업에는 이메일 주소 또는 전화번호를 확인하기 위해 기본 ID 서버 에 접근해야 합니다. 하지만 서버가 서비스 약관을 갖고 있지 않습니다.", - "Trust": "신뢰함", "Message Actions": "메시지 동작", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "You verified %(name)s": "%(name)s님을 확인했습니다", @@ -1139,7 +1124,6 @@ "Trusted": "신뢰함", "Not trusted": "신뢰하지 않음", "Messages in this room are end-to-end encrypted.": "이 방의 메시지는 종단간 암호화되었습니다.", - "Verify": "확인", "You have ignored this user, so their message is hidden. Show anyways.": "이 사용자를 무시했습니다. 사용자의 메시지는 숨겨집니다. 무시하고 보이기.", "Any of the following data may be shared:": "다음 데이터가 공유됩니다:", "Your display name": "당신의 표시 이름", @@ -1176,7 +1160,6 @@ "Appearance Settings only affect this %(brand)s session.": "모습 설정은 이 %(brand)s 세션에만 영향을 끼칩니다.", "Customise your appearance": "모습 개인화하기", "Delete avatar": "아바타 삭제", - "Delete": "삭제", "More options": "추가 옵션", "Pin to sidebar": "사이드바 고정", "Developer tools": "개발자 도구", @@ -1247,7 +1230,6 @@ "Leave all rooms": "모든 방에서 떠나기", "Show all rooms": "모든 방 목록 보기", "All rooms": "모든 방 목록", - "Expand": "펼치기", "Create a new space": "새로운 스페이스 만들기", "Create a space": "스페이스 만들기", "Export Chat": "대화 내보내기", @@ -1395,6 +1377,24 @@ "save": "저장", "start_chat": "대화 시작", "view_source": "소스 보기", - "yes": "네" + "yes": "네", + "reject": "거절하기", + "confirm": "확인", + "dismiss": "버리기", + "trust": "신뢰함", + "cancel": "취소", + "join": "참가", + "close": "닫기", + "accept": "수락", + "verify": "확인", + "update": "업데이트", + "delete": "삭제", + "upload": "업로드", + "reset": "되돌리기", + "share": "공유", + "skip": "건너뛰기", + "logout": "로그아웃", + "view": "보기", + "expand": "펼치기" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/lo.json b/src/i18n/strings/lo.json index 363b0676e8e..d278361a29d 100644 --- a/src/i18n/strings/lo.json +++ b/src/i18n/strings/lo.json @@ -5,7 +5,6 @@ "Confirm adding this phone number by using Single Sign On to prove your identity.": "ຢືນຢັນການເພີ່ມອີເມວນີ້ໂດຍໃຊ້ Single Sign On ເພື່ອພິສູດຕົວຕົນຂອງທ່ານ.", "Failed to verify email address: make sure you clicked the link in the email": "ບໍ່ສາມາດກວດສອບອີເມວໄດ້: ໃຫ້ແນ່ໃຈວ່າທ່ານໄດ້ກົດໃສ່ການເຊື່ອມຕໍ່ໃນອີເມວ", "Add Email Address": "ເພີ່ມອີເມວ", - "Confirm": "ຢືນຢັນ", "Click the button below to confirm adding this email address.": "ກົດປຸ່ມຂ້າງລຸ່ມເພື່ອຢືນຢັນການເພີ່ມອີເມວນີ້.", "Confirm adding email": "ຢືນຢັນການເພີ່ມອີເມວ", "Single Sign On": "ເຂົ້າລະບົບແບບປະຕູດຽວ (SSO)", @@ -195,7 +194,6 @@ "Try again": "ລອງໃໝ່ອີກຄັ້ງ", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "ພວກເຮົາໃຫ້ບຣາວເຊີຈື່ homeserver ທີ່ທ່ານໃຊ້ ເຂົ້າສູ່ລະບົບ, ແຕ່ເສຍດາຍບຣາວເຊີຂອງທ່ານລືມມັນ. ກັບໄປທີ່ໜ້າເຂົ້າສູ່ລະບົບແລ້ວ ລອງໃໝ່ອີກຄັ້ງ.", "We couldn't log you in": "ພວກເຮົາບໍ່ສາມາດເຂົ້າສູ່ລະບົບທ່ານໄດ້", - "Trust": "ເຊື່ອຖືໄດ້", "Only continue if you trust the owner of the server.": "ຖ້າທ່ານໄວ້ວາງໃຈເຈົ້າຂອງເຊີບເວີດັ່ງກ່າວແລ້ວ ໃຫ້ສືບຕໍ່.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "ການດຳເນິນການນີ້ຕ້ອງໄດ້ມີການເຂົ້າເຖິງຂໍ້ມູນການຢັ້ງຢືນຕົວຕົນທີ່ ເພື່ອກວດສອບອີເມວ ຫຼື ເບີໂທລະສັບ, ແຕ່ເຊີບເວີບໍ່ມີເງື່ອນໄຂໃນບໍລິການໃດໆ.", "Identity server has no terms of service": "ຂໍ້ມູນເຊີບເວີ ບໍ່ມີໃຫ້ບໍລິການ", @@ -258,7 +256,6 @@ "The user you called is busy.": "ຜູ້ໃຊ້ທີ່ທ່ານໂທຫາຍັງບໍ່ຫວ່າງ.", "User Busy": "ຜູ້ໃຊ້ບໍ່ຫວ່າງ", "Call Failed": "ໂທບໍ່ສຳເລັດ", - "Dismiss": "ຍົກເລີກ", "Unable to load! Check your network connectivity and try again.": "ບໍ່ສາມາດໂຫຼດໄດ້! ກະລຸນາກວດເບິ່ງການເຊື່ອມຕໍ່ເຄືອຂ່າຍຂອງທ່ານ ແລະ ລອງໃໝ່ອີກຄັ້ງ.", "Calls are unsupported": "ບໍ່ຮອງຮັບການໂທ", "Room %(roomId)s not visible": "ບໍ່ເຫັນຫ້ອງ %(roomId)s", @@ -399,7 +396,6 @@ "Unable to share phone number": "ບໍ່ສາມາດແບ່ງປັນເບີໂທລະສັບໄດ້", "Unable to revoke sharing for phone number": "ບໍ່ສາມາດຖອນການແບ່ງປັນສຳລັບເບີໂທລະສັບໄດ້", "Discovery options will appear once you have added an email above.": "ຕົວເລືອກການຄົ້ນພົບຈະປາກົດຂຶ້ນເມື່ອທ່ານໄດ້ເພີ່ມອີເມວຂ້າງເທິງ.", - "Share": "ແບ່ງປັນ", "Revoke": "ຖອນຄືນ", "Complete": "ສໍາເລັດ", "Verify the link in your inbox": "ຢືນຢັນການເຊື່ອມຕໍ່ໃນ inbox ຂອງທ່ານ", @@ -556,7 +552,6 @@ "You are not subscribed to any lists": "ເຈົ້າຍັງບໍ່ໄດ້ສະໝັກໃຊ້ລາຍການໃດໆ", "You are currently ignoring:": "ຕອນນີ້ທ່ານກຳລັງລະເລີຍ:", "You have not ignored anyone.": "ເຈົ້າຍັງບໍ່ໄດ້ລະເລີຍຜູ້ໃດຜູ້ໜຶ່ງ.", - "Close": "ປິດ", "User rules": "ກົດລະບຽບຂອງຜູ້ໃຊ້", "Server rules": "ກົດລະບຽບຂອງ ເຊີບເວີ", "Ban list rules - %(roomName)s": "ກົດລະບຽບຂອງລາຍຊື່ຕ້ອງຫ້າມ-%(roomName)s", @@ -577,7 +572,6 @@ "Versions": "ເວິຊັ້ນ", "FAQ": "ຄໍາຖາມທີ່ພົບເປັນປະຈໍາ", "Cross-signing public keys:": "ກະແຈສາທາລະນະທີ່ມີ Cross-signing:", - "Reset": "ຕັ້ງຄ່າຄືນ", "Cross-signing is not set up.": "ບໍ່ໄດ້ຕັ້ງຄ່າ Cross-signing.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "ບັນຊີຂອງທ່ານມີຂໍ້ມູນແບບ cross-signing ໃນການເກັບຮັກສາຄວາມລັບ, ແຕ່ວ່າຍັງບໍ່ມີຄວາມເຊື່ອຖືໃນລະບົບນີ້.", "Cross-signing is ready but keys are not backed up.": "ການລົງຊື່ຂ້າມແມ່ນພ້ອມແລ້ວແຕ່ກະແຈບໍ່ໄດ້ສຳຮອງໄວ້.", @@ -626,8 +620,6 @@ "Failed to copy": "ສຳເນົາບໍ່ສຳເລັດ", "Copied!": "ສຳເນົາແລ້ວ!", "Click to copy": "ກົດເພື່ອສຳເນົາ", - "Collapse": "ຫຍໍ້ລົງ", - "Expand": "ຂະຫຍາຍ", "Options": "ທາງເລືອກ", "Show all rooms": "ສະແດງຫ້ອງທັງໝົດ", "You can change these anytime.": "ທ່ານສາມາດປ່ຽນສິ່ງເຫຼົ່ານີ້ໄດ້ທຸກເວລາ.", @@ -648,9 +640,7 @@ "Search %(spaceName)s": "ຊອກຫາ %(spaceName)s", "Description": "ລາຍລະອຽດ", "Name": "ຊື່", - "Upload": "ອັບໂຫຼດ", "Upload avatar": "ອັບໂຫຼດອາວາຕ້າ", - "Delete": "ລຶບ", "Delete avatar": "ລືບອາວາຕ້າ", "Space selection": "ການເລືອກພື້ນທີ່", "Theme": "ຫົວຂໍ້", @@ -832,7 +822,6 @@ "Sign out and remove encryption keys?": "ອອກຈາກລະບົບ ແລະ ລຶບລະຫັດການເຂົ້າລະຫັດອອກບໍ?", "Link to most recent message": "ເຊື່ອມຕໍ່ກັບຂໍ້ຄວາມຫຼ້າສຸດ", "Share Room": "ແບ່ງປັນຫ້ອງ", - "Skip": "ຂ້າມ", "This will allow you to reset your password and receive notifications.": "ນີ້ຈະຊ່ວຍໃຫ້ທ່ານສາມາດປັບລະຫັດຜ່ານຂອງທ່ານ ແລະ ໄດ້ຮັບການແຈ້ງເຕືອນ.", "Email address": "ທີ່ຢູ່ອີເມວ", "Please check your email and click on the link it contains. Once this is done, click continue.": "ກະລຸນາກວດເບິ່ງອີເມວຂອງທ່ານ ແລະ ກົດໃສ່ການເຊື່ອມຕໍ່. ເມື່ອສຳເລັດແລ້ວ, ກົດສືບຕໍ່.", @@ -1017,7 +1006,6 @@ "You're all caught up": "ໝົດແລ້ວໝົດເລີຍ", "%(creator)s created and configured the room.": "%(creator)s ສ້າງ ແລະ ກຳນົດຄ່າຫ້ອງ.", "%(creator)s created this DM.": "%(creator)s ສ້າງ DM ນີ້.", - "Logout": "ອອກຈາກລະບົບ", "Verification requested": "ຂໍການຢັ້ງຢືນ", "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 ລຸ້ນເກົ່າກວ່າ. ອັນນີ້ຈະເຮັດໃຫ້ການເຂົ້າລະຫັດລັບແບບຕົ້ນທາງເຖິງປາຍທາງເຮັດວຽກຜິດປົກກະຕິໃນລຸ້ນເກົ່າ. ຂໍ້ຄວາມທີ່ເຂົ້າລະຫັດແບບຕົ້ນທາງເຖິງປາຍທາງທີ່ໄດ້ແລກປ່ຽນເມື່ອບໍ່ດົນມານີ້ ໃນຂະນະທີ່ໃຊ້ເວີຊັນເກົ່າອາດຈະບໍ່ສາມາດຖອດລະຫັດໄດ້ໃນລູ້ນນີ້. ນີ້ອາດຈະເຮັດໃຫ້ຂໍ້ຄວາມທີ່ແລກປ່ຽນກັບລູ້ນນີ້ບໍ່ສຳເລັດ. ຖ້າເຈົ້າປະສົບບັນຫາ, ໃຫ້ອອກຈາກລະບົບ ແລະ ກັບມາໃໝ່ອີກຄັ້ງ. ເພື່ອຮັກສາປະຫວັດຂໍ້ຄວາມ, ສົ່ງອອກ ແລະ ນໍາເຂົ້າລະຫັດຂອງທ່ານຄືນໃໝ່.", "Old cryptography data detected": "ກວດພົບຂໍ້ມູນການເຂົ້າລະຫັດລັບເກົ່າ", @@ -1493,7 +1481,6 @@ "Actions": "ການປະຕິບັດ", "Messages": "ຂໍ້ຄວາມ", "Setting up keys": "ການຕັ້ງຄ່າກະແຈ", - "Cancel": "ຍົກເລີກ", "Go Back": "ກັບຄືນ", "Are you sure you want to cancel entering passphrase?": "ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການຍົກເລີກການໃສ່ປະໂຫຍກລະຫັດຜ່ານ?", "Cancel entering passphrase?": "ຍົກເລີກການໃສ່ປະໂຫຍກລະຫັດຜ່ານບໍ?", @@ -2264,8 +2251,6 @@ "one": "ເຫັນໂດຍ %(count)s ຄົນ", "other": "ເຫັນໂດຍ %(count)s ຄົນ" }, - "Join": "ເຂົ້າຮ່ວມ", - "View": "ເບິ່ງ", "Unknown": "ບໍ່ຮູ້ຈັກ", "Idle": "ບໍ່ເຮັດວຽກ", "Online": "ອອນລາຍ", @@ -2376,15 +2361,12 @@ "Guest": "ແຂກ", "New version of %(brand)s is available": "ເວີຊັນໃໝ່ຂອງ %(brand)s ພ້ອມໃຊ້ງານ", "Update %(brand)s": "ອັບເດດ %(brand)s", - "Update": "ອັບເດດ", "What's New": "ມີຫຍັງໃຫມ່", "What's new?": "ມີຫຍັງໃຫມ່?", "%(deviceId)s from %(ip)s": "%(deviceId)s ຈາກ %(ip)s", "New login. Was this you?": "ເຂົ້າສູ່ລະບົບໃໝ່. ນີ້ແມ່ນທ່ານບໍ?", "Other users may not trust it": "ຜູ້ໃຊ້ອື່ນໆອາດຈະບໍ່ໄວ້ວາງໃຈ", "Safeguard against losing access to encrypted messages & data": "ປ້ອງກັນການສູນເສຍການເຂົ້າເຖິງຂໍ້ຄວາມ ແລະຂໍ້ມູນທີ່ເຂົ້າລະຫັດ", - "Verify": "ຢືນຢັນ", - "Upgrade": "ຍົກລະດັບ", "Verify this session": "ຢືນຢັນລະບົບນີ້", "Encryption upgrade available": "ມີການຍົກລະດັບການເຂົ້າລະຫັດ", "Set up Secure Backup": "ຕັ້ງຄ່າການສໍາຮອງຂໍ້ມູນທີ່ປອດໄພ", @@ -2398,7 +2380,6 @@ "Use app for a better experience": "ໃຊ້ແອັບເພື່ອປະສົບການທີ່ດີກວ່າ", "Silence call": "ປິດສຽງໂທ", "Sound on": "ເປີດສຽງ", - "Accept": "ຍອມຮັບ", "Video call": "ໂທດ້ວວິດີໂອ", "Voice call": "ໂທດ້ວຍສຽງ", "Unknown caller": "ບໍ່ຮູ້ຈັກຜູ້ທີ່ໂທ", @@ -2411,7 +2392,6 @@ "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "ແບ່ງປັນຂໍ້ມູນທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍພວກເຮົາລະບຸບັນຫາ. ບໍ່ມີຫຍັງສ່ວນຕົວ. ບໍ່ມີຄົນທີສາມ. ສຶກສາເພີ່ມເຕີມ", "You previously consented to share anonymous usage data with us. We're updating how that works.": "ກ່ອນໜ້ານີ້ທ່ານໄດ້ຍິນຍອມທີ່ຈະແບ່ງປັນຂໍ້ມູນການນຳໃຊ້ທີ່ບໍ່ເປີດເຜີຍຊື່ກັບພວກເຮົາ. ພວກເຮົາກຳລັງອັບເດດວິທີການເຮັດວຽກນັ້ນ.", "Help improve %(analyticsOwner)s": "ຊ່ວຍປັບປຸງ %(analyticsOwner)s", - "Stop": "ຢຸດ", "That's fine": "ບໍ່ເປັນຫຍັງ", "File Attached": "ແນບໄຟລ໌", "Exported %(count)s events in %(seconds)s seconds": { @@ -2687,7 +2667,6 @@ "%(roomName)s can't be previewed. Do you want to join it?": "ບໍ່ສາມາດເບິ່ງຕົວຢ່າງ %(roomName)s ໄດ້. ທ່ານຕ້ອງການເຂົ້າຮ່ວມມັນບໍ?", "You're previewing %(roomName)s. Want to join it?": "ທ່ານກຳລັງເບິ່ງຕົວຢ່າງ %(roomName)s. ຕ້ອງການເຂົ້າຮ່ວມບໍ?", "Reject & Ignore user": "ປະຕິເສດ ແລະ ບໍ່ສົນໃຈຜູ້ໃຊ້", - "Reject": "ປະຕິເສດ", " invited you": " ເຊີນທ່ານ", "Do you want to join %(roomName)s?": "ທ່ານຕ້ອງການເຂົ້າຮ່ວມ %(roomName)s ບໍ?", "Start chatting": "ເລີ່ມການສົນທະນາ", @@ -2911,7 +2890,6 @@ "You've successfully verified this user.": "ທ່ານໄດ້ຢັ້ງຢືນຜູ້ໃຊ້ນີ້ສຳເລັດແລ້ວ.", "Verified!": "ຢືນຢັນແລ້ວ!", "The other party cancelled the verification.": "ອີກຝ່າຍໄດ້ຍົກເລີກການຢັ້ງຢືນ.", - "Call": "ໂທ", "%(name)s on hold": "%(name)s ຖືກລະງັບໄວ້", "Return to call": "ກັບໄປທີ່ການໂທ", "Hangup": "ວາງສາຍ", @@ -3283,7 +3261,6 @@ "disable": "ປິດໃຊ້ງານ", "done": "ສຳເລັດແລ້ວ", "edit": "ແກ້ໄຂ", - "enable": "ເປີດໃຊ້ງານ", "forgot_password": "ລືມລະຫັດຜ່ານ?", "forward": "ສົ່ງຕໍ່", "invite": "ເຊີນ", @@ -3304,9 +3281,31 @@ "start": "ເລີ່ມຕົ້ນ", "start_chat": "ເລີ່ມການສົນທະນາ", "view_source": "ເບິ່ງແຫຼ່ງ", - "yes": "ແມ່ນແລ້ວ" + "yes": "ແມ່ນແລ້ວ", + "reject": "ປະຕິເສດ", + "confirm": "ຢືນຢັນ", + "dismiss": "ຍົກເລີກ", + "trust": "ເຊື່ອຖືໄດ້", + "cancel": "ຍົກເລີກ", + "stop": "ຢຸດ", + "join": "ເຂົ້າຮ່ວມ", + "close": "ປິດ", + "accept": "ຍອມຮັບ", + "upgrade": "ຍົກລະດັບ", + "verify": "ຢືນຢັນ", + "update": "ອັບເດດ", + "call": "ໂທ", + "delete": "ລຶບ", + "upload": "ອັບໂຫຼດ", + "collapse": "ຫຍໍ້ລົງ", + "reset": "ຕັ້ງຄ່າຄືນ", + "share": "ແບ່ງປັນ", + "skip": "ຂ້າມ", + "logout": "ອອກຈາກລະບົບ", + "view": "ເບິ່ງ", + "expand": "ຂະຫຍາຍ" }, "a11y": { "user_menu": "ເມນູຜູ້ໃຊ້" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 34a5369c219..22c98aee908 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -6,7 +6,6 @@ "Notification targets": "Pranešimo objektai", "Today": "Šiandien", "Friday": "Penktadienis", - "Update": "Atnaujinti", "Notifications": "Pranešimai", "On": "Įjungta", "Changelog": "Keitinių žurnalas", @@ -23,7 +22,6 @@ "All Rooms": "Visi pokalbių kambariai", "Source URL": "Šaltinio URL adresas", "Messages sent by bot": "Boto siųstos žinutės", - "Cancel": "Atšaukti", "Filter results": "Išfiltruoti rezultatus", "No update available.": "Nėra galimų atnaujinimų.", "Noisy": "Triukšmingas", @@ -33,7 +31,6 @@ "Search…": "Paieška…", "Event sent!": "Įvykis išsiųstas!", "Unnamed room": "Kambarys be pavadinimo", - "Dismiss": "Atmesti", "Saturday": "Šeštadienis", "Online": "Prisijungęs", "Monday": "Pirmadienis", @@ -52,13 +49,11 @@ "Messages containing my display name": "Žinutės, kuriose yra mano rodomas vardas", "State Key": "Būklės raktas", "What's new?": "Kas naujo?", - "Close": "Uždaryti", "Invite to this room": "Pakviesti į šį kambarį", "You cannot delete this message. (%(code)s)": "Jūs negalite trinti šios žinutės. (%(code)s)", "Thursday": "Ketvirtadienis", "Back": "Atgal", "Show message in desktop notification": "Rodyti žinutę darbalaukio pranešime", - "Reject": "Atmesti", "Messages in group chats": "Žinutės grupiniuose pokalbiuose", "Yesterday": "Vakar", "Error encountered (%(errorDetail)s).": "Susidurta su klaida (%(errorDetail)s).", @@ -124,7 +119,6 @@ "Unnamed Room": "Bevardis Kambarys", "Show timestamps in 12 hour format (e.g. 2:30pm)": "Rodyti laiko žymes 12 valandų formatu (pvz. 2:30pm)", "Always show message timestamps": "Visada rodyti žinučių laiko žymes", - "Accept": "Priimti", "Incorrect verification code": "Neteisingas patvirtinimo kodas", "Submit": "Pateikti", "Phone": "Telefonas", @@ -399,7 +393,6 @@ "Unable to add email address": "Nepavyko pridėti el. pašto adreso", "Unable to verify email address.": "Nepavyko patvirtinti el. pašto adreso.", "This will allow you to reset your password and receive notifications.": "Tai jums leis iš naujo nustatyti slaptažodį ir gauti pranešimus.", - "Skip": "Praleisti", "Unable to restore backup": "Nepavyko atkurti atsarginės kopijos", "No backup found!": "Nerasta jokios atsarginės kopijos!", "Failed to decrypt %(failedCount)s sessions!": "Nepavyko iššifruoti %(failedCount)s seansų!", @@ -423,7 +416,6 @@ "Identity server has no terms of service": "Tapatybės serveris neturi paslaugų teikimo sąlygų", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Šiam veiksmui reikalinga pasiekti numatytąjį tapatybės serverį , kad patvirtinti el. pašto adresą arba telefono numerį, bet serveris neturi jokių paslaugos teikimo sąlygų.", "Only continue if you trust the owner of the server.": "Tęskite tik tuo atveju, jei pasitikite serverio savininku.", - "Trust": "Pasitikėti", "You need to be able to invite users to do that.": "Norėdami tai atlikti jūs turite turėti galimybę pakviesti vartotojus.", "Power level must be positive integer.": "Galios lygis privalo būti teigiamas sveikasis skaičius.", "Messages": "Žinutės", @@ -530,7 +522,6 @@ "Messages containing my username": "Žinutės, kuriose yra mano vartotojo vardas", "%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (galia %(powerLevelNumber)s)", "Enter username": "Įveskite vartotojo vardą", - "Confirm": "Patvirtinti", "Create account": "Sukurti paskyrą", "Change identity server": "Pakeisti tapatybės serverį", "Change": "Keisti", @@ -723,7 +714,6 @@ "Verify your other session using one of the options below.": "Patvirtinkite savo kitą seansą naudodami vieną iš žemiau esančių parinkčių.", "Messages containing @room": "Žinutės, kuriose yra @kambarys", "To be secure, do this in person or use a trusted way to communicate.": "Norėdami užtikrinti saugumą, darykite tai asmeniškai arba naudokite patikimą komunikacijos būdą.", - "Verify": "Patvirtinti", "Restore from Backup": "Atkurti iš Atsarginės Kopijos", "Preferences": "Nuostatos", "Cryptography": "Kriptografija", @@ -890,9 +880,7 @@ "Folder": "Aplankas", "Pin": "Prisegti", "Other users may not trust it": "Kiti vartotojai gali nepasitikėti", - "Upgrade": "Atnaujinti", "Accept to continue:": "Sutikite su , kad tęstumėte:", - "Upload": "Įkelti", "Your homeserver does not support cross-signing.": "Jūsų serveris nepalaiko kryžminio pasirašymo.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Jūsų paskyra slaptoje saugykloje turi kryžminio pasirašymo tapatybę, bet šis seansas dar ja nepasitiki.", "Cross-signing public keys:": "Kryžminio pasirašymo vieši raktai:", @@ -971,7 +959,6 @@ "Can't leave Server Notices room": "Negalima išeiti iš Serverio Pranešimų kambario", "This room is used for important messages from the Homeserver, so you cannot leave it.": "Šis kambarys yra naudojamas svarbioms žinutėms iš serverio, tad jūs negalite iš jo išeiti.", "Terms and Conditions": "Taisyklės ir Sąlygos", - "Logout": "Atsijungti", "Reject & Ignore user": "Atmesti ir ignoruoti vartotoją", "Reject invitation": "Atmesti pakvietimą", "You can only join it with a working invite.": "Jūs galite prisijungti tik su veikiančiu pakvietimu.", @@ -998,7 +985,6 @@ "Continue With Encryption Disabled": "Tęsti išjungus šifravimą", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Patvirtinkite šį vartotoją, kad pažymėtumėte jį kaip patikimą. Vartotojų pažymėjimas patikimais suteikia jums papildomos ramybės naudojant visapusiškai užšifruotas žinutes.", "Sign out and remove encryption keys?": "Atsijungti ir pašalinti šifravimo raktus?", - "View": "Žiūrėti", "Confirm encryption setup": "Patvirtinti šifravimo sąranką", "Click the button below to confirm setting up encryption.": "Paspauskite mygtuką žemiau, kad patvirtintumėte šifravimo nustatymą.", "Restore your key backup to upgrade your encryption": "Atkurkite savo atsarginę raktų kopiją, kad atnaujintumėte šifravimą", @@ -1064,7 +1050,6 @@ "Import E2E room keys": "Importuoti E2E (visapusio šifravimo) kambarių raktus", "Session ID:": "Seanso ID:", "Session key:": "Seanso raktas:", - "Reset": "Iš naujo nustatyti", "Failed to connect to integration manager": "Nepavyko prisijungti prie integracijų tvarkytuvo", "Please create a new issue on GitHub so that we can investigate this bug.": "Prašome sukurti naują problemą GitHub'e, kad mes galėtume ištirti šią klaidą.", "Please tell us what went wrong or, better, create a GitHub issue that describes the problem.": "Pasakyite mums kas nutiko, arba, dar geriau, sukurkite GitHub problemą su jos apibūdinimu.", @@ -1169,7 +1154,6 @@ "You must join the room to see its files": "Norėdami pamatyti jo failus, turite prisijungti prie kambario", "Join millions for free on the largest public server": "Prisijunkite prie milijonų didžiausiame viešame serveryje nemokamai", "Block anyone not part of %(serverName)s from ever joining this room.": "Blokuoti bet ką, kas nėra iš %(serverName)s, niekada nebeleidžiant prisijungti prie šio kambario.", - "Join": "Prisijungti", "Join the conference from the room information card on the right": "Prisijunkite prie konferencijos kambario informacijos kortelėje dešinėje", "Join the conference at the top of this room": "Prisijunkite prie konferencijos šio kambario viršuje", "Join the discussion": "Prisijungti prie diskusijos", @@ -1773,7 +1757,6 @@ "Verification code": "Patvirtinimo kodas", "Revoke": "Panaikinti", "Complete": "Užbaigti", - "Share": "Dalintis", "Olm version:": "Olm versija:", "Enable email notifications for %(email)s": "Įjungti el. pašto pranešimus %(email)s", "Messages containing keywords": "Žinutės turinčios raktažodžių", @@ -1819,7 +1802,6 @@ "Address": "Adresas", "Search %(spaceName)s": "Ieškoti %(spaceName)s", "Delete avatar": "Ištrinti avatarą", - "Delete": "Ištrinti", "Return to call": "Grįžti prie skambučio", "Start the camera": "Įjungti kamerą", "Stop the camera": "Išjungti kamerą", @@ -2165,7 +2147,6 @@ "Help improve %(analyticsOwner)s": "Padėkite pagerinti %(analyticsOwner)s", "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "Dalinkitės anoniminiais duomenimis, kurie padės mums nustatyti problemas. Nieko asmeniško. Jokių trečiųjų šalių. Sužinokite daugiau", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Anksčiau sutikote su mumis dalytis anoniminiais naudojimo duomenimis. Atnaujiname, kaip tai veikia.", - "Stop": "Sustabdyti", "That's fine": "Tai gerai", "File Attached": "Failas pridėtas", "Exported %(count)s events in %(seconds)s seconds": { @@ -2189,8 +2170,6 @@ "Invite with email or username": "Pakviesti su el. paštu arba naudotojo vardu", "Share invite link": "Bendrinti pakvietimo nuorodą", "Click to copy": "Spustelėkite kad nukopijuoti", - "Collapse": "Suskleisti", - "Expand": "Išplėsti", "Show all rooms": "Rodyti visus kambarius", "You can change these anytime.": "Jūs tai galite pakeisti bet kada.", "Add some details to help people recognise it.": "Pridėkite šiek tiek detalių, kad žmonės galėtų ją atpažinti.", @@ -2228,7 +2207,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Laukiama, kol patvirtinsite kitame įrenginyje, %(deviceName)s (%(deviceId)s)…", "Verify this device by confirming the following number appears on its screen.": "Patvirtinkite šį prietaisą patvirtindami, kad jo ekrane rodomas šis numeris.", "Confirm the emoji below are displayed on both devices, in the same order:": "Patvirtinkite, kad toliau pateikti jaustukai rodomi abiejuose prietaisuose ta pačia tvarka:", - "Call": "Skambinti", "%(name)s on hold": "%(name)s sulaikytas", "Show sidebar": "Rodyti šoninę juostą", "Hide sidebar": "Slėpti šoninę juostą", @@ -2499,7 +2477,6 @@ "disable": "Išjungti", "done": "Atlikta", "edit": "Koreguoti", - "enable": "Įjungti", "forgot_password": "Pamiršote slaptažodį?", "forward": "Persiųsti", "invite": "Pakviesti", @@ -2520,6 +2497,28 @@ "start": "Pradėti", "start_chat": "Pradėti pokalbį", "view_source": "Peržiūrėti šaltinį", - "yes": "Taip" + "yes": "Taip", + "reject": "Atmesti", + "confirm": "Patvirtinti", + "dismiss": "Atmesti", + "trust": "Pasitikėti", + "cancel": "Atšaukti", + "stop": "Sustabdyti", + "join": "Prisijungti", + "close": "Uždaryti", + "accept": "Priimti", + "upgrade": "Atnaujinti", + "verify": "Patvirtinti", + "update": "Atnaujinti", + "call": "Skambinti", + "delete": "Ištrinti", + "upload": "Įkelti", + "collapse": "Suskleisti", + "reset": "Iš naujo nustatyti", + "share": "Dalintis", + "skip": "Praleisti", + "logout": "Atsijungti", + "view": "Žiūrėti", + "expand": "Išplėsti" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index abd5f36529e..83224591684 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -1,5 +1,4 @@ { - "Accept": "Akceptēt", "Account": "Konts", "Add": "Pievienot", "Admin": "Administrators", @@ -32,7 +31,6 @@ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s dzēsa istabas nosaukumu.", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s nomainīja istabas tematu uz \"%(topic)s\".", "Changes your display nickname": "Maina jūsu parādāmo vārdu", - "Close": "Aizvērt", "Command error": "Komandas kļūda", "Commands": "Komandas", "Confirm password": "Apstipriniet paroli", @@ -88,7 +86,6 @@ "Join Room": "Pievienoties istabai", "Jump to first unread message.": "Pāriet uz pirmo neizlasīto ziņu.", "Labs": "Izmēģinājumu lauciņš", - "Logout": "Izrakstīties", "Low priority": "Zema prioritāte", "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem no brīža, kad tie tika uzaicināti.", "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s padarīja istabas ziņu turpmāko vēsturi redzamu visiem istabas dalībniekiem ar brīdi, kad tie pievienojās.", @@ -176,9 +173,7 @@ "Unban": "Atcelt pieejas liegumu", "unknown error code": "nezināms kļūdas kods", "Unnamed Room": "Istaba bez nosaukuma", - "Cancel": "Atcelt", "Create new room": "Izveidot jaunu istabu", - "Dismiss": "Atmest", "You have enabled URL previews by default.": "URL priekšskatījumi pēc noklusējuma jums iriespējoti .", "Upload avatar": "Augšupielādēt avataru", "Upload Failed": "Augšupielāde (nosūtīšana) neizdevās", @@ -257,7 +252,6 @@ "Not a valid %(brand)s keyfile": "Nederīgs %(brand)s atslēgfails", "Authentication check failed: incorrect password?": "Autentifikācijas pārbaude neizdevās. Nepareiza parole?", "Do you want to set an email address?": "Vai vēlies norādīt epasta adresi?", - "Skip": "Izlaist", "and %(count)s others...": { "other": "un vēl %(count)s citi...", "one": "un vēl viens cits..." @@ -428,7 +422,6 @@ "Notification targets": "Paziņojumu adresāti", "Today": "Šodien", "Friday": "Piektdiena", - "Update": "Atjaunināt", "What's New": "Kas jauns", "On": "Ieslēgt", "Changelog": "Izmaiņu vēsture", @@ -450,7 +443,6 @@ "Event sent!": "Notikums nosūtīts!", "Preparing to send logs": "Gatavojos nosūtīt atutošanas logfailus", "Saturday": "Sestdiena", - "Reject": "Noraidīt", "Monday": "Pirmdiena", "Toolbox": "Instrumentārijs", "Collecting logs": "Tiek iegūti logfaili", @@ -624,7 +616,6 @@ "Enter a Security Phrase": "Ievadiet slepeno frāzi", "Incorrect Security Phrase": "Nepareiza slepenā frāze", "Security Phrase": "Slepenā frāze", - "Confirm": "Apstiprināt", "No homeserver URL provided": "Nav iestatīts bāzes servera URL", "Cannot reach homeserver": "Neizdodas savienoties ar bāzes serveri", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Fails '%(fileName)s pārsniedz augšupielādējama faila izmēra ierobežojumu šajā bāzes serverī", @@ -729,7 +720,6 @@ "Uploaded sound": "Augšupielādētie skaņas signāli", "Sounds": "Skaņas signāli", "Set a new custom sound": "Iestatīt jaunu pielāgotu skaņas signālu", - "Reset": "Atiestatīt", "In encrypted rooms, like this one, URL previews are disabled by default to ensure that your homeserver (where the previews are generated) cannot gather information about links you see in this room.": "Šifrētās istabās, ieskaitot arī šo, URL priekšskatījumi pēc noklusējuma ir atspējoti, lai nodrošinātu, ka jūsu bāzes serveris, kurā notiek priekšskatījumu ģenerēšana, nevar apkopot informāciju par saitēm, kuras redzat šajā istabā.", "When someone puts a URL in their message, a URL preview can be shown to give more information about that link such as the title, description, and an image from the website.": "Kad kāds savā ziņā ievieto URL, priekšskatījums ar virsrakstu, aprakstu un vietnes attēlu var tikt parādīts, tādējādi sniedzot vairāk informācijas par šo vietni.", "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Iestatiet istabai adresi, lai lietotāji var atrast šo istabu jūsu bāzes serverī (%(localDomain)s)", @@ -811,7 +801,6 @@ "Recent Conversations": "Nesenās sarunas", "Start a conversation with someone using their name or username (like ).": "Uzsāciet sarunu ar citiem, izmantojot vārdu vai lietotājvārdu (piemērs - ).", "Start a conversation with someone using their name, email address or username (like ).": "Uzsāciet sarunu ar citiem, izmantojot vārdu, epasta adresi vai lietotājvārdu (piemērs - ).", - "Upload": "Augšupielādēt", "Use your Security Key to continue.": "Izmantojiet savu drošības atslēgu, lai turpinātu.", "Save your Security Key": "Saglabājiet savu drošības atslēgu", "Generate a Security Key": "Ģenerēt drošības atslēgu", @@ -1010,7 +999,6 @@ "Display Name": "Parādāmais vārds", "Add some details to help people recognise it.": "Pievienojiet aprakstu, lai palīdzētu cilvēkiem to atpazīt.", "Create a space": "Izveidot vietu", - "Delete": "Dzēst", "Accept to continue:": "Akceptēt , lai turpinātu:", "Anchor": "Enkurs", "Aeroplane": "Aeroplāns", @@ -1069,7 +1057,6 @@ "Verify this user by confirming the following number appears on their screen.": "Verificēt šo lietotāju, apstiprinot, ka šāds numurs pārādās lietotāja ekrānā.", "You ended the call": "Jūs pabeidzāt zvanu", "Other users may not trust it": "Citi lietotāji var neuzskatīt to par uzticamu", - "Verify": "Verificēt", "Verify this session": "Verificēt šo sesiju", "You signed in to a new session without verifying it:": "Jūs pierakstījāties jaunā sesijā, neveicot tās verifikāciju:", "You're already in a call with this person.": "Jums jau notiek zvans ar šo personu.", @@ -1464,7 +1451,6 @@ "Try again": "Mēģiniet vēlreiz", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "Mēs lūdzām tīmekļa pārlūkprogrammai atcerēties, kuru bāzes serveri izmantojat, lai ļautu jums pierakstīties, bet diemžēl jūsu pārlūkprogramma to ir aizmirsusi. Dodieties uz pierakstīšanās lapu un mēģiniet vēlreiz.", "We couldn't log you in": "Neizdevās jūs ierakstīt sistēmā", - "Trust": "Uzticamība", "Only continue if you trust the owner of the server.": "Turpiniet tikai gadījumā, ja uzticaties servera īpašniekam.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Šai darbībai ir nepieciešama piekļuve noklusējuma identitātes serverim , lai validētu e-pasta adresi vai tālruņa numuru, taču serverim nav pakalpojumu sniegšanas noteikumu.", "Identity server has no terms of service": "Identitātes serverim nav pakalpojumu sniegšanas noteikumu", @@ -1527,7 +1513,6 @@ "Enter the name of a new server you want to explore.": "Ievadiet nosaukumu jaunam serverim, kuru vēlaties pārlūkot.", "Zoom in": "Pietuvināt", "Zoom out": "Attālināt", - "Join": "Pievienoties", "Share content": "Dalīties ar saturu", "Your theme": "Jūsu tēma", "Your user ID": "Jūsu lietotāja ID", @@ -1545,7 +1530,6 @@ "one": "Rādīt %(count)s citu priekšskatījumu", "other": "Rādīt %(count)s citus priekšskatījumus" }, - "Share": "Dalīties", "Access": "Piekļuve", "People with supported clients will be able to join the room without having a registered account.": "Cilvēki ar atbalstītām lietotnēm varēs pievienoties istabai bez reģistrēta konta.", "Decide who can join %(roomName)s.": "Nosakiet, kas var pievienoties %(roomName)s.", @@ -1565,7 +1549,6 @@ "Anyone can find and join.": "Ikviens var atrast un pievienoties.", "Only invited people can join.": "Tikai uzaicināti cilvēki var pievienoties.", "Private (invite only)": "Privāta (tikai ar ielūgumiem)", - "Expand": "Izvērst", "Decide who can view and join %(spaceName)s.": "Nosakiet, kas var skatīt un pievienoties %(spaceName)s.", "Enable guest access": "Iespējot piekļuvi viesiem", "Invite people": "Uzaicināt cilvēkus", @@ -1812,7 +1795,6 @@ "decline": "Noraidīt", "done": "Gatavs", "edit": "Rediģēt", - "enable": "Iespējot", "forgot_password": "Aizmirsi paroli?", "forward": "Pārsūtīt", "invite": "Uzaicināt", @@ -1828,9 +1810,26 @@ "save": "Saglabāt", "start_chat": "Uzsākt čatu", "view_source": "Skatīt pirmkodu", - "yes": "Jā" + "yes": "Jā", + "reject": "Noraidīt", + "confirm": "Apstiprināt", + "dismiss": "Atmest", + "trust": "Uzticamība", + "cancel": "Atcelt", + "join": "Pievienoties", + "close": "Aizvērt", + "accept": "Akceptēt", + "verify": "Verificēt", + "update": "Atjaunināt", + "delete": "Dzēst", + "upload": "Augšupielādēt", + "reset": "Atiestatīt", + "share": "Dalīties", + "skip": "Izlaist", + "logout": "Izrakstīties", + "expand": "Izvērst" }, "a11y": { "user_menu": "Lietotāja izvēlne" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json index f6cfe194062..3c78af27083 100644 --- a/src/i18n/strings/ml.json +++ b/src/i18n/strings/ml.json @@ -1,8 +1,5 @@ { - "Cancel": "റദ്ദാക്കുക", - "Close": "അടയ്ക്കുക", "Create new room": "പുതിയ റൂം സൃഷ്ടിക്കുക", - "Dismiss": "ഒഴിവാക്കുക", "Failed to forget room %(errCode)s": "%(errCode)s റൂം ഫോര്‍ഗെറ്റ് ചെയ്യുവാന്‍ സാധിച്ചില്ല", "Favourite": "പ്രിയപ്പെട്ടവ", "Notifications": "നോട്ടിഫിക്കേഷനുകള്‍", @@ -18,7 +15,6 @@ "Notification targets": "നോട്ടിഫിക്കേഷന്‍ ടാര്‍ഗെറ്റുകള്‍", "Today": "ഇന്ന്", "Friday": "വെള്ളി", - "Update": "പുതുക്കുക", "What's New": "പുതിയ വിശേഷങ്ങള്‍", "On": "ഓണ്‍", "Changelog": "മാറ്റങ്ങളുടെ നാള്‍വഴി", @@ -37,7 +33,6 @@ "Tuesday": "ചൊവ്വ", "Unnamed room": "പേരില്ലാത്ത റൂം", "Saturday": "ശനി", - "Reject": "നിരസിക്കുക", "Monday": "തിങ്കള്‍", "Collecting logs": "നാള്‍വഴി ശേഖരിക്കുന്നു", "All Rooms": "എല്ലാ മുറികളും കാണുക", @@ -76,6 +71,11 @@ "quote": "ഉദ്ധരിക്കുക", "remove": "നീക്കം ചെയ്യുക", "start_chat": "ചാറ്റ് തുടങ്ങുക", - "view_source": "സോഴ്സ് കാണുക" + "view_source": "സോഴ്സ് കാണുക", + "reject": "നിരസിക്കുക", + "dismiss": "ഒഴിവാക്കുക", + "cancel": "റദ്ദാക്കുക", + "close": "അടയ്ക്കുക", + "update": "പുതുക്കുക" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/mn.json b/src/i18n/strings/mn.json index 5e44298332a..a303a6f7844 100644 --- a/src/i18n/strings/mn.json +++ b/src/i18n/strings/mn.json @@ -2,5 +2,7 @@ "Explore rooms": "Өрөөнүүд үзэх", "Sign In": "Нэвтрэх", "Create Account": "Хэрэглэгч үүсгэх", - "Dismiss": "Орхих" + "action": { + "dismiss": "Орхих" + } } diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index 6a176e6e132..f3b0a53dc84 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -18,7 +18,6 @@ "When I'm invited to a room": "Når jeg blir invitert til et rom", "Tuesday": "Tirsdag", "Unnamed room": "Rom uten navn", - "Reject": "Avvis", "Monday": "Mandag", "Failed to forget room %(errCode)s": "Kunne ikke glemme rommet %(errCode)s", "Wednesday": "Onsdag", @@ -26,7 +25,6 @@ "Call invitation": "Anropsinvitasjon", "Messages containing my display name": "Meldinger som inneholder mitt visningsnavn", "powered by Matrix": "Drevet av Matrix", - "Close": "Lukk", "Invite to this room": "Inviter til dette rommet", "You cannot delete this message. (%(code)s)": "Du kan ikke slette denne meldingen. (%(code)s)", "Thursday": "Torsdag", @@ -37,7 +35,6 @@ "Off": "Av", "Failed to remove tag %(tagName)s from room": "Kunne ikke fjerne tagg %(tagName)s fra rommet", "Saturday": "Lørdag", - "Dismiss": "Avvis", "Call Failed": "Oppringning mislyktes", "You cannot place a call with yourself.": "Du kan ikke ringe deg selv.", "Permission Required": "Tillatelse kreves", @@ -139,8 +136,6 @@ "Reason": "Årsak", "Add Email Address": "Legg til E-postadresse", "Add Phone Number": "Legg til telefonnummer", - "Cancel": "Avbryt", - "Trust": "Stol på", "Sign In": "Logg inn", "%(senderDisplayName)s sent an image.": "%(senderDisplayName)s sendte et bilde.", "Someone": "Noen", @@ -154,7 +149,6 @@ "%(num)s minutes ago": "%(num)s minutter siden", "%(num)s hours ago": "%(num)s timer siden", "This is a very common password": "Dette er et veldig vanlig passord", - "Accept": "Godta", "Dog": "Hund", "Cat": "Katt", "Horse": "Hest", @@ -186,10 +180,7 @@ "Anchor": "Anker", "Headphones": "Hodetelefoner", "Folder": "Mappe", - "Upgrade": "Oppgrader", - "Verify": "Bekreft", "Review": "Gjennomgang", - "Upload": "Last opp", "Show less": "Vis mindre", "Current password": "Nåværende passord", "New Password": "Nytt passord", @@ -221,7 +212,6 @@ "Timeline": "Tidslinje", "Security & Privacy": "Sikkerhet og personvern", "Camera": "Kamera", - "Reset": "Nullstill", "Browse": "Bla", "Unban": "Opphev utestengelse", "Banned users": "Bannlyste brukere", @@ -231,7 +221,6 @@ "Encrypted": "Kryptert", "Complete": "Fullført", "Revoke": "Tilbakekall", - "Share": "Del", "Unable to verify phone number.": "Klarte ikke å verifisere telefonnummeret.", "Verification code": "Verifikasjonskode", "Add": "Legg til", @@ -263,7 +252,6 @@ "Show all": "Vis alt", "Copied!": "Kopiert!", "What's New": "Hva er nytt", - "Update": "Oppdater", "Frequently Used": "Ofte brukte", "Smileys & People": "Smilefjes og folk", "Animals & Nature": "Dyreliv og natur", @@ -276,7 +264,6 @@ "Quick Reactions": "Hurtigreaksjoner", "Cancel search": "Avbryt søket", "More options": "Flere alternativer", - "Join": "Bli med", "collapse": "skjul", "expand": "utvid", "All rooms": "Alle rom", @@ -297,7 +284,6 @@ "Go": "Gå", "Refresh": "Oppdater", "Email address": "E-postadresse", - "Skip": "Hopp over", "Share Room Message": "Del rommelding", "Terms of Service": "Vilkår for bruk", "Service": "Tjeneste", @@ -312,10 +298,7 @@ "Phone": "Telefon", "Enter password": "Skriv inn passord", "Enter username": "Skriv inn brukernavn", - "Confirm": "Bekreft", "Description": "Beskrivelse", - "Logout": "Logg ut", - "View": "Vis", "Explore rooms": "Se alle rom", "Room": "Rom", "Guest": "Gjest", @@ -1105,7 +1088,6 @@ "one": "%(count)s rom" }, "Invite by username": "Inviter etter brukernavn", - "Delete": "Slett", "Your public space": "Ditt offentlige område", "Your private space": "Ditt private område", "Invite to %(spaceName)s": "Inviter til %(spaceName)s", @@ -1468,7 +1450,6 @@ "Sent": "Sendt", "Sending": "Sender", "Format": "Format", - "Stop": "Stopp avspilling", "MB": "MB", "Zoom in": "Forstørr", "Zoom out": "Forminske", @@ -1481,8 +1462,6 @@ "Keyboard shortcuts": "Tastatursnarveier", "Global": "Globalt", "Keyword": "Nøkkelord", - "Collapse": "Trekk sammen", - "Expand": "Utvid", "Visibility": "Synlighet", "Address": "Adresse", "Delete avatar": "Slett profilbilde", @@ -1565,7 +1544,6 @@ "disable": "Slå av", "done": "Fullført", "edit": "Rediger", - "enable": "Slå på", "forgot_password": "Glemt passord?", "forward": "Videresend", "invite": "Inviter", @@ -1585,9 +1563,30 @@ "start": "Begynn", "start_chat": "Start chat", "view_source": "Vis kilde", - "yes": "Ja" + "yes": "Ja", + "reject": "Avvis", + "confirm": "Bekreft", + "dismiss": "Avvis", + "trust": "Stol på", + "cancel": "Avbryt", + "stop": "Stopp avspilling", + "join": "Bli med", + "close": "Lukk", + "accept": "Godta", + "upgrade": "Oppgrader", + "verify": "Bekreft", + "update": "Oppdater", + "delete": "Slett", + "upload": "Last opp", + "collapse": "Trekk sammen", + "reset": "Nullstill", + "share": "Del", + "skip": "Hopp over", + "logout": "Logg ut", + "view": "Vis", + "expand": "Utvid" }, "a11y": { "user_menu": "Brukermeny" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ne.json b/src/i18n/strings/ne.json index fdbc34821aa..09b33d49b01 100644 --- a/src/i18n/strings/ne.json +++ b/src/i18n/strings/ne.json @@ -5,12 +5,14 @@ "Confirm adding this phone number by using Single Sign On to prove your identity.": "आफ्नो पहिचान प्रमाणित गर्न एकल साइन अन प्रयोग गरेर यो फोन नम्बर थपेको पुष्टि गर्नुहोस्।", "Failed to verify email address: make sure you clicked the link in the email": "इमेल ठेगाना प्रमाणित गर्न असफल: तपाईंले इमेलमा रहेको लिङ्कमा क्लिक गर्नुभएको छ भनी सुनिश्चित गर्नुहोस्", "Add Email Address": "इमेल ठेगाना थप्नुहोस्", - "Confirm": "पुष्टि गर्नुहोस्", "Click the button below to confirm adding this email address.": "यो इमेल ठेगाना थपिएको पुष्टि गर्न तलको बटनमा क्लिक गर्नुहोस्।", "Confirm adding email": "इमेल थपेको पुष्टि गर्नुहोस्", "Single Sign On": "एकल साइन अन", "Confirm adding this email address by using Single Sign On to prove your identity.": "आफ्नो पहिचान प्रमाणित गर्न एकल साइन अन प्रयोग गरेर यो इमेल ठेगाना थपेको पुष्टि गर्नुहोस्।", "Use Single Sign On to continue": "जारी राख्न एकल साइन अन प्रयोग गर्नुहोस्", "This phone number is already in use": "यो फोन नम्बर पहिले नै प्रयोगमा छ", - "This email address is already in use": "यो इमेल ठेगाना पहिले नै प्रयोगमा छ" + "This email address is already in use": "यो इमेल ठेगाना पहिले नै प्रयोगमा छ", + "action": { + "confirm": "पुष्टि गर्नुहोस्" + } } diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 8ff107dc630..4c330a4b0e8 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -25,8 +25,6 @@ "Command error": "Opdrachtfout", "Commands": "Opdrachten", "Confirm password": "Bevestig wachtwoord", - "Cancel": "Annuleren", - "Accept": "Aannemen", "Add": "Toevoegen", "Admin Tools": "Beheerdersgereedschap", "No Microphones detected": "Geen microfoons gevonden", @@ -38,9 +36,7 @@ "Camera": "Camera", "Anyone": "Iedereen", "Are you sure you want to leave the room '%(roomName)s'?": "Weet je zeker dat je de kamer ‘%(roomName)s’ wil verlaten?", - "Close": "Sluiten", "Create new room": "Nieuwe kamer aanmaken", - "Dismiss": "Sluiten", "Failed to forget room %(errCode)s": "Vergeten van kamer is mislukt %(errCode)s", "Favourite": "Favoriet", "Notifications": "Meldingen", @@ -137,7 +133,6 @@ "Join Room": "Kamer toetreden", "Jump to first unread message.": "Spring naar het eerste ongelezen bericht.", "Labs": "Labs", - "Logout": "Uitloggen", "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 joined.": "%(senderName)s heeft de toekomstige kamergeschiedenis zichtbaar gemaakt voor alle leden, vanaf het moment dat ze toegetreden zijn.", @@ -261,7 +256,6 @@ "Authentication check failed: incorrect password?": "Aanmeldingscontrole mislukt: onjuist wachtwoord?", "Do you want to set an email address?": "Wil je een e-mailadres instellen?", "This will allow you to reset your password and receive notifications.": "Zo kan je een nieuw wachtwoord instellen en meldingen ontvangen.", - "Skip": "Overslaan", "Define the power level of a user": "Bepaal het machtsniveau van een persoon", "Delete widget": "Widget verwijderen", "Enable automatic language detection for syntax highlighting": "Automatische taaldetectie voor zinsbouwmarkeringen inschakelen", @@ -430,7 +424,6 @@ "Notification targets": "Meldingsbestemmingen", "Today": "Vandaag", "Friday": "Vrijdag", - "Update": "Updaten", "What's New": "Wat is er nieuw", "On": "Aan", "Changelog": "Wijzigingslogboek", @@ -450,7 +443,6 @@ "Search…": "Zoeken…", "Developer Tools": "Ontwikkelgereedschap", "Saturday": "Zaterdag", - "Reject": "Weigeren", "Monday": "Maandag", "Toolbox": "Gereedschap", "Collecting logs": "Logs worden verzameld", @@ -734,7 +726,6 @@ "Room Topic": "Kameronderwerp", "This room is a continuation of another conversation.": "Deze kamer is een voortzetting van een ander gesprek.", "Click here to see older messages.": "Klik hier om oudere berichten te bekijken.", - "Join": "Deelnemen", "Power level": "Machtsniveau", "The following users may not exist": "Volgende personen bestaan mogelijk niet", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Kan geen profielen voor de Matrix-ID’s hieronder vinden - wil je ze toch uitnodigen?", @@ -778,7 +769,6 @@ "Change": "Wijzigen", "Email (optional)": "E-mailadres (optioneel)", "Phone (optional)": "Telefoonnummer (optioneel)", - "Confirm": "Bevestigen", "Join millions for free on the largest public server": "Neem deel aan de grootste publieke server samen met miljoenen anderen", "Other": "Overige", "Couldn't load page": "Kon pagina niet laden", @@ -838,7 +828,6 @@ "Your browser likely removed this data when running low on disk space.": "Jouw browser heeft deze gegevens wellicht verwijderd toen de beschikbare opslagSpace vol was.", "Upload files (%(current)s of %(total)s)": "Bestanden versturen (%(current)s van %(total)s)", "Upload files": "Bestanden versturen", - "Upload": "Versturen", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Dit bestand is te groot om te versturen. Het limiet is %(limit)s en dit bestand is %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Deze bestanden zijn te groot om te versturen. De bestandsgroottelimiet is %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Sommige bestanden zijn te groot om te versturen. De bestandsgroottelimiet is %(limit)s.", @@ -900,7 +889,6 @@ "Uploaded sound": "Geüpload-geluid", "Sounds": "Geluiden", "Notification sound": "Meldingsgeluid", - "Reset": "Opnieuw instellen", "Set a new custom sound": "Stel een nieuw aangepast geluid in", "Browse": "Bladeren", "Cannot reach homeserver": "Kan homeserver niet bereiken", @@ -965,7 +953,6 @@ "Unable to revoke sharing for email address": "Kan delen voor dit e-mailadres niet intrekken", "Unable to share email address": "Kan e-mailadres niet delen", "Revoke": "Intrekken", - "Share": "Delen", "Discovery options will appear once you have added an email above.": "Vindbaarheidopties zullen verschijnen wanneer je een e-mailadres hebt toegevoegd.", "Unable to revoke sharing for phone number": "Kan delen voor dit telefoonnummer niet intrekken", "Unable to share phone number": "Kan telefoonnummer niet delen", @@ -1036,7 +1023,6 @@ "Report Content to Your Homeserver Administrator": "Inhoud melden aan de beheerder van jouw homeserver", "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "Dit bericht melden zal zijn unieke ‘gebeurtenis-ID’ versturen naar de beheerder van jouw homeserver. Als de berichten in deze kamer versleuteld zijn, zal de beheerder van jouw homeserver het bericht niet kunnen lezen, noch enige bestanden of afbeeldingen zien.", "Send report": "Rapport versturen", - "View": "Bekijken", "Explore rooms": "Kamers ontdekken", "Show previews/thumbnails for images": "Miniaturen voor afbeeldingen tonen", "Clear cache and reload": "Cache wissen en herladen", @@ -1075,7 +1061,6 @@ "Encryption upgrade available": "Versleutelingsupgrade beschikbaar", "You can use /help to list available commands. Did you mean to send this as a message?": "Typ /help om alle opdrachten te zien. Was het je bedoeling dit als bericht te sturen?", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Dit vergt validatie van een e-mailadres of telefoonnummer middels de standaard identiteitsserver , maar die server heeft geen gebruiksvoorwaarden.", - "Trust": "Vertrouwen", "Custom (%(level)s)": "Aangepast (%(level)s)", "Error upgrading room": "Upgraden van kamer mislukt", "Double check that your server supports the room version chosen and try again.": "Ga nogmaals na dat de server de gekozen kamerversie ondersteunt, en probeer het dan opnieuw.", @@ -1133,8 +1118,6 @@ "To be secure, do this in person or use a trusted way to communicate.": "Doe dit voor de zekerheid onder vier ogen, of via een betrouwbaar communicatiemedium.", "Lock": "Hangslot", "Other users may not trust it": "Mogelijk wantrouwen anderen het", - "Upgrade": "Upgraden", - "Verify": "Verifiëren", "Later": "Later", "Review": "Controleer", "This bridge was provisioned by .": "Dank aan voor de brug.", @@ -2212,7 +2195,6 @@ "Open space for anyone, best for communities": "Publieke space voor iedereen, geschikt voor gemeenschappen", "Public": "Publiek", "Create a space": "Space maken", - "Delete": "Verwijderen", "This homeserver has been blocked by its administrator.": "Deze homeserver is geblokkeerd door jouw beheerder.", "Already in call": "Al in de oproep", "You're already in a call with this person.": "Je bent al in gesprek met deze persoon.", @@ -2380,8 +2362,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Gepubliceerde adressen kunnen door iedereen op elke server gebruikt worden om jouw Space te betreden.", "This space has no local addresses": "Deze Space heeft geen lokaaladres", "Space information": "Space-informatie", - "Collapse": "Invouwen", - "Expand": "Uitvouwen", "Recommended for public spaces.": "Aanbevolen voor publieke spaces.", "Allow people to preview your space before they join.": "Personen toestaan een voorvertoning van jouw space te zien voor deelname.", "Preview Space": "Space voorvertoning", @@ -2600,7 +2580,6 @@ "Select from the options below to export chats from your timeline": "Selecteer met welke opties je jouw chats wilt exporteren van je tijdlijn", "Export Chat": "Chat exporteren", "Exporting your data": "Jouw data aan het exporteren", - "Stop": "Stop", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Weet je zeker dat je wilt stoppen terwijl je jouw data exporteert? Als je dit doet moet je later opnieuw beginnen.", "Your export was successful. Find it in your Downloads folder.": "Jouw export was succesvol. Je vindt hem in je Downloads-map.", "The export was cancelled successfully": "De export was succesvol geannulleerd", @@ -2944,7 +2923,6 @@ "Navigate to previous message to edit": "Navigeer naar het vorige bericht om te bewerken", "Navigate to next message to edit": "Navigeer naar het volgende bericht om te bewerken", "Internal room ID": "Interne ruimte ID", - "Call": "Bellen", "Redo edit": "Opnieuw bewerken", "Force complete": "Voltooiing forceren", "Undo edit": "Bewerken ongedaan maken", @@ -3558,7 +3536,6 @@ "disable": "Uitschakelen", "done": "Klaar", "edit": "Bewerken", - "enable": "Inschakelen", "forgot_password": "Wachtwoord vergeten?", "forward": "Doorsturen", "invite": "Uitnodigen", @@ -3579,9 +3556,31 @@ "start": "Start", "start_chat": "Gesprek beginnen", "view_source": "Bron bekijken", - "yes": "Ja" + "yes": "Ja", + "reject": "Weigeren", + "confirm": "Bevestigen", + "dismiss": "Sluiten", + "trust": "Vertrouwen", + "cancel": "Annuleren", + "stop": "Stop", + "join": "Deelnemen", + "close": "Sluiten", + "accept": "Aannemen", + "upgrade": "Upgraden", + "verify": "Verifiëren", + "update": "Updaten", + "call": "Bellen", + "delete": "Verwijderen", + "upload": "Versturen", + "collapse": "Invouwen", + "reset": "Opnieuw instellen", + "share": "Delen", + "skip": "Overslaan", + "logout": "Uitloggen", + "view": "Bekijken", + "expand": "Uitvouwen" }, "a11y": { "user_menu": "Persoonsmenu" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index 851ad26da47..ecc730a5320 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -112,7 +112,6 @@ "When I'm invited to a room": "Når eg blir invitert til eit rom", "Call invitation": "Samtaleinvitasjonar", "Messages sent by bot": "Meldingar sendt frå ein bot", - "Accept": "Sei ja", "Incorrect verification code": "Urett stadfestingskode", "Submit": "Send inn", "Phone": "Telefon", @@ -216,11 +215,9 @@ "Search…": "Søk…", "This Room": "Dette rommet", "All Rooms": "Alle rom", - "Cancel": "Bryt av", "You don't currently have any stickerpacks enabled": "Du har for tida ikkje skrudd nokre klistremerkepakkar på", "Stickerpack": "Klistremerkepakke", "Jump to first unread message.": "Hopp til den fyrste uleste meldinga.", - "Close": "Lukk", "This room has no local addresses": "Dette rommet har ingen lokale adresser", "You have enabled URL previews by default.": "Du har skrudd URL-førehandsvisingar på i utgangspunktet.", "You have disabled URL previews by default.": "Du har skrudd URL-førehandsvisingar av i utgangspunktet.", @@ -248,7 +245,6 @@ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s endra romavataren til ", "Copied!": "Kopiert!", "Failed to copy": "Noko gjekk gale med kopieringa", - "Dismiss": "Avvis", "A text message has been sent to %(msisdn)s": "Ei tekstmelding vart send til %(msisdn)s", "Please enter the code it contains:": "Ver venleg og skriv koden den inneheld inn:", "Code": "Kode", @@ -260,7 +256,6 @@ "Register": "Meld deg inn", "Something went wrong!": "Noko gjekk gale!", "What's New": "Kva er nytt", - "Update": "Oppdatering", "What's new?": "Kva er nytt?", "Error encountered (%(errorDetail)s).": "Noko gjekk gale (%(errorDetail)s).", "No update available.": "Inga oppdatering er tilgjengeleg.", @@ -396,7 +391,6 @@ "Unable to add email address": "Klarte ikkje å leggja epostadressa til", "Unable to verify email address.": "Klarte ikkje å stadfesta epostadressa.", "This will allow you to reset your password and receive notifications.": "Dette tillèt deg å attendestilla passordet ditt og å få varsel.", - "Skip": "Hopp over", "Failed to change password. Is your password correct?": "Fekk ikkje til å skifta passord. Er passordet rett?", "Share Room": "Del Rom", "Link to most recent message": "Lenk til den nyaste meldinga", @@ -405,7 +399,6 @@ "Link to selected message": "Lenk til den valde meldinga", "Reject invitation": "Sei nei til innbyding", "Are you sure you want to reject the invitation?": "Er du sikker på at du vil seia nei til innbydinga?", - "Reject": "Avslå", "You cannot delete this message. (%(code)s)": "Du kan ikkje sletta meldinga. (%(code)s)", "Resend": "Send på nytt", "Source URL": "Kjelde-URL", @@ -427,7 +420,6 @@ "Review terms and conditions": "Sjå over Vilkår og Føresetnader", "Old cryptography data detected": "Gamal kryptografidata vart oppdagen", "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.": "Data frå ein eldre versjon av %(brand)s er oppdaga. Dette kan ha gjort at ende-til-ende kryptering feilar i den eldre versjonen. Krypterte meldingar som er utveksla med den gamle versjonen er kanskje ikkje dekrypterbare i denne versjonen. Dette kan forårsake at meldingar utveksla mot denne versjonen vil feile. Opplever du problem med dette, kan du logge inn og ut igjen. For å behalde meldingshistorikk, eksporter og importer nøklane dine på nytt.", - "Logout": "Logg ut", "Invite to this room": "Inviter til dette rommet", "Notifications": "Varsel", "You can't send any messages until you review and agree to our terms and conditions.": "Du kan ikkje senda meldingar før du les over og godkjenner våre bruksvilkår.", @@ -609,7 +601,6 @@ "Identity server has no terms of service": "Identitetstenaren manglar bruksvilkår", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Denne handlinga krev kommunikasjon mot (standard identitetstenar) for å verifisere e-post eller telefonnummer, men tenaren manglar bruksvilkår.", "Only continue if you trust the owner of the server.": "Gå vidare så lenge du har tillit til eigar av tenaren.", - "Trust": "Tillat", "Custom (%(level)s)": "Tilpassa (%(level)s)", "Error upgrading room": "Feil ved oppgradering av rom", "Double check that your server supports the room version chosen and try again.": "Sjekk at tenar støttar denne romversjonen, og prøv på nytt.", @@ -733,7 +724,6 @@ "Show shortcuts to recently viewed rooms above the room list": "Vis snarvegar til sist synte rom over romkatalogen", "Show hidden events in timeline": "Vis skjulte hendelsar i historikken", "This is your list of users/servers you have blocked - don't leave the room!": "Dette er di liste over brukarar/tenarar du har blokkert - ikkje forlat rommet!", - "Upload": "Last opp", "Show less": "Vis mindre", "Show more": "Vis meir", "Display Name": "Visningsnamn", @@ -795,7 +785,6 @@ "Encrypted messages in group chats": "Krypterte meldingar i gruppesamtalar", "When rooms are upgraded": "Når rom blir oppgraderte", "My Ban List": "Mi blokkeringsliste", - "Upgrade": "Oppgrader", "Enable desktop notifications for this session": "Aktiver skrivebordsvarslingar for denne øka", "Enable audible notifications for this session": "Aktiver høyrbare varslingar for denne økta", "Custom theme URL": "Tilpassa tema-URL", @@ -826,12 +815,10 @@ "Command Help": "Kommandohjelp", "To help us prevent this in future, please send us logs.": "For å bistå med å forhindre dette i framtida, gjerne send oss loggar.", "%(creator)s created and configured the room.": "%(creator)s oppretta og konfiguerte dette rommet.", - "View": "Vis", "Jump to first unread room.": "Hopp til fyrste uleste rom.", "Jump to first invite.": "Hopp til fyrste invitasjon.", "Unable to set up secret storage": "Oppsett av hemmeleg lager feila", "Toggle microphone mute": "Slå av/på demping av mikrofon", - "Confirm": "Stadfest", "Confirm adding email": "Stadfest at du ynskjer å legga til e-postadressa", "Click the button below to confirm adding this email address.": "Trykk på knappen under for å stadfesta at du ynskjer å legga til denne e-postadressa.", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Stadfest dette telefonnummeret for å bruka Single-sign-on for å bevisa identiteten din.", @@ -869,7 +856,6 @@ "wait and try again later": "vent og prøv om att seinare", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "For å rapportere eit Matrix-relatert sikkerheitsproblem, les Matrix.org sin Security Disclosure Policy.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Tenaradministratoren din har deaktivert ende-til-ende kryptering som standard i direktemeldingar og private rom.", - "Reset": "Nullstill", "Set a new custom sound": "Set ein ny tilpassa lyd", "Once enabled, encryption for a room cannot be disabled. Messages sent in an encrypted room cannot be seen by the server, only by the participants of the room. Enabling encryption may prevent many bots and bridges from working correctly. Learn more about encryption.": "Når kryptering er aktivert for eit rom, kan ein ikkje deaktivere det. Meldingar som blir sende i eit kryptert rom kan ikkje bli lesne av tenaren, men berre av deltakarane i rommet. Aktivering av kryptering kan hindre mange botar og bruer frå å fungera på rett måte. Les meir om kryptering her.", "Encrypted": "Kryptert", @@ -880,7 +866,6 @@ "Messages in this room are not end-to-end encrypted.": "Meldingar i dette rommet er ikkje ende-til-ende kryptert.", "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Når du nyttar krypterte rom er meldingane din sikra. Berre du og mottakaren har unike nøklar som kan gjere meldingane lesbare.", "This client does not support end-to-end encryption.": "Denne klienten støttar ikkje ende-til-ende kryptering.", - "Join": "Bli med", "Matrix": "Matrix", "Add a new server": "Legg til ein ny tenar", "Clearing all data from this session is permanent. Encrypted messages will be lost unless their keys have been backed up.": "Tømming av data frå denne sesjonen er permanent. Krypterte meldingar vil gå tapt med mindre krypteringsnøklane har blitt sikkerheitskopierte.", @@ -996,7 +981,6 @@ "Change identity server": "Endre identitetstenar", "Not a valid identity server (status code %(code)s)": "Ikkje ein gyldig identietstenar (statuskode %(code)s)", "Identity server URL must be HTTPS": "URL for identitetstenar må vera HTTPS", - "Share": "Del", "Review to ensure your account is safe": "Undersøk dette for å gjere kontoen trygg", "Review": "Undersøk", "Results are only revealed when you end the poll": "Resultatet blir synleg når du avsluttar røystinga", @@ -1011,7 +995,6 @@ "Autoplay GIFs": "Spel av GIF-ar automatisk", "Expand map": "Utvid kart", "Expand quotes": "Utvid sitat", - "Expand": "Utvid", "Expand code blocks by default": "Utvid kodeblokker til vanleg", "All rooms you're in will appear in Home.": "Alle romma du er i vil vere synlege i Heim.", "To view all keyboard shortcuts, click here.": "For å sjå alle tastatursnarvegane, klikk her.", @@ -1083,7 +1066,6 @@ "create": "Lag", "decline": "Sei nei", "edit": "Gjer om", - "enable": "Aktiver", "invite": "Inviter", "invites_list": "Invitasjonar", "leave": "Forlat", @@ -1095,6 +1077,23 @@ "retry": "Prøv om att", "save": "Lagra", "start_chat": "Start samtale", - "view_source": "Sjå Kjelda" + "view_source": "Sjå Kjelda", + "reject": "Avslå", + "confirm": "Stadfest", + "dismiss": "Avvis", + "trust": "Tillat", + "cancel": "Bryt av", + "join": "Bli med", + "close": "Lukk", + "accept": "Sei ja", + "upgrade": "Oppgrader", + "update": "Oppdatering", + "upload": "Last opp", + "reset": "Nullstill", + "share": "Del", + "skip": "Hopp over", + "logout": "Logg ut", + "view": "Vis", + "expand": "Utvid" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index d5f5a75374b..6aefc320035 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -32,7 +32,6 @@ "Start chatting": "Començar de charrar", "Do you want to join %(roomName)s?": "Volètz rejonher %(roomName)s ?", " invited you": " vos convidèt", - "Reject": "Regetar", "Reject & Ignore user": "Regetar e ignorar", "%(roomName)s does not exist.": "%(roomName)s existís pas.", "Options": "Opcions", @@ -41,10 +40,7 @@ "Search…": "Cercar…", "Server error": "Error servidor", "Single Sign On": "Autentificacion unica", - "Confirm": "Confirmar", - "Dismiss": "Refusar", "Go Back": "En arrièr", - "Cancel": "Anullar", "Sun": "Dg", "Mon": "Dl", "Tue": "Dm", @@ -66,7 +62,6 @@ "Dec": "Dec", "PM": "PM", "AM": "AM", - "Trust": "Aprovacion", "Sign In": "Se connectar", "Default": "Predefinit", "Moderator": "Moderator", @@ -83,14 +78,9 @@ "Dark": "Escur", "Review": "Reveire", "Notifications": "Notificacions", - "Close": "Tampar", "Ok": "Validar", "Set up": "Parametrar", - "Upgrade": "Metre a jorn", - "Verify": "Verificar", - "Update": "Mesa a jorn", "Font size": "Talha de poliça", - "Accept": "Acceptar", "Cancelling…": "Anullacion…", "Fish": "Pes", "Butterfly": "Parpalhòl", @@ -110,7 +100,6 @@ "Headphones": "Escotadors", "Folder": "Dorsièr", "Pin": "Penjar", - "Upload": "Enviar", "Show less": "Ne veire mens", "Show more": "Ne veire mai", "Current password": "Senhal actual", @@ -148,7 +137,6 @@ "Camera": "Aparelh de fotografiar", "Bridges": "Bridges", "Sounds": "Sons", - "Reset": "Recomençar", "Browse": "Percórrer", "Unban": "Reabilitar", "Permissions": "Permissions", @@ -156,7 +144,6 @@ "Encrypted": "Chifrat", "Complete": "Acabat", "Revoke": "Revocar", - "Share": "Partiment", "Add": "Ajustar", "Phone Number": "Numèro de telefòn", "Mod": "Moderador", @@ -203,7 +190,6 @@ "Categories": "Categorias", "Cancel search": "Anullar la recèrca", "More options": "Autras opcions", - "Join": "Jónher", "Rotate Left": "Pivotar cap a èrra", "Rotate Right": "Pivotar cap a drecha", "Matrix": "Matritz", @@ -223,7 +209,6 @@ "Session name": "Nom de session", "Refresh": "Actualizada", "Email address": "Adreça de corrièl", - "Skip": "Ignorar", "Terms of Service": "Terms of Service", "Service": "Servici", "Summary": "Resumit", @@ -240,8 +225,6 @@ "Register": "S'enregistrar", "Description": "descripcion", "Unknown error": "Error desconeguda", - "Logout": "Desconnexion", - "View": "Visualizacion", "Search failed": "La recèrca a fracassat", "Room": "Sala", "Feedback": "Comentaris", @@ -291,7 +274,6 @@ "create": "Crear", "disable": "Desactivar", "edit": "Editar", - "enable": "Activar", "invite": "Convidar", "invites_list": "Convits", "leave": "Quitar", @@ -304,6 +286,23 @@ "start": "Començament", "start_chat": "Començar una discussion", "view_source": "Veire la font", - "yes": "Òc" + "yes": "Òc", + "reject": "Regetar", + "confirm": "Confirmar", + "dismiss": "Refusar", + "trust": "Aprovacion", + "cancel": "Anullar", + "join": "Jónher", + "close": "Tampar", + "accept": "Acceptar", + "upgrade": "Metre a jorn", + "verify": "Verificar", + "update": "Mesa a jorn", + "upload": "Enviar", + "reset": "Recomençar", + "share": "Partiment", + "skip": "Ignorar", + "logout": "Desconnexion", + "view": "Visualizacion" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 2689945401d..fe80f9c5146 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -1,5 +1,4 @@ { - "Skip": "Pomiń", "This will allow you to reset your password and receive notifications.": "To pozwoli Ci zresetować Twoje hasło i otrzymać powiadomienia.", "Your browser does not support the required cryptography extensions": "Twoja przeglądarka nie wspiera wymaganych rozszerzeń kryptograficznych", "Something went wrong!": "Coś poszło nie tak!", @@ -8,7 +7,6 @@ "Options": "Opcje", "New Password": "Nowe hasło", "Create new room": "Utwórz nowy pokój", - "Cancel": "Anuluj", "Room": "Pokój", "Jan": "Sty", "Feb": "Lut", @@ -34,7 +32,6 @@ "Users": "Użytkownicy", "Usage": "Użycie", "Unban": "Odbanuj", - "Accept": "Akceptuj", "Account": "Konto", "Add": "Dodaj", "Microphone": "Mikrofon", @@ -43,7 +40,6 @@ "Attachment": "Załącznik", "Banned users": "Zbanowani użytkownicy", "Change Password": "Zmień Hasło", - "Close": "Zamknij", "Confirm password": "Potwierdź hasło", "Cryptography": "Kryptografia", "Current password": "Aktualne hasło", @@ -51,7 +47,6 @@ "Operation failed": "Operacja nie udała się", "Search": "Szukaj", "unknown error code": "nieznany kod błędu", - "Dismiss": "Pomiń", "Failed to forget room %(errCode)s": "Nie mogłem zapomnieć o pokoju %(errCode)s", "Favourite": "Ulubiony", "powered by Matrix": "napędzany przez Matrix", @@ -134,7 +129,6 @@ "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?", - "Logout": "Wyloguj", "Low priority": "Niski priorytet", "%(senderName)s made future room history visible to all room members, from the point they are invited.": "%(senderName)s uczynił przyszłą historię pokoju widoczną dla wszystkich członków pokoju, od momentu ich zaproszenia.", "%(senderName)s made future room history visible to all room members, from the point they joined.": "%(senderName)s uczynił przyszłą historię pokoju widoczną dla wszystkich członków pokoju, od momentu ich dołączenia.", @@ -304,7 +298,6 @@ "Notification targets": "Cele powiadomień", "Today": "Dzisiaj", "Friday": "Piątek", - "Update": "Zaktualizuj", "What's New": "Co nowego", "On": "Włącz", "Changelog": "Dziennik zmian", @@ -326,7 +319,6 @@ "Developer Tools": "Narzędzia programistyczne", "Preparing to send logs": "Przygotowuję do wysłania dzienników", "Saturday": "Sobota", - "Reject": "Odrzuć", "Monday": "Poniedziałek", "Toolbox": "Przybornik", "Collecting logs": "Zbieranie dzienników", @@ -792,7 +784,6 @@ "Changes the avatar of the current room": "Zmienia awatar dla obecnego pokoju", "Use an identity server": "Użyj serwera tożsamości", "Show previews/thumbnails for images": "Pokaż podgląd/miniatury obrazów", - "Trust": "Zaufaj", "Custom (%(level)s)": "Własny (%(level)s)", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Użyj serwera tożsamości, by zaprosić z użyciem adresu e-mail. Kliknij dalej, żeby użyć domyślnego serwera tożsamości (%(defaultIdentityServerName)s), lub zmień w Ustawieniach.", "Use an identity server to invite by email. Manage in Settings.": "Użyj serwera tożsamości, by zaprosić za pomocą adresu e-mail. Zarządzaj w ustawieniach.", @@ -853,9 +844,7 @@ "one": "1 nieprzeczytana wiadomość." }, "Unread messages.": "Nieprzeczytane wiadomości.", - "Join": "Dołącz", "%(creator)s created and configured the room.": "%(creator)s stworzył i skonfigurował pokój.", - "View": "Wyświetl", "Missing media permissions, click the button below to request.": "Brakuje uprawnień do mediów, kliknij przycisk poniżej, aby o nie zapytać.", "%(severalUsers)smade no changes %(count)s times": { "other": "%(severalUsers)snie wykonało zmian %(count)s razy", @@ -872,7 +861,6 @@ "Match system theme": "Dopasuj do motywu systemowego", "They match": "Pasują do siebie", "They don't match": "Nie pasują do siebie", - "Upload": "Prześlij", "Remove recent messages": "Usuń ostatnie wiadomości", "Rotate Left": "Obróć w lewo", "Rotate Right": "Obróć w prawo", @@ -896,7 +884,6 @@ "Ignored users": "Zignorowani użytkownicy", "⚠ These settings are meant for advanced users.": "⚠ Te ustawienia są przeznaczone dla zaawansowanych użytkowników.", "Subscribe": "Subskrybuj", - "Reset": "Resetuj", "Local address": "Lokalny adres", "Published Addresses": "Opublikowane adresy", "Local Addresses": "Lokalne adresy", @@ -916,7 +903,6 @@ "Enter": "Enter", "Space": "Przestrzeń", "End": "End", - "Confirm": "Potwierdź", "Sign In or Create Account": "Zaloguj się lub utwórz konto", "Use your account or create a new one to continue.": "Użyj konta lub utwórz nowe, aby kontynuować.", "Edited at %(date)s. Click to view edits.": "Edytowano w %(date)s. Kliknij, aby zobaczyć zmiany.", @@ -959,7 +945,6 @@ "Forgotten your password?": "Nie pamiętasz hasła?", "Restore": "Przywróć", "Success!": "Sukces!", - "Verify": "Weryfikuj", "Manage integrations": "Zarządzaj integracjami", "%(count)s verified sessions": { "other": "%(count)s zweryfikowanych sesji", @@ -973,7 +958,6 @@ "Hide sessions": "Ukryj sesje", "Integrations are disabled": "Integracje są wyłączone", "Encryption upgrade available": "Dostępne ulepszenie szyfrowania", - "Upgrade": "Ulepsz", "Manage": "Zarządzaj", "Session ID:": "Identyfikator sesji:", "Session key:": "Klucz sesji:", @@ -1010,7 +994,6 @@ "about an hour ago": "około godziny temu", "about a day ago": "około dzień temu", "Support adding custom themes": "Obsługa dodawania niestandardowych motywów", - "Share": "Udostępnij", "Bold": "Pogrubienie", "Italics": "Kursywa", "Strikethrough": "Przekreślenie", @@ -1817,7 +1800,6 @@ "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "Udostępnij anonimowe dane, aby pomóc nam zidentyfikować problemy. Nic osobistego. Żadnych podmiotów zewnętrznych. Dowiedz się więcej", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Wcześniej wyraziłeś zgodę na udostępnianie zanonimizowanych danych z nami. Teraz aktualizujemy jak to działa.", "Help improve %(analyticsOwner)s": "Pomóż poprawić %(analyticsOwner)s", - "Stop": "Stop", "That's fine": "To jest w porządku", "File Attached": "Plik załączony", "Exported %(count)s events in %(seconds)s seconds": { @@ -2114,8 +2096,6 @@ "Invite people": "Zaproś ludzi", "Share invite link": "Udostępnij link zaproszenia", "Click to copy": "Kliknij aby skopiować", - "Collapse": "Zwiń", - "Expand": "Rozwiń", "Show all rooms": "Pokaż wszystkie pokoje", "You can change these anytime.": "Możesz to zmienić w każdej chwili.", "Add some details to help people recognise it.": "Dodaj trochę szczegółów, aby ludzie mogli ją łatwo rozpoznać.", @@ -2132,7 +2112,6 @@ "e.g. my-space": "np. moja-przestrzen", "Please enter a name for the space": "Podaj nazwę dla przestrzeni", "Search %(spaceName)s": "Przeszukaj %(spaceName)s", - "Delete": "Usuń", "Delete avatar": "Usuń awatar", "Space selection": "Wybór przestrzeni", "Match system": "Dopasuj do systemu", @@ -2157,7 +2136,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Oczekiwanie na zweryfikowanie przez ciebie twojego innego urządzenia, %(deviceName)s (%(deviceId)s)…", "Verify this device by confirming the following number appears on its screen.": "Zweryfikuj to urządzenie, upewniając się że poniższy numer wyświetlony jest na jego ekranie.", "Confirm the emoji below are displayed on both devices, in the same order:": "Potwierdź że poniższe emotikony są wyświetlane na obu urządzeniach, w tej samej kolejności:", - "Call": "Zadzwoń", "%(name)s on hold": "%(name)s na linii", "More": "Więcej", "Show sidebar": "Pokaż pasek boczny", @@ -2371,7 +2349,6 @@ "Use your account to continue.": "Użyj swojego konta, aby kontynuować.", "Your email address does not appear to be associated with a Matrix ID on this homeserver.": "Twój adres e-mail nie wydaje się być związany z ID Matrix na tym serwerze domowym.", "%(senderName)s started a voice broadcast": "%(senderName)s rozpoczął transmisję głosową", - "Reload": "Przeładuj", "Database unexpectedly closed": "Baza danych została nieoczekiwanie zamknięta", "No identity access token found": "Nie znaleziono tokena dostępu tożsamości", "Identity server not set": "Serwer tożsamości nie jest ustawiony", @@ -2489,7 +2466,6 @@ "Set a new account password…": "Ustaw nowe hasło użytkownika…", "Error changing password": "Wystąpił błąd podczas zmiany hasła", "New version available. Update now.": "Nowa wersja dostępna. Aktualizuj teraz.", - "Apply": "Zastosuj", "Search users in this room…": "Szukaj użytkowników w tym pokoju…", "Saving…": "Zapisywanie…", "Creating…": "Tworzenie…", @@ -3932,7 +3908,6 @@ "disable": "Wyłącz", "done": "Gotowe", "edit": "Edytuj", - "enable": "Włącz", "forgot_password": "Nie pamiętasz hasła?", "forward": "Przekaż", "invite": "Zaproś", @@ -3953,9 +3928,33 @@ "start": "Rozpocznij", "start_chat": "Rozpocznij rozmowę", "view_source": "Wyświetl źródło", - "yes": "Tak" + "yes": "Tak", + "reject": "Odrzuć", + "confirm": "Potwierdź", + "dismiss": "Pomiń", + "trust": "Zaufaj", + "reload": "Przeładuj", + "cancel": "Anuluj", + "stop": "Stop", + "join": "Dołącz", + "close": "Zamknij", + "accept": "Akceptuj", + "upgrade": "Ulepsz", + "verify": "Weryfikuj", + "update": "Zaktualizuj", + "call": "Zadzwoń", + "delete": "Usuń", + "upload": "Prześlij", + "collapse": "Zwiń", + "apply": "Zastosuj", + "reset": "Resetuj", + "share": "Udostępnij", + "skip": "Pomiń", + "logout": "Wyloguj", + "view": "Wyświetl", + "expand": "Rozwiń" }, "a11y": { "user_menu": "Menu użytkownika" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index fcad528ca7a..84f8ef1eaca 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -34,7 +34,6 @@ "Invites user with given id to current room": "Convidar usuários com um dado identificador para esta sala", "Sign in with": "Quero entrar", "Labs": "Laboratório", - "Logout": "Sair", "Low priority": "Baixa prioridade", "Moderator": "Moderador/a", "Name": "Nome", @@ -164,7 +163,6 @@ "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ê.", "Room": "Sala", - "Cancel": "Cancelar", "Always show message timestamps": "Sempre mostrar as datas das mensagens", "Authentication": "Autenticação", "An error has occurred.": "Ocorreu um erro.", @@ -195,7 +193,6 @@ "Incorrect password": "Palavra-passe incorreta", "Unable to restore session": "Não foi possível restaurar a sessão", "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.": "Se você já usou antes uma versão mais recente do %(brand)s, a sua sessão pode ser incompatível com esta versão. Feche esta janela e tente abrir com a versão mais recente.", - "Dismiss": "Descartar", "Token incorrect": "Token incorreto", "Please enter the code it contains:": "Por favor, entre com o código que está na mensagem:", "powered by Matrix": "potenciado por Matrix", @@ -247,13 +244,11 @@ "Start authentication": "Iniciar autenticação", "New Password": "Nova Palavra-Passe", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Não foi possível conectar ao Servidor de Base. Por favor, confira sua conectividade à internet, garanta que o certificado SSL do Servidor de Base é confiável, e que uma extensão do navegador não esteja bloqueando as requisições de rede.", - "Close": "Fechar", "Add": "Adicionar", "Unnamed Room": "Sala sem nome", "Home": "Início", "Something went wrong!": "Algo deu errado!", "%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (nível de permissão %(powerLevelNumber)s)", - "Accept": "Aceitar", "%(roomName)s is not accessible at this time.": "%(roomName)s não está acessível neste momento.", "Delete widget": "Apagar widget", "Define the power level of a user": "Definir o nível de privilégios de um utilizador", @@ -272,7 +267,6 @@ "Authentication check failed: incorrect password?": "Erro de autenticação: palavra-passe incorreta?", "Do you want to set an email address?": "Deseja definir um endereço de e-mail?", "This will allow you to reset your password and receive notifications.": "Isto irá permitir-lhe redefinir a sua palavra-passe e receber notificações.", - "Skip": "Saltar", "Automatically replace plain text Emoji": "Substituir Emoji de texto automaticamente", "%(widgetName)s widget added by %(senderName)s": "Widget %(widgetName)s adicionado por %(senderName)s", "%(widgetName)s widget removed by %(senderName)s": "Widget %(widgetName)s removido por %(senderName)s", @@ -293,7 +287,6 @@ "Notification targets": "Alvos de notificação", "Today": "Hoje", "Friday": "Sexta-feira", - "Update": "Atualizar", "What's New": "Novidades", "On": "Ativado", "Changelog": "Histórico de alterações", @@ -315,7 +308,6 @@ "Developer Tools": "Ferramentas de desenvolvedor", "Unnamed room": "Sala sem nome", "Saturday": "Sábado", - "Reject": "Rejeitar", "Monday": "Segunda-feira", "Collecting logs": "A recolher logs", "Invite to this room": "Convidar para esta sala", @@ -352,7 +344,6 @@ "Not a valid identity server (status code %(code)s)": "Servidor de Identidade inválido (código de status %(code)s)", "Identity server URL must be HTTPS": "O link do servidor de identidade deve começar com HTTPS", "Comment": "Comente", - "Confirm": "Confirmar", "Use Single Sign On to continue": "Use Single Sign On para continuar", "Identity server not set": "Servidor de identidade não definido", "No identity access token found": "Nenhum token de identidade de acesso encontrado", @@ -384,7 +375,6 @@ "%(minutes)sm %(seconds)ss left": "%(minutes)sm %(seconds)ss restantes", "Only continue if you trust the owner of the server.": "Continue apenas se confia no dono do servidor.", "User Busy": "Utilizador ocupado", - "Trust": "Confiar", "The user you called is busy.": "O utilizador para o qual tentou ligar está ocupado.", "The call was answered on another device.": "A chamada foi atendida noutro dispositivo.", "Unable to access microphone": "Não é possível aceder ao microfone", @@ -409,7 +399,6 @@ "You cannot place calls in this browser.": "Não pode fazer chamadas neste navegador.", "Database unexpectedly closed": "Base de dados fechada inesperadamente", "User is not logged in": "Utilizador não tem sessão iniciada", - "Reload": "Recarregar", "Empty room (was %(oldName)s)": "Sala vazia (era %(oldName)s)", "Anguilla": "Anguilla", "Empty room": "Sala vazia", @@ -767,6 +756,17 @@ "remove": "Remover", "save": "Salvar", "start_chat": "Iniciar conversa", - "view_source": "Ver a fonte" + "view_source": "Ver a fonte", + "reject": "Rejeitar", + "confirm": "Confirmar", + "dismiss": "Descartar", + "trust": "Confiar", + "reload": "Recarregar", + "cancel": "Cancelar", + "close": "Fechar", + "accept": "Aceitar", + "update": "Atualizar", + "skip": "Saltar", + "logout": "Sair" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 55fc2d5c4fb..3b1164e099a 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -34,7 +34,6 @@ "Invites user with given id to current room": "Convida o usuário com o ID especificado para esta sala", "Sign in with": "Entrar com", "Labs": "Laboratório", - "Logout": "Sair", "Low priority": "Baixa prioridade", "Moderator": "Moderador/a", "Name": "Nome", @@ -164,7 +163,6 @@ "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ê.", "Room": "Sala", - "Cancel": "Cancelar", "Always show message timestamps": "Sempre mostrar as datas das mensagens", "Authentication": "Autenticação", "An error has occurred.": "Ocorreu um erro.", @@ -195,7 +193,6 @@ "Incorrect password": "Senha incorreta", "Unable to restore session": "Não foi possível restaurar a sessão", "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.": "Se você já usou antes uma versão mais recente do %(brand)s, a sua sessão pode ser incompatível com esta versão. Feche esta janela e tente abrir com a versão mais recente.", - "Dismiss": "Dispensar", "Token incorrect": "Token incorreto", "Please enter the code it contains:": "Por favor, entre com o código que está na mensagem:", "powered by Matrix": "oferecido por Matrix", @@ -241,10 +238,8 @@ "Create new room": "Criar nova sala", "New Password": "Nova senha", "Something went wrong!": "Não foi possível carregar!", - "Accept": "Aceitar", "Admin Tools": "Ferramentas de administração", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Não foi possível conectar ao Servidor de Base. Por favor, confira sua conectividade à internet, garanta que o certificado SSL do Servidor de Base é confiável, e que uma extensão do navegador não esteja bloqueando as requisições de rede.", - "Close": "Fechar", "No display name": "Nenhum nome e sobrenome", "%(roomName)s does not exist.": "%(roomName)s não existe.", "%(roomName)s is not accessible at this time.": "%(roomName)s não está acessível neste momento.", @@ -260,7 +255,6 @@ "Authentication check failed: incorrect password?": "Falha ao checar a autenticação: senha incorreta?", "Do you want to set an email address?": "Você deseja definir um endereço de e-mail?", "This will allow you to reset your password and receive notifications.": "Isso permitirá que você redefina sua senha e receba notificações.", - "Skip": "Pular", "Restricted": "Restrito", "You are not in this room.": "Você não está nesta sala.", "You do not have permission to do that in this room.": "Você não tem permissão para fazer isso nesta sala.", @@ -424,7 +418,6 @@ "Notification targets": "Aparelhos notificados", "Today": "Hoje", "Friday": "Sexta-feira", - "Update": "Atualizar", "What's New": "Novidades", "On": "Ativado", "Changelog": "Registro de alterações", @@ -444,7 +437,6 @@ "Search…": "Buscar…", "Developer Tools": "Ferramentas do desenvolvedor", "Saturday": "Sábado", - "Reject": "Recusar", "Monday": "Segunda-feira", "Toolbox": "Ferramentas", "Collecting logs": "Coletando logs", @@ -766,7 +758,6 @@ "Single Sign On": "Autenticação Única", "Confirm adding email": "Confirmar a inclusão de e-mail", "Click the button below to confirm adding this email address.": "Clique no botão abaixo para confirmar a adição deste endereço de e-mail.", - "Confirm": "Confirmar", "Add Email Address": "Adicionar endereço de e-mail", "Confirm adding phone number": "Confirmar adição de número de telefone", "Add Phone Number": "Adicionar número de telefone", @@ -781,7 +772,6 @@ "Identity server has no terms of service": "O servidor de identidade não tem termos de serviço", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Esta ação requer acesso ao servidor de identidade padrão para poder validar um endereço de e-mail ou número de telefone, mas este servidor não tem nenhum termo de uso.", "Only continue if you trust the owner of the server.": "Continue apenas se você confia em quem possui este servidor.", - "Trust": "Confiança", "%(name)s is requesting verification": "%(name)s está solicitando confirmação", "Sign In or Create Account": "Faça login ou crie uma conta", "Use your account or create a new one to continue.": "Use sua conta ou crie uma nova para continuar.", @@ -893,8 +883,6 @@ "Ok": "Ok", "Encryption upgrade available": "Atualização de criptografia disponível", "Verify this session": "Confirmar esta sessão", - "Upgrade": "Atualizar", - "Verify": "Confirmar", "Other users may not trust it": "Outras(os) usuárias(os) podem não confiar nela", "New login. Was this you?": "Novo login. Foi você?", "Guest": "Convidada(o)", @@ -940,7 +928,6 @@ "To be secure, do this in person or use a trusted way to communicate.": "Para sua segurança, faça isso pessoalmente ou use uma forma confiável de comunicação.", "Lock": "Cadeado", "Accept to continue:": "Aceitar para continuar:", - "Upload": "Enviar", "This bridge was provisioned by .": "Esta integração foi disponibilizada por .", "This bridge is managed by .": "Esta integração é desenvolvida por .", "Show less": "Mostrar menos", @@ -1105,7 +1092,6 @@ "Widget added by": "Widget adicionado por", "This widget may use cookies.": "Este widget pode usar cookies.", "More options": "Mais opções", - "Join": "Entrar", "Rotate Left": "Girar para a esquerda", "Rotate Right": "Girar para a direita", "Language Dropdown": "Menu suspenso de idiomas", @@ -1341,7 +1327,6 @@ "Notify everyone": "Notificar todos", "Your email address hasn't been verified yet": "Seu endereço de e-mail ainda não foi confirmado", "Revoke": "Revogar", - "Share": "Compartilhar", "Unable to revoke sharing for phone number": "Não foi possível revogar o compartilhamento do número de celular", "Unable to share phone number": "Não foi possível compartilhar o número de celular", "Please enter verification code sent via text.": "Digite o código de confirmação enviado por mensagem de texto.", @@ -1463,7 +1448,6 @@ "Password is allowed, but unsafe": "Esta senha é permitida, mas não é segura", "Sign in with SSO": "Faça login com SSO (Login Único)", "Couldn't load page": "Não foi possível carregar a página", - "View": "Ver", "You have %(count)s unread notifications in a prior version of this room.": { "other": "Você tem %(count)s notificações não lidas em uma versão anterior desta sala.", "one": "Você tem %(count)s notificações não lidas em uma versão anterior desta sala." @@ -1604,7 +1588,6 @@ "You can also set up Secure Backup & manage your keys in Settings.": "Você também pode configurar o Backup online & configurar as suas senhas nas Configurações.", "Cross-signing is ready for use.": "A autoverificação está pronta para uso.", "Cross-signing is not set up.": "A autoverificação não está configurada.", - "Reset": "Redefinir", "not found in storage": "não encontrado no armazenamento", "Master private key:": "Chave privada principal:", "Failed to save your profile": "Houve uma falha ao salvar o seu perfil", @@ -2164,7 +2147,6 @@ "Welcome to ": "Boas-vindas ao ", "Private": "Privado", "Public": "Público", - "Delete": "Excluir", "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.", "Failed to create initial space rooms": "Falha ao criar salas de espaço iniciais", @@ -2262,8 +2244,6 @@ "Keyword": "Palavra-chave", "Error saving notification preferences": "Erro ao salvar as preferências de notificações", "Messages containing keywords": "Mensagens contendo palavras-chave", - "Collapse": "Colapsar", - "Expand": "Expandir", "Recommended for public spaces.": "Recomendado para espaços públicos.", "Preview Space": "Previsualizar o Espaço", "Visibility": "Visibilidade", @@ -2464,7 +2444,6 @@ "Share anonymous data to help us identify issues. Nothing personal. No third parties. Learn More": "Compartilhe dados anônimos para nos ajudar a identificar problemas. Nada pessoal. Sem terceiros. Saiba mais", "You previously consented to share anonymous usage data with us. We're updating how that works.": "Você consentiu anteriormente em compartilhar dados de uso anônimos conosco. Estamos atualizando como isso funciona.", "Help improve %(analyticsOwner)s": "Ajude a melhorar %(analyticsOwner)s", - "Stop": "Pare", "That's fine": "Isso é bom", "Current Timeline": "Linha do tempo atual", "Specify a number of messages": "Especifique um número de mensagens", @@ -2874,7 +2853,6 @@ "disable": "Desativar", "done": "Fechar", "edit": "Editar", - "enable": "Ativar", "forgot_password": "Esqueceu a senha?", "invite": "Convidar", "invites_list": "Convidar", @@ -2894,9 +2872,30 @@ "start": "Iniciar", "start_chat": "Iniciar conversa", "view_source": "Ver código-fonte", - "yes": "Sim" + "yes": "Sim", + "reject": "Recusar", + "confirm": "Confirmar", + "dismiss": "Dispensar", + "trust": "Confiança", + "cancel": "Cancelar", + "stop": "Pare", + "join": "Entrar", + "close": "Fechar", + "accept": "Aceitar", + "upgrade": "Atualizar", + "verify": "Confirmar", + "update": "Atualizar", + "delete": "Excluir", + "upload": "Enviar", + "collapse": "Colapsar", + "reset": "Redefinir", + "share": "Compartilhar", + "skip": "Pular", + "logout": "Sair", + "view": "Ver", + "expand": "Expandir" }, "a11y": { "user_menu": "Menu do usuário" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index 0668f9a90c9..8b219646208 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -39,7 +39,6 @@ "Explore rooms": "Explorează camerele", "Sign In": "Autentificare", "Create Account": "Înregistare", - "Dismiss": "Închide", "You've reached the maximum number of simultaneous calls.": "Ați atins numărul maxim de apeluri simultane.", "Too Many Calls": "Prea multe apeluri", "No other application is using the webcam": "Nicio altă aplicație nu folosește camera web", @@ -62,7 +61,6 @@ "Confirm adding phone number": "Confirmați adăugarea numărului de telefon", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Confirmați adăugarea acestui număr de telefon utilizând Single Sign On pentru a vă dovedi identitatea.", "Add Email Address": "Adăugați o adresă de e-mail", - "Confirm": "Confirmă", "Click the button below to confirm adding this email address.": "Faceți clic pe butonul de mai jos pentru a confirma adăugarea acestei adrese de e-mail.", "Confirm adding email": "Confirmați adăugarea e-mailului", "Single Sign On": "Single Sign On", @@ -73,6 +71,8 @@ "error": "Eroare" }, "action": { - "ok": "OK" + "ok": "OK", + "confirm": "Confirmă", + "dismiss": "Închide" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 4fe4937ed8c..3ab9be54a2d 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -30,7 +30,6 @@ "Invites user with given id to current room": "Приглашает пользователя с заданным ID в текущую комнату", "Sign in with": "Войти с помощью", "Labs": "Лаборатория", - "Logout": "Выйти", "Low priority": "Маловажные", "Moderator": "Модератор", "Name": "Название", @@ -156,9 +155,7 @@ "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", "Room": "Комната", - "Cancel": "Отмена", "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Не удается подключиться к домашнему серверу через HTTP, так как в адресной строке браузера указан адрес HTTPS. Используйте HTTPS или включите небезопасные скрипты.", - "Dismiss": "Закрыть", "Operation failed": "Сбой операции", "powered by Matrix": "основано на Matrix", "Show timestamps in 12 hour format (e.g. 2:30pm)": "Отображать время в 12-часовом формате (напр. 2:30 ПП)", @@ -241,9 +238,7 @@ "New Password": "Новый пароль", "Something went wrong!": "Что-то пошло не так!", "Home": "Главная", - "Accept": "Принять", "Admin Tools": "Инструменты администратора", - "Close": "Закрыть", "No display name": "Нет отображаемого имени", "Start authentication": "Начать аутентификацию", "(~%(count)s results)": { @@ -260,7 +255,6 @@ "Authentication check failed: incorrect password?": "Ошибка аутентификации: возможно, неправильный пароль?", "Do you want to set an email address?": "Хотите указать email?", "This will allow you to reset your password and receive notifications.": "Это позволит при необходимости сбросить пароль и получать уведомления.", - "Skip": "Пропустить", "Check for update": "Проверить наличие обновлений", "Delete widget": "Удалить виджет", "Define the power level of a user": "Определить уровень прав пользователя", @@ -429,7 +423,6 @@ "Notification targets": "Устройства для уведомлений", "Today": "Сегодня", "Friday": "Пятница", - "Update": "Обновить", "What's New": "Что изменилось", "On": "Включить", "Changelog": "История изменений", @@ -451,7 +444,6 @@ "Developer Tools": "Инструменты разработчика", "Preparing to send logs": "Подготовка к отправке журналов", "Saturday": "Суббота", - "Reject": "Отклонить", "Monday": "Понедельник", "Toolbox": "Панель инструментов", "Collecting logs": "Сбор журналов", @@ -617,7 +609,6 @@ "Room Topic": "Тема комнаты", "This room is a continuation of another conversation.": "Эта комната является продолжением другого разговора.", "Click here to see older messages.": "Нажмите, чтобы увидеть старые сообщения.", - "Join": "Войти", "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Ваше сообщение не было отправлено, потому что этот домашний сервер превысил месячный лимит активных пользователей. обратитесь к администратору службы, чтобы продолжить использование службы.", "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Ваше сообщение не было отправлено, потому что этот домашний сервер превысил лимит ресурсов. обратитесь к администратору службы, чтобы продолжить использование службы.", "Prompt before sending invites to potentially invalid matrix IDs": "Подтверждать отправку приглашений на потенциально недействительные matrix ID", @@ -643,7 +634,6 @@ "Download": "Скачать", "Email (optional)": "Адрес электронной почты (не обязательно)", "Phone (optional)": "Телефон (не обязательно)", - "Confirm": "Подтвердить", "Other": "Другие", "Go to Settings": "Перейти в настройки", "Set up Secure Messages": "Настроить безопасные сообщения", @@ -838,7 +828,6 @@ "Your browser likely removed this data when running low on disk space.": "Вероятно, ваш браузер удалил эти данные, когда на дисковом пространстве оставалось мало места.", "Upload files (%(current)s of %(total)s)": "Загрузка файлов (%(current)s из %(total)s)", "Upload files": "Загрузка файлов", - "Upload": "Загрузить", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Этот файл слишком большой для загрузки. Лимит размера файла составляет %(limit)s но этот файл %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Эти файлы слишком большие для загрузки. Лимит размера файла составляет %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Некоторые файлы имеют слишком большой размер, чтобы их можно было загрузить. Лимит размера файла составляет %(limit)s.", @@ -895,7 +884,6 @@ "Uploaded sound": "Загруженный звук", "Sounds": "Звук", "Notification sound": "Звук уведомления", - "Reset": "Сброс", "Set a new custom sound": "Установка нового пользовательского звука", "Browse": "Просматривать", "Go back to set it again.": "Задать другой пароль.", @@ -1013,7 +1001,6 @@ "Verify the link in your inbox": "Проверьте ссылку в вашем почтовом ящике(папка \"Входящие\")", "Complete": "Выполнено", "Revoke": "Отмена", - "Share": "Поделиться", "Discovery options will appear once you have added an email above.": "Параметры поиска по электронной почты появятся после добавления её выше.", "Unable to revoke sharing for phone number": "Не удалось отменить общий доступ к номеру телефона", "Unable to share phone number": "Не удается предоставить общий доступ к номеру телефона", @@ -1072,7 +1059,6 @@ "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "Отчет о данном сообщении отправит свой уникальный 'event ID' администратору вашего домашнего сервера. Если сообщения в этой комнате зашифрованы, администратор вашего домашнего сервера не сможет прочитать текст сообщения или просмотреть какие-либо файлы или изображения.", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Отсутствует Капча открытого ключа в конфигурации домашнего сервера. Пожалуйста, сообщите об этом администратору вашего домашнего сервера.", "%(creator)s created and configured the room.": "%(creator)s создал(а) и настроил(а) комнату.", - "View": "Просмотр", "Explore rooms": "Обзор комнат", "Command Autocomplete": "Автозаполнение команды", "Emoji Autocomplete": "Автодополнение смайлов", @@ -1093,7 +1079,6 @@ "Room %(name)s": "Комната %(name)s", "Jump to first unread room.": "Перейти в первую непрочитанную комнату.", "Jump to first invite.": "Перейти к первому приглашению.", - "Trust": "Доверие", "Unread messages.": "Непрочитанные сообщения.", "Message Actions": "Сообщение действий", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Это действие требует по умолчанию доступа к серверу идентификации для подтверждения адреса электронной почты или номера телефона, но у сервера нет никакого пользовательского соглашения.", @@ -1164,8 +1149,6 @@ "To be secure, do this in person or use a trusted way to communicate.": "Чтобы быть в безопасности, делайте это лично или используйте надежный способ связи.", "Lock": "Заблокировать", "Other users may not trust it": "Другие пользователи могут не доверять этому сеансу", - "Upgrade": "Обновление", - "Verify": "Заверить", "Later": "Позже", "Review": "Обзор", "This bridge was provisioned by .": "Этот мост был подготовлен пользователем .", @@ -2207,7 +2190,6 @@ "Open space for anyone, best for communities": "Открытое пространство для всех, лучший вариант для сообществ", "Public": "Публичное", "Create a space": "Создать пространство", - "Delete": "Удалить", "Jump to the bottom of the timeline when you send a message": "Перейти к нижней части временной шкалы, когда вы отправляете сообщение", "This homeserver has been blocked by its administrator.": "Доступ к этому домашнему серверу заблокирован вашим администратором.", "You're already in a call with this person.": "Вы уже разговариваете с этим человеком.", @@ -2480,8 +2462,6 @@ "Error saving notification preferences": "Ошибка при сохранении настроек уведомлений", "Messages containing keywords": "Сообщения с ключевыми словами", "Message search initialisation failed": "Инициализация поиска сообщений не удалась", - "Collapse": "Свернуть", - "Expand": "Развернуть", "Recommended for public spaces.": "Рекомендуется для публичных пространств.", "Allow people to preview your space before they join.": "Дайте людям возможность предварительно ознакомиться с вашим пространством, прежде чем они присоединятся к нему.", "Preview Space": "Предварительный просмотр пространства", @@ -2593,7 +2573,6 @@ "Format": "Формат", "Export Chat": "Экспорт чата", "Exporting your data": "Экспорт ваших данных", - "Stop": "Стоп", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Вы уверены, что хотите прекратить экспорт данных? Если да, то вам придется начать все сначала.", "Your export was successful. Find it in your Downloads folder.": "Ваш экспорт звершен. Найдите его в папке \"Загрузки\".", "The export was cancelled successfully": "Экспорт был отменен", @@ -2903,7 +2882,6 @@ "Verify this device by confirming the following number appears on its screen.": "Проверьте это устройство, убедившись, что на его экране отображается следующее число.", "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Ожидает проверки на другом устройстве, %(deviceName)s (%(deviceId)s)…", "Confirm the emoji below are displayed on both devices, in the same order:": "Убедитесь, что приведённые ниже смайлики отображаются в обоих сеансах в одинаковом порядке:", - "Call": "Вызов", "Dial": "Набор", "sends rainfall": "отправляет дождь", "Sends the given message with rainfall": "Отправляет заданное сообщение с дождём", @@ -3482,7 +3460,6 @@ "You have unverified sessions": "У вас есть незаверенные сеансы", "Rich text editor": "Наглядный текстовый редактор", "Search users in this room…": "Поиск пользователей в этой комнате…", - "Apply": "Применить", "You ended a voice broadcast": "Вы завершили голосовую трансляцию", "%(senderName)s ended a voice broadcast": "%(senderName)s завершил(а) голосовую трансляцию", "You ended a voice broadcast": "Вы завершили голосовую трансляцию", @@ -3639,7 +3616,6 @@ "disable": "Отключить", "done": "Готово", "edit": "Изменить", - "enable": "Разрешить", "forgot_password": "Забыли пароль?", "forward": "Переслать", "invite": "Пригласить", @@ -3660,9 +3636,32 @@ "start": "Начать", "start_chat": "Отправить личное сообщение", "view_source": "Исходный код", - "yes": "Да" + "yes": "Да", + "reject": "Отклонить", + "confirm": "Подтвердить", + "dismiss": "Закрыть", + "trust": "Доверие", + "cancel": "Отмена", + "stop": "Стоп", + "join": "Войти", + "close": "Закрыть", + "accept": "Принять", + "upgrade": "Обновление", + "verify": "Заверить", + "update": "Обновить", + "call": "Вызов", + "delete": "Удалить", + "upload": "Загрузить", + "collapse": "Свернуть", + "apply": "Применить", + "reset": "Сброс", + "share": "Поделиться", + "skip": "Пропустить", + "logout": "Выйти", + "view": "Просмотр", + "expand": "Развернуть" }, "a11y": { "user_menu": "Меню пользователя" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/si.json b/src/i18n/strings/si.json index 5b9031fc059..9052cd65cb6 100644 --- a/src/i18n/strings/si.json +++ b/src/i18n/strings/si.json @@ -3,10 +3,12 @@ "This phone number is already in use": "මෙම දුරකථන අංකය දැනටමත් භාවිතයේ පවතී", "Use Single Sign On to continue": "ඉදිරියට යාමට තනි පුරනය වීම භාවිතා කරන්න", "Confirm adding this email address by using Single Sign On to prove your identity.": "ඔබගේ අනන්‍යතාවය සනාථ කිරීම සඳහා තනි පුරනය භාවිතා කිරීමෙන් මෙම විද්‍යුත් තැපැල් ලිපිනය එක් කිරීම තහවුරු කරන්න.", - "Confirm": "තහවුරු කරන්න", "Add Email Address": "වි-තැපැල් ලිපිනය එකතු කරන්න", "Sign In": "පිවිසෙන්න", - "Dismiss": "ඉවතලන්න", "Explore rooms": "කාමර බලන්න", - "Create Account": "ගිණුමක් සාදන්න" + "Create Account": "ගිණුමක් සාදන්න", + "action": { + "confirm": "තහවුරු කරන්න", + "dismiss": "ඉවතලන්න" + } } diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index f8d9642e6b5..5f375a37ec6 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -80,7 +80,6 @@ "Your browser does not support the required cryptography extensions": "Váš prehliadač nepodporuje požadované kryptografické rozšírenia", "Not a valid %(brand)s keyfile": "Toto nie je správny súbor s kľúčmi %(brand)s", "Authentication check failed: incorrect password?": "Kontrola overenia zlyhala: Nesprávne heslo?", - "Accept": "Prijať", "Incorrect verification code": "Nesprávny overovací kód", "Submit": "Odoslať", "Phone": "Telefón", @@ -159,9 +158,7 @@ "Members only (since they joined)": "Len členovia (odkedy vstúpili)", "Permissions": "Povolenia", "Advanced": "Pokročilé", - "Cancel": "Zrušiť", "Jump to first unread message.": "Preskočiť na prvú neprečítanú správu.", - "Close": "Zavrieť", "not specified": "nezadané", "This room has no local addresses": "Pre túto miestnosť nie sú žiadne lokálne adresy", "You have disabled URL previews by default.": "Predvolene máte zakázané náhľady URL adries.", @@ -180,7 +177,6 @@ "Failed to copy": "Nepodarilo sa skopírovať", "Add an Integration": "Pridať integráciu", "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?": "Budete presmerovaní na stránku tretej strany, aby ste mohli overiť svoj účet na použitie s %(integrationsUrl)s. Chcete pokračovať?", - "Dismiss": "Zamietnuť", "Token incorrect": "Neplatný token", "A text message has been sent to %(msisdn)s": "Na číslo %(msisdn)s bola odoslaná textová správa", "Please enter the code it contains:": "Prosím, zadajte kód z tejto správy:", @@ -299,7 +295,6 @@ "Unable to add email address": "Nie je možné pridať 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.", - "Skip": "Preskočiť", "Name": "Názov", "You must register to use this functionality": "Aby ste mohli použiť túto vlastnosť, musíte byť zaregistrovaný", "You must join the room to see its files": "Aby ste si mohli zobraziť zoznam súborov, musíte vstúpiť do miestnosti", @@ -310,7 +305,6 @@ "Are you sure you want to leave the room '%(roomName)s'?": "Ste si istí, že chcete opustiť miestnosť '%(roomName)s'?", "Signed Out": "Ste odhlásení", "For security, this session has been signed out. Please sign in again.": "Z bezpečnostných dôvodov bola táto relácia odhlásená. Prosím, prihláste sa znova.", - "Logout": "Odhlásiť sa", "Connectivity to the server has been lost.": "Spojenie so serverom bolo prerušené.", "Sent messages will be stored until your connection has returned.": "Odoslané správy ostanú uložené, kým sa spojenie nenadviaže znovu.", "You seem to be uploading files, are you sure you want to quit?": "Zdá sa, že práve nahrávate súbory, ste si istí, že chcete skončiť?", @@ -428,7 +422,6 @@ "Notification targets": "Ciele oznámení", "Today": "Dnes", "Friday": "Piatok", - "Update": "Aktualizovať", "On": "Povolené", "Changelog": "Zoznam zmien", "Waiting for response from server": "Čakanie na odpoveď zo servera", @@ -448,7 +441,6 @@ "Event sent!": "Udalosť odoslaná!", "Preparing to send logs": "príprava odoslania záznamov", "Saturday": "Sobota", - "Reject": "Odmietnuť", "Monday": "Pondelok", "Toolbox": "Nástroje", "Collecting logs": "Získavajú sa záznamy", @@ -779,7 +771,6 @@ "Room avatar": "Obrázok miestnosti", "Room Name": "Názov miestnosti", "Room Topic": "Téma miestnosti", - "Join": "Vstúpiť", "Power level": "Úroveň oprávnenia", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Overte tohto používateľa a označte ho ako dôveryhodného. Dôveryhodní používatelia vám poskytujú dodatočný pokoj na duši pri používaní end-to-end šifrovaných správ.", "Incoming Verification Request": "Prichádzajúca žiadosť o overenie", @@ -794,7 +785,6 @@ "Change": "Zmeniť", "Email (optional)": "Email (nepovinné)", "Phone (optional)": "Telefón (nepovinné)", - "Confirm": "Potvrdiť", "Join millions for free on the largest public server": "Pripojte sa k mnohým používateľom najväčšieho verejného domovského servera zdarma", "Other": "Ďalšie", "Couldn't load page": "Nie je možné načítať stránku", @@ -845,7 +835,6 @@ "Add Email Address": "Pridať emailovú adresu", "Add Phone Number": "Pridať telefónne číslo", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Táto akcia vyžaduje prístup k predvolenému serveru totožností na overenie emailovej adresy alebo telefónneho čísla, ale server nemá žiadne podmienky používania.", - "Trust": "Dôverovať", "Custom (%(level)s)": "Vlastný (%(level)s)", "Sends a message as plain text, without interpreting it as markdown": "Odošle správu ako obyčajný text bez interpretácie ako markdown", "You do not have the required permissions to use this command.": "Na použitie tohoto príkazu nemáte dostatočné povolenia.", @@ -881,7 +870,6 @@ "Show previews/thumbnails for images": "Zobrazovať ukážky/náhľady obrázkov", "My Ban List": "Môj zoznam zákazov", "This is your list of users/servers you have blocked - don't leave the room!": "Toto je zoznam používateľov / serverov, ktorých ste zablokovali - neopúšťajte miestnosť!", - "Upload": "Nahrať", "Cross-signing public keys:": "Verejné kľúče krížového podpisovania:", "not found": "nenájdené", "Cross-signing private keys:": "Súkromné kľúče krížového podpisovania:", @@ -1029,8 +1017,6 @@ "Verify by emoji": "Overiť pomocou emotikonov", "Review": "Skontrolovať", "Later": "Neskôr", - "Upgrade": "Aktualizovať", - "Verify": "Overiť", "Other users may not trust it": "Ostatní používatelia jej nemusia dôverovať", "This bridge was provisioned by .": "Toto premostenie poskytuje .", "Joins room with given address": "Pridať sa do miestnosti s danou adresou", @@ -1134,7 +1120,6 @@ "Uploaded sound": "Nahratý zvuk", "Sounds": "Zvuky", "Notification sound": "Zvuk oznámenia", - "Reset": "Obnoviť predvolené", "Set a new custom sound": "Nastaviť vlastný zvuk", "Browse": "Prechádzať", "Upgrade the room": "Aktualizovať miestnosť", @@ -1151,7 +1136,6 @@ "Verify the link in your inbox": "Overte odkaz vo vašej emailovej schránke", "Complete": "Dokončiť", "Revoke": "Odvolať", - "Share": "Zdieľať", "Unable to revoke sharing for phone number": "Nepodarilo sa zrušiť zdieľanie telefónneho čísla", "Unable to share phone number": "Nepodarilo sa zdieľanie telefónneho čísla", "Please enter verification code sent via text.": "Zadajte prosím overovací kód zaslaný prostredníctvom SMS.", @@ -1545,7 +1529,6 @@ }, "Messages in this room are not end-to-end encrypted.": "Správy v tejto miestnosti nie sú šifrované od vás až k príjemcovi.", "Messages in this room are end-to-end encrypted.": "Správy v tejto miestnosti sú šifrované od vás až k príjemcovi.", - "Expand": "Rozbaliť", "Show all your rooms in Home, even if they're in a space.": "Zobrazte všetky miestnosti v časti Domov, aj keď sú v priestore.", "Show all rooms in Home": "Zobraziť všetky miestnosti v časti Domov", "Sign out and remove encryption keys?": "Odhlásiť sa a odstrániť šifrovacie kľúče?", @@ -1669,7 +1652,6 @@ "Downloading": "Preberanie", "Show:": "Zobraziť:", "Threads": "Vlákna", - "Stop": "Zastaviť", "MB": "MB", "JSON": "JSON", "HTML": "HTML", @@ -1677,7 +1659,6 @@ "Results": "Výsledky", "More": "Viac", "Decrypting": "Dešifrovanie", - "Collapse": "Zbaliť", "Visibility": "Viditeľnosť", "Sent": "Odoslané", "Beta": "Beta", @@ -1689,7 +1670,6 @@ "Suggested": "Navrhované", "Support": "Podpora", "Random": "Náhodné", - "Delete": "Vymazať", "Value:": "Hodnota:", "Level": "Úroveň", "Setting:": "Nastavenie:", @@ -1714,7 +1694,6 @@ "Objects": "Objekty", "Activities": "Aktivity", "Document": "Dokument", - "View": "Zobraziť", "Summary": "Zhrnutie", "Notes": "Poznámky", "Service": "Služba", @@ -2562,7 +2541,6 @@ "Next autocomplete suggestion": "Ďalší návrh automatického dokončovania", "Previous autocomplete suggestion": "Predchádzajúci návrh automatického dokončovania", "Internal room ID": "Interné ID miestnosti", - "Call": "Hovor", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Priestory sú spôsoby zoskupovania miestností a ľudí. Popri priestoroch, v ktorých sa nachádzate, môžete použiť aj niektoré predpripravené priestory.", "Group all your favourite rooms and people in one place.": "Zoskupte všetky vaše obľúbené miestnosti a ľudí na jednom mieste.", "Group all your people in one place.": "Zoskupte všetkých ľudí na jednom mieste.", @@ -3588,7 +3566,6 @@ "Re-enter email address": "Znovu zadajte e-mailovú adresu", "Wrong email address?": "Nesprávna e-mailová adresa?", "Hide notification dot (only display counters badges)": "Skryť oznamovaciu bodku (zobrazovať iba odznaky počítadiel)", - "Apply": "Použiť", "Search users in this room…": "Vyhľadať používateľov v tejto miestnosti…", "Give one or multiple users in this room more privileges": "Prideliť jednému alebo viacerým používateľom v tejto miestnosti viac oprávnení", "Add privileged users": "Pridať oprávnených používateľov", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "Pri pokuse nájsť a prejsť na daný dátum došlo k sieťovej chybe. Váš domovský server môže byť vypnutý alebo sa vyskytol len dočasný problém s internetovým pripojením. Skúste to prosím znova. Ak to bude pokračovať, obráťte sa na správcu domovského servera.", "Poll history": "História ankety", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Používateľ (%(user)s) neskončil ako pozvaný do %(roomId)s, ale nástroj pre pozývanie neposkytol žiadnu chybu", - "Reload": "Znovu načítať", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Môže to byť spôsobené otvorením aplikácie na viacerých kartách alebo vymazaním údajov prehliadača.", "Database unexpectedly closed": "Databáza sa neočakávane zatvorila", "Mute room": "Stlmiť miestnosť", @@ -3950,7 +3926,6 @@ "disable": "Nepovoliť", "done": "Hotovo", "edit": "Upraviť", - "enable": "Povoliť", "forgot_password": "Zabudli ste heslo?", "forward": "Preposlať", "invite": "Pozvať", @@ -3971,9 +3946,33 @@ "start": "Začať", "start_chat": "Začať konverzáciu", "view_source": "Zobraziť zdroj", - "yes": "Áno" + "yes": "Áno", + "reject": "Odmietnuť", + "confirm": "Potvrdiť", + "dismiss": "Zamietnuť", + "trust": "Dôverovať", + "reload": "Znovu načítať", + "cancel": "Zrušiť", + "stop": "Zastaviť", + "join": "Vstúpiť", + "close": "Zavrieť", + "accept": "Prijať", + "upgrade": "Aktualizovať", + "verify": "Overiť", + "update": "Aktualizovať", + "call": "Hovor", + "delete": "Vymazať", + "upload": "Nahrať", + "collapse": "Zbaliť", + "apply": "Použiť", + "reset": "Obnoviť predvolené", + "share": "Zdieľať", + "skip": "Preskočiť", + "logout": "Odhlásiť sa", + "view": "Zobraziť", + "expand": "Rozbaliť" }, "a11y": { "user_menu": "Používateľské menu" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index 7c51eba925d..c66211b23d9 100644 --- a/src/i18n/strings/sl.json +++ b/src/i18n/strings/sl.json @@ -2,7 +2,6 @@ "This email address is already in use": "Ta e-poštni naslov je že v uporabi", "This phone number is already in use": "Ta telefonska številka je že v uporabi", "Failed to verify email address: make sure you clicked the link in the email": "E-poštnega naslova ni bilo mogoče preveriti: preverite, ali ste kliknili povezavo v e-poštnem sporočilu", - "Dismiss": "Opusti", "Chat with %(brand)s Bot": "Klepetajte z %(brand)s Botom", "Sign In": "Prijava", "powered by Matrix": "poganja Matrix", @@ -11,7 +10,6 @@ "Single Sign On": "Enkratna prijava", "Confirm adding email": "Potrdi dodajanje e-poštnega naslova", "Click the button below to confirm adding this email address.": "Kliknite gumb spodaj za potrditev dodajanja tega elektronskega naslova.", - "Confirm": "Potrdi", "Add Email Address": "Dodaj e-poštni naslov", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Potrdite dodajanje te telefonske številke z enkratno prijavo, da dokažete svojo identiteto.", "Confirm adding phone number": "Potrdi dodajanje telefonske številke", @@ -63,5 +61,9 @@ "common": { "analytics": "Analitika", "error": "Napaka" + }, + "action": { + "confirm": "Potrdi", + "dismiss": "Opusti" } } diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index e3c316579e8..38abdde378b 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -60,11 +60,9 @@ "Notification targets": "Objektiva njoftimesh", "Today": "Sot", "Friday": "E premte", - "Update": "Përditësoje", "Notifications": "Njoftime", "On": "On", "Changelog": "Regjistër ndryshimesh", - "Reject": "Hidheni tej", "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 send logs: ": "S’u arrit të dërgoheshin regjistra: ", @@ -78,7 +76,6 @@ "All Rooms": "Krejt Dhomat", "Source URL": "URL Burimi", "Messages sent by bot": "Mesazhe të dërguar nga boti", - "Cancel": "Anuloje", "Filter results": "Filtroni përfundimet", "No update available.": "S’ka përditësim gati.", "Noisy": "I zhurmshëm", @@ -88,7 +85,6 @@ "Event sent!": "Akti u dërgua!", "Preparing to send logs": "Po përgatitet për dërgim regjistrash", "Unnamed room": "Dhomë e paemërtuar", - "Dismiss": "Mos e merr parasysh", "Saturday": "E shtunë", "Online": "Në linjë", "Monday": "E hënë", @@ -107,7 +103,6 @@ "State Key": "Kyç Gjendjesh", "What's new?": "Ç’ka të re?", "When I'm invited to a room": "Kur ftohem në një dhomë", - "Close": "Mbylle", "Invite to this room": "Ftojeni te kjo dhomë", "You cannot delete this message. (%(code)s)": "S’mund ta fshini këtë mesazh. (%(code)s)", "Thursday": "E enjte", @@ -135,7 +130,6 @@ "%(senderName)s made future room history visible to all room members.": "%(senderName)s e bëri historikun e ardhshëm të dhomës të dukshëm për krejt anëtarët e dhomës.", "%(senderName)s made future room history visible to anyone.": "%(senderName)s e bëri historikun e ardhshëm të dhomës të dukshëm për këdo.", "Always show message timestamps": "Shfaq përherë vula kohore për mesazhet", - "Accept": "Pranoje", "Incorrect verification code": "Kod verifikimi i pasaktë", "Submit": "Parashtroje", "Phone": "Telefon", @@ -250,7 +244,6 @@ "Invalid Email Address": "Adresë Email e Pavlefshme", "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", - "Skip": "Anashkaloje", "Name": "Emër", "You must register to use this functionality": "Që të përdorni këtë funksion, duhet të regjistroheni", "Description": "Përshkrim", @@ -259,7 +252,6 @@ "Are you sure you want to leave the room '%(roomName)s'?": "Jeni i sigurt se doni të dilni nga dhoma '%(roomName)s'?", "Signed Out": "I dalë", "Old cryptography data detected": "U pikasën të dhëna kriptografie të vjetër", - "Logout": "Dalje", "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", "No more results": "Jo më tepër përfundime", @@ -673,13 +665,11 @@ "Room avatar": "Avatar dhome", "Room Name": "Emër Dhome", "Room Topic": "Temë Dhome", - "Join": "Hyni", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Verifikojeni këtë përdorues që t’i vihet shenjë si i besuar. Përdoruesit e besuar ju më tepër siguri kur përdorni mesazhe të fshehtëzuar skaj-më-skaj.", "Incoming Verification Request": "Kërkesë Verifikimi e Ardhur", "Go back": "Kthehu mbrapsht", "Email (optional)": "Email (në daçi)", "Phone (optional)": "Telefoni (në daçi)", - "Confirm": "Ripohojeni", "Join millions for free on the largest public server": "Bashkojuni milionave, falas, në shërbyesin më të madh publik", "Other": "Tjetër", "Guest": "Mysafir", @@ -840,7 +830,6 @@ "Sign out and remove encryption keys?": "Të dilet dhe të hiqen kyçet e fshehtëzimit?", "Missing session data": "Mungojnë të dhëna sesioni", "Upload files": "Ngarko kartela", - "Upload": "Ngarkim", "Upload %(count)s other files": { "other": "Ngarkoni %(count)s kartela të tjera", "one": "Ngarkoni %(count)s kartelë tjetër" @@ -937,7 +926,6 @@ "Unable to revoke sharing for email address": "S’arrihet të shfuqizohet ndarja për këtë adresë email", "Unable to share email address": "S’arrihet të ndahet adresë email", "Revoke": "Shfuqizoje", - "Share": "Ndaje me të tjerë", "Unable to revoke sharing for phone number": "S’arrihet të shfuqizohet ndarja për numrin e telefonit", "Unable to share phone number": "S’arrihet të ndahet numër telefoni", "Please enter verification code sent via text.": "Ju lutemi, jepni kod verifikimi të dërguar përmes teksti.", @@ -1024,7 +1012,6 @@ "one": "Hiq 1 mesazh" }, "Remove recent messages": "Hiq mesazhe së fundi", - "View": "Shihni", "Explore rooms": "Eksploroni dhoma", "Changes the avatar of the current room": "Ndryshon avatarin e dhomës së atëçastshme", "Read Marker lifetime (ms)": "Kohëzgjatje e Shenjës së Leximit (ms)", @@ -1073,7 +1060,6 @@ "Room Autocomplete": "Vetëplotësim Dhomash", "User Autocomplete": "Vetëplotësim Përdoruesish", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ky veprim lyp hyrje te shërbyesi parazgjedhje i identiteteve për të vlerësuar një adresë email ose një numër telefoni, por shërbyesi nuk ka ndonjë kusht shërbimesh.", - "Trust": "Besim", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "Room %(name)s": "Dhoma %(name)s", "Unread messages.": "Mesazhe të palexuar.", @@ -1137,7 +1123,6 @@ "Trusted": "E besuar", "Not trusted": "Jo e besuar", "Messages in this room are end-to-end encrypted.": "Mesazhet në këtë dhomë janë të fshehtëzuara skaj-më-skaj.", - "Verify": "Verifikoje", "Any of the following data may be shared:": "Mund të ndahen me të tjerët cilado prej të dhënave vijuese:", "Your display name": "Emri juaj në ekran", "Your user ID": "ID-ja juaj e përdoruesit", @@ -1178,7 +1163,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "Përmirësimi i një dhome është një veprim i thelluar dhe zakonisht rekomandohet kur një dhomë është e papërdorshme, për shkak të metash, veçorish që i mungojnë ose cenueshmëri sigurie.", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Kjo zakonisht prek vetëm mënyrën se si përpunohet dhoma te shërbyesi. Nëse keni probleme me %(brand)s-in, ju lutemi, njoftoni një të metë.", "You'll upgrade this room from to .": "Do ta përmirësoni këtë dhomë nga .", - "Upgrade": "Përmirësoje", "Unable to set up secret storage": "S’u arrit të ujdiset depozitë e fshehtë", "%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s hoqi rregullin për dëbim përdoruesish që kanë përputhje me %(glob)s", "%(senderName)s removed the rule banning rooms matching %(glob)s": "%(senderName)s hoqi rregullin që dëbon dhoma që kanë përputhje me %(glob)s", @@ -1485,7 +1469,6 @@ "Verify your other session using one of the options below.": "Verifikoni sesionit tuaj tjetër duke përdorur një nga mundësitë më poshtë.", "Lock": "Kyçje", "Cross-signing": "Cross-signing", - "Reset": "Rikthe te parazgjedhjet", "Can't load this message": "S’ngarkohet dot ky mesazh", "Submit logs": "Parashtro regjistra", "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "Kujtesë: Shfletuesi juaj është i pambuluar, ndaj punimi juaj mund të jetë i paparashikueshëm.", @@ -2207,7 +2190,6 @@ "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ë", - "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", "This homeserver has been blocked by its administrator.": "Ky shërbyes Home është bllokuar nga përgjegjësit e tij.", "You're already in a call with this person.": "Gjendeni tashmë në thirrje me këtë person.", @@ -2374,8 +2356,6 @@ "Published addresses can be used by anyone on any server to join your space.": "Adresat e publikuara mund të përdoren nga cilido, në cilindo shërbyes, për të hyrë në hapësirën tuaj.", "This space has no local addresses": "Kjo hapësirë s’ka adresa vendore", "Space information": "Hollësi hapësire", - "Collapse": "Tkurre", - "Expand": "Zgjeroje", "Recommended for public spaces.": "E rekomanduar për hapësira publike.", "Allow people to preview your space before they join.": "Lejojini personat të parashohin hapësirën tuaj para se të hyjnë në të.", "Preview Space": "Parashiheni Hapësirën", @@ -2595,7 +2575,6 @@ "Select from the options below to export chats from your timeline": "Që të eksportohen fjalosje prej rrjedhës tuaj kohore, përzgjidhni prej mundësive më poshtë", "Export Chat": "Eksportoni Fjalosje", "Exporting your data": "Eksportim i të dhënave tuaja", - "Stop": "Ndale", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Jeni i sigurt se doni të ndalet eksportimi i të dhënave tuaja? Nëse po, do t’ju duhet t’ia filloni nga e para.", "Your export was successful. Find it in your Downloads folder.": "Eksportimi juaj qe i suksesshëm. E keni te dosja juaj Shkarkime.", "The export was cancelled successfully": "Eksportimi u anulua me sukses", @@ -2971,7 +2950,6 @@ "This is a beta feature": "Kjo është një veçori beta", "Use to scroll": "Përdorni për rrëshqitje", "Feedback sent! Thanks, we appreciate it!": "Përshtypjet u dërguan! Faleminderit, e çmojmë aktin tuaj!", - "Call": "Thirrje", "Thank you for trying the beta, please go into as much detail as you can so we can improve it.": "Faleminderit që provoni versionin beta, ju lutemi, jepni sa më shumë hollësi, që të mund ta përmirësojmë.", "%(space1Name)s and %(space2Name)s": "%(space1Name)s dhe %(space2Name)s", "%(oneUser)ssent %(count)s hidden messages": { @@ -3582,7 +3560,6 @@ "This session doesn't support encryption and thus can't be verified.": "Ky sesion s’mbulon fshehtëzim, ndaj s’mund të verifikohet.", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Për sigurinë dhe privatësinë më të mirë, rekomandohet të përdoren klientë Matrix që mbulojnë fshehtëzim.", "You won't be able to participate in rooms where encryption is enabled when using this session.": "S’do të jeni në gjendje të merrni pjesë në dhoma ku fshehtëzimi është aktivizuar, kur përdoret ky sesion.", - "Apply": "Aplikoje", "Search users in this room…": "Kërkoni për përdorues në këtë dhomë…", "Give one or multiple users in this room more privileges": "Jepini një ose disa përdoruesve më tepër privilegje në këtë dhomë", "Add privileged users": "Shtoni përdorues të privilegjuar", @@ -3770,7 +3747,6 @@ "Poll history": "Historik pyetësorësh", "Enable intentional mentions": "Aktivizo përmendje të qëllimta", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Përdoruesi (%(user)s) s’doli i ftuar te %(roomId)s, por nga mjeti i ftuesit s’u dha gabim", - "Reload": "Ringarkoje", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Kjo mund të jetë e shkaktuar nga pasja e aplikacionit hapur në shumë skeda, ose për shkak të spastrimit të të dhënave të shfletuesit.", "Database unexpectedly closed": "Baza e të dhënave u mbyll papritur", "Sliding Sync configuration": "Formësim Sliding Sync-u", @@ -3843,7 +3819,6 @@ "disable": "Çaktivizoje", "done": "U bë", "edit": "Përpuno", - "enable": "Aktivizoje", "forgot_password": "Harruat fjalëkalimin?", "forward": "Përcille", "invite": "Ftoje", @@ -3864,9 +3839,33 @@ "start": "Nise", "start_chat": "Filloni fjalosje", "view_source": "Shihini Burimin", - "yes": "Po" + "yes": "Po", + "reject": "Hidheni tej", + "confirm": "Ripohojeni", + "dismiss": "Mos e merr parasysh", + "trust": "Besim", + "reload": "Ringarkoje", + "cancel": "Anuloje", + "stop": "Ndale", + "join": "Hyni", + "close": "Mbylle", + "accept": "Pranoje", + "upgrade": "Përmirësoje", + "verify": "Verifikoje", + "update": "Përditësoje", + "call": "Thirrje", + "delete": "Fshije", + "upload": "Ngarkim", + "collapse": "Tkurre", + "apply": "Aplikoje", + "reset": "Rikthe te parazgjedhjet", + "share": "Ndaje me të tjerë", + "skip": "Anashkaloje", + "logout": "Dalje", + "view": "Shihni", + "expand": "Zgjeroje" }, "a11y": { "user_menu": "Menu përdoruesi" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index 45e9e7d51e1..91d03ca5f51 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -92,7 +92,6 @@ "Enable inline URL previews by default": "Подразумевано укључи УРЛ прегледе", "Enable URL previews for this room (only affects you)": "Укључи УРЛ прегледе у овој соби (утиче само на вас)", "Enable URL previews by default for participants in this room": "Подразумевано омогући прегледе адреса за чланове ове собе", - "Accept": "Прихвати", "Incorrect verification code": "Нетачни потврдни код", "Submit": "Пошаљи", "Phone": "Телефон", @@ -183,9 +182,7 @@ "Members only (since they joined)": "Само чланови (од приступања)", "Permissions": "Овлашћења", "Advanced": "Напредно", - "Cancel": "Откажи", "Jump to first unread message.": "Скочи на прву непрочитану поруку.", - "Close": "Затвори", "not specified": "није наведено", "This room has no local addresses": "Ова соба нема локалних адреса", "You have enabled URL previews by default.": "Укључили сте да се УРЛ прегледи подразумевају.", @@ -206,7 +203,6 @@ "Failed to copy": "Нисам успео да ископирам", "Add an Integration": "Додај уградњу", "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?": "Бићете пребачени на сајт треће стране да бисте се идентификовали са својим налогом зарад коришћења уградње %(integrationsUrl)s. Да ли желите да наставите?", - "Dismiss": "Одбаци", "Token incorrect": "Жетон је нетачан", "A text message has been sent to %(msisdn)s": "Текстуална порука је послата на %(msisdn)s", "Please enter the code it contains:": "Унесите код који се налази у њој:", @@ -328,7 +324,6 @@ "Unable to add email address": "Не могу да додам мејл адресу", "Unable to verify email address.": "Не могу да проверим мејл адресу.", "This will allow you to reset your password and receive notifications.": "Ово омогућава поновно постављање лозинке и примање обавештења.", - "Skip": "Прескочи", "Name": "Име", "You must register to use this functionality": "Морате се регистровати да бисте користили ову могућност", "You must join the room to see its files": "Морате приступити соби да бисте видели њене датотеке", @@ -345,7 +340,6 @@ "In reply to ": "Као одговор за ", "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-а су нађени. Ово ће узроковати лош рад шифровања с краја на крај у старијем издању. Размењене поруке које су шифроване с краја на крај у старијем издању је можда немогуће дешифровати у овом издању. Такође, ово може узроковати неуспешно размењивање порука са овим издањем. Ако доживите проблеме, одјавите се и пријавите се поново. Да бисте задржали историјат поруке, извезите па поново увезите ваше кључеве.", - "Logout": "Одјава", "Warning": "Упозорење", "Connectivity to the server has been lost.": "Веза ка серверу је прекинута.", "Sent messages will be stored until your connection has returned.": "Послате поруке биће сачуване док се веза не успостави поново.", @@ -425,7 +419,6 @@ "Notification targets": "Циљеви обавештења", "Today": "Данас", "Friday": "Петак", - "Update": "Ажурирај", "On": "Укључено", "Changelog": "Записник о изменама", "Waiting for response from server": "Чекам на одговор са сервера", @@ -443,7 +436,6 @@ "Tuesday": "Уторак", "Event sent!": "Догађај је послат!", "Saturday": "Субота", - "Reject": "Одбаци", "Monday": "Понедељак", "Toolbox": "Алатница", "Collecting logs": "Прикупљам записнике", @@ -519,7 +511,6 @@ "%(senderDisplayName)s upgraded this room.": "%(senderDisplayName)s је надоградио ову собу.", "Join millions for free on the largest public server": "Придружите се милионима других бесплатно на највећем јавном серверу", "Create account": "Направи налог", - "Confirm": "Потврди", "Email (optional)": "Мејл (изборно)", "Change": "Промени", "Messages containing my username": "Поруке које садрже моје корисничко", @@ -541,7 +532,6 @@ "Encryption upgrade available": "Надоградња шифровања је доступна", "Show info about bridges in room settings": "Прикажи податке о мостовима у подешавањима собе", "Enable Emoji suggestions while typing": "Омогући предлоге емоџија приликом куцања", - "Upload": "Отпреми", "Show more": "Прикажи више", "Cannot connect to integration manager": "Не могу се повезати на управника уградњи", "Email addresses": "Мејл адресе", @@ -589,7 +579,6 @@ "Smileys & People": "Смешци и особе", "Quick Reactions": "Брзе реакције", "Widgets do not use message encryption.": "Виџети не користе шифровање порука.", - "Join": "Приступи", "Enable end-to-end encryption": "Омогући шифровање с краја на крај", "Report Content to Your Homeserver Administrator": "Пријави садржај администратору вашег домаћег сервера", "Room Settings - %(roomName)s": "Подешавања собе - %(roomName)s", @@ -928,7 +917,6 @@ "United States": "Сједињене Америчке Државе", "United Kingdom": "Уједињено Краљевство", "%(name)s is requesting verification": "%(name)s тражи верификацију", - "Trust": "Веруј", "Only continue if you trust the owner of the server.": "Наставите само ако верујете власнику сервера.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ова радња захтева приступ серверу идентитета за валидацију адресе е-поште или телефонског броја али изгледа да сервер нема „услове услуге“.", "The server does not support the room version specified.": "Сервер не подржава наведену верзију собе.", @@ -1119,7 +1107,6 @@ "Please enter verification code sent via text.": "Унесите верификациони код послат путем текста.", "Unable to verify phone number.": "Није могуће верификовати број телефона.", "Unable to share phone number": "Није могуће делити телефонски број", - "Share": "Објави", "Complete": "Заврши", "You'll need to authenticate with the server to confirm the upgrade.": "Да бисте потврдили надоградњу, мораћете да се пријавите на серверу.", "Restore": "Врати", @@ -1340,6 +1327,19 @@ "report_content": "Пријави садржај", "save": "Сачувај", "start_chat": "Започни разговор", - "view_source": "Погледај извор" + "view_source": "Погледај извор", + "reject": "Одбаци", + "confirm": "Потврди", + "dismiss": "Одбаци", + "trust": "Веруј", + "cancel": "Откажи", + "join": "Приступи", + "close": "Затвори", + "accept": "Прихвати", + "update": "Ажурирај", + "upload": "Отпреми", + "share": "Објави", + "skip": "Прескочи", + "logout": "Одјава" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index bb28dd13129..89948c6c80c 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -4,7 +4,6 @@ "Add Email Address": "Dodajte adresu elektronske pošte", "Failed to verify email address: make sure you clicked the link in the email": "Neuspela provera adrese elektronske pošte: proverite da li ste kliknuli na link u poruci elektronske pošte", "Add Phone Number": "Dodajte broj telefona", - "Dismiss": "Odbaci", "Your %(brand)s is misconfigured": "Vaš %(brand)s nije dobro podešen", "Chat with %(brand)s Bot": "Ćaskajte sa %(brand)s botom", "Sign In": "Prijavite se", @@ -55,7 +54,6 @@ "The user you called is busy.": "Korisnik kojeg ste zvali je zauzet.", "User Busy": "Korisnik zauzet", "Call Failed": "Poziv nije uspio", - "Trust": "Vjeruj", "Only continue if you trust the owner of the server.": "Produžite samo pod uslovom da vjerujete vlasniku servera.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Ova akcija zahtijeva pristup zadanom serveru za provjeru identiteta radi provjere adrese e-pošte ili telefonskog broja, no server nema nikakve uslove za pružanje usluge.", "Identity server has no terms of service": "Server identiteta nema uslove pružanja usluge", @@ -76,7 +74,6 @@ "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 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": "Potvrdi", "Click the button below to confirm adding this email address.": "Kliknite taster ispod da biste potvrdili dodavanje email adrese.", "Confirm adding email": "Potvrdite dodavanje email adrese", "Single Sign On": "Jedinstvena prijava (SSO)", @@ -96,5 +93,10 @@ "User is already in the room": "Korisnik je već u sobi", "common": { "error": "Greška" + }, + "action": { + "confirm": "Potvrdi", + "dismiss": "Odbaci", + "trust": "Vjeruj" } } diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index a3c9703eada..77ac8b4398f 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -62,12 +62,10 @@ "Failed to unban": "Misslyckades att avbanna", "Failed to verify email address: make sure you clicked the link in the email": "Misslyckades att bekräfta e-postadressen: set till att du klickade på länken i e-postmeddelandet", "Favourite": "Favoritmarkera", - "Accept": "Godkänn", "Add": "Lägg till", "Admin Tools": "Admin-verktyg", "Can't connect to homeserver - please check your connectivity, ensure your homeserver's SSL certificate is trusted, and that a browser extension is not blocking requests.": "Kan inte ansluta till hemservern - vänligen kolla din nätverksanslutning, se till att hemserverns SSL-certifikat är betrott, och att inget webbläsartillägg blockerar förfrågningar.", "%(senderName)s changed the power level of %(powerLevelDiffText)s.": "%(senderName)s ändrade behörighetsnivå för %(powerLevelDiffText)s.", - "Close": "Stäng", "Enter passphrase": "Ange lösenfras", "Failure to create room": "Misslyckades att skapa rummet", "Favourites": "Favoriter", @@ -90,7 +88,6 @@ "Join Room": "Gå med i rum", "Jump to first unread message.": "Hoppa till första olästa meddelandet.", "Labs": "Experiment", - "Logout": "Logga ut", "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 joined.": "%(senderName)s gjorde framtida rumshistorik synligt för alla rumsmedlemmar fr.o.m. att de gick med som medlem.", @@ -142,9 +139,7 @@ "Sign out": "Logga ut", "Someone": "Någon", "Start authentication": "Starta autentisering", - "Cancel": "Avbryt", "Create new room": "Skapa nytt rum", - "Dismiss": "Avvisa", "powered by Matrix": "drivs av Matrix", "unknown error code": "okänd felkod", "Delete widget": "Radera widget", @@ -194,7 +189,6 @@ "Notification targets": "Aviseringsmål", "Today": "idag", "Friday": "fredag", - "Update": "Uppdatera", "What's New": "Vad är nytt", "On": "På", "Changelog": "Ändringslogg", @@ -214,7 +208,6 @@ "Tuesday": "tisdag", "Search…": "Sök…", "Saturday": "lördag", - "Reject": "Avböj", "Monday": "måndag", "Collecting logs": "Samlar in loggar", "All Rooms": "Alla rum", @@ -322,7 +315,6 @@ "Verification Pending": "Avvaktar verifiering", "Unable to add email address": "Kunde inte lägga till e-postadress", "Unable to verify email address.": "Kunde inte verifiera e-postadressen.", - "Skip": "Hoppa över", "You must register to use this functionality": "Du måste registrera dig för att använda den här funktionaliteten", "You must join the room to see its files": "Du måste gå med i rummet för att se tillhörande filer", "Start automatically after system login": "Starta automatiskt vid systeminloggning", @@ -696,7 +688,6 @@ "Change": "Ändra", "Email (optional)": "E-post (valfritt)", "Phone (optional)": "Telefon (valfritt)", - "Confirm": "Bekräfta", "Join millions for free on the largest public server": "Gå med miljontals användare gratis på den största publika servern", "Other": "Annat", "Your password has been reset.": "Ditt lösenord har återställts.", @@ -773,7 +764,6 @@ "Could not load user profile": "Kunde inte ladda användarprofil", "The file '%(fileName)s' failed to upload.": "Filen '%(fileName)s' kunde inte laddas upp.", "Composer": "Meddelandefält", - "Join": "Gå med", "Power level": "Behörighetsnivå", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "Kunde inte hitta profiler för de Matrix-ID:n som listas nedan - vill du bjuda in dem ändå?", "GitHub issue": "GitHub-ärende", @@ -796,7 +786,6 @@ "Your browser likely removed this data when running low on disk space.": "Din webbläsare har troligen tagit bort dessa data när det blev ont om diskutrymme.", "Upload files (%(current)s of %(total)s)": "Ladda upp filer (%(current)s av %(total)s)", "Upload files": "Ladda upp filer", - "Upload": "Ladda upp", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Den här filen är för stor för att ladda upp. Filstorleksgränsen är %(limit)s men den här filen är %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Dessa filer är för stora för att laddas upp. Filstorleksgränsen är %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Vissa filer är för stora för att laddas upp. Filstorleksgränsen är %(limit)s.", @@ -854,12 +843,10 @@ "Uploaded sound": "Uppladdat ljud", "Sounds": "Ljud", "Notification sound": "Aviseringsljud", - "Reset": "Återställ", "Set a new custom sound": "Ställ in ett nytt anpassat ljud", "Upgrade the room": "Uppgradera rummet", "Enable room encryption": "Aktivera rumskryptering", "Revoke": "Återkalla", - "Share": "Dela", "Discovery options will appear once you have added an email above.": "Upptäcktsalternativ kommer att visas när du har lagt till en e-postadress ovan.", "Remove %(email)s?": "Ta bort %(email)s?", "Remove %(phone)s?": "Ta bort %(phone)s?", @@ -903,7 +890,6 @@ "Add Phone Number": "Lägg till telefonnummer", "Identity server has no terms of service": "Identitetsservern har inga användarvillkor", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Den här åtgärden kräver åtkomst till standardidentitetsservern för att validera en e-postadress eller ett telefonnummer, men servern har inga användarvillkor.", - "Trust": "Förtroende", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "Show previews/thumbnails for images": "Visa förhandsgranskning/miniatyr för bilder", "Custom (%(level)s)": "Anpassad (%(level)s)", @@ -1132,8 +1118,6 @@ "Contact your server admin.": "Kontakta din serveradministratör.", "Ok": "OK", "Set up": "Sätt upp", - "Upgrade": "Uppgradera", - "Verify": "Verifiera", "Other users may not trust it": "Andra användare kanske inta litar på den", "New login. Was this you?": "Ny inloggning. Var det du?", "You joined the call": "Du gick med i samtalet", @@ -1539,7 +1523,6 @@ "Create a Group Chat": "Skapa en gruppchatt", "Explore rooms": "Utforska rum", "%(creator)s created and configured the room.": "%(creator)s skapade och konfigurerade rummet.", - "View": "Visa", "You have %(count)s unread notifications in a prior version of this room.": { "other": "Du har %(count)s olästa aviseringar i en tidigare version av det här rummet.", "one": "Du har %(count)s oläst avisering i en tidigare version av det här rummet." @@ -2211,7 +2194,6 @@ "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", - "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", "This homeserver has been blocked by its administrator.": "Hemservern har blockerats av sin administratör.", "You're already in a call with this person.": "Du är redan i ett samtal med den här personen.", @@ -2428,8 +2410,6 @@ "Error saving notification preferences": "Fel vid sparning av aviseringsinställningar", "Messages containing keywords": "Meddelanden som innehåller nyckelord", "Message bubbles": "Meddelandebubblor", - "Collapse": "Kollapsa", - "Expand": "Expandera", "Recommended for public spaces.": "Rekommenderas för offentliga utrymmen.", "Allow people to preview your space before they join.": "Låt personer förhandsgranska ditt utrymme innan de går med.", "Preview Space": "Förhandsgranska utrymme", @@ -2646,7 +2626,6 @@ "Select from the options below to export chats from your timeline": "Välj från alternativen nedan för att exportera chattar från din tidslinje", "Export Chat": "Exportera chatt", "Exporting your data": "Exporterar din data", - "Stop": "Stoppa", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Är du säker på att du vill sluta exportera din data? Om du gör det så behöver du börja om.", "Your export was successful. Find it in your Downloads folder.": "Din export lyckades. Hitta den i din hämtningsmapp.", "The export was cancelled successfully": "Exporten avbröts framgångsrikt", @@ -2794,7 +2773,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Väntar på att du ska verifiera på din andra enhet, %(deviceName)s (%(deviceId)s)…", "Verify this device by confirming the following number appears on its screen.": "Verifiera den här enheten genom att bekräfta att det följande numret visas på dess skärm.", "Confirm the emoji below are displayed on both devices, in the same order:": "Bekräfta att emojierna nedan visas på båda enheterna i samma ordning:", - "Call": "Ring", "Dial": "Slå nummer", "Automatically send debug logs on decryption errors": "Skicka automatiskt avbuggningsloggar vid avkrypteringsfel", "Show join/leave messages (invites/removes/bans unaffected)": "Visa gå med/lämna-meddelanden (inbjudningar/borttagningar/banningar påverkas inte)", @@ -3403,7 +3381,6 @@ "Enable notifications for this device": "Aktivera aviseringar för den här enheten", "Turn off to disable notifications on all your devices and sessions": "Stäng av för att inaktivera aviseringar för alla dina enheter och sessioner", "Enable notifications for this account": "Aktivera aviseringar för det här kontot", - "Apply": "Tillämpa", "Search users in this room…": "Sök efter användare i det här rummet…", "Give one or multiple users in this room more privileges": "Ge en eller flera användare i det här rummet fler privilegier", "Add privileged users": "Lägg till privilegierade användare", @@ -3722,7 +3699,6 @@ "Starting export process…": "Startar exportprocessen …", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Användaren (%(user)s) blev inte inbjuden till %(roomId)s, men inget fel gavs av inbjudningsverktyget", "Use your account to continue.": "Använd ditt konto för att fortsätta.", - "Reload": "Ladda om", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Det här kan orsakas av att ha appen öppen i flera flikar eller av rensning av webbläsardata.", "Database unexpectedly closed": "Databasen stängdes oväntat", "Yes, it was me": "Ja, det var jag", @@ -3890,7 +3866,6 @@ "disable": "Inaktivera", "done": "Klar", "edit": "Ändra", - "enable": "Aktivera", "forgot_password": "Glömt lösenordet?", "forward": "Vidarebefordra", "invite": "Bjud in", @@ -3911,9 +3886,33 @@ "start": "Starta", "start_chat": "Starta chatt", "view_source": "Visa källa", - "yes": "Ja" + "yes": "Ja", + "reject": "Avböj", + "confirm": "Bekräfta", + "dismiss": "Avvisa", + "trust": "Förtroende", + "reload": "Ladda om", + "cancel": "Avbryt", + "stop": "Stoppa", + "join": "Gå med", + "close": "Stäng", + "accept": "Godkänn", + "upgrade": "Uppgradera", + "verify": "Verifiera", + "update": "Uppdatera", + "call": "Ring", + "delete": "Radera", + "upload": "Ladda upp", + "collapse": "Kollapsa", + "apply": "Tillämpa", + "reset": "Återställ", + "share": "Dela", + "skip": "Hoppa över", + "logout": "Logga ut", + "view": "Visa", + "expand": "Expandera" }, "a11y": { "user_menu": "Användarmeny" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json index dce3587762a..938fd80d132 100644 --- a/src/i18n/strings/ta.json +++ b/src/i18n/strings/ta.json @@ -1,13 +1,10 @@ { "All messages": "அனைத்து செய்திகள்", "All Rooms": "அனைத்து அறைகள்", - "Cancel": "ரத்து", "Changelog": "மாற்றப்பதிவு", - "Close": "மூடு", "Collecting app version information": "செயலியின் பதிப்பு தகவல்கள் சேகரிக்கப்படுகிறது", "Collecting logs": "பதிவுகள் சேகரிக்கப்படுகிறது", "Call invitation": "அழைப்பிற்கான விண்ணப்பம்", - "Dismiss": "நீக்கு", "Failed to add tag %(tagName)s to room": "%(tagName)s எனும் குறிச்சொல்லை அறையில் சேர்ப்பதில் தோல்வி", "Failed to forget room %(errCode)s": "அறையை மறப்பதில் தோல்வி %(errCode)s", "Favourite": "விருப்பமான", @@ -25,7 +22,6 @@ "On": "மீது", "Operation failed": "செயல்பாடு தோல்வியுற்றது", "powered by Matrix": "Matrix-ஆல் ஆனது", - "Reject": "நிராகரி", "Resend": "மீண்டும் அனுப்பு", "Search": "தேடு", "Search…": "தேடு…", @@ -36,7 +32,6 @@ "Unavailable": "இல்லை", "unknown error code": "தெரியாத பிழை குறி", "Unnamed room": "பெயரிடப்படாத அறை", - "Update": "புதுப்பி", "What's New": "புதிதாக வந்தவை", "What's new?": "புதிதாக என்ன?", "Waiting for response from server": "வழங்கியின் பதிலுக்காக காத்திருக்கிறது", @@ -127,7 +122,6 @@ "Confirm adding phone number": "தொலைபேசி எண்ணைச் சேர்ப்பதை உறுதிப்படுத்தவும்", "Confirm adding this phone number by using Single Sign On to prove your identity.": "உங்கள் அடையாளத்தை நிரூபிக்க ஒற்றை உள்நுழைவைப் பயன்படுத்தி இந்த தொலைபேசி எண்ணைச் சேர்ப்பதை உறுதிப்படுத்தவும்.", "Add Email Address": "மின்னஞ்சல் முகவரியை சேர்க்கவும்", - "Confirm": "உறுதிப்படுத்தவும்", "Click the button below to confirm adding this email address.": "இந்த மின்னஞ்சல் முகவரியை சேர்ப்பதை உறுதிப்படுத்த கீழே உள்ள பொத்தானை அழுத்தவும்.", "Confirm adding email": "மின்னஞ்சலை சேர்ப்பதை உறுதிப்படுத்தவும்", "Single Sign On": "ஒற்றை உள்நுழைவு", @@ -147,6 +141,12 @@ "ok": "சரி", "quote": "மேற்கோள்", "remove": "நீக்கு", - "view_source": "மூலத்தைக் காட்டு" + "view_source": "மூலத்தைக் காட்டு", + "reject": "நிராகரி", + "confirm": "உறுதிப்படுத்தவும்", + "dismiss": "நீக்கு", + "cancel": "ரத்து", + "close": "மூடு", + "update": "புதுப்பி" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/te.json b/src/i18n/strings/te.json index 4ae0a18ebd6..97548caff4e 100644 --- a/src/i18n/strings/te.json +++ b/src/i18n/strings/te.json @@ -1,5 +1,4 @@ { - "Accept": "అంగీకరించు", "Account": "ఖాతా", "Add": "చేర్చు", "Admin": "అడ్మిన్", @@ -29,7 +28,6 @@ "Changes your display nickname": "మీ ప్రదర్శన మారుపేరుని మారుస్తుంది", "You cannot place a call with yourself.": "మీకు మీరే కాల్ చేయలేరు.", "You need to be able to invite users to do that.": "మీరు దీన్ని చేయడానికి వినియోగదారులను ఆహ్వానించగలరు.", - "Close": "ముసివెయండి", "Command error": "కమాండ్ లోపం", "Commands": "కమ్మండ్స్", "Confirm password": "పాస్వర్డ్ని నిర్ధారించండి", @@ -68,14 +66,12 @@ "New passwords don't match": "కొత్త పాస్వర్డ్లు సరిపోలడం లేదు", "Connectivity to the server has been lost.": "సెర్వెర్ కనెక్టివిటీని కోల్పోయారు.", "Sent messages will be stored until your connection has returned.": "మీ కనెక్షన్ తిరిగి వచ్చే వరకు పంపిన సందేశాలు నిల్వ చేయబడతాయి.", - "Cancel": "రద్దు", "Failed to forget room %(errCode)s": "గది మర్చిపోవడం విఫలమైంది %(errCode)s", "Incorrect verification code": "ధృవీకరణ కోడ్ సరిగా లెదు", "unknown error code": "తెలియని కోడ్ లోపం", "Please enter the code it contains:": "దయచేసి దాన్ని కలిగి ఉన్న కోడ్ను నమోదు చేయండి:", "Unable to restore session": "సెషన్ను పునరుద్ధరించడానికి సాధ్యపడలేదు", "Create new room": "క్రొత్త గది సృష్టించండి", - "Dismiss": "రద్దుచేసే", "Favourite": "గుర్తుంచు", "Notifications": "ప్రకటనలు", "Operation failed": "కార్యం విఫలమైంది", @@ -97,7 +93,6 @@ "Resend": "మళ్ళి పంపుము", "Collecting app version information": "అనువర్తన సంస్కరణ సమాచారాన్ని సేకరించడం", "Tuesday": "మంగళవారం", - "Reject": "తిరస్కరించు", "Monday": "సోమవారం", "Collecting logs": "నమోదు సేకరించడం", "All Rooms": "అన్ని గదులు", @@ -131,6 +126,11 @@ "continue": "కొనసాగించు", "decline": "డిక్లైన్", "leave": "వదిలి", - "remove": "తొలగించు" + "remove": "తొలగించు", + "reject": "తిరస్కరించు", + "dismiss": "రద్దుచేసే", + "cancel": "రద్దు", + "close": "ముసివెయండి", + "accept": "అంగీకరించు" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index be60d706a7e..7259fb972f5 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -17,8 +17,6 @@ "Reason": "เหตุผล", "Register": "ลงทะเบียน", "%(brand)s version:": "เวอร์ชัน %(brand)s:", - "Cancel": "ยกเลิก", - "Dismiss": "ปิด", "Notifications": "การแจ้งเตือน", "Operation failed": "การดำเนินการล้มเหลว", "powered by Matrix": "ใช้เทคโนโลยี Matrix", @@ -83,7 +81,6 @@ "Join Room": "เข้าร่วมห้อง", "Jump to first unread message.": "ข้ามไปยังข้อความแรกที่ยังไม่ได้อ่าน", "Labs": "ห้องทดลอง", - "Logout": "ออกจากระบบ", "Missing user_id in request": "ไม่พบ user_id ในคำขอ", "Moderator": "ผู้ช่วยดูแล", "New passwords don't match": "รหัสผ่านใหม่ไม่ตรงกัน", @@ -175,8 +172,6 @@ "Unknown error": "ข้อผิดพลาดที่ไม่รู้จัก", "Incorrect password": "รหัสผ่านไม่ถูกต้อง", "Add": "เพิ่ม", - "Accept": "ยอมรับ", - "Close": "ปิด", "Home": "เมนูหลัก", "Unnamed Room": "ห้องที่ยังไม่ได้ตั้งชื่อ", "(~%(count)s results)": { @@ -201,7 +196,6 @@ "Notification targets": "เป้าหมายการแจ้งเตือน", "Today": "วันนี้", "Friday": "วันศุกร์", - "Update": "อัปเดต", "What's New": "มีอะไรใหม่", "On": "เปิด", "Changelog": "บันทึกการเปลี่ยนแปลง", @@ -222,7 +216,6 @@ "Search…": "ค้นหา…", "Unnamed room": "ห้องที่ไม่มีชื่อ", "Saturday": "วันเสาร์", - "Reject": "ปฏิเสธ", "Monday": "วันจันทร์", "Collecting logs": "กำลังรวบรวมล็อก", "All Rooms": "ทุกห้อง", @@ -245,7 +238,6 @@ "Sign In": "ลงชื่อเข้า", "Create Account": "สร้างบัญชี", "Add Email Address": "เพิ่มที่อยู่อีเมล", - "Confirm": "ยืนยัน", "Already in call": "อยู่ในสายแล้ว", "No other application is using the webcam": "ไม่มีแอปพลิเคชันอื่นใดที่ใช้กล้อง", "Permission is granted to use the webcam": "ได้รับอนุญาตให้ใช้กล้อง", @@ -261,7 +253,6 @@ "The user you called is busy.": "ผู้ใช้ที่คุณโทรหาไม่ว่าง.", "User Busy": "ผู้ใช้ไม่ว่าง", "Call Failed": "การโทรล้มเหลว", - "Trust": "ไว้ใจ", "Only continue if you trust the owner of the server.": "ดำเนินการต่อหากคุณไว้วางใจเจ้าของเซิร์ฟเวอร์เท่านั้น.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "การดำเนินการนี้จำเป็นต้องเข้าถึงเซิร์ฟเวอร์ identity เริ่มต้น เพื่อตรวจสอบที่อยู่อีเมลหรือหมายเลขโทรศัพท์ แต่เซิร์ฟเวอร์ไม่มีข้อกำหนดในการให้บริการใดๆ.", "Identity server has no terms of service": "เซิร์ฟเวอร์ประจำตัวไม่มีข้อกำหนดในการให้บริการ", @@ -445,13 +436,9 @@ "Download": "ดาวน์โหลด", "collapse": "ยุบ", "Ignore": "เพิกเฉย", - "Skip": "ข้าม", "Idle": "ว่าง", "Online": "ออนไลน์", - "Delete": "ลบ", - "Upload": "อัปโหลด", "Your email address does not appear to be associated with a Matrix ID on this homeserver.": "ที่อยู่อีเมลของคุณไม่ได้เชื่อมโยงกับ Matrix ID บนโฮมเซิร์ฟเวอร์นี้", - "Join": "เข้าร่วม", "Timeline": "เส้นเวลา", "common": { "encryption_enabled": "เปิดใช้งานการเข้ารหัส", @@ -480,6 +467,19 @@ "retry": "ลองใหม่", "save": "บันทึก", "start_chat": "เริ่มแชท", - "view_source": "ดูซอร์ส" + "view_source": "ดูซอร์ส", + "reject": "ปฏิเสธ", + "confirm": "ยืนยัน", + "dismiss": "ปิด", + "trust": "ไว้ใจ", + "cancel": "ยกเลิก", + "join": "เข้าร่วม", + "close": "ปิด", + "accept": "ยอมรับ", + "update": "อัปเดต", + "delete": "ลบ", + "upload": "อัปโหลด", + "skip": "ข้าม", + "logout": "ออกจากระบบ" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index e710a35ffb4..1272717fa58 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -1,5 +1,4 @@ { - "Accept": "Kabul Et", "Account": "Hesap", "Add": "Ekle", "Admin": "Admin", @@ -36,7 +35,6 @@ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s oda adını kaldırdı.", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s konuyu \"%(topic)s\" olarak değiştirdi.", "Changes your display nickname": "Görünen takma adınızı değiştirir", - "Close": "Kapat", "Command error": "Komut Hatası", "Commands": "Komutlar", "Confirm password": "Şifreyi Onayla", @@ -90,7 +88,6 @@ "Join Room": "Odaya Katıl", "Jump to first unread message.": "İlk okunmamış iletiye atla.", "Labs": "Laboratuarlar", - "Logout": "Çıkış Yap", "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 joined.": "%(senderName)s gelecekte oda geçmişini görünür yaptı Tüm oda üyeleri , katıldıkları noktalardan.", @@ -217,7 +214,6 @@ "one": "(~%(count)s sonuç)", "other": "(~%(count)s sonuçlar)" }, - "Cancel": "İptal", "Create new room": "Yeni Oda Oluştur", "New Password": "Yeni Şifre", "Start automatically after system login": "Sisteme giriş yaptıktan sonra otomatik başlat", @@ -239,7 +235,6 @@ "Incorrect password": "Yanlış Şifre", "Unable to restore session": "Oturum geri yüklenemiyor", "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.": "Eğer daha önce %(brand)s'un daha yeni bir versiyonunu kullandıysanız , oturumunuz bu sürümle uyumsuz olabilir . Bu pencereyi kapatın ve daha yeni sürüme geri dönün.", - "Dismiss": "Kapat", "Token incorrect": "Belirteç(Token) hatalı", "Please enter the code it contains:": "Lütfen içerdiği kodu girin:", "powered by Matrix": "Matrix'den besleniyor", @@ -260,13 +255,11 @@ "Authentication check failed: incorrect password?": "Kimlik doğrulama denetimi başarısız oldu : yanlış şifre ?", "Do you want to set an email address?": "Bir e-posta adresi ayarlamak ister misiniz ?", "This will allow you to reset your password and receive notifications.": "Bu şifrenizi sıfırlamanızı ve bildirimler almanızı sağlayacak.", - "Skip": "Atla", "Sunday": "Pazar", "Messages sent by bot": "Bot tarafından gönderilen mesajlar", "Notification targets": "Bildirim hedefleri", "Today": "Bugün", "Friday": "Cuma", - "Update": "Güncelleştirme", "What's New": "Yenilikler", "On": "Açık", "Changelog": "Değişiklikler", @@ -282,7 +275,6 @@ "Tuesday": "Salı", "Unnamed room": "İsimsiz oda", "Saturday": "Cumartesi", - "Reject": "Reddet", "Monday": "Pazartesi", "Collecting logs": "Kayıtlar toplanıyor", "All Rooms": "Tüm Odalar", @@ -311,7 +303,6 @@ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s%(monthName)s%(day)s%(fullYear)s", "Identity server has no terms of service": "Kimlik sunucusu hizmet kurallarına sahip değil", "Only continue if you trust the owner of the server.": "Sadece sunucunun sahibine güveniyorsanız devam edin.", - "Trust": "Güven", "Unable to load! Check your network connectivity and try again.": "Yüklenemiyor! Ağ bağlantınızı kontrol edin ve yeniden deneyin.", "Restricted": "Sınırlı", "Missing roomId.": "roomId eksik.", @@ -348,7 +339,6 @@ "%(brand)s URL": "%(brand)s Linki", "Room ID": "Oda ID", "More options": "Daha fazla seçenek", - "Join": "Katıl", "expand": "genişlet", "Rotate Left": "Sola Döndür", "Rotate Right": "Sağa Döndür", @@ -443,7 +433,6 @@ "Upgrade this room to version %(version)s": "Bu odayı %(version)s versiyonuna yükselt", "Upgrade Room Version": "Oda Sürümünü Yükselt", "Upgrade private room": "Özel oda güncelle", - "Upgrade": "Yükselt", "Sign out and remove encryption keys?": "Oturumu kapat ve şifreleme anahtarlarını sil?", "Clear Storage and Sign Out": "Depolamayı temizle ve Oturumu Kapat", "Send Logs": "Logları Gönder", @@ -482,13 +471,11 @@ "Enter phone number (required on this homeserver)": "Telefon numarası gir ( bu ana sunucuda gerekli)", "Enter username": "Kullanıcı adı gir", "Email (optional)": "E-posta (opsiyonel)", - "Confirm": "Doğrula", "Phone (optional)": "Telefon (opsiyonel)", "Couldn't load page": "Sayfa yüklenemiyor", "Description": "Tanım", "Old cryptography data detected": "Eski kriptolama verisi tespit edildi", "Verification Request": "Doğrulama Talebi", - "View": "Görüntüle", "Jump to first unread room.": "Okunmamış ilk odaya zıpla.", "Jump to first invite.": "İlk davete zıpla.", "Add room": "Oda ekle", @@ -570,7 +557,6 @@ "Headphones": "Kulaklık", "Folder": "Klasör", "Accept to continue:": "Devam etmek için i kabul ediniz:", - "Upload": "Yükle", "not found": "bulunamadı", "in account data": "hesap verisinde", "Cannot connect to integration manager": "Entegrasyon yöneticisine bağlanılamadı", @@ -665,7 +651,6 @@ "Uploaded sound": "Yüklenen ses", "Sounds": "Sesler", "Notification sound": "Bildirim sesi", - "Reset": "Sıfırla", "Browse": "Gözat", "Change room name": "Oda adını değiştir", "Change history visibility": "Geçmiş görünürlüğünü değiştir", @@ -691,7 +676,6 @@ "Unable to share email address": "E-posta adresi paylaşılamıyor", "Your email address hasn't been verified yet": "E-posta adresiniz henüz doğrulanmadı", "Verify the link in your inbox": "Gelen kutunuzdaki linki doğrulayın", - "Share": "Paylaş", "Unable to share phone number": "Telefon numarası paylaşılamıyor", "Unable to verify phone number.": "Telefon numarası doğrulanamıyor.", "Please enter verification code sent via text.": "Lütfen mesajla gönderilen doğrulama kodunu girin.", @@ -772,7 +756,6 @@ "other": "%(count)s doğrulanmış oturum", "one": "1 doğrulanmış oturum" }, - "Verify": "Doğrula", "Message Actions": "Mesaj Eylemleri", "Show image": "Resim göster", "You verified %(name)s": "%(name)s yı doğruladınız", @@ -2010,7 +1993,6 @@ "disable": "Devre dışı bırak", "done": "Bitti", "edit": "Düzenle", - "enable": "Aç", "invite": "Davet", "invites_list": "Davetler", "leave": "Ayrıl", @@ -2028,9 +2010,26 @@ "start": "Başlat", "start_chat": "Sohbet Başlat", "view_source": "Kaynağı Görüntüle", - "yes": "Evet" + "yes": "Evet", + "reject": "Reddet", + "confirm": "Doğrula", + "dismiss": "Kapat", + "trust": "Güven", + "cancel": "İptal", + "join": "Katıl", + "close": "Kapat", + "accept": "Kabul Et", + "upgrade": "Yükselt", + "verify": "Doğrula", + "update": "Güncelleştirme", + "upload": "Yükle", + "reset": "Sıfırla", + "share": "Paylaş", + "skip": "Atla", + "logout": "Çıkış Yap", + "view": "Görüntüle" }, "a11y": { "user_menu": "Kullanıcı menüsü" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/tzm.json b/src/i18n/strings/tzm.json index 06a6a105c1f..fe35f1f0f98 100644 --- a/src/i18n/strings/tzm.json +++ b/src/i18n/strings/tzm.json @@ -3,7 +3,6 @@ "Other": "Yaḍn", "Actions": "Tugawin", "Messages": "Tuzinin", - "Cancel": "Sser", "Create Account": "senflul amiḍan", "Sign In": "Kcem", "Dec": "Duj", @@ -23,7 +22,6 @@ "Tue": "Asn", "Mon": "Ayn", "Sun": "Asa", - "Dismiss": "Nexxel", "Add Phone Number": "Rnu uṭṭun n utilifun", "Add Email Address": "Rnu tasna imayl", "Permissions": "Tisirag", @@ -40,8 +38,6 @@ "Butterfly": "Aferteṭṭu", "Rooster": "Ayaẓiḍ", "Panda": "Apanda", - "Upgrade": "Leqqem", - "Confirm": "Sentem", "Brazil": "Brazil", "Bolivia": "Bulivya", "Bhutan": "Buṭan", @@ -64,24 +60,20 @@ "Calls": "Iɣuṛiten", "Emoji": "Imuji", "Afghanistan": "Afɣanistan", - "Logout": "Ffeɣ", "Phone": "Atilifun", "Email": "Imayl", "Go": "Ddu", "Send": "Azen", "Name": "Isem", "Flags": "Icenyalen", - "Join": "Lkem", "edited": "infel", "Copied!": "inɣel!", "Home": "Asnubeg", "Search…": "Arezzu…", "A-Z": "A-Ẓ", - "Reject": "Agy", "Re-join": "als-lkem", "Search": "Rzu", "%(duration)sd": "%(duration)sas", - "Share": "Bḍu", "Camera": "Takamiṛa", "Microphone": "Amikṛu", "Add": "Rnu", @@ -113,7 +105,6 @@ "Rabbit": "Agnin", "Elephant": "Ilew", "Pig": "Ilef", - "Close": "Rgel", "Horse": "Ayyis", "Lion": "Izem", "Cat": "Amuc", @@ -140,6 +131,15 @@ "remove": "KKes", "reply": "Rar", "save": "Ḥḍu", - "yes": "Yah" + "yes": "Yah", + "reject": "Agy", + "confirm": "Sentem", + "dismiss": "Nexxel", + "cancel": "Sser", + "join": "Lkem", + "close": "Rgel", + "upgrade": "Leqqem", + "share": "Bḍu", + "logout": "Ffeɣ" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index 307863aa2d1..b6238f2c0ba 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -1,8 +1,5 @@ { - "Cancel": "Скасувати", - "Close": "Закрити", "Create new room": "Створити нову кімнату", - "Dismiss": "Відхилити", "Failed to forget room %(errCode)s": "Не вдалось видалити кімнату %(errCode)s", "Favourite": "Улюблені", "Notifications": "Сповіщення", @@ -11,7 +8,6 @@ "Search": "Пошук", "unknown error code": "невідомий код помилки", "Failed to change password. Is your password correct?": "Не вдалось змінити пароль. Ви впевнені, що пароль введено правильно?", - "Accept": "Погодитись", "Account": "Обліковий запис", "Add": "Додати", "Admin": "Адміністратор", @@ -59,7 +55,6 @@ "Notification targets": "Цілі сповіщень", "Today": "Сьогодні", "Friday": "П'ятниця", - "Update": "Оновити", "What's New": "Що нового", "On": "Увімкнено", "Changelog": "Журнал змін", @@ -82,7 +77,6 @@ "Preparing to send logs": "Приготування до надсилання журланла", "Unnamed room": "Неназвана кімната", "Saturday": "Субота", - "Reject": "Відмовитись", "Monday": "Понеділок", "Toolbox": "Панель інструментів", "Collecting logs": "Збір журналів", @@ -248,7 +242,6 @@ "Identity server has no terms of service": "Сервер ідентифікації не має умов надання послуг", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Щоб підтвердити адресу е-пошти або телефон ця дія потребує доступу до типового серверу ідентифікації , але сервер не має жодних умов надання послуг.", "Only continue if you trust the owner of the server.": "Продовжуйте лише якщо довіряєте власнику сервера.", - "Trust": "Довіра", "Unable to load! Check your network connectivity and try again.": "Завантаження неможливе! Перевірте інтернет-зʼєднання та спробуйте ще.", "Messages": "Повідомлення", "Actions": "Дії", @@ -272,7 +265,6 @@ "Sends the given message coloured as a rainbow": "Надсилає вказане повідомлення, розфарбоване веселкою", "Your %(brand)s is misconfigured": "Ваш %(brand)s налаштовано неправильно", "Join the discussion": "Приєднатися до обговорення", - "Upload": "Вивантажити", "Send an encrypted message…": "Надіслати зашифроване повідомлення…", "The conversation continues here.": "Розмова триває тут.", "This room has been replaced and is no longer active.": "Ця кімната була замінена і не є активною.", @@ -317,7 +309,6 @@ "Single Sign On": "Єдиний вхід", "Confirm adding email": "Підтвердити додавання е-пошти", "Click the button below to confirm adding this email address.": "Клацніть на кнопку внизу, щоб підтвердити додавання цієї адреси е-пошти.", - "Confirm": "Підтвердити", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Підтвердьте додавання цього телефонного номера за допомогоє єдиного входу, щоб довести вашу справжність.", "Confirm adding phone number": "Підтвердьте додавання номера телефону", "Click the button below to confirm adding this phone number.": "Клацніть на кнопку внизу, щоб підтвердити додавання цього номера телефону.", @@ -331,7 +322,6 @@ "Sign In": "Увійти", "Later": "Пізніше", "Review": "Переглянути", - "Verify": "Звірити", "Language and region": "Мова та регіон", "Account management": "Керування обліковим записом", "Deactivate Account": "Деактивувати обліковий запис", @@ -514,7 +504,6 @@ "Ok": "Гаразд", "Encryption upgrade available": "Доступне поліпшене шифрування", "Set up": "Налаштувати", - "Upgrade": "Поліпшити", "Other users may not trust it": "Інші користувачі можуть не довіряти цьому", "New login. Was this you?": "Новий вхід. Це були ви?", "Guest": "Гість", @@ -579,7 +568,6 @@ "Room list": "Перелік кімнат", "Composer": "Редактор", "Security & Privacy": "Безпека й приватність", - "Skip": "Пропустити", "Appearance Settings only affect this %(brand)s session.": "Налаштування вигляду впливають тільки на цей сеанс %(brand)s.", "Error changing power level requirement": "Помилка під час зміни вимог до рівня повноважень", "An error occurred changing the room's power level requirements. Ensure you have sufficient permissions and try again.": "Під час зміни вимог рівня повноважень кімнати трапилась помилка. Переконайтесь, що ви маєте необхідні дозволи і спробуйте ще раз.", @@ -840,7 +828,6 @@ "Show advanced": "Показати розширені", "Review terms and conditions": "Переглянути умови користування", "Old cryptography data detected": "Виявлено старі криптографічні дані", - "Logout": "Вийти", "If you've joined lots of rooms, this might take a while": "Якщо ви приєднались до багатьох кімнат, це може тривати деякий час", "Create account": "Створити обліковий запис", "Cancel autocomplete": "Скасувати самодоповнення", @@ -1406,7 +1393,6 @@ "Share entire screen": "Поділитися всім екраном", "Any of the following data may be shared:": "Можна поділитися будь-якими з цих даних:", "Unable to share phone number": "Не вдалося надіслати телефонний номер", - "Share": "Поділитись", "Unable to share email address": "Не вдалося надіслати адресу е-пошти", "Share invite link": "Надіслати запрошувальне посилання", "%(sharerName)s is presenting": "%(sharerName)s показує", @@ -1644,7 +1630,6 @@ "Suggested": "Пропоновано", "This room is suggested as a good one to join": "Ця кімната пропонується як хороша для приєднання", "You don't have permission": "Ви не маєте дозволу", - "View": "Перегляд", "You can select all or individual messages to retry or delete": "Ви можете вибрати всі або окремі повідомлення, щоб повторити спробу або видалити", "Retry all": "Повторити надсилання всіх", "Delete all": "Видалити всі", @@ -1712,7 +1697,6 @@ "Master private key:": "Головний приватний ключ:", "not found in storage": "не знайдено у сховищі", "in secret storage": "у таємному сховищі", - "Reset": "Скинути", "Cross-signing is not set up.": "Перехресне підписування не налаштовано.", "Cross-signing is ready but keys are not backed up.": "Перехресне підписування готове, але резервна копія ключів не створюється.", "Cross-signing is ready for use.": "Перехресне підписування готове до користування.", @@ -1720,8 +1704,6 @@ "Channel: ": "Канал: ", "Workspace: ": "Робочий простір: ", "Space options": "Параметри простору", - "Collapse": "Згорнути", - "Expand": "Розгорнути", "Recommended for public spaces.": "Рекомендовано для загальнодоступних просторів.", "Allow people to preview your space before they join.": "Дозвольте людям переглядати ваш простір, перш ніж вони приєднаються.", "Preview Space": "Попередній перегляд простору", @@ -1758,7 +1740,6 @@ "Please enter a name for the space": "Будь ласка, введіть назву простору", "Description": "Опис", "Name": "Назва", - "Delete": "Видалити", "Delete avatar": "Видалити аватар", "Your server isn't responding to some requests.": "Ваш сервер не відповідає на деякі запити.", "Select room from the room list": "Вибрати кімнату з переліку", @@ -1847,7 +1828,6 @@ "one": "запрошені", "other": "були запрошені %(count)s разів" }, - "Join": "Приєднатися", "Widget added by": "Вджет додано", "Decrypt %(text)s": "Розшифрувати %(text)s", "Decrypting": "Розшифрування", @@ -2226,7 +2206,6 @@ }, "Loading new room": "Звантаження нової кімнати", "Upgrading room": "Поліпшення кімнати", - "Stop": "Припинити", "Feedback sent": "Відгук надіслано", "Export": "Експортувати", "Link to selected message": "Посилання на вибране повідомлення", @@ -2944,7 +2923,6 @@ "Next room or DM": "Наступна кімната або особисте повідомлення", "Previous unread room or DM": "Попередня непрочитана кімната або особисте повідомлення", "Next unread room or DM": "Наступна непрочитана кімната або особисте повідомлення", - "Call": "Виклик", "Group all your rooms that aren't part of a space in one place.": "Групуйте всі свої кімнати, не приєднані до простору, в одному місці.", "Group all your people in one place.": "Групуйте всіх своїх людей в одному місці.", "Group all your favourite rooms and people in one place.": "Групуйте всі свої улюблені кімнати та людей в одному місці.", @@ -3588,7 +3566,6 @@ "Re-enter email address": "Введіть адресу е-пошти ще раз", "Wrong email address?": "Неправильна адреса електронної пошти?", "Hide notification dot (only display counters badges)": "Сховати крапку сповіщення ( показувати тільки значки лічильників)", - "Apply": "Застосувати", "Search users in this room…": "Пошук користувачів у цій кімнаті…", "Give one or multiple users in this room more privileges": "Надайте одному або кільком користувачам у цій кімнаті більше повноважень", "Add privileged users": "Додати привілейованих користувачів", @@ -3784,7 +3761,6 @@ "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Користувача (%(user)s) не було запрошено до %(roomId)s, але утиліта запрошення не видала жодної помилки", "Mute room": "Вимкнути сповіщення кімнати", "Match default setting": "Збігається з типовим налаштуванням", - "Reload": "Перезавантажити", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Це може бути пов'язано з тим, що застосунок відкрито в кількох вкладках, або з очищенням даних браузера.", "Database unexpectedly closed": "База даних несподівано закрилася", "Start DM anyway": "Усе одно розпочати особисте спілкування", @@ -3950,7 +3926,6 @@ "disable": "Вимкнути", "done": "Готово", "edit": "Змінити", - "enable": "Увімкнути", "forgot_password": "Забули пароль?", "forward": "Переслати", "invite": "Запросити", @@ -3971,9 +3946,33 @@ "start": "Почати", "start_chat": "Почати розмову", "view_source": "Переглянути код", - "yes": "Так" + "yes": "Так", + "reject": "Відмовитись", + "confirm": "Підтвердити", + "dismiss": "Відхилити", + "trust": "Довіра", + "reload": "Перезавантажити", + "cancel": "Скасувати", + "stop": "Припинити", + "join": "Приєднатися", + "close": "Закрити", + "accept": "Погодитись", + "upgrade": "Поліпшити", + "verify": "Звірити", + "update": "Оновити", + "call": "Виклик", + "delete": "Видалити", + "upload": "Вивантажити", + "collapse": "Згорнути", + "apply": "Застосувати", + "reset": "Скинути", + "share": "Поділитись", + "skip": "Пропустити", + "logout": "Вийти", + "view": "Перегляд", + "expand": "Розгорнути" }, "a11y": { "user_menu": "Користувацьке меню" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index b4d22c68138..afa5cf1f572 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -40,7 +40,6 @@ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s", "Unnamed Room": "Phòng Không tên", "Unable to load! Check your network connectivity and try again.": "Không thể tải dữ liệu! Kiểm tra kết nối mạng và thử lại.", - "Dismiss": "Bỏ qua", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s chưa có quyền để gửi thông báo cho bạn - vui lòng kiểm tra thiết lập trình duyệt", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s vẫn chưa được cấp quyền để gửi thông báo - vui lòng thử lại", "Unable to enable Notifications": "Không thể bật thông báo", @@ -220,7 +219,6 @@ "Verified!": "Đã xác thực!", "Play": "Chạy", "Pause": "Tạm dừng", - "Accept": "Đồng ý", "Are you sure?": "Bạn có chắc không?", "Confirm Removal": "Xác nhận Loại bỏ", "Removing…": "Đang xóa…", @@ -237,7 +235,6 @@ "Confirm adding email": "Xác nhận thêm địa chỉ thư điện tử", "Add Phone Number": "Thêm Số Điện Thoại", "Click the button below to confirm adding this phone number.": "Nhấn vào nút dưới đây để xác nhận thêm số điện thoại này.", - "Confirm": "Xác nhận", "No other application is using the webcam": "Không có ứng dụng nào khác đang sử dụng máy ảnh", "Permission is granted to use the webcam": "Đã cấp quyền cho ứng dụng để sử dụng máy ảnh", "A microphone and webcam are plugged in and set up correctly": "Micrô và máy ảnh đã được cắm và thiết lập đúng cách", @@ -414,7 +411,6 @@ "You have no visible notifications.": "Bạn không có thông báo nào hiển thị.", "%(creator)s created and configured the room.": "%(creator)s đã tạo và định cấu hình phòng.", "%(creator)s created this DM.": "%(creator)s đã tạo DM này.", - "Logout": "Đăng xuất", "Verification requested": "Đã yêu cầu xác thực", "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.": "Dữ liệu từ phiên bản cũ hơn của %(brand)s đã được phát hiện. Điều này sẽ khiến mật mã end-to-end bị trục trặc trong phiên bản cũ hơn. Các tin nhắn được mã hóa end-to-end được trao đổi gần đây trong khi sử dụng phiên bản cũ hơn có thể không giải mã được trong phiên bản này. Điều này cũng có thể khiến các tin nhắn được trao đổi với phiên bản này bị lỗi. Nếu bạn gặp sự cố, hãy đăng xuất và đăng nhập lại. Để lưu lại lịch sử tin nhắn, hãy export và re-import các khóa của bạn.", "Old cryptography data detected": "Đã phát hiện dữ liệu mật mã cũ", @@ -716,7 +712,6 @@ "Select from the options below to export chats from your timeline": "Chọn các tùy chọn bên dưới để xuất các cuộc trò chuyện từ dòng thời gian của bạn", "Export Chat": "Xuất trò chuyện", "Exporting your data": "Đang xuất dữ liệu của bạn", - "Stop": "Dừng", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "Bạn có chắc muốn dừng việc xuất dữ liệu của bạn? Nếu bạn làm, bạn sẽ phải bắt đầu lại.", "It's just you at the moment, it will be even better with others.": "Chỉ là bạn hiện tại, sẽ càng tốt hơn với người khác.", "Share %(name)s": "Chia sẻ %(name)s", @@ -758,7 +753,6 @@ "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Thư của bạn không gửi được vì máy chủ(homeserver) đã vượt quá giới hạn tài nguyên. Vui lòng liên hệ với quản trị viên để tiếp tục sử dụng dịch vụ.", "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Tin nhắn của bạn không được gửi vì máy chủ này đã đạt đến Giới hạn Người dùng Hoạt động Hàng tháng. Vui lòng liên hệ với quản trị viên dịch vụ của bạn để tiếp tục sử dụng dịch vụ.", "You can't send any messages until you review and agree to our terms and conditions.": "Bạn không thể gửi bất kỳ tin nhắn nào cho đến khi bạn xem xét và đồng ý với các điều khoản và điều kiện của chúng tôi.", - "View": "Xem", "Your export was successful. Find it in your Downloads folder.": "Việc xuất của bạn đã thành công. Tìm nó ở trong thư mục Tải xuống của bạn.", "The export was cancelled successfully": "Xuất đã được hủy thành công", "Export Successful": "Xuất thành công", @@ -824,7 +818,6 @@ "Clear all data in this session?": "Xóa tất cả dữ liệu trong phiên này?", "Reason (optional)": "Lý do (không bắt buộc)", "You cannot delete this message. (%(code)s)": "Bạn không thể xóa tin nhắn này.  (%(code)s)", - "Skip": "Bỏ qua", "Email address": "Địa chỉ thư điện tử", "Changelog": "Lịch sử thay đổi", "Unavailable": "Không có sẵn", @@ -1066,7 +1059,6 @@ "expand": "mở rộng", "collapse": "thu hẹp", "Please create a new issue on GitHub so that we can investigate this bug.": "Vui lòng tạo một vấn đề mới trên GitHub để chúng tôi có thể điều tra lỗi này.", - "Join": "Tham gia", "Share content": "Chia sẻ nội dung", "Application window": "Cửa sổ ứng dụng", "Share entire screen": "Chia sẻ toàn bộ màn hình", @@ -1310,7 +1302,6 @@ "%(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?", "You're previewing %(roomName)s. Want to join it?": "Bạn đang xem trước %(roomName)s. Bạn muốn tham gia nó?", "Reject & Ignore user": "Từ chối & Bỏ qua người dùng", - "Reject": "Từ chối", " invited you": " đã mời bạn", "Do you want to join %(roomName)s?": "Bạn có muốn tham gia %(roomName)s không?", "Start chatting": "Bắt đầu trò chuyện", @@ -1504,7 +1495,6 @@ "You are not subscribed to any lists": "Bạn chưa đăng ký bất kỳ danh sách nào", "You are currently ignoring:": "Bạn hiện đang bỏ qua:", "You have not ignored anyone.": "Bạn đã không bỏ qua bất cứ ai.", - "Close": "Đóng", "User rules": "Quy tắc người dùng", "Server rules": "Quy tắc máy chủ", "Ban list rules - %(roomName)s": "Quy tắc danh sách cấm - %(roomName)s", @@ -1670,8 +1660,6 @@ "This bridge is managed by .": "Cầu này được quản lý bởi .", "This bridge was provisioned by .": "Cầu này được cung cấp bởi .", "Space options": "Tùy chọn space", - "Collapse": "Tắt đi", - "Expand": "Mở rộng", "Jump to first invite.": "Chuyển đến lời mời đầu tiên.", "Jump to first unread room.": "Chuyển đến phòng chưa đọc đầu tiên.", "Recommended for public spaces.": "Được đề xuất cho space công cộng.", @@ -1720,9 +1708,7 @@ "Search %(spaceName)s": "Tìm kiếm %(spaceName)s", "Description": "Sự mô tả", "Name": "Tên", - "Upload": "Tải lên", "Upload avatar": "Tải lên hình đại diện", - "Delete": "Xoá", "Delete avatar": "Xoá ảnh đại diện", "Accept to continue:": "Chấp nhận để tiếp tục:", "Your server isn't responding to some requests.": "Máy chủ của bạn không phản hồi một số yêu cầu requests.", @@ -1892,7 +1878,6 @@ "Unable to share phone number": "Không thể chia sẻ số điện thoại", "Unable to revoke sharing for phone number": "Không thể thu hồi chia sẻ cho số điện thoại", "Discovery options will appear once you have added an email above.": "Tùy chọn khám phá sẽ xuất hiện khi nào bạn đã thêm địa chỉ thư điện tử.", - "Share": "Chia sẻ", "Revoke": "Rút lại", "Complete": "Hoàn thành", "Verify the link in your inbox": "Xác minh liên kết trong hộp thư đến của bạn", @@ -1972,15 +1957,12 @@ "Manually verify all remote sessions": "Xác thực thủ công tất cả các phiên từ xa", "How fast should messages be downloaded.": "Tin nhắn sẽ được tải xuống nhanh như thế nào.", "Enable message search in encrypted rooms": "Bật tính năng tìm kiếm tin nhắn trong các phòng được mã hóa", - "Update": "Cập nhật", "What's New": "Có gì mới", "What's new?": "Có gì mới?", "%(deviceId)s from %(ip)s": "%(deviceId)s từ %(ip)s", "New login. Was this you?": "Đăng nhập mới. Đây có phải là bạn không?", "Other users may not trust it": "Những người dùng khác có thể không tin tưởng nó", "Safeguard against losing access to encrypted messages & data": "Bảo vệ chống mất quyền truy cập vào tin nhắn và dữ liệu được mã hóa", - "Verify": "Xác thực", - "Upgrade": "Nâng cấp", "Verify this session": "Xác thực phiên này", "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", @@ -2247,7 +2229,6 @@ "not found": "không tìm thấy", "in memory": "trong bộ nhớ", "Cross-signing public keys:": "Khóa công khai xác thực chéo:", - "Reset": "Cài lại", "Cross-signing is not set up.": "Tính năng xác thực chéo chưa được thiết lập.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Tài khoản của bạn có danh tính xác thực chéo trong vùng lưu trữ bí mật, nhưng chưa được phiên này tin cậy.", "Cross-signing is ready but keys are not backed up.": "Xác thực chéo đã sẵn sàng nhưng các khóa chưa được sao lưu.", @@ -2312,7 +2293,6 @@ "Actions": "Hành động", "Messages": "Tin nhắn", "Setting up keys": "Đang thiết lập khóa bảo mật", - "Cancel": "Huỷ bỏ", "Go Back": "Quay lại", "Are you sure you want to cancel entering passphrase?": "Bạn có chắc chắn muốn hủy nhập cụm mật khẩu không?", "Cancel entering passphrase?": "Hủy nhập cụm mật khẩu?", @@ -2609,7 +2589,6 @@ "Try again": "Thử lại", "We asked the browser to remember which homeserver you use to let you sign in, but unfortunately your browser has forgotten it. Go to the sign in page and try again.": "Chúng tôi đã yêu cầu trình duyệt ghi nhớ máy chủ bạn đã sử dụng để bạn có thể đăng nhập lại, nhưng có vẻ như trình duyệt của bạn đã quên máy chủ đó :( Truy cập trang đăng nhập và thử lại.", "We couldn't log you in": "Chúng tôi không thể đăng nhập cho bạn", - "Trust": "Tin cậy", "Only continue if you trust the owner of the server.": "Chỉ tiếp tục nếu bạn tin tưởng chủ sở hữu máy chủ.", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "Hành động này yêu cầu truy cập máy chủ định danh mặc định để xác thực địa chỉ thư điện tử hoặc số điện thoại, nhưng máy chủ không có bất kỳ điều khoản dịch vụ nào.", "Identity server has no terms of service": "Máy chủ định danh này không có điều khoản dịch vụ", @@ -2980,7 +2959,6 @@ "other": "%(user)s và %(count)s người khác" }, "%(user1)s and %(user2)s": "%(user1)s và %(user2)s", - "Reload": "Tải lại", "Database unexpectedly closed": "Cơ sở dữ liệu đột nhiên bị đóng", "%(minutes)sm %(seconds)ss left": "Còn lại %(minutes)s phút %(seconds)s giây", "%(hours)sh %(minutes)sm %(seconds)ss left": "Còn lại %(hours)s giờ %(minutes)s phút %(seconds)s giây", @@ -3035,7 +3013,6 @@ "Backing up %(sessionsRemaining)s keys…": "Đang sao lưu %(sessionsRemaining)s khóa…", "This session is backing up your keys.": "Phiên này đang sao lưu các khóa.", "Error while changing password: %(error)s": "Lỗi khi đổi mật khẩu: %(error)s", - "Apply": "Áp dụng", "Add privileged users": "Thêm người dùng quyền lực", "Saving…": "Đang lưu…", "Creating…": "Đang tạo…", @@ -3060,7 +3037,6 @@ "Start messages with /plain to send without markdown.": "Bắt đầu tin nhắn với /plain để gửi mà không dùng Markdown.", "%(senderName)s ended a voice broadcast": "%(senderName)s đã kết thúc một cuộc phát thanh", "Welcome": "Chào mừng", - "Call": "Gọi", "Audio devices": "Thiết bị âm thanh", "Enable notifications": "Kích hoạt thông báo", "Turn on notifications": "Bật thông báo", @@ -3653,7 +3629,6 @@ "disable": "Tắt", "done": "Xong", "edit": "Sửa", - "enable": "Bật", "forgot_password": "Quên mật khẩu?", "forward": "Chuyển tiếp", "invite": "Mời", @@ -3674,9 +3649,33 @@ "start": "Bắt đầu", "start_chat": "Bắt đầu trò chuyện", "view_source": "Xem nguồn", - "yes": "Có" + "yes": "Có", + "reject": "Từ chối", + "confirm": "Xác nhận", + "dismiss": "Bỏ qua", + "trust": "Tin cậy", + "reload": "Tải lại", + "cancel": "Huỷ bỏ", + "stop": "Dừng", + "join": "Tham gia", + "close": "Đóng", + "accept": "Đồng ý", + "upgrade": "Nâng cấp", + "verify": "Xác thực", + "update": "Cập nhật", + "call": "Gọi", + "delete": "Xoá", + "upload": "Tải lên", + "collapse": "Tắt đi", + "apply": "Áp dụng", + "reset": "Cài lại", + "share": "Chia sẻ", + "skip": "Bỏ qua", + "logout": "Đăng xuất", + "view": "Xem", + "expand": "Mở rộng" }, "a11y": { "user_menu": "Menu người dùng" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index 7d583f76829..fad9db015d1 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -40,7 +40,6 @@ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s %(time)s": "%(weekDayName)s %(day)s %(monthName)s %(fullYear)s, %(time)s", "Unnamed Room": "Noamloos gesprek", "Unable to load! Check your network connectivity and try again.": "Loadn mislukt! Controleer je netwerktoegang en herprobeer ’t e ki.", - "Dismiss": "Afwyzn", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s èt geen toestemmienge vo je meldiengn te verstuurn - controleert je browserinstelliengn", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s èt geen toestemmienge gekreegn ghed vo joun meldiengn te verstuurn - herprobeer ’t e ki", "Unable to enable Notifications": "Kostege meldiengn nie inschoakeln", @@ -205,9 +204,7 @@ "Call invitation": "Iproep-uutnodigienge", "Messages sent by bot": "Berichtn verzoundn deur e robot", "When rooms are upgraded": "Wanneer da gesprekkn ipgewoardeerd wordn", - "Accept": "Anveirdn", "The other party cancelled the verification.": "De tegenparty èt de verificoasje geannuleerd.", - "Cancel": "Annuleern", "Verified!": "Geverifieerd!", "You've successfully verified this user.": "J’èt deze gebruuker geverifieerd.", "Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Beveiligde berichtn me deze gebruuker zyn eind-tout-eind-versleuterd en kunn nie door derdn wordn geleezn.", @@ -428,7 +425,6 @@ "Mention": "Vermeldn", "Share Link to User": "Koppelienge me de gebruuker deeln", "Admin Tools": "Beheerdersgereedschap", - "Close": "Sluutn", "and %(count)s others...": { "other": "en %(count)s anderen…", "one": "en één andere…" @@ -488,7 +484,6 @@ "Do you want to chat with %(user)s?": "Wil j’e gesprek beginn me %(user)s?", "Do you want to join %(roomName)s?": "Wil je %(roomName)s toetreedn?", " invited you": " èt joun uutgenodigd", - "Reject": "Weigern", "You're previewing %(roomName)s. Want to join it?": "Je bekykt %(roomName)s. Wil je deran deelneemn?", "%(roomName)s can't be previewed. Do you want to join it?": "%(roomName)s ku nie bekeekn wordn. Wil je deran deelneemn?", "%(roomName)s does not exist.": "%(roomName)s bestoa nie.", @@ -552,7 +547,6 @@ "edited": "bewerkt", "Something went wrong!": "’t Es etwa misgegoan!", "What's New": "Wuk es ’t er nieuw", - "Update": "Bywerkn", "What's new?": "Wuk es ’t er nieuw?", "Error encountered (%(errorDetail)s).": "’t Es e foute ipgetreedn (%(errorDetail)s).", "No update available.": "Geen update beschikboar.", @@ -562,7 +556,6 @@ "Delete widget": "Widget verwydern", "Popout widget": "Widget in e nieuwe veinster openn", "Create new room": "E nieuw gesprek anmoakn", - "Join": "Deelneemn", "Rotate Left": "Links droain", "Rotate Right": "Rechts droain", "%(nameList)s %(transitionList)s": "%(nameList)s %(transitionList)s", @@ -722,7 +715,6 @@ "Please check your email and click on the link it contains. Once this is done, click continue.": "Bekyk jen e-mails en klikt ip de koppelienge derin. Klikt van zodra da je da gedoan èt ip ‘Verdergoan’.", "Email address": "E-mailadresse", "This will allow you to reset your password and receive notifications.": "Hierdoor goa je je paswoord kunn herinstell en meldiengn ountvangn.", - "Skip": "Oversloan", "Share Room": "Gesprek deeln", "Link to most recent message": "Koppelienge noa ’t recentste bericht", "Share User": "Gebruuker deeln", @@ -734,7 +726,6 @@ "Your browser likely removed this data when running low on disk space.": "Je browser èt deze gegeevns meugliks verwyderd toen da de beschikboare ipslagruumte vul was.", "Upload files (%(current)s of %(total)s)": "Bestandn wordn ipgeloadn (%(current)s van %(total)s)", "Upload files": "Bestandn iploadn", - "Upload": "Iploadn", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "Dit bestand is te groot vo te kunn iploadn. De bestandsgroottelimiet is %(limit)s, ma dit bestand is %(sizeOfThisFile)s.", "These files are too large to upload. The file size limit is %(limit)s.": "Deze bestandn zyn te groot vo te kunn iploadn. De bestandsgroottelimiet is %(limit)s.", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "Sommige bestandn zyn te groot vo te kunn iploadn. De bestandsgroottelimiet is %(limit)s.", @@ -788,7 +779,6 @@ "Enter username": "Gift de gebruukersnoame in", "Some characters not allowed": "Sommige tekens zyn nie toegeloatn", "Email (optional)": "E-mailadresse (optioneel)", - "Confirm": "Bevestign", "Phone (optional)": "Telefongnumero (optioneel)", "Join millions for free on the largest public server": "Doe mee me miljoenen anderen ip de grotste publieke server", "Other": "Overige", @@ -809,7 +799,6 @@ "Review terms and conditions": "Gebruuksvoorwoardn leezn", "Old cryptography data detected": "Oude cryptografiegegeevns 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.": "’t Zyn gegeevns van een oudere versie van %(brand)s gedetecteerd gewist. Dit goa probleemn veroorzakt ghed èn me de eind-tout-eind-versleuterienge in d’oude versie. Eind-tout-eind-versleuterde berichtn da recent uutgewisseld gewist zyn me d’oude versie zyn meugliks nie t’ountsleutern in deze versie. Dit zoudt der ook voorn kunnn zorgn da berichtn da uutgewisseld gewist zyn in deze versie foaln. Meldt jen heran moest je probleemn ervoarn. Exporteert de sleuters en importeer z’achteraf were vo de berichtgeschiedenisse te behoudn.", - "Logout": "Afmeldn", "You can't send any messages until you review and agree to our terms and conditions.": "Je ku geen berichtn stuurn toutda je uzze algemene voorwoardn geleezn en anveird ghed èt.", "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. Please contact your service administrator to continue using the service.": "Je bericht is nie verstuurd gewist omda deze thuusserver z’n limiet vo moandeliks actieve gebruukers bereikt ghed èt. Gelieve contact ip te neemn me jen dienstbeheerder vo de dienst te bluuvn gebruukn.", "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Je bericht is nie verstuurd gewist omda deze thuusserver e systeembronlimiet overschreedn ghed èt. Gelieve contact ip te neemn me jen dienstbeheerder vo de dienst te bluuvn gebruukn.", @@ -900,7 +889,6 @@ "Uploaded sound": "Ipgeloadn-geluud", "Sounds": "Geluudn", "Notification sound": "Meldiengsgeluud", - "Reset": "Herinstelln", "Set a new custom sound": "Stelt e nieuw angepast geluud in", "Browse": "Bloadern", "Cannot reach homeserver": "Kostege de thuusserver nie bereikn", @@ -965,7 +953,6 @@ "Unable to revoke sharing for email address": "Kostege ’t deeln vo dat e-mailadresse hier nie intrekkn", "Unable to share email address": "Kostege ’t e-mailadresse nie deeln", "Revoke": "Intrekkn", - "Share": "Deeln", "Discovery options will appear once you have added an email above.": "Ountdekkiengsopties goan verschynn a j’een e-mailadresse toegevoegd ghed èt.", "Unable to revoke sharing for phone number": "Kostege ’t deeln vo dien telefongnumero hier nie intrekkn", "Unable to share phone number": "Kostege den telefongnumero nie deeln", @@ -1021,6 +1008,19 @@ "save": "Ipsloan", "start_chat": "Gesprek beginn", "view_source": "Bron bekykn", - "yes": "Joak" + "yes": "Joak", + "reject": "Weigern", + "confirm": "Bevestign", + "dismiss": "Afwyzn", + "cancel": "Annuleern", + "join": "Deelneemn", + "close": "Sluutn", + "accept": "Anveirdn", + "update": "Bywerkn", + "upload": "Iploadn", + "reset": "Herinstelln", + "share": "Deeln", + "skip": "Oversloan", + "logout": "Afmeldn" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index 52b03a41242..1c836595b4f 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -95,7 +95,6 @@ "%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s 移除了房间名称。", "%(senderDisplayName)s changed the topic to \"%(topic)s\".": "%(senderDisplayName)s 将话题修改为 “%(topic)s”。", "Changes your display nickname": "修改显示昵称", - "Close": "关闭", "Command error": "命令错误", "Commands": "命令", "Custom level": "自定义级别", @@ -120,15 +119,12 @@ "Passwords can't be empty": "密码不能为空", "Permissions": "权限", "Phone": "电话", - "Cancel": "取消", "Create new room": "创建新房间", - "Dismiss": "忽略", "powered by Matrix": "由 Matrix 驱动", "unknown error code": "未知错误代码", "Account": "账户", "Add": "添加", "Labs": "实验室", - "Logout": "登出", "Low priority": "低优先级", "No more results": "没有更多结果", "Privileged Users": "特权用户", @@ -161,8 +157,6 @@ "Drop file here to upload": "把文件拖到这里以上传", "Online": "在线", "Idle": "空闲", - "Skip": "跳过", - "Accept": "接受", "Delete widget": "删除挂件", "Define the power level of a user": "定义一名用户的权力级别", "Enable automatic language detection for syntax highlighting": "启用语法高亮的自动语言检测", @@ -421,7 +415,6 @@ "Notification targets": "通知目标", "Today": "今天", "Friday": "星期五", - "Update": "更新", "What's New": "更新内容", "On": "打开", "Changelog": "更改日志", @@ -442,7 +435,6 @@ "Developer Tools": "开发者工具", "Preparing to send logs": "正在准备发送日志", "Saturday": "星期六", - "Reject": "拒绝", "Monday": "星期一", "Toolbox": "工具箱", "Collecting logs": "正在收集日志", @@ -735,7 +727,6 @@ "Room avatar": "房间头像", "Room Name": "房间名称", "Room Topic": "房间话题", - "Join": "加入", "The following users may not exist": "以下用户可能不存在", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "找不到下列 Matrix ID 的用户资料,你还是要邀请吗?", "Invite anyway and never warn me again": "还是邀请,不用再提醒我", @@ -761,7 +752,6 @@ "Change": "更改", "Email (optional)": "电子邮箱(可选)", "Phone (optional)": "电话号码(可选)", - "Confirm": "确认", "Join millions for free on the largest public server": "免费加入最大的公共服务器,成为数百万用户中的一员", "Other": "其他", "Couldn't load page": "无法加载页面", @@ -848,7 +838,6 @@ "Identity server has no terms of service": "身份服务器无服务条款", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "此操作需要访问默认的身份服务器 以验证邮箱或电话号码,但此服务器无任何服务条款。", "Only continue if you trust the owner of the server.": "只有在你信任服务器所有者后才能继续。", - "Trust": "信任", "%(name)s is requesting verification": "%(name)s 正在请求验证", "Sign In or Create Account": "登录或创建账户", "Use your account or create a new one to continue.": "使用已有账户或创建一个新账户。", @@ -956,8 +945,6 @@ "Your homeserver has exceeded one of its resource limits.": "你的家服务器已超过某项资源限制。", "Contact your server admin.": "请联系你的服务器管理员。", "Ok": "确定", - "Upgrade": "升级加密", - "Verify": "验证", "Other users may not trust it": "其他用户可能不信任它", "You joined the call": "你加入通话", "%(senderName)s joined the call": "%(senderName)s加入通话", @@ -990,7 +977,6 @@ "Lock": "锁", "Your server isn't responding to some requests.": "你的服务器没有响应一些请求。", "Accept to continue:": "接受 以继续:", - "Upload": "上传", "Show less": "显示更少", "Show more": "显示更多", "Your homeserver does not support cross-signing.": "你的家服务器不支持交叉签名。", @@ -1089,7 +1075,6 @@ "Uploaded sound": "已上传的声音", "Sounds": "声音", "Notification sound": "通知声音", - "Reset": "重置", "Set a new custom sound": "设置新的自定义声音", "Browse": "浏览", "Upgrade the room": "更新房间", @@ -1104,7 +1089,6 @@ "Click the link in the email you received to verify and then click continue again.": "点击你所收到的电子邮件中的链接进行验证,然后再次点击继续。", "Verify the link in your inbox": "验证你的收件箱中的链接", "Complete": "完成", - "Share": "共享", "Discovery options will appear once you have added an email above.": "你在上方添加邮箱后发现选项将会出现。", "Unable to share phone number": "无法共享电话号码", "Please enter verification code sent via text.": "请输入短信中发送的验证码。", @@ -1495,7 +1479,6 @@ "Create a Group Chat": "创建一个群聊", "Explore rooms": "探索房间", "%(creator)s created and configured the room.": "%(creator)s 创建并配置了此房间。", - "View": "查看", "Switch to light mode": "切换到浅色模式", "Switch to dark mode": "切换到深色模式", "Switch theme": "切换主题", @@ -1725,7 +1708,6 @@ "Invite only, best for yourself or teams": "仅邀请,适合你自己或团队", "Private": "私有", "Public": "公共", - "Delete": "删除", "Dial pad": "拨号盘", "There was an error looking up the phone number": "查询电话号码时发生错误", "Unable to look up phone number": "无法查询电话号码", @@ -2380,8 +2362,6 @@ "Published addresses can be used by anyone on any server to join your space.": "任何服务器上的人均可通过公布的地址加入你的空间。", "This space has no local addresses": "此空间没有本地地址", "Space information": "空间信息", - "Collapse": "折叠", - "Expand": "展开", "Recommended for public spaces.": "建议用于公开空间。", "Allow people to preview your space before they join.": "允许人们在加入前预览你的空间。", "Preview Space": "预览空间", @@ -2598,7 +2578,6 @@ "Select from the options below to export chats from your timeline": "从下面的选项中选择以从时间线导出聊天", "Export Chat": "导出聊天", "Exporting your data": "导出你的数据", - "Stop": "停止", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "您确定要停止导出数据吗?如果你这样做了,你需要重新开始。", "Your export was successful. Find it in your Downloads folder.": "导出成功了。你可以在下载文件夹中找到导出文件。", "The export was cancelled successfully": "成功取消了导出", @@ -3007,7 +2986,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "正等待你在其它设备上验证,%(deviceName)s(%(deviceId)s)……", "Verify this device by confirming the following number appears on its screen.": "确认屏幕上出现以下数字,以验证设备。", "Confirm the emoji below are displayed on both devices, in the same order:": "确认下面的表情符号在两个设备上以相同顺序显示:", - "Call": "通话", "Turn on camera": "启动相机", "Turn off camera": "关闭相机", "Video devices": "视频设备", @@ -3462,7 +3440,6 @@ "other": "你确定要退出这 %(count)s 个会话吗?" }, "Presence": "在线", - "Apply": "申请", "Search users in this room…": "搜索该房间内的用户……", "Give one or multiple users in this room more privileges": "授权给该房间内的某人或某些人", "Add privileged users": "添加特权用户", @@ -3495,7 +3472,6 @@ "Use your account to continue.": "使用你的账户继续。", "Your email address does not appear to be associated with a Matrix ID on this homeserver.": "你的电子邮件地址似乎未与此家服务器上的Matrix ID关联。", "%(senderName)s started a voice broadcast": "%(senderName)s开始了语音广播", - "Reload": "重加载", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "这可能是由于在多个标签页中打开此应用,或由于清除浏览器数据。", "Database unexpectedly closed": "数据库意外关闭", "Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "无法在未设置身份服务器时邀请用户,你可以在“设置”里连接一个。", @@ -3542,7 +3518,6 @@ "disable": "禁用", "done": "完成", "edit": "编辑", - "enable": "启用", "forgot_password": "忘记密码?", "forward": "转发", "invite": "邀请", @@ -3563,9 +3538,33 @@ "start": "开始", "start_chat": "开始聊天", "view_source": "查看源码", - "yes": "是" + "yes": "是", + "reject": "拒绝", + "confirm": "确认", + "dismiss": "忽略", + "trust": "信任", + "reload": "重加载", + "cancel": "取消", + "stop": "停止", + "join": "加入", + "close": "关闭", + "accept": "接受", + "upgrade": "升级加密", + "verify": "验证", + "update": "更新", + "call": "通话", + "delete": "删除", + "upload": "上传", + "collapse": "折叠", + "apply": "申请", + "reset": "重置", + "share": "共享", + "skip": "跳过", + "logout": "登出", + "view": "查看", + "expand": "展开" }, "a11y": { "user_menu": "用户菜单" } -} \ No newline at end of file +} diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 59f26a49503..7cab752b07a 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -86,8 +86,6 @@ "%(senderDisplayName)s changed the room avatar to ": "%(senderDisplayName)s 將聊天室大頭照更改為 ", "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s 移除了聊天室的大頭照。", "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s 將聊天室的大頭照改為 %(roomName)s", - "Cancel": "取消", - "Dismiss": "關閉", "Notifications": "通知", "Operation failed": "無法操作", "powered by Matrix": "由 Matrix 提供", @@ -106,9 +104,7 @@ "URL Previews": "網址預覽", "Drop file here to upload": "把文件放在這裡上傳", "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?": "您即將被帶到第三方網站,以便您可以驗證帳戶來使用 %(integrationsUrl)s。請問您要繼續嗎?", - "Close": "關閉", "Create new room": "建立新聊天室", - "Accept": "接受", "Add": "新增", "Admin Tools": "管理員工具", "No Microphones detected": "未偵測到麥克風", @@ -135,7 +131,6 @@ "Invites user with given id to current room": "邀請指定 ID 的使用者到目前的聊天室", "Sign in with": "登入使用", "Labs": "實驗室", - "Logout": "登出", "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 joined.": "%(senderName)s 將未來的聊天室紀錄顯示給所有成員,從他們加入開始。", @@ -256,7 +251,6 @@ "Authentication check failed: incorrect password?": "無法檢查認證:密碼錯誤?", "Do you want to set an email address?": "您想要設定電子郵件地址嗎?", "This will allow you to reset your password and receive notifications.": "這讓您可以重設您的密碼與接收通知。", - "Skip": "略過", "and %(count)s others...": { "other": "與另 %(count)s 個人…", "one": "與另 1 個人…" @@ -429,7 +423,6 @@ "Notification targets": "通知目標", "Today": "今天", "Friday": "星期五", - "Update": "更新", "On": "開啟", "Changelog": "變更記錄檔", "Waiting for response from server": "正在等待來自伺服器的回應", @@ -450,7 +443,6 @@ "Developer Tools": "開發者工具", "Preparing to send logs": "準備傳送除錯訊息", "Saturday": "星期六", - "Reject": "拒絕", "Monday": "星期一", "Toolbox": "工具箱", "Collecting logs": "收集記錄檔", @@ -675,13 +667,11 @@ "Room avatar": "聊天室大頭照", "Room Name": "聊天室名稱", "Room Topic": "聊天室主題", - "Join": "加入", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "驗證此工作階段,並標記為可受信任。由您將工作階段標記為可受信任後,可讓聊天夥伴傳送端到端加密訊息時能更加放心。", "Incoming Verification Request": "收到的驗證請求", "Go back": "返回", "Email (optional)": "電子郵件(選擇性)", "Phone (optional)": "電話(選擇性)", - "Confirm": "確認", "Join millions for free on the largest public server": "在最大的公開伺服器上,免費與數百萬人一起交流", "Other": "其他", "Guest": "訪客", @@ -836,7 +826,6 @@ "Your browser likely removed this data when running low on disk space.": "當硬碟空間不足時,您的瀏覽器可能會移除這些資料。", "Upload files (%(current)s of %(total)s)": "上傳檔案 (%(total)s 中的 %(current)s)", "Upload files": "上傳檔案", - "Upload": "上傳", "This file is too large to upload. The file size limit is %(limit)s but this file is %(sizeOfThisFile)s.": "這個檔案太大了,沒辦法上傳。檔案大小限制為 %(limit)s 但這個檔案大小是 %(sizeOfThisFile)s。", "These files are too large to upload. The file size limit is %(limit)s.": "這些檔案太大了,沒辦法上傳。檔案大小限制為 %(limit)s。", "Some files are too large to be uploaded. The file size limit is %(limit)s.": "某些檔案太大了,沒辦法上傳。檔案大小限制為 %(limit)s。", @@ -898,7 +887,6 @@ "Uploaded sound": "已上傳的音效", "Sounds": "音效", "Notification sound": "通知音效", - "Reset": "重設", "Set a new custom sound": "設定新的自訂音效", "Browse": "瀏覽", "Cannot reach homeserver": "無法連線至家伺服器", @@ -958,7 +946,6 @@ "Unable to revoke sharing for email address": "無法撤回電子郵件的分享", "Unable to share email address": "無法分享電子郵件", "Revoke": "撤回", - "Share": "分享", "Discovery options will appear once you have added an email above.": "當您在上面加入電子郵件時將會出現探索選項。", "Unable to revoke sharing for phone number": "無法撤回電話號碼的分享", "Unable to share phone number": "無法分享電話號碼", @@ -1031,7 +1018,6 @@ "Report Content to Your Homeserver Administrator": "回報內容給您的家伺服器管理員", "Reporting this message will send its unique 'event ID' to the administrator of your homeserver. If messages in this room are encrypted, your homeserver administrator will not be able to read the message text or view any files or images.": "回報此訊息將會傳送其獨特的「活動 ID」給您家伺服器的管理員。如果此聊天室中的訊息已加密,您的家伺服器管理員將無法閱讀訊息文字或檢視任何檔案或圖片。", "Send report": "傳送回報", - "View": "檢視", "Explore rooms": "探索聊天室", "Changes the avatar of the current room": "變更目前聊天室的大頭照", "Read Marker lifetime (ms)": "讀取標記生命週期(毫秒)", @@ -1093,7 +1079,6 @@ "Room %(name)s": "聊天室 %(name)s", "Unread messages.": "未讀的訊息。", "This action requires accessing the default identity server to validate an email address or phone number, but the server does not have any terms of service.": "此動作需要存取預設的身分伺服器 以驗證電子郵件或電話號碼,但伺服器沒有任何服務條款。", - "Trust": "信任", "Message Actions": "訊息動作", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", "You verified %(name)s": "您驗證了 %(name)s", @@ -1139,7 +1124,6 @@ "Trusted": "受信任", "Not trusted": "未受信任", "Messages in this room are end-to-end encrypted.": "此聊天室內的訊息有端對端加密。", - "Verify": "驗證", "Any of the following data may be shared:": "可能會分享以下資料:", "Your display name": "您的顯示名稱", "Your user ID": "您的使用者 ID", @@ -1173,7 +1157,6 @@ "Upgrading a room is an advanced action and is usually recommended when a room is unstable due to bugs, missing features or security vulnerabilities.": "升級聊天室為進階動作,通常建議在聊天室因為錯誤而不穩定、缺少功能或安全漏洞等才升級。", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "這通常僅影響如何在伺服器上處理聊天室的方式。如果您遇到與 %(brand)s 相關的問題,請回報錯誤。", "You'll upgrade this room from to .": "您將要把此聊天室從 升級到 。", - "Upgrade": "升級", " wants to chat": " 想要聊天", "Start chatting": "開始聊天", "%(senderName)s removed the rule banning users matching %(glob)s": "%(senderName)s 移除了封鎖符合 %(glob)s 的使用者規則", @@ -2213,7 +2196,6 @@ "Open space for anyone, best for communities": "對所有人開放的聊天空間,最適合社群", "Public": "公開", "Create a space": "建立聊天空間", - "Delete": "刪除", "Jump to the bottom of the timeline when you send a message": "傳送訊息時,跳到時間軸底部", "This homeserver has been blocked by its administrator.": "此家伺服器已被管理員封鎖。", "You're already in a call with this person.": "您正在與此人通話。", @@ -2381,8 +2363,6 @@ "Published addresses can be used by anyone on any server to join your space.": "任何伺服器上的人都可以使用已發佈的位址加入您的聊天空間。", "This space has no local addresses": "此聊天空間沒有本機位址", "Space information": "聊天空間資訊", - "Collapse": "收折", - "Expand": "展開", "Recommended for public spaces.": "給公開聊天空間的推薦。", "Allow people to preview your space before they join.": "允許人們在加入前預覽您的聊天空間。", "Preview Space": "預覽聊天空間", @@ -2597,7 +2577,6 @@ "Select from the options below to export chats from your timeline": "從下面的選項中選擇以從您的時間軸匯出聊天", "Export Chat": "匯出聊天", "Exporting your data": "正在匯出您的資料", - "Stop": "停止", "Are you sure you want to stop exporting your data? If you do, you'll need to start over.": "您確定您要停止匯出您的資料嗎?若您這麼做,您就必須重新開始。", "Your export was successful. Find it in your Downloads folder.": "您匯出成功。請在您的下載資料夾中尋找它。", "The export was cancelled successfully": "匯出已成功取消", @@ -2948,7 +2927,6 @@ "Group all your people in one place.": "將您所有的夥伴集中在同一個地方。", "Group all your favourite rooms and people in one place.": "將所有您最喜愛的聊天室與夥伴集中在同一個地方。", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "聊天空間是將聊天室與夥伴們分組的方式。除了您所在的聊天空間之外,還可以使用一些預設分類。", - "Call": "通話", "Unable to check if username has been taken. Try again later.": "無法檢查使用者名稱是否已被使用。請稍後再試。", "IRC (Experimental)": "IRC(實驗性)", "Toggle hidden event visibility": "切換隱藏事件的能見度", @@ -3591,7 +3569,6 @@ "This session doesn't support encryption and thus can't be verified.": "此工作階段不支援加密,因此無法驗證。", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "為獲得最佳安全性與隱私,建議使用支援加密的 Matrix 客戶端。", "You won't be able to participate in rooms where encryption is enabled when using this session.": "使用此工作階段時,您將無法參與啟用加密的聊天室。", - "Apply": "套用", "Search users in this room…": "搜尋此聊天室中的使用者…", "Give one or multiple users in this room more privileges": "給這個聊天室中的一個使用者或多個使用者更多的特殊權限", "Add privileged users": "新增特權使用者", @@ -3782,7 +3759,6 @@ "A network error occurred while trying to find and jump to the given date. Your homeserver might be down or there was just a temporary problem with your internet connection. Please try again. If this continues, please contact your homeserver administrator.": "嘗試尋找並前往指定日期時發生網路錯誤。您的家伺服器可能已關閉,或者您的網際網路連線只是暫時出現問題。請再試一次。如果這種情況繼續存在,請聯絡您的家伺服器管理員。", "Poll history": "投票紀錄", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "使用者(%(user)s)並未受邀加入 %(roomId)s,但邀請工具也未提供錯誤", - "Reload": "重新載入", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "這個問題可能是因為在多個分頁中開啟此應用程式,或是清除瀏覽資料所導致。", "Database unexpectedly closed": "資料庫意外關閉", "Mute room": "聊天室靜音", @@ -3950,7 +3926,6 @@ "disable": "停用", "done": "完成", "edit": "編輯", - "enable": "啟用", "forgot_password": "忘記密碼?", "forward": "轉寄", "invite": "邀請", @@ -3971,9 +3946,33 @@ "start": "開始", "start_chat": "開始聊天", "view_source": "檢視原始碼", - "yes": "是" + "yes": "是", + "reject": "拒絕", + "confirm": "確認", + "dismiss": "關閉", + "trust": "信任", + "reload": "重新載入", + "cancel": "取消", + "stop": "停止", + "join": "加入", + "close": "關閉", + "accept": "接受", + "upgrade": "升級", + "verify": "驗證", + "update": "更新", + "call": "通話", + "delete": "刪除", + "upload": "上傳", + "collapse": "收折", + "apply": "套用", + "reset": "重設", + "share": "分享", + "skip": "略過", + "logout": "登出", + "view": "檢視", + "expand": "展開" }, "a11y": { "user_menu": "使用者選單" } -} \ No newline at end of file +} diff --git a/src/toasts/AnalyticsToast.tsx b/src/toasts/AnalyticsToast.tsx index d4fddd948bc..bbb58d99817 100644 --- a/src/toasts/AnalyticsToast.tsx +++ b/src/toasts/AnalyticsToast.tsx @@ -68,7 +68,7 @@ const onLearnMorePreviouslyOptedIn = (): void => { // otherwise, the user closed the dialog without making a choice, leave the toast open }, primaryButton: _t("That's fine"), - cancelButton: _t("Stop"), + cancelButton: _t("action|stop"), }); }; diff --git a/src/toasts/DesktopNotificationsToast.ts b/src/toasts/DesktopNotificationsToast.ts index 91a871d4ec8..14a369729ac 100644 --- a/src/toasts/DesktopNotificationsToast.ts +++ b/src/toasts/DesktopNotificationsToast.ts @@ -44,7 +44,7 @@ export const showToast = (fromMessageSend: boolean): void => { description: _t("Enable desktop notifications"), acceptLabel: _t("action|enable"), onAccept, - rejectLabel: _t("Dismiss"), + rejectLabel: _t("action|dismiss"), onReject, }, component: GenericToast, diff --git a/src/toasts/IncomingCallToast.tsx b/src/toasts/IncomingCallToast.tsx index f4f97d92045..5e74cdf31d7 100644 --- a/src/toasts/IncomingCallToast.tsx +++ b/src/toasts/IncomingCallToast.tsx @@ -56,7 +56,7 @@ function JoinCallButtonWithCall({ onClick, call }: JoinCallButtonWithCallProps): tooltip={disabledTooltip} kind="primary" > - {_t("Join")} + {_t("action|join")} ); } @@ -154,14 +154,14 @@ export function IncomingCallToast({ callEvent }: Props): JSX.Element { onClick={onJoinClick} kind="primary" > - {_t("Join")} + {_t("action|join")} )}
); diff --git a/src/toasts/IncomingLegacyCallToast.tsx b/src/toasts/IncomingLegacyCallToast.tsx index 20e6f61bef2..c6ef1daf3ee 100644 --- a/src/toasts/IncomingLegacyCallToast.tsx +++ b/src/toasts/IncomingLegacyCallToast.tsx @@ -132,7 +132,7 @@ export default class IncomingLegacyCallToast extends React.Component - {_t("Accept")} + {_t("action|accept")} diff --git a/src/toasts/MobileGuideToast.ts b/src/toasts/MobileGuideToast.ts index 2c7df129b4f..cd916613df6 100644 --- a/src/toasts/MobileGuideToast.ts +++ b/src/toasts/MobileGuideToast.ts @@ -50,7 +50,7 @@ export const showToast = (): void => { ), acceptLabel: _t("Use app"), onAccept, - rejectLabel: _t("Dismiss"), + rejectLabel: _t("action|dismiss"), onReject, }, component: GenericToast, diff --git a/src/toasts/SetupEncryptionToast.ts b/src/toasts/SetupEncryptionToast.ts index 8b8b2b4cc3d..873780b8d85 100644 --- a/src/toasts/SetupEncryptionToast.ts +++ b/src/toasts/SetupEncryptionToast.ts @@ -52,9 +52,9 @@ const getSetupCaption = (kind: Kind): string => { case Kind.SET_UP_ENCRYPTION: return _t("action|continue"); case Kind.UPGRADE_ENCRYPTION: - return _t("Upgrade"); + return _t("action|upgrade"); case Kind.VERIFY_THIS_SESSION: - return _t("Verify"); + return _t("action|verify"); } }; diff --git a/src/toasts/UpdateToast.tsx b/src/toasts/UpdateToast.tsx index 2783e169432..b3f33c2ca53 100644 --- a/src/toasts/UpdateToast.tsx +++ b/src/toasts/UpdateToast.tsx @@ -52,7 +52,7 @@ export const showToast = (version: string, newVersion: string, releaseNotes?: st Modal.createDialog(QuestionDialog, { title: _t("What's New"), description:
{releaseNotes}
, - button: _t("Update"), + button: _t("action|update"), onFinished: (update) => { if (update && PlatformPeg.get()) { PlatformPeg.get()!.installUpdate(); @@ -74,7 +74,7 @@ export const showToast = (version: string, newVersion: string, releaseNotes?: st }; } else { onAccept = installUpdate; - acceptLabel = _t("Update"); + acceptLabel = _t("action|update"); } const brand = SdkConfig.get().brand; @@ -85,7 +85,7 @@ export const showToast = (version: string, newVersion: string, releaseNotes?: st description: _t("New version of %(brand)s is available", { brand }), acceptLabel, onAccept, - rejectLabel: _t("Dismiss"), + rejectLabel: _t("action|dismiss"), onReject, }, component: GenericToast,